/* 
    Menu positioning 
*/

/* all menu containers */
#Nav, #Nav ul {
	float: left;
	list-style: none;
	padding: 0px;
	margin: 0px; 
	width: 100%;
	/*font-weight:bold;*/
	/*font-size:1.1em;*/
}

/* all menu items */
#Nav li {  
	float: left;
	margin: 0px;
	padding: 0px;
	/*background-color: #6C2913; #5B2E00;*/
}

/* all links */
#Nav a { 
	display: block;  /* move down one line for submenu after item in menu bar */
	padding: 0.2em 0.7em;
	/*color: #DABFB7; #FFE781;*/
}

/* 1st pulldown container and below = 2nd+ <ul> level in source */
#Nav li ul {  
	position: absolute;
	left: -999em;
	margin:0px;
	padding:0px;
	font-weight:normal;
	z-index:10;
	/*width: 18em;*/
	/*border: 2px solid black; */
}

/* ALL items in pulldown menus */
#Nav li ul li { 
	width: 100%;
}

/* 2nd pulldown container and below = 3rd+ <ul> level in source */
#Nav li ul li ul {
	margin-top: -1.65em;
	margin-left:14em;
	padding:0px;
}

/* #Nav a:hover, #Nav li:hover, #Nav li.IE6Hover { background-color:red } */

/* #Nav a:active { background-color:yellow; color:green; }*/

/* 
   hover actions to show/hide submenus for up to three pop up levels 
   (.IE6Hover for IE<=6 only) 
*/

/* move 2nd submenu out while 1st one in */
#Nav li:hover ul ul, #Nav li:hover ul ul ul, #Nav li.IE6Hover ul ul, #Nav li.IE6Hover ul ul ul { 
    left: -999em; 
}
/* move in 1st submenu */
#Nav li:hover ul, #Nav li li:hover ul, #Nav li li li:hover ul,  #Nav li.IE6Hover ul, #Nav li li.IE6Hover ul, #Nav li li li.IE6Hover ul { 
    left: auto;
}
