

/* the div that holds the date picker calendar */
.ppDiv {
	}


/* the table (within the div) that holds the date picker calendar */
.ppTable {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: left;
	color: #505050;
	background-color: #fafafa;
	border:#ffffff 3px solid;
	padding:10px;
	}


/* a table row that holds date numbers (either blank or 1-31) */
.ppTR {
	}

/* a table cell that holds a date number (either blank or 1-31) */
.ppTD {
	}


/* 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) */
.ppTDHover {
	background-color: #aca998;
	border: 1px solid #888888;
	cursor: pointer; cursor:hand;
	color: white;
	}

