

/* ########################################### CALENDAR STYLES ########################################################### */
/* Default attributes of table container for entire calendar */
.table-style {
	border: 1px solid #C5BF97; 
	background-color: #C5BF97;
}

/* 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: Verdana; 
	font-size: 11px;
	color: #FFFFFF;	
}

/* Default attributes used in calendar title background.*/
.title-background-style {
	background-color: #C5BF97;
}

/* 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;
}

/* Moused-over (selected) appearance of controls in calendar title. */
.title-control-select-style {
	border-style: solid;
	border-width: 1;
	border-color: #3a6ea5; 
	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: #EBE6C6;
	cursor: pointer;
}

/* Default attributes selected (mouse-over) item in drop down lists (month and year). */
.dropdown-select-style {
	background-color: #B8C1CC;
}

/* 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 {
	padding: 5px;
	background-color: #EBE6C6;
	font-family: verdana; 
	font-size: 10px;
}

/* Attributes of current day in calendar body. */
.current-day-style {
	color: #000000;
	font-weight: bold;
	text-decoration: none;
	background-color: #FFFFFF;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
.end-of-weekday-style {
	color: #FF0000;
	text-decoration: none;
}

/* Attributes of all other days in calendar body. */
.normal-day-style {
	color: black;
	text-decoration: none;
}

.normal_background {
	background-color: #FFFFFF;
	border: 1px solid #FFFFFF;	
}

/* Attributes of border around selected day in calendar body. */
.selected-day-style {
	color: #000000;
	font-weight: bold;
	text-decoration: none;
	background-color: #FFFFFF;
}

.selected_background {
	background-color: #FFFFFF;
	border: 1px solid #CCCCCC;
}

.datenow_selected_background {
	background-color: #FFFFFF;
	border: 1px solid #FF0000;
}

/* Default attributes of designated holidays. */
.holiday-style {
	color: #FF0000;
	text-decoration: none;
}

/* Attributes of today display at bottom on calendar */
.today-style {
	padding: 0px;
	color: black;
	background-color: #EBE6C6;
	text-align: center;
	text-decoration: none;
}

.current_background {
	border: 1px solid #FF0000;
}


/* Attributes of week number division (divider.gif) */
.weeknumber-div-style {
	background-color: #d0d0d0; 
	padding: 0px;
}

.date_over {
	border: 1px solid #CCCCCC;
}

.date_out {
	border: 1px solid #FFFFFF;
}

/* used for table cells below the table title and in rows at lists where row NOT contains input fields */
.table_detail {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	background-color: #FFFFFF;
	padding-right: 6px;
	padding-left: 6px;
	padding-top: 3px;
	padding-bottom: 3px;
	height: 18px;
}

/* ##################   TABLE BORDER STYLES   ################## */

/*	border only north - */
table.n, td.n {
	/*border-top: 1px solid #999999; */
	border-top: 1px solid #6699cb;
}

/* border only east |  */
table.e, td.e {
	/* border-right: 1px solid #999999;*/
	border-right: 1px solid #6699cb;
}

/* border only south _ */
table.s, td.s {
	/*border-bottom: 1px solid #999999;*/
	border-bottom: 1px solid #6699cb;
}

/* border only west  | */
table.w, td.w {
	/*border-left: 1px solid #999999;*/
	border-left: 1px solid #6699cb;
}

/* border all directions */
table.aldi, td.aldi {
	/*border: 1px solid #999999;*/
	border: 1px solid #6699cb;
}



/* ##################   TABLES STYLES   ################## */
/* used for table title */
.table_title {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	/*color: #000000;*/
	font-weight: bold;
	/*background-color: #EBE6C6;*/
        color: #FFFFFF;
	background-color: #6699CB;
	height: 17px;
	padding-right: 5px;
	padding-left: 5px;
}