#lnkDspEvnts {
	color: #FFF;
	display: block;
	font-weight: bold;
	margin-bottom: -14px;
	margin-left: 3px;
	position: relative;
	width: 105px;
	top: 5px;
}
/*	holds all the days of the month	*/
.monthHolder,
#content table.monthHolder {
	border: 1px solid #DDD;
	border-collapse: collapse;
	cursor: default;
	margin: 0;
	width: 100%;
	table-layout: fixed;
	page-break-inside: avoid;
}
.monthHolder * {
	font: 10px Arial, Helvetica, sans-serif;
}
/* holds days of week, Monday, Tuesday, ... */
.monthHolder th {
	background: #DDE1E2;
	border-bottom: 1px solid #CCD;
	border-left: 1px solid #CCD;
	color: #969696;
	font: bold 10px Verdana, Arial, Helvetica, sans-serif;
	padding: 2px 0;
	text-align: center;
	width: 17%;
}
.monthHolder .icon {
	line-height: 100px;
	width: 9px;
	height: 11px;
	margin-top: -4px
}
.monthHolder th.wkend {
	width: 7%;
}
/*	one day/box on the calendar	*/
.monthHolder td,
body #container #content table.monthHolder td {
	border: 1px solid #DDD;
	page-break-inside: avoid;
	margin: 0px;
	padding: 0px;
	vertical-align: top;
	height: 126px;
}
/*	holds the date of the month (1-31)	*/
.monthHolder div.dom {
	background: #F7F7F7;
	height: auto;
	border: none;
	text-indent: 4px;
}
.monthHolder .today div.dom {
	background: #DEF;
}
/* holds the events */
.eventList,
#content div.eventList {
	width: 100%;
	display: block;
	margin: 0;
	height: 118px;
	overflow: hidden;
	padding-bottom: 18px;
}
/*	single event	*/
a.event {
	display: block;
	white-space: nowrap;
	text-indent: 3px;
	padding: 3px 0;
	height: 12px;
	color: #000;
	text-decoration: none;
	border-bottom: 1px dotted #CCC;
	/*float: left;
	clear: both;
	width: 100%;*/ /* causes odd wrapping in IE*/
}
a.event:hover {
	background: #FFE;
	color: #00C;
	text-decoration: underline;
}
a.event span.eventTime,
#content a.event span.eventTime {
	background: none;
	text-align: right;
}
/* ff & ie7 */
*>a.event span.eventTime,
*>#content a.event span.eventTime  {
	margin-right: 4px;
}
.details {
	display: none;
}
/*	holds month year and nav arrows	*/
.monthHolder caption {
	background: #999;
	padding: 4px 0px;
}
.monthHolder caption a {
	color: #FFF;
	font: bold 11px Verdana, Arial, Helvetica, sans-serif;
	padding: 0 3px;
	width: 20px;
}
.monthHolder caption a.dispMonthYear {
	margin: 0 30px;
	letter-spacing: .25em;
	text-transform: uppercase;
}
@media print {
	a.event {
		line-height: 14px;
		border-bottom: 1px solid #DDD;
		padding: 1px 0;
	}
	.eventList,
	#content div.eventList {
		height: 90px;
		padding-bottom: 0px;
		overflow: auto;	/* IE needs auto overflow, otherwise it does weird things to the table */
		background-color: #FFF; 
		scrollbar-shadow-color: #FFF;
		scrollbar-highlight-color: #FFF;
		scrollbar-face-color: #FFF;
		scrollbar-3dlight-color: #FFF;
		scrollbar-darkshadow-color: #FFF;
		scrollbar-track-color: #FFF;
		scrollbar-arrow-color: #FFF;
		width: 112%;
	}
	.monthHolder div.dom {
		border-bottom: 1px solid #DDD;
	}
	.monthHolder,
	#content table.monthHolder,
	.monthHolder td,
	.monthHolder th,
	body #container #content table.monthHolder td {
		border: 1px solid #666;
		height: auto;
	}
}