/* CSS Document */

#menu {
	background: white; /* Sets the background color of whole menu */
	float: left; /* The image or text moves to the left in the parent element if there is too little space */
	margin-top: 20px;
	margin-left: 15px;
}

#menu ul {
list-style: none;
margin: 0;
padding: 0px;
width: 5em; /* Sets with of individual menu boxes */
float: left;
}

#menu a, #menu h2 {
font:  9px/16px arial, helvetica, sans-serif; /* sets menu font*/
display:block;
border-width: 1px;
border-style: solid;
border-color: #F4811F;
margin: 0;
padding: 2px 2px;
text-align:center; /*sets alignment for text inside boxes of the menu */
}

#menu h2, #menu a.solo{
color: white ;
background-color: #F4811F; /* Sets background color inside menu boxes */
text-transform: uppercase;
}

#menu a {
color: #000;
background: #f5f5f5; /* Sets the background color of collapsing menu bar */
text-decoration: none;
}

#menu a:hover {
	color: #FFFFFF; /* color of text in menu box */
	background-color: #9f9f9f; /* color of menu background when you hover over a link */
border:
; 	border-color: #9F9F9F;
}

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