/*
 * Common Styles for all site variations.
 */

body
{
  background-color: #222222;
}

div.content
{
  background-color: #FFFFFF;
  padding: 5px;
  margin: auto;
}

div.banner
{
  margin: auto;
  text-align: right;
  position:relative;
  padding: 5px;
  height: 89px;
  font-size: 80px;
}

div.banner canvas
{
  z-index: -100;
  width: 100%;
}

div.banner canvas, div.banner img
{
  position:absolute;
  top:0;
  left:0;
  height: 89px;
}


div.footer
{
  position:relative;
  padding: 5px;
  margin: auto;
  margin-top: 10px;
  text-align: right;
}

div.footer canvas
{
  z-index: -100;
  width: 100%;
  position:absolute;
  top:0;
  left:0;
  height: 50px;
}

span.address
{
  display: block;
}


div.section
{
  padding: 5px;
}

div.section_content
{
  background-color: #44DD44;
  border-top: 1px solid #222222;
  border-left: 1px solid #222222;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 5px;
}


div.section_header
{
  font-weight: bold;
  background-color: #007700;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 5px;
}


@media all and (min-width: 800px) {
  div.content
  {
    width: 790px;
  }
  
  div.banner
  {
    width: 790px;
  }
  
  div.footer
  {
    width: 790px;
    padding-top: 5px;
  }
}



