@charset "UTF-8";
/* CSS Document */


#menu {
	width:100%;
	background-color:#000;
	float:left;
}

#menu ul h3 a {
background: #000;
color:#FFF;
text-decoration:none;
}
#menu ul h3 a:hover {
background: #DDD;
color:#000;
text-decoration:none;
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
width: 8em;
float: left;
}

#menu a, #menu h3 {
font: bold 11px/14px arial, helvetica, sans-serif;
display: block;
margin: 0;
padding: 3px;
text-align:center;
}

#menu h3 {
color: #fff;
background: #000;
text-transform: uppercase;
}
#menu h3:hover {
color: #000;
background: #DDD;
text-transform: uppercase;
}

#menu a {
color: #000;
background: #eee;
text-decoration: none;
line-height:1em;
padding-bottom:2px;
}
#menu ul.sub a {
font-weight:300;
}


#menu a:hover {
color: #F63;
background: #FFF;
}

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



