
	#menu ul {
		margin: 0;
		padding: 0;
		list-style: none;
		width: 160px;
		/* Width of Menu Items */
		border-bottom: 1px solid #708090;
	}

	#menu ul li {
		position: relative;
		font-weight: bold;
		font-size: 8pt;
		list-style: none;
	}

	#menu li ul {
		position: absolute;
		left: 159px; /*Set 1px less than menu width */
		top: 0;
		display: block;
	}

	#menu li:hover ul {
		display: block;
	}

	#menu li:hover>ul {
		visibility:visible;
	}

	#menu ul ul {
		visibility:hidden;
	}

	/* Fix IE. Hide from IE Mac \*/
	* html #menu ul li { float: left; height: 1%; }
	* html #menu ul li a { height: 1%; }
	/* End */

	/* Make-up syles */

	#menu ul, li {
		margin: 0 0 0 0;
	}

	/* Styles for Menu Items */
	#menu ul a {
		display: block;
		text-decoration: none;
		color: #363636;
		background: #B5CFE8; /* IE6 Bug */
		padding: 5px;
		/*border: 1px solid #ccc;*/
		/*border-bottom: 0;*/
		border: 1px solid #708090;
		border-bottom: 0;
	}

	/* Hover Styles */
	#menu ul a:hover {
		color: #363636;
		background: #C8DBEE;
	}

	/* Sub Menu Styles */
	#menu li ul a {
		text-decoration: none;
		color: #363636;
		background: #C8DBEE; /* IE6 Bug */
		padding: 5px;
		/*border: 1px solid #ccc;*/

		border: 1px solid #708090;
		border-bottom: 0;
	}

	/* Sub Menu Hover Styles */
	#menu li ul a:hover {
		color: #363636;
		background: #DAE7F4;
	}


	/* Icon Styles */
	#menu ul a.submenu {background:#B5CFE8 url("img/r_arrow.gif") no-repeat right; }
	#menu ul a.submenu:hover {background:#C8DBEE url("img/r_arrow.gif") no-repeat right;}

	#menu ul ul a.submenu {background:#C8DBEE url("img/r_arrow.gif") no-repeat right; }
	#menu ul ul a.submenu:hover {background:#DAE7F4 url("r_arrow.gif") no-repeat right;}

	#menu ul ul ul a.submenu {background:#DAE7F4 url("img/r_arrow.gif") no-repeat right; }
	#menu ul ul ul a.submenu:hover {background:#edf3f9 url("img/r_arrow.gif") no-repeat right;}

	#menu ul ul ul a {background:#DAE7F4; }
	#menu ul ul ul a:hover {background:#edf3f9;}	

	#menu ul ul ul ul a {background:#edf3f9; }
	#menu ul ul ul ul a:hover {background:#ffffff; }
