/*

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 */

.menulist1, .menulist1 ul {
	color: #999900;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 margin: 0px;
 list-style: none; 
 padding: 0px;
 width: 170px;
 

}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist1 ul {
	color: #999900;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 visibility: hidden;
 position: absolute;
 width: 170px;
 top: 0;
 left: 175px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist1 li {
	color: #999900;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 position: relative;

}

/* Links inside the menu */
.menulist1 a {
	display: block;
	padding: 3px 3px 5px 5px;
	color: #999900;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
	text-decoration: none;
	font-weight: bold;

}
/* IE fix because it doesn't support transparent borders */
* html .menulist1 a, .menulist1 a:visited, .menulist1 a:active {
	color: #999900;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	

}

/*
 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...
*/


.menulist1 a:hover, .menulist1 a.highlighted:hover, .menulist1 a:focus {
	color: #707070;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	

 margin: 0;
}
.menulist1 a.highlighted {
	color: #707070;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 margin: 0;
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist1 a .subind {
	color: #999900;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	

 float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist1 li {
	color: #999900;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 float: left;
 height: 1%;
}
* html .menulist1 a, .menulist1 a:visited, .menulist1 a:active {
	color: #999900;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 height: 1%;
}
/* End Hack */








.menulist11, .menulist11 ul {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
	background-color: #999900;		
 margin: 0px;
 list-style: none; 
 padding: 0px;
 width: 170px;

}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist11 ul {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 visibility: hidden;
 position: absolute;
 width: 170px;
 top: 0;
 left: 170px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist11 li {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 position: relative;

}

/* Links inside the menu */
.menulist11 a {
	display: block;
	padding: 3px 3px 5px 5px;
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px #ffffff solid;
}
/* IE fix because it doesn't support transparent borders */
* html .menulist11 a, .menulist11 a:visited, .menulist11 a:active {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
}

/*
 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...
*/


.menulist11 a:hover, .menulist11 a.highlighted:hover, .menulist11 a:focus {
	color: #e5e5e5;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 background-color: #999900;
 margin: 0;
}
.menulist11 a.highlighted {
	color: #e5e5e5;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 background-color: #999900;
 margin: 0;
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist11 a .subind {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 float: right;
 
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist11 li {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 float: left;
 height: 1%;
}
* html .menulist11 a, , .menulist11 a:visited, .menulist11 a:active {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 height: 1%;
}
/* End Hack */









.menulist22, .menulist22 ul {
	color: #990033;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;		
 margin: 0px;
 list-style: none; 
 padding: 0px;
 width: 170px;

}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist22 ul {
	color: #990033;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 visibility: hidden;
 position: absolute;
 width: 170px;
 top: 0;
 left: 175px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist22 li {
	color: #990033;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 position: relative;

}

/* Links inside the menu */
.menulist22 a {
	display: block;
	padding: 3px 3px 5px 5px;
	color: #990033;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
	text-decoration: none;
	font-weight: bold;
}
/* IE fix because it doesn't support transparent borders */
* html .menulist22 a, .menulist22 a:visited, .menulist22 a:active {
	color: #990033;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
}

/*
 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...
*/


.menulist22 a:hover, .menulist22 a.highlighted:hover, .menulist22 a:focus {
	color: #707070;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 margin: 0;
}
.menulist22 a.highlighted {
	color: #707070;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 margin: 0;
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist22 a .subind {
	color: #990033;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 float: right;
 
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist22 li {
	color: #990033;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 float: left;
 height: 1%;
}
* html .menulist22 a, .menulist22 a:visited, .menulist22 a:active {
	color: #990033;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 height: 1%;
}
/* End Hack */






.menulist222, .menulist222 ul {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
	background-color: #990033;		
 margin: 0px;
 list-style: none; 
 padding: 0px;
 width: 170px;

}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist222 ul {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 visibility: hidden;
 position: absolute;
 width: 170px;
 top: 0;
 left: 170px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist222 li {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 position: relative;

}

/* Links inside the menu */
.menulist222 a {
	display: block;
	padding: 3px 3px 5px 5px;
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px #ffffff solid;
}
/* IE fix because it doesn't support transparent borders */
* html .menulist222 a, .menulist222 a:visited, .menulist222 a:active {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
}

/*
 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...
*/


.menulist222 a:hover, .menulist222 a.highlighted:hover, .menulist222 a:focus {
	color: #e5e5e5;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 background-color: #990033;
 margin: 0;
}
.menulist222 a.highlighted {
	color: #e5e5e5;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 background-color: #990033;
 margin: 0;
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist222 a .subind {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 float: right;
 
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist222 li {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 float: left;
 height: 1%;
}
* html .menulist222 a, .menulist222 a:visited, .menulist222 a:active {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 height: 1%;
}
/* End Hack */








.menulist33, .menulist33 ul {
	color: #4f80ff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;		
 margin: 0px;
 list-style: none; 
 padding: 0px;
 width: 170px;

}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist33 ul {
	color: #4f80ff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 visibility: hidden;
 position: absolute;
 width: 170px;
 top: 0;
 left: 175px;

}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist33 li {
	color: #4f80ff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 position: relative;
}

/* Links inside the menu */
.menulist33 a {
	display: block;
	padding: 3px 3px 5px 5px;
	color: #4f80ff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
	text-decoration: none;
	font-weight: bold;
}
/* IE fix because it doesn't support transparent borders */
* html .menulist33 a, .menulist33 a:visited, .menulist33 a:active {
	color: #4f80ff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
}

/*
 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...
*/


.menulist33 a:hover, .menulist33 a.highlighted:hover, .menulist33 a:focus {
	color: #707070;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 margin: 0;
}
.menulist33 a.highlighted {
	color: #707070;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 margin: 0;
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist33 a .subind {
	color: #4f80ff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 float: right;
 
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist33 li {
	color: #4f80ff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 float: left;
 height: 1%;
}
* html .menulist33 a, .menulist333 a:visited, .menulist333 a:active {
	color: #4f80ff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 height: 1%;
}
/* End Hack */






.menulist333, .menulist333 ul {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 margin: 0px;
 list-style: none; 
 padding: 0px;
 width: 170px;
 

}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist333 ul {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 visibility: hidden;
 position: absolute;
 width: 170px;
 top: 0;
 left: 170px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist333 li {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
		background-color: #4f80ff;		

 position: relative;
 

}

/* Links inside the menu */
.menulist333 a {
	display: block;
	padding: 3px 3px 5px 5px;
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px #ffffff solid;
}
/* IE fix because it doesn't support transparent borders */
* html .menulist333 a, .menulist333 a:visited, .menulist333 a:active {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
}

/*
 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...
*/


.menulist333 a:hover, .menulist333 a.highlighted:hover, .menulist333 a:focus {
	color: #e5e5e5;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 background-color: #4f80ff;
 margin: 0;
}
.menulist333 a.highlighted {
	color: #e5e5e5;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 background-color: #4f80ff;
 margin: 0;
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist333 a .subind {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 float: right;
 
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist333 li {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 float: left;
 height: 1%;
}
* html .menulist333 a, .menulist333 a:visited, .menulist333 a:active {
	color: #ffffff;
	font-size : 11px;
	text-decoration : none;
	font-family : Tahoma, Tahoma, Arial, sans-serif;
	font-weight: bold;	
 height: 1%;
}
/* End Hack */


