/*CSS ID for table that hold list of events*/
#cal_xml_feed {
	width: 100%;
	padding:0;
	margin:0;
}
/*CSS class for the table row that holds the date of the event*/
#cal_xml_feed  tr.cal_head {
    margin-top: 20px;
	font-size: 1em;
}
/*CSS class for the table cell that holds the date of the event*/
#cal_xml_feed  td.cal_date {
    border-bottom: #B0C4DE dashed 1px;
    font-weight: bold;
	color:#666666;
}
/*CSS class for the table row that holds the time, title, and location of the event*/
#cal_xml_feed  tr.cal_info {
	font-size: .9em;
}
/*You can add a hover style so that the event is highlighted on a mouseover*/
#cal_xml_feed  tr.cal_info:hover {
	background-color:#F0F8FF;
}
/*CSS class for the table cell that holds the title of the event*/
#cal_xml_feed  td.cal_title a{
	display: block;
	width: 100%;
	text-indent: 3px;
	text-align:left;
}
/*CSS class for the table cell that holds the location of the event*/
#cal_xml_feed  td.cal_location {
	text-align:right;
}
/*CSS class for the table cell that holds the time of the event*/
#cal_xml_feed  td.cal_time {
	text-align:left;
}
/*CSS span class that describes ongoing events*/
#cal_xml_feed  span.cal_ongoing {
	font-size: .8em;
}

