@charset "utf-8";

* {
	padding: 0px;   /*Universal selector removes all default padding and margin settings */
	margin: 0px;
}
body {
	background-color: #004460;                               /* sets default backgroun color for the body tag */
	text-align: center;                                      /* sets default text alignment to Center for the body*/
	font-family: Verdana, Arial, Helvetica, sans-serif;      /* sets default text styles */
	font-size: 14px;                                         /* sets default font size */
	line-height: 150%;                                       /* sets larger line spacing to enhance readability */
}
#wrapper {                                                   /* Sets all the default rules for the Wrapper Div */
	margin-right: auto;                                      /* Forces center alignment of the Wrapper Div */
	margin-left: auto;                                       /* Forces center alignment of the Wrapper Div */
	text-align: left;                                        /* Sets text alignment to Left for the Wrapper Div */
	background-color: #E4F8FF;
	border: 2px solid #000000;
	color: #004460;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	width: 1024px;                                          /* Fixes the Max Width of Wrapper Div to 1024 pixels */
}
#header {
	background-color: #4B6000;                              /* Sets the styling rules for the Header Div */
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	margin: 0px;
	height: 100px;                                          /* defines the Header Div height at 100 pixels */
	color: #FFF0A3;
	padding: 5px;
}
#header_graphic img {
	float: right;                                           /* floats the Header Graphic to the right side of the Header Div */
}

#header h1 {                                                /* format rules for all H1 tags in the Header Div */
	margin: 0px;
	color: #FFF0A3;
	font-size: 28px;
	text-align: center;
	padding-top: 35px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#primary_nav {                                             /* formal rules for Primary Navigation section inside the Sidebar Div */
	margin: 0px;
	padding: 0px;
	text-decoration: none;                                 /* removes the underlines from hyper links */
	list-style-type: none;                                 /* removes the bullets from the unordered list */
}
#sidebar {                                                 /* rules for the left side Div where the navigation buttons are defined  */
	margin: 0px;                                           /* sets the Margin on the Sidebar Div to 0 */
	padding: 0px;                                          /* sets the Padding on the Sidebar Div to 0 */
	float: left;                                           /* floats the Sidebar Dive to the Left */
	width: 215px;                                          /* sets the width of the left Sidebar Div */
	border-right-width: 2px;                               /* sets the border width for right side of Sidebar Div */
	border-right-style: solid;                             /* sets the border style for right side of Sidebar Div */
	border-right-color: #000000;                           /* sets the border color for right side of Sidebar Div */
	background-repeat: repeat;                             /* repeats the background image (if we had one) */
	background-color: #B8CC6E;                             /* sets Background Color for the Sidebar Div */
	border-bottom-width: 2px;                              /* sets the border width for bottom side of Sidebar Div */
	border-bottom-style: solid;                            /* sets the border style for bottom side of Sidebar Div */
	border-bottom-color: #000000;                          /* sets the border color for bottom side of Sidebar Div */
}
#content {                                                /* rules for the center Content Div */
	padding: 10px;
	margin-left: 240px;                                   /* sets Left Margin of Content Div to keep content section aligned */
}
.floatright {                                             /* Class will float elements to the RIGHT side of assigned Div  */
	float: right;
	padding-top: 5px;                                     /* aadditional format elements are optional */
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
	margin: 5px;
	border: 1px solid #000000;
}
.floatleft {                                              /* Class will float elements to the LEFT side of assigned Div  */
	float: left;
}

h1 {                                                      /* general format rules for the H1 tag */
	font-size: 24px;
	padding: 10px;
	margin: 10px;
	color: #004460;
}
.clearboth {                                              /* Whne applied will Clear both left and right floats  */
	clear: both;
}

h2 {                                                      /* general format rules for the H2 tag */ 
	font-size: 18px;
	padding: 5px;
	margin-top: 1px;
	margin-right: 1px;
	margin-bottom: 15px;
	margin-left: 1px;
}
h3 {                                                      /* general format rules for the H3 tag */
	font-size: 14px;
	padding: 3px;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
	font-weight: bold;
}

#footer {                                                 /* general rules for the Footer Div */
	clear: both;                                          /* Clears float so Footer Div can cover botton of full wrapper div */
	height: 75px;                                         /* sets Footer height to 75 pixels */
	color: #004460;
	background-color: #4B6000;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #000000;
	margin: 0px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#secondary_nav {                                         /* rules for the horizontal navigation Div inside the footer div */
	list-style-type: none;                               /* removes bullets from the unordered list */
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 200px;
}
#secondary_nav li {
	display: inline;                                    /* make typical block level unordered list elements Display as INLINE   */
}
#secondary_nav li a {
	float: left;                                        /* floats the horizontal navigation elements to the left  */
	width: 10em;
	color: #E4F8FF;
	background-color: #B8CC6E;
	text-decoration: none;                              /*  removes underlines from all hyper links*/
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 10px;
	border: 1px solid #FFF0A3;
	text-align: center;                                  /* test alignment "center" for the list items */
}
#secondary_nav li a:hover {                             /* styles the HOVER behavior of the secondary navigation links */
	color: #004460;
	background-color: #FFF0A3;
}
#footer_header {                                        /* used to style the Header Text in the Footer Div */
	text-align: center;
	clear: both;
	width: 700px;
	padding: 10px;
	color: #FFF0A3;
	margin-top: 0px;
	margin-right: auto;                                 /* Used for center alignment of the Footer_Header */
	margin-bottom: 0px;
	margin-left: auto;                                  /* Used for center alignment of the Footer_Header */
}

#primary_nav li {                                       /* styles the primary navigation list items */
	width: 100%;
	float: left;
}

#sidebar p {                                            /* clears the float in the sidebar primary navigation div  */
	clear: both;
}

#primary_nav li a {                                     /* styles the links of the primary navigation buttons  */
	color: #004460;
	text-decoration: none;
	display: block;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFF0A3;
	border-bottom-color: #FFF0A3;
}

#primary_nav li a:link {                                /* styles the LINK behavior of the primary navigation links */
	color: #004460;
}

#primary_nav li a:visited {                             /* styles the VISITED LINK behavior of the primary navigation links */
	color: #004460;
}

#primary_nav li a:hover {                               /* styles the HOVER behavior of the primary navigation links */
	color: #004460;
	background-color: #FFF0A3;
}

#primary_nav li a:active {                              /* styles the ACTIVE LINK behavior of the primary navigation links */
	color: #004460;
}
.format_list {                                          /* general Class rule to format list items */
	padding-left: 25px;
	font-size: 14px;
	font-weight: bold;
}
