 
li {
    list-style-type: none;
}
 
#carousel-box {
    position: relative;
    width: 793px;
    height: 326px;
    /*background-color: pink;
    margin: 100px auto;*/
    overflow: hidden;
}
 
.arrow-l,.arrow-r {
    display: none;
    position:absolute;
    width: 24px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
	background:#275b97;
    text-align:center;
    line-height: 40px;
    color: #fff;
    font-size: 18px;
    font-family: 'icomoon';
    z-index: 3;
}
.arrow-r:hover{
text-decoration:none;
color: #fff;
}
.arrow-l:hover{
text-decoration:none;
color: #fff;
}

.arrow-r {
    right: 0;
}
 
#carousel-box img{
    width: 793px;
    height: 326px;
}
 
#carousel-box ul {
    position:absolute;
    width: 1000%;
	margin:0;
	padding:0;
}
 
#carousel-box ul li {
    float: left;
}
 
.circle {
    position: absolute;
    bottom: 10px;
    right: 10px;
}
 
.circle li {
    float: left;
    width: 8px;
    height: 8px;
    margin: 0 5px;
	background-color:#eee;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
}
 
.circle li.current {
    background-color: #275b97;
}