/*

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!

*/



/* OFFICE-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	 padding: 0px;
	 list-style: none;
	 border: 0px solid #bd3748;
	 font-family: Verdana, Arial, sans-serif;
	 font-weight: bold;
	 font-size: 12px;
	 /*text-transform:uppercase;*/
	 text-align:left;
	 width:180px;
	 margin:auto;
	 _margin: 0;
	 .margin: 0;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 210px;
	width: 200px;
	border: 1px solid black;
	border-bottom:0;
	background:#CCCABD;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
	border-bottom:solid 1px black;
 	padding: 4px 0;
	position: relative;
}

/* Links inside the menu */
.menulist a {
 display: block;
 color: #000;
}

.DescCat
{
	font-size:10px;
	font-weight:normal;
	text-transform:none;
}

.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	margin-left:5px;
}

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

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