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

.mynavbar {
	position:relative;
	width:632px;
	height: 36px;
	border: 0;
	margin: 0px;
	padding: 0px;
	float: right;
}

a.navbartitle {
	display: block;
	float: left;
	font-family: "Palatino Linotype";
	font-style:italic;
	font-size: 18px;
	font-weight: bold;
	margin: 0;
	padding: 0;
	line-height: 36px; /* corresponds to 'top' value of .submenu below */
	text-align: center;
	border-right-width: 2px;
	border-bottom-width: 0;
	border-left-width: 0;
	border-right-style: solid;
	border-right-color: #333333;
	background-color: #000000;
	color: #FFFFFF;
	text-decoration: none;
}
a.navbartitle_end {
	display: block;
	float: left;
	color: #FFFFFF;
	font-family: "Palatino Linotype";
	font-style:italic;
	font-size: 18px;
	font-weight: bold;
	margin: 0;
	padding: 0;
	line-height: 36px; /* corresponds to 'top' value of .submenu below */
	text-align: center;
	text-decoration:none;
	background-color: #000000;
}
a.navbartitle:hover {
	background-position: left center;
	color: #FFFFFF;
	background-color: #184F14;
}
a.navbartitle_end:hover {
	background-position: left center;
	color: #FFFFFF;
	background-color: #184F14;
}
/* menu title widths */

#t0 {
	width: 76px;
}
#t1 {
	width: 146px;
}
#t2 {
	width: 136px;
}
#t3 {
	width: 130px;
}
#t4 { width: 129px;
}

/* 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: 36px; /* corresponds to line-height of a.navbartitle above */
	padding: 0;
	margin: 0;
	width:198px; /* If adjust this, then adjust width of .submenu below a too */
	color: white;
	background-color:  #819B56; /* box around entire sub-menu */
	font-family: Palatino linotype;
	font-size: 12px;
	font-weight:bold;
	border: 1px none #FFFFFF;
}
/* Fix IE formatting quirks. */
* html .submenu { width: 188px; } /* IE needs narrower than width of .submenu above */
/* End */

.submenu_1 {
	position:absolute;
	z-index: 4;
	top: 36px; /* corresponds to line-height of a.navbartitle above */
	padding: 0;
	margin: 0;
	width:146px; /* If adjust this, then adjust width of .submenu below a too */
	color: white;
	background-color:  #819B56; /* box around entire sub-menu */
	font-family: Palatino linotype;
	font-size: 14px;
	font-weight:bold;
	text-align: left;
}
/* Fix IE formatting quirks. */
* html .submenu_1 { width: 144px; } /* IE needs narrower than width of .submenu above */
/* End */

.submenu_2 {
	position:absolute;
	z-index: 2;
	top: 36px; /* corresponds to line-height of a.navbartitle above */
	padding: 0;
	margin: 0;
	width:136px; /* If adjust this, then adjust width of .submenu below a too */
	color: white;
	background-color:  #819B56; /* box around entire sub-menu */
	font-family: Palatino linotype;
	font-size: 14px;
	font-weight:bold;
	text-align: left;
}
/* Fix IE formatting quirks. */
* html .submenu_2 { width: 132px; } /* IE needs narrower than width of .submenu above */
/* End */

.submenu_3 {
	position:absolute;
	z-index: 2;
	top: 36px; /* corresponds to line-height of a.navbartitle above */
	padding: 0;
	margin: 0;
	width:129px; /* If adjust this, then adjust width of .submenu below a too */
	color: white;
	background-color:  #819B56; /* box around entire sub-menu */
	font-family: Palatino linotype;
	font-size: 14px;
	font-weight:bold;
	text-align: left;
}
/* Fix IE formatting quirks. */
* html .submenu_3 { width: 125px; } /* IE needs narrower than width of .submenu above */
/* End */

.submenu_4 {
	position:absolute;
	z-index: 2;
	top: 36px; /* corresponds to line-height of a.navbartitle above */
	padding: 0;
	margin: 0;
	width:128px; /* If adjust this, then adjust width of .submenu below a too */
	color: white;
	background-color:  #819B56; /* box around entire sub-menu */
	font-family: Palatino linotype;
	font-size: 14px;
	font-weight:bold;
	text-align: left;
}
/* Fix IE formatting quirks. */
* html .submenu_4 { width: 126px; } /* 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. */
#submenu_1 {  left: 76px;visibility: hidden; }
#submenu_2 {  left: 226px; visibility: hidden;  }
#submenu_3 {  left: 364px; visibility: hidden; }
#submenu_4 {  left: 496px; 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: #FFFFFF;
	width: 190px; /* This should be width of .submenu above minus right-side padding on next line */
	padding: 3px 3px 3px 5px;
	text-decoration: none;
	background-color: #819B56;
	border: thin none #FFFFFF;
}


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

.submenubox { 
  margin: 0; padding: 0; border: 1;
}
.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: #000000;
	background-repeat: repeat-x;
	background-color: #D19537;
	border: thin solid #FFFFFF;
}

.submenu_1 a
{
	display: block;
	color: #FFFFFF;
	width: 142px; /* This should be width of .submenu above minus right-side padding on next line */
	padding: 3px 3px 3px 5px;
	text-decoration: none;
	background-color: #819B56;
	border: thin none #FFFFFF;
}


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

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

.submenu_1box ul li {
	margin: 0;
	padding: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}

.submenu_1box ul li a:link { }
.submenu_1box ul li a:visited { }
.submenu_1box ul li a:hover
{
	color: #000000;
	background-color: #D19537;
	text-align: left;
}


.submenu_2 a
{
	display: block;
	color: #FFFFFF;
	width: 128px; /* This should be width of .submenu above minus right-side padding on next line */
	padding: 3px 3px 3px 5px;
	text-decoration: none;
	background-color: #819B56;
	border: thin none #FFFFFF;
}


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

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

.submenu_2box ul li {
	margin: 0;
	padding: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
}

.submenu_2box ul li a:link { }
.submenu_2box ul li a:visited { }
.submenu_2box ul li a:hover
{
	color: #000000;
	background-color: #D19537;
	text-align: left;
}


.submenu_3 a
{
	display: block;
	color: #FFFFFF;
	width: 122px; /* This should be width of .submenu above minus right-side padding on next line */
	padding: 3px 3px 3px 5px;
	text-decoration: none;
	background-color: #819B56;
	border: thin none #FFFFFF;
}


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

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

.submenu_3box ul li {
	margin: 0;
	padding: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
}

.submenu_3box ul li a:link { }
.submenu_3box ul li a:visited { }
.submenu_3box ul li a:hover
{
	color: #000000;
	background-color: #D19537;
	text-align: left;
}


.submenu_4 a
{
	display: block;
	color: #FFFFFF;
	width: 120px; /* This should be width of .submenu above minus right-side padding on next line */
	padding: 3px 3px 3px 5px;
	text-decoration: none;
	background-color: #819B56;
	border: thin none #FFFFFF;
}


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

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

.submenu_4box ul li {
	margin: 0;
	padding: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
}

.submenu_4box ul li a:link { }
.submenu_4box ul li a:visited { }
.submenu_4box ul li a:hover
{
	color: #000000;
	background-color: #D19537;
	text-align: left;
}

