/* Menu CSS */
ul#nav { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#nav li { /* all list items */
	padding: 0;
	margin: 0;
	top: 0px;
	left: 0px;
	float: left;
	position: relative;
	width: 280px;
	list-style: none;
}

ul#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 0;
	left: 0;

}

ul#nav li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

ul#nav li:hover ul, ul#nav li.over ul { /* lists nested under hovered list items */
	display: block;
	top: 0;
	left: 240px;
}
ul#nav a {
	display: block;
}





/* Nav Inner */
ul#nav_inner { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#nav_inner li { /* all list items */
	padding: 0;
	margin: 0;
	top: 0px;
	left: 0px;
	float: left;
	position: relative;
	list-style: none;
}

ul#nav_inner li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 0;
	left: 0;

}

ul#nav_inner li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

ul#nav_inner li:hover ul, ul#nav_inner li.over ul { /* lists nested under hovered list items */
	display: block;
	top: 45px;
	left: -82px;
}
ul#nav_inner a {
	display: block;
}
