@charset "utf-8";
body {
	margin: 0;
	padding: 0;
	color: #FFF;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.4;
}

/* ~~ Element/tag selectors ~~ */
ol, dl, ul{ 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div.*/
	padding-right: 0px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math.*/
	color: #000;
}
.menuupright {
	color: #FFF;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #000;
	text-decoration: none; 
}
.mainpitalics {
	font-style: italic;
}
.mainpbold {
	font-weight: bold;
}
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover, a:active, a:focus { 
	text-decoration: none;
	color: #FFF;
}

/* ~~ this fixed width container surrounds all other elements ~~ */
.container {
	width: 960px; /* the auto value on the sides, coupled with the width, centers the layout */
	background-image: url(../images/fwpieces/conbkground.png);
	margin: 0 auto;
}

/* ~~ This is the layout information. ~~ 
Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides.*/
#header {
	width:960px;
	height:201px;
	background-image: url(../images/fwpieces/bannerback.png);
	font-family:Arial, Helvetica, sans-serif;
}
#header h1{
	text-align:right;
	padding-top: 10px;
	padding-right: 28px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 18px;
	color: #FFF;	
}
#header .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	width: 694px;
	margin-left: 0px;
}
#sidebar { 
	float: left;
	margin-right: 0px;
	width: 217px;
	height: 781px;
	background-image: url(../images/fwpieces/gennavmenlf.png);
	background-repeat: no-repeat;
}
#maincontent {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 0px;
	padding-top: 92px;
	width: 743px;
	background-image: url(../images/fwpieces/genbckmaincon.png);
	text-align: left;
}

#navmenu {
	padding-top: 160px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 14px;
	color: #333;
	margin-left: 0px;
}
#sidebar #navmenu ul{
	padding-left: 45px;
	list-style-type: none;
}
#sidebar #navmenu li ul{
	padding-left: 10px;
}
#maincontent #content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	color: #000;
}
#maincontent #content p{
	padding-left: 67px;
	padding-right: 60px;
}
#maincontent #content ul{
	color: #000;
	list-style-position: inside;
	/*list-style-type: none;*/
	padding-left: 75px;
}
#maincontent #content h2{
	padding-left: 67px;
	font-size: 16px;
	color: #FFF;
	font-weight: normal;
}
.navbuttdiv {
	width: 217px;
	height: 70px;
	display: block;
}
/* ~~ miscellaneous float/clear classes ~~ */

div#footer {
	width:960px;
	height:50px;
	margin: 0 auto;
	background-image: url(../images/fwpieces/genftr.png);
	text-align: center;
	padding-top: 50px;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	background-repeat: no-repeat;
}
#footer p {
	font-size: 10px; 
}
#footer a {
		text-decoration: none;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
