.hnav ul li a.hide { display: none }

.hnav {
 text-align: left;
}

.hnav, .hnav ul li a {
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements.
	 */
 padding-top: 14px;
 padding-bottom: 16px;
}

.hnav ul, .hnav ul li {
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;

}

.hnav ul li a {
	margin: 0 -1px 0 0;
	padding-left: 21px;
	padding-right: 21px;	/* short-hand padding attribute would overwrite
                               top/bottom padding set in a previous rule */


	border-right: solid 1px #a4601f; /* f8f3df; */
	white-space: nowrap;
}

.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover {
	text-decoration: none;
}

.hnav ul li span.divider {
	display: none;
}

* html .hnav ul li, * html .hnav ul li a {
	width: 1%; /* IE/Mac needs this */
	display: inline-block;	/* IE/Mac needs this */
	/* \*/
		width: auto;
		display: inline;
		position: relative;
	/* reset above hack */
}

* html .hnav, * html .hnav ul a {
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win.
				 IE/Mac will ignore this rule. */
}

* html .HNAV {
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector hack will be applied only by
			   IE 5.x/Win */
}


/*     Colors      */

.hnav, .hnav ul li a {
 font-family:arial, verdana, sans-serif;
 font-size:1.2em;
 font-weight:bold;
 color: #efe7a9;
 background:inherit;
}

.hnav ul li a:hover {
 color: #dbbc47;
 background:inherit;
}
