.container_menu {
    width: 100%;
    max-width: 1160px;
	margin-bottom: 1.4em;
}
.toggleMenu {
    display:  none;
    padding: 10px 15px;
    margin: 0 0 25px 0;
    color: #fff;
}
.nav {
    list-style: none;
    *zoom: 1;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 22em;
}
.nav a {
    padding: 10px 15px 10px 14px;
    color: #fff;
	background: #0058a8; 
	font-size: 1.7em;
}
.nav li {
    position: relative;
}

.nav li a:hover {
	background: #0f75bc;
	color: #fff22e;
}

.nav > li {
    float: left;
}
.nav > li > .parent {
    background-repeat: no-repeat;
    background-position: right;
}
.nav > li > a {
    display: block;
}
.nav li ul {
    position: absolute;
    left: -9999px;
}
.nav > li.hover > ul {
    left: 0;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
}
.nav li li a {
    display: block;
    position: relative;
    z-index: 100;
	background: #0f75bc;
    border-top: 1px solid #72797e;
	font-size: 1.7em;
}

.nav li li a:hover {
    display: block;
    position: relative;
    z-index:100;
}

.nav li li li a {
    z-index: 200;
    border-top: 1px solid #808080;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
   

@media screen and (max-width: 1150px) {
	.nav li a {
		font-size: 1.8em;
	}	
}


@media screen and (max-width: 1090px) {
	.nav li a {
		font-size: 1.6em;
	}	
}

@media screen and (max-width: 1025px) {
	.nav li a {
		font-size: 1.4em;
	}	
}
   
@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
    .nav > li {
        float: none;
    }
    .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%;
    }
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }



}