﻿/* layoutstyles.css */

/* Universal style rule */
*{
  /* Block all browser default margins and padding */
    margin: 0;
    padding: 0;
}
body {
 background: white;
 font-family: Arial, Helvetica, sans-serif;
 text-align:center;
}
#wrapper{
   width: 45em;
   background-color:#FEF380;
/* Set right and left to auto for centering */
   margin: 0 auto;
     /* Required for absolutely-positioned layout only */
  position:relative;
}
#header{
  position:relative;-
}
/* Fixes the mysterious image gap */
#header img{
  display:block;
}
#header a{
  position:absolute;
  text-decoration:none;
  color:#000;
  font-size:1em;
  border:0:
}
/* Unvisited and visited links in header bar */
#header a:link, #header a:visited {
  color:#fff;
}
/* Hover links in header bar */
#header a:hover{
  color:#FEF282;
}
/* Active link in header bar */
#header a:active{
  color:#95D775;
}
#leftcolumn{
/* Remember, content left margin must match this width */
 width:9.5em;
 text-align:center;
 background-color:#FEF380;
  /* For absolutely-positioned leftcolumn */
  position:absolute;
  top:5.35em; /* Same as branding div height */
  left:0;
}
/* Applies to images in the leftcolumn div */
#leftcolumn img{
  width:90%;
}
/* Navbar division */
#navbar{
  background-color:#aaa;
  /* Left margin must match leftcolumn width */
  background:#aaa url(images/navbak.jpg) repeat-x center;
  height:2em;
    /* For absolutely-positioned navbar */
  position:absolute;
  top:5.35em; /* Same as branding div height */
  left:9.5em; /* Same as leftcolumn width */
  width:35.5em; /* Layout width minus leftcolumn width */
}
/* Remove bullets from ul in the navbar */
#navbar ul{
  list-style-type:none;
}
/* List items in the navbar */
#navbar li{
  float:left;
  /* Required for drop-down menus */
  position:relative;
}
/* Applies to navbar links, unvisited and visited */
#navbar a, #navbar a:link, #navbar a:visited{
  text-decoration:none;
  font-family:Verdana, Geneva, Arial, Sans-Serif;
  font-size:80%;
  color:#000;
  background:#aaa url(images/navbak.jpg) repeat-x center;
  display:block;
  height:2em;
  width:7.1em;
  border-right:solid 1px #ddd;
  line-height:2em;
  text-align:center;
  outline-style:none;
}
/* Navbar hover, active, and current page links */
#navbar a:hover, #navbar a:active, #navbar li.selected a:link, #navbar li.selected a:visited{
  background:#ddd url(images/navhover.jpg) repeat-x center;
  color:#000;
}
/* Drop-down menu styles */
/* Applies to drop-down menus in navbar */
#navbar li ul{
  position:absolute;
  z-index:100;
  visibility:hidden;
}
/* Make drop-down visible on navbar hover */
#navbar li:hover ul, #navbar li a:hover ul{ /* IE6 hack */
  visibility:visible;
  top:1.6em;
  left:0;
}
/* Applies to links on the drop-down menu */
#navbar li:hover ul li a, #navbar li a:hover ul li a{ /* IE6 hack */
  background:#ccc; /* Removes background image */
  color:#000;
  text-align:left;
  display:block;
  width:10em;
  padding:0 0 0 1em;
  height:auto;
}
/* Hover on drop-down menu links */
#navbar li:hover ul li a:hover, 
#navbar li a:hover ul li a:hover{ /* IE6 hack */
  background: #aaa;
  color:#000;
}
/* IE6 hack applies to its table drop-down */
#navbar table {
  margin:-1px;
  border-collapse:collapse;
  position:absolute;
  top:0.5em;
  left:0;
  z-index:100;
}
#content{
/* Left margin must match leftcolumn width */
  margin-left:9.5em;
  background: #CCCCCC url(images/ewa.gif);
  color:#000;
  text-align:left;
  padding:2em 10px 10px 20px;
}
/* Styles h1, h2, and h3 style rules in the content division */
#content h3{
  font-family: Charcoal, Impact, sans-serif;
  color:#806659;
  font-weight:normal;
  font-style:italic;
  font-variant:small-caps;
  letter-spacing:0.08em;
}
#content h2{
  font-family: Charcoal, Impact, sans-serif;
  color:#806659;
  font-weight:normal;
  font-style:italic;
  font-variant:small-caps;
  letter-spacing:0.08em;
}
#content h1{
  font-family: Charcoal, Impact, sans-serif;
  color:black;
  font-weight:normal;
  font-style:italic;
  font-variant:small-caps;
  letter-spacing:0.08em;
}
/* Size h1 headings in the content division */
#content h1{
  font-size:2em;
  text-align:center;
}
/* Size h2 headings in the content division */
#content h2{
  font-size:1.5em;
}
/* Size h3 headings in the content division */
#content h3{
  font-size:1.25em;
}
/* Applies to all lists in the content division */
#content ol{
  padding:10px 0 10px 40px;
}
#content ul{
  padding:10px 0 10px 40px;
}
/* Page footer style */
#footer{
     width:100%;
     clear:both;
     background-color:#FEF380;
     font-size:1em;
     color:black;
     height:2em;
}    
#footer ul{
	padding:0;
	margin:0;
	height:2em;
	width:100%; 
}

/* Unordered list in footer */
#footer li{
	float:right;
	width:25%;
	list-style-type: none;
	text-align:center;
	font-family:arial black, sans-serif; 
	font-size:1em;
}
/* Unvisited links (no underline) */
#footer a:link{
    text-decoration: none; 
    color:black;
}
/* Visited links (no underline) */ 
#footer a:visited{
    text-decoration: none;
}
/* Hover links (underline) */ 
#footer a:hover{
   color: #95D775; 
   text-decoration: underline;
}

