﻿ 
/* menu stuff */   
.menu
    {position: absolute;
     top:440px;
     left:0px;
     }
 

#nav, #nav ul { /* all lists */
		padding: 5px;
		margin: 0;
		list-style: none;
		float : left;
		width : 14.4em;     /* Maximum width for entire menu */
	}
	
#nav li { /* all list items */
        display:block;
		position : relative;
		float : left;
		line-height : 1.45em;
		margin-bottom : -1px;
		width: 11em;              /* border width all lists */
		border:solid 2px #777777;
	}
	
#nav li ul { /* second-level lists */
        display:block;
		position : absolute;
		background:url(images/header.gif);
		left: -999em;
		margin-left : 10.8em;   /* position second list to first */
		margin-top : -2em;
	}
	
#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	
#nav li a {
		display: block;
		width: 11.5em;          /* width of inside block - where title is written */
		color: black;
		background:#eaf0f2;
		font-size:x-small;
		font-weight : 100 normal;
		text-decoration : none;
		border : 2px solid #eaf0f2;
		padding : 0 0.5em;

	}
	
#nav li a:hover {
		color : #000;
        background:url(images/header_over.gif);
        	}
	
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
		left: -999em;
        background:url(images/header_over.gif);
		
	}
	
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
        background:url(images/header_over.gif);
		
	}
	
#content {
		margin-left : 12em;
	}

