
/*CSS FOR CALENDER*/
#dpCalendar {
	display:inline;			/* Important, do not change */
	position: absolute;		/* Important, do not change */
	background-color: #F7E8BD;
	color: black;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	width: 150px;
	z-index:9999
}
/* The table of the Calendar */
#dpCalendar table {
	background:#e1e4e5;
	color: #3f2a19;
	font-size: 10px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	width: 100%;
	-moz-border-radius: 2px;-webkit-border-radius: 2px;
	border:1px solid #3f2a19;
}


#dpCalendar table tr td{
	background-color: #FFFFFF;
	padding:6px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	width: 100%;
	-moz-border-radius: 2px;-webkit-border-radius: 2px;
	border:1px solid #3f2a19;
	font-size: 11px;
	font-family:arial;
}

#dpCalendar table tr td:hover{
	background-color: #e9e9e9;

}
/* The Next/Previous buttons */
#dpCalendar .cellButton {
	background-color: #533b27;
	color: #ffffff;
	font-weight:bold;
	text-align:center;
}

#dpCalendar .cellButton A{
	color: #ffffff;
	background-color: #533b27;
	font-weight:bold;
}

#dpCalendar .cellButton A:Hover{
	color: #FFFFFF; 	
	background-color: #674d38;
}
#dpCalendar .cellButton:Hover{
	color: #FFFFFF; 	
	background-color: #674d38;
}
/* The Month/Year title cell */
#dpCalendar .cellMonth {
	background-color: #533b27;
	color: #ffffff;
	text-align: center;
	font-weight:bold;
}

#dpCalendar .cellMonth:hover {background-color: #674d38;}
/* Any regular day of the month cell */
#dpCalendar .cellDay {
	background-color: #FFFFFF;
	color: #343434;
	text-align: center;
	padding:3px;
}
#dpCalendar .cellDay A{
	color: #343434;
	font-weight:bold;
	text-decoration:none;
}
#dpCalendar .cellDay A:hover{
	color: #3c3333;
	font-weight:bold;
	text-decoration:none;
}
/* The day of the month cell that is selected */
#dpCalendar .cellSelected {
	background-color: #533b27;
	color: #ffffff;
	text-align: center;
}
/* The day of the month cell that is Today */
#dpCalendar .cellToday {
	background-color: #533b27;
	color: #ffffff;
	text-align: center;
}

#dpCalendar .cellToday A{
	border: 0px solid red;
	color: #ffffff;
	font-weight:bold;
}

#dpCalendar .cellToday A:hover {
	color: #ffffff;
	font-weight:bold;
}
/* Any cell in a month that is unused (ie: Not a Day in that month) */
#dpCalendar .unused {
	color: #FFFFFF;
}

#dpCalendar .cellCancel {
	color: #00518a;
	text-align: center;
}

#dpCalendar .cellCancel A{
	color: #00518a; 
}

/* The clickable text inside the calendar */
#dpCalendar a {
	text-decoration: none;
	background-color: transparent;
	color: #ffffff;
	display:block
}
.cal_icon
{
	cursor:pointer;
}