﻿/* CSS for banner module using jQuery custom */
#animation {
    float: right;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    border: 1px solid #b8ab94;
}


.custom_banner_container {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.custom_banner_container .banner_content {
    width: 100%;
    height: 100%;
}

.custom_banner_container .banner_content img {
    width: 100%;
    height: 100%;
}

.custom_banner_container .banner_item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.custom_banner_container .banner_item_description_container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
    color: #eee;
    background: rgba(0,0,0,0.6);
}

.custom_banner_container .banner_item_link {
    display: block;
    position: absolute;
    background: url('../images/blank.gif') repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.custom_banner_container .banner_item_title {
    font-size: 2em;
    padding: 10px;
    padding-bottom: 7px;
    color: #ffb933;
    font-family: SourceSansProLight, Arial, Helvetica, Tahoma, Geneva, Verdana, Sans-serif;
}

.custom_banner_container .banner_item_description {
    padding: 10px;
    padding-top: 0;
    font-size: 0.95em;
    line-height: 1.4em;
}

.custom_banner_container .banner_pager {
    position: absolute;
    z-index: 100;
    bottom: 7px;
    right: 7px;
}

.custom_banner_container .banner_pager a {
    display: block;
    float: left;
    margin-left: 6px;
    width: 14px;
    height: 14px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    color: #000000;
    text-decoration: none;
    text-align: center;
    font-size: 1.2em;
    line-height: 20px;
    background-color: #FFFFFF;
    background-color: rgba(255,255,255,0.7);
}

.custom_banner_container .banner_pager a:hover {
    background-color: #FFFFFF;
    background-color: rgba(255,255,255,0.9);
}

.custom_banner_container .banner_pager a.active_page {
    color: #FFFFFF;
    background-color: #ffb933;
    background-color: rgba(255,185,51, 0.8);
}