/* tables.css */
table {
	width: 100%;
	border: solid 1px #cccccc;
	border-spacing: 00px;
	border-collapse: collapse;
}

table.small {
	width: 300px;
}

td, th {
	border: solid 1px #bbbbbb;
	padding: 0.3em;	
}

td img, th img {
	padding-right: 0.3em;
}

th {
	padding-left: 0.5em;
	background-color: #eeeeee;
	text-align: left;
}

tr.odd {
	background-color: white;
}

tr.even {
	background-color: #f8f8f8;
}

td.extraShortSize {
	width: 60px;
}

td.shortSize {
	width: 100px;
}

td.mediumSize {
	width: 150px;
}

td.largeSize {
	width: 200px;
}


