/*
 * Basis JavaSript library 
 * ---------------------------------
 * Homepage: basis.et-lab.ru
 * Author:   Dvornov lahmatiy Roman
 * copyright (c) 2006-2007, Embl at www.embl.ru <office@embl.ru>
 *
 * ---------------------------------
 *
 * Base style for Basis.Tree
 *
 */

  .basis-tree UL
  {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .basis-tree UL UL
  {
    padding-left: 17px;
  }
  .basis-tree LI.root-invisible > UL
  {
    padding-left: 0;
  }
  .basis-tree LI
  {
    margin: 0;
    position: relative;
    min-height: 2em;
  }
  .basis-tree LI DIV.expander
  {
    position: absolute;
    top: 0;
    left: 2px;
    width: 9px;
    height: 2em;
    background-image: url(minus.gif);
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
  }
  .basis-tree LI.collapse DIV.expander
  {
    background-image: url(plus.gif);
  }
  .basis-tree LI DIV.title
  {
    background-image: url(list.gif);
    background-repeat: no-repeat;
    background-position: 16px .4em;
    padding: .4em 2px .4em 35px;
  }
  .basis-tree UL.root > LI.root-invisible > DIV.title
  {
    display: none;
  }
  .basis-tree LI DIV.treeFolder
  {
    /*background-image: url(folder_open.gif);*/
  }
  .basis-tree LI.collapse DIV.treeFolder
  {
    /*background-image: url(folder_close.gif);*/
  }
  .basis-tree LI DIV.title A
  {
    padding: 0.1em 0;
    text-decoration: none;
    color: black;
    line-height: 1.2em;
  }
  .basis-tree LI DIV.title A:hover
  {
/*    color: #3399EE;   */
  }
  .basis-tree LI DIV.selected A
  {
    color: #0066CC !important;
  }
  .basis-tree LI.disabled A
  {
    color: #B0B0B0 !important;
  }

  /* BORDERED */

  .basis-tree .border-frame LI DIV A
  {
    padding: .2em;
    white-space: nowrap;
  }
  .basis-tree .border-frame LI DIV.title A:hover
  {
    color: #666666 !important;
    border: 1px solid #B8B8B8 !important;
    background-color: #F0F0F0;
    margin: -1px;
  }
  .basis-tree .border-frame LI DIV.selected A,
  .basis-tree .border-frame LI DIV.selected A:hover
  {
    margin: -1px;
    color: black !important;
    background-color: #E0E8FF !important;
    border: 1px solid #9099FF !important;
  }

  /* MISC */

  .basis-tree LI .loading_label
  {
    padding: 1px 4px;
    border: 1px solid #E8E8E8;
    background-color: #F4F4F4;
    font-size: 80%;
    margin-left: .25em;
    margin-top: -.15em;
    position: absolute;
  }
