.menulist {
  background: url("/images/nav/share.png")  no-repeat left ;
  background-position: 3px 6px;		
  list-style-type: none;
  white-space: nowrap; 
  position: absolute;
 
}

/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0;
 padding: 2px 0px 9px 0px;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 z-index: 20000;
 background: #FFF;
 text-transform: none;
 border: 1px solid #888;
 padding-left: 5px;
 font-weight: normal;
}

.menulist ul  {
 top: 1.5em;
 left: 0px;
}

.menulist li {
  float: left; 
  position: relative;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
  float: none;
  margin-right: 0;
}

.menulist ul>li:last-child {
}

/* Links inside the menu */
.menulist a {
 display: block;
 text-decoration:  none;
 padding: 4px 0px 4px 21px;
}

.menulist ul a {
  margin-left: 0;
  display: block;
  padding: 8px 0px 4px 21px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist  a.highlighted {
 padding: 4px 0px 4px 21px;
 color: #000;
 background-color: #ccc;
}

.menulist ul a:hover, .menulist ul a.highlighted:hover, .menulist ul a:focus {
 padding: 8px 0px 4px 21px;
 background-color: #eee;
 color: #a00;
 text-decoration: underline;
 border-bottom: 0px solid #ccc;
}

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display:  none;
}
.menulist ul a .subind {
 display:  block;
 float: right;
}

/* images for submenu items, the easy way */

a.reddit {
  background: url(/images/icons/reddit.gif) no-repeat left ;
}
a.stumbleupon {
  background: url(/images/icons/stumbleupon.gif) no-repeat left ;
}
a.slashdot {
  background: url(/images/icons/slashdot.gif) no-repeat left ;
}
 a.newsvine {
  background: url(/images/icons/newsvine.gif) no-repeat left ;
}
a.facebook {
  background: url(/images/icons/facebook.gif) no-repeat left ;
}
a.digg {
  background: url(/images/icons/digg.gif) no-repeat left ;
}
a.delicious {
  background: url(/images/icons/delicio.us.gif) no-repeat left ;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */

