/*Styles used with jquery.js */

/*------------------------------------Striped tables with border lines--------------------------------------*/

table.stripeMe  { border-collapse:collapse;}

.stripeMe td, th{
	padding: 3px 3px 3px 10px;
	text-align: left;
	border: 1px solid #7799AA;
	font-size: 75%;
}
.stripeMe th{
	background-color: #BCCCDF;
	color: #333333;
}
tr.alt td {
	background-color: #F3EEDF;
}

/*------------------------------------Striped tables with no border lines--------------------------------------*/

table.stripeMeNoLines  { border-collapse:collapse;}
.stripeMeNoLines td, th{
	padding: 3px 3px 3px 10px;
	text-align: left;
	font-size: 75%;
}

.stripeMeNoLines th{
	background-color: #BCCCDF;
	color: #333333;
}

