@charset "utf-8";
body {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #1C1C1C;
	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;
}
h4 {
	font-size: 110%;
	}
h3 {
	font-size: 120%;
	}
h2 {
	font-size: 130%;
	}
h1 {
	font-size: 140%;
	}
.oneColFixCtrHdr #container {
	width: 100%;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image:url(/img/container_bg_3.jpg);
	background-repeat: no-repeat;
	background-position:top center;
	background-color: #343434;
}
.oneColFixCtrHdr #header {
	width: 780px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align:center;
}
.oneColFixCtrHdr #header div.url { width:140px; float:left; font-size:88%; margin-top:40px; }
.oneColFixCtrHdr #header div.url a { color:#eee; text-decoration:none;}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #mainContent {
	width: 780px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	color:#CCCCCC;
	}
.oneColFixCtrHdr #motto {
	text-align:center;
	width:100%;
	height:25px;
	color: #BBBBBB;
	}
.oneColFixCtrHdr #menu {
	float:left;
	width:480px; 
	margin-left:290px;
}	
.oneColFixCtrHdr #right {
	float:left; 
	width:190px; 
	margin:20px 0 10px 10px; 
	color:#CCCCCC; 
	font-size:81%;
	line-height:1.3em;
	text-align:justify;
}
.oneColFixCtrHdr #mainContent #right a, .oneColFixCtrHdr #mainContent #left a {
	color:#CCCCCC;
}
.oneColFixCtrHdr #mainContent #right a:hover, .oneColFixCtrHdr #mainContent #left a:hover {
	color:#FFFFFF;
}
.oneColFixCtrHdr #left {
	float:left;
	width:550px;
	margin:20px 0 0 20px;
	font-size:81%;
	line-height:1.3em;
	text-align:justify;
}
.oneColFixCtrHdr #left h1 {
	color:#DDD;
	}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#1D1D1D;
	color: #999999;
	font-size:81%;
}
.oneColFixCtrHdr #footer a {
	color:#999999;
	text-decoration:none;
}
.oneColFixCtrHdr #footer a:hover {
	color:#dddddd;
}
.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 */
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}