/* 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;
	cursor: default;
	border: 1px solid #fcb201
}

/* Calendar Header */
.ui-datepicker-header {
	position: relative;
	padding-bottom: 10px;
	border-bottom: 1px solid #d6d6d6;
}

.ui-datepicker-title { text-align: center; 	position: relative;
	padding-top: 5px;
	color: #b5030e;
	font-size:18px;
	font-weight:bold }

/* Month */
.ui-datepicker-month {
	position: relative;
	padding-right: 15px;
	color: #b5030e;
	font-size:18px;
	font-weight:bold
}

.ui-datepicker-month:before {
	display: block;
	position: absolute;
	
	right: 0;
	width: 5px;
	height: 5px;
	content: '-';

}

/* Year */


/* 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:700;	
	color: #34424f;
	font-size:16px
}
.ui-datepicker-calendar a, .ui-datepicker-calendar th span{ background:#ecf2f7; margin:3px 0;}

.ui-datepicker-calendar td {
	padding: 0 7px;
	
	text-align: center;
	line-height: 26px;
}

.ui-datepicker-calendar .ui-state-default {
	display: block;
	width: 23.5px;
	outline: none;
	text-decoration: none;
	color: #68849e;
	font-weight:700;
	border: 1px solid transparent;
}

/* Day Active State*/
.ui-datepicker-calendar .ui-state-active {
	color: #fff;
	background:#075028;
	
}

/* Other Months Days*/
.ui-datepicker-other-month .ui-state-default { color: #cad3dc; }