@charset "UTF-8";




/* ------------------------------------------
  NAVIGATION STYLES
  (+ responsive-nav.css file is loaded in the <head>)
--------------------------------------------- */

.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.nav-collapse,
.nav-collapse * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.nav-collapse,
.nav-collapse ul {
  list-style: none;
//  width: 100%;
  float: left;
}

.nav-collapse li {
  float: left;
  width: 100%;
  height:100px;
}
@media screen and (max-width: 767px) {
.nav-collapse li {
  height:50px;
	border-bottom: 1px solid #333;
}
}

@media screen and (min-width: 768px) {
  .nav-collapse li {
    width: 22%;
//	text-indent:-9999px;
    *width: 24.9%; /* IE7 Hack */
    _width: 19%; /* IE6 Hack */
  }
  .nav-collapse li#mb0 {
	background-position:0px 0px;
	display:none;
  }
  .nav-collapse li#mb1 {
	background-position:-180px 0px;
  }
  .nav-collapse li#mb2 {
	background-position:-360px 0px;
  }
  .nav-collapse li#mb3 {
	background-position:-540px 0px;
  }
  .nav-collapse li#mb4 {
	background-position:-720px 0px;
  }
  .nav-collapse li.submenu {
    display:none;
  }
}


@media screen and (max-width: 767px) {
  .nav-collapse li#mb0 {
    display:none;
  }
}

.nav-collapse a {
  text-decoration: none;
  width: 100%;
  padding: 0.3em 1em;
  float: left;
}

@media screen and (min-width: 768px) {
  .nav-collapse a {
    margin: 0;
    padding: 1em;
    float: left;
    text-align: center;
	height:100px;
	color:#fff;
	line-height:400%;
  }
  .nav-collapse a:hover {
	color:#CCCCCC;
	text-decoration:none;
  }
}

.nav-collapse ul ul a {
  background: #ca3716;
  padding-left: 2em;
}

@media screen and (min-width: 768px) {
  .nav-collapse ul ul a {
    display: 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 {
  -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;
  overflow: hidden;
  width: 60px;
  height: 60px;
  float: right;
  position:absolute;
  top:15px;
  right:15px;
  border-radius:30px;
}

.nav-toggle:before {
  color: #fff; /* Edit this to change the icon color */
  font-family: "responsivenav", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
//  font-size: 28px;
  font-size: 12px;
  text-transform: none;
  position: absolute;
//  content: "≡";
  content: "MENU";
  text-indent: 0;
  text-align: center;
  line-height: 60px;
  speak: none;
  width: 100%;
  top: 0;
  left: 0px;
  background-color:#555;
}

.nav-toggle.active::before {
  font-size: 24px;
  content:"x";
}
