/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-menu li {
	position: relative;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}
.sf-menu > li {
	float: left;
}
.sf-menu li:hover > ul, .sf-menu li.sfHover > ul {
	display: block;
}
.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
	left: 100%;
}
/*** DEMO SKIN ***/
.sf-menu {
	float: left;
	margin-bottom:0px;
	background-color: #ffffff;
}
.sf-menu ul {
	-webkit-box-shadow:  2px 2px 6px 0px rgba(0, 0, 0, 0.7);
	box-shadow:  2px 2px 6px 0px rgba(0, 0, 0, 0.7);
	min-width:16em; /* allow long menu items to determine submenu width */
 *width: 16em; /* no auto sub width for IE7, see white-space comment below */
}
.sf-menu a {
	padding: 10px 10px;
	text-decoration: none;
	zoom: 1; /* IE7 */
}
.sf-menu ul a {
	font-weight:normal;
}
.sf-menu a {
	color:#ffffff;
	font-weight:bold;
}
.sf-menu a:hover, .sf-menu a:focus, .sf-menu a.selected {
	color:#e42227;
	background-color: #ffffff;
}
.sf-menu li {
	/*background: #ffffff;*//* main menu bg */
	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: #000000;/* first sub menu bg */
}
.sf-menu ul ul li {
	background: #000000;/* second sub menu bg */
}
.sf-menu li:hover, .sf-menu li.sfHover {
	background: #0f0f0f;
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}
/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-right: 2.5em;
 *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: 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: #a9a9a9; /* edit this to suit design (no rgba in IE8) */
	border-top-color: rgba(169, 169, 169, .8);
}
.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: #a9a9a9; /* 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: #a9a9a9; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(169, 169, 169, .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: #a9a9a9;
}
/* rounding coners of sub menu */
.sf-menu ul li:last-of-type, .sf-menu ul {
	-webkit-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
}
.sf-menu ul ul, .sf-menu ul ul li:first-of-type {
	-webkit-border-radius:5px 5px 0px 0px;
	border-radius:5px 5px 0px 0px;
}
@media (max-width: 1000px) {
/*.sf-menu ul ul {
		top: 100%;
		left: 0%;
	}*/
}
/*** VERTICAL MENU STYLE ***/
.sf-menu.alt {
	float: left;
	margin-bottom:0px;
}
.sf-menu.alt ul {
	-webkit-box-shadow:  2px 2px 6px 0px rgba(0, 0, 0, 0.7);
	box-shadow:  0px 0px 0px 0px rgba(0, 0, 0, 0.7);
	min-width:16em; /* allow long menu items to determine submenu width */
 *width: 16em; /* no auto sub width for IE7, see white-space comment below */
}
.sf-menu.alt a {
	padding: 10px 10px;
	text-decoration: none;
	zoom: 1; /* IE7 */
}
.sf-menu.alt ul a {
	font-weight:normal;
	border:none;
}
.sf-menu.alt a {
	color:#000000;
	font-weight:bold;
}
.sf-menu.alt a:hover, .sf-menu.alt a:focus, .sf-menu.alt a.selected {
	color:#e42227;
	font-weight: bold;
	margin-left: 10px;
}
.sf-menu.alt a.inactive {
	color:#000000;
	background-color: #e42227;
	font-weight:bold;
	font-size:12px;
	padding-top: 12px !important;
}
.sf-menu.alt a.inactive:hover {
	background-color:#e42227;
}
.sf-menu.alt li {
	background: none;/* main menu bg */
	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;
	font-size:11px;
	margin:2px 0px;
	border-bottom: 1px dashed #000000;
}
.sf-menu.alt ul li a {
	padding:5px !important;
	color:#ffffff;
}
.sf-menu.alt ul li a:hover {
	color:#000000;
	background-color:#ffffff;
}
.sf-menu.alt ul li {
	background: #e42227;/* first sub menu bg */
}
.sf-menu.alt ul ul li {
	background: #e42227;/* second sub menu bg */
}
.sf-menu.alt li:hover, .sf-menu.alt li.sfHover {
	background: #fff;
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}
/*** arrows (for all except IE7) **/
.sf-menu.alt .sf-arrows .sf-with-ul {
	padding-right: 2.5em;
 *padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */
.sf-menu.alt .sf-arrows .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: #a9a9a9; /* edit this to suit design (no rgba in IE8) */
	border-top-color: rgba(169, 169, 169, .5);
}
.sf-menu.alt .sf-arrows > li > .sf-with-ul:focus:after, .sf-menu.alt .sf-arrows > li:hover > .sf-with-ul:after, .sf-menu.alt .sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: #a9a9a9; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
.sf-menu.alt .sf-arrows ul .sf-with-ul:after {
	margin-top: -5px;
	margin-right: -3px;
	border-color: transparent;
	border-left-color: #000000; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(0, 0, 0, .5);
}
.sf-menu.alt .sf-arrows ul li > .sf-with-ul:focus:after, .sf-menu.alt .sf-arrows ul li:hover > .sf-with-ul:after, .sf-menu.alt .sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: #a9a9a9;
}
/* rounding coners of sub menu */
.sf-menu.alt ul li:last-of-type, .sf-menu.alt ul {
	-webkit-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 0px 0px;
}
.sf-menu.alt ul ul, .sf-menu.alt ul ul li:first-of-type {
	-webkit-border-radius:5px 5px 0px 0px;
	border-radius:0px 0px 0px 0px;
}
@media (max-width: 1000px) {
/*.sf-menu ul ul {
		top: 100%;
		left: 0%;
	}*/
}
@media screen and (max-width: 767px) {
	.sf-vertical {
		display: none;
	}	
}