/* CSS Document */

/* ####################   Navigation bar CSS styling   ################## */ 



body
{
background-color:transparent;
allowTransparency:true;
}

	

.submenu {
	position:relative;
  z-index: 2;
  padding: 0; margin: 0; 
	color: transparent;
	background-color: transparent;
	allowTransparency:true;
	border: 0px solid transparent; /* box around entire sub-menu */

}



/* position of each sub menu */
/* We just eyeball the position of each submenu here -- can move left or right as needed. 
   If you adjust menu title text, you might want to adjust these too. */
#products_submenu {  left: 172px; top: -33px; visibility: hidden;  }




/* Note, each submenu is hidden when the page loads - then made visible when
    the mouse goes over the menu title. Using the 'visibility' property instead
    of using the 'display' property avoided a bug in some versions of Safari. 
    (The bug is pretty where esoteric: The browser ignored the 'hover' property 
    on 'li' objects inside an object whose display property was set to 'none' 
    when the page loaded...) Using the 'visibility' property instead of 'display'
    would normaly take up extra room on the page, but that's avoided here by putting
    the submenu on a second layer: see 'position: absolute' and 'z-index: 2'
    in .submenu definition, higher up this page. */

.submenu a
{
  display: block;
  color: transparent; 
  background-color: transparent;
  allowTransparency:true;
  width: 232px; /* This should be width of .submenu above minus right-side padding on next line */
  height: 33px; 
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  background-color: transparent; 
  border-bottom: 0px; 
  border-top: 0; border-left: 0; border-right: 0;
}


ul { position: relative; display: block; }
li { position: relative; display: block; }

.submenubox { 
  margin: 0; padding: 0; border: 0;
}
.submenubox ul
{
  margin: 0; padding: 0; border: 0;
  list-style-type: none;
}

.submenubox ul li { 
  margin: 0; padding: 0; border: 0;
}


