/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	####	Header Menu #####
	#######################

	Horizontal Drop-Down Menu based off :
	http://www.tanfa.co.uk/css/examples/menu/tutorial-h.asp
	
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  */

#menu {
width: 100%;
background: #000000;
float: left;
height:20px;
padding-left:15px
}

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

#menu a, #menu h2 {
font:  10px/14px verdana, arial, helvetica, sans-serif;
display: block;
margin: 0;
padding: 3px 10px; 
cursor: pointer;  

}

#menu h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}

#menu a {
color: #ffffff;
background: #000000;
text-decoration: none;
}

.search 
{
background-image: url(http://hofa-training.de/online_campus/media/search.jpg);
background-repeat:no-repeat;
width: 20px;
height: 20px;
padding-right: 30px;
border:none;
}


input.searchbox{
  font-size:0.8em;
  color:#fff;
  width:130px;
  height:14px;
 background-color: #000;
 	font-family: Verdana, Arial, Helvetica, sans-serif;
 	border-bottom:none;
}

#menu a:hover {
color: #EE7F00;
background: #000;
}

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



