*{
	padding: 0;
	margin: 0;
}

body{
	font: normal 12px Tahoma, Verdana, Arial, sans-serif;
}

p{
	padding: 10px;
	text-align: justify;
}

h1{
	padding-bottom: 10px;
}
h2{
	font-size: 18px;
	padding: 10px 10px;
}

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

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

.clsBoton{
	padding: 9px;
	background: #1A6BBB;
	display: inline-block;
	border-radius: 6px;
	text-decoration: none;
	color: #fff;
	box-shadow: 0 0 10px #f1f1f1;
	border: solid 0px #000;
        font: normal 16px Tahoma, Verdana, Arial, sans-serif;
        
   
        
}
	.clsBoton:hover{
		background: #33446B;
		color: #ffffff;
		border-color: #000;
	}

/* clases relacionadas con la ventana modal */
.clsVentana{
	width: 1000px;
	height: 590px;
	border: solid 2px #ccc;
	position: absolute;
	top: 50%;
	margin-top: -310px;
	left: 50%;
	margin-left: -500px;
	border-radius: 6px;
	box-shadow: 0 0 25px #999;
	background: #fff;
	z-index: 99999;
	display: none;
}
	.clsVentanaTitulo{
		background: #1A6BBB;
		color: #fff;
		border-radius: 3px 3px 0 0;
		display: block;
	}
		.clsVentanaTitulo strong{
			display: inline-block;
			padding: 10px;
		}
		.clsVentanaTitulo a{
			float: right;
			display: inline-block;
			color: #fff;
			text-decoration: none;
			background: #000;
			padding: 5px;
			margin: 5px;
			border-radius: 3px;
			cursor: pointer;
		}
			.clsVentanaTitulo a:hover{
				background: #fff;
				color: #000;
			}
	.clsVentanaContenido{
		
                width: 100%;
		height: 560px;
		overflow: auto;
		border-radius: 0 0 3px 3px;
	}
		

                .clsVentanaContenido iframe{
			width: 100%;
			height: 550px;
                        overflow: auto;
			border-radius: 3px;
			border: solid 0px #f1f1f1;
                        behavior: url(PIE/pie.htc);
		}
                
                
            
