/* CSS Menus - Vertical CSS Menu with Popout and Dropdown Menus - 20050131 

*{margin:0;padding:0;border:none;}

body{margin:0.5em 0.5em 0.5em 2.0em;font-size:100%;font-family:verdana,tahoma,arial,sans-serif;}*/

/* Begin CSS Popout Menu */

#menu
{
    position:absolute;
    top: 0;
    left: 0;
    width: 143px;
    text-align: left;
    margin-left: 28px;
    margin-top:100px;
   
    
}

#menu a
{
    font: normal 90%/205% tahoma,arial,helvetica,sans-serif;
    display: block;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
    border-left-width: 0px;
    border-style: solid;
    border-color: #353895;
    white-space: nowrap;
    margin: 0;
    padding: 0px 9px;
}

/*
    bg-color for all links without sub-menus
*/
#menu a
{
    color: #fff;
    background: #353895;
    text-decoration: none;
}

#menu a:hover
{
    color: #000;
    background: #D2D3D5;
}

#menu a:active
{
    color: #fff;
    background: #353895;
}

#menu ul
{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Requirement: Put the element selector name (div)
onto non anchor hover selectors to force IE5 and
5.5 to correctly apply the csshover file. */

div#menu li, div#menu li:hover
{
    position: relative;
    height: 22px;
}

div#menu ul li ul
{
    position: absolute;
    top: 0;
    left: 99.1%;
    display: none;
}

div#menu ul ul, div#menu ul ul ul, div#menu ul li:hover ul ul, div#menu ul li:hover ul ul ul
{
    display: none;
}

div#menu ul li:hover ul, div#menu ul ul li:hover ul, div#menu ul ul ul li:hover ul
{
    display: block;
}

/* End non-anchor hover selectors */

/* Styling for Expand */

#menu a.x, #menu a.x:visited
{
    background: #000 url(images/expand3.gif) no-repeat ;
    
}

#menu a.x:hover
{
    color: #000;
    background: #D2D3D5;
}

#menu a.x:active
{
    color: #000;
    background: #353895;
}

div#menu ul ul li a
{   
  
  border-bottom:1px solid black;
  border-top:0px solid black;
  border-left:1px solid black;
  border-right:1px solid black;
  /* for IE */
  filter:alpha(opacity=70);
  /* CSS3 standard */
  opacity:0.6;
 

}

div#menu ul ul li a:hover
{
    color: #000;
    background: #D2D3D5;
}



