@charset "utf-8";  

/*** Estilos para Tablas con ordenaci�n ***/ 
/*  
Usar SIEMPRE comunStyle.css (sino no funcionar�)
-No agrupar los estilos referentes al background
-No cambiar el orden de los estilos de la tabla
-Si queremos que un estilo s�lo se refiera a la tabla, nombrarlo a trav�s de la clase de la tabla es decir table.tablesorter tbody td .estilo
-Para casos en los que no sea posible hacer esto, poner el prefijo tb_ = tabla  
-La tabla debe de estar perfectamente construida con sus th, thead, tbody, etc, adem�s as� es accesible
-Eliminar Script y Estilos referentes a paginacion cuando estos no sean necesarios
-Abreviaturas:
hd = header
bd = body
ft = footer
*/
/**************************/
/* Estilos propios de la Tabla */
table.tablesorter {
	width: 100%;
	text-align: right;
}

/* TH Cabecera */
table.tablesorter thead tr th{
    background-color: #eeefef;
	padding: 6px 6px 6px 16px;
	white-space: nowrap;
    color: #596560;
    font-family: "Opensans", Verdana, Helvetica ,sans-serif;
    font-size: 0.7em;
    font-weight : bold;
	text-align: center;
}
table.tablesorter thead tr th.varP{
	padding: 6px 5px 6px 6px;
}
table.tablesorter thead tr th.vol{
	padding: 6px 5px 6px 20px;
}
table.tablesorter thead tr th.hour{
	padding: 6px 10px 6px 6px;
}
table.tablesorter thead tr th.headerLeft{
    background-image: url(../img/sort.png);
    background-repeat: no-repeat;
    background-position: 45px 10px;
    background-color: #eeefef;
    padding: 6px 6px 6px 6px;
    white-space: nowrap;
    color: #596560;
    font-family: "Opensans", Verdana, Helvetica ,sans-serif;
    font-size: 0.7em;
    font-weight : bold;
    text-align: left;
}
table.tablesorter thead tr th.headerOrdena{
    background-image: url(../img/sort.png);
    background-repeat: no-repeat;
    background-position: 45px 10px;
    background-color: #eeefef;
    white-space: nowrap;
    color: #596560;
    font-family: "Opensans", Verdana, Helvetica ,sans-serif;
    font-size: 0.7em;
    font-weight : bold;
    text-align: left;
}
/* TR Cabecera */


/* TD General */
table.tablesorter tbody {
    width: 100%;
    overflow: hidden;
}

table.tablesorter tbody td {
    border-bottom: 1px dotted #d8dbdb;
	padding: 6px 10px 6px 0;
	white-space: nowrap !important;
    font-family: "Opensans", Verdana, Helvetica ,sans-serif;
    font-size: 12px;
    color: #9da7a7;
}
table.tablesorter tbody td.rentDiv{
	padding: 6px 22px 6px 0;
}
/* TD Izquierda de la Tabla (Valor) */
table.tablesorter tbody .tb_titDato {
    border-bottom: 1px dotted #d8dbdb;
    padding: 6px 0 6px 10px;
    white-space: nowrap !important;
    font-size: 12px;
    font-family: "Opensans", Verdana, Helvetica ,sans-serif;
    color: #596560;
	text-align: left;
}
table.tablesorter tbody .tb_titDato a {
	white-space: nowrap!important;
	color: #596560;
    font-family: "Opensans", Verdana, Helvetica ,sans-serif;
    font-size: 12px;
    font-weight : normal !important;
	text-decoration: none;
}
table.tablesorter tbody .tb_titDato a:hover {
	text-decoration: underline;
}
/* TD Impar */
table.tablesorter tbody tr.odd td {
	background-color: #ffffff
}
/* TH Impar */
table.tablesorter tbody tr.odd th {
	background-color: #ffffff;
	font-weight: bold;
	text-align: left
}
/* TH Flecha Ordenaci�n Ascendente */
table.tablesorter thead tr .headerSortUp {
	background-image: url(../img/sortUp.png)
}
/* TH Flecha Ordenaci�n Descendente */
table.tablesorter thead tr .headerSortDown {
	background-image: url(../img/sortDown.png)
}
/* TH Ordenaci�n Ascendente y Descendente */
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
	background-color: #EEEFEF;
	color: #596560;
}
/* TH Footer */
table.tablesorter tfoot tr th{
	width: 100%;
	padding: 2px 0 0 0
}
table.tablesorter tfoot tr th div img{
	cursor: pointer
}
/* Solapas de la Tabla */
.ifb-boxMenuTbl{
    overflow: hidden;
    margin: 20px 0;
    padding: 0;
    width: 100%;
}
.ifb-boxMenuTbl ul{
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
    background-color: #d8dbdd;
}
.ifb-boxMenuTbl ul li{
    float: left;
    margin: 0;
    padding: 0;
    display: inline;
    list-style: none;
    border-right: 1px solid #fff;
}
.ifb-boxMenuTbl ul li a.active{
    margin: 0;
    padding:3px 10px 0 5px;
    display: block;
    height: 30px;
    width: 100px;
    background-color: #000;
    font-family: "Proximanova", verdana;
    font-weight : normal;
    font-size: 0.8em;
    color:#fff;
    text-transform: uppercase;
    line-height: 1.0em;
    text-decoration: none;
}
.ifb-boxMenuTbl ul li a.active:hover{
    background-color: #9da7a8;
}
.ifb-boxMenuTbl ul li a.noActive{
    margin: 0;
    padding:3px 10px 0 5px;
    display: block;
    height: 30px;
    width: 100px;
    background-color: #d8dbdd;
    font-family: "Proximanova", verdana;
    font-weight : normal;
    font-size: 0.8em;
    color: #586560;
    text-transform: uppercase;
    line-height: 1.0em;
    text-decoration: none;
}
.ifb-boxMenuTbl ul li a.noActive:hover{
    background-color: #9da7a8;
    color:#fff;
}
