@import url(http://fonts.googleapis.com/css?family=Lato);
@charset 'UTF-8';
/* Base Styles */
#cssmenu,
#cssmenu ul,
#cssmenu li,
#cssmenu a {
  margin: 0 auto;
  padding: 0;
  border: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  line-height: 1;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  position: relative;
}
#cssmenu a {
  line-height: 1.3;
  padding: 6px 15px;
}
#cssmenu {
  width: 90%;
}
#cssmenu > ul > li {
  cursor:pointer;
  background: #fff;
  border-bottom: 1px solid #797a80;
}
#cssmenu > ul > li:last-child {
  border-bottom: 1px solid #3e3d3c;
}
#cssmenu > ul > li > a {
  font-size: 14px;
  display: block;
  color: #333;
  background: #c4c5c8;
  background: -moz-linear-gradient(#c4c5c8 0%, #dedfe1 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c4c5c8), color-stop(100%, #dedfe1));
  background: -webkit-linear-gradient(#c4c5c8 0%, #dedfe1 100%);
  background: linear-gradient(#c4c5c8 0%, #dedfe1 100%);
}
#cssmenu > ul > li > a:hover {
  text-decoration: none;
}
#cssmenu > ul > li.active {
  border-bottom: none;
}
#cssmenu > ul > li.active > a {
  background: #bcc3d0;
  background: -moz-linear-gradient(#bcc3d0 0%, #787878 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #bcc3d0), color-stop(100%, #787878));
  background: -webkit-linear-gradient(#bcc3d0 0%, #787878 100%);
  background: linear-gradient(#bcc3d0 0%, #787878 100%);
  color: #000000;
}
#cssmenu > ul > li.has-sub > a:after {

  position: absolute;
  top: 10px;
  right: 10px;
  border: 5px solid transparent;
  border-left: 5px solid #ffffff;
}
#cssmenu > ul > li.has-sub.active > a:after {
    content: '' #666;
  right: 14px;
  top: 12px;
  border: 5px solid transparent;
  border-top: 5px solid #000000;
}
/* Sub menu */
#cssmenu ul ul {
  padding: 0;
  display: none;
}
#cssmenu ul ul a {
  background: #efefef;
  display: block;
  color: #666;
  font-size: 14px;
}
#cssmenu ul ul li {
  border-bottom: 1px solid #c9c9c9;
}
#cssmenu ul ul li.odd a {
  background: #e5e5e5;
}
#cssmenu ul ul li:last-child {
  border: none;
}
