/*** adding the class sf-navbar in addition to sf-menu creates an all-horizontal nav-bar menu ***/
.sf-navbar {
	ba/ckground: #BDD2FF;
	position: relative;
	margin-bottom: 1em;
	}
/* provide background colour for submenu strip */
/* you should just set the menu's container bg colour rather than use pseudo-elements */
.sf-navbar:before {
	content: '';
	position: absolute;
	left: 0;
	z-index: -1;
	ba/ckground-color: #BDD2FF;
	height: 200%;
	width: 100%;
}
.sf-navbar ul > li > a {
	color: #00ABBE;
}
.sf-navbar ul {
	box-shadow: none;
}
.sf-navbar li {
	back/ground: #AABDE6;
	position: static;
}
.sf-navbar > li > a,
.sf-navbar > li > ul > li > a {
	bo/rder: none;
	border-bottom: 1px solid #00ABBE;
	border-top: 1px solid #00ABBE;
	border-right: 1px solid #00ABBE;
}
.sf-navbar > li > a.first,
.sf-navbar > li > ul > li > a.first {
	border-left: 1px solid #00ABBE;
}
.sf-navbar > li > ul {
	min-width: 36em; /* set this to whatever suits your design */
}
.sf-navbar ul li {
	ba/ckground: #BDD2FF;
	position: relative;
}
.sf-navbar ul ul {
	left: -2.5em;
	top: 100%;
}
.sf-navbar ul ul li {
	width: 100%;
}
.sf-navbar > li > ul > li {
	float: left;
}
.sf-navbar li.current {
	background: #BDD2FF;
}
.sf-navbar li:hover,
.sf-navbar li.sfHover,
.sf-navbar ul li.current {
	background: #BDD2FF;
}
.sf-navbar ul li:hover,
.sf-navbar ul li.sfHover,
.sf-navbar ul ul li {
	background: #D1DFFF;
}
.sf-navbar ul ul li:hover,
.sf-navbar ul ul li.sfHover,
.sf-navbar ul ul li.current {
	background: #E6EEFF;
}
.sf-navbar ul li.current > a {
	font-weight: bold;
}

/*** point all arrows down ***/
.sf-arrows.sf-navbar ul .sf-with-ul:after {
	margin-top: -3px;
	margin-right: 0;
	border-color: transparent;
	border-top-color: #00ABBE; /* edit this to suit design (no rgba in IE8) */
	bor/der-top-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-top-c/olor: rgba(255,255,255,.5);
}

.sf-arrows.sf-navbar ul > li > .sf-with-ul:focus:after,
.sf-arrows.sf-navbar ul > li:hover > .sf-with-ul:after,
.sf-arrows.sf-navbar ul > .sfHover > .sf-with-ul:after {
	border-color: transparent;
	border-top-color: white;
}

/************************************** checkout ****************************************************/
/*** ESSENTIAL STYLES ***/
.sf-cobar, .sf-cobar * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-cobar li {
	position: relative;
}
.sf-cobar ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
	pa/dding-left: 2.5em;
	padding-left: .2em;
}
.sf-cobar > li {
	float: left;
}
.sf-cobar li:hover > ul,
.sf-cobar li.sfHover > ul {
	display: block;
}

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


/*** DEMO SKIN ***/
.sf-cobar {
	float: left;
	margin-bottom: 1em;
}
.sf-cobar 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-cobar a {
	border-left: 1px solid #fff;
	border-top: 1px solid #dFeEFF; /* fallback colour must use full shorthand */
	border-top: 1px solid rgba(255,255,255,.5);
	pad/ding: .75em 1em;
	padding: .5em .75em;
	text-decoration: none;
	zoom: 1; /* IE7 */
}
.sf-cobar a {
	color: #13a;
}
.sf-cobar li {
	background: #BDD2FF;
	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-cobar ul li {
	back/ground: #AABDE6;
}
.sf-cobar ul ul li {
	background: #9AAEDB;
}
.sf-cobar li:hover,
.sf-cobar li.sfHover {
	background: #CFDEFF;
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}

