/* Sets the text formatting for the Print Event Listing link */
#printlink
{
	font-family: arial, geneva, verdana, arial, sans-serif;
	font-size: 12px;
}

/* Hides the Print Event Listing link when printing */
@media print
{
	#printlink
	{
		display: none;
	}
}

/* Sets the border collapse style. A value of  collapse means that the borders will be equal and not thicker inside 	the table. */
table 
{
	border-collapse: collapse;
	width: 100%;
	font-family: arial, geneva, verdana, arial, sans-serif;
	font-size: 12px;
}

/* Class used to format the table heading text */
.tableheading 
{
	font-size: 14px; 
	font-weight: bold;
	background-color: #CCCCCC;
}

/* Class used to set the color of odd numbered body rows */
.oddrow
{
	background-color: #f0f0f0; 
}

/* Class used to set the color of even numbered body rows */
.evenrow 
{
	background-color: #ffffff;
}

/* Sets the default properties for table cells */
td
{
	border-color: #000000;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid; 
	padding: 4px;
}

/* Class used to format table body text  */

.tablebody
{
	font-size: 12px;
	vertical-align: top;
}

/* Class used to set span properties for the Event Description */
.description 
{
	color: #666666;
}

