/*

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 :).

*/



/* OFFICE-STYLE FREESTYLE MENU LAYOUT */
/* Menu classes. This would be more elegant if IE was outlawed ;) */

#navigation {
	z-index: 100;
	position: absolute;
	left: 10px;
	width: 193px;
	overflow: visible;
}

#navigation ul {
 list-style-type: none;
 margin: 0;
 padding: 0;
}

.mainMenuHolder {
	margin-top: 15px;
	font-size: 12px;
	border: 1px inset #000000 ;
	height: 50px;
	width: 180px;
	padding: 1px 1px 1px 1px;


}

.mainMenuTitles {
	margin-top: 15px;
	font-size: 12px;

	height: 50px;
	width: 180px;
	padding: 1px 1px 1px 1px;
	text-align: center;
	font-size: 12px;
}

* html .mainMenuTitles {
	margin-top: 15px;
	text-align: center;
	font-size: 12px;
	
}


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 top: 2px;
 padding: 2px;
 width: 180px;
 list-style: none;
}

.menulist a {
 border: 1px solid #ADF;
  background-color:#000000;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 left: 180px;
 border: 1px #FFFFFF;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
 border: 1px #FFFFFF;

}

/* Links inside the menu */
.menulist li a {
	height:15px; 
	background-color: #000000; 
	color: #dddddd; 
	text-align: center;


	display: block;
	font-family:Arial; 
	font-size: 14px; 
	font-weight: 400; 
	text-decoration:none; 
	border-style:none; 
	border-color:#ffffff; 
	border-width:1px; 
	margin:0px 0px 2px; 
	padding: 4px 2px 2px 3px;

}
/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .menulist li a {
	height:18px; 
	background-color: #000000; 
	color: #dddddd; 
	text-align: center;
	

	display: block;
	font-family:Arial; 
	font-size: 14px; 
	font-weight: 400; 
	text-decoration:none; 
	border-style:none; 
	border-color:#ffffff; 
	border-width:1px; 
	margin:0px 0px 2px; 
	padding: 4px 2px 2px 3px;
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #000;
 text-decoration: underline;
 background-color: #0066FF;
 font-weight: bold;

}
.menulist a.highlighted {
 color: #FFF;
 background-color: #68C;
 border: 1px solid #CDE;
 margin: 0;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/*
 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 */

