/* Navigation Menu Style */
nav {
  font-family: "Frutiger LT Std Cond", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  -webkit-box-shadow: 0 0 3px #BBB;
  -ms-box-shadow: 0 0 3px #BBB;
  box-shadow: 0 0 3px #BBB;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 280px;
  margin-left: -280px;
  height: 100vh;
  background: #FFF;
  z-index: 5;
}

nav.menu_open {
  margin-left: 0;
}

nav.menu_open .filler {
  height: 105px;
  width: 100%;
  background: #003399;
}

nav.menu_open .first-xs {
  background: #003399;
}

nav.menu_open .first-xs > a {
  color: #FFF;
}

nav > ul {
  margin: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

nav > ul li {
  padding: 0 !important;
  list-style: none;
  position: relative;
}

nav > ul li.divider {
  border-bottom: 1px solid #EEE;
}

nav > ul li a.hasChild:after {
  position: absolute;
  right: 10px;
  font-family: FontAwesome;
}

nav > ul li i {
  margin-right: 10px;
}

nav > ul li > ul {
  min-width: 100%;
  padding: 0 !important;
  margin: 2px 0 0 0 !important;
  background: #F8F8F8;
  border-radius: 0 0 2px 2px !important;
  -webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

nav > ul li > ul ul {
  margin: 0 !important;
  background: #F0F0F0;
  top: -2px;
  left: 100%;
  z-index: 6;
  border-radius: 0 2px 2px 0 !important;
}

nav > ul li > ul li a.hasChild:after {
  content: "\f105";
  margin-right: 0;
}

nav > ul > li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-right: none;
  text-align: left !important;
  position: relative;
}

nav > ul > li.right ul {
  right: 0;
}

nav > ul > li ul {
  font-size: 14px;
  border-radius: 2px;
}

nav > ul > li ul li {
  white-space: nowrap;
}

nav > ul > li ul li:last-child {
  border-bottom: none;
}

nav > ul > li ul li:last-child > a {
  border-radius: 0 0 3px 3px !important;
}

nav > ul > li > a {
  text-align: left;
  margin: 0 0 -2px 0;
}

nav > ul > li > a > i {
  margin-right: 10px;
  margin-bottom: 0;
  font-size: 14px !important;
  width: auto;
}

nav > ul > li > a > span {
  display: inline;
}

nav > ul > li a.hasChild:after {
  content: "\f107";
}

nav > ul > li a {
  padding: 15px;
  cursor: pointer;
  display: block;
}

nav > ul > li a:hover, nav > ul > li a:active, nav > ul > li a.active {
  background: rgba(0, 51, 153, 0.05);
  color: #003399;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
  text-decoration: none;
}

nav > ul > li a:hover .fa {
  color: #003399;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

@media only screen and (min-width: 48em) {
  .nav-stick {
    opacity: 0.5;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .nav-stick:hover {
    opacity: 1;
  }
  nav {
    font-size: 15px;
    position: relative;
    height: auto;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 2px;
    overflow: initial;
  }
  nav .filler {
    display: none;
  }
  nav > ul > .s0 {
    border-right: 1px solid #EEE;
    border-bottom: none;
  }
  nav > ul > .s0:last-child {
    border-right: none;
  }
  nav > ul > li > a {
    text-align: center;
    padding: 15px 0 5px;
    border-bottom: none;
  }
  nav > ul > li > a > span {
    display: none;
  }
  nav > ul > li > a > i {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 20px !important;
    width: 100%;
  }
  nav > ul > li ul {
    margin: 2px 0 0 0 !important;
    padding-left: 0 !important;
    background: #FFF !important;
    -webkit-box-shadow: 0 0 3px #BBB;
    -ms-box-shadow: 0 0 3px #BBB;
    box-shadow: 0 0 3px #BBB;
  }
  nav > ul > li:after {
    content: "";
    display: block;
    padding: 0;
    border-top: 2px solid #003399;
    width: 0;
    margin: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  nav > ul > li:hover:after {
    width: 100%;
    border-top: 2px solid #003399;
  }
  nav > ul li > ul {
    position: absolute;
    visibility: hidden;
    /* hides sub-menu */
    opacity: 0;
    -webkit-transform: translateY(2em);
            transform: translateY(2em);
  }
  nav > ul li:hover > ul {
    visibility: visible;
    /* shows sub-menu */
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition-delay: 0s, 0s, 0.3s;
            transition-delay: 0s, 0s, 0.3s;
  }
  nav > ul li:last-child > a {
    border-bottom: none;
  }
}

@media only screen and (min-width: 64em) {
  nav > ul > li > a {
    padding: 15px 0;
  }
  nav > ul > li > a > span {
    display: inline-block;
  }
}

@media only screen and (min-width: 75em) {
  nav > ul > li > a > i {
    margin-right: 10px;
    margin-bottom: 0;
    font-size: 14px !important;
    width: auto;
  }
}

#menu_toggle {
  position: relative;
  max-width: 30px;
  height: 30px;
  margin-right: 10px;
  cursor: pointer;
}

#menu_toggle .menu_button {
  background: #AAA;
  width: 30px;
  height: 3px;
  display: block;
  margin: 14px 0 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#menu_toggle:before, #menu_toggle:after {
  content: "";
  display: block;
  background: #AAA;
  width: 30px;
  height: 3px;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#menu_toggle:before {
  top: 0px;
}

#menu_toggle:after {
  top: 28px;
}

#menu_toggle:hover::before, #menu_toggle:hover::after {
  background: #000;
}

#menu_toggle.menu_open .menu_button {
  width: 0;
}

#menu_toggle.menu_open:before {
  top: 12px !important;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#menu_toggle.menu_open:after {
  top: 12px !important;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menu_toggle:hover > .menu_button {
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#menu_toggle.menu_open:before, #menu_toggle.menu_open:after {
  background: #000;
}

/* BUGGY
nav ul ul li.right>ul {
	left: auto;
	right: 100%;
	border-radius: 2px 0 0 2px!important;
}
li.right a.hasChild:after{
	content: "\f104";
}
*/
/**
 * JQuery autofill : SASS Partial
 * @author
 * 
 */
.autofill {
  background: #FFF;
  border: 1px solid #EEE;
  display: inline-block;
  vertical-align: middle;
  margin: 5px 0;
  padding: 0 3px 3px;
  border-radius: 3px;
  min-height: 29px;
  cursor: pointer;
  width: 200px !important;
}

.autofill.open {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.autofill > .autofills {
  border: 1px solid #EEE;
  border-radius: 2px;
  padding: 3px 0 3px 3px;
  margin-right: 3px;
  display: inline-block;
  cursor: default;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 3px;
}

.autofill .autofillx {
  color: #999;
  border-left: 1px solid #EEE;
  display: inline-block;
  width: 10px;
  text-align: center;
  font-size: 10px;
  padding: 3px;
  cursor: pointer;
  margin-left: 5px;
}

.autofill > span:hover {
  color: red;
}

.autofill > span:hover .autofillx {
  color: red;
}

.autofill input {
  margin: 0;
  padding: 3px 0;
}

.autofill > .pop {
  background: #FFF;
  position: absolute;
  margin-top: 30px;
  margin-left: -4px;
  padding: 0 3px 3px;
  border: 1px solid #EEE;
  border-radius: 0 0 3px 3px;
  border-top: none;
  min-width: 100px;
}

.autofill > .pop > .srch {
  width: 100%;
  border: 1px solid #EEE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 3px 20px 3px 3px;
  background: #F8F8F8;
}

.autofill > .pop > .err {
  color: red;
  font-size: 12px;
  background: rgba(255, 117, 0, 0.3);
  padding: 5px;
  border-radius: 2px;
  margin-top: 3px;
  cursor: default;
}

.autofill > .pop > .rslt {
  margin: 0;
  padding: 0;
  border: none;
  max-height: 100px;
  overflow-x: auto;
}

.autofill > .pop > .rslt > .autofillr {
  padding: 5px;
  cursor: pointer;
  border-bottom: 1px solid #EEE;
}

.autofill > .pop > .rslt > .autofillr:hover {
  background: #F8F8F8;
}

.autofill > .pop > .rslt > .autofillr span {
  color: #007FD0;
  text-decoration: underline;
}

.autofill > .pop > .spin {
  display: inline-block;
  position: absolute;
  margin-left: -20px;
  margin-top: 4px;
  width: 10px;
  height: 10px;
  border: 3px solid rgba(255, 117, 0, 0.3);
  border-radius: 50%;
  border-top-color: #FF7500;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

.nav-stick {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
/*# sourceMappingURL=nav.css.map */