/* =Styles for the lab
-------------------------------------------------------------- */
#wrapper {
	min-width:1000px;
}
nav {
	    background-image: url(../images/menubg.jpg);

}
nav ul {
    list-style-type:none;
    margin:0;
    padding:0;
}
nav ul li {
    display:inline-block;
    position:relative;
}

/* sub navigation */
nav li ul {    z-index: 200000000000000;   border-bottom: #e4e4e4 1px solid;
    border-left: #e4e4e4 1px solid; 
	 border-top: #e4e4e4 1px solid;
    border-right: #e4e4e4 1px solid; 
 background: #0076b4;
    position:absolute;
    left:0;
    top:40px; /* make this equal to the line-height of the links (specified below) */
    width:200px;
}
nav li li {    height: 34px;
    position:relative;
    margin:0;
    display:block;
}
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:40px;
    padding:0 12px;
    margin:0 12px;
}
nav a {
	font-size:12px;
    color:#fff;
    text-decoration:none;
    display:block;
}

/* style sub level links */
nav li li a {    height: 34px;
	text-align:center;
    border-bottom:solid 1px #fff;
    margin:0 0px;
    padding:0;
}
nav li li:last-child a {
  
}

/* 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: #0076b4;
    background-position:right 16px;
    background-repeat:no-repeat;
}