/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0px;
 padding: 0px;
 width: 231px;
 list-style: none;
 background: transparent;
 border: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: block;
 position: relative;
 top: 0;
 left: 0px;
}

/* submenu 2nd-3rd-4th level */
.menulist ul {
 background: transparent url('') top left no-repeat;
}
.menulist ul ul {
 background-color: transparent;
}
.menulist ul ul ul {
 background-color: transparent;
}
/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
 line-height: 20px;
 background: transparent url('/project_images/dots-menu.gif') 0px 10px no-repeat;
 margin-bottom: 6px;
}

.menulist li li {margin-bottom: 0px;}

.menulist li:hover {
 background: transparent url('/project_images/dots-menu-darken.gif') 0px 10px no-repeat;
}

li.sidelistitem-on a:visited {color: #101010;}
li.sidelistitem-on a {color: #101010;}
li.sidelistitem a:visited {color: #87898c;}
li.sidelistitem a:hover {color: #101010;}

li.sidelistitem-on a {font-weight: bold;}
li.sidelistitem-on {background: transparent url('/project_images/dots-menu-darken.gif') 0px 10px no-repeat;
}

li li.sidelistitem-on {font-weight: bold; background: transparent url('') 0px 10px no-repeat; color: #101010;}
li.sidelistitem a {font-weight: normal; color: #87898c}

.menulist ul li, .menulist ul li:hover {
 background: transparent url('') 0px 13px no-repeat;
}


/* Links inside the menu */

.menulist li a {
 display: block;
 padding: 0px 0px 0px 40px;
 text-decoration: none;
 border: none;
 margin: 0px;
}

.menulist ul a {
 display: block;
 padding: 0px 0px 0px 40px;
 text-decoration: none;
 border: none;
 margin: 0px 0px 0px 10px;
 background: transparent url('') center left no-repeat;
}


/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins
* html .menulist li a {
 border-width: 0;
 margin: 0px;
}
*/

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #101010;
 background: transparent url('/project_images/dots-menu-darken.gif') 0px 10px no-repeat;
 padding: 0px 0px 0px 40px;
 border: none;
 margin: 0px;
}
.menulist li a.highlighted {
 color: #101010;
 background-color: transparent;
 border: none;
 margin: 0;
}

/* Lit items 2nd-3rd level */
.menulist ul a:hover, .menulist ul a.highlighted:hover, .menulist ul a:focus {
 color: #101010;
 background: transparent url('') center left no-repeat;
 padding: 0px 0px 0px 50px;
 margin: 0px 0px 0px 0px;
 border: none;
}
.menulist ul li a.highlighted {
 background-color: transparent;
}

/* Lit items 2nd-3rd level */
.menulist ul ul a:hover, .menulist ul ul a.highlighted:hover, .menulist ul ul a:focus {
 background-color: transparent;
}
.menulist ul ul li a.highlighted {
 background-color: transparent;
}

.menulist ul ul ul a:hover, .menulist ul ul ul a.highlighted:hover, .menulist ul ul ul a:focus {
 background-color: transparent;
}

/* 'subind' submenu indicators, which are automatically prepended to 'a' tag contents. */
.menulist a .subind {
 float: right;
 background: transparent url('arrowtrans.gif') no-repeat center right;
 width: 15px;
 height: 25px;
 margin-top: 2px;
}

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

