/* HTML Settings */
html {
	/* Resetting margins and paddings (eliminates inherited settings from brower) */
	margin: 0px;
	padding: 0px;
}

/* Body Settings*/
body {
	/* Font Orientation, Color, Type, and Size Settings */
	text-align: center;
	font-family: "Lucida Grande", "Lucida Sans", "Trebuchet MS", Verdana, Arial;
	font-size: 0.7em;
	color: #333333;
	
	/* Margin / Padding Settings */
	padding: 0px;
	margin: 0px;
	
	/* Background Settings for Webpage */
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-position: left top;
}

/* Setting up Paragraph spacing and padding */
p {
	line-height: 15px;
	margin: 10px 0px; /* Bottom Padding is 10pixels, Top,Left & Right are 0 pixels */
}

/* ----------------------------------- */
/* ----- COLORS <<<---------- */
/* ----------------------------------- */

/* Sage Green */
.color1 {
	color: #99cc66;
}
.color2 {
	color: #cccc99;
}

/* Dark Grey */
.color3 {
	color: #003333;
}
.color4 {
	color: #99cccc;
}
.color5 {
	color: #ff9900;
}

/* Nave Blue */
.color6 {
	color: #003366;
}
.color7 {
	color: #cc0033;
}
.color8 {
	color: #ffffff;
}

.ptab {
	padding-left: 10px;
}
.quote {
	padding-left: 20px;
	font-family: Palatino, "Times New Roman", Georgia;
	font-size: 1.6em;
	padding-right: 20px;
	line-height: 1.2em;
}

/* Common Heading Definitions */
h1, h2, h3 {
	font-family: "Lucida Grande", "Lucida Sans", "Trebuchet MS", Verdana, Arial;
	padding: 0px;
	margin: 0px;
}

/* Center Heading: Used for Primary Title in Center Frame */
h1 {
	font-size: 1.7em;
	font-weight: bold;
	color: #003366;
}

/* Left Heading: Used for Primary Title in Left Frame */
h2 {
	font-size: 1.7em;
	font-weight: bold;
	color: #003333;
}

/* Center Sub Heading: Used for Secondary Titles in Center Frame */
h3 {
	font-size: 1.0em;
	font-weight: bold;
	color: #cc0033;
}

/* ----------------------------------- */
/*  A LINK ELEMENTS <<<------ */
/* ----------------------------------- */

a:link, a:visited {
	color: #cccc99;
	text-decoration: none;
}

a:hover, a:active {
	color: #99cc66;
	text-decoration: none;
}

/* ----------------------------------- */
/* ---- DIVS ------------------------- */
/* ----------------------------------- */

/* Container: Frame for the contents of the webpage */
#container {
	width: 760px;
	float: none;
	padding: 0px;
	margin: 0px auto;
	background-image: url(site-graphics/Background-green.gif);
	background-repeat: repeat;
}

/* Header: Contains the banner for Inland NW and USMS */
#header {
	float: left;
	width: 760px;
	height: 75px;
	margin: 0px;
	padding: 0px;
}

/* Navigational Side Bar use to navigate the site */
#nav {
	width: 180px;
	height: 100%;
	margin: 0px;
	padding: 0px;
	margin-left: 20px;
	background-repeat: repeat;
	color: #003366;
	text-align: left;
	float: left;
}
#nav ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	color: #003366;
	font-size: 1.0em;
}

#nav li { /* Active Items and subitems */
	padding: 0px;
	margin: 10px 0px;
	font-weight: normal;
}

#nav li li { /* Menu items below navigation bar active item and it's subitems */
	padding: 0px;
	margin: 10px 0px 0px 0px;
	font-weight: normal;
}

/* Main section of the webpage displaying the content of the active item in the navigational bar */
#main2 {
	float: left;
	width: 370px;
	height: 100%;
	margin: 0px;
	padding: 10px 5px 10px 15px;
	text-align: left;
}
#main2 a:link {
	color: #003366;
	text-decoration: none;
}
#main2 a:visited {
	color: #003366;
	text-decoration: none;
}
#main2 a:hover {
	color: #cc0033;
	text-decoration: none;
}
#main2 a:active {
	color: #cc0033;
	text-decoration: none;
}

/* Sidebar: Ride-hand side bar used to items related to the active item in the navigational bar as well as main section */
#secondary {
	float: left;
	width: 140px;
	margin: 0px;
	padding: 10px 20px 100px 10px;
	text-align: left;
	height: 100%;
}
#secondary a:link {
	color: #003366;
	text-decoration: none;
}
#secondary a:visited {
	color: #003366;
	text-decoration: none;
}
#secondary a:hover {
	color: #cc0033;
	text-decoration: none;
}
#secondary a:active {
	color: #cc0033;
	text-decoration: none;
}

/* Footer: cotains copyright and disclaimer information */
#footer {
	width: 760px;
	height: 80px;
	margin: 0px;
	padding: 20px 0px 0px;
	font-size: 0.85em;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	clear: both;
	background-color: #FFFFFF;
}
#footer a:link {
	color: #003366;
	text-decoration: none;
}
#footer a:visited {
	color: #003366;
	text-decoration: none;
}
#footer a:hover {
	color: #cc0033;
	text-decoration: none;
}
#footer a:active {
	color: #cc0033;
	text-decoration: none;
}

