@charset "utf-8";
/* CSS Document */

.board {
  margin: 0 auto;
    width: 350px;
}
.board .board-inner {
  position: relative;
  z-index: 10;
  width: 265px;
  height: 200px;
  
background: url('/assets/board/bg-board.png') no-repeat scroll 0 0 transparent;
padding: 40px 40px 49px 45px; 
  
  
}
.board .board-inner .item {
  display: none;
  overflow: hidden;
  font-family: 'BenchNine', sans-serif;
  color: #fff !important;
  text-shadow: none !important;
  font-size: 17px;
}
.board .board-inner .item ul {
  list-style: none;
  padding: 0;
}
.board .board-inner .item ul li {
  zoom: 1;
}
.board .board-inner .item ul li:before {
  content: '';
  display: block;
}
.board .board-inner .item ul li:after {
  content: '';
  display: table;
  clear: both;
}
.board .board-inner .item ul li .left {
  float: left;
  width: 200px;
}
.board .board-inner .item ul li .right {
  float: left;
}
.board .board-inner .item p {
  margin-top: 0 !important;
  margin-bottom: 10px;
/*  color: #fff !important;*/
  text-shadow: none !important;
}
.board .board-inner .item p strong {
/*  color: #fff !important;*/
}
.board .board-inner .item.active {
  display: block !important;
}
.board .board-nav {
  position: relative;
  z-index: 11;
  padding: 0;
  width: 159px;
  height: 55px;
  margin: -37px auto 0;
  list-style: none;
  text-align: center;
}
.board .board-nav li {
  width: 16px;
  height: 16px;
  margin-top: 11px;
  background: url('../assets/board/bg-board-nav-dot.png') no-repeat scroll 0 0 transparent;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.board .board-nav li span {
  width: 16px;
  height: 16px;
  margin-left: 1px;
  margin-top: 16px;
  display: block;
  background: url('../assets/board/bg-board-nav-dot-active.png') no-repeat scroll 0 0 transparent;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.board .board-nav li.active span {
  margin-top: 0;
}