﻿#menu
{
	width: 200px;
	margin: 0 auto;
	background-color: #fff;
}
#menu ul /* remove bullets and list indents */
{
	border-left: 1px solid #118fbf;
	border-top: 1px solid #118fbf;
	border-right: 1px solid #118fbf;
	border-bottom: 0px;
	margin: 0;
	padding: 0;
	list-style: none;
}
/* style, color and size links and headings to suit */
#menu a.az
{
	font: bold 12px arial, helvetica, sans-serif;
	text-decoration: none;
	display: block;
	padding: 5px;
	margin: 0;
}
#menu a.az
{
	color: #118fbf;
	background-color: #fff;
	border: 0;
	border-bottom: 1px dotted #118fbf;
}
#menu a.az:hover
{
	color: #005a99;
	background-color: #9edaf1;
	border: 0;
	border-bottom: 1px dotted #118fbf;
}
#menu a.an
{
	font: bold 12px arial, helvetica, sans-serif;
	text-decoration: none;
	display: block;
	padding: 5px;
	margin: 0;
}
#menu a.an
{
	color: #118fbf;
	background-color: #fff;
	background-image: url(~/../../he/gr/3/bg1.gif);
	background-position: left;
	background-repeat: no-repeat;
	border: 0;
	border-bottom: 1px dotted #118fbf;
}
#menu a.an:hover
{
	color: #005a99;
	background-color: #9edaf1;
	background-image: url(~/../../he/gr/3/bg1.gif);
	background-position: left;
	background-repeat: no-repeat;
	border: 0;
	border-bottom: 1px dotted #118fbf;
}
#menu li
{
	/* make the list elements a containing block for the nested lists */
	position: relative;
}
#menu ul ul
{
	position: absolute;
	top: -1px;
	right: 100%; /* to position them to the right of their containing block */
	width: 100%; /* width is based on the containing block */
}

#menu ul ul,
#menu ul li:hover ul ul,
#menu ul ul li:hover ul ul,
#menu ul ul ul li:hover ul ul,
#menu ul ul ul ul li:hover ul ul
{
	display: none;
}
#menu ul li:hover ul,
#menu ul ul li:hover ul,
#menu ul ul ul li:hover ul,
#menu ul ul ul ul li:hover ul,
#menu ul ul ul ul ul li:hover ul
{
	display: block;
}

