/*
Turn slashdot's left navigation sidebar into a dropdown menu at the top of
the page.

created by: Edward Elliott             (do not alter this line)
 */
@-moz-document domain(slashdot.org) {
#links {
    width: 100% !important;
    z-index: 10 !important;
    border-right: 1px solid white;
}

#links div.block {
    width: 7em;
    float: left !important;
    position: relative;
}

#links div.title {
    border-right: 1px solid white;
    padding-left: 0.3em;
}

/* hide contents at first */
#links div.content {
    display: none;
    /* make dropdowns overlap rest of page */
    position: absolute !important;
}

/* show contents on hover */
#links div.block:hover div.content {
    display: block;
    z-index: 20 !important;
    background: #cccccc;
    width: 8em;
    border: 1px solid black;
    padding: 0.2em;
}

/* clear floats on next element after dropdown */
#contents {
    clear: both;
}
}  /* slashdot.org */