/*
define css styles for top navigation bar
*/

#navigation
{
	display: block;
	margin: 0px;
	border: 0px;
	padding: 10px;
	height: 23px;
}

#navigation ul
{
	margin: 0px;
	border: 0px;
	padding: 0px;
}


#navigation ul li 
{
	/* define top level list items - rather than display inline, we float left to align horizontally across page */
	display: inline;
	float: left;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	border: 0px;
	display: block;
	background-color: #EAE9D4;
	margin-right: 1px;
	margin-bottom: 1px;		/* seperate links incase user resizes font */
}


/* the following rules are recognized by IE only */
* html body #navigation li {width: 10px;}

#navigation ul li a
{
	/*	define links */
	display: block;
	text-decoration: none;
	color: #918E45;
	padding:5px 10px;
	white-space: nowrap;
}

/* hack to fix ie/win, but hide from ie/mac \*/
* html #navigation ul li a { margin-bottom: 0px; }
/* end */


#navigation ul li#nav-10012 a
{
	padding-left: 11px;
	padding-right: 11px;
	color: #FFFFFF;
}
#navigation ul li#nav-10012 		{background-color: #CCCCCC;}


/* define link select */
#navigation ul li.current 				{background-color: #D6D4AA;}
#navigation ul li.current a				{color: #FFFFFF;}



/* define link hover - but hide from ie-mac \*/
#navigation ul li a:hover 			{background-color: #DFDEC2;}
#navigation ul li#nav-10012 a:hover	{background-color: #AAAAAA;}
/* end hide */






