/* CSS Document */
#menu {
width: 194px; /* set width of menu */
background: #eee;
} 

#menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}


/* style, color and size links and headings to suit */
#menu a, #menu h2 {
font:  11px Verdana, Arial, Helvetica, sans-serif;
font-style:italic;
font-weight:bold;
display: block;
/*border-width: 1px;
border-style: solid;
border-color: #ccc #888 #555 #bbb;*/
margin: 0;
/*padding: 2px 3px;*/
}

#menu h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}

#menu a {
/*color: #336A8F;*/
/*color:#779BB4;*/
color:#5583A2;
background: #FEFEFD;
text-decoration: none;
}

#menu a:hover {
color: #a00;
background: #fff;
}
#menu li {
/* make the list elements a containing block for the nested lists */
position: relative;
}
 
#menu li li li{
padding-left:4px;
background: #FEFEFD;
padding: 5px 3px;
border-bottom: 1px #E2ECF2 solid;
}
#menu li li li:first-child{
padding-top:13px;}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%; /* to position them to the right of their containing block */
width: 100%; /* width is based on the containing block */
background-image:url(../img/none.gif);
padding-left:17px;
}
div#menu ul ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}

