/* adding sf-vertical class in addition to sf-menu creates a vertical menu */
/* eg. <ul class="sf-menu sf-vertical"> ... */
.sf-vertical {
  /* original->  width: 12em;
  /* If you want the width of the closed menu to expand to its
  widest top-level menu item (like its "Supersubs" submenus do),
  replace the width rule above with the following two rules. */

  
  min-width: 12em;
  width: 12em;
  
}
.sf-vertical ul {
  /*left:	100%;*/
  left:	115px; /* match ul width */
	width:  115px;
	top: 0;
}
.sf-vertical > li {
  float: none;
}
.sf-vertical li {
  /*width: 100%;*/
  width: 115px
}

/*** alter arrow directions ***/

 .sf-vertical.sf-arrows > li > .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-vertical.sf-arrows li > .sf-with-ul:focus:after,
.sf-vertical.sf-arrows li:hover > .sf-with-ul:after,
.sf-vertical.sf-arrows .sfHover > .sf-with-ul:after {
  border-left-color: white;
} 

/** styles below were added for ITIS **/

/* 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:	115px; /* match ul width */
	width:  115px;
	top:	0;
}

/*** alter arrow directions ***/
.sf-vertical .sf-sub-indicator { 
	background:		url('/Static/images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
    background-position: -10px 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: -10px 0; /* arrow hovers for modern browsers*/
}

.sf-vertical li {
	background:		#6699CC;
}
.sf-vertical li li {
	background:		#AABDE6;
}
.sf-vertical li li li {
	background:		#9AAEDB;
}
.sf-vertical a:focus, .sf-menu a:hover, .sf-menu a:active {
	background:		#CFDEFF;
}
.sf-vertical a {
	border-left:	1px solid #6699CC;
	border-top:		1px solid #6699CC;
}
