#nav {
	width: 143px;
	text-align: left;
}

#nav ul {
	margin: 0;
	padding: 0;
}

.button { list-style: none; }

.parent {
	position: relative;
	z-index: 10;
}
/* this parent div does not provide "sticky hovering", but instead fixes a 
strange bug in Op7. When an element serves as a hovered popup "parent" element, 
that element must not also be floated or all heck breaks loose in Opera 7. 
To prevent this, we have floated the top level list items, while nesting 
hoverable parent divs inside that are then hovered to generate the dropdowns. 
Thus the ugly (but interesting) Op7 bug is defeated. */
	
/* .lastbutton div.parent {margin-right: -3px;} */
/* this fixes the IE 3px bug that is common in this type of float arrangement */ 


/*XXXXXXXXXXXX Primary dropdown/flyout rules XXXXXXXXXXX*/

.dropdown { /* rules for dropdown div */
	width: 143px;
	position: absolute;		
	display:none;
	top:-31px;
	left: -174px; /* puts dropdowns directly under top nav */
	text-align: left; /* needed because IE misapplies text centering to boxes */
	border: none;	
	background: url(../images/bgfix.gif);
}
	
/* The margins on the UL's replace the div paddings to create "sticky hovering"
zones,  and the margins should "fill" the divs, making the IE BG fix unnecessary.
Unfortunately the BG fix is still needed, altho this method does eliminate
possible box model problems */
	
.dropdown ul { 
  width: 143px; /* tweaked so that dropdowns appear to "line up" with top links */
  margin: 30px 5px 30px 30px !important; /* creates "sticky hovering" zones for dropdowns */
/*  border: 1px solid #000 !important; 
  border-width: 1px 1px 0 !important;  */
	background-color: #9f9d9e;
	list-style: none;
  } /* borders sides and top of the dropdowns and flyouts; links provide the bottom border */
	
.lastbutton div.parent .dropdown ul {width: 110px;} /* modifies width for rightmost "visible" dropdown (tweak) */
		
#nav a {
  display: block;
  color: #000000;
	background-color: #b8dafd;
	font-size: 11px;
	font-family: Arial,Helvetica,sans-serif;
	font-weight: bold;
	text-decoration: none;
	/* text-transform: uppercase; */
	padding: 2px 5px; 
	}

#nav li a:hover {
	font-weight: bold;
	background-color: red;
}

.dropdown li {
  position: relative; 
  vertical-align: bottom; /* IE5/win bugfix */
	text-align: left !important;
  }
				
.button:hover div.dropdown {
	display:block;
} /* hover rule for dropdowns */ 
/* extra pixel makes dropdowns "line up" with top links */ 

.dropdown li:hover a {background: #000;} /* hover color effect on dropdown links */

/*XXXXXXXXXXX Special fixes XXXXXXXXXXX*/

/* This is to hide the following from IE/Mac. \*/
* html .button .dropdown li {
height: 1%;
margin-left: -16px;
mar\gin-left: 0;
}
/* */

* html #nav a
 {height: 1%;}

/* The first 2 rules above fix "bullet region" problems in IE5.x/win, 
and the 2nd is to make all links fully clickable. */    

/* .nav .dropdown {position: static;} */

/*\*/ /*/
.nav .dropdown {width: 139px;}
.nav .button .dropdown ul {margin: 0px;}
.nav .dropdown ul {border: 0;}
/* this rule block "dumbs down" the nav for IEmac */
