@charset "utf-8";
/* CSS Document */
.slideBox {
    width: 100%;
    height: 365px;
    overflow: hidden;
    position: relative;
}
.slideBox .hd {
    height: 12px;
    overflow: hidden;
    position: absolute;
    left: 50%;
	margin-left:-39px;
    bottom: 12px;
    z-index: 1;
}
.slideBox .hd ul {
    overflow: hidden;
    zoom: 1;
    float: left;
}
.slideBox .hd ul li {
    float: left;
    margin-right: 10px;
    width: 12px;
    height: 12px;
    background: url(../images/white.png) no-repeat;
    cursor: pointer;
}
.slideBox .hd ul li.on {
    background: url(../images/blue.png) no-repeat;
}
.slideBox .bd {
    position: relative;
    height: 100%;
    z-index: 0;
    width: 100%;
}
.slideBox .bd ul {
	height:100% !important;	
}
.slideBox .bd li {
    zoom: 1;
    vertical-align: middle;
    width: 100%;
    height:100%;	
}
.slideBox .bd img {
    width: 100%;
    height: 100%;
    display: block;
}
.slideBox .prev, .slideBox .next {
    position: absolute;
    left: 5%;
    top: 50%;
    margin-top: -17px;
	width: 19px;
    height: 35px;
    display: block;
	background:url(../images/lt.png) no-repeat 0 0;	
}
.slideBox .next {
    left: auto;
    right: 5%;
	background:url(../images/rt.png) no-repeat 0 0;	
}
.slideBox .prev:hover {
	background:url(../images/lt.png) no-repeat 0 -35px;		
}
.slideBox .next:hover {
	background:url(../images/rt.png) no-repeat 0 -35px;		
}
