/* All <ul> tags in the menu including the first level */
.menulist{
	margin: 0px;
	padding: 0px;
	width: 160px;
	list-style: none;
}
.menulist ul {
	margin: 0;
	padding: 1px;
	width: 160px;
	list-style: none;
	background: #abbfcc;
	border: 1px solid #7499af;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 0;
	left: 160px;
}

/* 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: 1px 4px 1px 30px;
	color: #fff;
	text-decoration: none;
	margin: 0;
}

/*
 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: #7499af;
 background-color: #dde5ea;
 margin: 0;
}
.menulist a.highlighted {
 color: #FFF;
 background-color: #dde5ea;
 margin: 0;
}

/*
 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);
    }
*/
.menulist a#item1 {
	background-image: url(../img/menu/back.gif);
	margin-bottom: 13px;
	padding: 4px 4px 5px 36px;
	font-weight: bold;
}
.menulist a#item1:hover, .menulist a.highlighted#item1, .menulist a#item1:focus {
	background-position: 0px -25px;
	background-color: #d4dee5;
}
.menulist a#item2 {
	background-image: url(../img/menu/back.gif);
	margin-bottom: 13px;
	padding: 4px 4px 5px 36px;
	font-weight: bold;
}
.menulist a#item2:hover, .menulist a.highlighted#item2, .menulist a#item2:focus {
	background-position: 0px -25px;
	background-color: #d4dee5;
}
.menulist a#item3 {
	background-image: url(../img/menu/back.gif);
	margin-bottom: 13px;
	padding: 4px 4px 5px 36px;
	font-weight: bold;
}
.menulist a#item3:hover, .menulist a.highlighted#item3, .menulist a#item3:focus {
	background-position: 0px -25px;
	background-color: #d4dee5;
}
.menulist a#item4 {
	background-image: url(../img/menu/back.gif);
	margin-bottom: 13px;
	padding: 4px 4px 5px 36px;
	font-weight: bold;
}
.menulist a#item4:hover, .menulist a.highlighted#item4, .menulist a#item4:focus {
	background-position: 0px -25px;
	background-color: #d4dee5;
}
.menulist a#item5 {
	background-image: url(../img/menu/back.gif);
	margin-bottom: 13px;
	padding: 4px 4px 5px 36px;
	font-weight: bold;
}
.menulist a#item5:hover, .menulist a.highlighted#item5, .menulist a#item5:focus {
	background-position: 0px -25px;
	background-color: #d4dee5;
}
.menulist a#item6 {
	background-image: url(../img/menu/back.gif);
	margin-bottom: 13px;
	padding: 4px 4px 5px 36px;
	font-weight: bold;
}
.menulist a#item6:hover, .menulist a.highlighted#item6, .menulist a#item6:focus {
	background-position: 0px -25px;
	background-color: #d4dee5;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
	float: right;
	font-size: 10px;
	font-family: Arial;
}
/*
 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 */
