

.cont{width:175px; float:left; padding-left:5px}

.menu
	{
	font-size:1em;
	font-weight:bold;
	width:170px;
	float:left;
	}
		
.menu a
	{
	display:block;
	border-bottom: 1px solid #d2d1d1;
	white-space:nowrap;
	margin:0;
	padding: 0.3em;
	}
	
.menu a:link, .menu a:visited, .menu a:active	/* menu at rest */
	{
	color:#787676;
	background-color:#F1F1F1;
	text-decoration:none;
	}
	
.menu a:hover						/* menu on mouse-over  */
	{
	color:#787676;
	background-color:#d2d1d1;
	text-decoration:none;
	}	
	
.menu a.parent   /* attaches down-arrow to all top-parents */
	{
	background-image: url(images/nav-arrow.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
	
.menu a.parent:hover
	{
	background-image: url(images/nav-arrow-over.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
	

.menu ul
	{
	list-style:none;
	margin:0;
	padding:0;
	width:170px;	/* width of all menu boxes */
	/* NOTE: For adjustable menu boxes you can comment out the above width rule.
	However, you will have to add padding in the "#menh a" rule so that the menu boxes
	will have space on either side of the text -- try it */
	}

.menu li
	{
	position:relative;
	min-height: 1px;		/* Sophie Dennis contribution for IE7 */
	vertical-align: bottom;		/* Sophie Dennis contribution for IE7 */
	}

.menu ul ul
	{
	position:absolute;
	z-index:500;
	top:0;
	left:100%;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
	font-size:1em;
	}

.menu ul ul ul
	{
	top:0;
	left:100%;
	}

div.menu li:hover
	{
	cursor:pointer;
	z-index:100;
	}

div.menu li:hover ul ul,
div.menu li li:hover ul ul,
div.menu li li li:hover ul ul,
div.menu li li li li:hover ul ul
{display:none;}

div.menu li:hover ul,
div.menu li li:hover ul,
div.menu li li li:hover ul,
div.menu li li li li:hover ul
{display:block;}
