/* =Styles for the lab
-------------------------------------------------------------- */
#wrapper {
	min-width:950px !important;
}
nav {
	color:#fff;
}
nav ul {
    list-style-type:none;
    margin:0;
    padding:0;
}
nav ul li {
    display:inline-block;
    position:relative;
}

/* sub navigation */
nav li ul {    
    background-color:#333;
    position:absolute;
    left:0;
    top:52px; /* make this equal to the line-height of the links (specified below) */

}
nav li li {height:52px;
    position:relative;
    margin:0;
    display:block;
    z-index:999;

}
nav li li ul {
    position:absolute;
    top:0;
    left:120px; /* make this equal to the width of the sub nav above */
    margin:0;
}

/* style all links */
nav a {
    line-height:52px;

	color:#fff;
font-size:14px;

}
nav a {
    text-decoration:none;
    display:block;
}
nav a:hover,
nav a:focus,
nav a:active {
    color:#fff;
}

/* style sub level links */
nav li li a {
    border-bottom:solid 1px rgb(255,255,255);
    padding:0;background:#333 !important;
	color:#fff;
}
nav li ul li a:hover{font-size:14px; color:#f8f500;}

nav li li:last-child a {
	margin-bottom:2px !important;
}

/* hide sub menu links */
ul.sub-menu {  background:#333 !important;border-right:1px #fff solid;
    display:none;
}

/* show arrows for dropdowns */
nav li.dropdown > a {
    background-position:right 20px;
    background-repeat:no-repeat;
}
nav li li.dropdown{height:40px !important; line-height:40px !important;}
nav li li.dropdown > a {height:40px !important; line-height:40px !important;
 
    background-position:right 16px;
    background-repeat:no-repeat;
}

nav li li.dropdown > a:hover{background:#e72021 !important;}