/* the div that holds the date picker calendar */
.dpDiv {
}

/* the table (within the div) that holds the date picker calendar */
.dpTable {
	border: 1px solid #000;
	background-color: #FFF;
	position: absolute;
	margin-top: 2px;
	margin-left: 0px;
	width: 150px;
}
.dpTable td {
	font-family: Tahoma, Arial, sans-serif;
	font-size: 9px;
	text-align: center;
	padding-top: 2px;
	padding-bottom: 2px;
}

/* 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-color: #09F;
}

/* 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 {
	background-color: #09F;
}

/* a table cell that holds a date number (either blank or 1-31) */
.dpTD {
	color: #555;
}

.dpTDavail {
	color: #555;
	background-color: #0C0;
}

/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	color: #FFF;
	background-color: #C00;
}

/* 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 {
	color: #FFF;
	background-color: #555;
	cursor: pointer;
}

/* 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-color: #ccdae4;
	color: #2d556f;
	width: 16px;
}

/* additional style information for the text that indicates the month and year */
.dpTitleText {
	color: #FFF;
	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 {
}

/* the forward/backward buttons at the top */
.dpButton {
	color: #FFF;
	font-weight: bold;
	padding: 0px;
	font-family: Tahoma, Arial, sans-serif;
	font-size: 9px;
	background-color: #09F;
	width: 100%;
	border: 0px solid #FFF;
}

/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	color: #FFF;
	font-weight: bold;
	padding: 0px;
	font-family: Tahoma, Arial, sans-serif;
	font-size: 9px;
	background-color: #09F;
	width: 100%;
	border: 0px solid #FFF;
}
