/* ------------------------------------------------- */
/* Table Class Styles                                */
/* ------------------------------------------------- */

/* gridTable: a simple table with 1px borders, nothing fancy */
.gridTable {
	border-collapse:collapse;
}

.gridTable td, .gridTable th{
	border: 1px solid black;
	padding: 5px;
}

/* stripedTable: a fancy looking greyscale table with nice borders, alternating row colors, and blue links when rolled over */
.stripedTable {
	background-color: #FFFFFF;
	border: 2px solid #666;
	border-collapse: collapse;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	width: 100%;
	font-size: 1.0em;
}

.stripedTable tr:nth-child(odd) {
	background-color:#eee;
}

.stripedTable th {
	height: 32px;
	background-color: #ccc;
	background-image: url('../images/whiteGradientSmall.png');
	background-repeat: repeat-x;
	font-weight: bold;
	text-align: center;
	border: 1px solid #888;
	color: #000;
	padding: 5px 10px;
	vertical-align: middle;
}

.stripedTable td {
	border: 1px solid #ccc;
	height: 28px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 5px;
	color: #000;
	vertical-align: middle;
}

.stripedTable .even td {
	background-color: #fff;
}

.stripedTable .odd td {
	background-color :#eee;
}

.stripedTable a {
	color: #333;
	font-weight: normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration: underline;
}

.stripedTable a:hover {
	text-decoration: none;
}

#content .stripedTable a:visited {
	color: #333;
}