/*
 * This stylesheet styles the banner rotator.
 */

.jcarousel-wrapper-wrapper
{
    float:right;
}

.jcarousel-wrapper
{
    border:5px solid black; border-radius:5px;
    position:relative; margin:auto;
    height:270px; width:800px;
}

.jcarousel
{
    overflow:hidden; position:relative;
	height:100%; width:100%;
}

.jcarousel ul 
{
    
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li
{
	float:left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	height:270px; width:800px;
}

.jcarousel-prev
{
    background: goldenrod; text-align:center;
    position:absolute; left:-40px; top:0px;
    height:270px; width:30px;
}
.jcarousel-next
{
    background:goldenrod; text-align:center;
    position:absolute; right:-40px; top:0px;
    height:270px; width:30px;
}


.jcarousel-pagination
{
    position: absolute;
    bottom: 0px;
}

.jcarousel-pagination a
{
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    line-height: 12px;
    min-width: 12px;
    background:goldenrod;
    color: black;
    border-radius: 12px;
    padding: 3px;
    text-align: center;
    margin-right: 2px;
    opacity: .75;
}

.jcarousel-pagination a.active {
    background:goldenrod;
    color: black;
    opacity: 1;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
}

