/* Calendar */
/* the div that holds the date picker calendar */
.dpDiv {
	}

.dpCalendar {
	font-family: 'Trebuchet MS', Tahoma, Verdana, Arial, sans-serif;
	font-size: 0.9em;
	background-color: #FFFFFF;
	color: #333;
	border: 1px solid #DDD;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	padding: 0.2em;
	width: 14em;
}


.dpTitle  {
	background-color: #2666AC;
	border: 1px solid #234E7F;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	color: #FFF;
	padding: 0.2em;
	text-align: center;
	}


/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-size: 12px;
	text-align: center;
	width: 100%;
	}


/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
	}


/* 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: #F9F9F9;
	border: 1px solid #FFFFF4;
	}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-color: #CCCCCC;
	border: 1px solid #AAAAAA;
	}


/* 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: #FFFFAA;
	border: 1px solid #888888;
	cursor: pointer;
	color: #2666AC;
	}


/* the table cell that holds the name of the month and the year */
.dpTitleTD {
	}


/* 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: #FFFFFF;
	color: gray;
	}


/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlight {
	color: #2666AC;
	font-weight: bold;
}

.dpTodayHighlight {
	color: #408DE5;
	font-weight: bold;
}

.dpPrev-month {
	float: left;
}

.dpNext-month {
	float: right;
}

.dpButton {
	text-decoration: none;
	padding: 0 0.4em;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
}

.dpButton:hover {
	background-color: #408DE5;
	color: #FFF500;
}

