/*** 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: 999;
}
.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%;
}

/*** TOP MENU ***/
#top-menu .sf-menu {float:left}
#top-menu .sf-menu ul {
	min-width: 13em; /* allow long menu items to determine submenu width */
	*width: 13em; /* no auto sub width for IE7, see white-space comment below */
	margin-top:-1px;
	background-color: #FFF;	
	border:solid 1px #ddd;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
#top-menu .sf-menu li {
	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;
}
#top-menu .sf-menu li li {border-bottom:solid 1px #ddd;}
#top-menu .sf-menu li li:last-child {border:0 none;}
#top-menu .sf-menu li a {
	color:#666;
	padding:0.3em 1em;
	zoom:1;
}
#top-menu .sf-menu li a:hover {color:#C30;}
#top-menu .sf-menu li li a {}
#top-menu .sf-menu li li a:hover {}
#top-menu .sf-arrows .sf-with-ul {
	padding-right: 2.2em;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */
#top-menu .sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	margin-top: -1px;
	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(0,0,0,.5);
}
#top-menu .sf-arrows > li > .sf-with-ul:focus:after,
#top-menu .sf-arrows > li:hover > .sf-with-ul:after,
#top-menu .sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: #C30; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
#top-menu .sf-arrows ul .sf-with-ul:after {
	margin-top: -4px;
	margin-right: -3px;
	border-color: transparent;
	border-left-color: #000; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(0,0,0,.6);
}
#top-menu .sf-arrows ul li > .sf-with-ul:focus:after,
#top-menu .sf-arrows ul li:hover > .sf-with-ul:after,
#top-menu .sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: #C30;
}



/*** PRIMARY MENU ***/
#primary-menu .sf-menu {
	float: left;
}
#primary-menu .sf-menu ul {
	min-width: 13em; /* allow long menu items to determine submenu width */
	*width: 13em; /* no auto sub width for IE7, see white-space comment below */
	margin-top:-1px;
	background-color: #FFF;	
	border:solid 1px #ddd;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
#primary-menu .sf-menu li a {
	padding: 0.65em 1em;
	zoom: 1; /* IE7 */
	color: #fff !important;
	display:block;
	text-transform: uppercase;
}
#primary-menu .sf-menu li a:hover {
	color: #fff !important;
	background-color: #B32D00;
}
#primary-menu .sf-menu li:first-child a:hover {
	-webkit-border-radius: 10px 0 0 0;
	border-radius: 10px 0 0 0;	
}
#primary-menu .sf-menu li li a {
	padding: 0.5em 1em;
	zoom: 1; /* IE7 */
	color: #000 !important;
	text-shadow:0px 1px 1px #fff !important;
}
#primary-menu .sf-menu li li a:hover {
	color: #c30 !important;
	text-shadow:0px 1px 1px #fff !important;
	background:none;
}
#primary-menu .sf-menu li {
	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;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #9F2800;
}
#primary-menu .sf-menu li li {
	font-size:1em;
	text-shadow:0px 1px 1px #fff;
	border-bottom:solid 1px #ddd;
	border-right:0 none;
}
#primary-menu .sf-menu li li:last-child {
	border: 0 none;
}
#primary-menu .sf-menu li:hover,
#primary-menu .sf-menu li.sfHover {}

#primary-menu .sf-menu span.menu-description {
	font-size: 0.9em;
	color: #f7f7f7;
	line-height: 1em;
	display: block;
	text-shadow:0px 1px 0px #111;
	text-transform: lowercase;
}
#primary-menu .sf-menu li.no_desc {line-height:2.55em;}
#primary-menu .sf-menu li li.no_desc {line-height:1em;}

/*** arrows (for all except IE7) **/
#primary-menu .sf-arrows .sf-with-ul {
	padding-right: 2.2em;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */
#primary-menu .sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	margin-top: -1px;
	height: 0;
	width: 0;
	/* order of following 3 rules important for fallbacks to work */
	border: 5px solid transparent;
	border-top-color: #eeeeee; /* edit this to suit design (no rgba in IE8) */
	border-top-color: rgba(238,238,238,.5);
}
#primary-menu .sf-arrows > li > .sf-with-ul:focus:after,
#primary-menu .sf-arrows > li:hover > .sf-with-ul:after,
#primary-menu .sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: #c30; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
#primary-menu .sf-arrows ul .sf-with-ul:after {
	margin-top: -4px;
	margin-right: -3px;
	border-color: transparent;
	border-left-color: #ddd; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(221,221,221,.8);
}
#primary-menu .sf-arrows ul li > .sf-with-ul:focus:after,
#primary-menu .sf-arrows ul li:hover > .sf-with-ul:after,
#primary-menu .sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: #c30;
}