/* jquery.newslist css */
div#newslist {
  font-size: 12px;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

div#newslist > div {
  color: #000;
  font-size: 1.2em;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
}
div#newslist > div > div {
  margin: 0;
  position: relative;
}

div#newslist > div > div img {
  width: 100%;
  height: auto;
}

div#newslist > div > a {
  color: #0067ac;
  font-size: 1em;
}

div#newslist .controls {
  display: block;
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 5px;
  text-align: right;
  position: absolute;
  bottom: 0;
}

div#newslist .controls a {
  background: #000;
  color: #000;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  padding: 10px;
  opacity: 0.2;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
div#newslist .controls a:hover {
  text-decoration: none;
}
div#newslist .controls a.on, 
div#newslist .controls a.current {
  opacity: 0.5;
  background: #fff;
}
