/*

Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want!
All you have to do is ensure the script has the correct CSS property name
(like 'visibility' or 'display') that changes to show/hide menus.

If you want to extend this layout, one good resource for UL/LI formatting is:
    http://www.alistapart.com/articles/taminglists/
Alternatively, you can use any other CSS dropdown layout instead. More here:
    http://www.alvit.de/css-showcase/
Consult your favourite CSS reference for customising fonts/borders/etc.

Otherwise, you can just change the #RGB border/background colours where
suitable to customise for your site -- easy :).





Nav Border Grey - d6d3de
Nav Border Orange - ff9a31 
Nav Border Blackish - 4a515a 

Nav Text - 4e5359
Nav Orange Text - ff9a31

*/



/* OFFICE-STYLE FREESTYLE MENU LAYOUT */
#nav {
	font-family: verdana, sans-serif;
	letter-spacing: 1px;
	margin-top: 25px;
	background-color: #fff;	
}

/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	width: 200px;
	list-style: none;
	background: #fff
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: -3px;
	right: 200px;
	border-top: 1px solid #d6d3de;
	border-right: 1px solid #4a515a;
	border-bottom: 1px solid #4a515a;
	border-left: 1px solid #d6d3de;	
	padding: 3px;
	width: 194px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
	position: relative;
	margin: 0 0 2px 0;
}

/* Links inside the menu */
.menulist li a {
	display: block;
	text-align: right;
	border-right: 7px solid #d6d3de;
	border-bottom: 1px solid #d6d3de;
	padding-right: 7px;
	padding-bottom: 2px;
	text-decoration: none;
	color: #4e5359;
}

.menulist li li a {
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus, .menulist a.highlighted {
	color: #ff9a31;
	text-decoration: none;
	border-color: #ff9a31;
}

.menulist a.current {
	color: #ff9a31;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
	float: left;
	background-color: #d6d3de;
}

.menulist a:hover .subind, .menulist a:focus .subind {
	background-color: #ff9a31;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */