/**************************************************************************************
	htmlDatePicker CSS file
	
	Feel Free to change the fonts, sizes, borders, and colours of any of these elements
***************************************************************************************/
/* The containing DIV element for the Calendar */
#dpCalendar {
	border-bottom: 7px solid rgba(0, 0, 0, 0.2);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: "";
    display: inline-block;
    left: 378px !important;
	top: 195px !important;
	position: absolute;
	min-width:220px;
	z-index:9999;
	
	background-clip: padding-box;
    background-color: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 5px 5px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    float: left;
    list-style: none outside none;
    margin: 0;
    padding: 10px;
	
	display: none;					/* Important, do not change */
	color: black;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	width: 150px;
	font-size:13px;
}
/* The table of the Calendar */
#dpCalendar table {
	color: black;
	font-size:13px;
	font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
	width: 100%;
}
/* The Next/Previous buttons */
#dpCalendar .cellButton {
	background-color: #032352;
	color: #FFF;
}
/* The Month/Year title cell */
#dpCalendar .cellMonth {
	background-color: #032352;
	color: #FFF;
	text-align: center;
}
/* Any regular day of the month cell */
#dpCalendar .cellDay {
	color: black;
	text-align: center;
}
/* The day of the month cell that is selected */
#dpCalendar .cellSelected {
	border: 1px solid red;
	background-color: #ffdddd;
	color: black;
	text-align: center;
}
/* The day of the month cell that is Today */
#dpCalendar .cellToday {
	background-image: -moz-linear-gradient(center top , #0088CC, #004777);
    background-repeat: repeat-x;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #0044CC;
	border-radius:3px;
	color: black;
	text-align: center;
}
/* The day of the month cell that is inside a valid Range */
#dpCalendar .cellRange {
	background-color: #ffccff;
	color: black;
	text-align: center;
}
/* Any cell in a month that is unused (ie: Not a Day in that month) */
#dpCalendar .unused {
	background-color: transparent;
	color: black;
}
/* The Cancel/No Date button */
#dpCalendar .cellCancel {
	background-color: #60a5ca;
	color: black;
	text-align: center;
	padding:3px 0px;
	color:#FFF!important;
	font-size:13px;
}
#dpCalendar .cellCancel a{color:#FFF!important;}
/* The text inside the Cancel/No Date button */
#dpCalendar .cellCancel a {
	display: block;
}
/* The clickable text inside the calendar */
#dpCalendar a {
	text-decoration: none;
	background-color: transparent;
	color: #004777;
	display: block;
}
#dpCalendar .cellDay  a:hover { 
	color: #004777; 
	 background-color: #EFEFEF; 
    text-align: center;
}
td.cellToday a{color:#FFF !important;}
td.cellButton a{color:#FFF !important;}
td.cellButton{padding:5px;}