body {behavior: url(includes/csshover.htc);} /* WinIE behavior call */

/* Flyout Menu Container*/
div#nav-cat {
  background-color: #C9C194; /*box background*/
  text-align: center;
/*  vertical-align: middle;*/
  width: 91%;
  margin-left: 6px;  /*space between buttons and left side of the box*/
} 

div#nav-cat ul {
  margin: 0;
  padding: 0;
  width: 100%; /*button width - don't forget to adjust submenu position in line 88!!!*/ 
  background-color: #C9C194; 
}

div#nav-cat ul.level2 {
  z-index: 4;
  width: 96%;
  background-color: #C9C194; /*don't change that to transparent*/
}

div#nav-cat ul.level3 {
  z-index: 3;
  background-color: #C9C194; /*don't change that to transparent*/
}

div#nav-cat ul.level4 {
  z-index: 2;
  background-color: #C9C194; /*don't change that to transparent*/
}

div#nav-cat ul.level5 {
  z-index: 1;
  background-color: #C9C194; /*don't change that to transparent*/
}

/*categories button*/
div#nav-cat li {
  position: relative;
  list-style: none;
  margin-top: 2px; /*vertical space between buttons*/
  background-color: #C9C194; /*categories "no submenu" button color*/ 
  border-bottom: 1px solid #000000;
  border-left: 1px solid #666666;
  border-top: 1px solid #666666;
  border-right: 1px solid #000000;
  clear: both;
} 

div#nav-cat li li {
  color: #ffffff;
  background-color: #C9C194;
/*padding: 2px;*/
  display: block;
  border-bottom: 1px solid #428dff;
  font: 12px Arial, sans-serif;
  font-weight: bold;
  text-align: center;
} 

/*categories button mouseover*/
div#nav-cat li:hover {
  background-color: #FFFFCC; /*categories button color mouseover*/
  border-bottom: 1px solid #666666;
  border-left: 1px solid #000000;
  border-top: 1px solid #000000;
  border-right: 1px solid #666666;
} 

/*categories with submenu*/
div#nav-cat li.submenu {
  background: url(../images/submenu.gif) 99% 50% no-repeat; 
  background-color: #C9C194; /*categories "with submenu" button color*/
}

div#nav-cat li.submenu:hover {
  background-color: #FFFFCC; /*color "with submenu" button mouseover*/
}

/*font color*/
div#nav-cat li a {
  display: block; 
/*  height: 25px; */
  padding:  0.3em 0 0.35em 0.25em;
  text-decoration: none; 
  width: 99%; 
  color: #666666;
  font-weight: bold;
} 

/*font color mouse over*/
div#nav-cat li a:hover {
  display: block; 
  text-decoration: none; 
  width: 99%; 
  color: #000000;
  font-weight: bold;
}
 
div#nav-cat>ul a {width: auto;}

/*submenu position*/
div#nav-cat ul ul {
  position: absolute; 
  top: -25px; 
  left: 99%; /*change this to remove space between main buttons and submenu buttons*/
  display: none;
} 

div#nav-cat ul.level1 li.submenu:hover ul.level2, 
div#nav-cat ul.level2 li.submenu:hover ul.level3,
div#nav-cat ul.level3 li.submenu:hover ul.level4,
div#nav-cat ul.level4 li.submenu:hover ul.level5 {display:block;}
