/* Set master font settings throughout the site */
html{
  font-family: Verdana, Arial;
  font-size: 12px;
  background-color: rgb(247,247,247);
}

#container{
  width: 1000px;
  margin: 30px auto;
  background-color: rgb(255,255,255);
}

/* Define settings for hyperlinks throughout the site, including nav page */
#container a{
  text-decoration: none;
  color: rgb(0,0,0);
}

#container a:hover{
  text-decoration: underline;
  color: rgb(0,0,128);
}

#container a:active{
  color: rgb(0,0,0);
}
/* Done */

#banner{
  height: 110px;
  background-image: url('Images/Banner.png');
  background-repeat: no-repeat;
} 

#leftnav{
  float: left;
  width: 120px;
  padding: 10px;
}

#leftnav ul{
  list-style-type: none;
  padding-left: 5px;
}

#leftnav ul li{
  padding: 5px;
}

#content{
  margin-left: 130px;
  padding: 15px;
  min-height: 450px;
  text-align: center;
}

#content .Header{
  font-size: 14px;
}

#content .Header2{
  font-size: 14px;
  text-align: left;
}

#content .OpeningHours{
  width: 400px;
  margin-left: auto;
  margin-right: auto;
}

#content .Contact{
  font-family: Arial;
  font-size: 12px;
  text-align: left;
}

#content .Contact input{
  font-family: Arial;
  font-size: inherit;
  width: 200px;
  margin-left: 2px;
}

#content .Contact .button{
  width: 80px;
}

#content .Contact textarea{
  font-family: Arial;
  font-size: inherit;
}

#w3Logos{
  padding-top: 5px;
  float: right;
}