/*** ESSENTIAL STYLES ***/
/*** DEMO SKIN ***/
.sf-menu {
	float: left;
	/* margin-bottom: 1em; --- GKH remove Ugly bottom border */
}
.sf-menu li {
	background: linear-gradient(#00BBFF, #0000FF) repeat scroll 0 0 rgba(0, 0, 0, 0);
	/*
	background: #0066cc;	/* GKH Proper blue */
	*/
	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 li {
	background: #0066cc;	/* GKH second level menu background */
}
.sf-menu ul ul li {
	background: #0066cc;	/* GKH third level menu background */
}
.sf-menu li:hover,
.sf-menu li.sfHover {
	background: #169010;	/* GKH Hover color */
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}
