@charset "iso-8859-1";

/*******************************************************************************
*  menu.css : 2005-08-29 : Ruthsarian Layouts
* ------------------------------------------------------------------------------
*  responsible for the horizontal navigation elements, one of which is usually
*  placed below the masthead but on top of the columns.
*******************************************************************************/

.menu
{
	text-align: right;
	margin-right: 2px;
	z-index: 60;
}
.menu, .menu ul li a
{
	/* need to middor veritcal padding on .menu and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .menu to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .menu _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 1px;
	padding-bottom: 2px;
}
.menu ul, .menu ul li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.menu ul li a
{
	margin: 0 -1px 0 0;
	padding-left: 3px;
	padding-right: 3px;	/* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
/*	border: 1px solid #677590; */
	white-space: nowrap;
}
.menu ul li a:link, .menu ul li a:visited
{
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000033;
	background-color: #CFAB70;
}
.menu ul li a:active, .menu ul li a:hover
{
	background-color: #E3DABB;
	color: #333345;
}
.menu ul li span.divider
{
	display: none;
}

* html .menu ul li, * html .menu ul li a
{
	width: 1%; /* IE/Mac needs this */
	display: inline-block;	/* IE/Mac needs this */
	/* \*/
		width: auto;
		display: inline; 
	/* reset above hack */
}
* html .menu, * html .menu ul a
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}
* html .menu
{
	padding: 0;	/* IE5/Win will resize #menu 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 */
}

/******************************************************************************/
