﻿/*** ESSENTIAL STYLES ***/
.myTree, .myTree * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.myTree {
	line-height:	1.0;
}
.myTree ul {
	position:		absolute;
	top:			-999em;
	width:			12em; /* left offset of submenus need to match (see below) */
}
.myTree ul li {
	width:			100%;
}
.myTree li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.myTree li {
	float:			right;
	position:		relative;
	/*width:90px;*/
}
.myTree a {
	display:		block;
}
.myTree li:hover ul,
.myTree li.sfHover ul {
	right:			0;
	top:			38px; /* match top ul list item height */
	z-index:		99;
}
ul.myTree li:hover li ul,
ul.myTree li.sfHover li ul {
	top:			-999em;
}
ul.myTree li li:hover ul,
ul.myTree li li.sfHover ul {
	right:			12em; /* match ul width */
	top:			0;
}
ul.myTree li li:hover li ul,
ul.myTree li li.sfHover li ul {
	top:			-999em;
}
ul.myTree li li li:hover ul,
ul.myTree li li li.sfHover ul {
	right:			11em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.myTree {
	float:			right;
/*	margin-bottom:	1em;*/
}
.myTree a {
	/*border-left:1px solid #286F14;*/
	padding:11px 8px 14px 8px; 
	text-decoration:none;
	border-bottom:1px solid #1C1C1E;
}
.myTree a, .myTree a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:#EEE;
	text-align:right;
	background:url(../images/menuBg.gif) 0 38px;
}

a.topLevel{
	text-align:right;
	background:url(../images/menuBg.gif) 0 38px;
	border-bottom:0;
	padding:11px 8px 14px 8px; 
}


.myTree li {
	/* background:url(../images/top_menuButton.gif) no-repeat; */
}
.myTree li li {
	background:url(../images/menuBg.gif) -2px 38px;color:#fff;
}
.myTree li li li {
	background:url(../images/menuBg.gif) -2px 38px;color:#fff;
}
.myTree li:hover, .myTree li.sfHover,
.myTree a:focus, .myTree a:hover, .myTree a:active {
	background:url(../images/menuBg.gif) -2px 0;
	outline:		0;
	color:#fff;
}

/*** arrows **/
.myTree a.sf-with-ul {
	padding-left: 	20px;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
    left: 		    5px;
	top:			6px; /* IE6 only */
	position:		absolute;
	display:		block;
	width:			10px;
	height:			10px;
	text-indent: 	999em;
	overflow:		hidden;
	background:		url('../images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			14px;
	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: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.myTree ul .sf-sub-indicator { background-position:  -10px 0; }
.myTree ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.myTree ul a:focus > .sf-sub-indicator,
.myTree ul a:hover > .sf-sub-indicator,
.myTree ul a:active > .sf-sub-indicator,
.myTree ul li:hover > a > .sf-sub-indicator,
.myTree ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	/*padding: 0 5px 9px 0;*/
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}

.sf-sub-indicator{ color:#FFF;}
a.topLevel > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			1.2em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
.topLevel .sf-sub-indicator{top:1.2em;}
