
/* DatePicker Container */
.ui-datepicker {
	width: 220px;
	height: auto;
	margin: 5px auto 0;
	font: 9pt Arial, sans-serif;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
	box-sizing: border-box;
	
	padding: 2px;
    border: 0 !important;
	border-radius: 0 !important;
}
.ui-datepicker a {
	text-decoration: none;
}
/* DatePicker Table */
.ui-datepicker table {
	width: 100%;
	margin: 0;
    padding: 0;
}
.ui-datepicker-header {
	background: #135d9c;
    color: #ffffff;
    font-weight: normal;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
    filter: none;
    line-height: 30px;
    border-width: 0;
    border-style: solid;
    border-color: #111;
    border-radius: 0;
}
.ui-datepicker-title {
	text-align: center;
}
.ui-datepicker-prev, .ui-datepicker-next {
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	cursor: pointer;
	background-image: url('../img/arrow.png');
	background-repeat: no-repeat;
	line-height: 600%;
	overflow: hidden;
}
.ui-datepicker-prev {
	float: left;
	background-position: center -30px;
	
	border-radius: 0;
    background: #135d9c;
}
.ui-datepicker-next {
	float: right;
	background-position: center 0px;
	
	border-radius: 0;
    background: #135d9c;
}
.ui-datepicker thead {
	background-color: #f7f7f7;

}
.ui-datepicker th {
	text-transform: uppercase;
	font-size: 6pt;
	padding: 5px 0;
	color: #666666;
	text-shadow: 1px 0px 0px #fff;
	filter: dropshadow(color=#fff, offx=1, offy=0);
}
.ui-datepicker tbody td {
	border-right: 1px solid #fff;
	/* border: 0; */
	padding: 0;
    margin: 0;
	position: relative;
}
.ui-datepicker tbody td:last-child {
	border-right: 0px;
}
.ui-datepicker tbody tr {
	border-bottom: 1px solid #fff;
}
.ui-datepicker tbody tr:last-child {
	border-bottom: 0px;
}
.ui-datepicker td span, .ui-datepicker td a {
	display: inline-block;
	font-weight: bold;
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #666666;
	text-shadow: none;
	filter: none;
	border: 0;
	line-height: 26px;
}
.ui-datepicker-calendar .ui-state-default {
	/* background: #ededed; */
	/* background: -moz-linear-gradient(top,  #ededed 0%, #dedede 100%); */
	/* background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#dedede)); */
	/* background: -webkit-linear-gradient(top,  #ededed 0%,#dedede 100%); */
	/* background: -o-linear-gradient(top,  #ededed 0%,#dedede 100%); */
	/* background: -ms-linear-gradient(top,  #ededed 0%,#dedede 100%); */
	/* background: linear-gradient(top,  #ededed 0%,#dedede 100%); */
	/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#dedede',GradientType=0 ); */
}
.ui-datepicker-calendar .ui-state-hover {
	background: #f7f7f7;
}
.ui-datepicker-calendar .ui-state-active {
	background: #135d9c;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #ffffff;
    text-shadow: none;
    filter: none;
    border: none;
    position: relative;
    margin: 0;
    border-bottom: 1px solid #fff;
    height: 100%;
    top: -1px;
}
.ui-datepicker-unselectable .ui-state-default {
	background: #f4f4f4;
	color: #b4b3b3;
}
.ui-datepicker-calendar td:first-child .ui-state-active {
	width: 29px;
	margin-left: 0;
}
.ui-datepicker-calendar td:last-child .ui-state-active {
	width: 29px;
	margin-right: 0;
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
	height: 29px;
	margin-bottom: 0;
}


.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #afdbff;
    background: #d7edff;
    color: #000000;
}