/* 
Base style file

  This file should contain a basic set of css descriptions for the entire site.
  Specific apps within the site can provide their own specific css if they like
  But this file should provide a consistent clean feel to the entire site by default.
*/

body {
  background-color: #f8f8f8;
  margin: 8px 12px 12px 12px;
  font-size: 0.8em;
  font-family: sans;
}

span.help_link {
  font-size:smaller;
  margin-left:10px;
  background-color:inherit;
  color: #444;
  text-decoration: none;
}

span.help_link:hover {
  background-color: inherit;
  color: #000;
  text-decoration: underline;
  cursor: pointer;
}

a, a:link, a:visited {
  background-color: inherit;
  color: #444;
  text-decoration: none;
}

a img {
  border: 0px;
}

a:hover{
  background-color: inherit;
  color: #000;
  text-decoration: underline;
}

div#header {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  width: 900px;
  height: 160px;
  background-image: url(/media/site_images/header_bg.png);
  background-position: top left;
  background-repeat: no-repeat;
  font-size: 60px;
  font-family: Georgia, "Time New Roman", Serif;
  padding-left: 0px;
  padding-right: 0px;
  color: #F7E7CE; /* F7E7CE is champagne */
}

  div#header_content_wrapper {
    width: 695px;
    height: 160px;
    padding-left: 180px;
    line-height: 160px;
    display: table-cell; /* so we can vertically center */
  }

  div#header_content_wrapper div, div#header_content_wrapper img {
    vertical-align: middle;
  }

div#menubar {
  width: 900px;
  height: 25px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-left: 8px;
  padding-right: 8px;
}

  ul#menubase {
    padding: 0;
    margin: 0;
    list-style-type: none;
  }

  ul#menubase li {
    float: left;
    position: relative;
    width: auto;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-left: 2px solid #aaa;
    font-weight: bold;
    background-color: #fff;
    color: #000;
  }

  ul#menubase li a, ul#menubase li span {
    height: 25px;
    text-decoration: none;
    display: block;
    color: #000;
    padding-left: 5px;
    padding-right: 8px;
  }

  ul#menubase a:hover {
    background-color: #eee;
  }

  ul#menubase li ul {
    display: none;
    width: 160px;
    position: absolute;
    z-index: 100;
    list-style-type: none;
    padding: 0px;
    margin-left: -2px;
    border-left: 2px solid #aaa;
    border-right: 2px solid #aaa;
    border-bottom: 2px solid #aaa;
    background-color: #fff;
  }
 
  ul#menubase li ul li {
    width: 160px;
    padding: 0px;
    margin: 0px;
    border-style: none;
  }

  ul#menubase li:hover ul {
    display: block;
  }


div#content {
  width: 930px;
  max-width: 935px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-color: white;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-top: 15px;
  border: 2px solid #aaa;
  overflow: hidden;
}

div.site_welcome {
  clear: both;
  font-size: 15pt;
  color: #333;
  width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

div.site_welcome_text {
  width: 440px;
}

div.captioned_image {
  margin-left: 8px;
  margin-right: 8px;
  padding: 4px 4px 4px 4px;
  border: 1px solid #aaa;
  text-align: center;
}

  div.captioned_image span {
    color: #444;
    font-size: 12pt;
    font-weight: bold;
    display: block;
  }

div#footer {
  width: 600px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  border-top: 2px solid #aaa;
  text-align: center;
  clear: left;
}
