/* let's go */

.leftframe{
	position:fixed;
	top:100;
	left:0;
}

.menu {
	position: relative;
	padding-bottom: 2px;
	width: 50px;
}

span.menu {
	position: relative;
	padding-bottom: 2px;
}

.menucontainer {
	padding: 3px;
}


div.menubox{
	background-color:#ffffff;
	margin:2px;
	padding: 4px;
	border:1px #999999 solid;
	width: 100px;
}


/* The remaining "advanced" rules are ignored by Netscape 4 
   (and IE5.0?) due to the next line so leave the menu on 
   screen */
/*/*/
div.menubox{
	position: absolute;
	margin:2px;
	visibility:hidden;
}
/*IE5 cant deal with the next rules so the script at the 
  end of the page is necessary*/
  
div.menu:hover > div.menubox, div.menubox:hover {
	top:15px;
	left:0px; 
	visibility:visible;
}
span.menu:hover > div.menubox, div.menubox:hover {
	top:10px;
	left:0px; 
	visibility:visible;
}

