#divContenedor{
	width: 600px;
	position: absolute;
	left: 50%;
	margin-left: -300px;
	top: 50px;
	text-align: center;
}
	#divLogo{
		padding-bottom: 20px;
	}

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

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

/* clases relacionadas con la ventana modal */
.clsVentana{
	width: 600px;
	height: 600px;
	border: solid 1px #ccc;
	position: absolute;
	top: 50%;
	margin-top: -250px;
	left: 50%;
	margin-left: -300px;
/*	border-radius: 3px;
	box-shadow: 0 0 15px #999;*/
	background: #fff;
	z-index: 99999;
	display: none;
}
	.clsVentanaTitulo{
	/*	background: #222;*/
		color: #fff;
		/*border-radius: 3px 3px 0 0;*/
		display: block;
	}
		.clsVentanaTitulo strong{
			display: inline-block;
			padding: 0px;
		}
		.clsVentanaTitulo a{
			text-align:right;
			display: inline-block;
			color: #fff;
			text-decoration: none;
			background: #5e5c5c;
			/*border-radius: 3px;*/
			cursor: pointer;
			margin-left:530px;
		}
			.clsVentanaTitulo a:hover{
				background: #5e5c5c;
				color: #fff;
			}
	.clsVentanaContenido{
		padding: 0px;
		height: 540px;
		overflow: auto;
		/*border-radius: 0 0 3px 3px;*/
	}
		.clsVentanaContenido iframe{
			width: 575px;
			height: 530px;
			border-radius: 3px;
			border: solid 1px #fff;
		}