/* Reset */
.ui-datepicker,
.ui-datepicker table,
.ui-datepicker tr,
.ui-datepicker td,
.ui-datepicker th {
	margin: 0;
	padding: 0;
	border: none;
	border-spacing: 0;
}

/* Calendar Wrapper */
.ui-datepicker {
	display: none;
	width: 294px;
	padding: 35px;
	padding-bottom: 0px;
	margin-bottom: 30px;
	cursor: default;

	text-transform: uppercase;
	font-family: Tahoma;
	font-size: 12px;

	background: #f7f7f7;	

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.ui-datepicker-group { float: left; margin-right: 100px; margin-bottom: 60px; }
.ui-datepicker-row-break { clear: both; }
.ui-datepicker-group.ui-datepicker-group-last { margin-right: 0px; }

.ui-datepicker-multi { width: 100%; }

/* Calendar Header */
.ui-datepicker-header {
	position: relative;
	padding-bottom: 10px;
	border-bottom: 1px solid #d6d6d6;
}

.ui-datepicker-title { text-align: center; }

/* Month */
.ui-datepicker-month {
	position: relative;
	padding-right: 20px;
	color: #565656;
	font-size: 15px;
	font-weight: bold;
}

.ui-datepicker-month:before {
	display: block;
	position: absolute;
	top: 5px;
	right: 0;
	width: 10px;
	height: 10px;
	content: '';

	background: #4d8bcc;
	background: -moz-linear-gradient(top, #4d8bcc 0%, #1a498f 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4d8bcc), color-stop(100%,#1a498f));
	background: -webkit-linear-gradient(top, #4d8bcc 0%,#1a498f 100%);
	background: -o-linear-gradient(top, #4d8bcc 0%,#1a498f 100%);
	background: -ms-linear-gradient(top, #4d8bcc 0%,#1a498f 100%);
	background: linear-gradient(top, #4d8bcc 0%,#1a498f 100%);

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/* Year */
.ui-datepicker-year {
	padding-left: 8px;
	font-size: 15px;
	color: #a8a8a8;
}

/* Prev Next Month */
.ui-datepicker-prev,
.ui-datepicker-next {
	position: absolute;
	top: -2px;
	padding: 5px;
	cursor: pointer;
}

.ui-datepicker-prev {
	left: 0;
	padding-left: 0;
}

.ui-datepicker-next {
	right: 0;
	padding-right: 0;
}

.ui-datepicker-prev span,
.ui-datepicker-next span{
	display: block;
	width: 5px;
	height: 10px;
	text-indent: -9999px;

	background-image: url(../img/arrows.png);
}

.ui-datepicker-prev span { background-position: 0px 0px; }

.ui-datepicker-next span { background-position: -5px 0px; }

.ui-datepicker-prev-hover span { background-position: 0px -10px; }

.ui-datepicker-next-hover span { background-position: -5px -10px; }

/* Calendar "Days" */
.ui-datepicker-calendar th {
	padding-top: 15px;
	padding-bottom: 10px;
	
	text-align: center;
	font-weight: normal;
	color: #a8a8a8;
}

.ui-datepicker-calendar td {
	padding: 0 7px;
	
	text-align: center;
	line-height: 26px;
}

.ui-datepicker-calendar .ui-state-default {
	display: block;
	width: 26px;
	outline: none;

	text-decoration: none;
	color: #565656;
	
	border: 1px solid transparent;
	margin-bottom: 1px;
}

/* Day Active State*/
.ui-datepicker-calendar .ui-state-active {
	color: #4d8bcc;
	border-color: #4d8bcc;
}

/* Day Busy State*/
.ui-datepicker-calendar .busyday .ui-state-default {
	color: #e14100;
	border-color: #e14100;
}

/* Other Months Days*/
.ui-datepicker-other-month .ui-state-default, .ui-datepicker-other-month.busyday .ui-state-default { color: #c8c8c8; border-color: transparent; }