@charset "utf-8";
body {
	background-color: #065d7a;
	margin: 0;
	padding: 0;
	color: #000;
	font-family: "Myriad Pro";
	font-size: 100%;
	line-height: 1.4;
}

/* ~~ Selectores de elemento/etiqueta ~~ */
ul, ol, dl { /* Debido a las diferencias existentes entre los navegadores, es recomendable no añadir relleno ni márgenes en las listas. Para lograr coherencia, puede especificar las cantidades deseadas aquí o en los elementos de lista (LI, DT, DD) que contienen. Recuerde que lo que haga aquí se aplicará en cascada en la lista .nav, a no ser que escriba un selector más específico. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* la eliminación del margen superior resuelve un problema que origina que los márgenes escapen de la etiqueta div contenedora. El margen inferior restante lo mantendrá separado de los elementos de que le sigan. */
	padding-right: 15px;
	padding-left: 15px; /* la adición de relleno a los lados del elemento dentro de las divs, en lugar de en las divs propiamente dichas, elimina todas las matemáticas de modelo de cuadro. Una div anidada con relleno lateral también puede usarse como método alternativo. */
}
a img { /* este selector elimina el borde azul predeterminado que se muestra en algunos navegadores alrededor de una imagen cuando está rodeada por un vínculo */
	border: none;
}
/* ~~ La aplicación de estilo a los vínculos del sitio debe permanecer en este orden (incluido el grupo de selectores que crea el efecto hover -paso por encima-). ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* a no ser que aplique estilos a los vínculos para que tengan un aspecto muy exclusivo, es recomendable proporcionar subrayados para facilitar una identificación visual rápida */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* este grupo de selectores proporcionará a un usuario que navegue mediante el teclado la misma experiencia de hover (paso por encima) que experimenta un usuario que emplea un ratón. */
	text-decoration: none;
}

/* ~~ este contenedor de anchura fija rodea a las demás divs ~~ */
.container {
	width: 100%;
	background-color: #065d7a; /* el valor automático de los lados, unido a la anchura, centra el diseño */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/* ~~ no se asigna una anchura al encabezado. Se extenderá por toda la anchura del diseño. Contiene un marcador de posición de imagen que debe sustituirse por su propio logotipo vinculado ~~ */
.header {
	background-color: #065d7a;
	height: 40px;
	width: 100%;
	color: #FFF;
	position: fixed;
	z-index: 2;
}

/* ~~ Esta es la información de diseño. ~~ 

1) El relleno sólo se sitúa en la parte superior y/o inferior de la div. Los elementos situados dentro de esta div tienen relleno a los lados. Esto le ahorra las "matemáticas de modelo de cuadro". Recuerde que si añade relleno o borde lateral a la div propiamente dicha, éste se añadirá a la anchura que defina para crear la anchura *total*. También puede optar por eliminar el relleno del elemento en la div y colocar una segunda div dentro de ésta sin anchura y el relleno necesario para el diseño deseado.

*/

.content {
	background-color: #065d7a;
	color: #000000;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}

/* ~~ El pie de página ~~ */
.footer {
	background-color: #065d7a;
	height: 100px;
	width: 100%;
	padding-top: 100px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	text-align: center;
	color: #FFFFFF;
	font-size: 24px;
	font-weight: bold;
	font-style: normal;
}

/* ~~ clases float/clear varias ~~ */
.fltrt {  /* esta clase puede utilizarse para que un elemento flote en la parte derecha de la página. El elemento flotante debe preceder al elemento junto al que debe aparecer en la página. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* esta clase puede utilizarse para que un elemento flote en la parte izquierda de la página. El elemento flotante debe preceder al elemento junto al que debe aparecer en la página. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* esta clase puede situarse en una <br /> o div vacía como elemento final tras la última div flotante (dentro de #container) si #footer se elimina o se saca fuera de #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.tab_menuIzq {
	background-color: #065d7a;
	font-size: 14px;
	color: #FFF;
	height:auto;
	position: fixed;
	z-index: 2;
	
}

.tab_content {
	background: #7aabbf; /* Old browsers */
	background: -moz-linear-gradient(top,  #7aabbf 0%, #a8ccdb 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7aabbf), color-stop(100%,#a8ccdb));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #7aabbf 0%,#a8ccdb 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #7aabbf 0%,#a8ccdb 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #7aabbf 0%,#a8ccdb 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #7aabbf 0%,#a8ccdb 100%); /* W3C */

	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7aabbf', endColorstr='#a8ccdb',GradientType=0 ); /* IE6-9 */
	border-top-left-radius: 30px; /* Opera */
	-moz-border-radius-topleft: 30px; /* Mozilla */
	-webkit-border-top-left-radius: 30px;
	position: relative;
	top: 48px;
	z-index: 1;
	padding: 10px;
	
}

#titulo {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	color: #065d7a;
	
}

#subtitulo {
	font-size: 16px;
	font-weight: bold;
	color: #424242;
	
}

#texto {
	
}

#contact {
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

#contact fieldset {
	border: 1px solid #EEEEEE;
	padding: 20px;
	border-radius: 3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

#contact legend {
    border: 1px solid #EEEEEE;
    color: #666;
    margin-bottom: 0 !important;
    padding: 7px 10px;
    font-weight: bold;
    border-radius: 3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 20px;
}

#contact label {
    display: inline-block;
    float: left;
    font-size: 1em;
    height: 26px;
    line-height: 26px;
    width: 155px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
}

#contact input, #contact textarea, #contact select {
	background: none repeat scroll 0 0 #F5F5F5;
	border: 1px solid #CCCCCC;
	color: #666666;
	margin: 5px 0;
	padding: 5px;
	width: 360px;
	border-radius: 3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
}

#contact .button {
	border-radius: 3px;
	margin: 5px 20px 10px 155px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

#contact input:focus, #contact textarea:focus {
	border: 1px solid #eee;
	color: #444;
	background: #fff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

#contact .error {
	border: 1px solid #973d3d;
	background: #f0bebe;
	color: #a35959;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#contact .error:focus {
	border: 1px solid #eee;
	color: #a35959;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.button {
	background-color: #065d7a;
	background-image: -webkit-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
	background-image: -moz-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
	background-image: -ms-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
	background-image: -o-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
	background-image: linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
	border: 1px none #111;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin: 20px;
	padding: 16px 20px;
	position: relative;
	text-decoration: none;
	text-shadow: 0 -1px 1px hsla(0,0%,0%,.8);
	vertical-align: top;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
    .button:hover, .button:focus {
	background-color: #7aabbf;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
    }
    .button:active {
	background-color: #202020;
	color: #b6b6b6;
	padding: 16px 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
    }
	
#menuIzq {
	position:absolute;
	top:50px;
}

.menuIzqBtn {
	width:200%;
	height:20px;
	font-size:0.7vmax;
	text-align:center;
	padding-bottom:3px;
	padding-right:3px;
	padding-left:3px;
	padding-top:3px;
	clear:both; 
	display:block;
	margin:0.2em;
	
	/*
	Sólo funciona para Chrome
	
	display: table-cell; 
	vertical-align: middle;
	*/
	
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #065d7a 0%, #35849e 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#065d7a), color-stop(100%,#35849e));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #065d7a 0%,#35849e 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#065d7a', endColorstr='#35849e',GradientType=0 ); /* IE6-9 */
	
	box-shadow: 2px 2px 5px #7aabbf;
 	-webkit-box-shadow: 2px 2px 5px #7aabbf;
 	-moz-box-shadow: 2px 2px 5px #7aabbf;
 	filter: progid:DXImageTransform.Microsoft.Shadow(color='#7aabbf', Direction=135, Strength=4);
	
	border-top-right-radius: 10px; /* Opera */
	border-top-left-radius: 10px; /* Opera */
	-moz-border-radius-topright: 10px; /* Mozilla */
	-moz-border-radius-topleft: 10px; /* Mozilla */
	-webkit-border-top-right-radius: 10px; /* webkit */
	-webkit-border-top-left-radius: 10px; /* webkit */
}

	.menuIzqBtn:hover, .menuIzqBtn:focus {
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #1907e4 0%, #4737fa 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1907e4), color-stop(100%,#4737fa));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #1907e4 0%,#4737fa 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1907e4', endColorstr='#4737fa',GradientType=0 ); /* IE6-9 */
    }
    .menuIzqBtn:active {
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #1907e4 0%, #4737fa 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1907e4), color-stop(100%,#4737fa));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #1907e4 0%,#4737fa 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1907e4', endColorstr='#4737fa',GradientType=0 ); /* IE6-9 */
    }
	
.submenuSupBtnInactivo {
	width:95%;
	height:20px;
	font-size:0.7vmax;
	text-align:center;
	padding-bottom:3px;
	padding-right:3px;
	padding-left:3px;
	padding-top:3px;
	clear:both; 
	display:block;
	margin:0.2em;
	
	/*
	Sólo funciona para Chrome
	
	display: table-cell; 
	vertical-align: middle;
	*/
	
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #065d7a 0%, #35849e 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#065d7a), color-stop(100%,#35849e));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #065d7a 0%,#35849e 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#065d7a', endColorstr='#35849e',GradientType=0 ); /* IE6-9 */
	
	box-shadow: 2px 2px 5px #7aabbf;
 	-webkit-box-shadow: 2px 2px 5px #7aabbf;
 	-moz-box-shadow: 2px 2px 5px #7aabbf;
 	filter: progid:DXImageTransform.Microsoft.Shadow(color='#7aabbf', Direction=135, Strength=4);
	
	border-top-right-radius: 10px; /* Opera */
	border-top-left-radius: 10px; /* Opera */
	-moz-border-radius-topright: 10px; /* Mozilla */
	-moz-border-radius-topleft: 10px; /* Mozilla */
	-webkit-border-top-right-radius: 10px; /* webkit */
	-webkit-border-top-left-radius: 10px; /* webkit */
}

	.submenuSupBtnInactivo:hover, .submenuSupBtnInactivo:focus {
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #1907e4 0%, #4737fa 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1907e4), color-stop(100%,#4737fa));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #1907e4 0%,#4737fa 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1907e4', endColorstr='#4737fa',GradientType=0 ); /* IE6-9 */
    }
    .submenuSupBtnInactivo:active {
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #1907e4 0%, #4737fa 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1907e4), color-stop(100%,#4737fa));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #1907e4 0%,#4737fa 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1907e4', endColorstr='#4737fa',GradientType=0 ); /* IE6-9 */
    }
	
.submenuSupBtnActivo {
	width:95%;
	height:20px;
	font-size:0.7vmax;
	text-align:center;
	padding-bottom:3px;
	padding-right:3px;
	padding-left:3px;
	padding-top:3px;
	clear:both; 
	display:block;
	margin:0.2em;
	
	/*
	Sólo funciona para Chrome
	
	display: table-cell; 
	vertical-align: middle;
	*/
	
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #1907e4 0%, #4737fa 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1907e4), color-stop(100%,#4737fa));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #1907e4 0%,#4737fa 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1907e4', endColorstr='#4737fa',GradientType=0 ); /* IE6-9 */
	
	box-shadow: 2px 2px 5px #7aabbf;
 	-webkit-box-shadow: 2px 2px 5px #7aabbf;
 	-moz-box-shadow: 2px 2px 5px #7aabbf;
 	filter: progid:DXImageTransform.Microsoft.Shadow(color='#7aabbf', Direction=135, Strength=4);
	
	border-top-right-radius: 10px; /* Opera */
	border-top-left-radius: 10px; /* Opera */
	-moz-border-radius-topright: 10px; /* Mozilla */
	-moz-border-radius-topleft: 10px; /* Mozilla */
	-webkit-border-top-right-radius: 10px; /* webkit */
	-webkit-border-top-left-radius: 10px; /* webkit */
}

	.submenuSupBtnActivo:hover, .submenuSupBtnActivo:focus {
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #1907e4 0%, #4737fa 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1907e4), color-stop(100%,#4737fa));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #1907e4 0%,#4737fa 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1907e4', endColorstr='#4737fa',GradientType=0 ); /* IE6-9 */
    }
    .submenuSupBtnActivo:active {
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #1907e4 0%, #4737fa 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1907e4), color-stop(100%,#4737fa));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #1907e4 0%,#4737fa 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #1907e4 0%,#4737fa 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1907e4', endColorstr='#4737fa',GradientType=0 ); /* IE6-9 */
    }

#contenedorMenu {
	background:none;
	top:150px;
	position:fixed;
}

#tabHeaderRight {
	padding:10px;	
}

#lineaPunteada {
	border-width: 1px; 
	border-style:dotted; 
	color:#065d7a;	
}

#lineaRecta {
	color: #065d7a;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.off{
    background-color:#EDEDED;
}
.on{
    background-color: ;
}

.checkBox {
	text-align:center; 
	vertical-align: middle;
	width:12px; 
	height:12px; 
	cursor:pointer;	
}

#loginSucursal {
	color: #FFF;
	padding: 5px;
	
	border-radius: 10px; /* Opera */
	-moz-border-radius: 10px; /* Mozilla */
	-webkit-border-radius: 10px; /* webkit */
	
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #065d7a 0%, #35849e 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#065d7a), color-stop(100%,#35849e));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #065d7a 0%,#35849e 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#065d7a', endColorstr='#35849e',GradientType=0 ); /* IE6-9 */
}

#loginUsuario {
	color: #FFF;
	padding: 5px;
	
	border-radius: 10px; /* Opera */
	-moz-border-radius: 10px; /* Mozilla */
	-webkit-border-radius: 10px; /* webkit */
	
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #065d7a 0%, #35849e 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#065d7a), color-stop(100%,#35849e));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #065d7a 0%,#35849e 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#065d7a', endColorstr='#35849e',GradientType=0 ); /* IE6-9 */
}

#loginProyecto {
	color: #FFF;
	padding: 5px;
	
	border-radius: 10px; /* Opera */
	-moz-border-radius: 10px; /* Mozilla */
	-webkit-border-radius: 10px; /* webkit */
	
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #065d7a 0%, #35849e 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#065d7a), color-stop(100%,#35849e));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #065d7a 0%,#35849e 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#065d7a', endColorstr='#35849e',GradientType=0 ); /* IE6-9 */
}

#cursor_btn {
	cursor:pointer;
}

div.upload {
    width: 20px;
    height: 20px;
    background: url(../images/icono_adjuntar2.png) no-repeat center;
    overflow: hidden;
	cursor:pointer;
}

div.upload input {
    display: block !important;
    width: 157px !important;
    height: 57px !important;
    opacity: 0 !important;
    overflow: hidden !important;
}

#tablaContenido {
	color:#000;
}

#tabTit {
	color:#000;
	font-size:12px;
}

#tabCheckArea {
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	font-size: 12px;
	background: #FFF;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 5px;
	padding-right: 5px;
	border: 1px solid #a9a9a9;
}

#tabCheckArea:hover {
	border: 1px solid #7e7e7e;
}

#planoGral {
	color: #FFF;
	padding: 5px;
	
	border-top-right-radius: 10px; /* Opera */
	border-top-left-radius: 10px; /* Opera */
	-moz-border-radius-topright: 10px; /* Mozilla */
	-moz-border-radius-topleft: 10px; /* Mozilla */
	-webkit-border-top-right-radius: 10px; /* webkit */
	-webkit-border-top-left-radius: 10px; /* webkit */
	
	background: #f1f1f1; /* Old browsers */
	background: -moz-linear-gradient(top,  #065d7a 0%, #35849e 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#065d7a), color-stop(100%,#35849e));/* Chrome,Safari4*/
	background: -webkit-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #065d7a 0%,#35849e 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #065d7a 0%,#35849e 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#065d7a', endColorstr='#35849e',GradientType=0 ); /* IE6-9 */
}

#imgSup {
	position: fixed;
	z-index: 3;
	
}

.imgSupGrande {
	display:block;
	max-width: 10%;
	max-height:13%
}

.imgSupChica {
	display:none;
	max-width: 3%;
	max-height:6%
}

#imgMostrarMenu {
	position: fixed;
	z-index: 4;
	left:13px;
	display:block; 
	cursor:pointer;
	max-width: 3%;
	max-height: 3%;
	
}

#imgOcultarMenu {
	position: fixed;
	z-index: 4;
	left:10px;
	display:none; 
	cursor:pointer;
	max-width: 3%;
	max-height: 3%;
	
}

.buttonImgRefresh {
		width:130px;
		background-color: #065d7a;
		background-image: -webkit-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
		background-image: -moz-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
		background-image: -ms-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
		background-image: -o-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
		background-image: linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
		border: 1px none #111;
		color: #FFFFFF;
		cursor: pointer;
		display: inline-block;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 12px;
		padding: 5px;
		margin-top:34px;
		position: relative;
		text-decoration: none;
		text-shadow: 0 -1px 1px hsla(0,0%,0%,.8);
		vertical-align: top;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}
    .buttonImgRefresh:hover, .buttonImgRefresh:focus {
		background-color: #7aabbf;
		color: #000000;
		font-family: Verdana, Arial, Helvetica, sans-serif;
    }
    .buttonImgRefresh:active {
		background-color: #202020;
		color: #b6b6b6;
		font-family: Verdana, Arial, Helvetica, sans-serif;
    }

input[readonly], textarea[readonly], select[readonly], checkbox[readonly], input[disabled], textarea[disabled], select[disabled], checkbox[disabled] {
	background:#065d7a !important;
	color:#FFF !important;
	
}

/*************************** Eva - ES: Botón de la tabla creada por Ajax **********************************/

.buttonEvaES {
	background-color: #065d7a;
	background-image: -webkit-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
	background-image: -moz-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
	background-image: -ms-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
	background-image: -o-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
	background-image: linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
	text-align:center;
	width:20px;
	height:20px;
	border: 1px none #111;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	position: relative;
	text-decoration: none;
	text-shadow: 0 -1px 1px hsla(0,0%,0%,.8);
	vertical-align: top;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
    .buttonEvaES:hover, .buttonEvaES:focus {
	background-color: #7aabbf;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
    }
    .buttonEvaES:active {
	background-color: #202020;
	color: #b6b6b6;
	font-family: Verdana, Arial, Helvetica, sans-serif;
    }
	
/******************************* Eva - ES: Botón para subir foto ********************************************/
.buttonFoto {
		width:100px;
		background-color: #065d7a;
		background-image: -webkit-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
		background-image: -moz-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
		background-image: -ms-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
		background-image: -o-linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
		background-image: linear-gradient(hsla(0,0%,100%,.15), hsla(0,0%,0%,0));
		border: 1px none #111;
		color: #FFFFFF;
		cursor: pointer;
		display: inline-block;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 12px;
		padding: 5px;
		position: relative;
		text-decoration: none;
		text-shadow: 0 -1px 1px hsla(0,0%,0%,.8);
		vertical-align: top;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}
    .buttonFoto:hover, .buttonFoto:focus {
		background-color: #7aabbf;
		color: #000000;
		font-family: Verdana, Arial, Helvetica, sans-serif;
    }
    .buttonFoto:active {
		background-color: #202020;
		color: #b6b6b6;
		font-family: Verdana, Arial, Helvetica, sans-serif;
    }
	
/******************************* Paginación - Páginas de las evaluaciones ********************************************/
.paginacionContent {
	background:#FFF;
	width:300px;
	clear: both;
	display: inline-block;
}
.pagAnterior, .pagPrimero, .pagSiguiente, .pagUltimo {
	position:relative;
	float: left;
	padding-top:5px;
	background: #065d7a;
	width: 32px;
	height: 35px;
	color: #FFF;
	border: thin solid #CCC;
	cursor:pointer;
}
	.pagAnterior:hover, .pagPrimero:hover, .pagSiguiente:hover, .pagUltimo:hover {
		background: #2e7c96;
	}
.pagPagina {
	position:relative;
	float: left;
	padding-top:7px;
	background: #FFF;
	width: 170px;
	height: 26px;
	color: #000;
	border: thin solid #CCC;
}
#pagina {
	width:23px;
	height:16px;
}