.dropDownMenu {
    display: inline-block;
    float: left;

    font: 12px Arial;
    list-style: none;
    line-height: 16px;
    text-transform: uppercase;

    z-index: 1000;
}

.dropDownMenu #home {
    background: transparent url("../images/icons/HomeGrey.png") no-repeat scroll center top;
    display: block;
    
    height: 14px;
    width: 14px;

    margin: 0px -1px;

    overflow: hidden;

    text-indent: -1986em;

    cursor: pointer;
}

.dropDownMenu #home.current {
    background: transparent url("../images/icons/HomeOrange.png") no-repeat scroll center top;
    cursor: default;
}

.dropDownMenu #home:hover {
    background: transparent url("../images/icons/HomeOrange.png") no-repeat scroll center top;
}

.dropDownMenu a, .dropDownMenu span {
    display: block;

    cursor: pointer;

    color: #808285;
    text-decoration: none;
    white-space: nowrap;
}

.dropDownMenu > li {
    float: left;
    position: relative;

    margin: 1px 0px;
    padding: 0px 7px;
}

.dropDownMenu > li.current {
    cursor: default;
}

.dropDownMenu ul li a:hover {
    color: #231f20;
}

.dropDownMenu li a:hover {
    color: #f05223;
}

.dropDownMenu .current, .dropDownMenu .section {
    color: #f05223;
}

.dropDownMenu ul {
    display: inline;

    padding: 0px;
    margin: 0px;
}

.dropDownMenu li ul {
    display: none;
    position: absolute;

    top: 16px;
    left: -8px;

    line-height: 16px;

    z-index: 1001;
}

.dropDownMenu li:hover ul {
    display: block;
}

.dropDownMenu li ul li {
    background-color: #f05223;
    display: block;

    margin: 4px 10px;
    padding: 1px 5px;

    list-style-type: none;

    cursor: pointer;

    z-index: 1001;
}

.dropDownMenu li ul li:first-child {
    border-top: none;
}

.dropDownMenu li ul li a {
    display: block;
    color: #fff;
}