/* declarations for the not-responsove-menu */
nav {
background: #87e0fd; /* Old browsers */
background: -moz-linear-gradient(top,  #87e0fd 0%, #53cbf1 40%, #05abe0 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#87e0fd), color-stop(40%,#53cbf1), color-stop(100%,#05abe0)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #87e0fd 0%,#53cbf1 40%,#05abe0 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #87e0fd 0%,#53cbf1 40%,#05abe0 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #87e0fd 0%,#53cbf1 40%,#05abe0 100%); /* IE10+ */
background: linear-gradient(to bottom,  #87e0fd 0%,#53cbf1 40%,#05abe0 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#87e0fd', endColorstr='#05abe0',GradientType=0 ); /* IE6-9 */
    font-family: "Lato",sans-serif;
    float: left;
    font-size: 0.85em;
    width: 100%;
}
nav ul {   margin: 0; padding: 0; text-align: center;}
nav a {
  display: block;
  color: #fff !important;
  text-decoration: none !important;
}
nav ul li { border-top-right-radius: 11px;
  min-width: 60px;
  position: relative;
  display: inline-flex;
  font-size: 1.2em;
  list-style: none;
  
  color: #fff;
  transition: 0.5s;
}
nav ul li a {
    padding: 10px;
}
nav ul > li.drop_ul > a:after {
  position: relative;
  float: right;
  content: '';
  margin-left: 10px;
  margin-top: 5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  border-bottom: 5px solid transparent;
}
nav ul ul li.drop_ul > a:after {
  margin-left: auto;
  margin-right: -10px;
  border-left: 5px solid #fff;
  border-right: 5px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
nav ul li:hover {
  background: #4096ee;
}
nav ul ul {
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1;
  box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.5);
}
nav ul ul li {
    background: rgba(18, 52, 86, 0.95);
    border-bottom: 1px solid #666;
  	border-top-right-radius: 11px;
	font-size: 0.85em;
    float: none;
    width: 180px;
    z-index: 10;
}
nav ul ul li a {
	background: rgba(0, 0, 0, 0) url("/img/subnav/subnav_0.gif") no-repeat 2px 50%; 
	width: 100% !important; padding: 4px 0; text-indent: 25px; z-index: 20; text-align: left;}
nav ul ul li:last-child {
  border-bottom: none;
}
nav ul li:hover > ul {
  top: 100%;
  left: 0;
}
nav ul ul li:hover > ul {
  top: 0;
  left: 155px;
  z-index: 150 !important;
}