/* CSS used for the top navigation bar */

.container {
    width: auto;       /* sets navigation bar to width of main content-wrapper */
    /* max-width: auto;  */
    height: 23px;      /* set maximum height for navigation container */ 
    margin: 0px auto;
    background: #87ceeb; /* background or the navigation container = skyblue */
    background-image: url('');
    font-size: 90%; 
}
.toggleMenu {
    display:  none;
    background: #87ceeb; 
    background-image: url(''); 
    padding: 10px 15px;
    color: #fff;
}
.nav {
    list-style: none;
    font-size:100%;
    background: #87ceeb;  
    background-image: url(''); 
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 9em;
}


.nav a {                       /* level 1 colors */
    padding-left: 15px;
    padding-right: 15px;
    background: #87ceeb;  
    /*color: #FFFFFF; */
    border:1px solid blue; 
}


.nav li {
    position: relative;
}
.nav > li {
    float: left;
    border-top: 0px solid #104336; /* top border for nav bar wrap */
}
.nav > li > .parent {
    background-image: url("./../images/downArrow.gif");
    background-repeat: no-repeat;
    background-position: right;
}
.nav > li > a {
    display: block;
}
.nav li  ul {
    position: absolute;
    left: -9999px; 
    /* padding-left:20px;  */
}
.nav > li.hover > ul {
    left: 0;
    color:#ff0000;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
    color:#ff0000;
    background: #87ceeb;  
}
.nav li a {
    display: block;
    background: #87ceeb;  
    }
.nav li li a {
    display: block;
    background: #87ceeb; 
    background-image: url('');
    position: relative;
    z-index:100;
    border-top: 1px solid #175e4c;  /* top border for nav bar wrap */
}
.nav li li li a {
    background: #87ceeb; 
    z-index:200;
    border-top: 1px solid #1d7a62;
}

/*
@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
    .nav > li {
        float: none; font-size:150%;
    }
    .nav > li > .parent {
        background-position: 95% 50%;
    }
    .nav li li .parent {
        background-image: url("./../images/downArrow.gif");
        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;
        color:#ff0000;        
    }

}
*/