/* 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 1.0em;font-size:100%;font-family:verdana,tahoma,arial,sans-serif;}

Begin CSS Popout Menu */

#menu {
width:100%;
/*This affects the shopping menu top background */
/* background-color: #000; */
font-size: 0.8em;
line-height:1.6em;
/*
border-style: ridged;
border-width:5px;
*/
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
z-index:10;
border-style:ridge;
border-width:1px 1px 1px 1px;
border-color:#aaa;
}

/* This affects the areas outside the menu items text */
#menu a {
/* font: 12px/16px arial, helvetica, sans-serif;
*/
display: block;
border-width: 10px;
border-style: solid;
border-color: #aaa;
margin: 0;
z-index:10;
}

#menu h2 {
color: #333;
background: #000;
text-transform: uppercase;
z-index:10;
}

#menu a {
/*  This affects the menu text color*/
color: #222;
/*  This affects the menu background color*/
background: #ddd;
text-decoration: none;
border-color: #bbb;
border-style:ridge;
border-width: 5px 2px 5px 2px;
z-index:10;
}

#menu a:hover {
color: #FFFFFF;
background: #333;
border-color: #fff;
border-style:ridge;
border-width: 5px 2px 5px 2px;
z-index:10;
}

#menu li {
position: relative;
z-index:10;
}

#menu ul ul ul {
position: absolute;
top: 5px;
left: 100%;
width: 100%;
border-style: ridge;
border-width:5px;
border-color:#aaa;
z-index:10;

}

div#menu ul ul ul,
div#menu ul ul li:hover ul ul
{
z-index:10;
display: none;
}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{
z-index:10;
display: block;
}
