/* define height and width of scrollable area. Add 16px to width for scrollbar          */
div.tableContainer {
	clear: both;
	/* .: t4xi */
	height: auto;
	/* comento lo siguiente: */
	/* height: 425px; */
	/* overflow-x:hidden; */
	/* overflow-y: auto; */ 
	/* t4xi :. */
	width: 525px;
	scrollbar-face-color: #F5FAEF;
	scrollbar-shadow-color: #c6b8a2;
	scrollbar-highlight-color: #c6b8a2;
	scrollbar-3dlight-color: #F5FAEF;
	scrollbar-darkshadow-color: #F5FAEF;
	scrollbar-track-color: #F5FAEF;
	scrollbar-arrow-color: #FF8E34;
}

/* Reset overflow value to hidden for all non-IE browsers. */
html>body div.tableContainer {
	overflow: hidden;
	width: 525px
}

/* define width of table. IE browsers only                 */
div.tableContainer table {
	float: left;
	width: 500px
}

/* define width of table. Add 16px to width for scrollbar.           */
/* All other non-IE browsers.                                        */
html>body div.tableContainer table {
	width: 525px
}

/* set table header to a fixed position. WinIE 6.x only                                       */
/* In WinIE 6.x, any element with a position property set to relative and is a child of       */
/* an element that has an overflow property set, the relative value translates into fixed.    */
/* Ex: parent element DIV with a class of tableContainer has an overflow property set to auto */
thead.fixedHeader tr {
	position: relative
}

/* set THEAD element to have block level attributes. All other non-IE browsers            */
/* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */
html>body thead.fixedHeader tr {
	display: block
}

/* make the TH elements pretty */
thead.fixedHeader th {
	background: #C96;
	border-left: none;
	border-right: none;
	border-top: none;
	font-weight: normal;
	padding: 4px 3px;
	text-align: left
}

/* define the table content to be scrollable                                              */
/* set TBODY element to have block level attributes. All other non-IE browsers            */
/* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */
/* induced side effect is that child TDs no longer accept width: auto                     */
html>body tbody.scrollContent {
	display: block;
	/* .: t4xi */
	/* comento lo siguiente: */
	/* height: 262px; */
	/* overflow: auto; */
	/* t4xi :. */
	width: 100%;
}

/* make TD elements pretty. Provide alternating classes for striping the table */

/*tbody.scrollContent td, tbody.scrollContent tr.normalRow td {
	background-color: transparent;
	border: thin none;
	font-family: Trebuchet MS, Arial, Helvetica;
	font-size: 11px;
	font-style: normal;
	color: #666666;
	text-decoration: none;
	text-align: justify;
	padding-left: 0px;
	padding-top: 2px;
	line-height: 12px;
	list-style-position: inside;
	list-style-image: none;
	list-style-type: none;
}

/*tbody.scrollContent tr.alternateRow td {
	background: #FFFFFF;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-top: none;
	padding: 2px 3px 3px 4px
}*/

