/* 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: #fff;	
  font-family:Verdana, Arial, Helvetica, sans-serif;
  font-size: 90%;
}

/* Set the color and font for headings. The bottom margin adds space below the heading. */
h1,h2,h3,h4,h5,h6 {
   color: #039;
   font-family: Verdana, Arial, Helvetica, sans-serif;
   font-style:italic;
   margin-top: 0.8em;
   margin-bottom: 0.5em;
   }

/* Add a bit of padding below all the paragraphs. */
p,li { padding-bottom: 0.8em;
	color:#039;
	font-size:80%;
	}

li { padding-bottom: 0.8em;
	color:#039;
	font-size:80%;
	 list-style-position: inside;
	 }

ul {list-style-type: none;
margin-left: 0;
padding-left: 1em;
     }


/* Codes em element within a paragraph as bold and italic. */
p em {
	font-weight:bold;
	font-style:italic;
	}
	
/* No borders on any images. */
img	{ border: none; }

/* Default link styling for the document - bright blue looks OK on light or dark background. */
a,a li,
a:visited {
	color: #CC9900;
	text-decoration: none;
}


a:hover,a li:hover {
	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. */
  background: #333 url(../images/main_banner.jpg) no-repeat center;	/* This is the faded black & white student collage at top. */
  height:150px;		/* 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 */
}

.shadow {
	height: 1em;
	filter: Shadow(Color=#000, 	
			Direction=135, 
			Strength=5);
			z-index:500;
}

/* *********************************************************************************
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: 164px;   	/* 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 {
	color:#000;	
	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;
}

/* Links are brown/gold and not underlined. */
.left-sidebar-1 li a {
	color: #996600;
	text-decoration: none;
}

/* Visited links are also brown/gold but just a little lighter. */
.left-sidebar-1 li a:visited  { color: #CC9900; }

/* Background image (fs logo) appears when the link is hovered over. */
.left-sidebar-1 li a:hover	{
	background: #FFF url(../images/logo_bullet.jpg) right no-repeat;
	text-decoration: underline;
}

/* 1st div in left sidebar. Green border and bg. */
.left-sidebar-1 {
	border: 2px solid #069;
	background-color: #069;
}

/* 2nd div in left sidebar. Blue border and bg. */
.left-sidebar-2 { 
	border: 2px solid #c96;
	background-color: #c96;
}

/* 3nd div in left sidebar. Red border and bg. */
.left-sidebar-3 { 		
	border: 2px solid #066;
	background-color: #066;
}

/* Default link styling overridden for the 3rd sidebar. */
.left-sidebar-3 a {
	color: #663399;
	text-decoration: none;
}

.left-sidebar-3 a:visited {
	color: #CC66CC;
	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 170px; 		/* Make the left and right margins big enough  */
	padding: 2em 4em 0 2em;			/* Add some space between the border and the text. */
	background: top center no-repeat; /* This is the water image at the top of the main content div. */
	border-bottom: none;			/* 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. */
}

#mainnav a{					/*Sets global view values for nav buttons. */
	color:#FFFFFF;
	font-weight: bold;
	padding: 3px;
	}

#mainnav a:hover, a:focus{			/*Sets global dynamic view values for nav buttons. */
	text-decoration:none;
}

#mainnav li {
display:inline;
}

a.mainnav1 {
     background-color: #066;
     }

a.mainnav1:hover, focus {
     background-color: #396;
     }

a.mainnav2 {
     background-color: #66c;
     }

a.mainnav2:hover, focus {
     background-color: #99f;
     }

a.mainnav3 {
     background-color: #c96;
     }

a.mainnav3:hover, focus {
     background-color: #fc9;
     }

a.mainnav4 {
     background-color: #069;
     }

a.mainnav4:hover, focus {
     background-color: #09f;
     }
	
/**************************/
/* 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: 169px;   		/* 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: 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. */
}

/* Sets font for right sidebar to black. */
#right-sidebar	h3{
color:#069;
}

/* Sets font for right sidebar to black. */
#right-sidebar	p{
color:#000;
}

/**************************/


/* The following image classes allow for floating images within an article paragraph. */
.leftimage{
float: left;
margin: 0 10px 20px 0;
border: 1px solid #000000;
}

.rightimage{
float: right;
margin: 0 0 20px 15px;
border: 1px solid #000000;
width: 150px;
}
/**************************/

/* 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: #000;
	padding: 1em;
	text-align: center;
	color: #999999;
}

/* 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 {
	text-decoration: none;
	font-weight: bold;
	font-size: 90%;
	vertical-align:bottom;
}

#footer a:hover {
	text-decoration: underline;
}

#footer h5 {
	color: #fff;
	font-weight: bold;
	font-size: 90%;
	font-style: italic;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

/**************************/
/* 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;
}
