﻿#navigation { font-size:0.75em; width:150px; }
#navigation ul { margin:0px; padding:0px; }
#navigation li { list-style: none; }
 
#navigation ul.top-level { background:#eee; }
#navigation ul.top-level li {
 border-bottom: #fff solid;
 border-top: #fff solid;
 border-width: 1px;
}

.navigationActiveItem {
 color: #fff;
 background: #aaa;
 position: relative;
}

 
#navigation a {
 color: #777;
 cursor: pointer;
 display:block;
 height:25px;
 line-height: 25px;
 text-indent: 10px;
 text-decoration:none;
 width:100%;
}
 
#navigation a:hover{
 text-decoration:underline;
 color: #fff;
}
 
#navigation li:hover {
 background: #aaa;
 position: relative;
}

#navigation ul.sub-level {
    display: none;
}
 
#navigation li:hover .sub-level {
    background: #999;
    border: #fff solid;
    border-width: 1px;
    display: block;
    position: absolute;
    left: 75px;
    top: 5px;
}
 
#navigation ul.sub-level li {
    border: none;
    float:left;
    width:150px;
}