/* top nav items */
.navtop
{
	/* recommended styles */
	list-style: none;
	margin: 0;
	padding: 10px 0px;
	/* width: 100%;  == Use this line to make the navtop <ul> span the entire width */

	/* add custom styles here */
	float: left;
	width: 100%;
	height: 340px;
}
.navtop li
{
	/* recommended styles */

	/* add custom styles here */
	float: left;
	width: 100%;
}
.navtop li a
{
	/* recommended styles */

	/* add custom styles here */
	color: white;
	text-decoration: none;
	display: block;
	font-size: 85%;
	font-weight: bold;
	text-transform: uppercase;
	padding: 5px 26px;
	float: left;
	width: 130px;
}
.navtop li a:hover
{
	color: #000;
	background-color: white;
}

/* dropdown nav items */
.navtop li ul
{
	/* recommended styles */
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	padding-bottom: 5px;

	/* add custom styles here */
}
.navtop li.selected ul
{
	/* recommended styles */
	display: block;
}

.navtop li ul li
{
	/* recommended styles */

	/* add custom styles here */
	margin: 0px;
}

.navtop li ul li a
{
	font-size: 75%;
	font-weight: normal;
	padding: 3px 0px 3px 66px;
	line-height: 1em;
	width: 116px;
}