/* Default attributes of table container for entire calendar */
.table-style {
	font-family: Arial;
	border-width: 1; 
	border-style: solid; 
	border-color: #a0a0a0; 
        border-collapse: collapse;
        border-spacing: 0;
	background-color: #ffffff;
	font-size: 10px;
}

/* Default attributes of DIV containing table container for entire calendar.
 * You probably don't want to alter this style.
 */
.div-style {
	z-index: +999;
	position: absolute;
	visibility: hidden;
}

/* Default attributes used in calendar title (month and year columns).*/
.title-style {
	padding: 2px;
	font-family: Arial;
	font-size: 10px;
	color: white;	
}

/* Default attributes used in calendar title background.*/
.title-background-style {
	background-color: #63639C;
}

/* 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. */
.title-control-normal-style {
	border-style: solid;
	border-width: 1;
	border-color: #3a6ea5; 
	cursor: pointer;
	cursor: hand;
}

/* Moused-over (selected) appearance of controls in calendar title. */
.title-control-select-style {
	border-style: solid;
	border-width: 1;
	border-color: #3a6ea5; 
        color: #FEC885;
	cursor: pointer;
	cursor: hand;
}

/* Default attributes of drop down lists (month and year). */
.dropdown-style {
	font-family: Arial;
	font-size: 10px; 
	border-width: 1; 
        color: white;
	border-style: solid; 
	border-color: #a0a0a0;
	background-color: #63639C;
	cursor: pointer;
	cursor: hand;
}

/* Default attributes selected (mouse-over) item in drop down lists (month and year). */
.dropdown-select-style {
	font-family: Arial;
	font-size: 10px; 
	border-width: 0; 
        color: white;
	border-style: solid; 
	border-color: #a0a0a0;
	background-color: #630000;
	cursor: pointer;
	cursor: hand;
}

/* Default attributes unselected (mouse-off) item in drop down lists (month and year). */
.dropdown-normal-style {
	font-family: Arial;
	font-size: 10px; 
	border-width: 0; 
        color: white;
	border-style: solid; 
	border-color: #a0a0a0;
	background-color: #63639C;
	cursor: pointer;
	cursor: hand;
}

/* Default attributes of calendar body (weekday titles and numbers). */
.body-style {
	padding: 0px; /* was 3 */
	background-color: white;
	font-family: Arial;
	font-size: 10px;
}

/* Attributes of current day in calendar body. */
.current-day-style {
	color: red;
	font-weight: bold;
	text-decoration: none;
	font-size: 10px;
	padding: 0px;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
.end-of-weekday-style {
	color: #909090;
	text-decoration: none;
	font-size: 10px;
	padding: 0px;
}

/* Attributes of all other days in calendar body. */
.normal-day-style {
	color: black;
	font-weight: none;
	text-decoration: none;
	font-size: 10px;
	padding: 0px;
}

/* Attributes of border around selected day in calendar body. */
.selected-day-style {
	border-style: solid;
	border-width: 1px; 
	border-color: #a0a0a0;
	font-size: 10px;
	background-color: #C7D0D9;
	padding: 0px;
}

/* Default attributes of designated holidays. */
.holiday-style {
	background-color: #FFDDDD;
	padding: 0px;
}

/* Attributes of today display at bottom on calendar */
.today-style {
	padding: 0px;
	color: black;
	color: white;
	background-color: #cee3ef;
	background-color: #63639C;
	text-align: center;
	text-decoration: none;
	font-size: 10px;
}

a.today-style:visited { text-decoration: none; color: white }
a.today-style:hover, a.today-style:active { text-decoration: none; color: #FEC885; }
a.normal-day-style:hover, a.normal-day-style:active { text-decoration: none; background-color: #FAEECF; }
a.current-day-style:hover, a.current-day-style:active { text-decoration: none; background-color: #FAEECF; }
a.end-of-weekday-style:hover, a.end-of-weekday-style:active { text-decoration: none; background-color: #FAEECF; }

/* Attributes of week number division (divider.gif) */
.weeknumber-div-style {
	background-color: #d0d0d0; 
	padding: 0px;
	font-size: 10px;
}
.viewdate {
	font-family: arial;
	font-size: 11px;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
	border: none;
}
.viewdatebutton {
	background-color: #FFFFFF;
	font-family: arial;
	font-size: 11px;
	font-weight: normal;
	color: #333333;
	text-decoration: none;
	border: 1px solid #999999;
}