/* Main Style Sheet for jQuery UI date picker */
#datepicker_div, .datepicker_inline {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	padding: 0;
	margin: 0;
	background: #ddd;
	width: 185px;
}
#datepicker_div {
	display: none;
	border: 1px solid #66ffff;
	margin:5px 0 0 0;
	z-index: 10; /*must have*/
}
.datepicker_inline {
	float: left;
	display: block;
	border: 0;
}
.datepicker_dialog {
	padding: 5px !important;
	border: 4px ridge #ddd !important;
}
button.datepicker_trigger {
	width: 25px;
}
img.datepicker_trigger {
	margin: 0 0 0 10px;
	_margin: 0 0 0 8px;
	vertical-align: middle;
}

.datepicker_prompt {
	float: left;
	padding: 2px;
	background: #ddd;
	color: #000;
}
* html .datepicker_prompt {
	width: 250px;
}
.datepicker_control, .datepicker_links, .datepicker_header, .datepicker {
	clear: both;
	float: left;
	width: 100%;
	color: #fff;
}
.datepicker_control {
	background: #0046ac;
	padding: 3px 0px;
}
.datepicker_links {
	background: #99ffff;
	padding: 4px 0px;
}
.datepicker_control, .datepicker_links {
	font-weight: bold;
	font-size: 80%;
}
.datepicker_links label { /* disabled links */
	padding: 2px 5px;
	color: #888;
}
.datepicker_clear, .datepicker_prev {
	float: left;
	width: 34%;
}

.datepicker_current {
	float: left;
	width: 30%;
	text-align: center;
}
.datepicker_close, .datepicker_next {
	float: right;
	width: 34%;
	text-align: right;
}
.datepicker_close img {margin:2px 0 0 0;}
.datepicker_header {
	padding: 1px 0 3px;
	background: #99ffff;
	text-align: center;
	font-weight: bold;
	height: 1.3em;
}
.datepicker_header select {
	background: #fff;
	color: #0046ac;
	border: 0px;
	font: bold 10px Tahoma;
}
.datepicker_header option {
	background: #fff;
	color: #0046ac;
	border: 0px;
	font: bold 10px Tahoma;
}
.datepicker {
	background: #fff;
	text-align: center;
	border-left:1px solid #99ffff;border-bottom:1px solid #99ffff;
}
.datepicker td {
	width:26px;
	border-top:1px solid #99ffff;
	border-right:1px solid #99ffff;
	font: 10px Tahoma;
	padding:2px 0;
}

.datepicker_cellWrap {
	width: 100%;
	position: relative;
	height: 23px;
	overflow: hidden;
}

.datepicker a {
	display: block;
	width: 100%;
}

.datepicker .datepicker_tip {
	width: 10px;
	height: 10px;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	right: 2px;
	background: url(../images/calendar-inf.png) no-repeat 0 0;
	cursor: help;
}

.datepicker_titleRow {
	background: #6699ff;
}

.datepicker_daysRow {
	background: #fff;
	color: #666;
}
.datepicker_weekCol {
	background: #777;
	color: #fff;
}
.datepicker_daysCell {
	color: #000;
	/*border: 1px solid #ddd;*/
}
.datepicker_daysCell a{
	display: block;
}
.datepicker_weekEndCell {
	background: #ccffff;
}
.datepicker_daysCellOver {
	background: #5089fb;
}
.datepicker_daysCellOver a{
	color:#fff !important;
}
.datepicker_unselectable {
	color: #888;
}
.datepicker_today {
	background: #d1e0ff ;
}
.datepicker_currentDay {
	background: #66ffff ;
}
.datepicker_today a{
	color: #0046ac !important;
}
.datepicker_currentDay a{
	color: #0046ac !important;
}

.datepicker_reservedRed {
	background: red;
}

.datepicker_reservedYellow {
	background: yellow;
}

.datepicker_reservedRed a,
.datepicker_reservedYellow a {
	color: #0046ac !important;
}

/* ________ Datepicker Links _______

** Reset link properties and then override them with !important */
#datepicker_div a, .datepicker_inline a {
	cursor: pointer;
	margin: 0;
	padding: 0;
	background: none;
	color: #0046ac;
}
.datepicker_inline .datepicker_links a {
	padding: 0 5px !important;
}
.datepicker_control a, .datepicker_links a {
	padding: 3px 5px !important;
	color: #0046ac;
	font:bold 9px Tahoma;
}
.datepicker_links a {
	padding:2px 5px !important;
}
.datepicker_links a span {
	font-weight:normal;
}
.datepicker_titleRow a {
	color: #eee !important;
}
.datepicker_control a:hover {
	text-decoration:none;
}
.datepicker_links a:hover, .datepicker_titleRow a:hover {
	background: #336fd5 !important;
	color: #fff !important;
}

/* ___________ MULTIPLE MONTHS _________*/

.datepicker_multi .datepicker {
	border: 1px solid #777;
}
.datepicker_oneMonth {
	float: left;
	width: 250px;
}
.datepicker_newRow {
	clear: left;
}
.datepicker_clear a {
	color:#99ccff !important;
	font:normal 9px Tahoma;
}



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