@charset "utf-8";
/* CSS Document */

.scrollTable {
	width: 100%;		/* table width will be 99% of this*/
	height: 100px; 	/* must be greater than tbody*/
	overflow: auto;
	margin: 0 auto;
	}

.scrollTable table {
	width: 99%;		/*100% of container produces horiz. scroll in Mozilla*/
	font-size: 10px;
	}

.scrollTable thead tr	{
	position:relative; 
	top: expression(offsetParent.scrollTop); /*IE5+ only*/
	}
	
.scrollTable thead td, .scrollTable thead th {
	background: #efece6;
	/*border: 1px solid;*/
	/*border-color : #ffe #aaab9c #ccc #fff;*/
	font: bold 10px Verdana, Geneva, Arial, Helvetica, sans-serif;
	padding: 4px 3px;
	/*text-align: left*/
	}	
	
.scrollTable table>tbody	{  /* child selector syntax which IE6 and older do not support*/
	overflow: auto; 
	height: 100px;
	overflow-x: hidden;
	}
	
	
.scrollTable table tbody td	{
	/*border-bottom: 1px solid #CCC;*/
	/*border-left: none;*/
	/*border-right: 1px solid #CCC;*/
	font: normal 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: white;

	}
	
.scrollTable table tfoot tr { /*idea of Renato Cherullo to help IE*/
      position: relative; 
      overflow-x: hidden;
      top: expression(parentNode.parentNode.offsetHeight >= 
	  offsetParent.offsetHeight ? 0 - parentNode.parentNode.offsetHeight + offsetParent.offsetHeight + offsetParent.scrollTop : 0);
      }


.scrollTable tfoot td	{
	/*text-align: center;*/
	font-size: 11px;
	font-weight: bold;
	/*background-color: efece6;*/
	color: steelblue;
	/*border-top: solid 1px slategray;*/
	}

.scrollTable td:last-child {padding-right: 20px;} /*prevent Mozilla scrollbar from hiding cell content*/
