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

/* the input field */
input.date {
	text-align:center;		
/*	-moz-box-shadow:0 0 10px #eee inset;*/
}

/* date input trigger element */
.caltrigger {
	display: inline-block;
	margin: 0px 6px 0px 3px;
	width: 16px;
	height: 16px;
	vertical-align: middle;
	background: url(../images/jq.tools/calendar.png) no-repeat 0 0;
}

/* calendar root element */
#calroot {
	/* place on top of other elements. set a higher value if nessessary */
	z-index:10001;
	margin-top:-1px;
	width:198px;
	padding:2px;
	background-color:#fff;
	font-size:11px;
	border:1px solid;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	-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:20px;
	background: #cacaca;
}

#calnext, #calprev {
	display:block;
	margin-top: 3px;
	margin-left: 4px;
	width:14px;
	height:14px;
	background:transparent url(../images/jq.tools/prev.png) no-repeat center;
	float:left;
	cursor:pointer;
}

#calnext {
	background-image:url(../images/jq.tools/next.png);
	float:right;
	margin-right: 4px;
}

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

#caltitle {
	padding-top: 2px;
	font-size:14px;
	line-height: normal;
	color: #FFFFFF;
	float:left;
	text-align:center;
	width:155px;
	/*text-shadow: 0px 1px 1px rgba(0,0,0,0.35);*/
}

/* year/month selector */
#caltitle select {
	font-size:10px;
	margin: -2px 2px 0px 2px;
	padding: 0;
	background: #fff;
}

/* names of the days */
#caldays {
	height:14px;
	border-bottom:1px solid #ddd;
}

#caldays span {
	display:block;
	float:left;
	width:28px;
	text-align:center;
}

/* container for weeks */
#calweeks {
	background-color:#fff;
	margin-top:4px;
}

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

/* single day */
.calweek a {
	display:block;
	float:left;
	width:27px;
	height:20px;
	text-decoration:none;
	font-size:11px;
	margin-left:1px;
	text-align:center;
	line-height:20px;
	color:#666;
	-moz-border-radius:3px;
	-webkit-border-radius:3px; 		
} 

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

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

/* offmonth day */
a.caloff {
	color:#ccc;		
}

a.caloff:hover {
	background-color: #f8f8f8;		
}


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

/* current day */
#calcurrent {
	background-color:#0082b4;
	color:#fff;
}

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