/* calendar button */
#body .calendar {
	height: 16px;
	width: 16px;
	float:left;
	margin: 0 0 0 0;
	background: transparent url(../pics/pi_calendar.gif) center center no-repeat;
	border: none;
	cursor: pointer;
}

/* the div that holds the date picker calendar */
.dpDiv {
	font-size: 0.8em;
}

/* the table (within the div) that holds the date picker calendar */
.dpTable {
	text-align: center;
	background-color: #F3F3F3;
	border: 1px solid #A5ACB2;
	font: 9pt/1.5em Arial,Helvetica,Verdana,sans-serif;
}

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

/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
	height: 15px;
}

/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR {
	height: 15px;
}

/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR {
	padding-top: 5px;
	height: 20px;
}

/* a table cell that holds a date number (either blank or 1-31) */
.dpTD {
	border: 1px solid #E3E3E3;
	width: 30px;
}

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

/* 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: #3D3D3B;
	border: 1px solid #3D3D3B;
	background: #A5ACB2;
	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 {
	height: 15px;
}

/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
	background-color: #666;
	color: white;
	border: 1px solid #3D3D3B;
}

/* additional style information for the text that indicates the month and year */
.dpTitleText {
	color: #3D3D3B;
	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: #FFF;
	font-weight: bold;
}

/* the forward/backward buttons at the top */
.dpButton {
	color: #FFF;
	/*background: #666;*/
	background-color: #a63319;
	font-weight: bold;
	padding: 0px;
	border: 1px solid #3D3D3B;
	font-size: 1em;
	cursor: pointer;
}

/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	color: #FFF;
	/*background: #666;*/
	background-color: #a63319;
	padding: 2px;
	margin: 0 2px;
	border: 1px solid #3D3D3B;
	font-size: 1em;
	cursor: pointer;
	font-weight: bold;
}