#menu {
    width: 100%;
    background: #eee;
    float: left;
    text-align: left;
}

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 116px;
    float: left;
}

#menu a {
    font-size: 11px;
    display: block;
    border: 1px solid #4F2700;
    margin: 0;
    padding: 2px 3px;
	color: white;
	background: #000000 url(../pictures/menu_bg.jpg) top right no-repeat;
    text-decoration: none;
    text-align: center;
}

/* menu at mouse-over  */
#menu a:hover {
	color: white;
	background: #000000 url(../pictures/menu_bg.jpg) bottom right no-repeat;
	text-decoration: none;
}
/* attaches down-arrow to all top-parents */
#menu a.top_parent {
	background: #000000 url(../pictures/menu_bg_arrow_down.jpg) top right no-repeat;
}
#menu a.top_parent:hover {
	background: #000000 url(../pictures/menu_bg_arrow_down.jpg) bottom right no-repeat;
}
/* attaches side-arrow to all parents */
#menu a.parent {
	background: #000000 url(../pictures/menu_bg_arrow_right.jpg) top right no-repeat;
}
#menu a.parent:hover {
	background: #000000 url(../pictures/menu_bg_arrow_right.jpg) bottom right no-repeat;
}

#menu li {
    position: relative;
}

#menu ul ul {
    position: absolute;
    z-index: 500;
}

#menu ul ul ul {
    position: absolute;
    top: 0;
    left: 100%;
}

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover 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;
}

