/*

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 you want it to change.

One good resource for UL/LI formatting: http://www.alistapart.com/articles/taminglists/
Consult your favourite CSS reference for editing fonts/borders/etc.

Otherwise, even if you're not very experienced at CSS, you can just go through and change
the #RGB border/background colours where suitable to customise for your site!

*/



/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist {
	width:768px;
}

.menulist, .menulist  ul {
 margin:0;
 padding:0;
 list-style:none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 left: -1px;
 width: 100px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 1px;
 left: 99px;
}

/*
 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;
	position: relative;
	margin-right: -1px;
	display:block;
	width:102px;
	background:#E0EBA9 top right no-repeat url(/images/nav-both-right.gif);
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin:-1px 0 0 1px;
	padding:0;
	background-image:none;
	border-bottom:solid 1px #ABABAD;
	border-left:solid 1px #ABABAD;
	border-right:solid 1px #ABABAD;
	text-align:left;
	width:100px;
}
.menulist ul>li:last-child {
	/*margin-bottom: 1px;*/
}

/* Links inside the root menu */
.menulist a, .menulist li.green span {
	display:block;
	height:20px;
	padding:6px 0 0 0;
	background:top left no-repeat url(/images/nav-both-left.gif);
	text-decoration:none;
	text-transform:uppercase;
	font-weight:bold;
	color:#FFFFFF;
}
.menulist li.green span {
	cursor:default;
}

/* Links inside the sub menus */
.menulist ul a {
	height:auto;
	padding:4px 0px 4px 10px;
	background:none;
	background-color:#E0EBA9;
	font-weight:normal;
	text-transform:none;
	color:#1B3E5C;
	border-top:solid 1px #ABABAD;
	font-size:10px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist li:hover a, .menulist li:hover, .menulist li a.highlighted {
	background-position:0% -26px;
	color:#1B3E5C;
}
.menulist li:hover {
	background-position:100% -26px;
}
.menulist ul a:hover {
	background-color:#FFFFFF;
}

/* custom items */

#nav ul .wide {
	width:188px;
}
#nav ul li.green {
	width:172px;
	background:top right no-repeat url(/images/nav-green-right.gif);
}
#nav ul li.green span {
	background:top left no-repeat url(/images/nav-green-left.gif);
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

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

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */