@charset "utf-8";
/* CSS Document */

.scrollable{
    width: 963px;
    height: 273px;
    position: relative;
    overflow: hidden;
}

.inbox{
    width: 20000em;
    position: absolute;
    left: 0;
}

.inbox > div{
    width: 963px;
    float: left;
}

.prev{
    width: 50px;
    height: 273px;
    background-image:url(../images/prev.png);
	background-repeat:no-repeat;
	background-position:center center;
    position: absolute;
    margin-top: -273px;
    margin-left: 0px;
    background-color: rgba(0,0,0,0.2);
	cursor:pointer;
}
.prev:hover, .next:hover{
	background-color: rgba(0,0,0,0.5);
}
.next{
    width: 50px;
    height: 273px;
	background-image:url(../images/next.png);
	background-repeat:no-repeat;
	background-position:center center;
    position: absolute;
    margin-top: -273px;
    margin-left: 913px;
	background-color: rgba(0,0,0,0.2);
	cursor:pointer;
}

