#billboard { 
   width: 900px; /* important to be same as image width */ 
   height: 300px; /* important to be same as image height */
   position: relative; /* important */
   overflow: hidden; /* important */
   -webkit-border-radius: 10px;
}

#billboard-content {
   width: 100%; /* important to be same as image width or wider */
   position: absolute; /* important */
   top: 0; /* important */
   margin-left: 0;
   padding-left: 0;
}

.billboard-item {
   float: left; /* important */
   position: relative; /* important */
   display: none; /* important */
   -webkit-border-radius: 10px;
}

.billboard-overlay {
   position: absolute; /* important */
   padding: 40px;
   height: 220px;
   width: 220px;
   overflow: hidden;
   background-color: rgb(0, 0, 0);
   background-color: rgba(0, 0, 0, 0.8);
/*   background-image: url(http://www-assets.icradio.com/images/stipple.png);*/
   color: #ffffff;
   display: none; /* important */
   top: 0;
    font-size: 20px;
    letter-spacing: -1px;
   text-transform: lowercase;
   text-align: right;
}

.billboard-headline {
    font-size: 40px;
    letter-spacing: -2px;
    font-weight: bold;
    margin-bottom: 10px;
}

.clear {
   clear: both;
}

