

/* default dimensions and justification for each month including title */
.jCal {
	/* each day width + border-left + border-right */
	width:180px;
	height:25px;
	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:195px;
	float:left;
	overflow:visible;
	padding-right:0px;
	padding-left:0px;
	white-space:nowrap;
}
/* top month display block - i.e. January */

/* day block dimensions and style - for all day blocks */
.jCalMo .dow, .jCalMo .day, .jCalMo .pday, .jCalMo .aday, .jCalMo .overDay, .jCalMo .invday, .jCalMo .selectedDay, .jCalMo .dayevent {
	width:25px;
	font-family:Verdana;
	font-size:11px;
	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: #5B77C1;
	border-bottom:0px;
    border-color: #5B77C1;
    color: #fff;
	font-weight: bold;
}
/* actual calendar day default style */
.jCalMo .day, .jCalMo .invday, .jCalMo .dayevent {
	height:30px;
	text-align:center;
}
/* selectable calendar day specific style */
.jCalMo .day {
	cursor:pointer;
	background:#ffffff;
}

.jCalMo .dayevent {
	cursor:pointer;
	background:#5B77C1;
	color: #FFFFFF;
	font-weight: bold;
}

/* blacked-out calendar day specific style */
.jCalMo .invday {
	color:#808080;
	background:#eeeeee;

}
/* previous and subsequent months calendar day specific style */
.jCalMo .pday, .jCalMo .aday {
	height:30px;
	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;
}
/* right month navigation button - no need to change */
.jCal .right {
	width:16px;
	height:16px;
	vertical-align:middle;
	cursor:pointer;
}

.jCal .month {
	height:16px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 110%;

	text-align:center;
	vertical-align:middle;
	font-family:Verdana;
	font-size:12px;
	color:#000000;
}

/* no need to change - this is for carousel opacity */
.jCalMask, .jCalMove {
	position:absolute;
	overflow:hidden;
}
