/* CSS Document */

.table {
	width: 100%;
	border: 1px solid #96A7AF;
	background-color: #96A7AF;
	overflow: hidden;
}

.table thead th {
	font-weight: bold;
	color: #464646;
}

.table tbody tr {
	background: #FFF;
}

.table tfoot tr {
	background: #FFF;
}

.table tbody tr:nth-child(odd) { background-color: #FFF; }
.table tbody tr:nth-child(even) { background-color:#efefef; }
.table tbody tr.odd { background-color: #FFF; }
.table tbody tr.even { background-color:#efefef; }

.table tbody td, .table th {
	line-height: 30px;
	padding: 5px 5px;
	color: #000;
	vertical-align:middle;
}

.table tbody td img {
	vertical-align: middle;
}

.table th {
	font-size: 12px;
	line-height: 20px;
}

.table td a {
	text-decoration: none; 
}
