@charset "UTF-8";
/* Base Styles */
#RSPcssmenu,
#RSPcssmenu ul,
#RSPcssmenu li,
#RSPcssmenu a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  line-height: 1;
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
}
#RSPcssmenu a {
  line-height: 1.5;
}
#RSPcssmenu {
  width: auto;
  background: #fff;
}
#RSPcssmenu > ul {
/*  -moz-box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.2);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.2);*/
  background: #b92f32;
/*  background: -moz-linear-gradient(#b92f32 0%, #802123 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b92f32), color-stop(100%, #802123));
  background: -webkit-linear-gradient(#b92f32 0%, #802123 100%);
  background: linear-gradient(#b92f32 0%, #802123 100%)
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  ;*/
}
#RSPcssmenu > ul:after {
  clear: both;
  content: '';
  display: table;
}

#RSPcssmenu > ul > li {
  border-right: 1px solid #000;
  -moz-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2);
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2);
  float: left;
}
#RSPcssmenu > ul > li.mobile {
  display: none;
}
#RSPcssmenu > ul > li.active {
  background: #9d282a;
/*  background: -moz-linear-gradient(#9d282a 0%, #802123 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9d282a), color-stop(100%, #802123));
  background: -webkit-linear-gradient(#9d282a 0%, #802123 100%);
  background: linear-gradient(#9d282a 0%, #802123 100%);*/
}

#RSPcssmenu > ul > li:last-child {
  border-right: 0 none;
  -moz-box-shadow: 0 0 0 transparent;
  -webkit-box-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
#RSPcssmenu > ul > li:last-child ul {
  left: auto;
  right: 0;
}
#RSPcssmenu > ul > li.mobile {
  border-right: 0 none;
  -moz-box-shadow: 0 0 0 transparent;
  -webkit-box-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
}
#RSPcssmenu > ul > li > a {
  margin: 0 0 2px 0;
  font-size: 16px;
  display: block;
  color: #fff; 
}
#RSPcssmenu > ul > li > a > span {
  display: block;
  padding:10px;
  font-weight: bold;
}
#RSPcssmenu > ul > li > a:hover {
  text-decoration: none; background:#464646; color:#fff;
}
#RSPcssmenu > ul > li.active {
  border-bottom: none;
}
#RSPcssmenu > ul > li.active > a {
  color: #fff;
}
/* Sub menu */
#RSPcssmenu ul ul {
  background: #861618;
/*  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);*/
  padding: 8px 12px;
  display: none;
  position: absolute;
  top: 33px;
  left: 0;
  width: 100%;
  z-index: 99;
}

#RSPcssmenu ul ul li {
  padding: 10px;
}
#RSPcssmenu ul ul a {
  color: #fff;
  padding-left:20px;
  display: block;
  font-size: 15px;
  font-weight: bold;
}
#RSPcssmenu ul ul a:hover {
  color: #fff; 
}
#RSPcssmenu ul ul li:hover {
  background:#464646;
}


@media all and (max-width: 1024px) {
  #RSPcssmenu > ul {
    max-height: 44px;
    overflow: hidden;
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
  }
  #RSPcssmenu.expand ul {
    max-height: 900px;
  }

  #RSPcssmenu > ul > li {
    border-right: 0 none;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    display: block;
    float: none;
  }
  #RSPcssmenu > ul > li.mobile {
    display: block;
  }
  #RSPcssmenu > ul > li.mobile i {
    float: right;
    font-style: normal;
  }

  #RSPcssmenu ul ul {
    position: relative;
    top: 0;
    width: 100%;
  }
}