@charset "UTF-8";
/* CSS Document */
table.calendar{
	border: 2px solid #011b32;
	border-collapse: collapse;
	border-spacing: 0px;
	margin-left: 12px;
}
td.dayLabel {
	border: 2px solid #011b32;
	background-color: #8A191B;
	font-family: Arial;
	font-weight:bold;
	color: #FFFFFF;
	text-align: center;
	width: 24px;
	height: 20px;
}
td.normalDay {
	border: 2px solid #011b32;
	background-color: #ececec;
	font-family: Arial;
	text-align: center;
	color:#011b32;
	width: 24px;
	height: 20px;
}
td.todayDay {
	border: 2px solid #011b32;
	background-color: #4D79FF;
	font-family: Arial;
	text-align: center;
	color:#011b32;
	width: 24px;
	height: 20px;
}
td.weekendDay {
	border: 2px solid #011b32;
	background-color: #f8c2c3;
	font-family: Arial;
	text-align: center;
	color:#011b32;
	width: 24px;
	height: 20px;
}
td.eventDay {
	border: 2px solid #011b32;
	background-color: #DD4648;
	color: #FFFFFF;
	font-weight:bold;
	text-align: center;
	width: 24px;
	height: 20px;
}
td.blankDay {
	border: 2px solid #011b32;
	background-color: #696969;
	text-align: center;
	width: 24px;
	height: 20px;
}
div.date {
	padding:2px;
	background-color:#D9D9D9;
	font-family:Tahoma,Arial;
	font-size:12px;
	font-weight:bold;
}
div.event {
	border: 1px solid #000000;
	margin:20px;
}
div.eventText {
	padding:5px;
}
div.keyColour {
	margin-top:1px;
	margin-right:5px;
	float:left;
	width:10px;
	height:10px;
}
div.key {
	padding-left: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align:left;
	color:#FFFFFF;
}
#searchResults {
	overflow:auto;
	height: 453px;
}

