/* Default attributes of table container for entire calendar */
.table-style {
	font-family: arial;
	border-width: 1px; 
	border-style: solid; 
	border-color: #a0a0a0; 
	background-color: #848284;
	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 {
	color: #000000;
	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: #3a6ea5;	*/
	color: #000000;
}

/* Default attributes used in calendar title background.*/
.title-background-style {
border: 1px solid #000000;
background-color: #D6D3CE;
/*	background-color: #cee3ef;*/
}

/* 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: 1px;
/*	border-color: #3a6ea5;*/
	border-color: #848284;
	background-color: #FFFFEF;
	cursor: pointer;
}

/* Moused-over (selected) appearance of controls in calendar title. */
.title-control-select-style {
	border-style: solid;
	border-width: 1px;
/*	border-color: #3a6ea5; */
	border-color: #ED1C24;
	background-color: #FFFFEF;
	cursor: pointer;
}

/* Default attributes of drop down lists (month and year). */
.dropdown-style {
	font-family: arial; 
	font-size: 11px; 
	border-width: 1px; 
	border-style: solid; 
	border-color: #ED1C24;
	background-color: #FFFFFF;/*D6D3CE;*/
	cursor: pointer;
}

/* Default attributes selected (mouse-over) item in drop down lists (month and year). */
.dropdown-select-style {
	background-color: #CCCCCC;
	font-weight:bold;
}

/* Default attributes unselected (mouse-off) item in drop down lists (month and year). */
.dropdown-normal-style {
	background-color: #FFFFFF;
}

/* Default attributes of calendar body (weekday titles and numbers). */
.body-style {
	color: #000000;
	padding: 5px;
	background-color: #FFFFEF;
	font-family: verdana; 
	font-size: 10px;
}
.body-style a:hover {
	color: #FF0000;
	background-color: #CCCCCC;
}
/* Attributes of current day in calendar body. */
.current-day-style {
	color: red;
	font-weight: bold;
	text-decoration: none;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
.end-of-weekday-style {
	color: #900000;
	/*color: #ED1C24;*/
	text-decoration: none;
}

/* Attributes of all other days in calendar body. */
.normal-day-style {
	color: black;
	text-decoration: none;
}

/* Attributes of border around selected day in calendar body. */
.selected-day-style {
	border-style: solid;
	border-width: 1px; 
	border-color: #FF0000;
	/*border-color: #0000FF;*/
}

/* Default attributes of designated holidays. */
.holiday-style {
/*	background-color: #FFDDDD;*/
	background-color: #F8989B;
}

/* Attributes of today display at bottom on calendar */
.today-style {
	padding: 0px;
	color: black;
/*	background-color: #cee3ef;*/
	background-color: #C6D3EF;
	text-align: center;
	text-decoration: none;
}

.today-style a{
	color: #FF0000;
	background-color: #C6D3EF;
	text-decoration: none;
}
.today-style a:hover{
	color: #FF0000;
	background-color: #E4EDFF;
}

/* Attributes of week number division (divider.gif) */
.weeknumber-div-style {
	background-color: #d0d0d0; 
	padding: 0px;
}
