/* Menu CSS */
#cssmenutab,
#cssmenutab > ul {
  /* background: url(/img/highlight-bg.png) repeat; */
  padding-bottom: 3px;
  font-weight: 600;
}
#cssmenutab:before,
#cssmenutab:after,
#cssmenutab > ul:before,
#cssmenutab > ul:after {
  content: '';
  display: table;
}
#cssmenutab:after,
#cssmenutab > ul:after {
  clear: both;
}
#cssmenutab {
    width: auto;
    zoom: 1;

    background: #7db9e8; /* Old browsers */
    background: -moz-linear-gradient(top,  #7db9e8 0%, #2989d8 36%, #207cca 56%, #1e5799 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7db9e8), color-stop(36%,#2989d8), color-stop(56%,#207cca), color-stop(100%,#1e5799)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #7db9e8 0%,#2989d8 36%,#207cca 56%,#1e5799 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #7db9e8 0%,#2989d8 36%,#207cca 56%,#1e5799 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #7db9e8 0%,#2989d8 36%,#207cca 56%,#1e5799 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #7db9e8 0%,#2989d8 36%,#207cca 56%,#1e5799 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#1e5799',GradientType=0 ); /* IE6-9 */

}
#cssmenutab > ul {
  /* background: url(/img/menu-bg.png) repeat; */
  margin: 0;
  padding: 0;
  position: relative;
}
#cssmenutab > ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#cssmenutab > ul > li {
  float: left;
  position: relative;
}
#cssmenutab > ul > li > a {
  padding: 15px 26px;
  display: block;
  color:#DBDBDB;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 -1px 0 #bdbdbd;
  text-shadow: 0 -1px 0 rgba(189, 189, 189, 0.7);
  line-height: 18px;
}
#cssmenutab > ul > li:hover > a {
  /* background: url(/img/hover.png) repeat;*/
  background-color: #1e5799;
  text-shadow: 0 -1px 0 #5d5d5d;
  text-shadow: 0 -1px 0 rgba(189, 189, 189, 0.64);
}
#cssmenutab > ul > li > a > span {
  line-height: 10px;
}
#cssmenutab > ul > li.active > a,
#cssmenutab > ul > li > a:active {
  background-color: #207cca;
  color: #ffffff;
  /* background: url(/img/active.png) repeat; */
}
/* Childs */
#cssmenutab > ul ul {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 120px;
  /* background: url(/img/highlight-bg.png) repeat; */
  margin: 0;
  padding: 0;
  z-index: -1;
}
#cssmenutab > ul li:hover ul {
  opacity: 1;
  visibility: visible;
  margin: 0;
  color: #000;
  z-index: 2;
  top: 64px;
  left: 0;
}
#cssmenutab > ul ul:before {
  content: '';
  position: absolute;
  top: -10px;
  width: 100%;
  height: 20px;
  background: transparent;
}
#cssmenutab > ul ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
#cssmenutab > ul ul li a {
  padding: 18px 26px;
  display: block;
  color: #393939;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  width: 200px;
  border-left: 4px solid transparent;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  text-shadow: 0 1px 0 white;
}
#cssmenutab > ul ul li a:hover {
  border-left: 4px solid #386eb4;
  background: url(/img/hover.png) repeat;
  color: white;
  text-shadow: 0 1px 0 black;
}
#cssmenutab > ul ul li a:active {
  background: url(/img/menu-bg.png) repeat;
}
