			#Nav 
			{
      			  	margin: 0;
				padding: 0;
				list-style: none;
				width: 125px; /* Width of Menu Items */
				border-bottom: 1px solid #ccc;
			}

			#Nav li,#SubNav1 li
			{
				position: relative;
			}

			li ul
			{
				position: absolute;
				left: 123px; /* Set 1px less than menu width */
				background-color: #A0EC68;
				top: 0;
				width: 200px;
				display: none;
			}

			#Nav li a, SubNav1 li a
			{
				display: block;
				color: #333333;
				height: 2em;
				background-color: #A0EC68;
				text-decoration: none;
				cursor: hand;
				line-height: 200%;
				padding-left: 5%;
				border: 1px solid #000;
				margin: 2%;
			}

	/* Holly Hack. IE Requirement \*/
			* html #Nav li { float: left; height: 1%; }
			* html #Nav li a { height: 1%; }
			* html li ul { top: 3px;}
	/* End */


			#Nav li:hover ul, #Nav li.over ul { display: block; } /* The magic */

			#Nav li a:hover
			{
				border-top: 1px solid #A4A400;
				border-right: 0px solid #FFFF00;
				border-bottom: 1px solid #FFFF00;
				border-left: 1px solid #A4A400;
				background-color: #FADAAB;
			}

			#SubNav1
			{
				list-style: none;
				font-size: 75%;
				background-color: #FADAAB;
				overflow: visible;
				padding-top: 5%;
				padding-right: 5%;
				padding-bottom: 5%;
				padding-left: 5%;
				border-top: 1px solid #A4A400;
				border-right: 1px solid #FFFF00;
				border-bottom: 1px solid #FFFF00;
				border-left: 0px solid #A4A400;
				margin-left: -3%;
			}
