/* the div that holds the date picker calendar */
.dpDiv {
	}


/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: center;
	color: #000000;
	background-color: #e6f3e1;
	border: 1px solid #666666;
	width: auto;
	border-collapse: collapse;
	}
.dpTable td {
	padding-top: 2px;
	padding-bottom: 2px;
	}


/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR 
{
	height: 23px;
	}

.dpTitleTR td {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	}

.dpTitleTR td a:hover {
	text-decoration: none;
	}


/* additional style information for the text that indicates the month and year */
.dpTitleText {
	font-size: 11px;
	font-weight: bold;
	}

/* the table cell that holds the name of the month and the year */
.dpTitleTD 
{
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #222222;
	}

/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
	}

/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR 
{
	
	}

/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
	background-color: #ccebc1;
	border: 1px solid #ccebc1;
	width: 35px;
	border: none;
	}


/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
	}


/* a table cell that holds a date number (either blank or 1-31) */
.dpTD {
	border: 1px solid #808080;
	}
.dpTDOther {
	border: 1px solid #808080;
	background-color: #a4adaa;
	}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-color: #98d48d;
	border: 1px solid #808080;
	}

/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlight {
	font-weight: bold;
	}


/* 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: #98d48d;
	border: 1px solid #888888;
	cursor: pointer;
	}


/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR {
	}


/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD {
	text-align: right;
	padding-right: 6px;
	height: 26px;
	}

a.button
{
	color: #25215e;
	text-decoration: underline;
}

a.button:hover
{
	text-decoration: none;
}
