/* For the details, see: http://flowplayer.org/tools/dateinput/index.html#skinning */

/* calendar root element */
#calroot {
	/* place on top of other elements. set a higher value if nessessary */
	z-index: 1;
	margin-top: -1px;
	width: 186px;
	padding: 2px;
	background-color: #8ca6b8;
	font: 12px/17px Arial, Helvetica, sans-serif;
	border: 1px solid #2b6c91;
  -moz-border-radius: 3px;
  border-radius: 3px;
	/* -moz-box-shadow: 0 0 15px #666;
	-webkit-box-shadow: 0 0 15px #666; */
}

/* head. contains title, prev/next month controls and possible month/year selectors */
#calhead {
	padding: 2px 0;
	height: 24px;
	background: #2b6c91;
	border: 1px solid #08476e;
	-moz-border-radius: 3px;
  border-radius: 3px;
}

#caltitle {
	font: bold 14px/24px Arial, Helvetica, sans-serif;
	color: #fff;
	float: left;
	text-align: center;
	width: 146px;
	line-height: 24px;	
}

#calnext, #calprev {
	width: 19px;
	height: 24px;
	background: url(/Static/Image/datepicker_arrows.png) no-repeat; 
	float: left;
	cursor: pointer;
}

#calnext { background-position: -19px 0; }

#calprev.caldisabled, #calnext.caldisabled {
	visibility: hidden;
}

/* year/month selector */
#caltitle select {
	font-size:10px;
}

/* names of the days */
#caldays { height: 28px; }

#caldays span {
	float: left;
	width: 26px;
	text-align: center;
	font-size: 13px;
	font-weight: bold;
  line-height: 28px;
  color: #fff;	
}

/* container for weeks */
#calweeks { }

/* single week */
.calweek {
	clear: left;
	height: 21px;
}

/* single day */
.calweek a {
	float: left;
	width: 21px;
	height: 17px;
	border: 1px solid #5f8aa4;
	text-decoration: none;
	font-weight: bold;
	padding: 0 1px;
	text-align: right;
	line-height: 15px;
	color: #2b6d93 !important;
  margin: 0 1px 2px 0;
  background: #fff;	
}

/* different states */
.calweek a:hover, .calfocus {
	background-color: #ddd !important;
}

/* sunday */
a.calsun {
	color:red;
}

/* offmonth day */
a.caloff {
	border-color: #8ca6b8 !important;
	background: #8ca6b8 !important;
	color: #8ca6b8 !important;
	cursor: default;
}
a.caloff:hover {
	border-color: #8ca6b8 !important;
	background: #8ca6b8 !important;
	color: #8ca6b8 !important;
}


/* unselecteble day */
a.caldisabled {
	background-color:#efefef !important;
	color:#ccc	!important;
	cursor:default;
}

/* current day */
#calcurrent {
	background-color: #5f8aa4 !important;
	color: #fff !important;
}

/* today */
#caltoday {
	background-color:#333 !important;
	color:#fff !important;
}