/* 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;
}

li{
	padding-left: 0.3em;
}

/* Set the bg color, default font family and size here. */
body {
  background: white;	/*#ffff66*/
  font-family:Verdana, Arial, Helvetica, sans-serif;
  font-size: 80%;
}

/* Set the color and font for headings. The bottom margin adds space below the heading. */
h1,h2,h3,h4,h5,h6 {
   color: #000;
   font-family: Tahoma, Verdana, Helvetica, sans-serif;
   margin-bottom: 0.2em;
}

/* Add a bit of padding below all the paragraphs. */
p { padding-bottom: 0.8em; }

/* No borders on any images. */
img	{ border: none; }

/* Links are blue and not underlined. */
a {
	color: #0000FF;
	text-decoration: none;
}

/* Visited links are also blue but just a little lighter. */
a:visited  { color: #0066FF; }

/* Hovered links are green and underlined. */
a:hover {
	color: #ff0000;
	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.#F0F8FF */
#banner	{
  width: 100%;		/* Stretches across the entire width of the browser. */
  background: white url(../images/header-bg.jpg) right no-repeat;	 /*#ffff66 */
  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 */
}

/* *********************************************************************************
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:170px;  
	top: 214px;   	/* Equal to the heights of banner plus banner's border plus 10 */
	left: 0;
	padding: 10px;	/* Adds space around div. */
	font-size: 100%;
    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;
}

/* Background image (shell) appears when the link is hovered over. */
.left-sidebar-1 a:hover	{ background: #FFF ; }

/* 1st div in left sidebar. Green border and bg. */
.left-sidebar-1 {
	border: 1px solid #0000ff;
	background-color: #0000ff;
}

/* 2nd div in left sidebar. Blue border and bg. */
.left-sidebar-2 {
	border: 1px solid #ffcc33;
	background-color: #ffcc33;
	
}

/* 3nd div in left sidebar. Red border and bg. */
.left-sidebar-3 { 		
	border: 1px solid  #FF0000;
	background-color: #FF0000;
}

/* 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 210px 0 170px; 		/* Make the left and right margins big enough  */
	padding: 1em 3em 0em 1em;			/* Add some space between the border and the text. */
	background: #FFFFCC ; /* This is the water image at the top of the main content div. */
	border: 1px solid #000;
			/* Don't need this border since the footer is also black. */
	z-index:500;					/* 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. */
}

#maincontent ul{
	padding-left:20px;
}

#maincontent td{
font-size:95%;
}
/**************************/
/* right sidebar */
#right-sidebar			/* Fixed width, absolutely positioned. Note the z-index. */
{
	position:absolute;
	width: 229px; 		/* 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: 1px solid #000099 ;	/*#FF0000 */
	background: #87CEFA;
	padding: 0.5em;		/* Provides space between the border and the text in the div. */
	font-size: 90%;
	z-index:600; 		/* This z-index higher than the maincontent's z-index so that the rigth sidebar always always sits above the maincontent. */
}

#right-sidebar.img
{
	text-align:center;
}
/**************************/
/* 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: white url(../images/maincontent-bg.jpg) top center no-repeat;
	padding-left: 1em;
	padding-right: 1em;
	padding-bottom: 0.5em;
	padding-top: 4em;
	text-align: left;
	color: #000000;
	border-top:medium #666666;
	border-bottom:medium #666666;
}

/* 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: red;
	text-decoration: none;
	font-weight: bold;
	font-size: 90%;
}

#footer a:hover {
	text-decoration: underline;
	color: black;
}


/**************************/
/* 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;
}