/*
 * Default Styles
 */
.views-scroller-horizontal-container {
  width: 600px;
  height: 40px;
  overflow: hidden;
}

.views-scroller-horizontal-item {
  display: inline;
  margin-right: 20px;
}

.views-scroller-vertical-container {
  width: 210px;
  height: 160px;
  overflow: hidden;
}

.views-scroller-vertical-item {
  margin-top: 20px;
}
.views-scroller-vertical-item span {
  display: block;
}

/*
 * Marquee Styles
 */
.marquee {
  width: 300px;
  overflow: hidden;
}

.marquee ul li {
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
  width:200px;
}

/*
 * simplyScroll styles
 */
.simply-scroll-container {
  width:100%;
}

.simply-scroll-container li {
  float:left;
  width:200px;
  margin-right:8px;
}

/*
 * webTicker styles
 */
.tickercontainer { /* the outer div with the black border */
  /*width: 500px;*/
  height: 27px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
  position: relative;
  top: 0;
  height: 18px;
  /*width: 718px;*/
  overflow: hidden;
}
ul.newsticker { /* that's your list */
  position: relative;
  /*left: 750px;*/
  font-weight:bold;
  font-size:10px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 300px;
}
ul.newsticker li {
  float: left; /* important: display inline gives incorrect results when you check for elem's width */
  margin: 0;
  padding-right: 15px;
  /*background: #fff;*/
  width: 200px;
}
