/*-------------------------------------------------------------------*/
/*Scrollable Table                                                   */
/*-------------------------------------------------------------------*/

.tableContainer {
   position:relative;
   /*border: 1px solid #666666;*/
   padding-top: 15px;
}
html[xmlns*=""] body:last-child .tableContainer {
   position:relative;
   /*border: 1px solid #666666;*/
   padding-top: 7px;
}
.scrollContent {
   overflow:auto;
}

table.scrollStyle thead tr {
   position:absolute;
   top:0;
   left:0;
}

table.scrollStyle tbody tr td{
   padding: 2px 2px 2px 2px;
   border-left: 1px solid #666666;
   border-right: 1px solid #666666;
   border-bottom: 1px solid #666666;
   text-align: center;
}

table.scrollStyle thead tr th{
   background-color: #DCDCDC;
   padding: 2px 2px 2px 2px;
   border-left: 1px solid #666666;
   border-right: 1px solid #666666;
   border-top: 1px solid #666666;
   /*border-bottom: 1px solid #666666;*/
   text-align: center;
}



