/* Main Style Sheet for jQuery UI date picker */

#datepicker_div, .datepicker_inline {
	font-size:11px;
	padding:0;
	margin:0;
	background:#fff /* url("/img/bkg.gif") repeat-x top */;
	width:200px;
	}
#datepicker_div {
	display:none;
	border:2px outset #777;
	z-index:9999; /*must have*/
	}
.datepicker_inline {
	float:left;
	display:block;
	border:0;
	}
.datepicker_dialog { }

button.datepicker_trigger { }

img.datepicker_trigger { }

.datepicker_prompt { }

* html .datepicker_prompt {
	width:200px;
	}

.datepicker_control, .datepicker_links, .datepicker_header, .datepicker {
	clear:both;
	float:left;
	width:100%;
	}
.datepicker_control {
	font-weight:bold;
	padding-top:7px;
	padding-bottom:5px;
	}
.datepicker_links {
	padding-top:2px;
	padding-bottom:7px;
	}

.datepicker_links label { /* disabled links */
	padding:2px 5px;
	color:#777;
	}

.datepicker_clear, .datepicker_prev {
	float:left;
	width:35%;
	}
.datepicker_current {
	float:left;
	width:30%;
	text-align:center;
	}
.datepicker_close, .datepicker_next {
	float:right;
	width:35%;
	text-align:right;
	}

.datepicker_header {
	padding:5px 0;
	text-align:left;
	border-top:1px solid #ccc;
	}
.datepicker_header select {
	font-size:100%;
	color:#333;
	border:0px;
	margin-right:5px;
	}
.datepicker {
	text-align:center;
	margin:0;
	}
.datepicker a {
	text-align:center;
	display:block;
	width:100%;
	}

.datepicker_titleRow {
	padding:10px 0;
	background: #777;
	text-align:center;
	font-weight:bold;
	}
.datepicker_daysRow { }

.datepicker_weekCol {
	font-weight:bold;
	}
.datepicker_daysCell {
	width:14%;
	padding:5px 0;
	border-bottom:solid 1px #ccc;
	}
.datepicker_daysCell a {
	display:block;
	}
.datepicker_weekEndCell {
	background:#efefef;
	font-weight:bold;
	}
.datepicker_titleRow .datepicker_weekEndCell {
	background:#777;
}
.datepicker_daysCellOver {
	background:#e3e3e3;
	}
.datepicker_unselectable {
	color:#888;
	}
.datepicker_today a {
	font-weight:bold;
	color:#777 !important;
	}
.datepicker_currentDay {
	background:#e3e3e3 !important;
	font-weight:bold;
	}
.datepicker_status {
	background:#ddd;
	width:100%;
	text-align:center;
	}

/* ________ Datepicker Links _______

** Reset link properties and then override them with !important */

#datepicker_div a, .datepicker_inline a {
	cursor:pointer;
	margin:0;
	padding:0;
	color:#333;
	}
.datepicker_inline .datepicker_links a {
	padding:5px !important;
	}
.datepicker_control a, .datepicker_links a {
	padding:5px !important;
	}
.datepicker_titleRow a {
	padding:5px 0 !important;
	color:#fff !important;
	}
.datepicker_control a:hover, .datepicker_links a:hover {
	color:#777 !important;
	}
.datepicker_currentDay a {
	color:#777 !important;
	}

/* ___________ MULTIPLE MONTHS _________*/

.datepicker_multi .datepicker { }

.datepicker_oneMonth {
	float:left;
	width:200px;
	}
.datepicker_newRow {
	clear:left;
	}

/* ___________ IE6 IFRAME FIX ________ */

.datepicker_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:200px; /*must have*/
    height:200px; /*must have*/
	}
