#library-news h5,
#library-news p {
  margin: 0;
}

#news-wrapper {
  position: relative;
  height: 160px;
  width: 100%;
}

#news-wrapper h5 {
  margin-bottom: .25em;
}

.news-item {
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 padding: 1em;
 background-color: #ffffff;
}

.news-thumb {
  width: 100px;
  height: 128px;
  text-align: center;
  float: left;
  padding: 0 20px 10px 0;
  margin: 0;
}

.news-thumb img {
  max-width: 100%;
  max-height: 100%;
  display: inline;
  vertical-align: middle;
}

#news-dots {
  text-align: center;
}

.news-dot {
  cursor: pointer;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url('dot.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  margin: 0 .25em;
}

.active-dot {
  background-position: 0 -12px;
}

 
 /* Mobile styles */
 @media only screen and (max-width: 40em) {
  #news-wrapper {
    height: 210px;
    text-align: center;
  }
  
  .news-thumb {
    float: none;
    padding: 0;
    margin: 0 auto .5em auto;
  }
  
  .news-item p {
    display: none;
  }
}