/* NAVIGATION CONTAINTER */
#navcontain {
	position: relative;
    margin: 0 auto;
    background: #ff633a;
	color: #fff;
	z-index:9999;
	width: 100%;


}

/* NAVIGATION STYLES START */
.nav {
    position:relative;
	max-width:100%;
	margin: 0 auto;
	z-index: 9999;
	text-align: center;
	z-index:9999;
}



/* MOBILE NAV TO NOT DISPLAY ON DESKTOP */
#cssmenu #head-mobile {display:none;}



/* NAV AND LIST GLOBAL STYLES */
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #head-mobile {
    position:relative;
    list-style:none;
    line-height:1;
    display:block;
}



/* DESKTOP NAV FIRST LEVEL STYLES*/
#cssmenu {
	width:100%;
	margin: 0 auto;
	height: 60px;
	z-index: 999;
	
}

#cssmenu > ul {
    margin: 0 0 0 0;
	text-align: right;
	
	 }

#cssmenu > ul > li {
    position: relative;
    display:inline-block;
	margin: 9px 5px;
    padding: 10px 0px;
    width: 160px;
    text-align: center;
	background: #ff825f;
	color: #fff;
	
}



#cssmenu > ul > li > a {
	display: inline-block;
	color: #fff;
	font-family:'BebasNeue-Bold', sans-serif;
	font-size:22px;
	line-height: 1;
	letter-spacing: 1px;
    text-decoration: none;
}

/* NAV FIRST LEVEL HOVER EFFECTS */
#cssmenu > ul > li:hover,
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li:focus > a,
#cssmenu ul li.active a { 

    color:#fff;
	background: #009818;

}

/* NAV FIRST LEVEL LI - HAS SUB-NAV STYLES (ADDS "+" BUTTON) */

#cssmenu > ul > li.has-sub > a:after {
    content:'';
    display:block;
    
}



/* NAV SECOND LEVEL STYLES */
/* FOR SECOND LEVEL NAV TO NOT APPEAR UNTIL HOVERED */
#cssmenu ul ul {
    position:absolute;
	text-align: center;
    left:-9999px;
	z-index:999;
	padding-top: 26px;
	margin-left: -10px;


}

/* MAKES SECOND LEVEL NAV TO APPEAR */
#cssmenu li:hover > ul {
    left:auto;
}



/* DESKTOP NAV SECOND LEVEL STYLES*/
#cssmenu ul ul li {
    height:auto;
    background: rgba(255,130,95,0.9);
}

#cssmenu ul ul li a {
    max-width:100%;
    min-width:160px;
    padding: 5px 10px;
    text-align:center;
	text-transform: uppercase;
	font-family:'BebasNeue-Regular', sans-serif;
	font-size: 22px;
	color: #fff;
	z-index:999;
}
#cssmenu ul ul li:last-child > a {
    border-bottom:0
}

/* NAV SECOND LEVEL HOVER EFFECTS */
#cssmenu ul li:hover
#cssmenu ul ul li:hover,
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li:focus > a,
#cssmenu ul ul li.active a {

    color:#009818;

}





/* NAV THIRD LEVEL STYLES */
#cssmenu ul ul ul {
    margin-left:100%;
    top:65px;
}



@media screen and (max-width: 1260px){
	
/* NAVIGATION CONTAINTER */
#navcontain {
    width:100%;
    margin:0 auto;
}


#cssmenu {
    width:100%;
    padding:0;
    background:none;
}


/* DESTOP NAV TO NOT DISPLAY ON MOBILE 
    ALSO BAKCGROUND STYLES OF MOBILE NAV DROPDOWN */
#cssmenu ul {
    display:none;
	float: none;
    /*START BACKGROUND STYLES */
    width:100%;
    background: #fff;
	moz-box-shadow: 0px 3px 2px #303030;
    -webkit-box-shadow: 0px 3px 2px #303030;
    box-shadow: 0px 3px 2px #303030;

}


/* MOBILE NAV TO DISPLAY AT QUERY WIDTH 
    ALSO BAKCGROUND STYLES OF MOBILE NAV BAR */
#cssmenu
#head-mobile {
    display: block;
    height: 60px; 
 }
 
 /* MOBILE MENU HAMBURGER BUTTON STYLES */
.navbutton {
    position:absolute;
    width:55px;
    height:46px;
    right:0;
	top: 0;
    cursor:pointer;
    z-index: 12399994;
}

 /* MOBILE MENU HAMBURGER LINE STYLES */
.navbutton:after {
    content:'';
    position:absolute;
    display:block;
    width:32px;
    height:7px;
    top:25px;
    right:20px;
    border-top:2px solid #fff;
    border-bottom:2px solid #fff;
}
.navbutton:before {
    content:'';
    position:absolute;
    display:block;
    width:32px;
    height:2px;
    top:16px;
    right:20px;
    background:#fff;
	
}

.navbutton.menu-opened:after {
    width:27px;
    height:2px;
    top:23px;
    border:0;
    background:#fff;
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    -o-transform:rotate(45deg);
    transform:rotate(45deg);
	-webkit-transition:all .3s ease;
	-ms-transition:all .3s ease;
	transition:all .3s ease;
}
.navbutton.menu-opened:before {
    width:27px;
    top:23px;
    background:#fff;
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    transform:rotate(-45deg);
	-webkit-transition:all .3s ease;
	-ms-transition:all .3s ease;
	transition:all .3s ease;
}



/* MOBILE NAV FIRST LEVEL STYLES*/
#cssmenu ul li {
    *float:none;
    width:100%;
    margin:0;
    border-left:none;
    border-right:none;
    text-align:center;
    border-bottom:1px solid #fff;
}

#cssmenu ul li a,
#cssmenu ul ul li a {
    width:100%;
    border-bottom:0;
    line-height:1;
	color: #fff;
}



/* MOBILE NAV SUBMENU STYLES*/
/*MOBILE NAV TO NOT DISPALY DESKTOP SUBMENU BUTTON */
#cssmenu > ul > li.has-sub > a:after,
#cssmenu > ul > li.has-sub > a:before {
    display:none;
}



/*MOBILE NAV SUBMENU BUTTON STYLES */
#cssmenu .submenu-button {
    position:absolute;
    display:block;
	height: 42px;
    width: 52px;
    right:0;
    top:0;
    background: #fff;
    cursor:pointer;
    z-index:99;
}
#cssmenu .submenu-button.submenu-opened {
    background: #fff;
}

/*MOBILE NAV SUBMENU ICON STYLES */
#cssmenu .submenu-button:before {
    content:'';
    position:absolute;
    display:block;
    width:2px;
    height:8px;
    top:0;
    bottom:0;
    right:0;
    left:0;
    margin:auto;
    background: #e5584c;
}
#cssmenu .submenu-button:after {
    content:'';
    position:absolute;
    display:block;
    width:8px;
    height:2px;
    top:0;
    bottom:0;
    right:0;
    left:0;
    margin:auto;
    background: #e5584c;
}
#cssmenu .submenu-button.submenu-opened:before {
    display:none;
}
#cssmenu .submenu-button.submenu-opened:after {
    background:#e5584c;
}



/* MOBILE NAV SECOND LEVEL STYLES*/
#cssmenu ul ul,
#cssmenu ul ul ul {
    left:0;
    width:100%;
	margin: 0 0 0 0;
    text-align:left;
}

#cssmenu ul ul li {
	background: none;
	margin: 0 0 0 0;
	padding-top: 10px;
	background: #fff;
}

#cssmenu ul ul li a {
    padding-right:0 0 0 80px !important;
    color: #303030 ;
    line-height:1;
    text-decoration:none;
}

#cssmenu ul ul li:hover
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li.active > a {
    color:#e5584c;
	text-decoration:none;
}

/* MOBILE NAV SECOND LEVEL SUBMENU BUTTON STYLES*/
#cssmenu ul ul .submenu-button {
    height:34px;
    width:34px;
}

/*MOBILE NAV SECOND LEVEL SUBMENU ICON STYLES */
#cssmenu ul ul .submenu-button:after {
    top:13px;
    right:13px;
}
#cssmenu ul ul .submenu-button:before {
    top:10px;
    right:16px;
}
}