



/* ########### FlickGal ########### */

.yourFlickgalWrap .item { width: 200px }
.yourFlickgalWrap .moving {
  transition: transform .2s ease-out;
  -webkit-transition: -webkit-transform .2s ease-out;
  -moz-transition: -moz-transform .2s ease-out;
}

.yourFlickgalWrap .head {
  display:flex;
  /*min-height: 16px;*/
  padding: 5px;
  /*border-bottom: 1px solid #333333;
  border-color: #333333;
  background-color: #E3E6DB;*/
  color: #333333;
  font-weight: bold;
}

.yourFlickgalWrap .head .title {
  padding-left: 15px;
  padding-top: 2px;
  font-size: 15px;
}

.yourFlickgalWrap .head .btn {
  color: #333333;
  border-color: #333333;
  border-radius: 0;
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
  line-height: 15px;
  margin-left: 0px;
}

.yourFlickgalWrap .head .btn:hover {
  background: #333333;
  color: #FFFFFF;
}

.yourFlickgalWrap .containerInner {
  overflow: hidden;
  display:flex;
}

.yourFlickgalWrap .containerInner .item {
  display: inline-block;
  height: 100px;
  line-height: 100px;
  text-align: center;
  margin: 0 5px;
  border: 1px #333333 solid;
  background: #E3E6DB;
  color: rgba(0,0,0,.4);
  font-weight: bold;
  font-size: 200%;
  -webkit-user-select: none;
  user-select: none;
}
.yourFlickgalWrap .nav {
  text-align: center;
}
.yourFlickgalWrap .nav li {
  display: inline-block;
}

.yourFlickgalWrap .nav li a {
  text-decoration: none;
  color: rgba(0,0,0,.2);
  font-size: 300%;
}
.yourFlickgalWrap .nav li a:hover {
  background: lightgray;
}
.yourFlickgalWrap .nav li a:active {
  background: gray;
}
.yourFlickgalWrap .nav .selected a {
  color: rgba(0,0,0,1);
}
.yourFlickgalWrap .arrows {
  font-size: 300%;
  display: flex;
}
.yourFlickgalWrap .arrows a {
  text-decoration: none;
  color: rgba(0,0,0,.6);
}
.yourFlickgalWrap .arrows a:hover {
  background: lightgray;
  color: rgba(0,0,0,1);
}
.yourFlickgalWrap .arrows a:active {
  background: gray;
}
.yourFlickgalWrap .arrows a.off {
  color: rgba(0,0,0,.2);
  background: none;
}
.yourFlickgalWrap .arrows .prev {
  float: left;
  /*z-index: 90;
  position: relative;
  left: 0px;
  bottom: 80px;*/
}
.yourFlickgalWrap .arrows .next {
  float: right;
  /*z-index: 90;
  position: relative;
  right: 0px;
  bottom: 80px;*/
}
