body {
	font-family: arial, helvetica, serif;
        font-size:13px;
}

pre {
	font-family: arial, helvetica, serif;
        font-size:16px;
}


ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
        
}


li { /* all list items */
        background-color:  #caf1b5;
	border: #326902 1px solid;
        float: left;
	position: relative;
	width: 8.4em;
        padding-left: 3px;
        padding-bottom: 3px;
        padding-bottom: 3px;
        
}

li ul { /* second-level lists */
        border: #326902 1px none;
        background-color:  #caf1b5;
        padding-left: 3px;
        padding-bottom: 13px;
        padding-top: 3px;
	display: none;
	position: absolute;
        padding: 3px;
	top: 1.5em;
	left: 0;
        
}


li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
      
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
       
}

#content {
	clear: left;
}


.onGreen {
       color: DarkGreen;
       font-weight: bold;
}


a { 
	text-decoration: none;  /* for unvisited links */
} 

