/*Tables styles July 2008 from CLC redesign*/

/*data table styles, see http://www.mchenry.edu/clc/preschool.asp for example of styling. We do not have to declare border, cell padding, cell spacing etc. */
table#data {
	border-top: 1px solid #999;
	border-left: 1px solid #999;
	border-collapse: collapse;
	}
table#data caption {
	text-align:left;
	font-weight: bold;
	color:#993333;
	padding: 6px 0;
	}
table#data th, table#data td {
	padding: 5px;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	}
table#data th {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	background: #ccc;
	}

/*.multiple class is used for multiple tables on same page, see http://www.mchenry.edu/clc/dailyschedule.asp for an example*/

table.multiple {
	border-top: 1px solid #999;
	border-left: 1px solid #999;
	border-collapse: collapse;
	}
table.multiple caption {
	text-align:left;
	font-weight: bold;
	color:#993333;
	padding: 15px 0 6px 0;
	}
table.multiple th {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	background: #ccc;
	}
table.multiple th, table.multiple td {
	padding: 5px;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	}

