/* the div that holds the date picker calendar */
.dpDiv 
{
	padding: 10px;
	margin: 0px;
	background-color: #333;
	border: 1px solid #000;
	}

/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-size: 11px;
	text-align: center;
	color: #b3b3b3;
	width: 206px;
	background-color: #333;
	margin: 0px; padding: 0px;
	}

.dpTable td { text-align: center; }

/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR td {
	padding: 3px;
	text-align: center;
	vertical-align: middle;
	}


/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR td {
	color: #b3b3b3;
	background-color: #333;
	padding: 3px;
	text-align: center;
		border-bottom: 1px solid #FC0;
	border-top: 1px solid #FC0;
	}

.dpDayTR {
	border-left: 1px solid #333;
	border-right: 1px solid #333;
	}


/* a table cell that holds a date number (either blank or 1-31) */
.dpTD, .dpDayHighlightTD {
		/* border: 1px solid #FC0; */
	padding: 3px;
	text-align: center;
	}

/* a table cell that holds a highlighted day (usually either todays date or the current date field value) */
.dpDayHighlightTD {
	background-color: #eee;
	font-weight: bold;
	background-color: #f5f5f5;
	}

/* 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: #ddd;
	cursor: pointer;
	color: #000;
	
	/* border: 1px solid #FC0; */
	padding: 3px;
	text-align: center;
}


/* the table cell that holds the name of the month and the year */
.dpTitleTD 
{
	text-transform: uppercase;
	
	}


/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
	padding: 0;
	}


/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD {
	text-align: center;
	}


/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
	background-color: #ddd;
	/* border: 1px solid #FC0; */
	color: #b3b3b3;
	}


/* additional style information for the text that indicates the month and year */
.dpTitleText {
	font-size: 11px;
	color: #b3b3b3;
	font-weight: bold;
	}


/* additional style information for the cell that holds a highlighted day (usually either todays date or the current date field value) */ 
.dpDayHighlight {
	color: #000;
	font-weight: bold;
	}


/* the forward/backward buttons at the top */
.dpButton, .dpTodayButton
{
	padding: 1px; border: 1px outset; background-color: #E0DFE3; margin: 0px;
	color: #000; cursor: pointer; font-weight: bold; overflow: visible; text-align: center;
	font-size: 9px; 
	text-transform: capitalize;
	
	BORDER: #ddd 1px solid; FONT-WEIGHT: bold; COLOR: black;
	
	}

/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	margin: 5px; padding: 1px 10px;
}

.dpButton:hover, .dpTodayButton:hover { background-color: #ddd; }

