/**
 * Basic styling for toplevel and sublevel menu items
 */
ul.NAV4,
ul.NAV4 ul {
	margin: 0px;
	width: 206px;
	cursor: default;
	list-style-type: none;
	float: left;
	padding: 0px;
	text-align: left;
	display:inline;
	background-color: #F5822E;
	/*background-color: #012D6B;*/
}

/**
 * Position list items relative to the menu it is in,
 * required to keep absolute positioned elements inside the list item
 */
ul.NAV4 li {
    position: relative;
	float:left;
	
}

/**
 * The next two blocks style the submenu positioning inside a list-item
 * One block for W3C browsers, one for IE6.
 * adjust top and left to change spacing
 */
ul.NAV4 li > ul {
	display: none;
	position: relative;
	float:left;
	top: 0px;
	left: 0px;
	background-color: #7891B2;
	margin: 0px;
}

ul.NAV4 li > ul a,
ul.NAV4 li > ul a:hover,
ul.NAV4 li > ul a:visited {
	/*color: #F5822E;*/
	color: #012D6B;
}

* html ul.NAV4 ul {
    display: none;
    position: relative;
	float:left;
    top: 0px;
    left: 0px;
	background-color: #7891B2;
	margin: 0px;
}

/**
 * This will open the submenu when hovered
 */
ul.NAV4 ul.hover,
ul.NAV4 ul.active {
    display: block;
}

/**
 * Styling of links used in the menu
 * Change colors, padding and text-decoration as you like
 */
ul.NAV4 li a {
	color: #FFFFFF;
	font-weight: bold;
	display: block;
	text-decoration: none;
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	margin: 0px;
	width:190px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
}

/**
 * This block describes styling of hovered menu items
 * Change colors or text-decoration as you like
 */
ul.NAV4 a.hover {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}

/**
 * This block describes styling of active menu items
 */
ul.NAV4 a.active {
	font-weight: bold;
	text-decoration: none;
	color: #FFFFFF;
}

ul.NAV4 a.visited{
	font-weight: bold;
	text-decoration: none;
	color: #00FF33;
}

/* Fixes IE-windows problems with linebreaks, hide for IE-mac \*/
* html ul.NAV4 li { float: left; }
* html ul.NAV4 li a { height: 1%; }
/* End */
