/*** ESSENTIAL STYLES ***/
.sf-vertical, .sf-vertical *
{
    margin: 0;
    padding: 0;
    list-style: none;
}
.sf-vertical
{
    line-height: 1.0em;
}
.sf-vertical ul
{
    position: absolute;
    top: -999em;
    width: 180px; /* left offset of submenus need to match (see below) */
}
.sf-vertical ul li
{
    width: 100%;
}
.sf-vertical li:hover
{
    visibility: inherit; /* fixes IE7 'sticky bug' */
}
.sf-vertical li
{
    float: left;
    position: relative;
}
.sf-vertical a
{
    display: block;
    position: relative;
}
.sf-vertical li:hover ul, .sf-vertical li.sfHover ul
{
    left: 0;
    top: 2.5em; /* match top ul list item height */
    z-index: 99;
}
ul.sf-vertical li:hover li ul, ul.sf-vertical li.sfHover li ul
{
    top: -999em;
}
ul.sf-vertical li li:hover ul, ul.sf-vertical li li.sfHover ul
{
    left: 180px; /* match ul width */
    top: 0;
}
ul.sf-vertical li li:hover li ul, ul.sf-vertical li li.sfHover li ul
{
    top: -999em;
}
ul.sf-vertical li li li:hover ul, ul.sf-vertical li li li.sfHover ul
{
    left: 180px; /* match ul width */
    top: 0;
}

/*** DEMO SKIN ***/
.sf-vertical
{
    float: left;
    margin-bottom: 0;
}
.sf-vertical a
{
    padding: 8px 10px 8px 14px;
    text-decoration: none;
    width: 160px;
    color: #080A5E;
    font-family: arial;
    font-size: 9pt;
    font-weight:bold;
    background: url('/sysimages/sArrow.gif') no-repeat;
    background-position:3px 13px;
}

.sf-vertical a, .sf-vertical a:visited
{
    /* visited pseudo selector so IE6 applies text colour*/
    color: #080A5E;
}
.sf-vertical li
{
	
}
.sf-vertical li li, .sf-vertical li li li
{
	background:#3F3975;
}

.sf-vertical li li > a,
.sf-vertical li li > a:visited
{
	color:white;
	text-decoration:none;
	font-size:8pt;
}

.sf-vertical li.sfHover a, .sf-vertical li:hover, .sf-vertical li.sfHover, 
.sf-vertical a:focus, .sf-vertical a:hover, .sf-vertical a:active
{
    color: #ffffff;
    background: #3F3975 url(/sysimages/sArrow.gif) no-repeat;
    background-position:3px 11px;
    text-decoration: none;
    font-family:Arial;
    outline: 0;
}
.sf-vertical li li > a:focus,
.sf-vertical li li > a:hover,
.sf-vertical li li > a:active
{
	text-decoration:underline;
}

/*** arrows **/
.sf-vertical a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* point right for anchors in subs */
.sf-vertical ul .sf-sub-indicator
{
    background-position: -10px 0;
}
.sf-vertical ul a > .sf-sub-indicator
{
    background-position: 0 0;
}
/* apply hovers to modern browsers */
.sf-vertical ul a:focus > .sf-sub-indicator, .sf-vertical ul a:hover > .sf-sub-indicator, .sf-vertical ul a:active > .sf-sub-indicator, .sf-vertical ul li:hover > a > .sf-sub-indicator, .sf-vertical ul li.sfHover > a > .sf-sub-indicator
{
    background-position: -10px 0; /* arrow hovers for modern browsers*/
}


/*** adding sf-vertical in addition to sf-menu creates a vertical menu ***/
.sf-vertical, .sf-vertical li
{
    width: 180px;
}
/* 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: 180px; /* match ul width */
    top: 0;
}

/*** alter arrow directions ***/
.sf-vertical .sf-sub-indicator
{
    background-position: -10px 0;
    background:		url('../sysimages/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../sysimages/arrows-ffffff.png', sizingMethod='scale');
}
/* 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: -10px 0; /* arrow hovers for modern browsers*/
}

/* has image remove padding*/

.with-image a
{
     padding: 0 0;
}
.sf-vertical li.with-image a span.sf-sub-indicator
{
    background-image: none;
}

.with-image li a {
	padding:.8em;
	padding-left:1.1em;
	padding-top:.7em;
}

.with-image a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			1.3em;
	right: -1em;
}

.with-image li a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top: .8em;
	right: 0em;
}



