/*
 * SimpleModal Basic Modal Dialog
 * http://simplemodal.com
 *
 * Copyright (c) 2013 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 */

#basic-modal-content {display:none;}

/* Overlay */
#simplemodal-overlay {background-color:#000;}

/* Container */
#simplemodal-container {
	color: #666;
	background-color: #FFF;
	border: 1px solid #CCC;
	border-radius: 5px;
	overflow: hidden;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 5px;
	width:660px !important;
	height: 290px !important;
}
#simplemodal-container .simplemodal-data {padding:8px;}
#simplemodal-container a.modalCloseImg {
	background: url(https://www.palermo.edu/contenidos/ingresantes/img/cerrar.png) no-repeat;
	width: 25px;
	height: 29px;
	display: inline;
	z-index: 3200;
	position: absolute;
	top: 5px;
	right: 0px;
	cursor: pointer;
}
#simplemodal-container h3 {
	color: #666666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: normal;
	margin:0 0 8px 0;
}
@media only screen and (max-width: 959px) {
	#simplemodal-container {
	width:660px !important;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
	#simplemodal-container {
	width:660px !important;
}
}
@media only screen and (max-width: 767px) {
	#simplemodal-container {
	width:660px !important;
}
}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
	#simplemodal-container {
	width:300px !important;
}
}
@media only screen and (max-width: 479px) {
	#simplemodal-container {
	width:270px !important;
	height:510px !important;
}
}