/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu *, .sf-menu-mobi, .sf-menu-mobi * {
	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: 9998;
}
.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, .sf-menu-mobi {
	float: right;
	
	text-transform:uppercase;
	font-size:14px;
}
.sf-menu ul, .sf-menu-mobi 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 */
}

.sf-menu a {
	text-decoration: none;
	zoom: 1; /* IE7 */
	font-family:LT-65;
	color: #6e6e6e;
	padding: 25px 27px 29px 24px;
    -webkit-transition: color ease 0.8s;
	-moz-transition: color ease 0.8s;
	transition: color ease 0.8s;
}
.sf-menu a:hover {
	color: #fff;
	-webkit-transition: all ease 0.8s;
	-moz-transition: all ease 0.8s;
	transition: all ease 0.8s;
}
.sf-menu > li {
	-ms-transform: skew(-30deg); /* IE 9 */
    -webkit-transform: skew(-30deg); /* Chrome, Safari, Opera */
    transform: skew(-30deg); /* Standard syntax */
}

li.mro > a, li.ac > a, li.sup > a, li.lang > a, li.mro > ul, li.ac > ul, li.sup > ul, li.lang > ul{
    -ms-transform: skew(30deg); /* IE 9 */
    -webkit-transform: skew(30deg); /* Chrome, Safari, Opera */
    transform: skew(30deg); /* Standard syntax */
}

/************NOTE: Change margin-left below if the number of menu items changes**************/

li.mro > ul {
	margin-left:61px;
}
li.ac > ul {
	margin-left:85px;
}
li.sup > ul {
	/*margin-left:50px;*/
    margin-left:61px;
}
li.lang > ul {
	margin-left:89px;
}
li.sfHover > a.sf-with-ul{
	color:#fff;	
}

.sf-menu li {
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */

	cursor:pointer;
	box-shadow: inset 0 0 0 0 #41acff;
    
	-webkit-transition: all ease 0.8s;
	-moz-transition: all ease 0.8s;
	transition: all ease 0.8s;
}
.sf-menu li:hover, .st-menu li:focus{
	box-shadow: inset 0 78px 0.00001px 0 #41acff;
}

header.large a.sf-with-ul{
	padding: 25px 27px 29px 24px;
}
header.small a.sf-with-ul{
	padding: 9px 20px 13px 20px;
}
header.large a.cust{
	padding: 32px 27px 31px 24px;
}
header.small a.cust{
	padding: 16px 20px 15px 20px;
}
header.large .sf-menu li{
	background: #fbfbfb;
}
header.small .sf-menu li{
	background: #efefef;
}

.sf-menu ul li {
	background: #efefef;
}
.sf-menu ul li a{
	padding: 14px 24px;
}
.sf-menu ul ul li {
	background: #efefef;
}



/********************* arrows (for all except IE7) ************************/
.sf-arrows .sf-with-ul {
	padding-right: 27px;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}


/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	font-family: 'Font Awesome 5 Free';
	content: "\f107";
	font-size:23px;
	margin-left:12px;
	position:relative;
	top:3px;
	/*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: #6e6e6e;
	-webkit-transition: border-top-color ease 0.8s;
	-moz-transition: border-top-color ease 0.8s;
	transition: border-top-color ease 0.8s;*/
}
.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: #fff;
}


/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	content: "\f105";
	top: 1px;
	margin-right: -3px;
	margin-left:13px;
	font-size:18px;
}
.sf-arrows ul > li > .sf-with-ul {
	padding:11px 24px 13px 22px;
}
.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;
}
@media screen and (max-width: 900px) {
	header.large a.sf-with-ul {
		padding: 3px 27px 3px 24px;
	}
}
.sf-menu a{
    transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
}