/**
 * Basic styling for toplevel and sublevel menu items
 */
ul.NAV2,
ul.NAV2 ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

img {
	border: 0px none;
	}

/**
 * Use absolute positioning for the submenu, this makes sure IE does 
 * not resize the container DIV
 */
ul.NAV2 ul {
    position: absolute;
}

/**
 * Position list items relative to the menu it is in,
 * required to keep absolute positioned elements inside the list item
 */
ul.NAV2 li {
    position: relative;
    display: block;
    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.NAV2 li > ul {
    display: none;
    float: left;
}
* html ul.NAV2 ul {
    display: none;
   }

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

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

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

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

/**
 * Styling of links used in the menu
 * Change colors, padding and text-decoration as you like
 */
ul.NAV2 li a {
    display: block;
    text-decoration: none;
    color: #777;
    float: left;
}

ul.NAV21 li a {
    border-right: 1px solid #ccc;

}

/**
 * This block describes styling of hovered menu items
 * Change colors or text-decoration as you like
 */
ul.NAV2 a.hover {


}

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

}

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