#news_carousel {
     width: 624px;
     height: 435px;
     margin: -1em -10px 1em -58px;
     overflow: hidden;  /* this will make only show 1 li */
     position: relative;
  }
  #news_carousel .news {
    margin: 0;
    padding: 0;
    position: relative;
  }
  #news_carousel .news-item {
    margin: 0;
    padding: 0;
    width:624px;
    position: relative; /* so that we can do absolute positioning of the paragraph inside of it */
    float: left; /* align one next to the other */
  }
  #news_carousel .news-item h2 {
    position: absolute;
    top:0;
    left:58px;    
  }
  
  #news_carousel .news-item img {
    margin-top:3em;
    width:604px;
    height:355px;
  }
  
  /* #news_carousel .news-item p {
    position: absolute;
    top:3.5em;
    left:442px;
    width:210px;
  } */

  #news_carousel ul.controls {
    position: absolute;
    bottom: 0px;
    left:58px;
    margin:0;
    width:604px;
    list-style-type: none;    
  }
  
  #news_carousel ul.controls li {
    float:left;
    margin-top:1em;
    width:48px;
  }
  
  #news_carousel ul.controls li a {
    display:block;
    margin:.0 20px 0 0;
    width: 28px;
    height:28px;
    line-height:28px;
    text-decoration: none;
    text-align:center;
    background:#f4f4f5;
    outline: none;
  }
  
  #news_carousel ul.controls li a:hover {
    text-decoration:none;
	color:#fff;
    background:#b2b2b2;
}

  #news_carousel ul.controls li a.active {
    color:#000;
    background:#e20020;
  }

  #news_carousel .timer {
    background: #b2b2b3;    
	position:absolute;
    left: 10px;    
    top: 395px;
    height: 2px;
	width: 604px;
  }