/* the div that holds the date picker calendar */
.dpDiv {
	font-size: 8pt;
	width: 165px;
}

/* the table (within the div) that holds the date picker calendar */
.dpTable {
	background: #fff;
	border: #a40 1px solid;
	border-collapse: collapse;
	width: 163px;
}


/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
	height: 20px;
	vertical-align: middle;
}


/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
	background: #a40;
	color: #fff;
	font-family: sans-serif;
	font-size: 10pt;
	font-weight: bold;
}


/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR {
	background: #fec;
	font-size: 8pt;
}


/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR {
	background: #a40;
}


/* a table cell that holds a date number (either blank or 1-31) */
.dpTD {
	font-size: 8pt;
	padding: 0;
	width: 20px;
	text-align: center;
}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background: #fec;
	font-size: 8pt;
	padding: 0;
	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 {
	background: #a40;
	color: #fff;
	cursor: pointer;
	font-size: 8pt;
	font-weight: bold;
	padding: 0;
	text-align: center;
}


/* the table cell that holds the name of the month and the year */
.dpTitleTD {
	text-align: center;
}


/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
	padding: 0;
	text-align: center;
}


/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD {
	text-align: center;
}


/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
	padding: 0;
	text-align: center;
}


/* additional style information for the text that indicates the month and year */
.dpTitleText {
}


/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.dpDayHighlight {
	padding: 0;
	text-align: center;
}


/* the forward/backward buttons at the top */
.dpButton {
	padding: 0;
	margin: 2px 0;
	font-size: 9pt;
	font-weight: bold;
	width: 20px;
}


/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	font-size: 9pt;
}

.calendarButton {
	margin: 2px;
	vertical-align: middle;
}

.age span {
	background: #fff;
	border-color: #888;
	border-style: solid;
	border-width: 0 2px 2px 0;
	display: inline;
	font-size: 8pt;
	font-weight: bold;
	padding: 3px;
	position: absolute;
}