body, nav, ul, li, a  {margin: 0; padding: 0;}

a {text-decoration: none;}

.toggleMenu {
    display:  none;
    background: #f6412b;
    padding: 10px 25px;
    color: #fff;
	float: right;	
	border-radius: 3px; 
}
.nav {
    list-style: none;
     *zoom: 1;
	 text-align: right;
	 float: right;

}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 9em;
}
.nav a {
    padding: 10px 20px;
    color:#000;
	font-size: 17px;
	text-transform:uppercase;
	 
}
.nav li {
    position: relative; float:right;
}
.nav > li {
    float: right;

}
.nav > li > .parent {
    background-image: url(../images/nav-arrow.png);
    background-repeat: no-repeat;
    background-position: right;
	color: #1f1f1f;
}
.nav > li > a {
    display: block;
}
.nav li  ul {
    position: absolute;
    left: -9999px;
	-webkit-transition:height 200ms ease-in;
    -moz-transition:height 200ms ease-in;
    -o-transition:height 200ms ease-in;
    transition:height 200ms ease-in;
}
.nav > li.hover > ul {
    left: 0;
	-webkit-transition:height 200ms ease-in;
    -moz-transition:height 200ms ease-in;
    -o-transition:height 200ms ease-in;
    transition:height 200ms ease-in;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
}
.nav li li a {
    display: block;
    background: #1d7a62;
    position: relative;
    z-index:100;
    border-top: 1px solid #175e4c;
}
.nav li li li a {
    background:#249578;
    z-index:200;
    border-top: 1px solid #1d7a62;
}

@media screen and (max-width: 1168px) {
	
.active { display: block; }
.nav > li { float: none; border-bottom: 1px solid #FFF; }
.nav > li:last-child { border-bottom: none;}
.nav > li > a { background:#0968c3; }
.nav > li > .parent { background-position: 95% 50%; }
    .nav li li .parent {
        background-image: url("images/downArrow.png");
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .nav ul {
        display: block;
        width: 100%;
		background:#F00;
		position:absolute;
		bottom: 0;
		left: 0;
		
    }

	.nav a {
    padding: 10px 20px;
    color:#fff; text-align: center; }
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }
header nav { width: 90px; }	
header nav .nav { width: 100%; position:absolute; right:0; top: 68px; z-index: 9999;  }

}