@charset "utf-8";
/* CSS Document */

#ajaxContent {
	width: 600px;
	height: 440px;
}
.calendarTable{
	font-family: Arial, Helvetica, sans-serif;
	margin: 0 auto;
	border-bottom:1px solid black;	
}
.calendarTable td{
	text-align:left;
	border-right:1px solid black;
	border-top:1px solid black;
	width:75px;
	height: 75px;
	vertical-align:top;
	padding:0;
}
.calendarTable td:first-child {
	border-left:1px solid black;
}

.calendarTable td .day:hover{
	background-color: #8BB2D3;
}
.blurredDay{
	color:#999999;
	background-color:#DDDDDD;
}
.calendarTable .calendarHeader th {
	vertical-align: top;
	height:13px;
	padding-top:10px;
	text-align:center;
	border:0px;
}

.day{
	float:left;
	height: 75px;
	width: 75px;
	font-size: 11px;
}

.day .circle {
	position: absolute;
	background-image:url(../images/tabmin/calendar_circle.png);
	background-repeat: no-repeat;
	width: 31px;
	height: 25px;
	top: -4px;
	left: -6px;
}

.number_of_events {
	text-align: center;
	width: 73px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	font-weight: bold;
}

.head{
	margin: 3px;
	width:70px;
	float:left;
	height:20px;
}
.calendarTable .calendarDayHeader td{
	text-align:center;
	border:0px;
	font-weight:bold;
	height: 12px;
	
}

.currentDay{
	background-color:#00CCFF;
	font-weight:bold;

}

.currentDay:hover {
	background-color: #53bce5 !important;
}

.dateTitle{
	background-color: #006699;
	color:#FFFFFF;
	margin-top:10px;
}

.eventTitle{
	margin-top: 1px;
	font-size:14px;
	font-weight: bolder;
}

.eventDescription{
	margin-bottom: 15px;
	border-bottom: 1px solid #CCCCCC
}

.previous_month,
.previous_year,
.next_month,
.next_year {
	background-repeat: no-repeat;
	margin: 0px auto 5px;
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.previous_month {
	background-image: url(../images/tabmin/previous_month.png);
}

.previous_year {
	background-image: url(../images/tabmin/previous_year.png);
}

.next_month {
	background-image: url(../images/tabmin/next_month.png);
}

.next_year {
	background-image: url(../images/tabmin/next_year.png);
}

.hasEvent {
	position: relative;   /* this is key */
	overflow: visible;
	background-color: #8BE841;
	cursor: pointer;
}
 
.hasEvent span.event {
	display: none;        /* so is this */
	z-index: 999 !important;
}

span.event a:link, span.event a:visited {
	color: black;
	text-decoration: none;
}

span.event a:hover {
	color: #04559A;
	text-decoration: none;
}

/* tooltip will display on :hover event */
 
.hasEvent:hover span.event  {
	display: block;
	position: absolute;
	top: 72px;
	left: -1px;
	width: auto;
	padding: 3px 7px 4px 6px;
	border: 1px solid #336;
	background-color: #A9C6E0;
	font: normal 10px arial, helvetica, sans-serif;
	text-align: left;
	color: #000;
	text-decoration: none;
	white-space: nowrap;
}

.calendarTable span.title {
	display: block;
	border-bottom: dashed 1px black;
	margin-top: 4px;
	padding-bottom: 4px;
}

.calendarTable span.title:last-child{
	border: none;
	padding: 0;
}

.event_wrapper {
	width: 100%;
	color: #666666;
	border-bottom: 2px dashed;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.event_wrapper:last-child {
	border-bottom: none;
}

.event_wrapper .title {
	font-weight: bold;
	font-size: 15px;
	margin-bottom: 10px;
}

.event_wrapper .time {
	font-weight: normal;
	font-size: 11px;
}

.event_wrapper .label {
	font-weight: bold;
	
}

.event_wrapper .description {
	margin-top: 10px;
}

.event_scroller {
	max-height: 400px;
	overflow: auto;
}
