/*@import url(http://fonts.googleapis.com/css?family=Lato);
@charset "UTF-8";*/
/* Base Styles */
.cssmenu,
.cssmenu ul,
.cssmenu li,
.cssmenu a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  line-height: 1;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  position: relative;
}
.cssmenu {
    position: absolute;
    top: 70px;
}
.cssmenu a {
  line-height: 1.3;
  padding: 6px 15px;
}
.cssmenu {
  width: 512px;
}
.cssmenu > ul > li {
  cursor: pointer;
  background: #000;
  border-bottom: 1px solid #c9c9c9;
  /*border-bottom: 1px solid #4c4e53;*/
}
.cssmenu > ul > li:last-child {
  border-bottom: 1px solid #c9c9c9;
  /*border-bottom: 1px solid #3e3d3c;*/
}
.cssmenu > ul > li > a {
  font-size: 0.9em;
  display: block;
  color: #5a9dad;
  /* text-shadow: 0 1px 1px #000; */
  background: #fff;
  background: x-moz-linear-gradient(#64676e 0%, #4c4e53 100%);
  background: x-webkit-gradient(linear, left top, left bottom, color-stop(0%, #64676e), color-stop(100%, #4c4e53));
  background: x-webkit-linear-gradient(#64676e 0%, #4c4e53 100%);
  background: xlinear-gradient(#64676e 0%, #4c4e53 100%);
}
.cssmenu > ul > li > a:hover {
  text-decoration: none;
  color: #182D29;
}
.cssmenu > ul > li.active {
  border-bottom: none;
}
.cssmenu > ul > li.active > a {
  /*background: #3E7D71;*/
  /*
  background: x-moz-linear-gradient(#97c700 0%, #709400 100%);
  background: x-webkit-gradient(linear, left top, left bottom, color-stop(0%, #97c700), color-stop(100%, #709400));
  background: x-webkit-linear-gradient(#97c700 0%, #709400 100%);
  background: xlinear-gradient(#97c700 0%, #709400 100%);
  color: #5a9dad;
  */
  /*text-shadow: 0 1px 1px #709400;*/
}
.cssmenu > ul > li.has-sub > a:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 16px;
  border: 5px solid transparent;
  border-left: 5px solid #4e5800;
}
.cssmenu > ul > li.has-sub.active > a:after {
  right: 20px;
  top: 12px;
  border: 5px solid transparent;
  border-top: 5px solid #4e5800;
}

.cssmenu > ul > li#closemenubutton > a:after {
    position: absolute;
    font-size: 1.5em;
    top: 8px;
    right: 10px;
    background: url('/pics/x.png') no-repeat;
    content: "";
    height: 18px;
    width: 18px;
}

/* Sub menu */
.cssmenu ul ul {
  padding: 0;
  display: none;
}
.cssmenu ul ul a {
  /*background: #C7E5EF;*/
  padding-left: 2em;
  background: #FFF;
  display: block;
  color: #797979;
  font-size: 0.8em;
  line-height: 0.9;
}
.cssmenu ul ul li {
  border-bottom: 1px solid #c9c9c9;
}
.cssmenu ul ul li.odd a {
  /*background: #BEDBE5;*/
}
.cssmenu ul ul li:last-child {
  border: none;
}
