#calendar{margin-top: 15px; margin-bottom: 10px;}
/* Reset */
.ui-datepicker,
.ui-datepicker table,
.ui-datepicker tr,
.ui-datepicker td,
.ui-datepicker th {
	border: none;
	border-spacing: 0;
	margin-left: auto;
    margin-right: auto;
}

/* Calendar Wrapper */
.ui-datepicker {
	display: none;
	width: 100%;
	padding: 0px;
	cursor: default;
	text-transform: uppercase;
	font-family: Tahoma;
	font-size: 11px;
	background: #263238;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
    padding-bottom: 15px;
}

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

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

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

.ui-datepicker-month:before {
	display: block;
	position: absolute;
	top: 5px;
	right: 0;
	width: 5px;
	height: 5px;
	content: '';
	background: #ff9630;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

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

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

.ui-datepicker-prev {
	left: 10px;
	padding-left: 0;
	top: 5px;
}

.ui-datepicker-next {
	right: 10px;
	padding-right: 0;
	top: 5px;
}

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

	background-image: url(../images/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{width:100%;}
.ui-datepicker-calendar th {
	padding-top: 15px;
	padding-bottom: 10px;
	text-align: center;
	font-weight: normal;
	color: #a8a8a8;
	font-weight: bold;
}

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

.ui-datepicker-calendar .ui-state-default {
	display: block;
	width:26px;
	outline: none;
	text-decoration: none;
	color: #a8a8a8;
	border: 1px solid transparent;
	font-weight: bold;
}

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

/* Other Months Days*/
.ui-datepicker-other-month .ui-state-default { color: #565656; }