@charset "UTF-8";
body {
	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: #261410;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #261410;
}
#container  {
	width: 984px;
	margin: 0 auto;
	text-align: left;
}
#container  #header{
	background-image: url(../images/home-head.jpg);
	background-repeat: no-repeat;
	height: 178px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 669px;
	background-position: 0px 40px;
	padding-top: 0px;
}
#container #header #network {
	margin: 0px;
	padding-left: 215px;
	margin-top: 44px;
}
#container #header #quote {
	margin-top: 6px;
}
#container #header  h1{
	margin: 0px; /* 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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 10px;
	color: #CCC;
	text-align: right;
	padding-right: 8px;
	font-weight: normal;
}
#container #nav {
	background-image: url(../images/home-nav.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	height: 24px;
	text-align: center;
	color: #FFF;
	font-size: 14px;
	font-weight: normal;
	display: block;
	padding-top: 8px;
	width: 984px;
}
#container #nav a  {
	color: #FFF;
	text-decoration: none;
	height: 32px;
	font-weight: normal;
	padding-left: 4px;
	padding-right: 4px;
}
#container #nav .current {
	color: #FF0;
}
#container #nav a:hover {
	color: #FF0;
}
#container  #footer{
	padding: 0px;
	margin: 0px;
	background-image: url(../images/home-footer2.jpg);
	background-repeat: no-repeat;
	height: 83px;
	color: #FFF;
	text-align: center;
	padding-top: 46px;
	font-size: 9px;
}
#container #footer a {
	color: #FFF;
	text-decoration: none;
}
#container #footer a:hover {
	color: #FFF;
	text-decoration: underline;
}
