/*
.nav {
    list-style: none;
     *zoom: 1;
	 display:none;
	 width:100%;
	 margin-bottom:0px!important;
	 margin-left:0px!important;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 100%;
	margin-bottom:0px!important;
	 margin-left:0px!important;
}
.nav a {
    color:#fff;
	text-decoration:none;
	width:200px;
}
.nav li {
    position: relative;

}
.nav > li {
    float: left;
}

.nav a.selected {
    text-decoration:underline!important;
}

.nav li a {
    display: block;
	padding-top:15px;
	padding-bottom:15px;
}
.nav li  ul {
    position: absolute;
    left: -9999px;
}
.nav > li.hover > ul {
    left: 0;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
}

.nav li a {
	padding-left:25px;
}

.nav li li a {
    display: block;
    position: relative;
    z-index:100;
	padding-left:35px;
}

.nav li li li a {
    display: block;
    position: relative;
    z-index:100;
	padding-left:50px;
}

.nav span.arrow-parent {
	position:absolute;
	width:40px;
	height:50px;
	right:5px;
	background: url("../images/marrow.png") no-repeat center center;
}


@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;
    }

}*/