﻿/* the div that holds the date picker calendar */
.dpDiv {
	}
.dpSelect{
	color:#000000;
	margin:0px;
	width:100px;
	background-color:#ffffff;
	font-size:11px;
	font-family:Tahoma;
	}

/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: center;
	color: #3985e9;
    background-image:url(/images/datepicker_background.jpg);
    float:left;
    filter: alpha(opacity=100); -moz-opacity:.99; opacity:0.9;
	border:1px solid #8a8b8c;
	padding:0px;
	width:340px;
	height:340px
	}


/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {background-color:transparent
	}


/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {padding-top:0px;
	}


/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR {height:20px;
          background-color:transparent;
	}


/* 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 {
	background-color: #ffffff;
	border: 1px solid #3985e9;
	font-size:14px;
	font-family:Helvetica;
	font-weight: bold;
	text-align:center;
	height:43px;	
	}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-image:url(/images/datepicker_yellow_slice.gif);
	background-repeat: repeat-x;
	color:#ffffff;
	border: 1px solid #a9a8a8;
	font-size:14px;
	font-family:Helvetica;
	font-weight: bold;
	text-align:center;
	}


/* 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-image:url(/images/datepicker_grey_slice.gif); 
    background-repeat: repeat-x;
    background-color:#ffffff;
	border: 1px solid #000000;
	cursor: pointer;
	color: #ffffff;
	font-size:14px;
	font-family:Helvetica;
	font-weight: bold;
	text-align:center;
	padding-top:3px;
	}


/* 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 { text-align:center;
	}


/* 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 {
	
	border:1px dashed #f3f9fc;
	color: #3985e9;
	font-weight:bold;
	font-size:14px;
	font-family:Helvetica;
	
	}


/* additional style information for the text that indicates the month and year */
.dpTitleText {
	font-size: 12px;
	color: #3985e9;
	font-weight: bold;
	text-align:center;
	
	}


/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.dpDayHighlight {
	color: #000000;
	font-weight: bold;
	font-size:14px;
	font-family:Arial;
	border:0px solid #000000
	}


/* the forward/backward buttons at the top */
.dpButton {
	font-family:Helvetica;
	font-size: 14px;
	color: #ffffff;
	background-image:url(/images/datepicker_next_slice.gif);
	background-repeat:repeat-x;
	font-weight: bold;
	padding: 2px;
	border:1px solid #3985e9;
	cursor: pointer;
	}
.dpButton:hover {
	font-family:Helvetica;
	font-size: 14px;
	color: #ffffff;
	background-image:url(/images/datepicker_next_slicehover.gif);
	background-repeat:repeat-x;
	font-weight: bold;
	padding: 2px;
	border:1px solid #3985e9;
	cursor: pointer;
	}

/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	font-family:Helvetica;
	font-size: 12px;
	color: #ffffff;
	background-image:url(/images/datepicker_close_slice.gif);
	background-repeat:repeat-x;
	font-weight: normal;
	border:1px solid #3985e9;
	cursor: pointer;
	width:80px;
	margin:2px
	}
	
.dpTodayButton:hover {
	font-family:Helvetica;
	font-size: 12px;
	color: #ffffff;
	background-image:url(/images/datepicker_close_slicehover.gif);
	background-repeat:repeat-x;
	font-weight: normal;
	border:1px solid #3985e9;
	cursor: pointer;
	width:80px;
	}