
.menulistb, .menulistb ul {
	width: 220px;
	list-style: none;
	/* opacity:.90;
 filter: alpha(opacity=90);
 -moz-opacity: 0.9;*/
 border: 0px solid #654;
	margin: 0px;
	padding: 0px;
}
/*

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 */


.menulistb{
	margin: 0;
	padding: 20px 0px;
	font-size: 12px;
	border-top: 0px solid #FFFFFF;
	border-right: 0px solid #FFFFFF;
	border-bottom: 0px solid #FFFFFF;
	border-left: 0px solid #FFFFFF;
}



/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulistb li {
	position: relative;
	margin: 0px;
	padding: 0px;
}
.menulistb li:first-child{
	border-top: 1px solid #FFFFFF;
}
/* Links inside the menu */
.menulistb a {
	display: block;
	background: repeat-y;
	color: #3f4750;
	text-decoration: none;
	border-bottom: 1px solid #F0F4F7;
	font-size: 12px;
	line-height: 23px;
	font-weight: bold;
	padding-right: 4px;
	padding-left: 24px;
}

/*
 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...
*/
.menulistb a:hover, .menulistb a.highlighted:hover, .menulistb a:focus {
	color: #FFF;
	border-bottom: 1px solid #F0F4F7;
	margin: 0;
	background-image: url(/themes/sr07/images/nav_hoverBG.jpg);
	background-repeat: no-repeat;
	text-decoration: none;
}
.menulistb li.current a{
	background-image: url(/themes/sr07/images/nav_curentBG.jpg);
	color: #000000;
}
.menulistb a.highlighted {
 color: #FFF;
 background-color: #68C;
 border: 1px solid #CDE;
 margin: 0;
}
/* Submenus (<ul> tags) */
.menulistb li ul{
	display:none;
}
.menulistb ul li:first-child{
	border-top: 0px solid #FFFFFF;
}
.menulistb ul sssli:last-child{
	border-bottom: 1px solid #FFFFFF;
}

.menulistb li.current ul{
	display:block;
}

.menulistb ul {
	margin: 0;
	padding: 0px 0px 0px 0px;
	top: 0;
	border: 0px solid #654;
	font-size: 10px;
	width: 220px;
}

ul.menulistb li.current  ul li a {
	margin: 0;
	padding: 0px 0px 0px 36px;
	top: 0px;
	background-image: none;
	font-size: 10px;
	text-transform: uppercase;
	background-color: #C8C193;
}
ul.menulistb li.current  ul li a:hover {
	margin: 0;
	padding: 0px 0px 0px 36px;
	top: 0px;
	background-image: none;
	font-size: 10px;
	text-transform: uppercase;
	color: #FFFFFF;
	background-color: #A9A48B;
}

/*
 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:
    .menulistb a#xyz {
      background-image: url(out.gif);
    }
    .menulistb a#xyz:hover, .menulistb a.highlighted#xyz, .menulistb a:focus {
     background-image: url(over.gif);
    }
*/
/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulistb a .subind {
 float: right;
}

/* IE fix because it doesn't support transparent borders */



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