/* CSS Menus - Horizontal CSS Menu with Dropdown and Popout Menus - 20050131 */
/* Begin CSS Popout Menu */

#split { background: #e6e7e8 }
#leftSide {
    width:185px;
    float:left;
}

#leftSide a{
    display:block;
    border: 1px solid #006bb6;
    white-space:nowrap;
    margin:0;
    padding:0 5px;
    text-decoration:none;
    height: 30px;
    font-size: 1.4em;
}

#leftSide a, #menu a:visited{
    color:#fff;
}

#leftSide ul{
    list-style:none;
    margin:0;
    padding:0;
}

#leftSide li {
    position:relative;
    width: 194px;
    margin-left: 10px; 
    margin-top: 10px;
    text-align: left;
    color: #fff;
    font-weight: bold;
    background: #006bb6;
}

#leftSide ul ul{
    position:absolute;
    z-index:500;
    top:auto;
    display:none;
    top: 0;
    left: 100%;
    background: #dcddde;
}

#leftSide ul ul ul{
    top:0;
    left:100%;
}

/* Begin non-anchor hover selectors */

/* Enter the more specific element (div) selector
on non-anchor hovers for IE5.x to comply with the
older version of csshover.htc - V1.21.041022. It
improves IE's performance speed to use the older
file and this method */

div#leftSide li:hover{
    cursor:pointer;
    z-index:100;
}

div#leftSide li:hover ul ul,
div#leftSide li li:hover ul ul,
div#leftSide li li li:hover ul ul,
div#leftSide li li li li:hover ul ul
{display:none;}

div#leftSide li:hover ul,
div#leftSide li li:hover ul,
div#leftSide li li li:hover ul,
div#leftSide li li li li:hover ul
{display:block;}

/* End of non-anchor hover selectors */

/* Styling for Expand */

#leftSide a.x, #leftSide a.x:visited{
    font-weight:normal;
    color:#fff;
    background:#eee url(/css/images/expand3.gif) no-repeat 100% 100%;
}

#leftSide a.x:hover{
    color:#fff;
    background:#000;
}

#leftSide a.x:active{
    color:#fff;
    background:#ccc;
}

#selectedMenu { background: #00a957 }
/* End CSS Popout Menu */

