/* GLOBAL RESET ELEMENTS ------------------------------------- */

body, h1, h2, h3, h4, p, ul, li {
	margin: 0px; /* Removes default margin that some browsers add. */
	padding: 0px; /* Removes default padding that some browsers add. */
}

/* GLOBAL LAYOUT ELEMENTS ------------------------------------- */
body {
	color: #000000; /* Sets the text color for the page. */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	text-decoration: none;
}

/* MODULE 1 ------------------------------------- */
.container {
	width: 770px; /* Sets the overall width of the containers within the bands. */
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	font-family: "Times New Roman", Times, serif;
	color: #000000;
	letter-spacing: 1pt;
	font-size: 13px;
	line-height: 28pt;
}
#header {
	color: #FFFFFF;/* Sets header text color to white. */
	background:  url(images/header_bg.jpg);
	padding: 15px 0px; /* Adds breathing room between the header and the elements within it. */
	float: left; /* Floats the header to the left - its child elements, the buttons and search box, will be floated left and right to position them on either side of the header container. */
	width: 100%; /* Gives the floated header a width. */
}
#header ul { /* Sets up an unordered list for the buttons to provide an accessibility feature. */
	padding: 2px; /* Adds 2 pixels of padding within the unordered list. */
	float: left; /* Floats the list to the left. */
	list-style: none; /* Removes the default bullets from the list items. */
}
#header li {
	display: inline; /* Changes list items from block to inline elements so that links flow side by side. */
	margin-right: .25em; /* Adds space to the right of each list item. */
	padding-bottom: .5px; /* Pads the bottom of each list item. */
}
#header a {
	font-size: 70%; /* Sets the font size to 70% of the user's browser preference. */
	color: #FFFFFF; /* Sets link color to gray. */
	text-decoration: none; /* Sets link background color to white. */
	padding: 2px 15px;
	background-image: url(images/header_bg.jpg);
	border: 1px none #B5B5B5;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 10%;
}
#header a:focus, #header a:hover {
	color: #FF00FF; /* Changes text color of links on hover and focus. */
}
#search {
	background: url(images/search_icon.jpg) no-repeat left center;/*Positions the search magnifying glass image as a non repeating, left center decoration. */ 
	margin: 0px; /* Sets the margin of the form to 0.*/
	float: right; /* Floats the search form to the right of the header.*/
	padding-left: 25px; /* Carves out space for the magnifying glass image. */
}
#search label {
	position: absolute; /* Takes the label out of the document flow so that it can be positioned in an exact place off the viewport. */
	top: -10000px; /* Uses a large negative margin to place the text way off screen so that visual users do not see it. */
}

/* MODULE 2 ------------------------------------- */
#masthead {
	background: #F2F2F2 url(images/masthead_bg.jpg) repeat-x;
	margin: 0px;
	clear: both; /* Because there are floats in the header div above it, we need to stop the floating effect to give the masthead elements a clean start. */
}
#masthead p span {
	position: absolute; /* Takes the span (that holds the text for the p element) out of the document flow so that it can be positioned in an exact place off the viewport. */
	top: -10000px; /* Uses a large negative margin to put the text within the p way off screen so that visual users to not see it. */
}

/* MODULE 3 ------------------------------------- */
#content-wrapper {
	float: left; /* Float the content wrapper to the left - floating a wrapper and its child divs allows for independance in block context formatting. */
	width: 770px; /* Sets the width of the content area to 770 pixels. */
	margin-bottom: 20px; /* Adds 20 pixels of space under the content area to give it breathing room before the footer begins. */
	border: 1px dotted #B5B5B5; /* Sets a one pixel, solid, gray border around the content wrapper. */
}
#secondary-content {
	float: left; /* Floats the left column where the accordion widget resides. */
	width: 750px; /* Sets the width of the left column. */
}
#main-content {
	float: left; /* Floats the main column to the left. */
	width: 750px; /* Sets a one pixel, solid, gray border between the content column and the left column. */
	padding-bottom: 20px; /* Adds padding to the bottom of the main content column. */
	border-left-width: thin;
	border-left-style: none;
	border-left-color: #B5B5B5;
}
#main-content h1 {
	font-size: 120%; /* Sets the font size to 120% of the user's browser preference. */
	font-weight: normal; /* Removes the default bolding that the browser puts on heading text. */
	font-variant: small-caps; /* Turns the text into small caps in browsers that support the property. */
	color: #333333; /* Sets the color of the heading text to gray. */
	background: url(images/heading_bg.png) no-repeat; /* Adds the decorative image to the heading. */
	margin-top: 10px; /* Adds space above the heading. */
	margin-bottom: 10px; /* Adds space below the heading. */
	margin-left: 10px; /* Adds space to the left of the heading so that it lines up with the text beneath it. */
	padding-left: 25px; /* Sets a large left padding to carve space for the decorative image. */
}

/* MODULE 4 ------------------------------------- */
#footer {
	color: #FFFFFF;/* Sets header text color to white. */
	background:  url(images/header_bg.jpg);
	padding: 5px 0px; /* Adds breathing room between the header and the elements within it. */
	float: left; /* Floats the header to the left - its child elements, the buttons and search box, will be floated left and right to position them on either side of the header container. */
	width: 100%; /* Gives the floated header a width. */
	border-top:#ace0f0 1px solid; 
	z-index:50; 
	position:fixed; 
	bottom:0px;
}
#footer-wrapper { /* This div is set up for use in faux column technique within the footer. It is the parent container for the three columns, and is needed in order to have a way to give the illusion of a border around and within the the three columns in the footer.*/
	background: #191919 url(images/footer_bg.png) repeat-y; /* Sets the background color, the background image, and the vertical repeat of the image on the footer wrapper. */
	float: left; /* Floats the footer wrapper to the left. */
	width: 770px; /* Assigns a width to the footer wrapper. */
	border: 1px solid #B5B5B5; /* Sets a one pixel, solid, gray border around the footer wrapper. */
}
.column { 
	float: left;/* Floats each column to the left.*/ 
	width: 256px; /* Assigns a width for each column. */
}
.column p { /* This descendant selector sets attributes for paragraphs only in the context of the column class. */
	font-size: 75%; /* Sets the font size to 75% of the user's browser preference. */
	line-height: 1.4; /* Opens up the spacing (leading) between lines of text. */
	padding: 10px; /* Sets 10 pixels of padding all around paragraphs within the column divs. */
}

/* CLEARING WIDGET ------------------------------------- */
.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 */
	font-size: 1px; /* Sets the font size to 1 pixel */
	line-height: 0px; /* Sets line-height to 0 -font and line-height, even if not explicitly on the page, might add diemnsion to the clearing element rather than make it larely invisible */
	clear: both; /* Keeps floated divs from draping over objects beneath them. */
	height: 0px; /* Makes sure the clearing element has no height */
}

/* IMAGES ------------------------------------- */

.lftflt {
  	float: left; /* Moves the image to the left side of its container and allows text to flow around its right side. */
	margin-right: 8px; /* Adds 8 pixels of space to the right of the image so that it does not touch the text */
}
subhead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #666666;
	text-decoration: none;
}
