/* JQTOOLS CALENDAR ROOT*/
#calroot {
	/* place on top of other elements. set a higher value if nessessary */
	z-index: 999;
	font-family: sans-serif;
	background-color: #fff;
	border: 1px solid #CCCCCC;
	height: auto;
	width: auto;
	display: none;
	margin: 0 auto;
}

/* head. contains title, prev/next month controls and possible month/year selectors */
#calhead {
	padding: 10px 0;
	height: 22px;
	text-align: center;
}

#caltitle {
	float: left;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    width: 175px;
}

#calnext,#calprev {
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	text-decoration: inherit;
	-webkit-font-smoothing: antialiased;
	*margin-right: .3em;
	font-size: 16px;
	cursor: pointer;
}
#calnext{
	float: left;
}
#calprev{
	float: left;
    margin: 0 0 0 10px;
}

#calnext:before,#calprev:before {
	text-decoration: inherit;
	display: inline-block;
	speak: none;
}


#calprev:before {
	content: "\f137";
}

#calnext:before {
	content: "\f138";
}

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

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

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

#caldays span {
	display: block;
	float: left;
	width: 32px;
	text-align: center;
	font-size: 11px;
}

/* 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: 31px;
	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: rgb(245, 245, 250);
}

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

/* current date */
#calcurrent {
	background-color: #498CE2;
	color: #fff;
}

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

/* CALENDAR NEWS */
.news-calend {
	min-height: 500px;
	overflow: hidden;
}

.news-calend #calendar {
	height: 0px;
	width: 100%;
}

.news-calend #newsDate {
	width: 0px;
	height: 0px;
	border: 0px;
}

.news-calend #theday {
	background-color: #f5f5f5;
	color: #333;
	font-size: 90px;
	height: auto;
	line-height: 50px;
	padding: 60px 50px 40px;
	width: 230px;
	text-align: center;
	margin-left: 10px;
}

.news-calend #theday span {
	display: block;
	font-size: 16px;
	text-align: center;
	white-space: nowrap;
}

.news-calend #calroot {
	position: relative !important;
	top: 0 !important;
	left: 0 !important;
	margin: 0 auto 0 10px !important;
	width: 230px;
}