.ui-datepicker,
.ui-datepicker * {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.ui-datepicker {
	padding: 0px;
	display: none;
	background: white;
	-webkit-box-shadow:  0px 0px 5px #555;
	box-shadow:  0px 0px 5px #555;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	background: #2e2e2e;
	padding: 5px;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position:absolute;
	top: 50%;
	margin-top: -15px;
	width: 30px;
	height: 30px;	
	text-align: center;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	display: block;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {}
.ui-datepicker .ui-datepicker-prev {
	left: 3px;
}
.ui-datepicker .ui-datepicker-next {
	right: 3px;
}
.ui-datepicker .ui-datepicker-prev-hover {}
.ui-datepicker .ui-datepicker-next-hover {}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: inline-block;
	margin-top: 7px;
	height: 16px;
	width: 16px;
	text-indent: -10000px;
	background-image: url(images/arrows-left-right-16x16.png);
	background-repeat: no-repeat;
	background-position: top left;
}
.ui-datepicker .ui-datepicker-next span {
	background-position: top right;
}
.ui-datepicker .ui-datepicker-prev-hover span {
	background-position: bottom left;
}
.ui-datepicker .ui-datepicker-next-hover span {
	background-position: bottom right;
}

.ui-datepicker .ui-datepicker-title { 
	margin: 0 35px;  
	text-align: center; 
}
.ui-datepicker .ui-datepicker-title select {
	outline: none;
	padding: 3px;
	background: #2e2e2e;
	border: solid 1px #2e2e2e;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
}
.ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}
.ui-datepicker select.ui-datepicker-month, 
.ui-datepicker select.ui-datepicker-year {
	width: auto;
}
.ui-datepicker table {
	width: 100%;
	font-size: 16px;
	border: none 0;
	margin: 0;
	border-collapse: collapse;
}
.ui-datepicker th {
	width: 40px;
	padding: 3px 0;
	text-align: center;
	font-weight: bold;
	border: 0;
	color: #666666;
	text-shadow: 1px 1px 1px #fff;
	border-bottom: solid 1px #bbbbbb;
}
.ui-datepicker td {
	text-align: center;
	border-right: solid 1px #bbbbbb;
	border-bottom: solid 1px #bbbbbb;
	padding: 0;
	background: #dedede;
	background: -moz-linear-gradient(top,  #ececec 0%, #dedede 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ececec), color-stop(100%,#dedede));
	background: -webkit-linear-gradient(top,  #ececec 0%,#dedede 100%);
	background: -o-linear-gradient(top,  #ececec 0%,#dedede 100%);
	background: -ms-linear-gradient(top,  #ececec 0%,#dedede 100%);
	background: linear-gradient(to bottom,  #ececec 0%,#dedede 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ececec', endColorstr='#dedede',GradientType=0 );
}
.ui-datepicker td.ui-datepicker-week-end {
	color: red;
}
.ui-datepicker td.ui-datepicker-unselectable {
	background: #fff;
}
.ui-datepicker td span,
.ui-datepicker td a {
	width: 100%;
	display: block;
	padding: 3px 0;
	text-align: center;
	text-decoration: none;
	color: #666666;
	text-shadow: 1px 1px 0px #fff;
}
.ui-datepicker td.ui-datepicker-week-end span,
.ui-datepicker td.ui-datepicker-week-end a {
	color: #bc0000;
	text-shadow: 1px 1px 0px #fff;
}
.ui-datepicker td.ui-datepicker-today span,
.ui-datepicker td.ui-datepicker-today a {
	color: #000;
	text-shadow: 1px 1px 0px #fff;
	font-weight: bold;
}

.ui-datepicker td span.ui-state-hover,
.ui-datepicker td a.ui-state-hover {
	background: #a9cbd8;
}

.ui-datepicker td.ui-datepicker-current-day span,
.ui-datepicker td.ui-datepicker-current-day a {
	-webkit-box-shadow: inset 0px 0px 10px #54838d;
	box-shadow: inset 0px 0px 10px #54838d;
	background: #6dafbf;
	color: #fff;
	text-shadow: 1px 1px 0px #54838d;
}




.ui-datepicker .ui-datepicker-buttonpane { 
	background-image: none;
	margin: 0; 
	padding: 5px; 
	border-left: 0; 
	border-right: 0; 
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button { 
	float: right; 
	margin-bottom: 5px; 
	cursor: pointer; 
	padding: 5px; 
	width:auto; 
	overflow:visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { 
	float:left;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current:after {
	clear: both;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi { width:auto; }
.ui-datepicker-multi .ui-datepicker-group { float:left; }
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 200px; /*must have*/
    height: 200px; /*must have*/
}