@charset "utf-8";
body {
	font: 100% Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #786A4E;
}
#container {
	width: 950px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFF;
}
#header {
	background-image: url(../images/header.jpg);
	height: 150px;
	background-repeat: no-repeat;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0;
}
#mainContent {
	padding: 0 165px 0 60px;
	font-size: 72%;
	line-height: 1.6;
	background-image: url(../images/vlek-regs_langer.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	min-height: 320px;
	margin-top: -10px;
}
#mainContent h1 {
	text-align: center;
	padding-left: 75px;
}
#mainContent h2 {
	font-size: 160%;
	font-weight: bold;
}


#mainContent a, #mainContent a:visited {
	color: #786A4E;
}
#mainContent a:hover {
	color: #CABFAC;
}


#footer {
	height: 149px;
	background-image: url(../images/footer.jpg);
	background-repeat: no-repeat;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 127px 0 10px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: left;
	font-size: 65%;
	color: #FFF;
}
#footer a, #footer a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}
#footer a:hover {
	color: #CABFAC;
	text-decoration: underline;
}
#left {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 127px 0 10px 10px;
	font-size: 65%;
	color: #FFF;
	float: left;
}
#right {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 127px 10px 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: right;
	font-size: 65%;
	color: #FFF;
	float: right;
}


.bold {
	color: #FFFFFF;
	background-color: #000000;
	font-weight: bold;
}
