<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
* ACCORDION SLIDER CUSTOM DEFINITIONS
*/

#accordion-slider {
    background: #fff;
    padding :0;
    margin: 0;
    display: block;
    position: relative;
    top: 30px;
    left: 0;
    clear: both;
    overflow: hidden;
    /* This attribute has to be set by hand for IE to work properly */
    height: 350px;
    border: 1px solid #2a383d !important;
    z-index: 10;
}
#accordion-slider li {
    cursor: pointer;
    display: block;
    overflow: hidden;
    background: #fff;
    border-left: 1px solid #757a7c !important;
    padding-right: 20px;
    /* This attribute have to be set by hand for IE to work properly */
    height: 350px !important;
}
#accordion-slider li.first {
    border-left: 0 !important;
}

/*
* The slider fade shadow that appears on the right side
*/
#accordion-slider li .shadow {
    background: transparent url('../images/slide-shadow.png') repeat-y right top;
    width: 87px;
    height: 100%;
    position: absolute;
    right: -10px;
    z-index: 20;
}
    
#accordion-slider li img {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
}

#accordion-slider li a {
    display: block;
    font-family: Tahoma;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    z-index: 10;
    height: 60px !important;
    line-height: 60px;    
    text-decoration: none;
    color: #000;
}

#accordion-slider li span.description, #accordion-slider li span.background, #accordion-slider li span.blocker {
    position: absolute;
    display: block;
}
#accordion-slider li span.background, #accordion-slider li span.blocker {
    background: #2c393d;
    width: 100%;
    height: 100%;
}

/*
* The slide long description
*/
#accordion-slider li span.description {
    background: transparent;
    color: #757e82;
    font-size: 10px;
    line-height: 10px;
    padding: 10px 0px 4px 14px;
    margin-left: -4px;
    font-family: Tahoma;
    width: 95%;
}

/*
* The slide's first title
*/
#accordion-slider li span.description.short {
    font-family: Arial;
    font-size: 16px;
    line-height: 16px;
    padding-left: 12px;
    text-transform: uppercase;
    color: #fff;
    color: #888;
    font-weight: bold;
    background: transparent;
    width: 150px;
}
/*
* The slide's second title which appears under the first title
*/
#accordion-slider li span.description.second-desc {
    top: 20px;
    left: 2px;
    padding-left: 12px;
    font-size: 10px;
    color: #fff;
    color: #666;
    text-transform: uppercase;
}
/*
* Slide title when in opened state
*/
#accordion-slider li span.description strong {
    font-family: Arial;
    text-transform: uppercase;
    display: block;
    font-size: 18px;
    line-height: 18px;
    font-weight: normal;
    color: #ddd;
    margin-left: -1px;
    margin-bottom: 2px;
}

#accordion-slider li span.blocker {
    background: #000;
    display:none;
    margin-left: -20px;
}</pre></body></html>