/*
 * much inspired by http://www.tanfa.co.uk/css/examples/menu/
 *
 *
 */

#menu	{
	width:850px;
	border-top: solid 1px #38382C;
	border-bottom: solid 1px #38382C;
	line-height:2.2em;
	margin:5px 0;
	text-align:center;
}
#menu ul {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    margin: 0px auto;
    padding: 0pt;
	
}

#menu a {
  
    margin: 0pt;
    text-decoration: none;
    color: #38382C;
    font-size: 1.1em;
    font-weight: 500;
    padding: 0.25em 0.4em;
	

}

#menu a:hover {
    text-decoration: none;
    background-color: #DEDEAE;
  
}

#menu li {
    position: relative;
   	display:inline;
    white-space: nowrap;
    padding: 0 0.4em;
	
	
}
/*
#menu ul ul {
    position: absolute;
    z-index: 500;
    top: 18px;
    left: 0px;
	background-image:url(../images/menuBackground.png);
	width:120px;
	
}

#menu ul ul ul {
    left: 100%;
    position: absolute;
    top: .8em;
    width: auto;
	background-image:url(../images/menuBackground.png);
	width:120px;

  
}

#menu ul ul li {
    text-decoration: none;
    width: 120px;
}

#menu ul ul a {
    font-weight: 200;
    line-height: 1.0em;
}

#menu ul ul a:hover {
}
*/
li > ul {
    display: none;
}

li:hover > ul {
    display: block;
}
