/* =Styles for the lab
-------------------------------------------------------------- */
#wrapper1 {
	background-color:#42464e;
    width: 100%;
    height: 55px;
    z-index:1;
}
#wrapper1 nav {
    width: 96%;
    height: 55px;
	margin:0 auto;
}
#wrapper1 nav ul {
    list-style-type:none;
    margin:0;
    padding:0;
}
#wrapper1 nav ul li {
    display:inline-block;
    position:relative;
}

/* sub navigation */
#wrapper1 nav li ul {    
    background-color:#42464e;
    position:absolute;
    left:0;
    top:55px; /* make this equal to the line-height of the links (specified below) */
    width:100%;
}
#wrapper1 nav li li {
    position:relative;
    margin:0;
    display:block;
}
#wrapper1 nav li li ul {
    position:absolute;
    top:0;
    left:100%; /* make this equal to the width of the sub nav above */
    margin:0;
}

/* style all links */
#wrapper1 nav a {
    line-height:55px;
    text-align: center;
}
#wrapper1 nav a {
    color:#fff;
    text-decoration:none;
    display:block;
}
#wrapper1 nav a:hover,
#wrapper1 nav a:focus,
#wrapper1 nav a:active {
    color:#fff;
    background-color: #d7000f;
}

/* style sub level links */
#wrapper1 nav li li a { 
    border-bottom:solid 1px #50545b;
    margin:0 ;
    padding:0;
}
/*#wrapper nav li li:last-child a {
    border-bottom:none;
}*/

/* hide sub menu links */
#wrapper1 ul.sub-menu {
    display:none;
}

/* show arrows for dropdowns */
#wrapper1 nav li.dropdown > a {
    background-image:url('');
    background-position:right 20px;
    background-repeat:no-repeat;
}

#wrapper1 nav li li.dropdown > a {
    background-image:url('');
    background-position:right 16px;
    background-repeat:no-repeat;
}