
 
/* the div that holds the date picker calendar */
.dpDiv {
	
	}
 
 
/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	text-align: center;
	color: #000;
	background-color: #FFF;
	border: 1px solid #AAA;
	width: 200px;
	padding: 5px;
	}
 
 
/* 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 {
	/*background: url('../images/calendar-month-bg.png') left center repeat-x;*/
	height: 30px;
	}
 
 
/* 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-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
	padding: 3px;
	padding-bottom:0;
	background-color:#FFF;
	text-align: center;
	}
 
 
/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	border-bottom: 1px solid #d3d3d3;
	border-left: 1px solid #d3d3d3;
	padding: 3px;
	padding-bottom:0;
	background-color:#fff3d4;
	cursor: pointer;
	text-align: center;
	}
 
 
/* 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 {
	border-bottom: 1px solid #d3d3d3;
	border-left: 1px solid #d3d3d3;
	padding: 3px;
	padding-bottom:0;
	cursor: pointer;
	text-align: center;
	}
 
 
/* the table cell that holds the name of the month and the year */
.dpTitleTD {
	text-align: center;
	padding-top: 6px;
	}
 
 
/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
	padding-left: 6px;
	}
 
 
/* 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-color: #FFF;
	border: 0;
	color: #000;
	font-weight: bold;
	text-align: center;
	}
 
 
/* additional style information for the text that indicates the month and year */
.dpTitleText {
	font-size: 10pt;
	color: #000;
	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: #000;
	font-weight: bold;
	}
 
 
/* the forward/backward buttons at the top */
.dpButton {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: gray;
	border:0;
	background: url('../images/calendar-back.png') center center no-repeat;
	font-weight: bold;
	padding: 0px 4px;
	
	}
.right {
	padding-right:3px;
	background: url('../images/calendar-next.png') center center no-repeat;
}
 
 
/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: gray;
	background: #d8e8ff;
	font-weight: bold;
	}