.toggleMenu {
    display:  none;
    background:#ccc;
    padding: 8px 0px;
    color: #fff;
	width:100%;
}
.top_nav {
    list-style: none;
     *zoom: 1;
}
.top_nav:before,
.top_nav:after {
    content: " "; 
    display: table; 
}
.top_nav:after {
    clear: both;
}
.top_nav ul {
    list-style: none;
}
.top_nav a {
    color:#010101;
	background:url(../images/menu_line.png) no-repeat right center;
	padding:46px 15px;
}

.top_nav a:hover{
	/*background:#0055a3 !important;*/
	color:#0055a3;
}
.top_nav > li:last-child a{
	background:none;
}
.top_nav li {
    position: relative;
}
.top_nav > li {
    display: inline-block;
}
.top_nav > li > .parent {
    background-image: url("../images/downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
}
.top_nav > li > a {
    display: block;
}
.top_nav li  ul {
    position: absolute;
    left: -9999px;
    z-index: 99999999999;
}
.top_nav > li.hover > ul {
    left: 0;
}
.top_nav li li.hover ul {
    left: 100%;
    top: 0;
}
.top_nav li li a {
    display: block;
    background: #fff;
    position: relative;
    z-index:100;
	padding:10px 25px;
	width:170px;
	text-align:left;
	font-family: "futura-pt",sans-serif;
	font-weight: 400;
	font-size:14px;
}
.top_nav li li a:hover{
	color:#000;
	font-family: "futura-pt",sans-serif;
	font-weight: 700;
}
.top_nav li li:first-child a {
	border-top:5px solid #ffc00f;
}
.top_nav li li li a {
    background:#249578;
    z-index:200;
    border-top: 1px solid #1d7a62;
}

@media screen and (max-width: 767px) {
    .active {
        display: block;
    }
    .top_nav > li {
        float: none;
    }
    .top_nav > li > .parent {
        background-position: 95% 50%;
    }
    .top_nav li li .parent {
        background-image: url("../images/downArrow.png");
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .top_nav ul {
        display: block;
        width: 100%;
    }
   .top_nav > li.hover > ul , .top_nav li li.hover ul {
        position: static;
    }

}