@charset "UTF-8";
/* CSS Document */


.nav ul {
  list-style: none;
   text-align: left;
  padding: 0;
  margin: 0;
    
  
}

.nav li {
  font-family: 'Acme', sans-serif;
  text-transform: uppercase;
  font-size: 1.2em;
  line-height: 20px;
  text-align: left;
  
  
  
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-size:14px;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
 
  border-bottom: 1px solid #888;
  transition: .3s background-color;
 
 
}
.nav a:visited {
    color: white;
}

.nav a:hover {
  background-color: #f8a90e;
  color: #fff;
  text-decoration: none;
}



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

/*******************************************
   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 ul {
  list-style: none;
  background-color: #4d9df3;
  text-align: center;
     
  
}
.nav > ul > li:hover > a, .menu > ul > .current-item > a {
    background:#f8a90e;
}
  
  .nav li {
    
    border-bottom: none;
 
    line-height: 40px;
    font-size: .9em;
    display: inline-block;
	
	 
    
  }

  .nav a {
    border-bottom: none;
  }

  .nav > ul > li {
    text-align: center;
	font-size: .9em;
  }

  .nav > ul > li > a {
    padding-left: 15px;
	font-size:16px;
  }

  /* Sub Menus */
  .nav li ul {
    position: absolute;
    display: none;
    width: inherit;
  }
    .nav li ul a {
   background-color: #f8a90e;
  }
.nav li ul a:hover {
  background-color: #2547c5;
  
}
  .nav li:hover ul {
    display: block;
  }

  .nav li ul li {
    display: block;
  }
}