/* the div that holds the date picker calendar */
.dpDiv {
	}


/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
	text-align: center;
	color: #000000;
	background: #B562AE;
	width: 180px;
	}

.dpTable td{
	padding: 2px 0px;
	 font-size: 10px;
	 margin: 0px;
}
/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
		background-color: #67727F;

	}

.dpTRHover {
		background-color: #000000;

	}


/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
		background-color:#B562AE;
	
	}




/* 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 {
	background-color:#FFFFFF;
	border: 0px solid #ece9d8;
	}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */

.dpDayHighlightTD {
	background-color: #ffe7f9;
	border: 0px solid #d2d2d2;
	}

.dpDayHighlightTR {
	background-color: #ffe7f9;
	border: 0px solid #d2d2d2;
	}



/* 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: #67727F;
	border: 0px solid #888888;
	cursor: pointer;
	color: #FFFFFF;
	}


/* 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 */
.dpButtonTDR {

		
		/*background-color:#B562AE;*/
		background: url(../images/arrowRight.gif) no-repeat
	}

.dpButtonTDL {

		
		/*background-color:#B562AE;*/
		background: url(../images/arrowLeft.gif) no-repeat
	}


/* 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 {
	
	font-size:11px;
	color: #FFFFFF;
	}


/* additional style information for the text that indicates the month and year */
.dpTitleText {
	font-size: 12px;
	color: #FFFFFF;
	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: 4060ff;
	font-weight: bold;
	}


/* the forward/backward buttons at the top */
.dpButton {
	/*font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: gray;
	background: #d8e8ff;
	font-weight: bold;
	padding: 0px;*/
	font: bold 12px Verdana, Arial, Helvetica, sans-serif;
	/*color: #020202;*/
	
	/*background: #ccc; */
	height: 18px;
	line-height: 14px;
	text-align: center;
	
	border: 0px solid #252525;
	padding: 0px 2px 1px;
	margin: 0;
	}


/* 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;*/
	
	font: bold 10px Verdana, Arial, Helvetica, sans-serif;
	color: #020202;
	
	background: #ccc; 
	height: 18px;
	line-height: 14px;
	text-align: center;
	
	border: 0px solid #252525;
	padding: 0px 2px 1px;
	margin: 0;
	}


