/* CALENDAR DATE PICKER POPUP CSS */

/* the table that holds the date picker calendar */
.dpTable {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	width:200px;
	color: #505050;
	background-color: #ece9d8;
	border: 1px solid #AAAAAA;
	}


/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
	background-color: #CCCCCC;
	border: 1px solid #AAAAAA;
	color: white;
	}


/* additional style information for the text that indicates the selected month and year above part */
.dpTitleText {
	font-size: 12px;
	color: gray;
	font-weight: bold;
	}

/*navigation buttons style*/
.navbutton{
	font: normal 11px Verdana;
	text-align:center;
	color: white;
	font-weight: bold;
	background-color: #8fb8d6;
	border-width: 1px;
	border-style: solid;
	border-color: #9097A2 #283043 #283043 #9097A2;
	cursor: pointer;
}
.navbuttonhover{
	font: normal 11px Verdana;
	text-align:center;
	color: white;
	font-weight: bold;
	text-decoration: underline;
	border-width: 1px;
	border-style: solid;
	border-color: #283043 #A6AFBB #A6AFBB #283043;
	background-color: #9097A2;
	cursor: pointer;
}

/*prev and next year navigation buttons style*/
.yearbutton{
	cursor: pointer;
}
.yearbuttonhover{
	text-decoration: underline;
	cursor: pointer;
}

/*for normal day value*/
.day{
	border: 1px solid #ece9d8;
	cursor: pointer;
}
.dayhover{
	background-color: #aca998;
	border: 1px solid #888888;
	cursor: pointer;
	color: red;
}

/*for today date value*/
.today{
	font: normal 11px Verdana;
	background-color: #CCCCCC;
	color: red;
	text-decoration: none;
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	border-color: #AAAAAA;
}
.todayhover{
	text-decoration: underline;
	border-color: #888888;
	border-width: 1px;
	border-style: solid;
	background-color: #aca998;
	cursor: pointer;
	color: red;
}


/*for the selected date value*/
.current{
	font: normal 11px Verdana;
	font-weight: bold;
	background-color: #9097A2;
	color: white;
	text-decoration: none;
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	border-color: #283043 #A6AFBB #A6AFBB #283043;
}
.currenthover{
	font: normal 11px Verdana;
	font-weight: bold;
	background-color:#CCCCCC;
	color: black;
	text-decoration: none;
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	border-color: #283043 #A6AFBB #A6AFBB #283043;
	text-decoration: underline;
}

/*for weekend day value*/
.weekend{
	border: 1px solid #ece9d8;
}
.weekendhover{
	background-color: #aca998;
	border: 1px solid #888888;
	cursor: pointer;
	color: red;
}


