/**
 * Basic styling for toplevel and sublevel menu items
 */
ul.NAV1,
ul.NAV1 ul {
    margin: 0px;
	cursor: default;
    list-style-type: none;
	
	float: left;
	padding: 0px;
	text-align: left;
	display:inline;
}

/**
 * Position list items relative to the menu it is in,
 * required to keep absolute positioned elements inside the list item
 */
ul.NAV1 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.NAV1 li > ul {
	display: none;
	position: relative;
	float:left;
	top: 0px;
	left: 0px;
	margin: 0px;
}
* html ul.NAV1 ul {
    display: none;
    position: relative;
	float:left;
    top: 0px;
    left: 0px;
	margin: 0px;
}

/**
 * This will open the submenu when hovered
 */
ul.NAV1 ul.hover,
ul.NAV1 ul.active {
    display: block;
}

/**
 * Styling of links used in the menu
 * Change colors, padding and text-decoration as you like
 */
ul.NAV1 li a {
	width: 120px; 
	color: #FFFFFF;
	font-weight: bold;
	display: block;
	text-decoration: none;
	padding: 0px;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	margin: 0px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 0px;
}

/**
 * This block describes styling of hovered menu items
 * Change colors or text-decoration as you like
 */
ul.NAV1 a.hover {
	font-weight: bold;
	color: #FFCC00;
	text-decoration: none;
}

/**
 * This block describes styling of active menu items
 */
ul.NAV1 a.active {
	font-weight: bold;
	text-decoration: none;
	color: #FFCC00;
}

ul.NAV1 a.visited{
	font-weight: bold;
	text-decoration: none;
	color: #ffffff;
}

/* Fixes IE-windows problems with linebreaks, hide for IE-mac \*/
* html ul.NAV1 li { float: left; }
* html ul.NAV1 li a { height: 1%; }
/* End */
