/* CSS Document */



* {
  box-sizing: border-box;
}


.bar {
  background-color: blue; rgb(245, 193, 97);
  width: 100%;
  height: 40px;
  display: flex;
  list-style: none;
  padding: 0;
}

.bar li {
  height: 100%;
  width: 310px; 
  border-right: 1px solid rgb(235, 177, 69);
}

.bar li a {
  color: yellow; black;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.bar .has-dropdown ul li a{
padding: 12px 0;
}

.bar li a:hover {
  background-color: #4771B8; 
}

.bar li a.active {
  background-color: blue; rgb(165, 113, 16);
  color: yellow; white;
}

.dropdown {
  background-color: rgb(245, 193, 97);
  padding: 0;
  list-style: none;
  display: none;
}

.bar li.has-dropdown:hover .dropdown {
  display: block;
}



body
{
  background-color:#CCFFFF;
}

#wrapper
{
  width: 1000px;
  margin: 0 auto;
  background-color:#CCFFFF;
}




#content
{
  width: 960px;
  padding: 20px;
  text-align: left;
  margin: 0px 0px 0px 0px;
  background-color:#CCFFFF;
}

#contact
{
  float: left;
  width:140px;
  padding: 0px;
  text-align: left;
  margin: 0px 0px 0px 0px;
  height: 1100px;
  /*background-color: #CCFFFF;*/
}

#find
{
  float: right;
  width: 530px;
  padding: 0px;
  text-align: left;
  margin: 10px 0px 0px 0px;
  height: 630px;  
  /*background-color: #FFFF99;*/
}

h1
{
  font-family: Arial;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #336699;
}

h2
{
  font-family: Arial;
  font-size: 17px;
  font-weight: bold;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #336699;
}

td
{
  font-family: Arial;
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  color: #000000;
}

p
{
  font-family: Arial;
  font-size: 16px;
  font-weight: normal;
  text-align: justify;
  margin-top: 10px;
  margin-bottom: 5px;
  line-height: 1.2;
}

#footer
{
  width: 980px;
  padding: 10px;
  text-align: center;
  font-family: Arial;
  font-size: 12px;
  margin: 10px 0px 20px 0px;
  background-color:#CCFFFF;
}

