/* vertical carousel */
.navigation-jump-complex {
  float: left;
  width: 160px;
  height: 270px;
  margin-bottom: 10px;
  position: relative;
}

  .navigation-jump-complex .navigation-content {
    float: left;
    width: 160px;
    height: 240px;
    overflow: hidden;
  }

    .navigation-jump-complex ul {
      margin: 0;
      padding: 0;
      height: 100000px;
      position: relative;
      top: 0;
      left: 0;
    }

    .navigation-jump-complex ul li {
      float: left;
      width: 160px;
      height: 120px;
      text-align: center;      
      list-style: none;   
    }                         

  .navigation-jump-complex .previous_button {
    float: left;
    height: 32px;
    width: 160px;
    background: url('profi/vertical/left.png') center top;
    cursor: pointer;
    display: inline;
    margin: 0 0 10px 0;
  }

  .navigation-jump-complex .previous_button_over {
    background: url('profi/vertical/left_over.png') center top;
  }

  .navigation-jump-complex .previous_button_disabled {
    background: url('profi/vertical/left_disabled.png') center top;
    cursor: default;
  }

  .navigation-jump-complex .next_button {
    float: left;
    height: 32px;
    width: 160px;
    background: url('profi/vertical/right.png') center top;
    display: inline;
    cursor: pointer;
  }

  .navigation-jump-complex .next_button_over {
    background: url('profi/vertical/right_over.png') center top;
  }

  .navigation-jump-complex .next_button_disabled {
    background: url('profi/vertical/right_disabled.png') center top;
    cursor: default;
  }

