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

#datepicker_div { /* div obejmujący cały kalendarz */
	display: none;
	position: relative;
	width: 190px;
	margin: 0;
	background: #ff7600;
	padding: 2px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .7em;
	z-index: 9999; /*must have*/
	line-height: 120%;
}
.datepicker_control { display: none; } /* panel - zamknij, wyczyść */
.datepicker_current { display: none; }
.datepicker_clear { display: none; }
.datepicker_links { background: #fff; padding: 13px 0; } /* linki - poprzedni, następny, dzisiaj */
.datepicker_prev {
	position: absolute;
	left: .5em;
	top: .7em;
}
.datepicker_next {
	position: absolute;
	right: .5em;
	top: .7em;
}
#datepicker_div .datepicker_next a, #datepicker_div .datepicker_prev a {
	text-indent: -999999px;
	width: 13px;
	height: 13px;
	display: block;
	font-size: 1em;
	background: url(/0/images/icoLeft.gif) 50% 50% no-repeat;
	border: none;
	cursor: pointer;
}
#datepicker_div .datepicker_next a {
	background: url(/0/images/icoRight.gif) 50% 50% no-repeat;
}
.datepicker_next label, .datepicker_prev label { display: none; }
.datepicker_header { /* selecty z miesiącem i rokiem */
	overflow: hidden;
	height: 1%;
	background: #fff;
}
.datepicker_header select {
	border: 1px solid #ff7600;
	color: #000000;
	font-size: 1em;
	line-height: 1.4em;
	position: absolute;
	top: .5em;
	margin: 0 !important;
	font-weight: bold;
}
.datepicker_header select.datepicker_newMonth {
width: 7.8em;
left: 2.2em;
}
.datepicker_header select.datepicker_newYear {
width: 4.8em;
right: 2.2em;
}
.datepicker {
	background: #ccc;
	text-align: center;
	font-size: 100%;
}
.datepicker a {
	display: block;
	width: 100%;
}
.datepicker_titleRow { background: #777; }
.datepicker_daysRow {
	background: #eee;
	color: #666;
}
.datepicker_weekCol {
	background: #777;
	color: #fff;
}
.datepicker_daysCell {
	color: #000;
	border: 1px solid #ddd;
}
.datepicker_daysCell a{
	display: block;
}
.datepicker_weekEndCell {
	background: #ddd;
}
.datepicker_titleRow .datepicker_weekEndCell {
	background: #777;
}
.datepicker_daysCellOver {
	background: #fff;
	border: 1px solid #777;
}
.datepicker_unselectable {
	color: #888;
}
.datepicker_today {
	background: #fcc !important;
}
.datepicker_currentDay {
	background: #999 !important;
}
.datepicker_status {
	background: #ddd;
	width: 100%;
	font-size: 80%;
	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;
	background: none;
	color: #000;
}
.datepicker_inline .datepicker_links a {
	padding: 0 5px !important;
}
.datepicker_titleRow a {
	color: #eee !important;
}
.datepicker_titleRow a:hover {
	background: #ddd !important;
	color: #333 !important;
}

/* ___________ MULTIPLE MONTHS _________*/

.datepicker_oneMonth {
	clear: none;
	overflow: hidden;
	background: #fff;
}

/* ___________ 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*/
}

.datepicker_oneMonth table { clear: left; width: 190px; }

