/* CSS Document */

.navbuttons ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

.navbuttons ul li {
	width:132px; 
	height:23px;
	float:left; 
	display:block; 
	padding:5px 0 5px 0; 
	margin:0 1px 0 0;
};

.navbuttons ul li:hover {
	width:132px; 
	height:23px;
	float:left; 
	display:block; 
	padding:5px 0 5px 0; 
	margin:0 1px 0 0;
}

.navbuttons ul li ul { /* second-level lists */
	display: none;
	position:absolute;
	top: 23px;
	left: 264px;
}

.navbuttons ul 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 */
	display:none;
	top: auto;
	left: auto;
	position:absolute;
}

.navbuttons ul li:hover ul, .navbuttons ul li.over ul { /* lists nested under hovered list items */
	display: block;
	top: 100px;
	top: 23px;
	left: 264px;
}

.navbuttons ul li ul li a, .navbuttons ul li.over ul li a {
	color:#ffffff;
	padding-left:3px;
	font-size:.7em;
	font-family:Arial, Helvetica, sans-serif;
}

.navbuttons ul li ul li a:hover, .navbuttons ul li.over ul li a {
	color:#999999;
}
