/* -------------------------------
   Container
   ------------------------------- */

#quickbar-container {
  z-index:100;
  position:absolute;
  top:0;
  left:0;
  height:30px;
  width:100%;
}

/* -------------------------------
   =PRIMARY NAVIGATION
   ------------------------------- */

#quickbar-nav {
  position: relative;
  top:0;
  left:0;
  font-family: Tahoma, Arial, sans-serif;
  z-index: 1;
  padding:   5px 0 8px 0;
  width:100%;
}
  * html #quickbar-nav {
    height: 1%;
  }

#quickbar-right {
	cursor:pointer;
}

#quickbar-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#quickbar-nav ul li {
  margin: 0;
  padding: 0;
  position: relative;
  display: inline;
  z-index: 2;
}

#quickbar-nav ul li a {
  padding: 2px .5em;
  text-decoration: none;
  font-size: 12px;
  color: #333333;
}

#quickbar-nav  ul li a:hover {
  background-color: #333333;  
  color:#eeeeee;
}
#quickbar-nav ul li a.active,
#quickbar-nav ul li a.active:hover {
  background-color: #ffffff;
  color: #333333;
}

/* SECOND LEVEL NAV ITEM */

#quickbar-nav ul ul {
  position: absolute; 
  display: none;
  left: 0;
  top: 100%;
  margin-top:5px;
  border: 1px solid #cccccc;
  background-color: #eeeeee;
  z-index: 3;
}

  /* Hides from IE-mac \*/
  * html #quickbar-nav ul,
  * html #quickbar-nav ul ul li {
    height: 1%;
    }
  /* End hide from IE-mac */  
  
#quickbar-nav ul ul li {
  position: relative;
  clear:left;
  float: left;
  z-index: 4;
}

#quickbar-nav ul ul li a {
  display: block;
  width: 12em;
  overflow: hidden;
/*  padding: .5em 1em;*/
}
#quickbar-nav ul ul li a.active,
#quickbar-nav ul ul li a.active:hover {
  background-color: #333333;
  color: #ffffff;
}
#quickbar-nav  ul ul li hr 
{
	display:block;
	padding-left: 15px;
	width: 13em;
}

/* THIRD LEVEL NAV  */
#quickbar-nav ul ul li ul {
  top: 0;
  left: 9em;
  z-index: 5;
}
/*ul.top ul ul li a {
    z-index: 6;
}*/

/* subnav arrow images */
a.has-subnav {
  /*background-image: url(/images/subarrows.gif);*/
  background-repeat: no-repeat; 
  background-position: 98% 0;
}
a.has-subnav:hover {
  /*background-image: url(/images/subarrows.gif);*/
  background-position: 98% -60px;
}
#quickbar-nav ul ul a.active-has-subnav,
#quickbar-nav ul ul a.active-has-subnav:hover {
  color: #000;
  /*background: #dbe4ef url(/images/subarrows.gif) no-repeat 98% -120px;*/
}


/* -------------------------------
   =IFRAME HACK for hiding select box in IE
   ------------------------------- */
#quickbar-nav iframe {
  display:none;/* hide from IE5*/
  display/**/:block;/* show for other than IE5*/
  position:absolute;
  top:0;
  left:0;
  margin-left: -1px;
  width: 18.3em;  
  z-index:-1;
  filter:mask();
}

#quickbar-nav ul ul ul iframe {
  width: 14.2em;
}   

