/* selected */
.dInfo { font-family:tahoma; font-size:5pt; color:#fff; padding-top:1px; padding-bottom:1px; background:rgb(0, 132, 0);
 }

/* default dimensions and justification for each month including title */
.jCal {
	/* each day width + border-left + border-right */
	width:148px;
	height:21px;
	text-align:center;
	vertical-align:top;
}
/* default dimensions and justification for each month not including title */
.jCalMo {
	/* each day width + border-left + border-right */
	width:148px;
	margin:0px auto;
	overflow:visible;
	height:100%;
	padding-right:2px;
	padding-left:2px;
	white-space:nowrap;
}
/* top month display block - i.e. January */
.jCal .month {
	height:17px;
	/* jCalMo - left/right button width */
	width:107px;
	text-align:center;
	vertical-align:bottom;
	font-family:Tahoma;
	font-size:9pt;
	color:#333333;
	float:left;
}
/* day block dimensions and style - for all day blocks */
.jCalMo .dow, .jCalMo .day, .jCalMo .pday, .jCalMo .aday, .jCalMo .overDay, .jCalMo .invday, .jCalMo .selectedDay {
	width:19px;
	font-family:Tahoma;
	font-size:8pt;
	color:#000000;
	border-right:1px solid #CCCCCC;
	border-bottom:1px solid #CCCCCC;
	border-left:1px solid #EEEEEE;
	text-align:center;
	cursor:default;
	float:left;
}
/* day of week header specific style */
.jCalMo .dow {
	background:#dddddd url(eegrad.gif) bottom repeat-x;
	border-bottom:0px;
}
/* actual calendar day default style */
.jCalMo .day, .jCalMo .invday {
	height:19px;
	text-align:center;
}
/* selectable calendar day specific style */
.jCalMo .day {
	cursor:pointer;
	background:#ffffff;
}
/* blacked-out calendar day specific style */
.jCalMo .invday {
	color:#808080;
	background:#eeeeee;
	text-decoration:line-through;
}
/* previous and subsequent months calendar day specific style */
.jCalMo .pday, .jCalMo .aday {
	height:19px;
	background:#e3e3e3;
	color:#CCCCCC;
}
/* selected day */
.jCalMo .selectedDay {
	color:#ffffff;
	/* must use rgb() syntax for jquery.color.js compliance */
	background:rgb(0, 143, 214);
}
/* mouseover hilighted selectable day */
.jCalMo .overDay {
	color:#ffffff;
	/* must use rgb() syntax for jquery.color.js compliance */
	background:rgb(0, 102, 153);
}
/* left month navigation button - no need to change */
.jCal .left {
	width:16px;
	height:16px;
	vertical-align:middle;
	cursor:pointer;
	float:left;
}
/* right month navigation button - no need to change */
.jCal .right {
	width:16px;
	height:16px;
	vertical-align:middle;
	cursor:pointer;
	float:right;
}
/* no need to change - this is for carousel opacity */
.jCalMask, .jCalMove {
	position:absolute;
	overflow:hidden;
}

