/* 
===================
 Event List Layout
===================

<ul class="event-list">

	<li class="event">
		<div class="date">
		
			<!-- ONLY OUTPUT FOR MULTI-DAY EVENTS -->		
			<div class="start-date">
				<div class="weekday"></div>
				<div class="day"></div>
				<div class="month"></div>
				<div class="year"></div>
			</div>
			<!-- ONLY OUTPUT FOR MULTI-DAY EVENTS FINISH -->
			
			<div class="end-date">
				<div class="weekday"></div>
				<div class="day"></div>
				<div class="month"></div>
				<div class="year"></div>
			</div>
		</div>
		<div class="event-info">
			<h3 class="event-title"></h3>
			<span class="event-time"></span>
			<span class="event-location"></span>
			<div class="event-cat"></div>
			<div class="event-details"></div>
		</div>
	</li>

</ul>

=======================================
*/
/*
a.rss-link {
	display:block;
	height:16px;
	float:right;
	background:transparent url(images/icon-rss.png) right top no-repeat;
	padding-right:20px;
	line-height:16px;
}
*/

ul.event-list {
	list-style: none;
	/*margin: 1em 0 1.5em 0;*/
	padding: 0 !important;
	margin-bottom:0 !important;
	margin-right:0 !important;
	margin-top:2px;
	color:#555555;
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	margin-left:-5px;
	width:100%;
}


li.event {
	/*clear: both;*/
	float:left;
	width:100%;
	border-bottom:solid #66bb26 1px;
}

.event-date {
	white-space: nowrap;
	float: left;
	/*margin-bottom: 1.5em;*/
}

.event-list .multi-date {
	background: url(../images/date-separator.png) center no-repeat;
}

.event-list .start-date, .event-list .end-date {
	text-align: center;
	width: 55px;
	background-color: #dfdfdf;
	overflow: hidden;
}

.event-list .start-date {
	float: left;
	color:#28903a;
}

.event-list .end-date {
	margin-left: 3.8em;
}

.event-weekday {
	font-size: 0.8em;
	text-transform: uppercase;
}

.event-day {
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1em;
	margin-bottom: -0.2em;
}

.event-month {
	text-transform: uppercase;
	font-size: 1.0em;
	line-height: 1em;
	padding: 0.4em 0 0.4em 0;
}

.event-year {
	font-size: 0.8em;
	line-height: 0.8em;
	letter-spacing: 0.1em;
	padding-bottom: 0.3em;
}

.multi-day {
	margin: 0 0 0 7.5em;
}

.single-day {
	margin: 0 0 0 0;
	float:left;
	margin-left:5px;
}

.event-info h3 {
	clear: none;
	color:#555555 ;
}

.event-info h3 a{color:#555555 ;}

.event-time {
	font-weight: bold;
	padding-right: 0.8em;
}

.event-cat {
	font-size: 0.95em;
}

.event-details {
	font-size: 0.8em;
}
