/* the div that holds the date picker calendar */
.dpDiv {
   
}
 
 
/* the table (within the div) that holds the date picker calendar */
.dpTable {
    font-family: 'Roboto', sans-serif, Arial;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    color: #000;
    /*background-color: #d1e2ed; /* #ece9d8*/
    background-color: #fff;
    border: 1px solid #fff;
    box-shadow: 0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);
    border-radius: 4px;
    border-spacing:0px;
} 
	
	.dpTable tr td
	{
	    padding:8px;
	
	}
/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
	}
 
 
/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
    background-color: #00a8a9;
  
}

    /* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
    .dpDayTR {
}
 
 
/* 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 {
	border: 0;
	}
 
 
/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-color: #fff;
	color: #000;
	}
 
 
/* 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: rgba(0,0,0,.12);
	cursor: pointer;
	color: #0e8905;
	font-weight:normal;
	}
 
 
/* 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 {
	}
 
 
/* 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 {
    background-color: #e8e8e8;
    /*color: white;*/
    /*font-family: Verdana, Sans-Serif;*/
    font-weight: normal;
}
 
 
/* additional style information for the text that indicates the month and year */
.dpTitleText {
    /*font-family: Verdana, Sans-Serif;*/
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}
 
 
/* 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: normal;
	}
 
 
/* the forward/backward buttons at the top */
.dpButton {
	/*font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;*/
	color: #fff;
	font-weight: bold;
	padding: 0px;
	cursor:pointer;
	font-size: 15px;
	}
 
 
/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-weight: normal;
	cursor:pointer;
	color: Black;
	}
 