/**
 * DatePicker widget using Prototype and Scriptaculous.
 * (c) 2007 Mathieu Jondet <mathieu@eulerian.com>
 * Eulerian Technologies
 *
 * DatePicker is freely distributable under the same terms as Prototype.
 * v0.9.1
 *
 */
div.datepicker {
 	position: absolute;
 	border: 1px #C4D5E3 solid;
 	font-family: arial;
 	width: 16em;
}

div.datepicker-header {
 	font-size: 12px;
 	font-weight: bold;
 	background: #D9E0FF;
 	border-bottom:1px solid #c4d5e3;
 	padding: 2px;
 	color: #5867A9;
 	white-space: nowrap;
 	text-align: center;
}

div.datepicker-header span.month {
	cursor: default;
}

div.datepicker-header span.controls {
	cursor: pointer;
	position: absolute;
}

div.datepicker-header span.controls:hover {
	background-color: #C9D0EF;
	border: 1px #c4d5e3 solid;
}

div.datepicker-footer {
 	font-size: 10px;
 	background: #D9E0FF;
	border-top:1px solid #c4d5e3;
 	cursor: pointer;
 	text-align: center;
 	padding: 2px;
 	color: #5867A9;
}

div.datepicker-footer:hover {
	background-color: #C9D0EF;
	border: 1px #c4d5e3 solid;
}

div.datepicker-calendar {
 	font-size: 10px;
 	background:#FFFFFF;
 	padding: 2px;
 	text-align: center;
 	margin: auto auto auto auto;
}

div.datepicker-calendar table {
 	font-size: 10px;
 	border: 1px white solid;
 	margin: auto;
 	padding: 0px;
 	text-align: center;
}

div.datepicker-calendar table tr {
	border: 1px white solid;
 	margin: 0px;
 	padding: 0px;
}

div.datepicker-calendar table td {
 	border: 1px #eaeaea solid;
 	margin: 0px;
 	padding: 0px;
 	text-align: center;
 	cursor: pointer;
}

div.datepicker-calendar table td:hover, 
div.datepicker-calendar table td.outbound:hover,
div.datepicker-calendar table td.today:hover {
 	border: 1px #c4d5e3 solid;
 	background: #e9eff4;
}

div.datepicker-calendar table td.selected:hover {
 	border: 1px #c4d5e3 solid;
 	background: #f5c0c0;
}

div.datepicker-calendar table td.wday {
 	border: 1px #ffffff solid;
 	background: #ffffff;
 	cursor: default;
}

div.datepicker-calendar table td.outbound {
 	background: #e8e4e4;
}

div.datepicker-calendar table td.today {
 	border: 1px #16518e solid;
 	background: #c4d5e3;
}

div.datepicker-calendar table td.selected {
 	border: 1px #408e40 solid;
 	background: #e2a0a0;
}

div.datepicker table td.nclick,
div.datepicker table td.nclick_outbound {
 	cursor:default; color:#aaa;
}

div.datepicker table td.nclick_outbound {
 	background:#E8E4E4;
}

div.datepicker table td.nclick:hover,
div.datepicker table td.nclick_outbound:hover {
 	border: 1px #eaeaea solid;
 	background: #FFF;
}

div.datepicker table td.nclick_outbound:hover {
 	background:#E8E4E4;
}
