/*
	horizontal menu
	location and margins
*/
ul#navigation-site
{
	height: 16px;
	float: right;
	margin: 20px 30px 0 0;
	z-index: 90;
}

/*
	various heights and top alignments
*/
#navigation-site li.item-primary > a
{
	height: 16px;
	line-height: 15px;
}
#navigation-site li li a
{
	height: 23px;
	line-height: 22px;
}
#navigation-site :hover  ul
{
	top: 15px;
}

/*
	text
*/
#navigation-site
{
	font: 12px arial, verdana, sans-serif;
}
#navigation-site li a
{
	color: #999999;
	text-decoration: none;
	font-weight: bold;
}
#navigation-site li.item-primary
{
	font-style: italic;
}
#navigation-site li.item-primary a:hover
{
	text-decoration: underline;
	color: #D81214;
}
#navigation-site ul
{
	font-style: normal;	
}
#navigation-site li li a
{
	font-weight: bold;
}
/*
	show path followed
	level zero and subsequent	
*/
#navigation-site li:hover > a
{
	color: #D81214;
}

/*
	show path followed
	level one and subsequent	
*/
/*
#navigation-site li:hover li:hover > a
{
	color: #D81214;
}
*/


/*
	backgrounds
*/
#navigation-site
{
	background-color: #FFF;
}
#navigation-site ul
{
	background-color: #FFF;
}

/*
	padding of all menu items (anchors)
*/
#navigation-site li a
{
	padding: 0 10px 0 10px;
}

/*
	borders
*/
#navigation-site li.item-primary
{
	border-left: 1px solid #D81214;
}
#navigation-site li.first
{
	border-left: none;
}
#navigation-site ul
{
	border:  1px solid #CCC;
}
#navigation-site li li
{
	border-top: 1px solid #CCC;
}
#navigation-site li li.first
{
	border-top: none;
}

/*
	border adjustments
	modern browser
	must ensure 1px minimum overlap
*/
#navigation-site :hover  ul
{
	left: -1px;
}
#navigation-site li:hover li:hover > ul
{
	top: -1px;
}
/*
	border adjustments
	internet explorer 6 and below
	using anchor containment and table wrap
	must ensure 1px minimum overlap
*/
#navigation-site a:hover ul
{
	left: -1px;
}
#navigation-site a:hover a:hover ul,
#navigation-site a:hover a:hover a:hover ul,
#navigation-site a:hover a:hover a:hover a:hover ul,
#navigation-site a:hover a:hover a:hover a:hover a:hover ul
{
	top: -1px;
}




/*
	remove default list formatting
*/
#navigation-site
, #navigation-site ul
{
	padding: 0;
	margin: 0;
	list-style-type: none;
}

#navigation-site li
{
	float: left;
}
#navigation-site li li
{
	float: none;
}
#navigation-site li a
{
	display: block;
	float: left;
	white-space: nowrap;
}
#navigation-site li li a
{
	float: none;
	display: block;
}
#navigation-site li:hover
{
	position: relative;
	z-index: 100;
}
#navigation-site a:hover
{
	position: relative;
	z-index: 100;
}

#navigation-site :hover  ul
{
	z-index: 300;
}


/*
	all submenus are hidden by default
*/
#navigation-site ul
{
	position: absolute;
	left: -9999px;
	top: -9999px;
}
/*
	show flyout level two and subsequent
*/
#navigation-site li:hover li:hover > ul
{
	margin-left: 100%;
	left: 0;
}
/*
	hide flyout level after current child
*/
#navigation-site li:hover > ul ul
{
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: auto;
}


/*
	internet explorer and the margin hack
	when left margin or right margin set on ul#navigation-site
*/
#navigation-site
{
	display: inline;
}

/*
	internet explorer 6 and below
	using anchor containment and table wrap
*/
#navigation-site table
{
	border-collapse: collapse;
	float: left;
	
}

#navigation-site a:hover a:hover ul,
#navigation-site a:hover a:hover a:hover ul,
#navigation-site a:hover a:hover a:hover a:hover ul,
#navigation-site a:hover a:hover a:hover a:hover a:hover ul
{
	left: 100%;
}

#navigation-site a:hover ul ul,
#navigation-site a:hover a:hover ul ul,
#navigation-site a:hover a:hover a:hover ul ul,
#navigation-site a:hover a:hover a:hover a:hover ul ul
{
	position: absolute;
	left: -9999px;
	top: -9999px;
}

