menu, nav { display: block; }
#menu-cont ol, #menu-cont ul { list-style: none; }

#oper-message {
  background-color: #A60; 
  border: solid 1px #FA0;
  color: #FD7;
  padding-left: 3px;
  padding-right: 3px;
  margin-left: 10px;
  font-weight: bold;
  font-size: 9pt;
  padding-top: 1px;
  margin-top: 1px;
  border-radius: 4px;
}

#menu-cont { 
  display: block; 
  width: 100%; 
  position: fixed; 
  height: 21px;
  background-color: #0D5180;
  border-bottom: 1px solid #668;
  z-index: 10;
} 

#menu {
  display: block;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  outline: none;

  font-size: 10pt;
  font-family: 'Arial';
  padding-bottom: 2px;
  padding-right: 4px;
  padding-left: 10px;
  color: #242;  
}

#menu li { 
  display: block; 
  position: relative;
  float: left; 
  font-size: 10pt; 
  padding: 2px; 
  padding-right: 10px; 
  background-color: #0D5180;
  color: #FFF;
  font-weight: bold;
}

#menu li a {
  display: block;
  float: left;
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
}

#menu li ul li a{
  font-weight: normal;
}

#menu ul {

  position: absolute;
  top: 28px;
  width: 230px;
  background: #fff;
  display: none;
  margin: 0;
  padding: 5px 0;
  padding-right: 25px;
  list-style: none;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

/* Стрелочки */
#menu ul:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  left: 8px;
  border-width: 0 8px 08px 8px;
  border-style: solid;
  border-color: #fff transparent; 
}

#menu ul:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  left: 4px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1) transparent;  
}

#menu ul li { 
  display: block; 
  width: 100%; 
  font-size: 0.9em; 
  background: #fff;
  color: #094C99;
}

#menu ul li a {
  display: block;
  width: 100%;
  padding: 2px 7px;
  line-height: 1.4em;
  color: #094C99;
}

#menu ul li span {
  line-height: 1.4em;
  display: block;
  width: 100%;
  padding: 2px 7px;
  font-weight: normal;
}

#menu ul li hr {
  line-height: 0.1em;
  display: block;
  width: 100%;
  margin: 0px;
  margin-left: 5px;
  border-top: solid 1px #88B; 
}

#menu ul li a:hover {
  background: #ABF;
  color: #333;
}

#menu .active{
  background-color: #DDF;
}
