
.slider-container {
    width: 960px;
    height: 481px;
    border: 1px solid #999999;
    position: relative;
    margin:0;
    padding: 0 0 0 0;
    /* top: 20px;
    left: 0px; */
}
#button-bar > input 
{
	display:none;
    cursor: pointer;
    position: absolute;
    top: 15px;
    left: 50%;
    width: 9px;
    height: 9px;
    z-index: 1001;
    opacity: 0;
}
#button-bar > input + label {
    position: absolute;
    display:none;
    top: 15px;
	left: 50%;
    width: 6px;
	height: 6px;
	display: block;
	z-index: 1000;
	border: 3px solid #fff;
	border: 3px solid rgba(255,255,255,0.9);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: background-color linear 0.1s;
    -moz-transition: background-color linear 0.1s;
    -o-transition: background-color linear 0.1s;
    -ms-transition: background-color linear 0.1s;
    transition: background-color linear 0.1s;
}
#button-bar > input:checked + label 
{
	display:none;
	background-color: #ffffff;
    background-color: rgba(255,255,255,0.9);
}
.slider {
    list-style: none;
}
.slider > li {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity linear 1s;
    -moz-transition: opacity linear 1s;
    -webkit-transition: opacity linear 1s;
    -o-transition: opacity linear 1s;
    -ms-transition: opacity linear 1s;
}
.slider > li:first-child {
    opacity: 1;
}
.tooltip {
    font-family: Verdana, Arial;
    font-size: 15pt;
    position: absolute;
    bottom: 40px;
    padding: 25px 0 25px 10px;
    width: 80%;
    opacity: 0.5;
    background-image: -moz-linear-gradient(#ffffff 0%, #9FBFD2 100%);
}
.arrow {
    position: absolute;
	top: 213px;
	width: 25px;
	height: 40px;
	opacity: 0.5;
	cursor: pointer;
	z-index: 2000;
}
#arrow_left {
    left: 10px;
	background: url(../img/arrowleft.png) no-repeat;
}
#arrow_right {
    right: 10px;
	background: url(../img/arrowright.png) no-repeat;
}
