#navp{
	list-style:none;
	font-weight:normal;
        font-size:12px;
        font-family:"Arial";
	margin-bottom:1px;
	/* Clear floats */
	float:center;
	width:100%;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/
	position:center;
	z-index:5;
}
#navp li{
	float:left;
	margin-right:6px;
	position:relative;
}
#navp a{
	border-top:0px groove #FF8C00; border-bottom:0px thin #210F0F; display:block;
	font-weight: bold;
	padding:5px;
	color:#040404;
	background:#FFFFFF;
	text-decoration:none;
      	border-left-width:4px; border-right-width:4px
}


#navp a:hover{
	background: #BDBDBD;
	color:black;
	/*text-decoration:underline;*/
	font-weight:bold;
}

/*--- DROPDOWN ---*/
#navp ul{
	background:white; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	list-style:none;
	font-weight:normal;
        font-size:12px;
        font-family:"Arial";
	list-style:none;
	border-width: 0px;
	/*position:absolute;*/
	position:absolute;
	float:right;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}

#navp ul li{
	padding-top:3px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}
#navp ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	color:#040404;
	background:#DEDEDE;
	text-decoration:none;
      	border-left-width:4px; border-right-width:4px
}
#navp li:hover ul{ /* Display the dropdown on hover */
	left:-90; /* Bring back on-screen when needed */
}
#navp li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background: #BDBDBD;
	color:black;
	font-weight:bold;
	/*text-decoration:underline;*/
}
#navp li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
	/*border-top:4px groove #380000; border-bottom:4px thin black; display:block;*/
	font-weight: block;
        font-size:11px;
	padding:2px;
	color:#9E9E9E;
	background:white;
	text-decoration:none;
      	border-left-width:4px; border-right-width:4px
}
#navp li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background: #BDBDBD;
	color:black;
	text-decoration:underline;
}

#navp li:hover ul, #nav li.sfhover ul {
	text-decoration:none;
	/*border-top:4px groove #380000; border-bottom:4px thin black; display:block;*/
	font-weight: block;
        font-size:11px;
	padding:5px;
	color:#9E9E9E;
	background:white;
	text-decoration:none;
      	left: auto; border-left-width:4px; border-right-width:4px
}