


.fadebox {
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color:#000;
	z-index:1001;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
}
.overbox {
	display: none;
	position: fixed;
	top: 10%;
	left: 25%;
	width: 50%;
	height: 100%;
	z-index:1002;
	overflow: auto;
}
#contenido {
        /*position: fixed;*/
	background: #FFFFFF;
	border: solid 3px #CCCCCC;
	padding: 10px;
        margin: 10px;
}
.error{
	background-color: #BC1010;
	padding: 1px 1px;
	border-radius: 4px;
	color: white;
	font-weight: bold;
	margin-left: 16px;
	margin-top: 6px;
	position: absolute;
}
.error:before{
    content: '';
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #BC1010;
    border-left: 8px solid transparent;
    left: -16px;
    position: absolute;
    top: 4px;
}
.datos_listos{
   	display: none;
	position: absolute;
	top: 10%;
	left: 25%;
	width: 50%;
	height: 100%;
	overflow: auto;
}
.cerrar{
    position: absolute;
    width: 40px;
    height: 40px;
/*    float: right;*/
    right: 0px;
    top:0px;
    background-image: url('../images/salir.png');
    background-size: 40px;
    background-repeat: no-repeat;
    cursor:pointer;
}