#navigation {
	position: relative;
	width: 100%; /* force hasLayout in IE */
	height: 60px;
	margin: 0 0 8px 0;
	/* margin: 3px 0 8px 0; */
	border-color: #bfbfbf;
	border-width: 1px 0 1px 0;
	border-style: solid;
}

#navigation li {
	float: left;
	display: block;
	margin: 0;
	padding: 0;
}

/* turn off subesection by default */
#navigation li ul {
	display: none;
	position: absolute;
	top: 30px;
	left: 0;
	background-color: white;
	width: 980px; /* percent doesn't work with IE here, use px instead */
	border-color: #bfbfbf;
	border-width: 1px 0 0 0;
	border-style: solid;
}

/* for all links in the list */
#navigation li ul li a {
	display: block;
	height: auto; /* override height from tier 1 anchors */
	line-height: 26px;
	padding: 2px 12px 0 5px;
	font-size: 11px;
	text-indent: 0; /* override text-indent from tier 1 anchors */
	color: #666;
}


/* subsection rollovers */
#navigation li:hover ul, #navigation li.hover ul {
	display: block;
	z-index: 1000;
}
