/* layoutstyles.css */

/* Universal style rule */
*{
  margin: 0;
  padding: 0;
  /* Temporary borders */
  /* border: dashed 1px #f00; */
}

body {
  background-color: !#00A8EC;  /* white */
  font-family: Arial, Helvetica, sans-serif;
}

#wrapper{
  width: 40em;
/*  background-color: !#00A8EC;*/ /* white */
  background-color: #CCFFFF;
  /*background-color: #B0FFF0; */ /* light turcoise */
  /* Put 20px margin above the wrapper */
  /* Set right and left to auto for centering */
  margin: 20px auto;
} 

/********** Major layout divisions **********/
#branding{
  /* For absolutely-positioned hyperlinks */
  position:relative;
} 

/** branding division hyperlinks **/
#branding a{
  /* Postions are set in tags in layout.htm */
  position:absolute;
  text-decoration:none;
  color:#000;
  font-size:0.8em; 
}

#branding a:link, #branding a:visited{
  color:#0ff;
}

#branding a:hover{
  color:#0f0;
}
#branding a:active{
  color:#1bb498;
}

/* Fixes the mysterious image gap */
#branding img{
  display:block;
}

#leftcolumn{
  /* Remember, content and navbar margin-left must match this width */
  width:10em;
  float:left;  /* keeps the left column to the left of content and navbar */
}

/* Remove bullets from  in the navbar */
#leftcolumn li{
  list-style-type:none;
  /*margin-left:.3em;*/
}

/* Applies to leftcolumn links, visited and unvisited */
#leftcolumn a,
#leftcolumn a:link,
#leftcolumn a:visited{ 
  text-decoration:none;
  font-family:Verdana, Geneva, Arial, Sans-Serif;
  font-size:80%;
  color:#000;
  /*background-color:#aaa;*/ /* gray */
  display:block;
  height:2em;
  width:11em;
  text-align:center;
  line-height:2em;
  /* remove strange dotted boarder that appears after clicking */
  outline-style:none;
}

/* leftcolumn hover and active links */
#leftcolumn a:hover,
#leftcolumn a:active{
  background-color:#000;
  color:#fff;
}

#navbar{
  background-color:#aaa;  /* gray */
  /* margin-left must match leftcolumn width */
  margin-left:10em;
  height:1.6em;
}

/* List items in the navbar */
/* Remove bullets from ul in the navbar */
#navbar ul{
  list-style-type:none;
}

#navbar li{
  float:left;
}

/* Applies to navbar links, visited and unvisited */
#navbar a,
#navbar a:link,
#navbar a:visited{ 
  text-decoration:none;
  font-family:Verdana, Geneva, Arial, Sans-Serif;
  font-size:80%;
  color:#000;
  background-color:#aaa;
  display:block;
  height:2em;
  width:6em;
  border-right:solid 1px #ddd;
  text-align:center;
  line-height:2em;
  /* remove strange dotted boarder that appears after clicking */
  outline-style:none;
}

/* Navbar hover and active links */
#navbar a:hover,
#navbar a:active{
  background-color:#000;
  color:#fff;
}

#content{
  /* margin-left must match leftcolumn width */
  margin-left:10em;
  background-color:#fff;
  color:#000;
  padding:10px 20px;
}

/* Applies to paragraphs in the content division */
#content p{
  line-height:1.5em;
}

/* Applies to all lists in the content division */
#content ul, #content ol{
  padding:10px 0 0 40px; 
}

/* Applies to all list items in the content division */
#content li{
  margin-bottom:10px;
}

/* Styles h1, h2, and h3 style rules in the content division */
#content h1, #content h2, #content h3{
  font-family: Charcoal, Impact, sans-serif;
  color:#000;
  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;
}

/* 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;
  font-style:normal;
}

#footer{
  margin-top:1em;
  height:2em;
  margin-bottom:1em;
  text-align:center;
}

#footer ul{
  list-style-type:none;
}

#footer li{
  float:right;
}

/* Applies to footer links, visited and unvisited */
#footer a,
#footer a:link,
#footer a:visited{ 
  text-decoration:none;
  font-family:Verdana, Geneva, Arial, Sans-Serif;
  font-size:80%;
  color:#000;
  background-color:#cff;
  display:block;
  height:2em;
  width:10em;
  border-left:solid 1px #ddd;
  text-align:center;
  line-height:2em;
  /* remove strange dotted boarder that appears after clicking */
  outline-style:none;
}

/* footer hover and active links */
#footer a:hover,
#footer a:active{
  background-color:#000;
  color:#fff;
}