/* Sets element margins, padding, and border to 0 to even out browser differences when adding desired values later. */
html, body, div, p, h1, h2, h3, h4, h5, h6, blockquote, 
ol, ul, li, dl, dt, dd, td, form, fieldset, a,
#wrapper, #banner  
{
	margin: 0;
	padding: 0;
	border: 0;
}

/* Set the bg color, default font family and size here. */
body {
  background: #FFFF00;	
  font-family:Verdana, Arial, Helvetica, sans-serif;
  font-size: 100%;
  line-height: 130%;
}

/* Set the color and font for headings. The bottom margin adds space below the heading. */
h1,h2,h3,h4,h5,h6 {
   color: #000099;
   font-family: Georgia, "Times New Roman", Times, serif;
   margin-bottom: 0.2em;
}
/* control the space between the lines of the largest heading*/
h1 {
	line-height: 120%;
}

/* Add a bit of padding below all the paragraphs. */
p { padding-bottom: 0.8em; }

/* No borders on any images. */
img	{ border: none; }

/* Links are red and not underlined. */
a {
	color: #990000;
	text-decoration: none;
}

/* Visited links are also red but just a little lighter. */
a:visited  { color: #FF6699;
}

/* Hovered links are green and underlined. */
a:hover {
	color: #006600;
	text-decoration: underline;
}

/* This div wraps all three columns plus the banner, but doesn't include the footer. */
#wrapper {
  width: 100%;		/* Ensures that we use the entire width of the browser. */
}

/* This div has the page's H1 and header image. Note the z-index. */
#banner	{
	width: 100%;		/* Stretches across the entire width of the browser. */
	padding-left: 100px;
  background-color: #000099; /*url(../images/header-bg.jpg) right no-repeat;*/	/* This is the image of the  colored shells (right side). */
  height:200px;		/* Needs to be big enough to show the header image that's in the H1. */
	z-index:400; 		/* This z-index is lower than the maincontent's z-index so that the banner always sits behind the maincontent */
	height: 260px;
}



/* *********************************************************************************
The area between the banner and footer is occupied by 3 div's that sit side-by-side: 
 left-sidebar	Left side. 	Fixed width and absolutely positioned. Contains other divs that act like pods for content.
 maincontent	Center.		Liquid width. Takes whatever is left over after placing the left and right sidebars.
 right-sidebar	Right side.	Fixed width and absolutely positioned. 
***********************************************************************************/

/**************************/
/* This div is fixed width and absolutely positioned. It contains additional div's. Note the z-index. */
#left-sidebar {
	position:absolute;
	width:200px;  
	top: 214px;   	/* Equal to the heights of banner plus banner's border plus 10 */
	left: 0;
	padding: 10px;	/* Adds space around div. */
	font-size: 90%;
    z-index:600; 	/* This z-index higher than the maincontent's z-index so that the left sidebar content                       always sits above the maincontent */
}

/* All the sidebar div's share these rules. */
.left-sidebar-all {
	margin-top: 5px;
	color: #333;
	line-height: 1.25em;
	background: #FFF;
}

/* The title in each of the sidebar div's has a H3. */
.left-sidebar-all h3 {
	color: #FFF;
	padding: 0.2em;
	font-size: 100%;
}

/* The lists and paragraphs in each of the sidebar div's share these rules. */ 
.left-sidebar-all ul,	
.left-sidebar-all p {	
	background-color: #FFF;	/* Need to set the list's bg color to white since the div that the list sits in has a diff bg color. */
	padding: 10px;
}

/* No bullets on our lists. */
.left-sidebar-all ul {	
	list-style: none;
}

/* Make the links block level selectable. */
.left-sidebar-all li a 	{	
	width: 100%; 	/* needed by IE6 */
	display: block;
	margin-bottom: 10px;
	color: #900;
}

/* Background image (shell) appears when the link is hovered over. 
.left-sidebar-1 a:hover	{ background: #FFF url(../images/menu-bullet.jpg) right no-repeat; }*/

/* 1st div in left sidebar. Green border and bg. */
.left-sidebar-1 {
	border: 2px solid #006600;
	background-color: #006600;
}
.left-sidebar-4 {
	background-color: #6666FF;
	border: 2px solid #6666FF;
}


.left-sidebar-5 {
	border:  2px solid #660066;
	background-color: #660066;
	
}

.left-sidebar-6 {
	border:  2px solid #663300;
	background-color: #663300;

}
	
	
/* 2nd div in left sidebar. Blue border and bg. */
.left-sidebar-2 { 
	border: 2px solid #000099;
	background-color: #000099;
}

/* 3nd div in left sidebar. Red border and bg. */
.left-sidebar-3 { 		
	border: 2px solid #990000;
	background-color: #990000;
}

.left-sidebar-8 {
	border:  2px solid #FF00FF;
	background-color:  #FF00FF;
}

.left-sidebar-7 {
border: 2px solid #FF9900;
background-color:#FF9900;
}

/* Default link styling overridden for the 3rd sidebar. */
.left-sidebar-3 a,
.left-sidebar-3 a:visited {
	color: #333;
	text-decoration: none;
}
.left-sidebar-3 a:hover {
	text-decoration: underline;
}

/**************************/
/* This is the center div. */
#maincontent {
	position:relative; 
	width:auto;						/* This causes the width to be liquid. */
	top: -30px;						/* The negative top value causes the maincontent div to overlap the                                       banner div. */
	margin: 0 170px 0 190px; 		/* Make the left and right margins big enough  */
	padding: 50px 60px 30px 60px;			/* Add some space between the border and the text. */
/*background: #FFF url(../images/maincontent-bg.jpg) top center no-repeat;*/ 
	border: 2px solid #006600;
	border-bottom: none;			/* Don't need this border since the footer is also black. */
	z-index:500;
	background-color: #FFF;					/* This z-index is lower than for the left and right side bars so the                                       main content sits under the side bars. And this z-index is higher                                       than the banner's z-index so the main content is above the banner. */
	/* height: 500px; */ 			/* Specify a height if your sidebar content is longer than your main                                       content. */

}

/*simple styles for the excerpt popup links and windows*/
.excerpt_link {
	color: #339933;
	background-color: #FFF;
	font-weight: bold;
	text-decoration: underline;
	cursor: pointer;
	font-size: .8em;
}
#excerpt {
	background-color: #FFF;
	padding: 15px;
}


/**************************/
/* right sidebar */
#right-sidebar			/* Fixed width, absolutely positioned. Note the z-index. */
{
	position:absolute;
	width: 189px; 		/* 1px less than the right margin of main content (1px is the width of the maincontent;'s right border). */
	top: 219px;   		/* Equal to the heights of banner plus banner's border plus 15 (for extra space above the div). */
	right:0;			/* Div sits right next to the right side. No extra space here. */
	border: 5px solid #6666FF;
	background: #FFF;
	padding: 0.5em;		/* Provides space between the border and the text in the div. */
	font-size: 80%;
	z-index:600; 		/* This z-index higher than the maincontent's z-index so that the rigth sidebar always always sits above the maincontent. */
}

/**************************/
/* The footer div stretches across the page. */
#footer	{
	position: relative;
	top: -30px;			/* Needs to be the same value at the top rule for maincontent. */
	background: #000099;
	padding: 1em;
	text-align: center;
	color: #FFF;
}

/* The images in the footer act as separators for the links. */
#footer img {		
	vertical-align: bottom;
}

/* The footer links are green, and underlined when hovered over. */
#footer a,
#footer a:visited {
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	font-size: 100%;
}

#footer a:hover {
	text-decoration: underline;
}


/**************************/
/* skip link is positioned off the screen, but still allows screen readers to see it */
#skiplinks {
	position: absolute;
  	margin-left: -1000px;
}

/* don't display the title image used for printing */
.printtitle {
	display: none;
}
