


.sf-menu, .sf-menu * {
margin: 0;
	padding: 0;

	list-style: none;
}
.sf-menu{
	margin-bottom: 0px;
    margin-right:95px ;
}
.sf-menu li {
	position: relative;
		padding-top: 5px;
		padding-bottom: 4px;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	right: 0;
	z-index: 99;
}
.sf-menu > li {
	float: right;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu a {
	display: block;
	position: relative;
	color:#2e2e2e;
}
.sf-menu ul ul {
	top: 0;
	right: 100%;
}


/*** DEMO SKIN ***/
.sf-menu {
	float: right;

    background: transparent;

}
.sf-menu ul {
	box-shadow: 2px 2px 6px rgba(0,0,0,.2);
	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 {
color: #2e2e2e;
	padding: 5px 15px;
	text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    min-width: 100px;
    text-align: right;

}

.sf-menu > li:first-child > a {
    border-right: none;
	 color: #2e2e2e;
}

.sf-menu > li > ul > a {
    border-right: none;
	 color: black;
}

.sf-menu a {
    color: #2e2e2e;
    padding-top: 10px;
    padding-bottom: 10px;
}
.sf-menu li {
	background: transparent;
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	-webkit-transition: all .2s;
	transition: all .2s;
}
.sf-menu ul li {
	background: #b8b8b7;
}
.sf-menu ul ul li {
    background: #b8b8b7;
}

.sf-menu li:hover,
.sf-menu li.sfHover {
    background: #C5C5C5;
    /* only transition out, not in */
    -webkit-transition: none;
    transition: none;

}

.sf-menu > li:hover {
    background: #E2E2E2;
}

.sf-menu > li:hover > a {
    color: Black;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-left: 2.5em;
}
/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 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: White;
}
.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 left-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	margin-top: -5px;
	margin-left: -3px;
	border-color: transparent;
	border-right-color: White;
}

.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-right-color: white;
}
