/* nav.css for B2M site - based on SHF by wed © Factor of 4, 2007-04-05 */

#mainnav a:link, a:visited, a:active
	 {text-decoration:none; color:#96311C}
#mainnav a:hover  { color: #473F68; text-decoration: none }
#footer a:link, a:visited, a:active
	 {text-decoration:none; color:#FB9B0E}
#footer a:hover  { color: #96311C; text-decoration: none }

/*"#nav" defines the location of the navigation code on the page for the JavaScript used for MSIE browsers. */
#nav2 {  }
#nav3 {  }
#nav4 {  }
#nav5 {  }
#nav6 {  }
#nav7 {  }

/*"sub" defines the style for menu with dropdowns. */
.sub     { }

/*"sub ul" defines the style for the primary menu. */
.sub ul        { list-style-type: none; margin: 0; padding: 0; position: relative; width: 138px; height: 1.75em }

/*"sub ul:hover" defines the hover state of the primary navigation blocks in CSS-standard browsers like FireFox and Safari*/
.sub>ul>li:hover         { color: #96311C; background-image: url("../images/button-bg.gif"); background-repeat: repeat-y;  }

/*"sub ul.over" defines the hover state of the primary navigation blocks in non-standard browsers like MSIE. This also needs a small piece of JavaScript to work.*/
.sub>ul>li.over          { color: #96311C; background-image: url("../images/button-bg.gif"); background-repeat: repeat-y;  }

/*"sub ul a:hover" defines the hover state of the primary navigation link in CSS-standard browsers like FireFox and Safari*/
.sub ul a:hover     { color: #96311C; text-decoration: none; padding-right: 10px }


/*"sub li" defines the style of each menu item in the primary menu -  may conflict with the "menu"  defininition in text.css.*/
.sub li       { list-style-type: none; margin: 0; padding: 0; position: relative; width: 138px }

/*"sub li ul" defines the overall style of the dropdown menu block. It's initial display value is set to "none" in order to hide the dropdown until rolled over.*/
.sub li ul      { list-style: none; display: none; padding: 0; position: absolute; top: 0; left: 138px; width: 15.5em }

/*"sub li>ul"  is a child selector that defines the ul block immediately descendent from a "menu li" tag.*/
/*sub li > ul { left: auto; border: solid thin #f96 }*/

/*"sub li li" defines the style of each dropdown menu item.*/
.sub li li { font-family: Arial, Helvetica, SunSans-Regular, sans-serif; background-color: #FC9; display: block; margin: 0; padding: 2px 2px 2px 10px; position: relative; width: 16.5em; height: 1.5em; float: none }

/*"sub li:hover ul" sets the display value to "block" which reveals the downdown menu in standard CSS browsers like Safari and Firefox*/
.sub li:hover ul { display: block }

/*"sub li:over ul" sets the display value to "block" which reveals the downdown menu in non-standard browsers like MSIE. This also needs a small piece of JavaScript to work.*/
.sub li.over ul { display: block }

/*"#sub li ul a" defines inline text links in their three states: link, visited, and active(hover)*/
.sub li ul a:link         { color: #813819; font-weight: bold; text-decoration: none }
.sub li ul a:visited      { color: #813819; font-weight: bold; text-decoration: none }
.sub li ul a:hover, a:active { color: #000; font-weight: bold; text-decoration: underline }

