/* calendar CSS */
.calendarHeader {
	background-color:#86d6f0;
	font-size:11px;
	font-weight:bolder;
	text-align:center;
}

.datepicker {
	padding:3px;
	text-align:center;
}

.month {
	background-color:#86d6f0;
	border:1px solid #000000;
	padding:0px;
}

.dayname {
	font-size:11px;
	font-weight:bolder;
	border: 1px solid #000000;
	background-color:#cccccc;
	padding:2px;
}

.datepickerform {
	font-size:11px;
}

.monthnavigation {
	font-size:11px;
}

.nomonthday {
	background-color:#E6FBFF;
	border: 1px solid #000000;
	width:103px;
	height:103px;
}

.monthday {
	background-color:#ffffff;
	border: 1px solid #000000;
	font-size:11px;
	height:103px;
	vertical-align:top;
	width:103px;
}

.saturday {
	background-color:#eeeeee;
	border: 1px solid #000000;
	font-size:11px;
	height:103px;
	vertical-align:top;
	width:103px;
}

.sunday {
	background-color:#eeeeee;
	border: 1px solid #000000;
	font-size:11px;
	height:103px;
	vertical-align:top;
	width:103px;
}

.today {
	background-color:#cccccc;
	border:1px solid #000000;
	font-size:11px;
	height:103px;
	vertical-align:top;
	width:103px;
}

.eventcontent {
	font-size:11px;
	vertical-align:top;
	width:100%;
}

.month tr td {
  padding:4px;
}

/* CSS needed for the AJAX tooltips */

#ajax_tooltipObj {
	z-index:1000000;
	text-align:left;
}
#ajax_tooltipObj div {
	position:relative;
}

/* If you don't want the arrow - Just set the width of this div to 1 or something like that and drop the background selectors from the CSS below */

#ajax_tooltipObj .ajax_tooltip_arrow {	/* Left div for the small arrow */
	width:1px;
	position:absolute;
	left:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
}

#ajax_tooltipObj .ajax_tooltip_content {
	border:2px solid #FFF;	/* Border width */
	color: white;
	left:18px;	/* Same as border thickness */
	top:0px;
	position:absolute;
	width:150px;	/* Width of tooltip content */
	background-color:#000;	/* Background color */
	padding:5px;	/* Space between border and content */
	font-size:inherit;	/* Font size of content */
	overflow:auto;	/* Hide overflow content */
	z-index:1000001;
}
