.datepicker {
	position: absolute;
	border: 1px solid #E7E7E7;
	border-top: 5px solid #CCC;
	font-size: 11px;
	width: 222px;
	background: #fff;
	padding: 5px;
	line-height: 15px;
}

/* header
********************************************************/
.datepicker .header {
	border-bottom: 1px solid #CCC;
	position: relative;
	height: 29px;
	padding-top: 4px;
	margin-bottom: 5px;
}

.datepicker .header .title {
	text-align: center;
	margin: 3px 52px 0 26px;
}

.datepicker .header .titleText {
	color: #00338E;
	font-family: Georgia, Times, serif;
	font-size: 14px;
}
.datepicker .header .next,
.datepicker .header .previous,
.datepicker .header .closeButton {
	position: absolute;
	width: 15px;
	height: 15px;
	background: #fff;
	text-align: center;
	color: #666;
	top: 3px;
	cursor: pointer;
}
.datepicker .header .previous {
	background-image: url(/assets/images/btn_prev.png);
	background-repeat: no-repeat;
	left: 0px;
	height: 22px;
	overflow: hidden;
	text-indent: -999px;
	width: 26px;
}
.datepicker .header .next {
	background-image: url(/assets/images/btn_next.png);
	background-repeat: no-repeat;
	height: 22px;
	overflow: hidden;
	right: 26px;
	text-indent: -999px;
	width: 26px;
}
.datepicker .header .closeButton {
	background-image: url(/assets/images/btn_close.png);
	background-repeat: no-repeat;
	height: 22px;
	overflow: hidden;
	right: 0px;
	text-indent: -999px;
	width: 26px;
}

/* body
********************************************************/
.datepicker .body {
	position: relative;
	top: 0px;
	left: 0px;
	width: 224px;
	height: 213px;
	overflow: hidden;
}

/* time
********************************************************/
.datepicker .time {
	width: 222px;
	height: 100%;
	background: #EFEFEF;
}

.datepicker .time .hour,
.datepicker .time .separator,
.datepicker .time .minutes {
	border: 1px solid #CCC;
	background: #fff;
	color: #9A9A9B;
	width: 50px;
	font-size: 24px;
	font-family: Arial, sans-serif;
	position: absolute;
	top: 55px;
	text-align: center;
	padding: 2px;
}

.datepicker .time .hour {
	left: 43px;
}
.datepicker .time .separator {
	background: transparent;
	border: 0px;
	width: 10px;
	left: 104px;
	top: 61px;
}

.datepicker .time .minutes {
	left: 123px;
}
.datepicker .time .ok {
	position: absolute;
	top: 105px;
	left: 75px;
	font-size: 11px;
	width: 72px;
}

/* days-grid
********************************************************/
.datepicker .days .day {
	float: left;
	border-right: 1px dotted #CCC;
	border-bottom: 1px dotted #CCC;	
	cursor: pointer;
	text-align: center;
	padding-top: 4px;
	width: 26px;
	overflow: hidden;
	height: 21px;
	margin: 0 5px 5px 0;
}

.datepicker .days .day0 {
}

.datepicker .days .week5 .day {
	margin-bottom: 0;
}

/* days-colors
********************************************************/
.datepicker .days .title {
	color: #6BA0C5;
	cursor: default;
	border: none;
	width: 27px;
	text-transform: uppercase;
	font-size: 10px;
}

.datepicker .days .otherMonth {
	border-right: 1px dotted #DDD;
	border-bottom: 1px dotted #DDD;	
	color: #CCC;
}

/* months
********************************************************/
.datepicker .months .month {
	border-right: 1px dotted #CCC;
	border-bottom: 1px dotted #CCC;	
	float: left;
	cursor: pointer;
	text-align: center;
	overflow: hidden;
	width: 69px;
	height: 32px;
	padding-top: 15px;
	margin: 0 5px 5px 0;
}

.datepicker .months .month3,
.datepicker .months .month6,
.datepicker .months .month9,
.datepicker .months .month12 {
	margin-right: 0px;
	width: 70px;
}

.datepicker .months .month10,
.datepicker .months .month11,
.datepicker .months .month12 {
	margin-bottom: 0;
}

/* years
********************************************************/
.datepicker .years .year {
	float: left;
	border-right: 1px dotted #CCC;
	border-bottom: 1px dotted #CCC;	
	cursor: pointer;
	text-align: center;
	padding-top: 11px;
	width: 51px;
	overflow: hidden;
	height: 25px;
	margin: 0 5px 5px 0;
}

.datepicker .years .year3,
.datepicker .years .year7,
.datepicker .years .year11,
.datepicker .years .year15,
.datepicker .years .year19 {
	margin-right: 0px;
	width: 50px;
}

.datepicker .years .year16,
.datepicker .years .year17,
.datepicker .years .year18,
.datepicker .years .year19 {
	margin-bottom: 0px;
}

/* global
********************************************************/
.datepicker .selected {
	background: #982E3B !important;
	border-right: 1px solid #FFF !important;
	border-bottom: 1px solid #FFF !important;	
	color: #FFF !important;
}

.datepicker .unavailable {
	background: #edd !important;
	color: #b88 !important;
	cursor: default !important;
}

.datepicker .days .week .day:hover,
.datepicker .months .month:hover,
.datepicker .years .year:hover {
	background: #6BA0C5 !important;
	border-right: 1px solid #FFF !important;
	border-bottom: 1px solid #FFF !important;	
	color: #FFF !important;
}
