
body {
  font-family: 'Raleway', Helvetic, Sans-Serif;
}

#menu, #menu ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

#menu {
  width: 98%;
  margin: 0px auto;
  border: 0px; 
 
}

#menu:before, #menu:after {
  content: "";
  display: block;
}

#menu:after { clear: both; }

#menu li {
  float: left;
   background: url(../images/sep.png) no-repeat;
  position: relative;
}

#menu a {
  float: left;
  padding: 12px 20px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font: bold 12px Arial, Helvetica;


}

#menu ul {
  margin: 20px 0px 0px 0px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 38px;
  left: 0px;
  z-index: 1;
  background: linear-gradient(#5eccdd, #4fa7ca);
  box-shadow: 0px -1px 0px rgba(255, 255, 255, .3);
  border-radius: 3px;
  transition: all .2s ease-in-out;
  
}

#menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  margin: 0px;
}

#menu ul ul {
  top: 0px;
  left: 150px;
  margin: 0px 0px 0px 20px;
  box-shadow: 0px -1px 0px rgba(255, 255, 255, .3);
}

#menu ul a {
  padding:7px;
  width: 148px;
  
  display:inherit;
  white-space: nowrap;
  float: none;
  text-transform: none;
}

#menu ul a:hover { background: linear-gradient(#1e87be, #104a77);}

#menu ul li:first-child > a:after {
  content: '';
  position: absolute;
  left: 40px;
  top: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #1ebdbe;
}

#menu ul ul li:first-child > a:after {
  left: -12px;
  top: 50%;
  margin-top: -6px;
  border-top: 6px solid transparent;
  border-right: 6px solid #107677;
  border-bottom: 6px solid transparent;
}

#menu-trigger {display: none; }


@media(max-width: 700px) {

	#menu-wrap { position: relative; }

	#menu-wrap* { box-sizing: border-box; }

	#menu-trigger {
	  display: block;
	  height: 25px;
	  line-height: 25px;
	  cursor: pointer;
	  padding: 0px 0px 0px 35px;
	  border: 1px solid #107677;
	  color: #fff;
	  font-weight: bold;
	  background-color: #111;
	  background: url(../images/menu.png) no-repeat 10px center, linear-gradient(#1ebdbe, #107677);
	  border-radius: 6px;
	}

	#menu {
	  margin: 0px;
	  position: absolute;
	  top: 40px;
	  width: 100%;
	  z-index: 1;
	  display: none;
	  box-shadow: none;
	}

	#menu:after {
	  content: '';
	  position: absolute;
	  left: 25px;
	  top: -8px;
	}

	#menu ul {
	  position: static;
	  visibility: visible;
	  opacity: 1;
	  margin: 0px;
	  background: none;
	  box-shadow: none;
	}

	#menu ul ul {
	  margin: 0px 0px 0px 20px;
	  box-shadow: none;
	}

	#menu ul ul li:first-child > a:after {
	  border-top: 0px;
	  border-bottom: 0;
	}

	#menu li {
	  position: static;
	  display: block;
	  float: none;
	  border: 0px;
	  margin: 5px;
	  box-shadow: none;
	  background: none !important;
	}

	#menu ul li {
	  margin-left: 20px;
	  box-shadow: none;
	}

	#menu a {
	  display: block;
	  float: none;
	  padding: 0px;
	  color: #fff;
	}

	#menu a:hover { color: #fafafa; }

	#menu ul a {
	  padding: 0px;
	  width: auto;
	}

	#menu ul a:hover { background: none !important; }
}