/* =Styles for the lab
-------------------------------------------------------------- */
#wrapper {
	min-width:1000px;
}
nav {
	background:#fff;
	background-repeat:repeat-x;
	padding:0;
	width:100%;
	height:60px;
	z-index:9999;
}
ul.content{
width:90%;
margin:0 5%;
	z-index:9999;
}

nav ul {
    list-style-type:none;
    margin:0;
    padding:0;
	z-index:9999;
}
nav ul li {
    display:inline-block;
    position:relative;
	font-family: 'Montserrat', sans-serif;
	font-weight:700;
	font-size:.8em;
	letter-spacing:.01em;
	max-height:80px;
vertical-align: middle;
	z-index:9999;
}


/* sub navigation */
nav li ul {    
    background:#d1626d;
	font-weight:400;
	font-size:.9em;
    position:absolute;
    left:0;
	z-index:9999;
    top:40px; /* make this equal to the line-height of the links (specified below) */
    width:200px;
}
nav li li {
    position:relative;
    margin:0;
    display:block;
	z-index:9999;
}
nav li li ul {
    position:absolute;
    top:0;
    left:200px; /* make this equal to the width of the sub nav above */
    margin:0;
	z-index:9999;
}

/* style all links */
nav a {
    line-height:40px;
    padding:0 7px;
    margin:0 7px;
}
nav a {
    color:#d1626d;
    text-decoration:none;
    display:block;
}
nav a:hover,
nav a:focus,
nav a:active {
    color:#ccc;
}

/* style sub level links */
nav li li a {
    border-bottom:solid 1px #ccc;
    margin:0 10px;
    padding:10px 0;
	line-height:1.3em;
}
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-image:url('../img/arrow-down.png');
    background-position:right 20px;
    background-repeat:no-repeat;
}

nav li li.dropdown > a {
    background-image:url('../img/arrow-right.png');
    background-position:right 16px;
    background-repeat:no-repeat;
}