#console {
  max-height: 150px;
  overflow: auto;
}
#mySwipe div b {
  display:block;
  background: #fff;
}
/* Swipe 2 required styles */
.swipe {
  overflow: hidden;
  visibility: hidden;
  position: relative;
}
.swipe-wrap {
  overflow: hidden;
  position: relative;
}
.swipe-wrap > div {
  float:left;
  width:100%;
  position: relative;
}
/**/
.prev, .next{
    display: block;
    height: 56px;
    width: 56px;
    position: absolute;
    top: 200px;
}
.prev{
    background: url('../support/prev.png') no-repeat;
    background-position: 0 0;
    left: 10px;
	z-index: 9999;
}
.prev:hover{
    background-position: 0 1px;
}
.next{
    background: url('../support/next.png') no-repeat;
    background-position: 0 0;
    right: 5px;
	z-index: 9999;
}
.next:hover{
    background-position: 0 1px;
}