﻿/* makes tableContainer Class of DIV */

/* Makes entire table visable for printing */
@media print {DIV.tableContainer
 {  overflow:visible } }

/* Makes table scrollable for display */
@media screen {DIV.tableContainer   
{
   overflow: auto
   }}
   
DIV.tableContainer   
{
   /* Sets the BORDER properties */
   border-collapse:collapse;
   
   /* Sets Width and Height of the container */
   height: 375px
}
/* fixedHeader is the class of THEAD and TR is the property */
/* Sets the attribute for TH property. Watch out for the TH here. It is used instead of TD. */
TBODY.scrollContent TD
{
 	border-width: 1px;
  	border-color:gray;
  	border-style:solid;
  	padding: 2px;	

}
TBODY.scrollContentNOGRID TD
{
 	border-width: 1px;
  	border-color:white;
  	border-style:solid;
  	padding: 2px;	

}

.FixedHead {
	border: 1px #000000 solid;
	text-align:center;
	font-weight: bold;
	padding: 2px;
	color: #000000;
	background-color:#cccc99;

}
.Indent0 {
	margin-left: 0in;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}
.Indent1 {
	margin-left: 0.2in;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}
.Indent2 {
	margin-left: 0.4in;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}
.Indent3 {
	margin-left: 0.6in;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}
.Indent4 {
	margin-left: 0.8in;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}
.Indent5 {
	margin-left: 1in;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}
.tocIndent1 {
	margin-left: 0.5in;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}
.tocIndent2 {
	margin-left: 1.0in;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}
.tocIndent3 {
	margin-left: 1.5in;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}

