/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
 background: #dbdbdb;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 36px;  /* I'm using ems and px to allow people to zoom their font */
 left: -1px;
 width: 150px;
 font-size: 11px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: -1px; margin-top: 0;
 left: 148px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
 float: left;
 display: block;
 position: relative;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
}


/* Links inside the menu */
.menulist a {
 display: block;
 color: #000;
 text-decoration: none;
 font-size: 11px;
 cursor: pointer;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus, .menulist ul li a:hover {
 background-color: #cfdadc;
  font-size: 11px;
}
.menulist a.highlighted {
 background-color: #cfdadc;
}
.menulist .secondLevel a{
	background: url(/images/icon_menu_arrow_right.gif) 140px 6px no-repeat;
}
.menulist .secondLevel ul a{
	background: none;
}
.menulist ul{
	margin-left: 2px;
}

/*--------------------------------
--------------------------------*/
ul.menulist li li a{
	padding:3px 0 3px 20px;
	border-top: 1px solid #adb9ba;
	border-bottom: 1px solid #adb9ba;
	border-left: 1px solid #adb9ba;
}
ul.menulist ul li {
	background: #f3f3f3;
	text-align: left;
	border: none;
	color: #404040;
}

/*
/images/icon_menu_arrow_right.gif
/images/icon_menu_arrow_right_hover.gif
*/
