/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
html, body{
    height: 100%;
}

#top-header{
  text-align: center;
  height: 60px;
}

#menu{
  float: none;
  width: 70%;
  height: 100%;
}

#menu ul{
  text-align: center;
  float: right;
  background: #149BB6;
}

#menu li{
  display: inline-block;
}

#menu li a, #menu li span{
    display: inline-block;
    padding: 0em 1.5em;
    text-decoration: none;
    font-weight: 600;
    line-height: 60px;
}
    
#menu li a{
        
    color: #FFF;
}
    
#menu li:hover a, #menu li span{
    background: #FFF;
    color: #075C6E;
    border-left: 1px solid #075C6E;
    text-decoration: none;
}

body{
    margin: 10px;
    padding: 10px;
    background: #FFFFFF;
    font-family: 'Roboto';
    font-size: 30pt;
}
        
p, ol, ul{
    margin-top: 0;
}

p {
    line-height: 180%;
}

ol, ul{
    padding: 0;
    list-style: none;
}
    
.container{    
    /* Set width of container to 
        1200px and align center */
    margin: 0px auto;
    width: 1200px;
}
body {
  background-color: white;
  color: black;
  font-family: Verdana;
}