/* the div that holds the date picker calendar */
.dpDiv { width:170px; border:1px solid #0d5e61; }

/* the table (within the div) that holds the date picker calendar */
.dpTable {
	width:182px;
	height:200px;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	color: #505050;
	background-color:#ccc;
	border: 2px solid #fff;
	}


/* 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 #ccc;
	}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
/* 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) */
.dpDayHighlightTD, .dpTDHover {
background-color: #cfe1e1;
border: 1px solid #0d5e61;
}
	
.dpTDHover { 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 { color:#333; }


/* additional style information for the text that indicates the month and year */
.dpTitleText {
font-size: 12px;
color:#0d5e61;
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:4060ff;
font-weight: bold;
}


/* the forward/backward buttons at the top */
.dpButton {
width:13px;
height:14px;
padding:0px;
border:0;
cursor:pointer;
}

.dpButton.forward { background:url(images/forward.gif) top left no-repeat; }
.dpButton.back { background:url(images/back.gif) top left no-repeat; }


/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
font-size: 10px;
color:#0d5e61;
border:1px solid #0d5e61;
background-color: #cfe1e1;
font-weight:bold;
cursor:pointer;
}


#EntreSite .dpDiv { width:182px; background:#fff; }
#EntreSite .dpTable { background: url('../img/bg_infobox.gif') top left repeat-x; }
#EntreSite .dpTitleTR { background: url('../img/bg_infobox_head.gif') top left repeat-x; height:35px; }
#EntreSite .dpTitleText { color:#fff; }
#EntreSite .dpButton.forward { background:url(images/wforward.gif) top left no-repeat; }
#EntreSite .dpButton.back { background:url(images/wback.gif) top left no-repeat; }

#guidenSite .dpDiv { width:182px; border-color:#000; background:#fff; }
#guidenSite .dpTable { background:#fff; }
#guidenSite .dpTitleTR { background:#fcd900; height:35px; }
#guidenSite .dpTitleText { color:#000; }
#guidenSite .dpButton.forward { background:url('../gimg/orange_wforward.gif') top left no-repeat; }
#guidenSite .dpButton.back { background:url('../gimg/orange_wback.gif') top left no-repeat; }
#guidenSite .dpTodayButton {
color:#000;
border:1px solid #000;
background-color: #fcd900;
font-weight:bold;
cursor:pointer;
}
#guidenSite .dpDayHighlightTD, #guidenSite .dpTDHover {
background-color: #fcd900;
border: 1px solid #f8971d;
}

