/* =Styles for the lab
-------------------------------------------------------------- */

nav {
	height: 50px; width:1200px; margin:0 auto;
}
nav ul {
    list-style-type:none;
    margin:0;
    padding:0;
}
nav ul li {
    display:inline-block;
    position:relative;
	width:146px;
	text-align:center;
}
nav ul li:hover { background:#000;}

/* sub navigation */
nav li ul {    
    background-color:#d7000f;
    position:absolute;
    left:0;
    top:50px; /* make this equal to the line-height of the links (specified below) */
    width:330px;
	z-index:99999;
}
nav li li {
    position:relative;
    margin:0;
	width:auto;
    display:block;
	text-align:left;
	border-bottom:1px solid #ed101f;
}
nav li li ul {
    position:absolute;
    top:0;
    left:200px; /* make this equal to the width of the sub nav above */
    margin:0;
}

/* style all links */
nav a {
    line-height:50px;
}
nav a {
    color:#fff;
    text-decoration:none;
    display:block;
	font-size:16px;
}

/* style sub level links */
nav li li a {
    margin:0 10px;
    padding:3px 0px;
}
nav li li:last-child a {
    border-bottom:none;
}

/* hide sub menu links */
ul.sub-menu {
    display:none;
}

/* show arrows for dropdowns */
nav li.dropdown > a {
    background-position:right 20px;
    background-repeat:no-repeat;
}

nav li li.dropdown > a {
    background-position:right 16px;
    background-repeat:no-repeat;
}