/* CSS Document */

#navigation {
  margin: 0px;
  padding: 0px 20px 0px 20px;
  background-color: #transparent;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: top;
  text-align: left;
}

#navigation ul {
  list-style-type: none;
  background-color: transparent;
  margin: 0px;
  padding: 0px;
}

#navigation ul li {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  color: #999900;
  font-weight: bold;
  /* I removed the height attribute rule, which fixed the sublist overlap. */
}

#navigation ul li a {
  line-height: 18px; /* this rule replace the height attribute */
  font-size: 16px;
  color: #999900;
  font-weight: bold;
}

#navigation ul li a:link {
  color: #999900;
  text-decoration: none;
}

#navigation ul li a:visited {
  color: #999900;
  text-decoration: none;
}

#navigation ul li a:hover {
  color: #999900;
  text-decoration: underline;
}

#navigation ul li a:active {
  color: #999900;
  text-decoration: none;
}

#navigation ul ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  color: #0066CC;
}

#navigation ul ul li {
  font-size: 11px;
  font-weight: bold;
  padding: 0px;
  border-top: 1px dotted #666666;
  color: #0066CC;
}

#navigation ul ul li a {
  font-size: 11px;
  font-weight: bold;
}

#navigation ul ul li a:link {
	color: #0066CC;
	text-decoration: none;
}

#navigation ul ul li a:visited {
  color: #0066CC;
  text-decoration: none;
}

#navigation ul ul li a:hover {
  color: #0066CC;
  text-decoration: underline;
}

#navigation ul ul li a:active {
  color: #0066CC;
  text-decoration: none;
}

#navigation ul ul ul {
  background-color: transparent;
  margin-left: 20px;
  padding-bottom: 5px;
}

#navigation ul ul ul li {
	margin: none;
	padding: none;
	padding-left: 10px;
	font-size: 10px;
	font-weight: bold;
	color: #666666;
	border: none;
	background-image: url(images/bullet-nav.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

/*#navigation ul ul ul li {
	background-image: url(images/bullet-nav.gif);
	margin: none;
	padding: none;
	font-size: 10px;
	font-weight: bold;
	color: #666666;
	border: none;
	background-repeat: no-repeat;
	background-position: left bottom;
}

#navigation ul ul ul li:before {
	content: url(images/bullet-nav.gif);
}*/

#navigation ul ul ul li a {
  line-height: 12px;
  font-weight: normal;
  margin-left: 10px;
}

#navigation ul ul ul li a:link {
	color: #666666;
	text-decoration: none;
}

#navigation ul ul ul li a:visited {
  color: #666666;
  text-decoration: none;
}

#navigation ul ul ul li a:hover {
  color: #666666;
  text-decoration: underline;
}

#navigation ul ul ul li a:active {
  color: #666666;
  text-decoration: none;
}
