/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
}
.sf-menu {
	line-height:	1.0;
}
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			203px; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
	width:			100%;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
	position:		relative;
}
.sf-menu a {
	font-size:10px;
	text-decoration: none;
	color: #702;
	font-weight: bold;
	display:		block;
	position:		relative;
	background-image: url(/assets/images/global/window_bullet.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 15px;
	height:11;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			0; /* match top ul list item height */
	z-index:		99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			203px; /* match ul width */
	top:			0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover,
ul.sf-menu li li.sfHover {
	background-color:#000000;
}

/*** SKIN ***/
.sf-menu {
	float:	left;
	margin: 0px;
	padding: 0px;
	width: 203px;
	position: relative;
	top: 0px;
	left: 0px;
	text-align:left;
}
.sf-menu li {
	float: left;
	width: 198px;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 5px;
	padding-right: 0px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #857653;
	line-height: 1em;
	display: list-item;
	margin: 0px;
	list-style:none;
	height:13px;
}
.sf-menu li li {
	float:none;
	background-color:#702;
	list-style: none;
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: none;
	border-bottom-style: none;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	width:auto;
	white-space:nowrap;
	height: auto;
}
.sf-menu li ul {
	width: auto;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #FFFFFF;

}
.sf-menu li li a {
	background:none;
	padding-left:10px;
	padding-right: 10px;
	color:#FFFFFF;
}
.sf-menu li li a:hover {
	color:#FFFFFF;
}
.sf-menu li a:hover {
	text-decoration: none;
	color:#000;
}
.sf-menu .last { 
	border-style:none;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	outline:		0;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			2px;
	top:			7px; /* IE6 only */
	width:			7px;
	height:			7px;
	text-indent: 	-999em;
	overflow:		hidden; /* 8-bit indexed alpha png. IE6 gets solid image only */
	background-image: url(/assets/images/arrow_r.gif);
	background-repeat: no-repeat;
	background-position: -5px -100px;
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			3px;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -5px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position:  -5px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -5px 0; /* arrow hovers for modern browsers*/
}

/*** width:	203px;adding sf-vertical in addition to sf-menu creates a vertical menu ***/
.sf-vertical, .sf-vertical li {
	
}
/* this lacks ul at the start of the selector, so the styles from the main CSS file override it where needed */
.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
	left:	203px; /* match ul width */
	top:	0px;
}

/*** alter arrow directions ***/
.sf-vertical .sf-sub-indicator { background-position: -5px 0; } /* IE6 gets solid image only */
.sf-vertical a > .sf-sub-indicator { background-position: 0 0; } /* use translucent arrow for modern browsers*/

/* hover arrow direction for modern browsers*/
.sf-vertical a:focus > .sf-sub-indicator,
.sf-vertical a:hover > .sf-sub-indicator,
.sf-vertical a:active > .sf-sub-indicator,
.sf-vertical li:hover > a > .sf-sub-indicator,
.sf-vertical li.sfHover > a > .sf-sub-indicator {
	background-position: -5px 0; /* arrow hovers for modern browsers*/
}

