/* CSS Document */

// a simple, bordered table
#table1 
	{
	visibility: visible;
	width: 100%;
	position: relative
	}

#table1 table   
	{
	font-size: 10px;
	font-family: Verdana, Geneva, Arial, sans-serif;
	background-color: transparent;
	}

#table1 td 
	{
	padding: 0px 4px 0px 4px;
	background-color: #E0C8D8
	}

	
// table 2 uses CSS border style	

#table2 
	{
	visibility: visible;
	width: 100%;
	position: relative
	}

#table2 table   
	{
	font-size: 10px;
	font-family: Verdana, Geneva, Arial, sans-serif;
	background-color: transparent
	}

#table2 td
	{
	padding: 0px 4px 0px 4px;
	border-color: #999;
	border-width: 1px;
	border-style: none dotted solid none
	}

#table2 tr
	{
	background-color: #F9FAF9
	}
	
// table 3 has the 3D effect cells	

#table3 
	{
	visibility: visible;
	width: 100%;
	position: relative
	}

#table3 table   
	{
	font-size: 10px;
	font-family: Verdana, Geneva, Arial, sans-serif;
	background-color: transparent;
	}

#table3 td 
	{
	padding: 0px 4px 0px 4px;
	background-color: #E0C8D8
	}

	
	
// table 4 uses gradated background images

#table4 
	{
	visibility: visible;
	width: 100%;
	position: relative
	}

#table4 table   
	{
	font-size: 9px;
	font-family: Verdana, Geneva, Arial, sans-serif;
	background-color: transparent
	}

#table4 td  
	{
	padding: 0 4px;
	border-left: 1px solid #ccc
	}

#table4 tr  
	{
	background-image: url("../../img/t4grad.png");
	background-repeat: repeat-x
	}

#table4 th  
	{
	color: #393;
	background-image: url("../../img/t4hgrad.png");
	background-repeat: repeat-x;
	text-align: left;
	padding-left: 5px
	}

// table 5 demonstrates inline styling of individual cells

#table5 
	{
	visibility: visible;
	width: 100%;
	position: relative
	}

#table5 table   
	{
	font-size: 9px;
	font-family: Verdana, Geneva, Arial, sans-serif;
	background-color: #000
	}

#table5 td 
	{
	padding: 0px 4px 0px 4px;
		background-color: #fff
	}h3 {

	color:#000066;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 12;
	font-variant: normal;
	text-decoration: underline;
}
