/*
===========================================================================
Changes 06082020 font colour rgb(0, 113, 61)
                    line colour rgb(0, 113, 61)
 
 
 
=========================================================================== */


/*body {
  margin: 0;
  padding: 0;
  background: #ccc;
}*/

.nav ul {
  list-style: none;
  /*background-color: #444;*/
   /* background-color:rgb(77,111,129);*/
    color: white;
  text-align: center;
    height: 51px;
  padding: 0;
  margin: 0;
    width:100%;
}


.nav li {
  font-family: 'OpenSans', sans-serif;
  font-size: 1.2rem;
  color: white;
  line-height: 40px;
  text-align: left;
   margin: 0 20px 0 0;
}

.nav a {
  text-decoration: none;
  background-color: rgb(77,111,129);
 color: #FFFFFF;
  display: block;
  padding-left: 5px;
  height: 49px;
   /* border: 2px rgb(0, 113, 61) solid; */
    	border-bottom: none;
  transition: .3s background-color;
}

.nav a:hover {
  background-color: rbg(77,111,129);
}

.nav a:link {
    color:#FFFFFF;
}

.nav a.active {
  background-color: rgb(239,239,239);
  color: rgb(0, 113, 61);
  cursor: default;
}

/* Sub Menus */
.nav li li {
  font-size: .8em;
}



/*******************************************
   Style menu for larger screens

   Using 650px (130px each * 5 items), but ems
   or other values could be used depending on other factors
********************************************/

@media screen and (min-width: 650px) {
  .nav li {
    width: 230px;
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    font-size: 1.1em;
    display: inline-block;
    margin-right: -4px;
  }

      .nav a {
    border-bottom: none;
  }
    
   .nav > ul > li {
    text-align: center;
  }

  .nav > ul > li > a {
    padding-left: 0;
  }
    
    /* Sub Menus */
  .nav li ul {
    position: absolute;
    display: none;
    width: inherit;
  }

    .nav li:hover ul {
    display: block;
  }  
    
    .nav li ul li {
    display: block;
  }
    
/*Sub Menu Indicator*/

.sub > a::after{
    content: "\0025B8";
    margin-left: 3px;
}

.sub:hover > a::after {
    content: "\025BE";
}