/******************************************************************************
 Date Picker Styles
 version 1.5
 December 4, 2005
 Julian Robichaux -- http://www.nsftools.com
 modified by Jeff Chew
 *****************************************************************************/

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


/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Arial, Verdana, Tahoma, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	color: #8898a9;
	background-color: #ffffff;
	border: 1px solid #007a22;
    height: 210px;
    }


/* 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 #b5dbb6;
    font-weight: normal;
    color: #669900;
    }

/* table cell for the blank day cells */
.dpTDnoclick {
    cursor: default;
}



/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-color: #b5dbb6;
	border: 1px solid #007a22;
    color: #669900;
    }


/* 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: #b9fca1;
	border: 1px solid #007a22;
	cursor: pointer;
    font-weight: bold;
    color: #007a22;
	}


/* the table cell that holds the name of the month and the year */
.dpTitleTD {
    height: 25px;
    }


/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
    height: 20px;
    }


/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD {
    height: 25px;
    vertical-align: bottom;
    }


/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
	background-color: #b5dbb6;
	border: 1px solid #007a22;
    font-weight: bold;
    color: #007a22;
    width: 30px;
    height: 25px;
    }


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


/* the forward/backward buttons at the top */
.dpButton {
	font-family: Arial, Verdana, Tahoma, Helvetica, sans-serif;
	font-size: 12px;
	color: #669900;
	background: #f4f3f4;
	font-weight: bold;
	padding: 0px;
    }


/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	font-family: Arial, Verdana, Tahoma, Helvetica, sans-serif;
	font-size: 11px;
	color: #669900;
	background: #f4f3f4;
	font-weight: bold;
	}
