div.navigation {
    margin: 0 5px 0 0;
    padding: 5px 7px 5px 5px;
    background-color: #e8f3f8;
    float: left;
    width: 210px;
    border-right: 2px solid #30646D;
}

.navigation ul {
    width: 210px;
    position: relative; /*Relative to the containing division */
    z-index: 10; /*We need to adjust the z-index values in order to display the successive lists properly */
    background-color: #d9e2ea;
    border: 1px solid #81a8b8;
    border-bottom: 0px none;
    margin: 0;
    padding: 0;
    list-style: none; /* Removes the dots from the default Bullet styles */
    font-size: 14px;
    color: #3e3f3e;
}

.navigation ul li {
    text-align: right;
    position: relative;
    z-index: 12;
    margin: 0;
    padding: 9px 5px;
    border-bottom: 1px solid #81a8b8;
    width: 200px;
    font-weight: bold;
}

.navigation ul li span.dir {
    background: transparent url(../image/31.gif) no-repeat scroll center right;
    padding-right: 25px;
    cursor: pointer;
    display: block;
}

.navigation ul li:hover {
    background-color: #c2cbce;
    font-size: 15px;
}

.navigation ul li a {
    display: block;
    padding: 0;
    margin: 0 5px;;
    text-decoration: none;
    color: #3e3f3e;
    font-weight: bold;
    background-color: transparent;
    z-index: 15;
}

.navigation ul li ul {
    display: none;
    position: absolute;
    z-index: 15;
    top: -1px;
    left: 210px;
    margin: 0;
    text-align: left;
    width: 210px; /* Set the width of the successive list */
}

.navigation ul li ul li {
    text-align: left;
}

.navigation ul li:hover > ul {
    display: block;
}
