/* styling the menu. still have to pick a menu-pattern */

/* style the links for the first level */
#nav a, #nav a:visited {
	display:block;
	font-size:14px;
	text-decoration:none;
	color:#000;
	height:20px;
	line-height:20px;
}

/* style the second level background */
#nav ul a, #nav ul a:visited {
	text-align:left;
	padding:0 0 0 10px;
	width:120px;
	border: 1px solid #fff;
	border-width:1px 0 0 0;
}

/* style the thirth level background */
#nav ul ul a, #nav ul ul a:visited {
	border: 1px solid #fff;
	border-width:1px 0 0 0;
}

/* adds image to menu items with drop-class */
#nav .drop, #nav .drop:visited, #nav .drop:hover { 
	background-image: url(../../Images/Menu/drop.gif);
	background-repeat: no-repeat;
	background-position: bottom right;
}


/* some styles concerning menu pop-up feature and button sizes */
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
#nav li { /* all list items */
	width: 131px; /* width required. +1 to add spacing */
}
#nav li ul { /* second-level lists */
	position: absolute;
	width: 130px;
	left: -999em; /* hiding the ul */
}
#nav li ul ul { /* third-and-above-level lists */
	margin: -21px 0 0 130px;
}
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	left: auto;
	background: transparent none;
}
#nav li li:hover ul, #nav li li.sfhover ul  {
	left: auto;
	background: transparent none;
}