div.calendarContainer {
	position: relative;
}
	div.calendarContainer #eventDetails {
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: #EBE4DE;
		z-index: 2;
		display: none;
	}
		div.eventDetails {
			padding: 10px 15px 0px;
		}
ul.events {
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	margin: 0px 0px 10px 15px; padding: 0px;
}
	ul.events li span.fixed {
		display: block;
		float: left;
		width: 325px;
	}

#close {
	cursor: pointer;
	display: block;
	position: absolute;
	top: 9px; right: 7px;
	font-size: 0.8em;
}

table.calendar {
	width: 100%;
}
table.calendar, table.month {
	border: collapse;
	border: 1px solid #9EA98B;
	border-top: 0px none;
	width: 100%;
}

table.calendar h3 {
	text-align: center;
}
	table.month th {
		font-size: 13px;
		text-align: center;
	}
	table.month td {
		height: 24px; width: 14%;
	}
		table.month td span {
			font-size: 8px;
			color: rgb(154,154,154);
			position: absolute;
		}

	table.month td.hasEvents {
		background-color: #d6c7cc;
		overflow: hidden;
	}
	table.month td.hasEvents.bookable {
		background-color: #CDBAC0;
	}
		table.month td.hasEvents a {
			display: block;
			width: 100%; height: 100%;
			text-indent: -9999px;
		}
