/* Basic code - don't modify */

#nav {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 12000;
}

#nav li {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    float: left;
    position: relative;
}

#nav a {
    display: block;
    text-decoration: none;
}

#nav ul {
    display: none;
    position: absolute;
    left: 0;
    margin: 0;
    padding: 0;
}

* html #nav ul {
    line-height: 0;
}


/* IE6 "fix" */

#nav ul a {
    zoom: 1;
}


/* IE6/7 fix */

#nav ul li {
    float: none;
}

#nav ul ul {
    top: 0;
}


/* Essentials - configure this */

#nav ul {
    width: 156px;
    margin-left: -1px;
}

#nav ul ul {
    left: 131px;
}


/* Everything else is theming */

#nav {
    width: 940px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
}

#nav>li>a {
    font-size: 12px;
    font-weight: bold;
    padding: 4px 15px 4px 4px !important;
    text-decoration: none;
    color: white;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}

#nav li.hover a {
    text-decoration: none;
}

#nav ul {
    width: auto;
    min-width: 150px;
    max-height: 500px;
    top: 31px;
    background: #f7f7f7;
    border-left: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
    border-radius: 0px 0px 5px 5px;
    overflow-y: auto;
}

#nav ul li {
    display: block;
    border-bottom: 1px solid #d5d5d5;
}

#nav ul li a {
    display: block;
    font-size: 12px;
    font-weight: bold;
    height: 23px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 8px;
    text-decoration: none;
    color: black;
    text-align: left;
    text-transform: uppercase;
    /*background: URL('/gfx/menu/menu.png');*/
    background-repeat: no-repeat;
    white-space: nowrap;
    overflow: hidden;
}

#nav ul li.lastmenuitem {
    border-bottom: none;
}

#nav ul li.hover a {
    color: white;
    background: #A80073;
}

#nav ul li.lastmenuitem.hover a {
    color: white;
    background: #A80073;
    border-radius: 0px 0px 5px 5px;
}

#nav ul a.hover {
    text-decoration: none;
    color: #A80073;
}

#nav ul a {
    text-decoration: none;
}

.draggablestuff li {
    display: block;
    min-width: 150px;
    color: white;
    background: #A80073;
}

.draggablestuff li a {
    display: block;
    font-size: 12px;
    font-weight: bold;
    height: 23px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 8px;
    text-decoration: none;
    text-align: left;
    text-transform: uppercase;
    color: white;
    white-space: nowrap;
    overflow: hidden;
}

.draggablestuff li a:hover {
    color: white;
}


/* #nav ul a { border-bottom: none; } - I also needed this for IE6/7 */