.dropdowns nav, .dropdowns ul, .dropdowns li, .dropdowns a  {
  margin: 0; padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.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: 0px 15px;  /* distance between items */
}
.nav li {
    position: relative;
}
.nav > li {
    float: left;
}
.nav > li > .parent {
    background-image: url("downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
}
.nav > li > a {
    display: block;
}
.nav li a:hover{
background: #FEC62A; /* hover background color menu bar */
color: #EEEEEE;  /* text highlight color */
}

.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;
}
.nav li li li a {
    z-index:200;
}

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

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

/* colors */

/* togle menu button for narrow screens */
.toggleMenu {
    background: #FfFfFf;
    color: #123;
}

/* general navigation background color */
.nav {
     background:#FfFfFf;
}

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

/* first level items borders */
.nav > li {
    border-top: 1px solid #FfFfFf;
}

/* second level navigation colors */
.nav li li a {
    background: #FfFfFf;
    border-top: 1px solid #eeeeee;
padding:  5px 30px;
}

.nav li li li a {
    background:#FfFfFf;
    border-top: 1px solid #eeeeee;
}

/* layout */
.dropdowns {
    width: 90%;
    max-width: 900px;
    XXXXXXXXXXXXXXXmargin: 10px auto;
}

a.toggleMenu {
	padding:  10px 15px;
}

.nav ul {
    width: 12em;
}

.nav > li > .parent {
	
}
