@charset "UTF-8";

/* ------------------------------------------
  RESET
--------------------------------------------- */

body, div,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, dl, dt, dd, ol, ul, li, hr,
fieldset, form, label, legend, th, td,
article, aside, figure, footer, header, hgroup, menu, nav, section,
summary, hgroup {
  margin: 0;
  padding: 0;
  border: 0;
}

a:active,
a:hover {
  outline: 0;
}

@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }


/* ------------------------------------------
  From original responsive-nav.css
--------------------------------------------- */

/*! responsive-nav.js 1.0.32 by @viljamis */

.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}

.nav-collapse li {
  width: 16.6666666%;
  width: 33.33333333%;
  display: block;
  padding: 8px 0;
}

@media only screen and (min-width:600px) {
    .nav-collapse li {
      width: 16.6666666%;
      /*width: 33.33333333%;*/
      display: block;
      padding: 20px 0;
    }	
}


.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  background:#114C74;
  zoom: 1;
}

@media only screen and (min-width:980px) {
    .js .nav-collapse {
      clip: rect(0 0 0 0);
      max-height: 0;
      position: absolute;
      display: block;
      overflow: visible;
      zoom: 1;
    }
}


.nav-collapse.opened {
  max-height: 9999px;
}

.disable-pointer-events {
  pointer-events: none !important;
}

.nav-toggle {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;

}
/* ------------------------------------------
  NAVIGATION STYLES
  (+ responsive-nav.css file is loaded in the <head>)
--------------------------------------------- */

.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.nav-collapse {
    z-index:999999;
}
.nav-collapse,
.nav-collapse * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


.nav-collapse ul {
  list-style: none;
  width: 100%;
  float: left;
}

.nav-collapse li {
  float: left;
  width: 50%;
  text-align: center;
  /*padding: 1.3em 0;*/
}

@media only screen and (min-width:980px) {
    .nav-collapse ul {
  width: auto;
}
	.nav-collapse li {
	  float: left;
	  width: auto;
	  text-align: center;
	  /*padding: 1.3em 0;*/
	}
}



.nav-collapse li.current_page_parent, .nav-collapse li.current_page_item {
    background: #102947;
}
.nav-collapse li.current_page_parent a, .nav-collapse li.current_page_item a {
    color: #fff;
  font-weight: 600;
}

@media only screen and (max-width:980px) {
.nav-collapse a {
  color: #c8e2f2;
  text-decoration: none;
  width: 100%;
  /*background: #000;*/
 /* border-bottom: 1px solid white;*/
  padding: 1.3em 0 0.8em;
  float: none;
  display: block;
/*  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;*/
font-size:14px;
}
.nav-collapse a:hover {
  color: #eee;
  text-decoration: none;
  width: 100%;
  background: #1f4f89;
/*  padding: 1.3em 1em;*/
  float: none;
}
}


/* ------------------------------------------
  NAV TOGGLE STYLES
--------------------------------------------- */

@font-face {
  font-family: "responsivenav";
  src:url("icons/responsivenav.eot");
  src:url("icons/responsivenav.eot?#iefix") format("embedded-opentype"),
    url("icons/responsivenav.ttf") format("truetype"),
    url("icons/responsivenav.woff") format("woff"),
    url("icons/responsivenav.svg#responsivenav") format("svg");
  font-weight: normal;
  font-style: normal;
}

.nav-toggle {
  position: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  text-indent: -999px;
  position: relative;
  overflow: hidden;
  width: 55px;
  height: 70px;
  float: right;
  margin-right: 20px;
  -moz-transition: all .2s ease;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  background: url('icons/menu.png') no-repeat 0 0;
  opacity: 1;
}

@media only screen and (min-width:980px) {
	.nav-toggle {
	  display: none;
	}
	
}



.nav-toggle:before {
  color: #dedede; /* Edit this to change the icon color */
  background: transparent;
  font-family: "responsivenav", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-size: 28px;
  text-transform: none;
  position: absolute;
  /*content: "≡";*/
  text-indent: 0;
  text-align: center;
  line-height: 55px;
  speak: none;
  width: 100%;
  top: 0;
  left: 0;
  
}

.nav-toggle.active::before {
  font-size: 24px;
  line-height: 60px;
  content:"x";
  background: #114C74;
}



