/*

CSS for tables 

codename: chocolate

copyright 2005 Phil Thompson http://www.doubleonegative.com
phil@doubleonegative.com

*/

table{
	border-collapse: collapse;
	margin: 1em auto;
	clear: left;
	font: 100%/130% "Trebuchet MS", Tahoma, Arial, Helvetica, sans-serif;
}

table caption{
	background: none;
	color: #003300;
	border: 1px solid #F2EDDA;
	font-size: 15px;
	text-align: center;
	padding: 2px;
}

th{
	background: #A58F6C;
	border: 1px solid #F2EDDA;
	color: #F5F4F0;
	font-weight: normal;
	font-size: 12px;
	padding: .4em;
	text-align: center;
	text-transform: capitalize;
}

th[scope="col"]{
background: #110;
}


th[scope="row"]{
background: #A58F6C;

}

th[scope="row"] a{
color: #F5F4F1;

}

td a:link{
color: #A58F6C;
}
th a:visited, td a:visited{
color: #110;
}

th a:hover, td a:hover{
text-decoration: none;
}


td{
	background: #F6F4F1;
	color: #110;
	font-size: 12px;
	border: 1px solid #F2EDDA;
	padding: .4em;
}

tr.odd td{
	background: #FFF;
}

tfoot th, tfoot td{
	background: #110 !important;
	color: #F5F4F1;
}


