
/*** ESSENTIAL STYLES ***/
.menu, .menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.menu li {
	position: relative;
}
.menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}
.menu > li {
	float: left;
}
.menu li:hover > ul,
.menu li.sfHover > ul {
	display: block;
}

.menu a {
	display: block;
	position: relative;
}
.menu ul ul {
	top: 0;
	left: 100%; 
}


/*** DEMO SKIN ***/
.menu { float: left;
	margin-bottom: 1em;
}
.menu ul { 
	box-shadow: 2px 2px 6px rgba(0,0,0,.2);
	min-width: 12em; /* allow long menu items to determine submenu width */
	*width: 12em; /* no auto sub width for IE7, see white-space comment below */       
}
.menu a {
	color: #fff !important; font-weight: bold; border-left: 1px solid #998797;   
	       height: 30px; line-height: 30px;
	padding: 0 1em;
	text-decoration:none;
	zoom: 1; /* IE7 */
}
.menu a {
	color: #13a;
}
.menu li {
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	-webkit-transition: background .2s;
	transition: background .2s;
} 
.menu ul li {
	background: #5c8bc0; 
}
.menu ul ul li {
	background: #5c8bc0;
}
.menu li:hover,
.menu li.sfHover {
	background: #3A4B52; color: #fff;
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;   
}

/*** arrows **/
.menu a.sf-with-ul {
	padding-right: 2.25em;
	min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */    
}
.sf-sub-indicator {
	position: absolute;
	display: block;
	right: .75em;
	top: .9em;
	width: 10px;
	height: 10px;
	text-indent: -999em;
	overflow: hidden;
	background: url(../images/arrows-menu.png) no-repeat 0 -100px;
}

li:hover > a .sf-sub-indicator,
li.sfHover > a .sf-sub-indicator {
	background-position: -10px -100px;
}

/* point right for anchors in subs */
.menu ul .sf-sub-indicator {
	background-position: 0 0;
}
.menu ul li:hover > a .sf-sub-indicator,
.menu ul li.sfHover > a .sf-sub-indicator {
	background-position: -10px 0;
}
