/*** ESSENTIAL STYLES ***/
.sf-tabs, .sf-tabs * {
	margin: 0;
	padding: 0;
	list-style: none;
        font-family: 'Arial';
        font-weight: normal;
        
}
.sf-tabs li {
	position: relative;
}

.sf-tabs ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}
.sf-tabs > li {
	float: left;
}
.sf-tabs li:hover > ul,
.sf-tabs li.sfHover > ul {
	display: block;
}

.sf-tabs a {
	display: block;
	position: relative;
}
.sf-tabs ul ul {
	top: 0;
	left: 100%;
}


/*** DEMO SKIN ***/
.sf-tabs {
	float: left;
	margin-bottom: 2px;
;
}
.sf-tabs 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-tabs a {
	border-right: 1px solid #b0bcc4;
	border-top: 1px solid #b0bcc4; /* fallback colour must use full shorthand */
	padding: 0px 24px;
	text-decoration: none;
	zoom: 1; /* IE7 */
}
.sf-tabs .last_item a {
    border-right: none;
}
.sf-tabs a {
	color: #000;
}
.sf-tabs a:hover {
	color: #FFF;
}
.sf-tabs li {
    background: #BDD2FF;
    white-space: nowrap;
    -webkit-transition: background .2s;
    font-size: 12px;
    transition: background .2s;
    background-color: #adb9c2;
    border: 1px solid #FFF;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 4px 10px;
    height: 34px;
    line-height: 25px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
        
}

.sf-tabs ul li {
    background: #edf2f4;
    width:170px;
    font-size:14px;
    line-height: 32px;
    height:32px;
}
.sf-tabs ul ul li {
    background: #9AAEDB;
}
.sf-tabs li:hover,
.sf-tabs li.sfHover {
	background: #e70007;
        color: #FFF;
	/* 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: #000; /* edit this to suit design (no rgba in IE8) */
	border-top-color: rgba(255,255,255);
}
.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 right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	margin-top: -5px;
	margin-right: -3px;
	border-color: transparent;
	border-left-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(255,255,255,.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: white;
}
