/*----------------------------------------------*/
/*                                              */
/*                  table.css                   */
/*                 Version 1.0                  */
/*            Last Updated 6/10/2008            */
/*                                              */
/*----------------------------------------------*/

	
table {
	background-color: #cecec7;
	width: 100%;
	margin-top: 2em;
	margin-bottom: 2em;
} 

.table_centered {
	text-align: center;
} 
             
table tr th, table tr td {
	padding: 5px;
}

/*table.odd_even and th and td*/
table tr th, table.odd_even tr.even td {
	background-color: #406080;
	color: #ffffff;
}

table tr td, table.odd_even tr.odd td {
	background-color: #ffffff;
}

table.odd_even tr.even td a:link {
	color: #aaccff;
}

table.odd_even tr.even td a:visited {
	color: #bb6f4d;
}

table.odd_even tr.even td a:hover {
	color: #ec6e36;
	background-color:#507090;
}

table.odd_even tr.even td a:active {
	color: #ec6e36;
}
/*end table.odd_even*/
 
table th.table_title {
	font-family: Georgia, "Times New Roman", Times, serif;
	background-color: #204060;
	font-weight: bold;
	font-size: 1.5em;
	text-align: center;
}

table th.table_subheading {
	font-family: Helvetica, Arial, sans-serif;
	background-color: #7090B0;
	font-size: 1.2em;
	text-align: center;
}

/* format a link in a table header */
th  a:link {
	color: #ffffff;
	text-decoration: none;
}

th a:visited {
	color: #ffffff;
	text-decoration: none;
}

th a:hover {
	color: #3754d4;
}

/* end format a link in a table header */

table .divider_row td{
	background-color: #5D7493;
	color: #ffffff;
	height: 10px;
}
  	  
/*apply formatting to named columns*/
col.special {
	width: 300px;
} 
   
/* show text as strikeout */	  
.strike {
	text-decoration: line-through;
}

/*classes to substitute for align=  	*/  
.left {
	text-align: left;
} 
  	  
.right {
	text-align: right;
}
  	  
.center {
	text-align: center;
}

