@charset "UTF-8";

#eventCalendar {
	position: relative;
	float: right;
	width: 200px;
	height: 322px;
	margin: 5px;
	padding: 0;
	overflow: hidden;
}

#eventList {
	position: relative;
	width: 200px;
	height: 300px;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#eventList li {
	position: absolute;
	border-top: 1px solid #999999;
	visibility: hidden;
}

#eventList li .title {
	font-size: larger;
	margin: 0.5em 0;
}

#eventList li .date {
	width: 190px;
	text-align: right;
	font-weight: bolder;
	font-variant: small-caps;
	margin: 0;
}

#eventList li .time {
	width: 190px;
	text-align: right;
	font-size: smaller;
	font-variant: small-caps;
	margin: 0;
}

#eventCalendar #eventListNavigation {
	position: relative;
	width: 200px;
	height: 22px;
}

#eventCalendar .navButton {
	position: absolute;
	width: 22px;
	height: 22px;
	background-image: url(/images/calendar/navbuttons-22.png);
	background-repeat: no-repeat;
}

#eventCalendar #eventCalendarPrevious {
	top: 0;
	left: 10px;
	background-position: -66px 0;
}

#eventCalendar #eventCalendarResumePause {
	top: 0;
	left: 40px;
	background-position: -22px 0;
}

#eventCalendar #eventCalendarNext {
	top: 0;
	left: 70px;
	background-position: -44px 0;
}

#eventCalendar #fullCalendarLink {
	position: absolute;
	top: 0;
	margin: 0;
	padding: 0;
	left: 102px;
	width: 88px;
	text-align: center;
	font-size: smaller;
}

