/* Header image container */
.main-image{
	width: 750px;
	height: 320px;
	padding-top: 15px;
	padding-bottom: 5px;
}
/* Container for the events */
#events-container {
	width: 750px;
	float: left;
	margin-bottom: 25px;
	background-color: #d3d3d3;
}
/* Container for the left-hand column of the events */
.events-column-left {
	width: 370px;
	margin-top: 10px;
	float: left;
}
/* Container for the right-hand column of the events */
.events-column-right {
	width: 370px;
	margin-top: 10px;
	float: right;
}
/* Container for an event (which comprises: date, venue, details & contact) */
.event {
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
}
.event-date {
 	font-size: larger;
	font-weight: bold;
	color: blue;
}
.event-venue {
	font-weight: bold;
}
.event-details {
	padding-left: 10px;
	padding-right: 10px;
	font-style: italic;
}
.event-contact {
}
.clear-both {
	clear: both;
}
