/* 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: 220px;
	padding: 10px;
	cursor: default;
	text-shadow:none;
	text-transform: uppercase;
	/*font-family: sans-serif;*/
	font-size: 10px;
	font-weight:bold;
	background: #808080;

	/*-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	-webkit-box-shadow: 0px 1px 1px rgba(255,255,255, .1), inset 0px 1px 1px rgb(0,0,0);
	-moz-box-shadow: 0px 1px 1px rgba(255,255,255, .1), inset 0px 1px 1px rgb(0,0,0);
	box-shadow: 0px 1px 1px rgba(255,255,255, .1), inset 0px 1px 1px rgb(0,0,0);*/
}

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

.ui-datepicker-title {
	text-align: center;
	font-size:12px;
}

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

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

	background: #a5cd4e;
	background: -moz-linear-gradient(top, #a5cd4e 0%, #6b8f1a 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a5cd4e), color-stop(100%,#6b8f1a));
	background: -webkit-linear-gradient(top, #a5cd4e 0%,#6b8f1a 100%);
	background: -o-linear-gradient(top, #a5cd4e 0%,#6b8f1a 100%);
	background: -ms-linear-gradient(top, #a5cd4e 0%,#6b8f1a 100%);
	background: linear-gradient(top, #a5cd4e 0%,#6b8f1a 100%);

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

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

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

.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: 0; 
	height: 0;
}

.ui-datepicker-prev span {
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent; 
	border-right:20px solid #65756B; 
}

.ui-datepicker-next span {
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 20px solid #65756B;
}

.ui-datepicker-prev.ui-state-hover span { border-right-color:#7FA38D  }
.ui-datepicker-next.ui-state-hover span { border-left-color:#7FA38D  }


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

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

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

	text-decoration: none;
	color: #D0D0D0;
	
	border: 1px solid transparent;
}

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

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

.ui-datepicker-calendar td.highlight span,
.ui-datepicker-calendar td.highlight a {
	background: #000000;
	color: #D0D0D0;
	border: 1px solid #808080;
	cursor:default;
}
