.tree { margin: 0 0 0 4px; }
.tree,.tree ul {
  list-style-type: none; 
  position: relative;
  padding: 0;
  cursor: default;
  border-left: 2px solid #000000;
}
.tree ul {
  margin: 0; 
  display: none;
}
.tree li {
  position: relative;
  margin: 0 0 0 10px;
  padding: 2px 20px 2px;
  /*padding: 2px 0 2px 0;*/
}
/* extend a line to the list item */
.tree li:before {
  position: absolute;
  top: 10px; left: -10px; height: 1px; width: 30px;
  border-top: 2px solid #000000;
  content: ' '; 
} 

/* erase all lines for last item */
.tree li:last-child:after {
  position: absolute;
  top: 17px; left: -13px; bottom: 0; width: 7px;
  background-color: none;
  content: ' ';
} 
/* add expander widget */
.tree .expander {
  background: #fff url(icons.png) no-repeat scroll;
  background-position: -64px -4px;
  position: absolute;
  top: 8px; left: -15px;
  height: 9px; width: 9px;
  cursor: pointer;
}
.tree .expander:hover { background-color: #ff3300; }
.tree .expander.expanded { background-position: -78px -4px; }
.tree ul.expanded { display: block; }


#menu {
position: fixed;
height: 60px;
width: 100%;
top: 0;
left: 0;
border-top: 5px solid #000000;
background: none;
-moz-box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
-webkit-box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
z-index: 999999;
line-height: 60px;
}

.w {
width: 900px;
margin: 0 auto;
margin-bottom: 40px;
}

.HighLight {
    border-bottom-color:red;
    border-bottom-width:2px;
}