/**************** menu coding *****************/
#menu {
width: 208px;
font-family:Arial, Helvetica, sans-serif;
}

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

#menu h2 {

font: bold 14px Arial;
color: white;
background: black url(../images/titlebar.png) repeat-x center left;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 4px 0 4px 10px; /*header text is indented 10px*/
display: block;
}

#menu li a {
color: #FFF;
background: url(../images/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
margin-bottom:0;
padding: 5px;
padding-left: 17px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
/*border-bottom: 1px solid #dadada;*/
font-size: 12px;
}


#menu li a:hover {
color: #A70303;
background: url(../images/arrowbullet_white.png) no-repeat center left; /*custom bullet list image*/
}

#menu li {
position: relative;
}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%;
width: 100%;
}

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;}

#menu ul ul ul li { width:160px;}

#menu ul ul ul li a {
color: #FFF;
background:#000;
display: block;
margin-bottom:0px;
padding: 2px 0;
padding-left: 17px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
/*border-bottom: 1px solid #dadada;*/
font-size: 12px;
}

#menu ul ul ul li a {border:solid 1px black;
border-left:none;}
#menu li a:hover {
color: #A70303;
background: url(../images/arrowbullet_white.png) no-repeat center left; /*custom bullet list image*/
}