  #news_carousel {
     width: 286px;
     height: 100px;
     margin: 0;
     padding: 0;
     overflow: hidden;  /* this will make only show 1 li */
     position: relative;
	 left: 0px;
  }
  #news_carousel ul.news {
    list-style-type: none;
    margin: 0;
    padding: 0;
	left: -1px;
    position: relative;
  }
  #news_carousel ul li {
    margin: 0;
    padding: 0;
    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 ul.news li p {
	position: absolute;
	margin: 0px;
	height: 100px;
	width: 286px;
	visibility: visible;
  }
  #news_carousel ul.news li p strong {
	margin: 0em 0em 0em 0em;
  }
  #news_carousel ul.news li p span {
    padding: 0em 0em 0em 0em;
  }
  #news_carousel ul.controls {
	position: absolute;
	margin: 0 auto;
	top: 68px;
	right: 4px;
	list-style-type: none;
  }
  #news_carousel ul.controls li a {
	float: left;
	margin: 2px;
	padding: 10px 7px;
	text-decoration: none;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #002d6a;
	vertical-align: baseline;
	background-image: url(bg.png);
	background-repeat: no-repeat;
	background-position: 4px 10px;
  }

  #news_carousel ul.controls li a.active {
    text-decoration: none; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 1em; color: #f58025; vertical-align: baseline; font-weight: bold;
  }

  #news_carousel .timer {
    background: #ffffff;
    position:absolute;
	height: 2px;
	width: 10px;
	left: 190px;
    top: 97px;

  }