<style>
body {
	font-family: Arial;
  font-size: 10px;
	}

/* the div that holds the date picker calendar */
.dpDiv {
	}


/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Arial;
  font-size: 10px;
  	text-align: center;
	 background: #cfc8b6;
	background-color: #cfc8b6;
	border: 1px #575142 solid;
	}


/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
	font-family: Arial;
	  font-size: 10px;
	}


/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
  font-size: 12px;
 font-weight: bold;
 background: #cfc8b6;
 	font-family: Arial;
 border-bottom:1px solid #575142;
 padding: 2px;
	}


/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR {
	font-family: Arial;
	  font-size: 10px;
	}


/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR {
	font-family: Arial;
	  font-size: 10px; }
	  
a:link {
	color: #624117;
		text-decoration: underline;
}
a:visited {
	color: #624117;
		text-decoration: underline;
}
a:hover {
	color: #624117;
		text-decoration: none;
}
a:active {
	color: #624117;
		text-decoration: underline;
}


/* a table cell that holds a date number (either blank or 1-31) */
.dpTD {

 background: #cfc8b6;
 border:1px solid #a09989;
 	font-family: Arial;
	  font-size: 10px;

	}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-color: #e9e6e0;
		font-family: Arial;
		  font-size: 10px;
	border: 1px solid #AAAAAA;
	}


/* the date number table cell that the mouse pointer is currently over (you can use contrasting colors to make it apparent which cell is being hovered over) */
.dpTDHover {
  font-size: 10px;
  font-weight: bold;
  	font-family: Arial;
 background: #e9e6e0;
 padding: 2px;
	}


/* the table cell that holds the name of the month and the year */
.dpTitleTD {
	font-family: Arial;
	  font-size: 12px;
	}


/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
	font-family: Arial;
	  font-size: 10px;
	}


/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD {
	font-family: Arial;
	  font-size: 10px;
	}


/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
	font-family: Arial;
	  font-size: 10px;

	}


/* additional style information for the text that indicates the month and year */
.dpTitleText {
  font-size: 12px;
	color: #000000;
		font-family: Arial;
	font-weight: bold;
	}


/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.dpDayHighlight {
	color: 4060ff;
	font-weight: bold;
		font-family: Arial;
	}


</style>

