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

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


/*** DEMO SKIN ***/
.navlist {
}
.navlist ul {
	min-width: 12em; /* allow long menu items to determine submenu width */
	*width: 12em; /* no auto sub width for IE7, see white-space comment below */
}
.navlist a {
	zoom: 1; /* IE7 */
}
.navlist a {
}
.navlist li {
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
}
.navlist ul li {
}
.navlist ul ul li {
}
.navlist li:hover,
.navlist li.sfHover {
}
.navlist li li{
	float:none;
}
.navlist li li a,
.navlist li:hover li a,
.navlist li:active li a{
	float:none;
	width:auto;
	background-color:#082a01;
	background-image:url(../images/tab-bg-over.png);
	font-size:16px;
}
.navlist ul a:hover, .navlist li li:hover a,
.navlist ul a:active, .navlist li li:active a{
	background-color:#2e680d;
	background-image:url(../images/tab-bg.png);
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-right:33px;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	top:19px;
	right:7px;
	margin-top: -3px;
	height:10px;
	width:10px;
	background:url(../images/sprites.png) -198px -100px no-repeat;
	/* order of following 3 rules important for fallbacks to work */
/*	border: 5px solid transparent;
	border-top-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
/*	border-top-color: rgba(255,255,255,.5);*/
}
.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: white; /* 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: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(255,255,255,.5);
}
.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: white;
}
