/*=========================================================================================================
//---------------------------------------------------------------------------------------------------------
//	MAIN NAVIGATION - HORIZONTAL STYLE WITH GRAPHICS
//---------------------------------------------------------------------------------------------------------
//=======================================================================================================*/
/*---------------------------------------------------------------------------------------------------------
//	Container blocks for nav sets
//-------------------------------------------------------------------------------------------------------*/
#nav-main
{
	position:					absolute;
	top:						67px;

	width:						100%;
	z-index:					1000;
	display:					block;
	clear:						both;
	height:						26px;
	white-space:				nowrap;
	overflow:					hidden;
	margin:						0px;
	padding:					0px 0px 0px 0px;
/*	background-image:			url( /site/images/bg_topnav.gif );
	background-repeat:			no-repeat;*/
	background-color:			black;
	overflow:					hidden;

}

#nav-main ul
{
	display:				block;
	float:					left;
	margin:					0px;
	padding:				0px;

	list-style-type:		none;

}

#nav-main li
{
	margin:					0px 3px 0px 0px;
	padding:	0px;
	display:				inline;
	float:					left;
/*
overflow:				hidden;
*/
}

/*---------------------------------------------------------------------------------------------------------
//	Main nav item styles (for text-only menu headers - delete these if graphics are used for main nav)
//-------------------------------------------------------------------------------------------------------*/
#nav-main a
{
	display:				block;
	float:					left;

	margin-left:			5px;

	border:					3px solid black;
	border-radius:			14px;
	-moz-border-radius:		14px;
	-webkit-border-radius:	14px;

	padding:				0px 20px;

	white-space:			nowrap;
	line-height:			20px;
	font-family:			arial,sans-serif;
	font-weight:			normal;
	font-size:				11px;
	color:					white;
}

#nav-main a:hover,
#nav-main a.active
{
	border:					3px solid #6494c2;
	background-color:		#053067;
}






