

/* This extra layer simply allows the body tag to have the same darker color as the bottom of the footer so the color extends to the bottom of the browser window */
#background {
	background: #E9E6DF url(images/body-fade-bg.jpg) repeat-x left top;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 1080px;
	margin: 0px auto 0;
}


/* These are the settings for the top navigation bar */
#nav {
	height: 45px;
	color: #FFFFFF;
	background: url(images/nav-bg.jpg) repeat-x top;
	padding-left: 10px;	
}
#nav ul {
	margin: 0px;
	padding: 0px;
}
#nav ul li {
	margin: 0px;
	display: block;
	float: left;
	list-style: none;
	clear: right;
}
#nav ul li a {
	display: block;
	padding-right: 20px;
	padding-left: 20px;
	text-align: center;
	color: #CCCFE1;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 45px;
	font-weight: bold;
	background: url(images/nav-divider.gif) no-repeat right top;
}
#nav ul li a:hover {
	background: url(images/nav-hover.jpg) no-repeat right top;
	text-decoration: none;
	color: #FC0;
}
#nav ul li#active {
	background: url(images/nav-hover.jpg) no-repeat right top;
	text-decoration: none;
}
#nav ul li#active a {
	color: #FFFFFF;
}


#contentWrapper {
	overflow: hidden;
	margin-right: 0px;
	margin-left: 0px;
	background: url(images/content-bg.jpg) repeat-y center;
	padding-right: 20px;
	padding-top: 15px;
}
 #contentWrapper #content {
	float: left;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 25px;
	width: 810px;
}


/* These are the optional content area box settings */
.widebox {
	background-image: url(images/widebox-title.jpg);
	background-repeat: repeat-x;
	background-position: center;
	float: left;
	border: 1px solid #E9E6DF;
	margin-bottom: 6px;
	width: 610px;
}

.widebox h5 {		
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
}

.widebox a {		
	color: #FFF;
	text-decoration: none;
}


/* These are the optional right area box settings */
#rightColumn2 {
	 float: right; 
	 width: 400px; 
	 margin-left: 10px; 
	 margin-bottom: 6px;
}

/* This styles the headings in the right sidebar */
#rightColumn2 h3 {
	font: bold normal 16px/16px "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
	letter-spacing: normal;
	background: url(images/h3-bg.png) no-repeat left top;
	border-bottom: 2px solid #FFF;
	color: #FFF;
}


