

/* the div that holds the date picker calendar */
.dpDiv 
{
	padding: 1px 10px 0px 10px;
	background:transparent url(/Products/Styles/Images/DatetimePickerBackground.gif) no-repeat top left;
	overflow:hidden;
	width:266px;
}


/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	color: #505050;
	width: 246px;
	height: 244px;
	margin-bottom:3px;
	text-align: center;
	vertical-align: middle;
	background-color: #e1e1e1;
}


/* 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 buttons */
.dpTitleTR { 	}


/* 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" buttons */
.dpTodayButtonTR {	}


/* a table cell that holds a date number (either blank or 1-31) */
.dpTD {
	border: 0px solid #ff0000;
	background-color: #c1c1c1;
	}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-color: #999999;
	border: 0px 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 {
	background-color: #999999;
	border: 0px solid #888888;
	cursor: pointer;
	color: white;
	}


/* the table cell that holds the name of the month and the year */
.dpTitleTD {
	}


/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
	}


/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD {
	}


/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
	
	border: 0px solid #AAAAAA;
	color: #000000;
	}


/* 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: #ffffff;
	font-weight: normal;
	}


/* the forward/backward buttons at the top */
.dpButtonLeft
{
	background-image: url(/Products/Styles/Images/left.gif);
	background-repeat: no-repeat;
	background-color: Transparent;
	margin-right: 10px;
	width: 16px;
	height:14px;
	border: none;
	}

.dpButtonRight
{
	background-image: url(/Products/Styles/Images/right.gif);
	background-repeat: no-repeat;
	background-color: Transparent;
	margin-left: 10px;
	width: 16px;
	height:14px;
	border: none;
	}


/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: white;
	background: #e1e1e1;
	font-weight: normal;
	background-image: url(/Products/Styles/Images/DatetimePickerIdagButton.gif);
	width: 60px;
	height: 28px;
	border: none;
	}
	
	/* "Close" buttons at the bottom */
.dpCloseButton{
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
	font-weight: normal;
	margin-left: 20px;
	}