@charset "utf-8";
/* CSS Document */

/* the div that holds the selection box */
.ddDiv {
}


/* the table (within the div) that holds the selection box */
.ddTable {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-align: center;
	color: #808767;
	background-color: #32461a;
	border: 1px solid #39501e;
	}


/* a table row that holds the selection options*/
.ddTR {
	}

/* a table cell that holds the selection options */
.ddTD {
	border: 1px solid #53662c;
	}

/* 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) */
.ddTDHover {
	border: 1px solid #53662c;
	background-color: #808767;
	cursor: pointer;
	color: #32461a;
	}

/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.ddHighlightTD {
	background-color: #53662c;
	font-weight: bold;
	border: 1px solid #53662c;
	}
