/*BASIC*/

* {
    margin: 0;
    padding: 0;
}

.homeTime {
    position: relative;
    width: 800px;
    margin-left: 15px;
    margin-top: 15px;
}

    .homeTime h2, .homeTime p {
        font-family: arial;
        color: #333;
    }

    .homeTime p {
        font-size: 12px;
    }

/*ACCORDION*/
.conventAccordion {
    position: relative;
    overflow: hidden;
    padding: 0;
    list-style-type: none;
}

    .conventAccordion.vertical li {
        width: auto;
        height: auto;
    }

    .conventAccordion.nested {
        width: auto;
        height: inherit;
        padding: 0 !important;
        border: 0 !important;
    }

/*LABELS*/

.CAspine {
    position: relative;
    z-index: 100;
    height: inherit;
    width: 50px;
    font: 14px/50px Helvetica, Verdana, sans-serif;
    color: black;
    font-size: 16px;
    font-weight: normal;
    float: left;
    -webkit-transform: scale3d(1,1,1); /* fixes webkit bug */
    -webkit-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    -ms-transition: background 0.5s ease;
    transition: background 0.5s ease;
}

.vertical .CAspine {
    height: 50px;
    width: inherit;
    float: top;
}

.CAspineTitle {
    position: absolute;
    height: 50px;
    padding-right: 15px;
}

.vertical .CAspineTitle {
    height: inherit;
    width: inherit;
    left: 50px;
    text-align: left;
    -webkit-backface-visibility: hidden; /* fixes webkit bug */
    /* CSS3 */ transform: translateX(0%) rotate(0deg);
    transform-origin: right top;
    /* Opera */ -o-transform: translateX(0%) rotate(0deg);
    -o-transform-origin: right top;
    /* Webkit */ -webkit-transform: translateX(0%) rotate(0deg);
    -webkit-transform-origin: right top;
    /* Firefox */ -moz-transform: translateX(0%) rotate(0deg);
    -moz-transform-origin: right top;
    /* Internet Explorer 9 */ -ms-transform: translateX(0%) rotate(0deg);
    -ms-transform-origin: right top;
}

.lteIE8 .CAspineTitle {
    /* Internet Explorer <9 */ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    cursor: pointer;
}

.CAspine:hover {
    background: #232323;
    color: #fff;
    cursor: pointer;
}

/*SLIDES*/
.CAslide {
    top: 0;
    z-index: 10;
    background: #fff;
    display: block;
    height: inherit;
    width: 0px;
    float: left;
    overflow: hidden;
}

.vertical .CAslide {
    height: 0px;
    width: 100%;
}

.CAslideContent {
    position: relative;
    height: inherit;
}

.vertical .CAslideContent {
    width: inherit;
}

/****************************************** Spineless */
.conventAccordion.spineless .CAspine {
    width: 0;
    display: none
}

.conventAccordion.spineless.vertical .CAspine {
    height: 0
}

/****************************************** Dark */

.conventAccordion.dark .CAspine {
    width: 60px;
    margin-right: 1px;
    background: #fff;
}

.conventAccordion.dark.vertical .CAspine.next {
    margin-top: 5px;
}

.conventAccordion.dark.vertical .CAspine {
    height: 60px;
    width: inherit;
    margin-bottom: 5px;
    margin-left: 0
}

.conventAccordion.dark.vertical .active.CAspine:after {
    left: 50px;
    top: 33px;
}

.conventAccordion.dark .CAslide {
    /*  background: #030303; */
}

.conventAccordion.dark .CAslideContent {
    /*  margin-left: 5px; */
}
