/* ZERO OUT GLOBAL ELEMENTS --------------------------------- */
/* --------------------------------------------------------- */

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

/* SET THE BODY STYLES ------------------------------------- */
/* --------------------------------------------------------- */

body {
	font: 100% "Lucida Grande", Verdana, sans-serif; /* Sets the default size of the text to 100% of the user's default. Also sets the default font families for text throughout the page. */
	color: #993300; /* Sets the font color. */
	text-align: center; /* Centers the page in various versions of WinIE5. */
	background-color: #999999;/* Sets the background color. */
}

/* STYLE THE MAIN WRAPPER DIV ------------------------------- */
/* --------------------------------------------------------- */

#wrapper {
  text-align: left; /* Resets the text alignment to left to override what was set for versions of WinIE5. */
  margin: 0px auto; /* Centers the content of the page within the window in all but versions of WinIE5. */
  width: 750px; /* Sets the overall width of the layout. */
}

/* STYLE THE HEADER DIV ------------------------------------ */
/* --------------------------------------------------------- */

#header {
	height: 140px; /* Sets the height of the header to the same height as the background image. */
	background-color: #999999;
	background-repeat: no-repeat;
	background-position: center top;
}

#header h1 {
	padding-left: 415px;
}

#header span {
	position: absolute; /* Takes the span (that holds the text for the H1 text) out of the document flow so that it can be positioned in an exact place on (or off) the page. */
	left: -3000px; /* Puts the text within the h1 way off screen so that visual users to not see it. */
}

/* STYLE THE NAVIGATION DIV ---------------------------------*/
/* --------------------------------------------------------- */

#nav {
	width: 750px;/* Adds a non repeating background image to the nav DIV. */
	height: 15px; /* Sets the height of the DIV to the height of the background image. */
	background-color: #000066;
	padding-top: 5px;
	padding-bottom: 5px;
	
}
#nav ul {
  list-style-type: none; /* Removes default list bullets. */
  font-size: 100%;  /* Sets the font size to 100% of the user's browser preference, */
  text-align: center; /* Centers items in nav list. */
}
#nav li {
  display: inline; /* Changes list items from block to inline elements so that links flow side by side. */
}

#nav li a:link, #nav li a:visited {
  color: #CCCCCC; /* Sets color of unvisited and visited links. */
  text-decoration: none; /* Removes default underline on links. */
  padding: 5px; /* Adds 5 pixels of padding around the links. */
  margin-right: 7px; /* Adds space to the right of each list item. */
  margin-left: 7px; /* Adds space to the left of each list item. */

}
#nav li a:hover, #nav li a:active, #nav li a:focus {
  color: #009900; /* Changes text color of links to red on hover, activation, and focus. */
}

/* STYLE THE INNER WRAPPER THAT HOLDS THE COLUMNS ---------- */
/* --------------------------------------------------------- */

#innerwrapper {
	float: left; /* Floating all columns and their container helps avoid IE bugs.*/
	width: 750px; /* Sets the width of the column container to 700 pixels, the total width of the layout. */
	padding: 1px 0px; /* This odd padding is added to the top and bottom of the DIV to avoid the escaping margin effect. */
	background-color: #999999;
	background-image: url(/Assets/Images/background_90.jpg);
}

/* STYLE THE CONTENT COLUMN --------------------------------- */
/* --------------------------------------------------------- */

#content {
	float: left; /* Floats the content DIV to the left of the layout. */
	width: 750px;
	margin-bottom: 10px;
}
#content ul {
	list-style-type: square;
	text-align: left;
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 5px;
	margin-right: 10px;
	margin-left: 60px;
}
#content li {
	text-indent: 5px;
}
#content h2 {
	padding-top: 5px; /* Adds 5 pixels of padding to the top of the h2 element. */
	padding-right: 5px; /* Adds 5 pixels of padding to the right of the h2 element. */
	padding-bottom: 5px; /* Adds 5 pixels of padding to the bottom of the h2 element. */
}
#content h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 140%;
	margin-bottom: 20px;
	text-align: center;
	text-decoration: none;
	margin-top: 20px;
}
#content h4 {
	font-size: 120%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-bottom: 10px;
	margin-left: 20px;
}
#content h5 {
	font-size: 160%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 20px;
	margin-left: 20px;
	font-weight: bold;
}
#content h6 {
	font-size: 160%;
	margin-bottom: 2px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

#content span {
	position: absolute; /* Takes the span (that holds the text for the H2 text) out of the document flow so that it can be positioned in an exact place on (or off) the page. */
	left: -3000px; /* Puts the text within the h1 way off screen so that visual users to not see it. */
} 


#content p {
	font-size: 100%;  /* Sets the font size to 85% of the user's browser preference, */
	margin-top: 15px; /* Places 5 pixels of margin above content paragraphs. */
	margin-right: 10px; /* Places 10 pixels of space between the right edge of the content paragraphs and the right edge of the container. */
	margin-left: 20px; /* Places 20 pixels of space between the left edge of the content paragraphs and the left edge of the container. */
	line-height: 1.1; /* Opens up the spacing (leading) between lines of text. */
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#content table {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	margin-top: 10px;
	margin-left: 20px;
	margin-right: 20px;
}

#sidebar {
	float: left; /* Floats the sidebar to the left within its container. */
	width: 200px; /* Sets the width of the sidebar to 200 pixels. */
	margin-top: 20px;
}

#sidebar h2 {
	font-size: 100%;  /* Sets the font size to 100% of the user's browser preference, */
	font-weight: normal; /* Removes the default bolding that the browser puts on heading text. */
	margin-top: 20px; /* Adds 20 pixels of top margin so that the baseline of the  sidebar h2 text starts at the baseline of the Welcome image. */
	margin-right: 10px; /* Adds some space on the right of the h2 to make sure it doesn't touch the edge of the container. */
	margin-left: 10px; /* Adds some space on the left of the h2 to make sure it doesn't touch the left edge of the container. */
}

#sidebar p {
	font-size: 80%;  /* Sets the font size to 80% of the user's browser preference, */
	margin-top: 10px; /* Adds top margin to the paragraph text so that the baseline of the first line is even with the first line of text in the first content paragraph. */
	margin-right: 10px; /* Adds some space on the right of the h2 to make sure it doesn't touch the edge of the container. */
	margin-left: 10px; /* Adds some space on the left of the h2 to make sure it doesn't touch the left edge of the container.*/
}

#sidebar ul {
	list-style-type: none; /* Removes default list bullets. */
	font-size: 90%;  /* Sets the font size to 100% of the user's browser preference, */
	text-align: left;
}
#sidebar li {
	display: marker;
	line-height: 2;
}

#sidebar li a:link, #sidebar li a:visited {
  color: #8C8C54; /* Sets color of unvisited and visited links. */
  text-decoration: none; /* Removes default underline on links. */
  padding: 5px; /* Adds 5 pixels of padding around the links. */
  margin-right: 7px; /* Adds space to the right of each list item. */
  margin-left: 7px; /* Adds space to the left of each list item. */

}
#sidebar li a:hover, #sidebar li a:active, #sidebar li a:focus {
  color: #FF0000; /* Changes text color of links to red on hover, activation, and focus. */
}

#footer {
	height: 24px;
	background-color: #CCCCCC;
}
#footer p {
	font-size: 70%;  /* Sets the font size to 70% of the user's browser preference, */
	text-align: center; /* Aligns footer paragraph text in the center of the DIV. */
	padding-top: 5px;
}

#footer p a:link {
	text-decoration: none;
	color: #0000FF;
	font-weight: bold;
}

/* CLASSES FOR IMAGES AND CLEARING FLOATS -------- */
/* --------------------------------------------------------- */

.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 */
}

.lftflt {
	float: left; /* Moves the image to the left side of its container and allows text to flow around its right side. */
	margin-right: 10px;
	margin-left: 10px;
}

.rgtflt {
	float: right; /* Moves the image to the right side of its container and allows text to flow around its left side. */
	margin-left: 8px; /* Adds 10 pixels of space to the right of the image so that it does not touch the text */
	margin-right: 5px;
}
