/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sf-menu {
	float: left;
	margin-bottom: 1em;
}

.sf-menu li {
	position: relative;
	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;
}

.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
	min-width: 12em; /* allow long menu items to determine submenu width */
	*width: 12em; /* no auto sub width for IE7, see white-space comment below */
}
.sf-menu > li {
	float: left;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu a{
	color: #fff;
	font-weight:400;
	font-family:'Arial';
	font-size:14px;
	text-decoration: none;
	padding: 0 21px 0 0;
	background:url(../images/nav_line.png) right no-repeat;
	letter-spacing: 1px;
}

.sf-menu > li{
	display: block;
	position: relative;
	padding: 17px 0 15px 18px;
	zoom: 1; /* IE7 */
}

.sf-menu a:hover{
	color:#b2df46;
}

.sf-menu ul ul {
	top: 0;
	left: 100%;
}

.sf-menu ul li {
	padding:10px;
	background: #2b99da;
}

.sf-menu ul li a{
	font-size:14px;
	background: none;
	padding:0;
}

.sf-menu ul ul li {
	background: #2b99da;
}

.sf-menu ul ul li a{
	font-size:14px;
	background:none;
	padding:0;
}

.sf-menu ul ul ul  {
	height:38px;
}

.sf-sub-indicator{
	display:none;
}
