/**
 * Basic styling for toplevel and sublevel menu items
 */
ul.NAV1,
ul.NAV1 ul {
	margin: 0px;
	padding-left: 0px;
	list-style-type: none;
	background-color: #012D6B;
	border-right: 0px solid #FFFFFF;
}

/**
 * Use absolute positioning for the submenu, this makes sure IE does 
 * not resize the container DIV
 */

 
ul.NAV1 ul {
    position: absolute;
}

/**
 * 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;
    display: block;
    float: left;
	padding-right:5px;
}

/**
 * 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;
    float: left;
}
* html ul.NAV1 ul {
    display: none;
   }

* html ul.NAV1 li {
float: left;
    }

ul.NAV11 li > ul {
    display: none;
    position: absolute;
    float: left;
}

* html ul.NAV11 ul {
    display: none;
    position: absolute;
    top: 5px;
}

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

/**
 * Styling of links used in the menu
 * Change colors, padding and text-decoration as you like
 */
ul.NAV1 li a,
ul.NAV1 li a:link,
ul.NAV1 li a:active,
ul.NAV1 li a:visited {
	display: block;
	text-decoration: none;
	color: #FFFFFF;
	float: left;
	font-size:10px;
	margin-right: 20px;
	margin-left: 10px;
	padding-bottom: 14px;
}

ul.NAV1 li a:hover {
    display: block;
    text-decoration: underline;
    color: #FFFFFF;
    float: left;
	font-size:10px;
	margin-right: 20px;
	margin-left: 10px;
	padding-bottom: 10px;
}

ul.NAV1 li a {
    border-right: 0px solid #ccc;
}

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

/**
 * This block describes styling of active menu items
 */
ul.NAV1 a.active {
}

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