@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	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;
	font-size: 12px;
}
.bazin #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #4ee2ec;
	text-align: left;
}
.bazin #header {
	margin-top: 0px;

}
.bazin #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Navigation buttons */

.bazin #headernav {
	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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    width: 750px;
}
.bazin #headernav ul
{
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;
}

.bazin #headernav a
{
	display: block;
	padding: 3px;
	width: 160px;
	background-color: #4ee2ec;
}

.bazin #headernav a:link, #navlist a:visited
{
	color: #000000;
	text-decoration: none;
	font-size: 14px;
}

.bazin #headernav a:hover
{
background-color: #FFCC00;
color: #4ee2ec;
}

.bazin #mainContent {
	background: #FFFFFF;
	font-size: 14px;
	font-family: Verdana, Geneva, sans-serif;
	margin: 2px;
	padding: 2px;
}
.bazin #footer {
	background:#4ee2ec;
	padding-bottom: 10px;
}
.bazin #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
}
