/* style sheet for jQuery Calendar */
table.calendar td {width:14.29% !important; line-height:20px;}
#calendar_div, .calendar_inline {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 0;
	margin: 0;
	background: #fff;
}
#calendar_div {
	margin: 0;
	padding: 10px;	
	display: none;
	border: 1px solid #ccc;
	
	width: 185px;
	z-index: 10; /*must have*/ 
}
.calendar_inline {
	float: left;
	display: block;
	border: 0;
}
.calendar_dialog {
	padding: 5px !important;
	border: 4px ridge #ddd !important;
}

.calendar_prompt {
	float: left;
	width: 181px;
	padding: 2px;
	background: #ddd;
	color: #000;
}
* html .calendar_prompt {
	width: 185px;
}
.calendar_control, .calendar_links, .calendar_header, .calendar {
	width: 100%;
	clear: both;
	float: left;
}
.calendar_control {
	background: #fff;
}
.calendar_links {
	background: #fff;
}
.calendar_links label { /* disabled links */
	padding: 2px 5px;
	color: #cc0;
}
.calendar_clear, .calendar_prev {
	float: left;
}
.calendar_prev, .calendar_next {width:30px;}
.calendar_current {
	font-size:10px;
	float: left;
	width: 90px;
	text-align: center;
}
.calendar_close, .calendar_next {
	float: right;
	text-align: right;
}
.calendar_header {
	padding: 5px 0px 5px 0px; 
	text-align: center;
}
.calendar_header select {
	margin: 0px 10px 0px 0px; 
	background: #fff;
	color: #333;
	width: 80px;
}
.calendar {
	background: #ccc;
	text-align: center;
	font-size: 100%;
}
.calendar a {
	display: block;
	width: 100%;
	text-decoration: none; 
}
.calendar .calendar_titleRow {
	background: #fff;
	padding:0;
	font-size: 11px;
	font-weight: bold;
}
.calendar .calendar_daysRow {
	background: #fff;
	color: #333;
}
.calendar .calendar_daysCell {
	color: #000;
	border: 1px solid #ddd;
}
#calendar .calendar_daysCell a{
	display: block;
}
.calendar .calendar_weekEndCell {
	background: #ddd;
}
.calendar .calendar_daysCellOver {
	background: #f3f3f3;
}
.calendar .calendar_unselectable {
	color: #ccc;
}

.calendar_today {
	background: #ffc !important;
}
.calendar_currentDay {
	background: #99ccff !important;
}

/* ________ CALENDAR LINKS _______

** Reset link properties and then override them with !important */
#calendar_div a, .calendar_inline a
.calendar_links a
{
	cursor: pointer;
	margin: 0;
	padding: 0;
	background: none;
	color: #333;
	text-decoration: none;
	
}
.calendar_links a:hover { text-decoration: underline; } 
.calendar_inline .calendar_links a {
	padding: 0 5px !important;
}
.calendar_control a, .calendar_links a {
	padding: 1px 5px !important;
}
.calendar_titleRow a {
	color: #eee !important;
}
.calendar_control a:hover,
.calendar_links a:hover,
.calendar_titleRow a:hover 		{ text-decoration: underline !important; }

/* ___________ IE6 IFRAME FIX ________ */
* html .calendar_div {zoom:1; height:1px;}
.calendar_cover {
    display: none; /*sorry for IE5*/
    display/**/: block; /*sorry for IE5*/
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 211px; /*must have to match width and borders*/
    height: 300px; /*must have to match maximum height*/ 
}
