﻿/* the div that holds the date picker calendar */
.dpDiv {
	}


/* the table (within the div) that holds the date picker calendar */
.dpTable {
	color:#333;
	font-family:arial,verdana,tahoma,sans-serif;
	font-size: 1.0em;
	text-align: center;
	padding: 6px;
	/*color: #505050;*/
	background: #f0f0f0;
	border: 4px solid #ddd;
	}


/* 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: 1px solid #ddd;
	padding:2px;
	background: #fff;
	width: 25px;
	}

.TD_blank
{

}

/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-color:#f0f0f0;
	border:1px solid #f0f0f0;
	}


/* 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;
	border: 1px solid #888888;*/
	background-color:#f0f0f0;
	border:1px solid #f0f0f0;
	cursor: pointer;
	color: #000099;
	font-weight:bold;
	padding:2px;
	width: 25px;
	}


/* 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 {
	background: #f0f0f0;
	border: 2px solid #f0f0f0;
	color: #a2ad00;
	font-weight:bold;
	padding: 4px;
	}


/* additional style information for the text that indicates the month and year */
.dpTitleText {
	font-size: 1.0em;
	color: #000099;
	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: #000099;
	font-weight: bold;
	}


/* the forward/backward buttons at the top */
.dpButton {
	font-family: verdana,arial,tahoma,sans-serif;
	font-size: 1.0em;
	color: #666;
	border: 0;
	background: #f0f0f0;
	}
	
.dpButton img {
	border: 0;
	vertical-align: middle;
	}

img.prevClick {
  border: 0;
  margin: 0;
}

/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	font-family: verdana,arial,tahoma,sans-serif;
	font-size: 1.0em;
	font-weight: normal;
	color: #fff;
	background: #a2ad00;
	margin: 8px 4px 2px 4px;
	padding: 3px;
	border: 2px solid #a2ad00;
	}
