
.slide-container{
    list-style: none;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    z-index: 1;
	min-height: 500px;
}
.slide-container li {
    display: block;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 2;
}
.slide {
    width:100%;
    height: 100%;
    margin: 0px auto;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.slide li img {
    width:100%;
    height: 100%;
}
.prev, .next{
    position: absolute;
    width: 40px;
    height: 74px;
    background: url(../img/focus_btn.png) no-repeat;
    top: 50%;
    margin-top: -37px;
    z-index: 10;
}
.prev {
    left: 0;
    background-position: 0 -74px;
    cursor: pointer;
}

.next {
    top: 50%;
    margin-top: -37px;
    right: 0;
    background-position: -40px -74px;
    cursor: pointer;
}
.prev:hover {
    background-position: 0 0;
}
.next:hover {
    background-position: -40px 0;
}
.slide-tabs {
    position: absolute;
	bottom: 18px;
	left: 50%;
	margin-left: -55px;
	z-index: 10;
	padding-left: 0;
	list-style: none;
}
.slide-tabs li{
    background-color: #FFF;
    border-radius: 14px;
    cursor: pointer;
    float: left;
    height: 14px;
    margin-left: 8px;
    opacity: .7;
    filter: alpha(opacity=70);
    position: relative;
    width: 14px;
}
.active {
    z-index: 5;
}