
/* DATE PICKER */

div.ui-datepicker
{
	background: #ffffff;
	border: 1px solid #d1e4f3;
	float: left;
	padding: 5px;
}

div.ui-datepicker-header 
{
	background: #0959a6;
	border: 2px solid #ffffff;
	color: #ffffff;
	font: 108%/1.2 "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin: 0px 0px 3px 0px;
	padding: 3px 3px 3px 3px;
	position: relative;
	text-align: center;
	line-height: 24px;
	vertical-align: middle;
}

div.ui-datepicker-header a.ui-datepicker-prev
{
	position: absolute;
	left: 5px;
	top: 5px;
	width: 20px;
	height: 20px;
	background: url(../images/datepickerPrevMonthBtn.gif) 0px 0px no-repeat;
	text-indent: -9999px;
	text-align: left;
	overflow: hidden;
}

div.ui-datepicker-header a.ui-datepicker-next
{
	position: absolute;
	right: 5px;
	top: 5px;
	width: 20px;
	height: 20px;
	background: url(../images/datepickerNextMonthBtn.gif) 0px 0px no-repeat;
	text-indent: -9999px;
	text-align: left;
}

div.ui-datepicker-header a.ui-datepicker-prev:hover, div.ui-datepicker-header a.ui-datepicker-next:hover
{
	background-position: 0px -40px;
	cursor: pointer;
}

table.ui-datepicker-calendar
{
	border: none;
	border-collapse: separate;
	border-spacing: 2px;
	margin: 0px 0px 0px 0px;
}

table.ui-datepicker-calendar td
{
	background: #f2f7fb;
	border: none;
	padding: 0px;
}

table.ui-datepicker-calendar td:hover
{
}

table.ui-datepicker-calendar td a
{
	background: #f2f7fb;
	display: block;
	cursor: pointer;
	padding: 3px;
	border: 1px solid #d1e4f3;
}

table.ui-datepicker-calendar td a:hover
{
	background: #0959a6;
	color: #ffffff;
	cursor: pointer;
	text-decoration: none;
}

table.ui-datepicker-calendar td a.ui-state-active
{
	background: #ffe45c;
	border: 1px solid #fed22f;
	color:#363636;
}

/* DATE PICKER INLINE */

div.ui-datepicker-inline
{
	margin: 0px 0px 0px 0px;
	padding: 8px;
}

div.ui-datepicker-inline table.ui-datepicker-calendar
{
	border-spacing: 5px;
}

div.ui-datepicker-inline table.ui-datepicker-calendar td a
{
	padding: 5px;
}

div#ui-datepicker-div
{
	display: none;
}


