/* the div that holds the date picker calendar */
.dpDiv {
	}


/* the table (within the div) that holds the date picker calendar */
.dpTable
{
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	background-color: #e6e2d0;
	border: 1px solid #86212e;
	border-collapse: collapse;
	width: 153px;
}


/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
	}


/* the top table row that holds the month, year, and forward/backward */
.dpTitleTR
{
	background-color: #86212e;
	color: #fff;
}


/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR {
	}


/* the bottom table row, that has the "This Month" and "Close" */
.dpTodayButtonTR {
	}


/* a table cell that holds a date number (either blank or 1-31) */
.dpTD 
{
	border: 1px solid #e6e2d0; /* #9c8c42; */
	text-align: center;
}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD 
{
	background-color: #86212e;
	border: 1px solid #8c948c;
	text-align: center;
}


/* the date number table cell that the mouse pointer is currently over */
.dpTDHover 
{
	background-color: #8c948c;
	border: 1px solid #8c212e;
	cursor: pointer;
	color: #fff;
	text-align: center;
}


/* the table cell that holds the name of the month and the year */
.dpTitleTD 
{
	text-align: center;
	vertical-align: middle;
}


/* a table cell that holds one of the forward/backward */
.dpButtonTD 
{
	vertical-align: middle;
}


/* the table cell that holds the "This Month" or "Close" at the bottom */
.dpTodayButtonTD 
{
	text-align: center;
	padding: 0.25em;
}


/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD 
{
	background-color: #8c948c;
	border: 1px solid #86212e;
	color: white;
}


/* additional style information for the text that indicates the month and year */
.dpTitleText 
{
	font-size: 12px;
	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: #fff;
	font-weight: bold;
}


/* the forward/backward buttons at the top */
.dpButton 
{
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	padding: 0px;
}


/* the "This Month" and "Close" at the bottom */
.dpTodayButton 
{
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	margin: 0.25em;
}
