/*******************************************************\
 * 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 */
.inactive {
	color: rgb(195,195,195);
}
.navtop {/*
	font-size: 12px;
	letter-spacing: 0.1ex;
	background: transparent url(/images/navBG.gif) top left repeat-x scroll;*/
	list-style: none;
	margin: 0;
	padding: 0;
	float: right;
}
.navtop li {
	float: left;
	padding: 0;/*
	background: transparent url(/images/navBG.gif) top left repeat-x scroll;*/
}
.navtop li a {/*
	color: rgb(102,102,102);
	text-decoration: none;
	padding: 6px 33px 3px 14px;*/
	display: block;
}
.navtop li.last a, .navtop li.last a {/*
	border: 0;*/
}
.navtop>li.selected>a, .navtop>li.selected li.selected>a {/*
	font-weight: bold;*/
}
.navtop li a {/*
	color: rgb(51,51,51);
	border-right: 1px solid white;*/
}
.navtop li:hover {/*
	color: rgb(51,51,51);
	background: transparent url(/images/navBG_hv.gif) top left repeat-x scroll;*/
}
/* dropdown nav items */
.navtop li ul {
	display: none;
	position: absolute;
	background: none;
	font-size: 0.9em;
	letter-spacing: normal;
	padding: 0;
	margin: 0;
	z-index: 5;
}
.navtop li ul li {
	padding: 0px 0 0 0;
}
.navtop li ul a {
	background-color: white;/*
	margin: 0px 0 0 0;*/
	color: rgb(102,102,102);
	padding: 0px 35px 0px 10px;
}
.navtop li ul a:hover, .navtop li ul:hover  {
	color: rgb(51,51,51);
	background-color: rgb(185,207,231);
}
.navtop li:hover ul {
	display: block;
}
/* needed for safari if drop down is going over flash
 * without this, the drop down flickers or even becomes invisible
 * when you mouse over it.
 * This is a hack that causes safari to redraw the drop down nav on top of the flash
 */
.navtop li:hover ul.redraw, .navtop li.hover ul.redraw {
	border-bottom: 1px hidden transparent;
}
.navtop li ul li {
	float: none;
}
.navtop li ul li.first {
}
.navtop li ul li.last a {
}