﻿/*
Style sheet for the pop up calender...
Not used anywhere else but the popup calendar
*/


/*table container for entire calendar */
.CalendarContainer
{
    background-color: #B9C9D5;
    border:solid 1px #a0a0a0;

}

/*  DIV containing table container for entire calendar...DONT CHANGE*/
.CalendarDiv 
{
	z-index: +999;
	position: absolute;
	visibility: hidden;
}

/*  calendar title (month and year columns).*/
.CalendarTitle
{
    padding: 2px;
	font-size: 11px;
    color: #FFFFFF;
	font-family: arial;
}

/* 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. */
.CalendarTitleControlNormal
{
    border: #BCBDC0 1px solid;
    font-size:11px;
}

/* Moused-over appearance of controls in calendar title. */
.CalendarTitleControlActive 
{
    border: #F0F3F6 1px solid;
	cursor: pointer;
	font-size:11px;
}

/*drop down lists (month and year). */
.CalendarDropdownNormal
{
    border: #BCBDC0 1px solid;
	font-size: 11px;
	cursor: pointer;
	font-family: arial;
	background-color: #F0F3F6;
}

/* selected (mouse-over) item in drop down lists (month and year). */
.CalendarDropDownItemActive {
	background-color: #b9c5dc;
}

/* Default attributes unselected (mouse-off) item in drop down lists (month and year). */
.CalendarDropDownItemNormal  {
	background-color: #F0F3F6;
}

/* calendar body (weekday titles and numbers). */
.CalendarBody {
	padding: 5px;
	background-color: #F0F3F6;
	font-family: verdana; 
	font-size: 10px;
}

/* Attributes of current day in calendar body. */
.CalendarCurrentDay {
	color: #F22340;
	font-weight: bold;
	text-decoration: none;
}

/* end-of-week days (Sundays) in calendar body. */
.CalendarEndWeekday {
	color: #909090;
	text-decoration: none;
}

/* Attributes of all other days in calendar body. */
.CalendarNormalDay{
	color: black;
	text-decoration: none;
}

/* Attributes of border around selected day in calendar body. */
.CalendarSelectedDay  
{
    border: #E1E5B8 1px solid;
}

/* Default attributes of designated holidays. */
.CalendarHoliday {
	background-color: #FFeed1;
}

/* today display at bottom on calendar */
.CalendarToday {
	padding: 0px;
	color: black;
	background-color: #F0F3F6;
	text-align: center;
	text-decoration: none;
}
