@charset "UTF-8";


/* This CSS is for creating a JavaScript controlled striped-row table */


/*_________Striped Table___________*/
/* #stripedTable {
	margin: .5em 0 .75em 0;
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#003333;
} */
.stripedTable {
	margin: .5em 0 .75em 0;
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#003333;
}
.stripedTable thead tr {
	background: #eee;
	font-size: 12px;
	font-weight: bold;
	font-style: normal;
	color: #0b1966;
}
.stripedTable tbody tr td {
	padding: 0.25em;
	border: none;
}
.stripedTable tbody tr.selected {
	background: #3d80df;
	color: #fff;
	font-weight: bold;
	border-left: 1px solid #346dbe;
	border-bottom: 1px solid #7daaea;
}
.odd {
	background: #fff;
}
.even {
	background: #edf3fe;
}
.stripedTable tbody tr.odd.selected {
	color: #ddd;
}
.stripedTable tbody tr.even.selected {
	color: #fff;
}

/* __________Striped Table ENDS ____________*/

