/********************
 * FEATURE roundabout *
 ********************/
#roundabout-container {
  position:relative;
}
.roundabout {
    width:100%;
    height:100%;
    background-color: transparent;
    position:relative;
    margin-bottom:0.5em;
    font-size:12px;
    font-family: Arial;
    border-radius: 5px 5px 5px 5px;
}

.roundabout .roundabout-feature .roundabout-caption {
    position:absolute;
    bottom:0;
    width:100%;
    background-color:#000;
}
.roundabout .roundabout-feature .roundabout-caption p {
    margin:0;
    padding:5px;
    font-weight:bold;
    font-size:12px;
    display: none;
}
.roundabout .tracker-summation-container {
    position:absolute;
    right:30%;
    bottom:0px;
    padding:5px;
    margin:3px;
    background-color:#000;
    border-radius: 5px 5px 5px 5px;
    color: transparent;
    display: none;
}
#content .roundabout .tracker-individual-container,
.roundabout .tracker-individual-container {
    position:absolute;
    bottom:7px;
    margin:0px;
    margin-bottom:0px;
    background: #000;
    width: 100%;
    background: rgb(125,126,125); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(244,244,244,1) 0%, rgba(229,229,229,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(229,229,229,1)), color-stop(100%,rgba(14,14,14,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(244,244,244,1) 0%,rgba(229,229,229,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(244,244,244,1) 0%,rgba(229,229,229,1) 100%); /* Opera11.10+ */
    background: -ms-linear-gradient(top, rgba(244,244,244,1) 0%,rgba(229,229,229,1) 100%); /* IE10+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0 ); /* IE6-9 */
    background: linear-gradient(top, rgba(244,244,244,1) 0%,rgba(229,229,229,1) 100%); /* W3C */

}

.roundabout .tracker-individual-container li {
  list-style:disc;
}
.roundabout .tracker-individual-container li:first-child {
    margin-left: 45%;
}
.roundabout .tracker-individual-container .tracker-individual-blip {
    margin:0 3px;
    text-align:center;
    border-radius: 5px 5px 5px 5px;
    color: transparent;
    background:url('bullet_noselect.png') no-repeat center center transparent;
    height: 25px;
    width: 17px;
}
.roundabout .tracker-individual-container .tracker-individual-blip-selected {
    font-weight:bold;
    background:url('bullet.png') no-repeat center center transparent;
    width: 25px;
    height: 17px;
}

.roundabout-left {
  position:absolute;
  bottom: 1px;
  left:0.5px;
  cursor:pointer;
}
.roundabout-right {
  position:absolute;
  bottom: 1px;
  right:0.5px;
  cursor:pointer;
}


