@charset "utf-8";
/* CSS Document */
/* MODAL  */
#modal-screen{
	/*background:#414042;*/
	background:#000;
	position:fixed;
	z-index:1000;
	opacity:.75;
	margin:0;
	padding:0;
	display:none;
	top:0;
	left:0;
	bottom:0;
	right:0;
	overflow:hidden;
}
#modal-container{
	margin:auto;
	position:fixed;
	top:0;
	left:0;
	bottom:0;
	right:0;
	z-index:1001;
	display:none;
	padding:0;
	overflow:hidden;	
}
#modal-container .modal-header{
	height:40px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	font-weight:bold;
	padding:5px 10px;
	color:#FFF;	
	border:1px solida #444;	
}
#modal-container .modal-titulo{
	display:none;
	float:left;
	line-height:40px;
}
#modal-container .modal-close{
	float:right;
	width:32px;
	height:32px;
	background: url(../images/bt-modal-close.png) no-repeat 0 0;
	cursor:pointer;
}
#modal-container .modal-close:hover{
	background:url(../images/modal-close.png) no-repeat -32px 0;
	
}
#modal-container #modal-contenido{
	width:auto;
	height:95%;
	margin:auto;
	padding:20px;	
	overflow-y:auto;
	overflow-x:hidden;
}


@media handheld, only screen and (max-width: 800px) {
	#modal-container #modal-contenido{
		height:90%;
	}
	#modal-container #modal-contenido #modal-imagen{
	}

}
