/*

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!

*/



/* VERTICAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.productlistmenu, .productlistmenu ul {
	margin: 0;
	padding: 0;
	width: 200px;
	list-style: in-line;
	z-index: 5000;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.productlistmenu ul {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 200px;
	z-index: 5000;
	background-color: #000;
	text-align: left;
	
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.productlistmenu li {
	position: relative;
	margin-bottom: -1px;
	z-index: 5000;
	border-bottom-color: #4F4E46;
	border-bottom-style: none;
	border-bottom-width: 1px;
	left: 0px;
	top: 0px;
}
.productlistmenu ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.productlistmenu a {
	display: block;
	padding: 4px 10px 4px 10px;
	color: #fff;
	text-decoration: none;
	z-index: 5000;
	font-size: 11px;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.productlistmenu a:hover, .productlistmenu a.highlighted:hover, .productlistmenu a:focus {
	color: #000;
	background-color: #0079C2;
}
.productlistmenu a.highlighted {
 color: #000;
 background-color: #0079C2;
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.productlistmenu a .subind {
 float: right;
}

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