/* topmenu */

.topmenumodule {
  position: absolute;
  width: 100%;
  background-color: #233e73;
  height: 50px;
  bottom: 30px;
  box-shadow: 0px 2px 5px 0px black;
  z-index: 50;
}

.topmenumodulebody {
  width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
  height: 50px;
}

.topmenumodule ul {
  padding: 0;
  margin: 0;
}

.topmenumodule ul li {
  display: inline-table;
  height: 50px;
  line-height: 50px;
  position: relative;
}

.topmenumodule ul li:first-child a {
  letter-spacing: -10px;
  width: 0px;
  color: transparent;
  background: url(/images/icons/home.png) center center no-repeat;
  padding: 0 20px;
}

.topmenumodule ul li:first-child a:after {
  display: none;
}

.topmenumodule ul li a {
  text-decoration: none;
  color: #fff;
  font-family: Open sans;
  font-weight: bold;
  font-size: 14px;
  height: 50px;
  padding: 0 40px 0 30px;
  line-height: 50px;
  display: inline-block;
  position: relative;
}

.topmenumodule ul li a:after {
  content: "";
  background: url(/images/icons/arrbot.png) 0 center no-repeat;
  width: 10px;
  height: 50px;
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
}

.topmenumodule ul li:hover {
  background-color: #0a1e44;
}

.topmenumodule ul li ul {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.46);
  width: 100%;
  padding: 10px 0;
}

.topmenumodule ul li:hover ul {
  display: block;
}

.topmenumodule ul li ul li {
  display: block;
  height: auto;
  line-height: 18px;
  background: none !important;
  padding: 0 30px 10px !important;
}

.topmenumodule ul li ul li a {
  font-family: Arial !important;
  font-size: 14px !important;
  color: #2f2e2e !important;
  letter-spacing: 0px !important;
  height: auto;
  line-height: 18px;
  padding: 0 0px !important;
  display: inline-block !important;
  width: auto !important;
  font-weight: normal;
}

.topmenumodule ul li ul li a:hover {
  color: #ec0e26 !important;
}


/* end */