/* The class used to create the triangular effect */
div.triangle {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 0px;
	width: 0px;
	border: 8px solid #000;
}

/* Colors are set up here */
div.unbooked_am {
	border-top-color: #fff;
	border-left-color: #fff;
}
div.unbooked_pm {
	border-bottom-color: #fff;
	border-right-color: #fff;
}
div.prov_am {
	border-top-color: #4EA4FF;
	border-left-color: #4EA4FF;
}
div.prov_pm {
	border-bottom-color: #4EA4FF;
	border-right-color: #4EA4FF;
}
div.booked_am {
	border-top-color: #fc6565;
	border-left-color: #fc6565;
}
div.booked_pm {
	border-bottom-color: #fc6565;
	border-right-color: #fc6565;
}

#unbooked_key {
	margin: 2px;
	clear: left;
	float: left;
	border-left: 20px solid #fff;
	padding-left: 3px;
	height: 20px;
}
#booked_key {
	margin: 2px;
	clear: left;
	float: left;
	border-left: 20px solid #fc6565;
	padding-left: 3px;
	height: 20px;
}
#prov_key {
	margin: 2px;
	clear: left;
	float: left;
	border-left: 20px solid #4EA4FF;
	padding-left: 3px;
	height: 20px;
}


body, div, span {
	margin: 0px;
	padding: 0px;
	text-align: center;
	font-family: Arial;
	font-size: 10px;
	color: #333;
	line-height: 16px;
}

span {
	color: #fff;
}
a {
	color: #fc0;
	text-decoration: underline;
}
a:hover {
	color: #f60;
}

a.month {
	color: #fc0;
	text-decoration: underline;
}
a.month:hover {
	color: #f60;
}

body {
	margin: 0px 6px 6px 6px;
	background: #3d2616 url(../../../bg3.jpg) repeat-x 0px 0px;
}
/* By setting the width of this element to the width of all our calendars, PLUS their margins, we can center the calendars horizontally. */
#container {
	border: 1px solid #fff;
	margin: 0px auto;
	height: 297px;
	position: relative;
	overflow: hidden;
}

#navBar {
	color: #fff;
	position: absolute;
	top: 8px;
	left: 804px;
	width: 118px;
	height: 276px;
	border: 1px solid white;
	padding: 2px;
}

/* The calendar itself: a block of 7 columns and 8 rows. */
/* in this example, they will be 19 x 19 px */
div.calendar { 
	width: 119px;
	float: left;
	clear: none;
	margin: 8px 0px 0px 12px;
	border-top: 1px solid black;
	border-left: 1px solid black;
	position: relative;
}

/* basic calendar cell. */
div.calendarCell {
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	float: left;
	clear: none;
	width: 16px;
	height: 16px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: #fff;
}

/* the last cell -- the one that breaks the row. */
div.endrow {
	float: left;
	clear: right;
}


div.topCalBar {
	background-color: #dfc !important;
}


/* the bit that the date is written to */
div.inner {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 14px;
	height: 14px;
	text-align: center;
	z-index: 300;
	cursor: pointer;
}


/* the title row */
div.titleRow {
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	height: 14px;
	text-align: center;
	float: none;
	clear: right;
	font-weight: bold;
	background: #fff;
	line-height: 14px;
}

div.bordered {
	border: 1px solid #000;
}

div.clear {
	width: 1px;
	height: 1px;
	float: none;
	clear: both;
}

div.tall {
	height: 30px;
}

#bookButton {
	position: absolute;
	z-index: 500;
	top: 0px;
	left: 0px;
	width: 100px;
	visibility: hidden;
	background: #3d2616;
	border: 1px solid #fff;
	padding: 2px;
	margin: 0px;
}

#calRow1 {
	position: absolute;
	width: 900px;
	height: 144px;
	top: 0px;
	left: 0px;
	padding: 0px;
	margin: 0px;
}

#calRow2 {
	position: absolute;
	width: 900px;
	height: 144px;
	top: 144px;
	left: 0px;
	padding: 0px;
	margin: 0px;
}

#calRow3 {
	position: absolute;
	width: 900px;
	height: 144px;
	top: 288px;
	left: 0px;
	padding: 0px;
	margin: 0px;
}
