
/*** ESSENTIAL STYLES ***/
.hh-menu, .hh-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.hh-menu {
	line-height:	1.5;
}
.hh-menu ul {
	position:		absolute;
	top:			-999em;
	width:			20em; /* left offset of submenus need to match (see below) */
}
.hh-menu ul li {
	width:			100%;
}
.hh-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.hh-menu li {
	float:			left;
	position:		relative;
}
.hh-menu a {
	display:		block;
	position:		relative;
}
.hh-menu li:hover ul,
.hh-menu li.hhHover ul {
	left:			0;
	top:			2.1em; /* match top ul list item height */
	z-index:		99;
}
ul.hh-menu li:hover li ul,
ul.hh-menu li.hhHover li ul {
	top:			-999em;
}
ul.hh-menu li li:hover ul,
ul.hh-menu li li.hhHover ul {
	left:			20em; /* match ul width */
	top:			0;
}
ul.hh-menu li li:hover li ul,
ul.hh-menu li li.hhHover li ul {
	top:			-999em;
}
ul.hh-menu li li li:hover ul,
ul.hh-menu li li li.hhHover ul {
	left:			20em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.hh-menu {
  margin: 0 auto;
  z-index: 99;
  float: left;
	background: #23458D;
}

.hh-menu ul {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #23458D;
}

.hh-menu a {
	background: #23458D;
  display: block;
  color: white !important;
  font-size: 14px;
  font-weight:  normal;
  text-decoration: none;
  padding: 3px 10px 3px 10px;
}

.hh-menu li {
	 padding-left:  2px !important;
	 background: #23458D;
	 border: 1px solid #036;
   border-top: 1px solid #69C;
   border-left: 1px solid #69C;
}

.hh-menu li:hover, .hh-menu li.hhHover,
.hh-menu a:focus, .hh-menu a:hover, .hh-menu a:active {
	color:  white !important;
	outline:		0;
	background: #3566cd;
}

.hh-menu li ul {
	width:  20em !important;
}

/*** arrows **/
.hh-menu a.hh-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.hh-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .hh-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .hh-sub-indicator,
a:hover > .hh-sub-indicator,
a:active > .hh-sub-indicator,
li:hover > a > .hh-sub-indicator,
li.hhHover > a > .hh-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.hh-menu ul .hh-sub-indicator { background-position:  -10px 0; }
.hh-menu ul a > .hh-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.hh-menu ul a:focus > .hh-sub-indicator,
.hh-menu ul a:hover > .hh-sub-indicator,
.hh-menu ul a:active > .hh-sub-indicator,
.hh-menu ul li:hover > a > .hh-sub-indicator,
.hh-menu ul li.hhHover > a > .hh-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}
