/* 
Default attributes of table container for entire calendar 
*/ 
.table-style { 
	font-family: arial; 
	border-width: 1; 
	border-style: solid; 
	border-color: #24618e; 
	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).
*/ 
.popcal-title-style { 
	padding: 2px; 
	font-family: arial; 
	font-size: 11px; 
	/*color: #ffffff; */
	color: #012F2E;
} 

/* 
Default attributes used in calendar title background.
*/ 
.title-background-style { 
	background-color: #24618e; 
} 

/* 
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 {
	font-family: arial; 
	font-size: 11px; 
	border-style: solid; 	border-width: 1;
	border-color: #ffffff;
	cursor: pointer;
	color: #FFFFFF;
} 

/* 
Moused-over (selected) appearance of controls in calendar title. 
*/ 
.title-control-select-style {
	font-family: arial;
	font-size: 11px;
	border-style: solid;
	border-width: 1;
	border-color: #ccd5e0;
	cursor: pointer;
	color: #FFFFFF;
} 

/* 
Default attributes of drop down lists (month and year). 
*/ 
.dropdown-style { 
	color: #012F2E; 
	font-family: arial; 
	font-size: 11px; 
	border-width: 1; 
	border-style: solid; 
	border-color: #24618e; 
	background-color: #E3E7EB; 
	cursor: pointer; 
} 

/* 
Default attributes selected (mouse-over) item in drop down lists (month and year). 
*/ 
.dropdown-select-style { 
	background-color: #9AA8A2; 
} 

/* 
Default attributes unselected (mouse-off) item in drop down lists (month and year). 
*/ 
.dropdown-normal-style { 
	background-color: #E3E7EB; 
} 

/* 
Default attributes of calendar body (weekday titles and numbers). 
*/ 
.body-style { 
	padding: 5px; 
	background-color: #FBFBFB; 
	font-family: verdana; 
	font-size: 10px; 
} 

/* 
Attributes of current day in calendar body. 
*/ 
.current-day-style { 
	color: #000000; 
	font-weight: bold; 
	text-decoration: none; 
} 

/* 
Attributes of end-of-week days (Sundays) in calendar body. 
*/ 
.end-of-weekday-style { 
	color: #909090; 
	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: #a0a0a0; 
} 

/* 
Default attributes of designated holidays. 
*/ 
.holiday-style { 
	background-color: #FCDE32; 
} 

/* 
Attributes of today display at bottom on calendar 
*/ 
.today-style { 
	padding: 0px; 
	color: black; 
	background-color: #FBFBFB; 
	text-align: center; 
	text-decoration: none; 
} 

/* 
Attributes of week number division (divider.gif) 
*/ 
.weeknumber-div-style { 
	background-color: #d0d0d0; 
	padding: 0px; 
} 

