/**
* Basic styling for toplevel and sublevel menu items
*/
ul.NAV2,
ul.NAV2 ul {
margin:0px;
padding:0px;
cursor: pointer;
font-size:13px;
font-variant:small-caps;
list-style:none;
}

/**
* 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;
margin:0px;
padding:0px;
list-style:none;
}

/**
* 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;
}
* html ul.NAV2 ul {
display: none;
}

/**
* This will open the submenu when hovered
*/
ul.NAV2 ul.hover {
display: block;
}

ul.NAV2 ul.active {
display: block;
}


/**
* Styling of links used in the menu
* Change colors, padding and text-decoration as you like
*
* Order of the a, LVHA (Link Visited Hover Active)
*/

* html ul.NAV2 li a  {
height: 23px;
overflow: hidden;
display: block;
}

ul.NAV2 li a {
display: block;
padding: 5px 0;
text-decoration: none;
color:#000000;	
padding-top:3px;
white-space: nowrap;
}


ul.NAV2 a:visited, 
ul.NAV2 a.visited {
color:#000000;	
}

ul.NAV2 a:hover,
ul.NAV2 a.hover {
color: #FFFFFF;
}

ul.NAV2 a:active,
ul.NAV2 a.active {
color: #FFFFFF;
}

/* Fixes IE-windows problems with linebreaks, hide for IE-mac \*/
* html ul.NAV2 li { float: left; }
* html ul.NAV2 li a { height: 23px; }
/* End */


/**
* Submenu NAV21
*
* Inherit from the other submenu and change just what we need.
*/


/**
* 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.NAV21 li > ul {
display: none;
}

* html ul.NAV21 ul {
display: none;
}

ul.NAV21 li a {
padding-left: 15px;
font-size:11px;
font-variant:normal;
font-weight:normal;
}

ul.NAV21 a:visited {
color: #000;
}


ul.NAV21 a.hover,
ul.NAV21 a:hover {
color: #FFFFFF;
}

ul.NAV21 a:active,
ul.NAV21 a.active {
color: #FFFFFF;
}


/**
* Submenu NAV22
*
* Inherit from the other submenu and change just what we need.
*/


/**
* 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.NAV22 li > ul {
display: none;
}

* html ul.NAV22 ul {
display: none;
}

ul.NAV22 li a {
padding-left: 50px;
}

ul.NAV22 a:visited {
color: #000;
}


ul.NAV22 a.hover,
ul.NAV22 a:hover {
color: #FFFFFF;
}

ul.NAV22 a:active,
ul.NAV22 a.active {
color: #FFFFFF;
}

