/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
    width: 180px;
	border-top: 1px solid #F0F0F0;
	border-left: 1px solid #F0F0F0;
	border-right: 1px solid #C8CDDD;
	border-bottom: 1px solid #C8CDDD;
	padding: 0px;
	float: left;
	margin: 0px 20px 10px 0px;
    padding: 1px;
    list-style: none;
    background: #FFFFFF url(/styles/menu/background.png) left repeat-y;
	font-weight: bold;
	line-height: 150%;
}
.menulist {
    padding-top: 5px;
	padding-bottom: 5px;
}
.menulist .members {
    margin-top: 10px;
}
.menulist ul {
    font-weight: normal;
}
.menulist ul ul {
    font-size: 10px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
    display: none;
    position: absolute;
    top: 0;
    left: 180px;
}
.menulist ul.generalinfo {
    top: -195px;
}
.menulist ul.websitelinks {
    top: -230px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
    position: relative;
}

/* Links inside the menu */
.menulist li a {
    display: block;
    padding: 3px 4px 3px 15px;
	color: #00246A;
    text-decoration: none;
	border-bottom: none;
    border: 1px solid transparent;
    margin: 0;

}
.menulist li a.noclick {
    cursor: default;
}
/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .menulist li a {
	border-bottom: none;
    border-width: 0;
    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-color: #2A4883;
    padding: 2px 5px 4px 14px;
    border: 1px solid #94A3C0;
    margin: 0;
}
.menulist a.highlighted {
    color: #FFFFFF;
    background-color: #94A3C0;
	border-bottom: none;
    border: 1px solid #CCCCCC;
    margin: 0;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
 font-size: 10px;
 font-weight: normal;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
    float: left;
    width: 100%;
}

* html .menulist li {
    float: left;
    height: 1%;
}
* html .menulist a {
    height: 1%;
}
/* End Hacks */


.menulist hr {
  color: #C5C5C5;
  background-color: #C5C5C5;
  border: none;
  height: 1px;
  margin-left: 15px;
 }

