/* 

	TableCloth	
	by Alen Grakalic, brought to you by cssglobe.com
	
*/

/* general styles */


table, td {
	font-family: Verdana, Arial, Helvetica, sans-serif;	

}
table {
	width: 100%;
	border-collapse: collapse;
	margin: 1em 0;
}
th, td {
	text-align: left;
	padding: .5em;
	border: 1px solid #fff;
}
th {
	background: #999;
	color: #fff;
}
td {
	background: #e5f1f4;
}
h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
}

/* tablecloth styles */

tr.even td {
	background: #F4C6C6;
}
tr.odd td {
	background: #DAF0E3;
}
th.over, tr.even th.over, tr.odd th.over {
	background: #BDE1CB;
}
th.down, tr.even th.down, tr.odd th.down {
	background: #ddd;
}
td.over, tr.even td.over, tr.odd td.over {
	background: #BDE1CB;
}
td.down, tr.even td.down, tr.odd td.down {
	background: #ddd;
	color: #fff;
}
td.selected, tr.even td.selected, tr.odd td.selected {
	background: #ddd;
	color: #555;
}

/* use this if you want to apply different styleing to empty table cells*/

td.empty, tr.odd td.empty, tr.even td.empty {
	background: #fff;
}