/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: center;
	color: #505050;
	background-color: #FFDD66;
	border: 1px solid #AAAAAA;
}

/* a table cell that holds a date number (either blank or 1-31) */
.dpTable td { width: 16px; height: 15px; border: 1px solid #FFDD66; }

/* 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) */
.dpTable td.dpTDHover {
	background-color: #FFFFFF;
	cursor: pointer;
	color: #006600;
	border-color: #006600;
}

/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR td {
	color: #333333;
	font-weight: bold;
}

/* a table cell that holds a highlighted day */
.dpTable td.selected { background-color: #FFF; border: 1px solid #006600; font-weight: bold; }
.dpTable td.today { font-weight: bold; }

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

/* the forward/backward buttons at the top */
.dpButton {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	background: none;
	border: none;
	font-weight: bold;
	padding: 0px;
	width: 16px;
	height: 15px;
	cursor: pointer;
}

/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
	background: #CCFFCC;
	border-width: 1px;
	margin: 0px;
	padding: 2px 3px;
}