/* Set up the containing div with a background image - not supplied with the zip file */
#outer {
	width:160px;
	height:260px;
	position:absolute;
	color:#000;
	z-index: 15;
	left: 30px;
	top: 150px;
}

/* The menu styling */
/* Remove the padding, margins and bullets from the lists */
.menu, .menu ul {list-style-type:none; padding:0; margin:0; width:127px;}
.menu {margin:100px 20px 80px 5px;}
/* for IE7 to position the tables correctly */
.menu {position:relative; float:left;}

/* for IE5.5 and IE6 to position the tables corectly */
* html .menu {position:static;}

/* Set up the size of the list items and float left to place inline */
.menu li {display:block; float:left; width:130px; background:#1e3407; margin:2px 0 0 0; border:1px solid #1e3407; border-color:#693 #1e3407 #1e3407 #693;}

/* Give the sub level list item a diffent background color to make it 'stand out'. */
.menu li.sub {background:#1e3407;}

/* Style and position the table so it takes no part in the menu function. The font size is necessary for IE5.5 */
.menu table {border-collapse:collapse; width:0; height:24px; position:absolute; bottom: 0; top:auto; left:0; font-size:1em;}

/* Default link styling */
.menu li a {display:block; color:#fff; font-family:verdana, sans-serif; font-size:12px; line-height:23px; height:24px; text-decoration:none; text-indent:10px;}

/* Style the list OR link hover. Depends on which browser is used */
.menu a:hover {color:#fff; background:#79a44e;}

/* For all browsers except IE5.5 and IE6 to keep the hover state through the menu cascade. */
.menu :hover > a {color:#fff; background:#79a44e;}

/* Give the link OR list a relative position. Depends on which browser is used */
.menu li.sub:hover,
.menu li.sub a:hover {position:relative;}

/* keep the 'next' level invisible by placing it off screen. */
.menu ul, 
.menu :hover ul ul {position:absolute;left:-9999px; width:128px; top:0;}

/* Position the flyout sub levels to 'pull-up' or 'drop-down' when hovering over the sub level list OR link.  the transparent gif is for IE7 only and need not actually exist. File transparent.gif supplied with zip file */
/* pull up */
.menu :hover ul {padding:10px 20px 20px 0; left:100px; bottom:-10px; bottom:auto; background:transparent url(trans.png);} 
/* drop down */
.menu :hover ul :hover ul{padding:10px 20px 20px 0; left:100px; top:-10px; top:auto;}