.datePickerMonthSelector {
	background: #FFFFFF;
	width: 250px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-left: 2px solid #666666;
	border-top: 2px solid #666666;
	border-right: 2px solid #666666;
	margin-left: 5px;
	margin-top: 5px;
}

.datePickerMonthSelector i {
	font-size: 24px;
}

.datePickerPreviousButton,.datePickerNextButton {
	line-height: 1em;
	cursor: pointer;
	padding: 0px 4px;
}

td.datePickerMonth {
	text-align: center;
	vertical-align: center;
	white-space: nowrap;
	font-weight: 700;
	color: #444444;
}

.datePickerDays {
	background: #FFFFFF;
	width: 250px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-left: 2px solid #666666;
	border-bottom: 2px solid #666666;
	border-right: 2px solid #666666;
	margin-left: 5px;
	margin-bottom: 5px;
	padding-left: 4px;
}

.datePickerDay {
	padding: 6px 4px 6px 4px;
}

td.datePickerWeekdayLabel,td.datePickerWeekendLabel {
	padding: 0px 4px 2px 4px;
}

.datePickerDay,.datePickerWeekdayLabel,.datePickerWeekendLabel {
	font-weight: 700;
	cursor: pointer;
	text-align: center;
	padding: 6px 4px 6px 4px;
	outline: none;
	color: #444444;
	width: 20px;
}

/* Hervorhebung des gewählten Datums */
.datePickerDay.datePickerDayIsValue {
	color: #FFFFFF;
	border-radius: 25px;
}

/* Hervorhebung des markierten Datums (onhover mit der Maus) */
.datePickerDay.datePickerDayIsHighlighted {
	color: #FFFFFF;
	border-radius: 25px;
}

/* Hervorhebung des markierten & gewählten Datums (onhover mit der Maus) */
.datePickerDay.datePickerDayIsValueAndHighlighted {
	color: #FFFFFF;
	background: #666666;
	border-radius: 25px;
}

/* Hervorhebung der Tage, die nicht zum aktuellen Monat gehören */
.datePickerDayIsFiller {
	color: #AAAAAA;
}

.datePickerDayIsDisabled {
	color: #AAAAAA;
	font-style: italic;
}