<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.dropdowns nav, .dropdowns ul, .dropdowns li, .dropdowns a  {margin: 0; padding: 0;}

.dropdowns a {text-decoration: none;}

.toggleMenu {
    display:  none;
}
.nav {
    list-style: none;
     *zoom: 1;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
}
.nav a {
    padding: 10px 15px;
}
.nav li {
    position: relative;
}
.nav &gt; li {
    float: left;
}
.nav &gt; li &gt; .parent {
    background-image: url("images/downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
}
.nav &gt; li &gt; a {
    display: block;
}
.nav li  ul {
    position: absolute;
    left: -9999px;
}
.nav &gt; li.hover &gt; ul {
    left: 0;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
}
.nav li li a {
    display: block;
    position: relative;
    z-index:100;
}
.nav li li li a {
    z-index:200;
}

@media screen and (max-width: 990px) {
    .active {
        display: block;
    }
    .nav &gt; li {
        float: none;
    }
    .nav &gt; li &gt; .parent {
        background-position: 96% 50%;
    }
    .nav li li .parent {
        background-image: url("images/downArrow.png");
        background-repeat: no-repeat;
        background-position: 96% 50%;
    }
    .nav ul {
        display: block;
        width: 100%;
    }
   .nav &gt; li.hover &gt; ul , .nav li li.hover ul {
        position: static;
    }

}


.vc_custom_1431388838289 {
    margin-top: -80px;
}

.toggle {
    right: 1.15em;
}
/* fonts */
.dropdowns {font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }

/* colors */
/* ------ */
/* togle menu button for narrow screens */
.toggleMenu {
    color: #fff;
}

/* general navigation background colors */
.nav {
     background: #01aef1;
	 border: 1px solid #f0f0f0;
}

/* general navigation link font color */
.nav a {
    color:#fff;
} 

/* first level items borders */
.nav &gt; li {
	
}

/* navigation hover colors */
.nav a:hover {
	background-color: #056387 !important; color: #fff;
}

/* second level navigation colors */
.nav li li a {
    background: #117ea9;
    border-bottom: 1px solid #c0c0c0;
}

/* third level navigation colors */
.nav li li li a {
    background:#117ea9;
    border-bottom: 1px solid #c0c0c0;;
}

/* ---------------- */
/*      layout      */
/* -----------------*/

/* main div */
.dropdowns {
    position: fixed;
    top: 77px;
    z-index: 9999;
    width: 100%;
}

/* small screens menu button */
a.toggleMenu {
	padding: 10px 0;
	width:100%;
	text-align: center;
}

/* second and third level menus */
.nav ul {
	width:9em;
}

/* general paddings and other stuff */
.nav a {
	padding: 5px 10px;
}

/* parents that have submenus */
.nav &gt; li &gt; .parent {
	padding-right: 25px;
	background-position: 96% 50%;
}

/* small screen adjustments*/
@media screen and (max-width: 990px) {
	.nav ul {
		width: 100%;
	}
}


@media only screen 
and (min-width : 0)
and (max-width : 990px) {
	
.dropdowns { display: block;}

}

@media only screen 
and (min-width : 991px)
and (max-width : 3000px) {

.dropdowns { display: none;}

}






.nav &gt; li &gt; a:hover, .nav &gt; li &gt; a:focus { background: none;}</pre></body></html>