#navigation {
    float: left;
}
#navigation ul {
    margin: 0px;
    padding: 0px;
    width: 200px;
}
ul.top-level { background: #fff;}

#navigation li { list-style: none; }
ul.top-level li {
    /*border-top: 1px solid #CCC;*/
}
#navigation a {
    color: #564028;
    cursor: pointer;
    display:block;
    line-height: 25px;
    text-indent: 10px;					
    text-decoration:none;
    width:100%;
    border: 1px solid #CCC;
}
#navigation span { font-size: 10px; color: #000; }
#navigation  a.noLeftRightBorder { border-left: none; border-right: none; border-top: none; }
#navigation  a.hasLeftRightBorder { border-left: none; border-right: none; border-top: none; }
#navigation  a.hasBottomBorder {  border-bottom: none; }

#navigation a:hover{ text-decoration:none; color: #FFF; }
#navigation li:hover {
    background: #aaa;
    position: relative;
    color: #FFF;
}
ul.sub-level { display: none; }
li:hover .sub-level {
    background: #aaa;
    display: block;
    position: absolute;
    left: 175px;
    top: 0px;
}
ul.sub-level li {
    border: none;
    float:left;
    width:200px; 
}
#navigation .sub-level a { }
#navigation .sub-level { background: #FFF; }
#navigation .sub-level .sub-level { background: #09C; }

/*IE RESET HELPER*/
li:hover .sub-level .sub-level { display:none; }
.sub-level li:hover .sub-level { display:block; }