/* the div that holds the date picker calendar */
.dpDiv {}
/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: verdana;
	font-size: 12px;
	text-align: center;
	color: black;
	background-color: white;
	border: 1px solid #531a3a;
}

/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
   /*background:#531a3a;*/
   background:#AD824D;
   cursor:default;
}
/* the table cell that holds the name of the month and the year */
.dpTitleTD {
   color:white;
}
/* additional style information for the text that indicates the month and year */
.dpTitleText {
	font-size: 12px;
	font-weight: bold;
}
/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {}
/* the forward/backward buttons at the top */
.dpButton {
	font-family: Arial, sans-serif;
	font-size: 15px;
   line-height:16px;
	font-weight: bold;
	padding: 0px;
   border:none;
   background:transparent;
   color:white;
   cursor:pointer;
}

/* 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 {
   /*color: #531a3a;*/
   color:#002C52;
   font-weight:bold;
   border-bottom:1px solid #ecbdd6;
   padding-top:4px;
   padding-bottom:4px;
   cursor:default;
}

/* 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 white;
   padding:2px 3px;
   color:#002C52;
}
/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
  /* background:#70445d;*/
  background:#AD824D;
   color:white;
   color:white;
   padding:2px 3px;
   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:#fddb77;
   color:#531a3a;
	cursor: pointer;
   padding:2px 3px;
}
/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.dpDayHighlight {}

/* 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 {}
/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
/*	font-family: Arial, sans-serif;
	font-size: 11px;
   margin:2px 3px;*/
   color:#ffffff;
	background-color:#03447C;
	font-size:8pt;
	border:1px solid #03447C;
}