@charset "utf-8";

/* structural styles and offsets */
ul.tree, ul.tree li, ul.tree ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
ul.tree {
    position: relative;
    cursor: default;
	width:100%;
}
ul.tree li {
    position: relative;
    text-align: left;
    cursor: pointer;
    cursor: hand;
}
ul.tree ul {
    cursor: default;
	height:1%;
    padding: 0px;
    position: absolute;
    left: -100em;
    margin: 0px 0px 0px 5px;
	width:200px;
}
/* design styles */
ul.tree a:link, ul.tree a:visited {
    display: block;
}
ul.tree a:hover, ul.tree a:focus, ul.tree a:active {
    text-decoration: underline;
	outline:none;
}
/* plus/minus icons */
ul.tree li.hasmenu > a {
    background: url(../images/dexana_25.jpg) no-repeat left center;
	padding:0px 0px 0px 16px;
}
ul.tree li.hasmenu > a.rollover {
    background: url(../images/dexana_29.jpg) no-repeat left center;
	text-decoration:underline !important;	
}
* html ul.tree li.hasmenu a {
	background: no-repeat left center;
	background-image: url(../images/dexana_25.jpg);
    background-image: expression(/hasmenu/.test(this.parentNode.className) ? "" : "none");
	padding: expression(/hasmenu/.test(this.parentNode.className) ? "0px 0px 0px 16px" : "0px");
}
* html ul.tree li.hasmenu a.rollover {
	background: no-repeat left center;
	background-image: url(../images/dexana_29.jpg);	
    background-image: expression(/hasmenu/.test(this.parentNode.className) ? "" : "none");
	text-decoration: underline !important;	
}
/* browser hacks */
@media screen, projection {
    * html ul.tree li {
        display: inline; 
        f\loat: left; 
        background: #fff;
		width:100%;		 
    }
}