/*******************************************************\
 * You can change this file to make different nav layouts
 * using the markers below.
 *
 * Markers:
 *
 *
 * Right align the top nav
 * -------------------------
 * m1 - change to [float: right;]
 *
\*******************************************************/

/* top nav items */
#headernav .navtop
{
	/* recommended styles */
	list-style: none;
	margin: 0;
	padding: 0;
	float: left; /* maker :m1: */
	/* width: 100%;  == Use this line to make the navtop <ul> span the entire width */

	/* add custom styles here */
}
#headernav .navtop li
{
	/* recommended styles */
	float: left;
	border-right: 1px solid #005288;
	

	/* add custom styles here */
	
}

#headernav .navtop li.last
{
	border-right: none;
}
#headernav .navtop li a
{
	/* recommended styles */

	/* add custom styles here */
	font-size:9pt;
	/*font-size: 83%;*/
	color: #005288;
	padding: 0px;
	padding-left: 6px;
	padding-right: 6px;
	/*padding-left: 6px;
	padding-right: 6px;*/
	display: block;
	text-decoration: none;
	line-height: 16px;
	
}
#headernav .navtop li a:hover, #headernav .navtop li.selected a
{
	/* recommended styles */

	/* add custom styles here */

	color: #F47D30;
}

