/*
 * Nav
 */

#nav {
    position: absolute;
    right: 0;
    list-style-type: none;
}

#nav li {
    float: left;
    line-height: 40px;
    margin: 0 0 0 75px;
    font-size: 1em;
    position: relative;
}

#nav .active a {
    color: #878787;
    cursor: default;
}

#nav a {
    color: #FFF;
    text-decoration: none;
    line-height: 40px;
    background: #000;
}

/* subnav */

#nav li:hover ul a {
}

#nav li.active:hover a {
    cursor: pointer;
}

#nav strong {
    color: #FFF;
    font-size: 1.1em;
    padding-bottom: 4px;
    display: block;
}

#nav li:hover ul {
    left: -10px;
}

#nav ul {
    list-style-type: none;
    position: absolute;
    top: 40px;
    left: -999em;
    background: #333;
    margin: 0;
    border-top: 1px solid #000;
    z-index: 2;
    width: 120px;
    font-size: 0.9em;
}

#nav ul li {
    margin: 0;
    height: auto;
    border-bottom: 1px solid #000;
    float: none;
    line-height: 1;
}

#nav ul li:last-child {
    border-bottom: 0;
}

#nav .active ul a {
    color: #CCC;
}

#nav ul a {
    color: #CCC;
    text-decoration: none;
    padding: 10px;
    display: block;
    line-height: 1;
    background: #333;
}

#nav ul a:hover {
    color: #FFF;
    background: #666;
}