.cat-nav * {
  font-family: "Open Sans","Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: lighter;
}

.cat-nav {
  display: block;
  text-align: center;
}

.cat-nav ul {
  margin: 0;
  padding:0;
  list-style: none;
}

.nav a {
  display:block;
  background: #fff;
  color: #555;
  text-decoration: none;
  padding: 0.8em 1.8em;
  text-transform: uppercase;
  position: relative;
}

.nav{
  vertical-align: top;
  display: inline-block;
  box-shadow:
	  1px -1px -1px 1px #000,
	  -1px 1px -1px 1px #fff,
	  0 0 6px 3px #fff;
  border-radius:6px;
}

.nav li {
  position: relative;
}

.nav > li {
  display: inline-block;
}

.nav > li > a {
  padding-bottom: 5px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 15px;
  margin-right: 15px;
}

.nav > li:hover,
.nav > li:hover > a {
  border-bottom-color: #009FD6;
}

.nav li:hover > a {
  color:#009FD6;
}

.nav > li:first-child {
  border-radius: 4px 0 0 4px;
}

.nav > li:first-child > a {
  border-radius: 4px 0 0 0;
}

.nav > li:last-child {
  border-radius: 0 0 4px 0;
  margin-right: 0;
}

.nav > li:last-child > a {
  border-radius: 0 4px 0 0;
}

.nav li li a {
  border-bottom: 1px solid #eee;
}

.nav li a:first-child:nth-last-child(2):before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border: 5px solid transparent;
  top: 50% ;
  right:5px;
}

.nav ul {
  position: absolute;
  white-space: nowrap;
  z-index: 1;
  left: -99999em;
  box-shadow: 0 6px 12px rgb(0 0 0 / 13%);
  -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 13%);
  -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.125);
  margin-bottom: 20px;
  border: 1px solid #f5f5f5;
  text-align: left;
}

.nav ul a {
  text-transform: none !important;
}

.nav ul li:hover > a {
  color: #fff;
  background-color: #009FD6;
}

.nav ul li:first-child {
  border-top: 1px solid #eee;
}

.nav > li:hover > ul {
  left: auto;
  min-width: 100%;
}

.nav > li li:hover > ul {
  left: 100%;
  top: 0px;
}

.nav li li > a:first-child:nth-last-child(2):before {
  border-left-color: #995D32;
  margin-top: -5px
}

.nav li li:hover > a:first-child:nth-last-child(2):before {
  border-left-color: #fff;
}

.nav .level1 ul {
  padding: 20px 0;
  background-color: #fff;
}

.nav .level2 ul {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -2px;
}

.Current {
  border-bottom: 5px solid #009FD6;
}