/* OFFICE-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	margin: 0;
	padding: 0px;
	width: 144px;
	list-style: none;
	background: #FFFFFF url(../images/top_menu_bg_N.gif) repeat-y left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 18px;
	font-weight: bold;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
	visibility: hidden;
	position: absolute;
	background: #FFFFFF url(../images/top_menu_bg_Nb.gif) repeat-y left top;
	top: 0;
	left: -145px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 3px 30px 3px 8px;
 color: #313031;
 text-decoration: none;
}
/* IE fix because it doesn't support transparent borders */
* html .menulist a {
 border: none;
 margin: 1px;
}

/*
 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: #FFFFFF;




 background: url(../images/top_menu_bg_R.gif) repeat-y left;
 padding: 3px 30px 3px 10px;
 margin: 0;
}
.menulist a.highlighted {
 color: #FFFFFF;
 background: url(../images/top_menu_bg_R.gif) repeat-y left;
 margin: 0;
}

#MembNav UL {
	PADDING-RIGHT: 0px;
	PADDING-LEFT: 0px;
	PADDING-BOTTOM: 0px;
	MARGIN: 0px 0px;
	PADDING-TOP: 0px;
	LIST-STYLE-TYPE: none;
	border: 0px none;



}
#MembNav LI {
	PADDING-RIGHT: 0px;
	PADDING-LEFT: 0px;
	BACKGROUND: url(../images/top_menu_bg_R.gif) repeat-y;
	PADDING-BOTTOM: 0px;
	MARGIN: 0px;
	FONT: 11px/22px Arial, Helvetica, sans-serif;
	WIDTH: 144px;
	PADDING-TOP: 0px;
	TEXT-ALIGN: left;
	border-top-width: 0px;
	border-top-style: none;
	text-indent: 8px;
	color: #000000;
	font-weight: bold;



}
#MembNav LI A {
PADDING-RIGHT: 0px; DISPLAY: block; PADDING-LEFT: 0px; FONT-WEIGHT: bold; PADDING-BOTTOM: 0px; WIDTH: 144px; COLOR: #FFFFFF; PADDING-TOP: 0px; TEXT-DECORATION: none; voice-family: inherit
}
#MembNav LI A:hover {
	FONT-WEIGHT: normal;
	BACKGROUND: url(../images/top_menu_bg_N.gif) repeat-y;
	COLOR: #313031;
	TEXT-DECORATION: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 22px;
	font-weight: bold;
}


/*
 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:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* '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 */
