
.navbar {	
  display: block;
  position: relative;
  top:10px;
  left:10px;
  width: 750px;
  height: 40px; /* corresponds to 'line-height' of a.navbartitle below */
  margin: 0px auto;
  border: 0px;
  padding: 0px;
  background-color: #000;

}

.navbar ul { margin: 0px;
padding: 0px;
font-family: Arial, Helvetica, sans-serif;
font-size: small;
color: #FFF;
line-height: 30px;
white-space: nowrap;
}

.navbar li {
 display: inline; 
  float: left;
  background-color:  #000;
  font-family: Verdana, Arial, Geneva,  Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin: 0; border: 0; padding: 3px 15px 0px 10px;
  line-height: 30px; /* corresponds to 'top' value of .submenu below */
  text-align: left;
  text-decoration:none;
}

a.navbartitle {
  display: inline; 
  float: left;
  background-color:  #000;
  font-family: Verdana, Arial, Geneva,  Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin: 0; border: 0; padding: 3px 10px 0px 10px;
  line-height: 30px; /* corresponds to 'top' value of .submenu below */
  text-align: left;
  text-decoration:none;
}

a.navbartitle:hover {
    color: #FF0000 !important;
     display: inline; 
  float: left;
  background-color:  #000;
  font-family: Verdana, Arial, Geneva,  Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin: 0; border: 0; padding: 3px 10px 0px 10px;
  line-height: 30px; /* corresponds to 'top' value of .submenu below */
  text-align: left;
  text-decoration:none;
}

li.navbartitle {
  display: inline; 
  float: left;
  color: #FFF;
  background-color:  #000;
  font-family: Verdana, Arial, Geneva,  Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin: 0; border: 0; padding: 0;
  line-height: 40px; /* corresponds to 'top' value of .submenu below */
  text-align: left;
  text-decoration:none;
  white-space:nowrap; 
}

/* menu title widths */
#t1 { width: 48px; height: 36px; border-right: 1px solid #FFF; border-left: 1px solid #FFF;}
#t2 { width: 49px; height: 36px; border-right: 1px solid #FFF;}
#t3 { width: 90px; height: 36px; border-right: 1px solid #FFF;}
#t4 { width: 67px; height: 36px; border-right: 1px solid #FFF;}
#t5 { width: 98px; height: 36px; border-right: 1px solid #FFF;}
#t6 { width: 60px; height: 36px; border-right: 1px solid #FFF;}
#t7 { width: 49px; height: 36px; border-right: 1px solid #FFF;}
#t8 { width: 70px; height: 36px; border-right: 1px solid #FFF;}
/* We just specify a fixed width for each menu title. Then, down below we specify
    a fixed left position for the corresponding submenus (e.g. #products_submenu, etc.)
    Using these fixed values isn't as elegant as just letting the text of each 
    menu title determine the width of the menu titles and position of the submenus,
    but we found this hardwired approach resulted in fewer cross-browser/cross-OS 
    formatting glitches -- and it's pretty easy to adjust these title widths and the
    corresponding submenu 'left' positions below, just by eyeballing them whenever
    we need to change the navbar menu titles (which isn't often). */

.submenu {
	position:absolute;
  z-index: 2;
  top: 23px; /* corresponds to line-height of a.navbartitle above */
  padding: 0; margin: 0; 
	color: white;
	background-color:  #000;
	border-right: 1px solid #FFF;
        border-left: 1px solid #FFF;
        border-bottom: 1px solid #FFF;
        border-top: 1px solid #FF0000;/* box around entire sub-menu */
  font-family: Verdana, Arial, Geneva,  Helvetica, sans-serif;
	font-size: 12px;
}
/* Fix IE formatting quirks. */
* html .submenu { width: 150px; } /* 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: 69px; top:39px; visibility: hidden;  width: 157px;}
#writenow_submenu {  left:227px; top: 39px; visibility: hidden; width: 113px;  }
#archives_submenu {  left:464px; top: 39px; visibility: hidden; width: 264px;}
/* 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: #000;
  padding: 5px 5px 4px 12px;
  text-decoration: none;
  background-color: #000; 
}



.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;
}

.submenubox ul li a:link { }
.submenubox ul li a:visited { }
.submenubox ul li a:hover
{
  color: #FF0000; /* text color for submenu items */
  background-color: #000;

}




