/*table container for entire calendar */
.CalendarContainer
{
	FONT-FAMILY: arial;
    FONT-SIZE:11px;
    background-color: #FFFFFF;
    border-width: 1px;
    border-style: solid;
    border-color: #a0a0a0;
}

/*  DIV containing table container for entire calendar...DONT CHANGE*/
.CalendarDiv 
{
	z-index: +999;
	position: absolute;
	visibility: hidden;
}

/*  calendar title (month and year columns).*/
.CalendarTitle
{
	padding-right: 2px;
	padding-left: 2px;
	font-size: 11px;
	padding-bottom: 2px;
	color: #FFFFFF;
	padding-top: 2px;
	font-family: arial;
}

/* calendar title background.*/
.CalendarHeaderTable{
	background-color: #0000a9
}

/* Normal appearance of controls in calendar title. */
/* Note: The right, left and down icons are images, which must be edited if you need to change them. */
.CalendarTitleControlNormal
{
	border-right: #3a6ea5 1px solid;
	border-top: #3a6ea5 1px solid;
	border-left: #3a6ea5 1px solid;
	border-bottom: #3a6ea5 1px solid;
}

/* Moused-over appearance of controls in calendar title. */
.CalendarTitleControlActive {
	border-style: solid;
	border-width: 1;
	border-color: #17b0e3;
	cursor: pointer;
}

/*drop down lists (month and year). */
.CalendarDropdownNormal
{
	border-right: #a0a0a0 1px solid;
	border-top: #a0a0a0 1px solid;
	border-left: #a0a0a0 1px solid;
	border-bottom: #a0a0a0 1px solid;
	font-size: 11px;
	cursor: pointer;
	font-family: arial;
	background-color: #FFeed1;
}

/* selected (mouse-over) item in drop down lists (month and year). */
.CalendarDropDownItemActive {
	background-color: #b9c5dc;
}

/* Default attributes unselected (mouse-off) item in drop down lists (month and year). */
.CalendarDropDownItemNormal  {
	background-color: #FFeed1;
}

/* calendar body (weekday titles and numbers). */
.CalendarBody {
	padding: 5px;
	background-color: #b9c5dc;
	font-family: verdana; 
	font-size: 10px;
}

/* Attributes of current day in calendar body. */
.CalendarCurrentDay {
	color: #F22340;
	font-weight: bold;
	text-decoration: none;
}

/* end-of-week days (Sundays) in calendar body. */
.CalendarEndWeekday {
	color: #909090;
	text-decoration: none;
}

/* Attributes of all other days in calendar body. */
.CalendarNormalDay{
	color: black;
	text-decoration: none;
}

/* Attributes of border around selected day in calendar body. */
.CalendarSelectedDay  {
	border-style: solid;
	border-width: 1px; 
	border-color: #E1E5B8;
}

/* Default attributes of designated holidays. */
.CalendarHoliday {
	background-color: #FFeed1;
}

/* today display at bottom on calendar */
.CalendarToday {
	padding: 0px;
	color: black;
	background-color: #b9c5dc;
	text-align: center;
	text-decoration: none;
}

/* week number division (divider.gif) */
.CalendarWeekNumberDiv {
	background-color: #d0d0d0; 
	padding: 0px;
}
.CalButton
{
	background-position: left center;
	background-image: url(Images/calendar.gif);
	background-repeat: no-repeat;
}
