/* default dimensions and justification for each month including title */
.jCal {
	/* each day width + border-left + border-right */
	width:448px;
	height:27px;
	text-align:center;
	vertical-align:top;
}
/* default dimensions and justification for each month not including title */
.jCalMo {
	width:448px;		/* each day width + border-left + border-right */
	float:left;
	overflow:visible;
	height:100%;
	padding-left:9px;
	padding-top: 10px; 
	white-space:nowrap;
}
.jCal .month {
	margin-top: 9px;	
}

/* top month display block - i.e. January */
.jCal .month, .jCal .monthSelect, .jCal .monthName, .jCal .monthYear {
	line-height:16px;
	height:16px;
	text-align:center;
	vertical-align:bottom;
	font-family:Tahoma;
	font-size:8pt;
	color:#ffffff;
	cursor:pointer;
	float:left;
	font-weight: bold;
	
}
/* month name per calendar style - includes left/right padding and alignment */
.jCal .monthName {
	padding-left:2px;
	padding-right:2px; 
	text-align:right;

}
/* year per calendar style - includes left/right padding and alignment */
.jCal .monthYear {
	float:right;
	padding-left:2px;
	padding-right:2px;
	text-align:left;
	
}
/* hilight style for new month combobox pulldown for hover */
.jCal .monthSelect {
	background:#005424;
}
/* do not edit - this enables the new month combobox selector */
.jCal .monthSelector {
	position:absolute;
}
/* do not edit - this enables the new month combobox selector "shadow" for capturing auto-hide */
.jCal .monthSelectorShadow {
	position:absolute;
	background:#808080;
	padding:0px;
}
/* this is the hover for the month name */
.jCal .monthNameHover {
	background:#008f4f;
	color:#FFF;
}
/* this is the hover for the year */
.jCal .monthYearHover {
	background:#008f4f;
	color:#FFF;
}
/* this is the hover for the new month or year hover in the new combobox selection */
.jCal .monthSelectHover {
	background:#008f4f;
	color:#FFF;
}
/* day block dimensions and style - for all day blocks */
.jCalMo .dow, .jCalMo .day, .jCalMo .pday, .jCalMo .aday, .jCalMo .overDay, .jCalMo .invday, .jCalMo .selectedDay {
	width:63px;
	font-family:Tahoma;
	font-size:8pt;
	color:#ffffff;

	margin-right: 1px;
	margin-bottom: 1px;
	text-align:center;
	cursor:default;
	float:left;
}
/* day of week header specific style */
.jCalMo .dow {
	background: transparent;
	border-bottom:0px;
	height: 20px;
	font-weight: bold;
	padding-top: 7px;
}
/* actual calendar day default style */
.jCalMo .day, .jCalMo .invday {
	height:22px;
	text-align:center;
	padding-top: 7px;
}
/* selectable calendar day specific style */
.jCalMo .day {
	background:#007c37;
	font-weight: bold;
}
/* blacked-out calendar day specific style */
.jCalMo .invday {
	cursor:pointer;
	background:#007c37;
	font-weight: bold;
}
/* previous and subsequent months calendar day specific style */
.jCalMo .pday, .jCalMo .aday {
	height:22px;
	background: transparent;
	color:#0b803c;
	font-weight: bold;
	padding-top: 7px;
}
/* selected day */
.jCalMo .selectedDay {
	color:#00351b;
	/* must use rgb() syntax for jquery.color.js compliance */
	background:rgb(0, 143, 214) url(../image/jcal/day_selected.png);
}
/* mouseover hilighted selectable day */
.jCalMo .overDay {
	color:#FFF;
	/* must use rgb() syntax for jquery.color.js compliance */
	background:rgb(0, 102, 153);
}
/* left month navigation button - no need to change */
.jCal .left {
	background:url(../img/jcal/left.png) center center no-repeat;
	width:37px;
	height:27px;
	vertical-align:middle;
	cursor:pointer;
	float:left;
	background-repeat: no-repeat;
	background-position: 17px 7px;
}
/* right month navigation button - no need to change */
.jCal .right {
	background:url(../img/jcal/right.png) center center no-repeat;
	width:37px;
	height:27px;
	vertical-align:middle;
	cursor:pointer;
	float:right;
	background-repeat: no-repeat;
	background-position: 0px 7px;
}
/* no need to change - this is for carousel opacity */
.jCalMask, .jCalMove {
	position:absolute;
	overflow:hidden;
}
