/* Default attributes of table container for entire calendar */
.table-style {
	font-family: arial;
	border-width: 1; 
	border-style: solid; 
	border-color: #a0a0a0; 
	background-color: #ffffff;
	font-family: arial; 
	font-size: 11px;
}

/* 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: 11px;
	color: black;	
}

/* Default attributes used in calendar title background.*/
.title-background-style {
	background-color: #E0E0E0;
}

/* 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 {
	background-color: white;
	border-style: solid;
	border-width: 1;
	border-color: black; 
	cursor: pointer;
}

/* Moused-over (selected) appearance of controls in calendar title. */
.title-control-select-style {
	border-style: solid;
	border-width: 1;
	border-color: black; 
	cursor: pointer;
}

/* Default attributes of drop down lists (month and year). */
.dropdown-style {
	font-family: arial; 
	font-size: 11px; 
	border-width: 1; 
	border-style: solid; 
	border-color: #a0a0a0;
	background-color: white;
	cursor: pointer;
}

/* Default attributes selected (mouse-over) item in drop down lists (month and year). */
.dropdown-select-style {
	background-color: #E0E0E0;
}

/* Default attributes unselected (mouse-off) item in drop down lists (month and year). */
.dropdown-normal-style {
	background-color: #0;
}

/* Default attributes of calendar body (weekday titles and numbers). */
.body-style, .body-style:LINK, .body-style:VISITED {
	padding: 5px;
	background-color: white;
	font-family: arial; 
	font-size: 11px;
}
.body-style:HOVER {
	padding: 5px;
	background-color: white;
	font-family: arial; 
	font-size: 11px;
}

/* Attributes of current day in calendar body. */
.current-day-style, .current-day-style:LINK, .current-day-style:VISITED {
	color: black;
	background-color: white;
	font-weight: bold;
	text-decoration: none;
}
.current-day-style:HOVER {
	color: black;
	background-color: white;
	font-weight: bold;
	text-decoration: underline;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
.end-of-weekday-style, .end-of-weekday-style:LINK, .end-of-weekday-style:VISITED {
	color: #909090;
	text-decoration: none;
}
.end-of-weekday-style:HOVER {
	color: #909090;
	text-decoration: none;
	text-decoration: underline;
}


/* Attributes of all other days in calendar body. */
.normal-day-style, .normal-day-style:LINK, .normal-day-style:VISITED {
	color: black;
	text-decoration: none;
}
 .normal-day-style:HOVER {
	color: black;
	text-decoration: underline;
}

/* Attributes of border around selected day in calendar body. */
.selected-day-style, .selected-day-style:LINK, .selected-day-style:VISITED {
	border-style: solid;
	border-width: 1px; 
	border-color: red;
	font-weight: normal;
	color: black;
	background-color: #f0f0f0;
}
 .selected-day-style:HOVER {
	border-style: solid;
	border-width: 1px; 
	border-color: red;
	font-weight: normal;
	color: black;
	background-color: #f0f0f0;
	text-decoration: underline;
}

/* Default attributes of designated holidays. */
.holiday-style, .holiday-style:LINK, .holiday-style:VISITED {
	color: black;
	background-color: white;
}
 .holiday-style:HOVER {
	color: black;
	background-color: white;
	text-decoration: underline;
}

/* Attributes of today display at bottom on calendar */
.today-style, .today-style:LINK, .today-style:VISITED {
	padding: 0px;
	color: black;
	background-color: #E0E0E0;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
.today-style:HOVER {
	padding: 0px;
	color: black;
	background-color: #E0E0E0;
	font-weight: bold;
	text-align: center;
	text-decoration: underline;
}

/* Attributes of week number division (divider.gif) */
.weeknumber-div-style {
	background-color: #d0d0d0; 
	padding: 0px;
}
