/* 
    Document   : navbars
    Created on : Dec 1, 2009, 1:00:37 PM
    Author     : jeremy
    Description:
        Navigation bar CSS styling
				
					'Trebuchet MS',Trebuchet,Tahoma,Arial
*/
.submenu {
	position: absolute;
  z-index: 2;
  top: 100px; /* corresponds to line-height of a.navbartitle above */
  padding: 0; margin: 0;
	width:141px; /* If you adjust this, then adjust width of .submenu below a too */
	color: white;
	background-color:  #987C34;
	border: 1px solid #987C34; /* box around entire sub-menu */
  font-family: "Verdana, Arial, Geneva,  Helvetica, sans-serif";
	font-size: 11px;
}
/* Fix IE formatting quirks. */
* html .submenu { width: 123px; } /* IE needs narrower than width of .submenu above */
/* End */

/* 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. */
#about_submenu {  left: 140px; visibility: hidden;  }
#services_submenu {  left: 240px; visibility: hidden; }
#solutions_submenu {  left: 328px; visibility: hidden; }
#career_submenu {  left: 386px; top: 232px; visibility: hidden; }
#catalog_submenu {  left: 430px; visibility: hidden;  }
#loc_submenu { left: 570px; visibility: hidden; }
#contact_submenu { left: 670px; 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: #eee;
  background-color: #F0E8D3;
  width: 141px; /* This should be width of .submenu above minus right-side padding on next line */
  padding: 5px 0px 4px 0px;
  text-decoration: none;
  border-bottom: #987C34 dotted 1px;
  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;
	list-style-position: outside;
}
.submenubox ul li {
  margin: 0; padding: 0; border: 0;
}

a.submenlink, a.submenlink:visited, a.submenlink:hover {
	color: #000000; /* text color for submenu items */
  background-color: #F0E8D5;
  border-bottom: #987C34 dotted 1px;
	font-family: 'Trebuchet MS' , Trebuchet, Tahoma, Arial;
	font-weight: bold;
	text-align: left;
	padding-left: 5px;
	width: 141px;
}
a.submenlink:hover {
	background-color: #E0D0C0;
}

/*
.submenubox ul li a:link { 
  color: #000000;
  border-bottom: #987C34 dotted 1px;
}
.submenubox ul li a:visited {
  color: #000000;
  border-bottom: #987C34 dotted 1px;
}
.submenubox ul li a:hover {
  color: #000000; 
  background-color: #E0D0C0;
  border-bottom: #987C34 dotted 1px;
}
*/
