/*

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 :).

*/

/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	z-index:999;
	margin:0 0 0 0;
	padding:0 0 0 0 ;
	list-style: none;
	font-size:12px;
	font-weight:normal;
	color:#000;
}


/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 0px; 
	margin:0 0 0 0;
	left: 165px;
	width:170px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
	float: left;
	display: block;
	position: relative;
	width:165px;
	margin:0 0 0 0;
}



/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float:none;
	margin:0 0 0 0;
}

/* Links inside the menu */
.menulist a:link, .menulist a:active, .menulist a:visited  {
	font-weight:bold;
	display: block;
	padding:4px 5px 4px 10px;
	color:#FFFBD9;
	text-decoration: none;
	line-height:16px;
	background-color:#F7F1BD;
}

.menulist a:hover, .menulist a.highlighted:hover{
	text-decoration: none;
	font-weight:bold;
	color:#243B6A;
}

.navSubMenu {
	background-color:#F7F1BD;
}

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display: none;
}
.menulist ul a .subind {
 display: block;
 float: right;
}

.linksNavLevel0 a:link, .linksNavLevel0 a:active, .linksNavLevel0 a:visited {
	color:#FFFBD9;
	background-color:transparent; 
	text-align:right;
}
.linksNavLevel0 a:hover {
	color:#243B6A;
	background-color:transparent; 
	text-align:right;
}
.linksNavLevel1 a:link, .linksNavLevel1 a:active, .linksNavLevel1 a:visited {
	text-align:left;
	color:#3E8015;
}
.linksNavLevel1 a:hover {
	color:#243B6A;
	text-align:left;
}
