/* estilos del overlay */
#divOverlaymodal{
	position: fixed;
	background: #000;
	height: 100%;
	width: 100%;
	z-index: 99998;
	display: none;
	top: 0;
	left: 0;
}

.clsBotonmodal{
	
	
/*  display: inline-block;
	border-radius: 5px;
	text-decoration: none;
    color: #fff;
    padding: 7px;
	background: #000;
	box-shadow: 0 0 10px #f1f1f1;
	border: solid 1px #000;*/
}
	.clsBotonventanamodal:hover{
		background: #fff;
		color: #000;
		border-color: #000;
	}

/* clases relacionadas con la ventana modal */
.clsVentanamodal{
	width: 825px;
	height: 525px;
	border: solid 1px #ccc;
    margin: auto;
    top: 0; left: 0; bottom: 0; right: 0;
	border-radius: 3px;
	box-shadow: 0 0 15px #999;
	background: #fff;
	z-index: 99999;
	display: block;
    position: fixed;
   overflow: hidden;
   }
	.clsVentanaTitulomodal{
		background: #222;
		color: #fff;
		border-radius: 3px 3px 0 0;
		display: block;
	}
		.clsVentanaTitulomodal strong{
			display: inline-block;
			padding: 10px;
		}
		.clsVentanaTitulomodal a{
			float: right;
			display: inline-block;
			color: #fff;
			text-decoration: none;
			background: #222;
			padding: 5px;
			margin: 5px;
			border-radius: 3px;
			cursor: pointer;
		}
			.clsVentanaTitulomodal a:hover{
				background: #fff;
				color: #000;
			}
	.clsVentanaContenidomodal{
		padding: 10px;
		height: 450px;
		overflow: auto;
		border-radius: 0 0 3px 3px;
	}
		.clsVentanaContenidomodal iframe{
			width: 780px;
			height: 440px;
			border-radius: 3px;
			border: solid 1px #f1f1f1;
            overflow: hidden;
		}