/*/* =Styles for the lab
-------------------------------------------------------------- */
#wrapper {
	min-width:1000px;
}
nav {
	background-color:rgb(255,100,100);
	padding:10px 0;
}
nav ul {
    list-style-type:none;
    margin:0;
    padding:0;
}
.nav ul li {
    display:inline-block;
    position:relative;
}
.nav ul li a{
    display: block;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/* sub navigation */
.nav li ul {    
    background:rgba(255,255,255,0.9);
    position:absolute;
    left:0;
    top:40px; /* make this equal to the line-height of the links (specified below) */
    width:132px;
}
.nav li li {
    position:relative;
    margin:0;
    display:block;
}
.nav li li ul {
    position:absolute;
    top:0;
    left:130px; /* make this equal to the width of the sub nav above */
    margin:0;
}
.sub-menu {
    display:none;
}

/* show arrows for dropdowns */
.dropdown > a {
    background-image:url('../img/arrow-down.png');
    background-position:right 20px;
    background-repeat:no-repeat;
}

.dropdown > a {
    background-image:url('../img/arrow-right.png');
    background-position:right 16px;
    background-repeat:no-repeat;
}
.bk0905{
    position: relative;
}
.dropdown ul li{
    padding: 5px 0;
}