/************************************************************
*
*  datepicker.css
*
************************************************************
*
*  Description: CSS Style Sheet for the DatePicker control.
*
*  Date: January 21, 2002
*
*  Author: Thomas J. Winter
*
***********************************************************/

DIV.datepicker {
	background-color : white;
	border: 1px solid black;
}

TABLE.datepickermonth
{
	background-color : #0F0060; /* Dark Blue */
	text-align : center;
	vertical-align : middle;
	border: 1px solid black;
	margin-top: 2px;
	margin-bottom: 3px;
}

TD.datepickermonth
{
	font : bold 9pt Arial, Verdana, Geneva, Helvetics, sans-serif;
	color : white;
}

TABLE.datepickerweek {
	background-color : white;
	text-align : center;
	vertical-align : middle;
	border-bottom: 1px solid #0F0060; /* Dark Blue */
}

TD.datepickerweek {
	font : normal 8pt Arial, Verdana, Geneva, Helvetics, sans-serif;
	color : #0F0060; /* Dark Blue */
	width : 29px;
}

TABLE.datepickerdays {	
	text-align : right;
	vertical-align : middle;
	cursor : pointer;
}

TD.datepickerdays {
	font : normal 8pt Arial, Verdana, Geneva, Helvetics, sans-serif;
	color : black;
	width : 29px;
	height : 20px;
	padding-right: 8px;
	background-color : white;
}

TD.datepickerhover {
	font : normal 8pt Arial, Verdana, Geneva, Helvetics, sans-serif;
	color : black;
	width : 29px;
	height : 20px;
	padding-right: 8px;
	background-color : #FFA500; /* Orange */
}

TABLE.datepickerfooter {
	background-color : white;
	text-align : center;
	vertical-align : middle;
	border-top: 1px solid #0F0060; /* Dark Blue */
}

A:link.datepicker {
	font : normal 8pt Arial, Verdana, Geneva, Helvetics, sans-serif;
	color : #0F0060; /* Dark Blue */
	background-color : transparent;
	text-decoration : underline;
}

A:visited.datepicker {
	font : normal 8pt Arial, Verdana, Geneva, Helvetics, sans-serif;
	color : #0F0060; /* Dark Blue */
	background-color : transparent;
	text-decoration : underline;
}

A:hover.datepicker {
	font : normal 8pt Arial, Verdana, Geneva, Helvetics, sans-serif;
	color : #DC7016; /* Light Orange */
	background-color : transparent;
	text-decoration : none;
}

