
/*datepicker*/
/* Main Style Sheet for jQuery UI date picker */
.ui-datepicker-trigger { margin-left: 5px; }

#ui-datepicker-div, .ui-datepicker-inline {
	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
	font-family: Verdana, Arial, sans-serif;
	background: #fff;
	font-size: 0.9em;
	border: 4px solid #d3d3d3;
	width: 15.5em;
	padding: .3em;
	position: relative;
}
#ui-datepicker-div {
	z-index: 9999; /*must have*/
	display: none;
	background: #fff;
}
.ui-datepicker-inline { float: left; display: block; }

.ui-datepicker-control { font-size: 0.8em; margin-bottom: 3px; background-color: #E5E5E5; border: 1px solid #D3D3D3; height: 15px; position: relative; width: 100%; }
.ui-datepicker-control div { top: 0; padding: 1px 2px; width: 45%; position: absolute; cursor: pointer; color: #555555; }
.ui-datepicker-clear { left: 0; text-align: left; }
.ui-datepicker-close { right: 0; text-align: right; }

.ui-datepicker-current {
	display: none;
}
.ui-datepicker-links { height: 18px; width: 100%; position: relative; }
.ui-datepicker-next, .ui-datepicker-prev { top: 0; position: absolute; text-indent: -999999px; width: 14px; background: #e6e6e6; cursor: pointer; }
.ui-datepicker-prev { left: 0; }
.ui-datepicker-next { right: 0; }
.ui-datepicker-next:hover, .ui-datepicker-prev:hover { background: #dadada; }
.ui-datepicker-next a, .ui-datepicker-prev a,
.ui-datepicker-next label, .ui-datepicker-prev label {
	height: 16px;
	display: block;
	font-size: 0.9em;
	border: 1px solid #d3d3d3;
	background: url(../img/calendar/arrow-dark-left.gif) 50% 50% no-repeat;
}
.ui-datepicker-next a, .ui-datepicker-next label { background: url(../img/calendar/arrow-dark-right.gif) 50% 50% no-repeat; }
.ui-datepicker-prev a:hover { background: url(../img/calendar/arrow-light-left.gif) 50% 50% no-repeat; }
.ui-datepicker-next a:hover { background: url(../img/calendar/arrow-light-right.gif) 50% 50% no-repeat; }

.ui-datepicker-header select {
	border: 1px solid #d3d3d3;
	color: #555555;
	background: #e6e6e6;
	font-size: 0.9em;
	line-height: 1.4em;
	position: absolute;
	top: 23px;
	margin: 0 !important;
	
}
.ui-datepicker-header select.ui-datepicker-new-month {
width: 7em;
left: 2em;
}
.ui-datepicker-header select.ui-datepicker-new-year {
width: 5em;
left: 9.2em;
}
table.ui-datepicker {
	width: 15.5em;
	text-align: right;
}
table.ui-datepicker td a {
	padding: .1em .3em .1em 0;
	display: block;
	color: #555555;
	background: #e6e6e6;
	cursor: pointer;
	border: 1px solid #ffffff;
}
table.ui-datepicker td a:hover {
	border: 1px solid #999999;
	color: #212121;
	background: #dadada;
}
table.ui-datepicker td a:active {
	border: 1px solid #FFB9B9;
	color: #222222;
	background: #dadada;
}
table.ui-datepicker .ui-datepicker-title-row td {
	padding: .3em 0;
	text-align: center;
	font-size: 0.9em;
	color: #222222;
	text-transform: uppercase;
	/*border-bottom: 1px solid #d3d3d3;*/
}

table.ui-datepicker .ui-datepicker-title-row td a {
	color: #222222;
}

table.ui-datepicker .ui-datepicker-unselectable { color: #ddd; }

/* ___________ IE6 IFRAME FIX ________ */

.ui-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: 190px !important; /*must have*/
    height: 175px !important; /*must have*/
}

