
/*cssmenu*/

#cssmenu {
    position: relative;
    height: auto;
    width:100%;
}
#cssmenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1;
}
#cssmenu > ul {
    position: relative;
    display: block;
    z-index: 500;
    margin-left:auto;
    margin-right:auto;
    display: block;

    width:900px;
    position:relative;
    margin-right:auto;
    margin-left:auto;
}
#cssmenu:after,
#cssmenu > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
#cssmenu.align-right > ul > li {
    float: right;
}
#cssmenu.align-center ul {
    text-align: center;
}
#cssmenu.align-center ul ul {
    text-align: left;
}
#cssmenu > ul > li {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
}
#cssmenu > ul > #menu-button {
    display: none;
}
#cssmenu ul li a {
    display: block;
    font-family: Helvetica, sans-serif;
    text-decoration: none;
}
#cssmenu > ul > li > a {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 10px;
    color: #7a8189;
    text-transform: uppercase;
    -webkit-transition: color 0.25s ease-out;
    -moz-transition: color 0.25s ease-out;
    -ms-transition: color 0.25s ease-out;
    -o-transition: color 0.25s ease-out;
    transition: color 0.25s ease-out;
}
#cssmenu > ul > li.has-sub > a {
    padding-right: 32px;
}
#cssmenu > ul > li:hover > a {
    xcolor: gold;
}
#cssmenu li.has-sub::after {
    display: block;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}
#cssmenu > ul > li.has-sub::after {
    right: 10px;
    top: 15px;
    border: 5px solid transparent;
    border-top-color: #fff;
}
#cssmenu > ul > li:hover::after {
    border-top-color: gold; /*drop down triangle color on main elements for sub nav elements*/
}
#indicatorContainer {
    position: absolute;
    height: 12px;
    width: 95%;
    bottom: 0px;
    overflow: hidden;
    z-index: -1;
}
#pIndicator {
    position: absolute;
    height: 0;
    width: 100%;
    border: 12px solid transparent;
    border-top-color: #2b2f3a;
    z-index: -2;
    -webkit-transition: left .25s ease;
    -moz-transition: left .25s ease;
    -ms-transition: left .25s ease;
    -o-transition: left .25s ease;
    transition: left .25s ease;
}
#cIndicator {
    position: absolute;
    height: 0;
    width: 100%;
    border: 12px solid transparent;
    border-top-color: #2b2f3a;
    top: -12px;
    right: 100%;
    z-index: -2;
}
#cssmenu ul ul {
    position: absolute;
    left: -9999px;
    top: 70px;
    opacity: 0;
    -webkit-transition: opacity .3s ease, top .25s ease;
    -moz-transition: opacity .3s ease, top .25s ease;
    -ms-transition: opacity .3s ease, top .25s ease;
    -o-transition: opacity .3s ease, top .25s ease;
    transition: opacity .3s ease, top .25s ease;
    z-index: 1000;
    top: 0;
}
#cssmenu ul ul ul {
    top: 37px;
    padding-left: 5px;
}
#cssmenu ul ul li {
    position: relative;
}
#cssmenu > ul > li:hover > ul {
    left: auto;
    top: 42px;
    opacity: 1;
}
#cssmenu.align-right > ul > li:hover > ul {
    left: auto;
    right: 0;
    opacity: 1;
}
#cssmenu ul ul li:hover > ul {
    left: 170px;
    top: 0;
    opacity: 1;
}
#cssmenu.align-right ul ul li:hover > ul {
    left: auto;
    right: 170px;
    top: 0;
    opacity: 1;
    padding-right: 5px;
}
#cssmenu ul ul li a {
    width: 130px;
    border-bottom: 1px solid #eeeeee;
    padding: 10px 20px;
    padding: 5px 10px;
    font-size: 12px;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}
#cssmenu.align-right ul ul li a {
    text-align: right;
}
#cssmenu ul ul li:hover > a {
    xbackground: gold;
    xcolor: #3897ca;
}
#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last > a {
    border-bottom: 0;
}
#cssmenu > ul > li > ul::after {
    content: '';
    border: 6px solid transparent;
    width: 0;
    height: 0;
    border-bottom-color: #ffffff;
    position: absolute;
    top: -12px;
    left: 30px;
}
#cssmenu.align-right > ul > li > ul::after {
    left: auto;
    right: 30px;
}
#cssmenu ul ul li.has-sub::after {
    border: 4px solid transparent;
    border-left-color: #9ea2a5;  /*arrow on 2nd to 3rd level items*/
    xright: 10px;
    left:135px;
    top: 12px;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transition: -webkit-transform 0.2s ease, right 0.2s ease;
}
#cssmenu.align-right ul ul li.has-sub::after {
    border-left-color: transparent;
    border-right-color: #fff;
    right: auto;
    left: 10px;
}
#cssmenu ul ul li.has-sub:hover::after { /*arrow on 2nd to 3rd level items when hover*/
    border-left-color: #ffffff;
    /*right: -5px;
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    */
}
#cssmenu.align-right ul ul li.has-sub:hover::after {
    border-right-color: #fff;
    border-left-color: transparent;
    /*left: -5px;
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    */
}

/*@media all and (max-width: 800px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
    #cssmenu {
        width: auto;
    }
    #cssmenu.align-center ul {
        text-align: left;
    }
    #cssmenu.align-right > ul > li {
        float: none;
    }
    #cssmenu ul {
        width: auto;
    }
    #cssmenu .submenuArrow,
    #cssmenu #indicatorContainer {
        display: none;
    }
    #cssmenu > ul {
        height: auto;
        display: block;
    }
    #cssmenu > ul > li {
        float: none;
    }
    #cssmenu li,
    #cssmenu > ul > li {
        display: none;
    }
    #cssmenu ul ul,
    #cssmenu ul ul ul,
    #cssmenu ul > li:hover > ul,
    #cssmenu ul ul > li:hover > ul,
    #cssmenu.align-right ul ul,
    #cssmenu.align-right ul ul ul,
    #cssmenu.align-right ul > li:hover > ul,
    #cssmenu.align-right ul ul > li:hover > ul {
        position: relative;
        left: auto;
        top: auto;
        opacity: 1;
        padding-left: 0;
        padding-right: 0;
        right: auto;
    }
    #cssmenu ul .has-sub::after {
        xdisplay: none;
    }
    #cssmenu ul li a {
        padding: 12px 20px;
    }
    #cssmenu ul ul li a {
        border: 0;
        background: none;
        width: auto;
        padding: 8px 35px;
    }
    #cssmenu.align-right ul ul li a {
        text-align: left;
    }
    #cssmenu ul ul li:hover > a {
        background: none;
        color: #8c9195;
    }
    #cssmenu ul ul ul a {
        padding: 8px 50px;
    }
    #cssmenu ul ul ul ul a {
        padding: 8px 65px;
    }
    #cssmenu ul ul ul ul ul a {
        padding: 8px 80px;
    }
    #cssmenu ul ul ul ul ul ul a {
        padding: 8px 95px;
    }
    #cssmenu > ul > #menu-button {
        display: block;
        cursor: pointer;
    }
    #cssmenu #menu-button > a {
        padding: 14px 20px;
    }
    #cssmenu ul.open li,
    #cssmenu > ul.open > li {
        display: block;
    }
    #cssmenu > ul.open > li#menu-button > a {
        color: #fff;
        border-bottom: 1px solid rgba(150, 150, 150, 0.1);
    }
    #cssmenu ul ul::after {
        display: none;
    }
    #cssmenu #menu-button::after {
        display: block;
        content: '';
        position: absolute;
        height: 3px;
        width: 22px;
        border-top: 2px solid #7a8189;
        border-bottom: 2px solid #7a8189;
        right: 20px;
        top: 15px;
    }
    #cssmenu #menu-button::before {
        display: block;
        content: '';
        position: absolute;
        height: 3px;
        width: 22px;
        border-top: 2px solid #7a8189;
        right: 20px;
        top: 25px;
    }
    #cssmenu ul.open #menu-button::after,
    #cssmenu ul.open #menu-button::before {
        border-color: #fff;
    }
}





@media all and (max-width: 1000px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
    #cssmenu > ul {
        margin-left:50px;
    }
}
@media all and (max-width: 800px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  #cssmenu {
    width: auto;
  }
  #cssmenu.align-center ul {
    text-align: left;
  }
  #cssmenu.align-right > ul > li {
    float: none;
  }
  #cssmenu ul {
    width: auto;
  }
  #cssmenu .submenuArrow,
  #cssmenu #indicatorContainer {
    display: none;
  }
  #cssmenu > ul {
    height: auto;
    display: block;
      margin-left:50px;
  }
  #cssmenu > ul > li {
    float: none;
  }
  #cssmenu li,
  #cssmenu > ul > li {
    xdisplay: none;
  }
  #cssmenu ul ul,
  #cssmenu ul ul ul,
  #cssmenu ul > li:hover > ul,
  #cssmenu ul ul > li:hover > ul,
  #cssmenu.align-right ul ul,
  #cssmenu.align-right ul ul ul,
  #cssmenu.align-right ul > li:hover > ul,
  #cssmenu.align-right ul ul > li:hover > ul {
    position: relative;
    left: auto;
    top: auto;
    opacity: 1;
    padding-left: 0;
    padding-right: 0;
    right: auto;
  }
  
  #cssmenu ul .has-sub::after {
    display: none;
  }
  #cssmenu ul li a {
    xpadding: 12px 20px;
    padding: 8px 5px;
  }
  #cssmenu ul ul li a {
    border: 0;
    background: none;
    width: auto;
    padding: 8px 35px;
  }
  #cssmenu.align-right ul ul li a {
    text-align: left;
  }
  #cssmenu ul ul li:hover > a {
    background: none;
    color: #8c9195;
  }
  #cssmenu ul ul ul a {
    xpadding: 8px 50px;
      padding: 8px 5px;
  }
  #cssmenu ul ul ul ul a {
     xpadding: 8px 65px;
      padding: 8px 5px;
  }
  #cssmenu ul ul ul ul ul a {
    padding: 8px 80px;
  }
  #cssmenu ul ul ul ul ul ul a {
    padding: 8px 95px;
  }
  #cssmenu > ul > #menu-button {
    display: block;
    cursor: pointer;
  }
  #cssmenu #menu-button > a {
    padding: 14px 20px;
  }
  
  #cssmenu ul.open li,
  #cssmenu > ul.open > li {
    display: block;
  }
  #cssmenu > ul.open > li#menu-button > a {
    color: #fff;
    border-bottom: 1px solid rgba(150, 150, 150, 0.1);
  }
  #cssmenu ul ul::after {
    display: none;
  }
  #cssmenu #menu-button::after {
    display: block;
    content: '';
    position: absolute;
    height: 3px;
    width: 22px;
    border-top: 2px solid #7a8189;
    border-bottom: 2px solid #7a8189;
    right: 20px;
    top: 15px;
  }
  #cssmenu #menu-button::before {
    display: block;
    content: '';
    position: absolute;
    height: 3px;
    width: 22px;
    border-top: 2px solid #7a8189;
    right: 20px;
    top: 25px;
  }
  #cssmenu ul.open #menu-button::after,
  #cssmenu ul.open #menu-button::before {
    border-color: #fff;
  }
}

#cssmenu > ul {
    xwidth: 380px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    xmargin-top: 22px;
    text-align: left;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding-right: auto;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-right: 9px;
    display: block;
    left:-3px;
}

#cssmenu > ul li{
    xdisplay:inline;
    margin-right:6px;
    font-family: 'Open Sans', sans-serif;
    font-size:10px;
    text-transform:uppercase;
}
#cssmenu > ul li a:hover{
    xcolor:gold;
    cursor:pointer;
}

#cssmenu > ul li a{
    xcolor:#fff;
    padding:3px;
    padding-right:8px;
    padding-left:8px;
}

}
*/

/*
 * Mobile nav
 */
.-browser-mobile .logo,
.-browser-tablet .logo {
    position:absolute;top:0;left: 0;width:100%;height:46px;text-align:center;padding:10px 0 0 0 ;float:none
}

.-browser-mobile .logo2,
.-browser-tablet .logo2 {
    display:none
}

.-browser-mobile nav,
.-browser-tablet nav {
    width:100%;
}

.-browser-mobile #cssmenu,
.-browser-tablet #cssmenu{
    width:100%; padding-top: 10px; min-height: 42px;
}
.-browser-mobile #cssmenu ul,
.-browser-tablet #cssmenu ul {
    width:100%;display:none;
}
.-browser-mobile #cssmenu ul li,
.-browser-tablet #cssmenu ul li {
    width:100%;border-top:1px solid #fff;
}

.-browser-mobile #cssmenu ul li.-opened,
.-browser-mobile #cssmenu ul ul li.-opened a,
.-browser-tablet #cssmenu ul li.-opened,
.-browser-tablet #cssmenu ul ul li.-opened a {
    background:#363636;
}

.-browser-mobile #cssmenu ul ul li,
.-browser-mobile #cssmenu li:hover > ul > li,
.-browser-tablet #cssmenu ul ul li,
.-browser-tablet #cssmenu li:hover > ul > li {
    height:auto;
}

.-browser-mobile #cssmenu ul li a,
.-browser-mobile #cssmenu ul ul li a,
.-browser-tablet #cssmenu ul li a,
.-browser-tablet #cssmenu ul ul li a {
    width:100%;border-bottom:0;
}

.-browser-mobile #cssmenu > ul > li,
.-browser-tablet #cssmenu > ul > li {
    float:none;
}

.-browser-mobile #cssmenu ul ul li a,
.-browser-tablet #cssmenu ul ul li a {
    padding-left:25px;
}

.-browser-mobile #cssmenu ul ul li,
.-browser-tablet #cssmenu ul ul li{
    background:#333!important;
}

.-browser-mobile #cssmenu ul ul li:hover,
.-browser-tablet #cssmenu ul ul li:hover{
    background:#363636!important
}

.-browser-mobile #cssmenu ul ul ul li a,
.-browser-tablet #cssmenu ul ul ul li a {
    padding-left:35px;
}

.-browser-mobile #cssmenu ul ul li a,
.-browser-tablet #cssmenu ul ul li a{
    color:#ddd;background:none;
}

.-browser-mobile #cssmenu ul ul li:hover > a,
.-browser-mobile #cssmenu ul ul li.active > a,
.-browser-tablet #cssmenu ul ul li:hover > a,
.-browser-tablet #cssmenu ul ul li.active > a {
    color:#fff;
}

.-browser-mobile #cssmenu ul ul,
.-browser-mobile #cssmenu ul ul ul,
.-browser-tablet #cssmenu ul ul,
.-browser-tablet #cssmenu ul ul ul {
    position:relative;left:0;width:100%;margin:0;text-align:left;
}

.-browser-mobile #cssmenu > ul > li.has-sub > a:after,
.-browser-mobile #cssmenu > ul > li.has-sub > a:before,
.-browser-mobile #cssmenu ul ul > li.has-sub > a:after,
.-browser-mobile #cssmenu ul ul > li.has-sub > a:before,
.-browser-tablet #cssmenu > ul > li.has-sub > a:after,
.-browser-tablet #cssmenu > ul > li.has-sub > a:before,
.-browser-tablet #cssmenu ul ul > li.has-sub > a:after,
.-browser-tablet #cssmenu ul ul > li.has-sub > a:before {
    display:none;
}

.-browser-mobile #cssmenu #head-mobile,
.-browser-tablet #cssmenu #head-mobile {
    display: block; xpadding: 23px; color: #fff; font-size: 12px; font-weight: 700; float: right; width: 110px; text-transform: uppercase; font-size: 14px; margin-top: 8px; margin-bottom:20px; font-family: sans-serif;
}

.-browser-mobile .button,
.-browser-tablet .button {
    width:55px;height:46px;position:absolute;right:0;top:0;cursor:pointer;z-index: 12399994;
}

.-browser-mobile .button:after,
.-browser-tablet .button:after {
    position:absolute;top:22px;right:20px;display:block;height:4px;width:20px;border-top:2px solid #dddddd;border-bottom:2px solid #dddddd;content:'';
}

.-browser-mobile .button:before,
.-browser-tablet .button:before {
    -webkit-transition:all .3s ease;-ms-transition:all .3s ease;transition:all .3s ease;position:absolute;top:16px;right:20px;display:block;height:2px;width:20px;background:#ddd;content:''
}

.-browser-mobile .button.menu-opened:after,
.-browser-tablet .button.menu-opened:after {
    -webkit-transition:all .3s ease;-ms-transition:all .3s ease;transition:all .3s ease;top:23px;border:0;height:2px;width:19px;background:#fff;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)
}

.-browser-mobile .button.menu-opened:before,
.-browser-tablet .button.menu-opened:before {
    top:23px;background:#fff;width:19px;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)
}

.-browser-mobile #cssmenu .submenu-button,
.-browser-tablet #cssmenu .submenu-button {
    position:absolute;z-index:99;right:0;top:0;display:block;border-left:1px solid #444;height:46px;width:46px;cursor:pointer
}

.-browser-mobile #cssmenu .submenu-button.submenu-opened,
.-browser-tablet #cssmenu .submenu-button.submenu-opened {
    background:#262626;
}

.-browser-mobile #cssmenu ul ul .submenu-button,
.-browser-tablet #cssmenu ul ul .submenu-button {
    height:34px;width:34px;
}

.-browser-mobile #cssmenu .submenu-button:after,
.-browser-tablet #cssmenu .submenu-button:after {
    position:absolute;top:22px;right:19px;width:8px;height:2px;display:block;background:#ddd;content:'';
}

.-browser-mobile #cssmenu ul ul .submenu-button:after,
.-browser-tablet #cssmenu ul ul .submenu-button:after {
    top:15px;right:13px;
}

.-browser-mobile #cssmenu .submenu-button.submenu-opened:after,
.-browser-tablet #cssmenu .submenu-button.submenu-opened:after {
    background:#fff;
}

.-browser-mobile #cssmenu .submenu-button:before,
.-browser-tablet #cssmenu .submenu-button:before {
    position:absolute;top:19px;right:22px;display:block;width:2px;height:8px;background:#ddd;content:'';
}

.-browser-mobile #cssmenu ul ul .submenu-button:before,
.-browser-tablet #cssmenu ul ul .submenu-button:before {
    top:12px;right:16px;
}

.-browser-mobile #cssmenu .submenu-button.submenu-opened:before,
.-browser-tablet #cssmenu .submenu-button.submenu-opened:before{
    display:none;
}

.-browser-mobile #cssmenu ul ul ul li.active a,
.-browser-tablet #cssmenu ul ul ul li.active a {
    border-left:none;
}

.-browser-mobile #cssmenu > ul > li.has-sub > ul > li.active > a,
.-browser-mobile #cssmenu > ul ul > li.has-sub > ul > li.active > a,
.-browser-tablet #cssmenu > ul > li.has-sub > ul > li.active > a,
.-browser-tablet #cssmenu > ul ul > li.has-sub > ul > li.active > a {
    border-top:none;
}

.-browser-mobile #navBar,
.-browser-tablet #navBar {
    xposition: static; overflow: hidden;
}

/* http://codepen.io/emredenx/pen/ojcxl */
@media screen and (max-width:750px){
    /*
    .logo{position:absolute;top:0;left: 0;width:100%;height:46px;text-align:center;padding:10px 0 0 0 ;float:none}
    .logo2{display:none}
    nav{width:100%;}
    #cssmenu{width:100%; padding-top: 10px; min-height: 42px;}
    #cssmenu ul{width:100%;display:none}
    #cssmenu ul li{width:100%;border-top:1px solid #fff}
    #cssmenu ul li.-opened,
    #cssmenu ul ul li.-opened a { background:#363636; }
    #cssmenu ul ul li,
    #cssmenu li:hover > ul > li{height:auto}
    #cssmenu ul li a,#cssmenu ul ul li a{width:100%;border-bottom:0}
    #cssmenu > ul > li{float:none}
    #cssmenu ul ul li a{padding-left:25px}
    #cssmenu ul ul li{background:#333!important;}
    #cssmenu ul ul li:hover{background:#363636!important}
    #cssmenu ul ul ul li a{padding-left:35px}
    #cssmenu ul ul li a{color:#ddd;background:none}
    #cssmenu ul ul li:hover > a,#cssmenu ul ul li.active > a{color:#fff}
    #cssmenu ul ul,#cssmenu ul ul ul{position:relative;left:0;width:100%;margin:0;text-align:left}
    #cssmenu > ul > li.has-sub > a:after,#cssmenu > ul > li.has-sub > a:before,#cssmenu ul ul > li.has-sub > a:after,#cssmenu ul ul > li.has-sub > a:before{display:none}
    #cssmenu #head-mobile{    display: block; xpadding: 23px; color: #fff; font-size: 12px; font-weight: 700; float: right; width: 110px; text-transform: uppercase; font-size: 14px; margin-top: 8px; margin-bottom:20px; font-family: sans-serif;}
    .button{width:55px;height:46px;position:absolute;right:0;top:0;cursor:pointer;z-index: 12399994;}
    .button:after{position:absolute;top:22px;right:20px;display:block;height:4px;width:20px;border-top:2px solid #dddddd;border-bottom:2px solid #dddddd;content:''}
    .button:before{-webkit-transition:all .3s ease;-ms-transition:all .3s ease;transition:all .3s ease;position:absolute;top:16px;right:20px;display:block;height:2px;width:20px;background:#ddd;content:''}
    .button.menu-opened:after{-webkit-transition:all .3s ease;-ms-transition:all .3s ease;transition:all .3s ease;top:23px;border:0;height:2px;width:19px;background:#fff;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}
    .button.menu-opened:before{top:23px;background:#fff;width:19px;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}
    #cssmenu .submenu-button{position:absolute;z-index:99;right:0;top:0;display:block;border-left:1px solid #444;height:46px;width:46px;cursor:pointer}
    #cssmenu .submenu-button.submenu-opened{background:#262626}
    #cssmenu ul ul .submenu-button{height:34px;width:34px}
    #cssmenu .submenu-button:after{position:absolute;top:22px;right:19px;width:8px;height:2px;display:block;background:#ddd;content:''}
    #cssmenu ul ul .submenu-button:after{top:15px;right:13px}
    #cssmenu .submenu-button.submenu-opened:after{background:#fff}
    #cssmenu .submenu-button:before{position:absolute;top:19px;right:22px;display:block;width:2px;height:8px;background:#ddd;content:''}
    #cssmenu ul ul .submenu-button:before{top:12px;right:16px}
    #cssmenu .submenu-button.submenu-opened:before{display:none}
    #cssmenu ul ul ul li.active a{border-left:none}
    #cssmenu > ul > li.has-sub > ul > li.active > a,#cssmenu > ul ul > li.has-sub > ul > li.active > a{border-top:none}
    #navBar{xposition: static; overflow: hidden;} /* fixes iphone glitch -- allows scrolling, position not fixed


    #cssmenu > ul > li:hover > ul {
        top: 0px;
    }

    #cssmenu > ul ul > li.has-sub > ul > li.active > a {
        background: #aaa;

    }

    #cssmenu ul ul {
        opacity: 1;
    }
    */
}


/* Set defaults (to be overridden on per customer basis) */
#cssmenu {
    background: #e2524f;
}

#cssmenu > ul li a{
    color: #fff;
}

#cssmenu > ul > li:hover > a {

}

#cssmenu > ul li a:hover{
    color: gold;
}

#cssmenu ul ul li a {
    background: #aaa;
    color: #fff;
}

/*
#cssmenu ul ul li:hover > a {
    background: #555;
    color: #aaa;
}
*/

#cssmenu ul ul ul li {
    left: -25px;
}

/*  This is so the nav menu interface in the admin panel will work properly without messing up the formatting.   */
#cssmenu h5 {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    text-transform: inherit;
    color: inherit;
    left: inherit;
    margin: inherit;
}



