#dhtmlgoodies_scrolldiv {
  /* The total width of the scrolling div including scrollbar */
  width: 235px;
  height: 300px; /* The height of the scrolling div */ 
  margin: 0 auto 0 auto;
  position: relative;
  top: 15px;
  left: 4px;
}

#scrolldiv_parentContainer {
  width: 235px;  /* Width of the scrolling text */
  height:100%;
  overflow:hidden;
  border:none;
  float:left;
  position:relative;
}

/*
CSS for the scrolling content 
*/

#scrolldiv_content {
  padding: 5px;
  position:relative;
  font: 11px/14px arial, verdana, sans-serif;
  color: #5D5D5D;
  text-align: center;
}

#scrolldiv_content a {
  color: #E3616A;
  font-weight: bold;
  text-decoration: none;
}

#scrolldiv_content img {
  border: 0;
  margin: 0 0 4px 0;
}

/*
The scrollbar slider 
*/

#scrolldiv_slider {
  width:13px;
  margin-left:2px;
  height: 300px; 
  float:left;
}

/*
The scrollbar (The bar between the up and down arrow )
*/

#scrolldiv_scrollbar {
  width: 13px;
  height: 275px !important; /* Total height - 40 pixels */ 
  border: none;
  position: relative;
  background: #6a869a;
}

/*
The scrollbar handle
*/

#scrolldiv_theScroll {
  margin: 1px;
  width: 11px;
  height: 40px;
  background-color: #b5c3cd;
  position: absolute;  
  top: 0px;
  left: 0px;
  cursor: pointer;
}

/*
Scroll buttons(The up and down arrows)
*/

#scrolldiv_scrollUp,#scrolldiv_scrollDown {
  width:13px;
  height:13px;
  border: none;
  cursor:pointer;
}

#scrolldiv_scrollUp {
  margin-bottom:2px;
}

#scrolldiv_scrollDown {
  margin-top:2px;
}

#scrolldiv_scrollDown span,#scrolldiv_scrollUp span {
  font-family: Symbol;
}

