@charset "utf-8";

.clearer {
    clear:both;
    display:block;
    float:none !important;
    border:none !important;
    background: transparent !important;
}

body {
	font: 100% Calibri, Tahoma, Arial, Verdana, Helvetica, sans-serif;
	background: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
 /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
a, h1,h2, h3, h4, table, p{
 font-family:Calibri,Tahoma, Arial, Verdana, Helvetica, sans-serif;
 font-size:10pt;
}

td{
 font-family:Calibri,Tahoma, Arial, Verdana, Helvetica, sans-serif;
 font-size:9pt;
}

th{
	font-family:Calibri,Tahoma, Arial, Verdana, Helvetica, sans-serif;
	font-size:9pt;
	text-decoration: underline;
	font-weight:bold;
	color:#000000;
	text-transform: capitalize;
}
a:link{
	color: #666666;
}

a:visited{
	color:#999999;
}
/*a:hover*/
a:active{
	color:#FF0000;
}


.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #999999;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColFixCtrHdr #login {	
	vertical-align:top;
	padding-left:0px 0px 50px 10px;
}

.oneColFixCtrHdr .h {  
  text-align:right;
}

.oneColFixCtrHdr #mainContent {
	padding: 20px 10px 20px 10px;/* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#002395;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align:center;
	color:#CCCCCC;
}



/* modal window */
.black_overlay{
	display: none;
	position:fixed;
	/* position:absolute; */
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	width:100%;
    height: 100%;
	background-color: black;
	z-index:1001;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
}

.white_content {
	position: absolute;
	display: none;
    padding: 5px;
	
	top: 50%;
	height: 450px;
	margin-top:-225px;
	
	left: 50%;
	width: 400px;
	margin-left:-200px;
	
	border: 5px solid orange;
	background-color: white;
	z-index:1002;
}

table {
	background-color: white;
	-webkit-border-radius: 10px;
	width: 100%;
	padding: 10px;
}
th.sortable {
	color: #666;
	cursor: pointer;
	text-decoration: underline;
}
th.sortable:hover { color: black; }
th.sorted-asc, th.sorted-desc  { color: black; }

td {
	background-color: white;
}
td.odd {
	background-color: #666;
	color: white;
}

td.hovered {
  background-color: lightblue;
  color: #666;
}


.obligado{color:#FF0000;}