
/***************************************************************
horizontal menu. dynamic background color.
\***************************************************************/

/* Some stylesheet reset */
#navigation ul, 
#navigation li, 
#navigation span, 
#navigation a {
  margin: 0;
  padding: 0;
  position: relative;
  list-style-type:none;
  list-style: none;
}
  
/* defines background graidient */  
#navigation {
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  background: #;
  background: -moz-linear-gradient(top, # 0%, # 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #), color-stop(100%, #));
  background: -webkit-linear-gradient(top, # 0%, # 100%);
  background: -o-linear-gradient(top, # 0%, # 100%);
  background: -ms-linear-gradient(top, # 0%, # 100%);
  background: linear-gradient(to bottom, # 0%, # 100%);
  filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#', EndColorStr='#', GradientType=0);
  border-bottom: 2px solid #;
}
  
#navigation:after,
#navigation ul:after {
  content: '';
  display: block;
  clear: both;
}
  
/* General link styling */  
#navigation a {
  color: #;
  display: inline-block;
  font-family: Helvetica, Arial, Verdana, sans-serif;
  font-size: 12px;
  line-height: 49px;
  padding: 0 20px;
  text-decoration: none;
}
  
#navigation ul {
  list-style: none;
}
  
#navigation > ul {
  float: left;
}
  
#navigation > ul > li {
  float: left;
}

#navigation > ul > li:hover:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #;
  margin-left: -10px;
}

#navigation > ul > li:first-child > a {
  border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
}

#navigation > ul > li:last-child > a {
  border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
}

#navigation > ul > li.active > a {
  box-shadow: inset 0 0 3px #000000;
  -moz-box-shadow: inset 0 0 3px #000000;
  -webkit-box-shadow: inset 0 0 3px #000000;
  /* background on link style */
  background: #070707;
  background: -moz-linear-gradient(top, #26262c 0%, #070707 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #26262c), color-stop(100%, #070707));
  background: -webkit-linear-gradient(top, #26262c 0%, #070707 100%);
  background: -o-linear-gradient(top, #26262c 0%, #070707 100%);
  background: -ms-linear-gradient(top, #26262c 0%, #070707 100%);
  background: linear-gradient(to bottom, #26262c 0%, #070707 100%);
  filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#26262c', EndColorStr='#070707', GradientType=0);
}

/* main menu hover */
#navigation > ul > li:hover > a {
  color: #;
}


#navigation ul li:hover > ul {
  display: block;
}
  
/* Second level styling */ 
#navigation ul ul {
  display: none;
  position: absolute;
  width: 200px;
  top: 100%;
  left: 0;
z-index: 1000;
}

#navigation ul ul li {
  *margin-bottom: -1px;
}


/*drop down menu background*/
#navigation ul ul li a {
  background: #;
  border-bottom: 1px dotted #999;
  filter: none;
  font-size: 11px;
  display: block;
  line-height: 120%;
  padding: 10px;
}

/*2nd level hover color*/
#navigation ul li ul li:hover a {
  color: #;
}

#navigation ul ul li:hover > ul {
  display: block; 
}

/*hide third level items*/
#navigation ul  ul  ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0; 
}

/*2nd drop down menu background*/
#navigation ul  ul  ul li a {
  background: #;
  border-bottom: 1px dotted #999;
}

/*third drop down menu background*/
#navigation ul ul  ul li a:hover {
  color: #;
}
