		
		
/*** ESSENTIAL STYLES ***/
nav .sf-menu, nav .sf-menu * {

	list-style: none;
}
nav .sf-menu li {
	position: relative;
}
nav .sf-menu ul {
	position: absolute;
	display: none;
	top: 48px;
	left: 0;
	text-align: center;
}

.open nav .sf-menu ul {
	top: 75px;
}

nav .sf-menu ul ul,
.open nav .sf-menu ul ul {
	top: 0px;
	left: 103%;
	right: auto;
}

nav .sf-menu ul.open-right ul,
.open nav .sf-menu ul.open-right ul {
	right: 103%;
	left: auto; 
}





/*** DEMO SKIN ***/
nav .sf-menu {
	display: inline-block;
}
nav .sf-menu ul {
	width: 200px;
	box-shadow: 2px 2px 6px rgba(0,0,0,.2);
}
nav .sf-menu a {

	text-decoration: none;
	zoom: 1; /* IE7 */
}


nav .sf-menu a {
	
}
nav .sf-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;
}
nav .sf-menu ul li {
	background: #fff;
}



nav .sf-menu ul li a {


}

nav .sf-menu li:hover,
nav .sf-menu li.sfHover {
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {

}
/* styling for both css and generated arrows */
.sf-arrows ul .sf-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	margin-top: -3px;
	height: 0;
	width: 0;
	/* order of following 3 rules important for fallbacks to work */
	border: 5px solid transparent;
	border-top-color: #444; /* edit this to suit design (no rgba in IE8) */
}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: #444; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	margin-top: -5px;
	margin-right: -3px;
	border-color: transparent;
	border-left-color: #444; /* edit this to suit design (no rgba in IE8) */
}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: #fff;
}
		