/* 
*	
* Secondary Links
*
*/

/*	Structure
-------------------------------------------------------------- */

#navigation-secondary{
	float: right;
	border: 0px solid red;
	width: 380px;
	height: 25px;
	margin-right: 25px;
	margin-top: 8px;
}
	
#navigation-secondary ul{
	margin:0px 0px 0px 5px;
	padding:0px;
	list-style:none;
}
	
#navigation-secondary li{
	float: right;
	margin-left: 15px;
	padding:0px;
}

#navigation-secondary li:after{
	content:" "; /*|*/
}
	
#navigation-secondary a{ /* make it block-level to fill the entire space */
	padding-right:5px;
}
	
#navigation-secondary span{
	padding:5px;
}
	
/*	Look & Feel
-------------------------------------------------------------- */

#navigation-secondary{
	font-size: 11px;
	font-family: Verdana, Geneva, sans-serif;
	background:#fff;
	color: #333;
	font-stretch: semi-condensed;
}
	
#navigation-secondary a{
	color: #000;
	text-decoration: none;
}

#navigation-secondary li a:hover{
	text-decoration: underline;
	color: #000;
}
	
#navigation-secondary li a.active{
	font-weight: bold;
}

#navigation-secondary li a.active:before{
	content:"↓";
}
	 