/***********************
*
* Helmi Date Picker styles
*
************************/

.date_selector, .date_selector * {
	width: auto;
	height: auto;
	border: none;
	background: none;
	margin: 0;
	padding: 0;
	text-align: left;
	text-decoration: none;
	font-size:10px;
}
 
.date_selector {
	background-color: #BEDF9C;
	border: 2px solid #009900;
	padding: 5px;
	margin: -1px 0 0 0;
}

.date_selector .nav {
	width: 17.5em; 
	/* 7 * 2.5em */
}

.date_selector .month_nav, .date_selector .year_nav {
	margin: 0 0 5px 0;
	padding: 0;
	display: block;
	position: relative;
	text-align: center;
}
.date_selector .month_nav {
	float: left;
	width: 125px;
}
  
.date_selector .year_nav {
	float: right;
	width: 35%;
	margin-right: -8px; 
	/* Compensates for cell borders */
}
  
.date_selector .month_name, .date_selector .year_name {
	font-weight: bold;
	line-height: 16px;
	display: block;
	text-align: center;
	width:65%;
	float:left;
}

.date_selector .month_nav a {
	display: block;
/*	position: absolute; */
	top: 5px;
	width: 20px;
	height: 20px;
	line-height: 17px;
	font-weight: bold;
	color: #003C78;
	text-align: center;
	font-size: 10px;
	overflow: hidden;
}

.date_selector .month_nav a:hover, .date_selector .month_nav a:focus {
	background-color: none;
	color: #003C78;
	text-decoration: none;
}
.date_selector .button {
	display: block;
	/*position: absolute;*/
	top: 0;
	width: 18px;
	height: 18px;
	line-height: 17px;
	font-weight: bold;
	color: #003C78;
	text-align: center;
	font-size: 120%;
	overflow: hidden;
	border: 1px solid #F2F2F2;
}
    
.date_selector .button:hover, .date_selector .button.hover {
	background: none;
	color: #003C78;
	cursor: pointer;
	border-color: #ccc;
}
  
.date_selector .prev {
	left: 5px;
	float:left;
}

.date_selector .next {
	right: 5px;
	clear:right;
}

.date_selector table {
	border-spacing: 0;
	border-collapse: collapse;
	margin-left:3px;
	clear:both;
	
}

.date_selector th, .date_selector td {
	font-size:10px;
	width: 16px;
	height: 16px;
	padding: 0;
	text-align: center;
}     

.date_selector td {
	width: 16px;
	height: 16px;
	padding: 0;
	text-align: center;
}

.date_selector td {
	border: 1px solid #009900;
	line-height: 24px;
	text-align: center;
	white-space: nowrap;
	background-color: white;
}

.date_selector td.today {
	background-color: #FFFED9;
}

.date_selector td.unselected_month {
	color: #ccc;
	font-size:10px;
}

.date_selector td a {
	display: block;
	text-decoration: none !important;
	width: 100%;
	height: 100%;
	line-height: 16px;
	color: #003C78;
	text-align: center;
	font-size:10px;
}

.date_selector td.today a {
	background-color: #FFFEB3;
}

.date_selector td.selected a {
	background-color: #D8DFE5;
	font-weight: bold;
}

.date_selector td a:hover {
	background-color: #003C78;
	color: white;
}
.date_selector td.selectable_day:hover, .date_selector td.selectable_day.hover {
	background: #003C78;
	color: white;
}

