/**
 * <projectname>
 *
 * Contains declarations for table related XHTML elements.
 *
 * @author 			Davy De Pauw <davy@marlon.be>
 * @copyright		Marlon bvba <http://www.marlon.be>
 * @date 			2007-11-22
 * @lastmodified	2007-12-05
 */

/* redefine table specific xhtml selectors
---------------------------------------------------------- */

table {
	position: relative;
	left: -10px;
	margin: 0 0 30px 0;
	width: 500px;
	border-collapse: collapse;
	border-top: 1px solid #d6d7d7;
	border-left: 1px solid #d6d7d7;

}

caption {
	height: 0px;
	line-height: 0px;
	text-indent: -999em;
}

tr {
}

th {
	padding: 8px 15px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	text-align: left;
	text-transform: lowercase;
	color: #517695;
	background: #e9ebed;
}

td {
	padding: 3px 15px;
}

th, td {
	border-right: 1px solid #d6d7d7;
	border-bottom: 1px solid #d6d7d7;
}

thead {

}

tbody {

}

tfoot {

}

/* site table specific styles
---------------------------------------------------------- */

.highlight {

}

tr.odd th,
tr.even th {
	font-size: 1em;
	color: #0b5a97;
	border-bottom: none;
}

tr.odd td {
	background: #f8f8f8;
}

tr.even td,
tr.even th {
}