/*
* ~License~ This portion should accompany the Script for Legal usage and Proper Credits
* author: Swashata
* email: admin@intechgrity.com
* Blog: http://www.intechgrity.com/2009/11/jquery-powered-sidebar-navigation-menu.html
* Copyright, 2009 inTechgrity
* Licensed under the GNU General Public License v3<http://www.gnu.org/licenses/>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

div.navigation {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    float: left;
    width: 210px;
}

.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: #FFFFFF;
    border-top: 0px solid #ECECEC;
    border-bottom: 0px solid #ECECEC;
    border-right: 0px solid #ECECEC;
    border-left: 0px solid #ECECEC;
    margin: 0;
    padding: 10;
    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 #ECECEC;
    border-right: 0px solid #ECECEC;
    border-left: 0px solid #ECECEC;
    width: 200px;
    font-weight: bold;
}

.navigation ul li span.dir {
    background: transparent url(/layout/header/default/image/31.gif) no-repeat scroll center right;
    padding-right: 20px;
    cursor: pointer;
    display: block;
}

.navigation ul li:hover {
    background-color: #dedede;
    font-size: 14px;
    color: #FFFFFF;
    cursor: pointer;
}

.navigation ul li a {
    display: block;
    padding: 0;
    margin: 0 20px;;
    text-decoration: none;
    color: #000000;
    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;
}
