/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
 text-align:center;
 font-size:12px;
 font-weight:bold;
background:#fff;

}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 1.0em; margin-top: 30px; /* I'm using ems and px to allow people to zoom their font */
 left: -1px;
 width: 150px;
font-size:11px;
background:#fff;
}

/* Controls width, positioning of menus, submenus. The -id- ones are the submenus*/

#listMenu-id-4 {width:190px; padding-left:51px;}
#listMenu-id-5 {width:200px; margin-left:92px; _width:240px; _margin-left:52px;} /* Skin Health > Skin Conditions */
#listMenu-id-6 {width:200px; margin-left:92px; _width:240px; _margin-left:52px;} /* Skin Health > Treatment Solutions */
#listMenu-id-7 {width:200px; padding-left:32px;}
#listMenu-id-8 {width:185px; padding-left:32px;}
#listMenu-id-9 {width:210px; padding-left:32px;}
#listMenu-id-10 {width:130px; padding-left:32px;}
#listMenu-id-11 {width:130px; padding-left:32px;}
#listMenu-id-13 {padding-left:51px; width:170px;}
#listMenu1 {width:200px;}
#listMenu2 {width:200px;}
#listMenu3 {width:200px;}
#listMenu4 {width:190px;}
#listMenu5 {width:240px;}
#listMenu6 {width:130px;}
#listMenu7 {width:130px;}

#menu ul li ul li ul li {
margin-left:-40px;
_margin-left:0px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: -1px; margin-top: 0;
 left: 148px;
 background: #cddeb2;
}

.menulist ul li a { text-indent:20px;}

/*
 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;
 margin-right: -1px;

}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
 height:22px;
 line-height:19px;
 text-align:left;
 background: #cddeb2;
}
/* The opacity below looks cool, but it makes everything VERY hard to read.
opacity: .8;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
filter: alpha(opacity=80);*/


}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
 display: block;
 color:#5e5371;
 text-decoration: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #5e5371;
 background-color: #FFF;
}
.menulist a.highlighted {
 color: #5e5371;
 background-color: #FFF;
}

#img01, #img08, #img02, #img03, #img04, #img05, #img06, #img07 {
 width:102px;
 height:41px;
 border-right:1px solid;
 border-color:#c5d9a6;
 margin-left:1px;
 margin-right:1px;
}

#img09 {
 width:90px;
 height:41px;
 margin-left:1px;
 margin-right:1px;
}

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display: none;
}
.menulist ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/*
 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 ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */