﻿/* ------- Menu ------------------------------------------------------------------- */
#menu-container
{
    position: relative;
    float: top;
    width: 200px;
    margin: 0;
    padding: 0;
    background: #f0f0f0;
    float: left;
    font: 12pt Verdana, sans-serif;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}
#menu-b
{
	background: #f0f0f0;
	width : 200px;
	height: 77px;
}
#menu ul 
{
	margin: 0;
	padding: 0;
	list-style: none;
	width: 200px;
}
#menu ul li 
{
    margin: 0;
    padding: 0;
    background: #f0f0f0;
    position: relative;
}
#menu li ul 
{
	position: absolute;
	top: 0;
	width: 100%; 
	left: 100%;
	margin-left: -1px;
	display: none;
}
#menu ul.short ul, ul.long ul, ul.longer ul
{
	width: 125px;
}
#menu ul li a, #menu ul li span
{
	display: block;
	text-decoration: none;
	color: #000000;
	font-size : 12px;
	background: #f0f0f0; /* IE6 Bug */
	padding: 3px 3px 10px 10px;
    border-bottom: 1px solid #cccccc;
}
#menu ul li a:hover, #menu ul li span:hover 
{ 
    color: #ffffff;
    background-color: #786A8A; 
}

/* Fix IE. Hide from IE Mac \*/
 * html #menu ul li { float: left; height: 1%; }
 * html #menu ul li a { height: 1%; }
 * html #menu ul li span { height: 1%; }
/* End */

#menu ul ul,
#menu ul li:hover ul ul
{display: none;}

#menu ul li:hover ul,
#menu ul ul li:hover ul
{display: block;}
	
#menu ul.long
{
	width: 175px;
}
#menu ul.longer
{
	width: 250px;	
}
/* ------- End-Menu ------------------------------------------------------------------- */