@CHARSET "ISO-8859-1";
/* Clases genericas */
.right {
	float: right;
}
.left {
	float: left;
}
.bold {
	font-weight: bold;
}

/* Ancho total de toda la pagina */
/*body {
	width: 1140px;
}*/

meter {
	width: 92%; height: 9px;
}
meter::-webkit-meter-bar {
    background: #2291CC;
    background-color: #EEE;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2) inset;
    border-radius: 3px;
}
meter::-webkit-meter-optimum-value {
    background: #2291CC; Green
    border-radius: 3px;
}

meter::-webkit-meter-suboptimum-value {
    background: #2291CC; Yellow
    border-radius: 3px;
}

meter::-webkit-meter-even-less-good-value {
    background: #2291CC; Red
    border-radius: 3px;
}
/* Barra de usuario de arriba de todo */		
#user-bar {
 	background : url('../img/header/fondo_user_bar.jpg');
	background-size:100% 100%;
	width: 100%;
	height: 31px;
}
#user-bar a{
	padding-left: 15px;
}

/* Logo y barra de navegacion */
div.title-bar {
	float: left;
	height: 128px;
	width: 100%;
}
div.navigation-bar {
	background : url("../img/header/fondo_navigation.jpg");
	background-size:100% 100%;
	padding-top: 81px;
}
ul.horizontal li {
	display:inline;
}
ul.navigation-options {
	height: 47px;
	padding: 0px;
	margin: 0px;
}

/* Mensaje de error y notificacion */
div.notifications {
	clear: both;
	color: white;
}
div.error {
	background-color: #ff8080;
	line-height: 50px;
	padding: 0 26px;
	text-align: center;
}
div.message {
	background-color: #81c348;
	line-height: 50px;
	text-align: center;
}



/* Elementos ocultos */
.hidden {
	display: none;
}