.accordionJS2,
.accordionJS2 * {
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
}


/*
** The main <UL> element holding the tabs.
*/

.accordionJS2 {
    margin: 0 auto;
    padding: 0;
    height: 480px;
    width: 101%;
    overflow: hidden;
    list-style: none;
}

#business #container2 ul {
    list-style-type: none;
}

.accordionJS2 > li {
    background-color: #dddddd;
    margin-right: -1200px;
    margin-bottom: 0px;
    padding-left: 0;
}


/*
** The tabs of the accordion are made up of 3 main elements.
** 1) <input radiobox />
** 2) <div /> text title of the box
** 3) <i>  FontAwesome styled checkbox to show the state.
*/

.accordionJS2-select {
    cursor: pointer;
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 1;
}


/* BEGIN accordionJS2-title rules */

.accordionJS2-title {}

.accordionJS2-title span {
    display: block;
    position: absolute;
    bottom: 0px;
    width: 100%;
    white-space: nowrap;
    margin-bottom: 20px;
    margin-left: 0px;
    line-height: 40px;
    /* Slider effect */
    transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -ms-writing-mode: lr-bt;
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.accordionJS2-title i {
    color: #ffffff;
    margin-right: 10px;
    font-size: 18px;
}


/* END accordionJS2-title rules */


/* BEGIN accordionJS2-content rules */

.accordionJS2-content {
    background-color: #dddddd;
    color: #333;
    height: 480px;
    width: 1104px;
    padding: 48px;
    position: relative;
    overflow: auto;
}


/* END accordionJS2-content rules */

.accordionJS2>li,
.accordionJS2-title,
.accordionJS2-content,
.accordionJS2-separator {
    float: left;
}

.accordionJS2-select:checked ~ .accordionJS2-separator {
    margin-right: 1200px;
    margin-bottom: 0px;
}

.accordionJS2-title,
.accordionJS2-select {
    background-color: #dddddd;
    color: #ffffff;
    width: 60px;
    height: 480px;
    font-size: 18px;
}

.accordionJS2 li:nth-child(1) .accordionJS2-title {
    background-color: #d04646 !important;
}

.accordionJS2 li:nth-child(2) .accordionJS2-title {
    background-color: #d09a46 !important;
}

.accordionJS2 li:nth-child(3) .accordionJS2-title {
    background-color: #74d046 !important;
}

.accordionJS2 li:nth-child(4) .accordionJS2-title {
    background-color: #46d0ab;
}

.accordionJS2 li:nth-child(5) .accordionJS2-title {
    background-color: #4684d0;
}

.accordionJS2 li:nth-child(6) .accordionJS2-title {
    background-color: #a146d0;
}


/* Dark-Blue colour for currently active steps. */

.accordionJS2-select:hover ~ .accordionJS2-title,
.accordionJS2-select:checked ~ .accordionJS2-title {
    background-color: #4167b0;
}


/* Dark-Red colour for disabled steps. */

.accordionJS2-select:disabled ~ .accordionJS2-title {
    background-color: #942E2E;
}

.accordionJS2-title,
.accordionJS2-select:checked ~ .accordionJS2-content {
    margin-right: 1px;
    margin-bottom: 1px;
}


/* Do not change following properties, they aren't 
generated automatically and are common for each slider. */

.accordionJS2>li,
.accordionJS2-title {
    position: relative;
}

.accordionJS2-separator {
    transition: margin 0.3s ease 0.1s;
    -o-transition: margin 0.3s ease 0.1s;
    -moz-transition: margin 0.3s ease 0.1s;
    -webkit-transition: margin 0.3s ease 0.1s;
}