.jsselect { display:none; }
    
    /**/
  .jsselect_container select { display: none; }
  /**/
  
  .jsselect_container {
    height:25px;
    left:235px;
    position:absolute;
    top:65px;
    width:282px;
  }
    

  .jsselect { 
    display: inline-block; 
    margin: 0; 
    padding: 0; 
    width: 100%; 
    position: relative; 
    cursor: pointer;
    z-index: 100;
  }

  .jsselect dt {
    border: 1px solid #ccc;
    border-left-color: #999;
    border-top-color: #999;
    color: #00377F;
    padding: 5px 8px 4px;
    margin: 4px 4px 0 0;
    font-weight: normal;
    background-color: #F1F1F1;
    padding-right: 10px;
    background-image: url(down.png);
    background-repeat: no-repeat;
    background-position: 97% center;
  }
  .jsselect_container dd { display : none; }
  .jsselect_container .active dd { display : block; }

  .jsselect dd { margin: 0; padding: 0; z-index: 100; }
  .jsselect dd ul { 
    position: absolute;
    background: white;
    border: 1px solid #c8c8c8;
    padding: 0;
    margin: 0;
    width: 98%;
    z-index: 100;
  }
  .jsselect dd ul {
    margin: 0; 
    padding: 0;
    list-style-type: none;
  }
  .jsselect dd li {
    margin: 0; 
    padding: 0;
  }
  .jsselect dd li {
    display: block;
    padding: 4px 0px 4px 0px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    color: #00377F;
  }
  
  .jsselect dd li span {
    padding: 0px 4px 0px 4px;
  }
  
  .jsselect dd li.hover,
  .jsselect dd li:hover {
    background-color: #F1F1F1;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    text-decoration: none;
    color: #00377F;
  }

  .jsselect dd .languages li {
    background-image: url(right.png);
    background-repeat: no-repeat;
    background-position: 97% center;
  }
  .jsselect dd .dictionaries li {
    background-image: none;
    padding: 4px;
  }
  
  .jsselect dd ul.languages li {
    position: relative;
  }
  .jsselect dd ul.languages li ul.dictionaries {
    display: none;
  }
  .jsselect dd ul.languages li:hover ul.dictionaries,
  .jsselect dd ul.languages li.hover ul.dictionaries {
    display: block;
  }

  .jsselect dd ul.dictionaries {
    position:absolute;
    left: 100%;
    top: 0;
  }
