@charset "utf-8";
/* CSS Document */


body {
	/* 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: #000;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	background-color: #800000;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 100%;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FCDB56;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: #FCDB56;  
	outline-color: #F90;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:36px;
}

.oneColFixCtrHdr #mainContent {
	clear:both;
	margin-top:0 px;
	padding: 10px 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FCDB56;
}
.pro {
	font:Forte;
	font-style:italic;
	color:#393;
}
.networker {
	font:Georgia, "Times New Roman", Times, serif;
	color:#000;
}
.oneColFixCtrHdr #footer {
	background-color: #FCDB56;
	padding: 0 10px;
}
.oneColFixCtrHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}



.oneColFixCtrHdr #container #footer .navbar li {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-style: normal;
	color: #000;
	display: inline-block;
	margin: 5px;
	float: left;
	height: 15px;
	width: 65px;
	list-style-type: none;
	text-align: center;
	clear: none;
}
.oneColFixCtrHdr #container #footer .navbar li  a:link {
	color:#000;
}
.oneColFixCtrHdr #container #footer .navbar li  a:visited {
	color:#000;
}
.oneColFixCtrHdr #container #footer .navbar li a:hover {
	color:#F4E62D;
	background-color:#800000;
}
.oneColFixCtrHdr #container #footer .navbar li  a:active {
	color: #F90;
}
