#nav {
		position:relative;
		top:30px;
		margin: 0;
		padding: 0;
		margin-bottom: 100px;
		list-style: none;
		width: 200px;
		/* Width of Menu Items */
		border-bottom: 1px solid #ddd;
		font-family: Trebuchet MS, Helvetica, sans-serif;
		font-size: 14px;
		font-weight: bolder;
		text-align: right;
	}
	
	ul .sub {
		font-family: Trebuchet MS, Helvetica, sans-serif;
		font-size: 12px;
		width:230px;
		text-align:left;
		list-style: none;
	}

	ul li {
		position: relative;
	}

	li ul {
		position: absolute;
		left: 200px; /* Set 1px less than menu width */
		top: 0;
		display: none;
		border-left: 1px solid #ddd;
	}

	/* Styles for Menu Items */
	ul li a {
		display: block;
		text-decoration: none;
		color: #fff;
		background: #fff url(../img/backnav_on.gif) repeat-x; /* IE6 Bug */
		padding: 5px;
		border: 1px solid #ddd;
		border-left:0;
		border-right:0;
		border-bottom: 0;
	}

	/* Fix IE. Hide from IE Mac \*/
	* html ul li { float: left; height: 1%; }
	* html ul li a { height: 1%; }
	/* End */

	ul li a:hover { color: #E37A09; background: #ccc url(../img/backnav_off.gif) repeat-x; text-decoration: none; } /* Hover Styles */

	li ul li a { padding: 2px 10px; } /* Sub Menu Styles */

	li:hover ul, li.over ul { display: block; } /* The magic */
	
	.activePage { color: #E37A09; background: #ccc url(../img/backnav_off.gif) repeat-x; } /* Hover Styles */
