/**
 * Basic styling for toplevel and sublevel menu items
 */
ul.NAV5,
ul.NAV5 ul {

}

/**
 * Position list items relative to the menu it is in,
 * required to keep absolute positioned elements inside the list item
 */
ul.NAV5 li {
position: relative;
}

ul.NAV5 li.haschildren {
background-image:url(/smt/user/images/arrowGray1.gif);
background-repeat: no-repeat;
background-position: right 8px;
}

/**
 * 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.NAV5 li > ul {
display: none;
}

html ul.NAV5 ul {
display: none;
}

/**
 * This will open the submenu when hovered
 */
ul.NAV5 ul.hover {
display: block;
}

ul.NAV5 ul.active,
ul.NAV5 ul:active {
display: block;
padding-left: 5;
}


/**
 * 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)
 */
 
ul.NAV5 li a {
display: block;
text-decoration: none;
padding-top:3px;
font-variant:small-caps;
/*font-weight:bold;*/
}
	
/**
 * Visited link
 */
ul.NAV5 a:visited {
color:#ffffff;
}

/**
 * This block describes styling of active menu items
 */
ul.NAV5 a:active,
ul.NAV5 a.active {
color: #B07941;
}

/**
 * This block describes styling of hovered menu items
 * Change colors or text-decoration as you like
 */
ul.NAV5 a:hover,
ul.NAV5 a.hover {
color: #7D6942;
font-weight:normal;
}
	
/* Fixes IE-windows problems with linebreaks, hide for IE-mac \*/
* html ul.NAV5 li { float: left; }
* html ul.NAV5 li a { height: 1%; }
/* End */

/*  Submenu */
ul.NAV51 li a {
padding-left:10px;
color:#999999;
}

/* Sub- Submenu */
ul.NAV51 li ul li {
padding-left:15px;
color:#999999;
}
