/* layoutstyles.css */

/* Universal style rule */
*{
  /* Block all browser default margins and padding */
    margin:0;
    padding:0;
  /* Temporary borders */
  /* border:dashed 1px #f00; */
}

body{
  height:100%;
  background-color: #FFF;
  font-family: Arial, Helvetica, sans-serif;
}

#wrapper{
   height:100%;
   width: 80em;
   background-color: #FFF;
/* Put 20px margin above the wrapper */
/* Set right and left to auto for centering */
   margin: 20px auto 0 auto;
} 

/************* Branding division styles ****************/

/* Make branding a positioned element, but don't move it */
#branding{
  position:relative;
  height:10em;
} 

/* Absolutely position links in the branding division */
#branding a{
  position:absolute;
  text-decoration:none;
  color:#fff;
  font-size:0.8em;
}

#branding img
{
position:absolute;
left:500px;
top:10px;
}

/* Unvisited and visited links in branding bar */
#branding a:link, #branding a:visited {
  color:#000;
}

/* Hover links in branding bar */
#branding a:hover{
  color:#0f0;
}

/* Active link in branding bar */
#branding a:active{
  color:#1bb498;
}

/* Fixes the mysterious image gap */
#branding img{
  display:block;
}

/************* Leftcolumn division styles ****************/

#leftcolumn{
  /* Remember, content and navbar left 
  margins must match this width */
  background-color: #141A16;
  width:12em;
  height:30em;
  float:left;
  /* Center images and text inside this div */
  text-align:center;  
}

/* Applies to images in the leftcolumn div */
#leftcolumn img{
  width:65%;
}


/************* Navbar division styles ****************/

/* Navbar division */
#navbar{
  /* Left margin must match leftcolumn width */
  margin-left:12em;
  background:#aaa url(images/navbak.jpg) repeat-x center;
  height:1.6em;
}

/* 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:6em;
  border-right:solid 1px #ddd;
  text-align:center;
  line-height:2em;
  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 */
#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{
  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;
}

/************* Content division styles ****************/

#content{
/* Left margin must match leftcolumn width */
 margin-left:12em;
 background-color:#fff;
 color:#000;
 padding:10px 20px;
}

/* 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; 
}

/* Applies to all lists in the content division */
#content ul, #content ol{
  padding:10px 0 10px 40px; 
}


#content p{
  line-height:1.5em;
}

#content h2{
  font-weight:bold;
  font-style:regular;
  font-variant:normal;
}

#content table li{
  line-height:2em;
}

#content img{
  position:relative;
}

/* 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 division styles ****************/

#footer{
  background-color:#fff;
  border-top: solid 2px #117b6f;
  text-align:center;
  padding:10px 20px;
}

#footer table{
  float:right;
  background-color:#000;
  height:5em;
} 

#footer a:link,
#footer a:visited{
/* No underline on links */
  text-decoration:none;
  font-weight:bold;
  color:#000;
  padding:10px 20px;
}

#footer a:hover,
#footer a:active{
  color:#000;
  border: dotted 1px #333;
}

.hotkey{
  text-decoration:underline;
}


/************* Misc styles ****************/

/* Captioned images */ 
div.captionpic{
   width:9em;
   padding:0.25em;
   margin:0.25em 0.25em 0 0;
   float:left;
   border:solid 1px #000;
   font-family: Arial, Helvetica, Sans-Serif;
   font-size:0.8em;
   color:#555;
   text-align:center; 
}
 
/* Applies to the image inside a captionpic div */
div.captionpic img{
   width:80%;
   border:none;
} 

acronym, abbr{
  border-bottom:dotted 1px #333;
  cursor:help;
}


/************* Printed Page styles ****************/

@media print{
/* Start printer-friendly styles */

/* Make wrapper the full page width */
#wrapper{
width:100%;
}

/* Hide leftcolumn, navbar,and footer */
#leftcolumn,
#navbar,
#footer{
display:none;
}

/* Get rid of content div margins and
padding. Use a different font for print */
#content{
margin:0;
padding:0;
font-family:'Century Schoolbook', Times, Serif;
font-size:1em;
}
/*End printer-friendly styles */
}
