/**
 * 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  {
	font-family: arial;
	text-align: center;
	position: absolute;
	border: solid 1px #c4d5e3;
	background: #e9eff4;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-moz-box-shadow: 3px 3px 7px #000;
	-webkit-box-shadow: 3px 3px 7px #000;
	box-shadow: 3px 3px 7px #000;
}
table.datepicker-header {
 font-size: 12px;
 font-weight: bold;
 line-height: 2em;
 border-collapse: collapse;
 border-spacing: 0;
 color: #000;
 width: 100%;
}
table.datepicker-header .prev, table.datepicker-header .next {
	width: 2em;
	cursor: pointer;
	color: #777;
}
table.datepicker-header td:first-child {
	-moz-border-radius-topleft: 6px;
	-webkit-border-top-left-radius: 6px;
}
table.datepicker-header td:last-child {
	-moz-border-radius-topright: 6px;
	-webkit-border-top-right-radius: 6px;
}
table.datepicker-header .prev:hover, table.datepicker-header .next:hover {
	color: #000;
	background: #c4d5e3;
}
div.datepicker-footer {
 font-size: 10px;
 cursor: pointer;
 text-align: center;
 line-height: 2em;
 -moz-border-radius-bottomleft: 6px;
 -webkit-border-bottom-left-radius: 6px;
 -moz-border-radius-bottomright: 6px;
 -webkit-border-bottom-right-radius: 6px;
}
div.datepicker-footer:hover {
	background: #c4d5e3;
}
div.datepicker-calendar {
 font-size: 10px;
 background:#FFFFFF;
 text-align: center;
}
div.datepicker-calendar table {
 border-collapse: collapse;
 border-spacing: 0;
 font-size: 10px;
 margin: 0px;
 padding: 0px;
 text-align: center;
}
div.datepicker-calendar table td {
 border: 1px #eaeaea solid;
 margin: 0px;
 padding: 0px;
 text-align: center;
 width: 3em;
 line-height: 2em;
}
div.datepicker-calendar table td:hover,
div.datepicker-calendar table td.outbound:hover,
div.datepicker-calendar table td.today:hover {
 background: #e9eff4;
 cursor: pointer;
 color: #000;
}
div.datepicker-calendar table td.wday {
 border: 1px #eaeaea solid;
 background: #ffffdd;
 cursor: text;
}
div.datepicker-calendar table td.outbound {
 background: #eee;
 color: #aaa;
}
div.datepicker-calendar table td.today {
 border: 1px #16518e solid;
 background: #c4d5e3;
}

.datepicker-opener {
	display: inline-block;
	background-image: url("calendar.png");
	background-repeat: no-repeat;
	width: 22px;
	height: 22px;
	margin-left: 4px;
	cursor: pointer;
	position: relative;
	top: 6px;
	margin-top: -8px;
}

