<script>
body {
	font:12px Arial;
	width:100px;
	color:#ABABAB;
	}

/* the table (within the div) that holds the date picker calendar */
.dpTable {
	/*font:12px Arial;
	text-align: center;
	z-index:1;
	position:absolute;
	border-collapse:collapse;*/
	/*background:#FFFFFF;*/
	/*background:#333333;
	border:1px solid;
	width:100px;*/
	
	/*background: #C4D3EA;*/
	/*background: #FFF799; yellow*/
	/*background: #6487AE; blue*/
	
	background: #C4D3EA; 
	font:10px Arial;
	color:#ABABAB;
	text-align: center;
	border:1px solid #6487AE;
	cursor: default;
	}


/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
	width:18px;
	height:18px;
	background:#C4D3EA;
	border:1px solid #6487AE;
	font:12px Arial;
	color: black;
	}


/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
	background: #FFFFFF;
	border:1px solid #6487AE;
	font:12px Arial;
	}


/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR {
	/*background:#333333;
	font:12px Arial;
	width:18px;
	height:18px;*/
	border: 1px solid #AAAAAA;
	color: Black;
	background-color: #CCCCCC;
	font:12px Arial;
	width:20px;
	height:20px;
	}

/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
	border: 1px solid #AAAAAA;
	color: Black;
	background-color: #CCCCCC;
	font:12px Arial;
	width:20px;
	height:20px;

}
	
/* a table cell that holds a date number (either blank or 1-31) */
.dpTD {
	width:18px;
	height:18px;
	background:#C4D3EA;
	border:1px solid #6487AE;
	font:12px Arial;
	color: black;
	}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background:#FFF799;
	border: 1px solid #6487AE;
	font: bold 10px Arial;
	color: #333333;
	text-align: center;
	cursor: pointer;
	font:12px Arial;
	}


/* 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 {
	/*background-color: #aca998;*/
	background-color: #FFCC66; 
	border: 1px solid #888888;
	cursor: pointer;
	color: black;
	}


/* additional style information for the text that indicates the month and year */
.dpTitleText {
	font-size: 12px;
	color: black;
	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;
	}


/* the forward/backward buttons at the top */
.dpButton {
	font-family: Arial;
	font-size: 12px;
	color: black;
	background: #6487AE;
	font-weight: bold;
	width:22px;
	}


/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	font-family: Arial;
	font-size: 12px;
	color: black;
	background: #6487AE;
	font-weight: bold;
	}
</script>
