﻿/* ========================================================================== */
/*  Home Logo Carousel                                                        */
/* ========================================================================== */
.logo-carousel {
        margin-top: 5px;
        position: relative;
        z-index: 9;
        width: 960px;
        margin-right: auto;
        margin-left: auto;
        height: 122px;
        padding-bottom: 10px;
}
.logo-carousel .scrollable {
/* required settings */
        position: relative;
        overflow: hidden;
        width: 960px;
        height: 122px;
}
.logo-carousel .scrollable .items {
/* this cannot be too large */
        width: 20000em;
        position: absolute;
        clear: both;
}
.logo-carousel .items ul {
        margin:0px;
        float: left;
        width: 920px;
        padding-left: 20px;
        padding-right: 20px;
}
.logo-carousel .scrollable .items .logo {
        display: block;
        float:left;
        width: 121px;
        margin-top: 10px;
        margin-left: 0px;
        margin-right: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 16px;
        padding-right: 16px;
}
.logo-carousel .last {
        background:transparent !important;
}
/* single scrollable item */
.logo-carousel .scrollable img {
        float: left;
        width: 120px;
        height: 110px;
}
.logo-carousel .items div a:hover img {}
/* active item */
.logo-carousel .scrollable .active {
        position: relative;
        cursor: default;
}
.logo-carousel .scrollable {
        float: left;
}
/* prev, next, prevPage and nextPage buttons */
.logo-carousel a.browse {
        display: block;
        width: 26px;
        height: 26px;
        margin: 40px 10px;
        cursor: pointer;
        font-size: 1px;
}
/* right */
.logo-carousel a.right {
        clear: right;
        margin-right: 0px;
        position: absolute;
        top: 10px;
        right: -5px;
        z-index: 100;
}
.logo-carousel a.right:hover {}
.logo-carousel a.right:active {}
/* left */
.logo-carousel a.left {
        margin-left: 0px;
        position: absolute;
        top: 10px;
        left: -5px;
        z-index: 100;
}
.logo-carousel a.left:hover {}
.logo-carousel a.left:active {}
/* disabled navigational button */
.logo-carousel a.disabled {
        visibility:hidden !important;
}


