.hide-to-begin-with {
  display: none;
}

#largeblue-player-container {}
  #largeblue-player {
    position: relative;
    display: block;
  }
#largeblue-player-controls {
  position: relative;
  display: block;
}
  #largeblue-player-controls .control-button {
    overflow: hidden;
    cursor: pointer;
  }
  #lbpc-seek-bar-container {
    position: relative;
    display: block;
  }
    #lbpc-seek-bar-container .seek-bar {
      position: relative;
      display: block;
      width: 100%;
    }
      #lbpc-seek-bar-container .progress-bar {
        position: relative;
        display: block;
      }
        #lbpc-seek-bar-container .seek-button {
          position: absolute;
          display: block;
        }
        #lbpc-seek-bar-container .live-seek-button {
          cursor: pointer;
          cursor: hand;
        }
  #lbpc-fullscreen-container {
    float: right;
  }
    #lbpc-fullscreen-container .fullscreen-on-button, #lbpc-fullscreen-container .fullscreen-off-button {
      float: right;
    }
  #lbpc-volume-container {
    float: right;
  }
    #lbpc-volume-container .volume-bar {
      float: right;
      cursor: pointer;
      cursor: hand;
    }
      #lbpc-volume-container .volume-button {
        position: absolute;
        display: block;
        cursor: pointer;
        cursor: hand;
      }
    #lbpc-volume-container .mute-on-button, #lbpc-volume-container .mute-off-button {
      float: right;
    }
  #lbpc-time-display-container {
    float: right;
  }
    #lbpc-time-display-container .time-display {
      float: right;
    }
  #lbpc-control-buttons {
    position: relative;
    display: block;
  } 
  /*
    
    do *not* fuck with the css below
    the layout of the play and pause
    button *must* be via position absolute
    or QT on FF won't work.
    
    
  */
    #lbpc-control-buttons .pause-button {
      position: absolute;
      display: block;
    }
    #lbpc-control-buttons .play-button {
      position: absolute;
      display: block;
    }
    #lbpc-control-buttons .stop-button {
      position: relative;
      display: block;
      float: left;
    }
  #lbpc-clearer {
    clear: both;
  }