
/********************************************************
 * CSS for arkivtreet.
 *
 * Skal validere uten feil!
 * http://jigsaw.w3.org/css-validator/
 */


ul.mktree {
  padding: 10px 0;
  margin: 0;
}

ul.mktree a {
  padding-right: 15px;
  white-space: nowrap;
}

ul.mktree a.selected {
  font-weight: bold;
  color: #A52A2A;
}

ul.mktree  li {
  padding: 0;
  margin: 0;
  list-style: none;
  white-space: nowrap;
}

/* Control how "spaced out" the tree is */
 ul.mktree ul , ul.mktree li {
  margin-left: 10px;
  padding: 0;
}

/* Provide space for our own "bullet" inside the LI */
ul.mktree li .bullet {
  padding-left: 15px;
}

/* Show "bullets" in the links, depending on the class of the LI that the link's in */
ul.mktree li.liOpen .bullet {
  cursor: pointer;
  background: url(../images/minus.gif)  center left no-repeat;
}

ul.mktree li.liClosed .bullet {
  cursor: pointer;
  background: url(../images/plus.gif)   center left no-repeat;
}

ul.mktree li.liBullet .bullet {
  cursor: default;
  background: url(../images/bullet.gif) center left no-repeat;
}

/* Sublists are visible or not based on class of parent LI */
ul.mktree li.liOpen ul {
  display: block;
}

ul.mktree li.liClosed ul {
  display: none;
}

