/* From 'More Eric Meyers on CSS,' */
/* Eric A. Meyer,                  */
/* New Riders                      */
/* Indianapolis                    */
/* 2004                            */
/* p 144                           */

div#rsbnav {float: left;
	  background: #FDD;
	  width: 100%;
	  }

div#rsbnav ul {margin: 0;
             padding: 0;
	     width: 7em;
	     background: white;
	     border: 1px solid #AAA;
	     }

div#rsbnav li {position: relative;
             list-style: none;
	     margin: 0;
	     border-bottom: 1px solid #CCC;
             }

div#rsbnav li:hover {background: #EBB;
                   }

div#rsbnav li.submenu {background: yellow;}

div#rsbnav li a {display: block;
               padding: 0.25em 0 0.25em 0.5em;
	       text-decoration: none;
	       width: 6.5em;
               }

div#rsbnav ul a {width: auto;
               }

div#rsbnav ul ul {position: absolute;
                top: 0;
	        right: 7em;
	        display: none;
		z-index: 100;
	        }

div#rsbnav ul.level1 li.submenu:hover ul.level2,
div#rsbnav ul.level2 li.submenu:hover ul.level3 {display: block;
                                               }


