/* screen.css */

/* Basics
*******************************************************************************/

a img {
  border: none; /* Get rid of link borders around images */
}
/* Disable visited links by default */
a {
  color: #00a;
}
a:visited {
  color: #00a;
}

body {

  background: url('/images/background.gif') repeat;

  text-align: center; /* Centering, for IE6 */

  margin: 0; padding: 0; /* Align things perfectly */

  font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #444;
}

form {
  margin: 0;
  padding: 0;
}

input, select {
  font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
  font-size: 13px;
}

textarea {
  font-size: 13px;
}

p {
  margin: 1em auto;
}

h1 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 20px;
  color: black;
}

h2 {
  font-size: 20px;
  font-weight: bold;
        color: #980000;
}

h3 {
  color:#DDA429;
  font-size:14px;
  margin-bottom:15px;
  margin-top:25px;
}

h4 {
        color: #980000;
  font-size:14px;
  margin-bottom:15px;
  margin-top:25px;
}

hr {
  margin-top: 25px;
  margin-bottom: 25px;
  display: block; /* fix IE margin bug */
}

/* Page setup
*******************************************************************************/

/* Wide header
***************/

#wide-header {
  background: #233093;
  position: absolute;
  left: 0;
  width: 100%;
  height: 84px;
}

/* Overall
***********/

#overall-frame {
  margin-left: auto;
  margin-right: auto;

  width: 950px;

  text-align: left; /* For not propogating the IE6 centering */

  position: relative;  /* So absolutes are relative to this */
}

/* Header parts
****************/

#header {
  height: 84px;
  backgroun: #233093;
}

  #branding {
    position: absolute;
    top: 0px;
    left: 23px;
  }

  #tabs {
    position: absolute;
    top: 16px;
    right: 0px;

    font-size: 12px;
    font-weight: bold;
  }

    #tabs a {
      color: white;
      text-decoration: none;
      margin-left: 20px;
    }
    #tabs a:hover {
      text-decoration: underline;
    }
    #tabs .email {
      margin-left: 5px;
      color: white;
      font-weight: normal;
    }

/* Breadcrumbs
***************/

  #breadcrumbs {
    position: absolute;
    top: 46px;
    height: 38px;

    left: 225px;
    width: 699px;  /* I HAVE NO IDEA WHY, but 700 creates an error in IE6. 699 works in all. Compensate for padding */

    padding-left: 25px;
    padding-top: 11px;

    background: url('/images/breadcrumbs.gif') repeat-x;

    font-size: 15px;
    font-weight: bold;

    white-space: nowrap; /* Go to a long breadcrumb listing... TODO: get taller instead! */
  }

    #breadcrumbs-left {
      position: absolute;
      top: 0; left: 0;
      background: url('/images/breadcrumbs_left.gif');
      width: 16px;
      height: 38px;
    }
    #breadcrumbs-right {
      position: absolute;
      top: 0; right: 0px;
      background: url('/images/breadcrumbs_right.gif');
      width: 16px;
      height: 38px;
    }
    #breadcrumbs .crumb {
      display: inline;
      color: white;
    }
    #breadcrumbs a {
      text-decoration: none;
      display: inline;
      color: white;
    }
    #breadcrumbs a:hover {
      text-decoration: underline;
    }

    #breadcrumbs .sep {
      display: inline;
      margin-left: 10px;
      margin-right: 10px;
      color: white;
    }

/* Non-header part
*******************/

#middle {
}

  #content-wrapper {
    position: absolute;
    left: 225px;
    width: 750px; /* Minus the padding on both sides */
  }

    table#content-table {
      width: 725px;
      /* Cross-browser hack to implement minimum height, from
         http://www.hackszine.com/blog/archive/2008/03/easiest_crossbrowser_css_minhe.html */
      /*min-height:450px;
      height: auto !important;
      height: 450px;*/
    }
      table#content-table td#contentshadow-left {
        width: 16px;
        height: 550px;  /* Functions well as minimum-height */
        background: url('/images/shadowleft.gif') repeat-y;
      }
      table#content-table td#content {
        padding: 25px 15px 25px 15px; /* Compensating for table sides */
        background: white;
      }
      table#content-table td#contentshadow-right {
        width: 16px;
        background: url('/images/shadowright.gif') repeat-y;
      }

      table#content-table td#contentcorner-left {
        width: 16px;
        height: 16px;
        background: url('/images/cornerleft.gif');
      }
      table#content-table td#contentshadow-bottom {
        height: 16px;
        background: url('/images/shadowbottom.gif') repeat-x;
      }
      table#content-table td#contentcorner-right {
        width: 16px;
        height: 16px;
        background: url('/images/cornerright.gif');
      }

      #content-clear {
        clear: both;
      }

    #content #topten {
      float: right;
      width: 200px;
      padding: 15px;

      background: #EAEAEA;
    }

    #content #main-column {
      width: 405px;
    }

  #footer {
    margin-top: 25px;
    color: #555;
    font-size: 11px;
    padding-bottom: 25px;
    margin-left: 35px;
    width: 675px;
  }

/* Sidebar
*******************************************************************************/

  #sidebar {
    position: absolute;
    top: 117px; /* Compensate for the -7 on the top border */
    left: 0px;
    width: 200px;
    font-size: 13px;
  }
    #sidebar-top {
      height: 7px;
      font-size: 1px; /* IE needs this not to overflow */
      width: 200px;
      background: url('images/sidebar_top.gif');
      position: absolute;
      top: -7px; left: 0px;
    }
    #sidebar-bottom {
      height: 7px;
      font-size: 1px; /* IE needs this not to overflow */
      width: 200px;
      background: url('images/sidebar_bottom.gif');
      position: absolute;
      bottom: -7px; left: 0px;
    }
    #sidebar-middle {
    }
    #sidebar-middle-img {
      filter:alpha(opacity=61);
      opacity: 0.61;
      -moz-opacity: 0.61;
      position: absolute;
      z-index: -1;  /* Otherwise our text gets hidden *behind*! */
      height: 100%; /* Note: we use JavaScript to make this work in IE6! */
      width: 200px;
      top: 0px; left: 0;
    }
    #sidebar-content {
      padding: 18px 25px 0px 25px; /* 18 compensates for the -7 in the top/bottom */
    }

    #sidebar #instruction {
      padding-top: 15px;
      font-weight: normal;
      padding-bottom: 20px;
    }

    #sidebar .grouping-header {
      font-weight: bold;
font-size: 11px;
/*text-transform: uppercase;*/
/*      background: #2621FF;*/
      margin-right:5px;
      border-bottom: 1px solid #787878;
      padding-top: 3px;
      color: 787878;
/*      margin-left: -7px;
      padding-left: 7px;*/
      padding-bottom: 3px;
    }

    #sidebar ul {
      padding-left: 0;  /* FF */
      margin-left: 0; /* IE */
      list-style-type: none;
      margin-top: 10px;
      margin-bottom: 25px;
    }

      #sidebar ul li {
        font-weight:bold;
      }
        #sidebar ul li a {
          color: #3446B6;
          text-decoration: none;
        }
          #sidebar ul li a:hover {
            text-decoration: underline;
          }
        #sidebar ul li .parenthetical {
          font-weight: normal;
        }

      #sidebar ul ul {
        padding-left: 10px;
        margin-top: 1px;
        margin-bottom: 3px;
      }

/* Previews
*******************************************************************************/

/* Basics
**********/

#topten .title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
}

#topten table {
  width: 100%;
}

#topten td {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 11px;
  border-top: 1px solid #ccc;

}
#topten tr.first td {
  border-top: none;
}

#topten a {
  color: #333;
  text-decoration: none;
}

  #topten a .faux-link {
    color: blue;
    font-weight: normal;
    font-size: 11px;
    margin-left: 3px;
    text-decoration: underline;
  }



/* Amazon
**********/

#topten .amazon .title {
  margin-bottom: 3px;
}
#topten .amazon .outof {
  font-size: 11px;
  margin-bottom: 10px;
  color: #888;
}

#topten .amazon td.image {
  text-align: center;
  padding-right: 10px;
}

/* So images are overlaid on gray */

#topten .amazon td.image .img-wrapper {
  background: black;
  margin-left: auto; margin-right: auto;
  width: 1px; /* Necessary so that the wrapper doesn't go beyond edges, e.g. in DVD's */
}
  #topten .amazon td.image .img-wrapper td {
    background: black;
    margin-left: auto; margin-right: auto;
    padding: 0;
    font-size: 0;
    line-height: 0;
    border-top: none;
  }
  #topten .amazon td.image img {
    filter:alpha(opacity=92);
    opacity: 0.92;
    -moz-opacity: 0.92;
  }

/* Jambase
***********/

#topten .jambase img.artist-picture {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
}

#topten .jambase .venue-name {
  display: block;
color: #980000;
  font-size: 12px;
  font-weight: bold;
}
#topten .jambase .venue-place {
  display: block;
}
#topten .jambase .event-date {
  display: block;
  font-weight: bold;
}

#topten .jambase .jambase-footer {
    margin-top: 15px;
    color: #888;
    font-size: 11px;
}

/* YouTube
***********/

#topten .youtube td.image {

}
#topten .youtube td.desc {
  padding-left: 10px;
}

  #topten .youtube .youtube-img {
  }

/* Rotten Tomatoes
*******************/

#topten .rottentomatoes td.image {
  vertical-align: top;

}
#topten .rottentomatoes td.desc {
  padding-left: 10px;
  vertical-align: top;
}
#topten .rottentomatoes .movietitle {
  font-size: 12px;
  font-weight: bold;
color: #980000;
  margin-bottom: 5px;
}
#topten .rottentomatoes .percent {
  font-size: 12px;
  font-weight: bold;
  color: green;
}
#topten .rottentomatoes .consensus {
  font-size: 11px;
}
#topten .rottentomatoes .under {
  font-size: 12px;
}

/* Pirate Bay
**************/

  #topten .piratebay .piratebay-name {
    font-weight: bold;
    font-size: 12px;
  }
  #topten .piratebay .piratebay-under {
    margin-top: 5px;
    color: #888;
  }

/* Headlines
**************/

  #topten .headlines td {
    /* font-weight: bold; */
    font-size: 12px;
  }

/* Digg
********/

#topten .digg td {
  vertical-align: top;
}
  #topten .digg td .diggtitle {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 2px;
  }

  #topten .digg td .under {
    font-weight: normal;
    font-size: 11px;
    color: #888;
    margin-bottom: 2px;
  }

#topten .digg td.image {
  padding-left: 15px;
}

#topten .digg a {
 /* color: #105CB6;*/
}



/* TotallyScored
*****************/

#topten .totallyscored td {
  border-top: none;
  padding-top: 4px;
}

#topten .totallyscored tr.score-date td {
  color: #980000;
  font-weight: bold;
  font-size: 13px;
  padding-bottom: 3px;
  padding-top: 15px;
  border-bottom: 1px solid #ccc;
}

#topten .totallyscored tr.score-firstteam td {
  padding-bottom: 0px;
  font-size: 12px;
}
#topten .totallyscored tr.winner td {
  font-weight: bold;
}
#topten .totallyscored tr.score-secondteam td {
  padding-bottom: 10px;
  font-size: 12px;
}

#topten .totallyscored .title-two {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
  margin-top: 20px;
}

/* TV
*****************/

#topten .tvshow .tv-logo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 15px;
}

#topten .tvshow td {
  padding-top: 5px;    /* override previous */
}

#topten .tvshow .tv-programname {
  color: #980000;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}
#topten .tvshow .tv-episodetitle {
  font-size: 12px;
  font-weight: normal;
  color: #000;
}
#topten .tvshow .tv-date {
  font-size: 12px;
  font-weight: bold;
  color: #000;
}

#topten .tvshow .recent-seasons-title {
  font-weight: bold;
  color: #666;
  border-bottom: 1px solid #555;
  margin-top: 25px;
  margin-bottom: 10px;
  padding-bottom: 3px;
  font-size: 12px;
}

#topten .tvshow table a {
  font-size: 12px;
  color: #3446B6;
  font-weight: bold;
}

#topten .tvshow table a:hover {
  text-decoration: underline;
}

#topten .tvshow .amazon-dvd {
  height: 155px;
  width: 200px;

  background: #EAEAEA url('/images/amazon_dvd_border.gif');
  position: relative;
}

#topten .tvshow div.dvd-image {
  position: absolute;
  left: 20px;
  top: 20px;

}

#topten .tvshow div.dvd-text {
  position: absolute;
  left: 115px;
  top: 53px;
  height: 155px;
  line-height: 175%;

}

/*#topten .tvshow .amazon-dvd table {
  padding-left: 0px;
  padding-right: 00px;

  width: 200px;
}

#topten .tvshow .amazon-dvd table img.dvd-logo {
  vertical-align: top;
  margin-top: 3px;
}

#topten .tvshow .amazon-dvd table img.dvd-cover {
  padding-left: 20px;
  padding-right: 5px;
}

#topten .tvshow .amazon-dvd table td.right-col {
  padding-right: 20px;
}*/

#topten .tvshow .see-more-link {
  margin-top: 10px;
}

/*#topten .tvshow .amazon-dvd table td {
  padding-top: 20px;
  padding-left: 0px;
  padding-right: 0px;
  line-height: 175%;
}*/

#topten .tv-topten .outof {
  font-size: 11px;
  margin-bottom: 10px;
  color: #888;

}

#topten .tv-topten .rank {
  font-size: 12px;
  font-weight: bold;
  color: #000;
  display: inline;
}

/*#topten .tv-topten td.proportion {
  width: 60px;
  padding: 0;
}*/

#topten .tv-topten .program-strength {
  float: right;
  height: 13px;
  background: #8CBC94;
  margin-left: 10px;
  border: 1px solid #34783F;
}

#topten .tv-topten .program-name {
  font-size: 12px;
  font-weight: bold;
  color: #980000;
  display: inline;
}

/* Currencies
**************/

#topten .currencies td {
  font-size: 14px;
}
  #topten .currencies td .rate {
    font-weight: bold;
  }


/* News
 *******/

#topten .headlines .news-logo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  margin-bottom: 15px;
}

/* Celestial
 ************/

#topten .celestial td.image {
  padding-right: 10px;
}

#topten .celestial .date {
  font-weight: bold;
  font-size: 13px;
  color: #980000;
}

#topten .celestial .event {
  font-weight: bold;
  font-size: 12px;
  margin-top: 3px;
  color: black;
}

#topten .celestial .time {
  font-weight: normal;
  font-size: 11px;
  color: #888;
  margin-top: 3px;
}

/* iTunes
**********/

#topten .itunes td.image {
  text-align: center;
  padding-right: 10px;
}

  #topten .itunes td.image .img-wrapper td {
    padding: 0;
    border-top: none;
  }

/* Front page services
*******************************************************************************/

table#toc {
  margin-top: 10px;
  margin-left: 0px;
  margin-right: 10px;
}

  #toc td {
    vertical-align: top;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  table#toc tr.first td, table#toc tr.last td {
    font-size: 1px;
    height: 6px;
    padding: 0;
  }
    table#toc tr.first td div, table#toc tr.last td div {
      height: 6px;
    }

  table#toc tr.first td.l {
    background: #ececec url('/images/toc-tl.gif') no-repeat top left;
    padding-bottom: 0;
  }
  table#toc tr.first div.r {
    background: url('/images/toc-tr.gif') no-repeat top right;
  }
  table#toc tr.last td.l {
    background: #ececec url('/images/toc-bl.gif') no-repeat bottom left;
    padding-bottom: 0;
    vertical-align: bottom;
  }
  table#toc tr.last div.r {
    background: url('/images/toc-br.gif') no-repeat bottom right;
  }

  #toc .pic {
    text-align: center;
    padding-top: 0px;
    width: 120px;
    background: #ECECEC;
  }

  #toc .sep {
    width: 60px;
  }

  #toc .desc {
    font-size: 11px;
    padding-left: 20px;
    width: 150px;
  }
    #toc .desc h4 {
      font-size: 14px;
      margin-top: 0;
      margin-bottom: 6px;
      color: #00a;
      text-decoration: underline;
    }
      #toc .desc a {
        text-decoration: none;
        color: #444;
      }
      #toc .desc a:hover, #toc .desc a:hover h4 {
        text-decoration: underline;
      }


/* Subscribing form
*******************************************************************************/

    #content #subscribe {
    }

      #content #subscribe .desc {
      }

      #content #subscribe .subscribe-table {
        margin-top: 15px;
      }

      #content #subscribe .subscribe-table tr.finish-line td {
      }
      #content #subscribe .subscribe-table tr.together td {
      }
      #content #subscribe .subscribe-table tr.apart td {
        padding-top: 15px;
      }

        #content #subscribe .subscribe-table tr.finish-line input {
          margin-right: 10px;
        }

      #content #subscribe .subscribe-table .email {
        width: 160px;
      }

      #content #subscribe .subscribe-table .parenthetical {
        font-weight: normal;
      }

      #content #subscribe .subscribe-table {
        margin-top: 15px;
      }


.form-table {
  font-weight: bold;
}

div.error {
  color: red;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}


.subscribe-table .search {
  width: 225px;
}

/* Subscriptions page
*******************************************************************************/

table.subscriptions-topbox {
  vertical-align: top;
  margin-top: 15px;
}

  td.topbox-main {
    border: 2px solid #ccc;
    padding: 17px;
    width: 164px;
    vertical-align: top;
  }

    td.topbox-main h4 {
      margin-top: 0;
    }

  td.topbox-between {
    width: 20px;
  }

table.subscriptions {
  padding-left: 10px;
  padding-right: 20px;
  width: 100%;
}

  table.subscriptions tr.header {
    font-weight: bold;
  }

    table.subscriptions tr.subscription td {
      border-top: 1px solid #ccc;
    }

    table.subscriptions td {
      padding: 5px;
      padding-left: 15px;
      padding-right: 15px;
      text-align: left;
    }

    table.subscriptions td.checkbox {
      text-align: center;
      width: 50px;
    }
    table.subscriptions td.category {
    }
    table.subscriptions td.subcategory {
    }
    table.subscriptions td.options {
    }



/* History page
*******************************************************************************/

.notif-curweek {
  font-weight: bold;
}

ul.notif-changeweek {
  margin-left: 0;
  padding-left: 15px;
  padding-bottom: 15px;
}


ul.notif-changeweek li {
  display: inline;
  padding-right: 10px;
}

table.notif-table {
  width: 100%;
  margin-top: -30px;
}

table.notif-table td.notif-date {
  padding-top: 30px;
}

table.notif-table .notif-date-inner {
  font-weight: bold;
  padding: 5px 10px;
  background: #F2E2A4;
}

.notif-section {
  padding: 0px 10px 3px 10px;

}

  .notif-section-inner {
    border-bottom: 1px solid #bbb;
    padding-bottom: 2px;
  }

.notif-section a {
  font-weight: bold;
  text-decoration:none;
  color:#aaa;
}

/* Subcategories
*******************************************************************************/

    #content #subcategories {
      padding-right: 0;
      padding-top: 25px;
      border-top: 1px solid #888;
      margin-top: 25px;
    }

      #content #subcategories .title {
        color: #980000;
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 15px;
      }

      #content #subcategories .panel {
        background: #F2E2A4;
        padding-top: 10px;
        padding-bottom: 15px;
        font-size: 14px;
        padding-left: 15px;
      }

      #content #subcategories ul {
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 20px;
        margin-left: 0px;
        list-style-image: url('/images/bullet_tan.gif');
      }

      #content #subcategories ul.parent {
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 20px;
        margin-left: 0px;
        list-style-image: url('/images/bullet_tan_sideways.gif');
      }

        #content #subcategories ul li {
          margin-bottom: 5px;
          margin-top: 5px;
        }

          #content #subcategories ul li a {
            color: #444;
            text-decoration: none;
          }
            #content #subcategories ul li a:hover {
              text-decoration: underline;
            }


/* Micellaneous (reorganize!)
*******************************************************************************/

span.highlight {
  color: #0B9C00;
  font-weight: bold;
}


  ul.navlist {
    list-style-image: url('/images/bullet_white.gif');

    margin-top: 25px;
    margin-bottom: 25px;

    /* Trying to set reasonable spacing in FF and IE */
    padding-left: 15px;
    margin-left: 2px;
  }
    ul.navlist li a {
      color: blue; /* #444; */
      text-decoration: none;
    }
    ul.navlist li a:hover {
      text-decoration: underline;
    }

.rememberme {
  margin-left: 10px;
  margin-right: 10px;
}

img#about-bonequinho {
  float: right;
  margin-right: 28px;
}

input.search {
  width: 200px;
}

table.results {
  margin-left: 15px;
}

p.matches-header {
  margin-top: 25px;
}

/* p.main-search-box {
  margin-left: 15px;
} */

input.side-search-box {
  width: 140px;
}

.blog-image {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

  .blog-image div {
    font-size: 10px;
    color: #bbb;
  }

  .blog-image div a {
    color: #bbb;
    text-decoration: none;
    border-bottom: 1px dotted #ccc;
  }

.share-category {
  margin-bottom: 15px;
}

  .share-category a.share-title {
    display: block;
    background: #EAEAEA url('/images/button_revealdown.gif') no-repeat 10px center;
    padding-left: 40px;
    padding-top: 5px;
    padding-bottom: 7px;
    color: #002FB4;
  }

  .share-category #share-body {
    display: none;
    border: 1px solid #EAEAEA;
    padding: 8px;
  }

  .share-category textarea.emails {
    height: 85px;
    width: 265px;
  }

  .share-category textarea.message {
    height: 265px;
    width: 265px;
  }

  .share-category table td {
    vertical-align: top;
  }

  .share-category .share-fielddesc {
    font-weight: bold;
  }

    .share-category .share-fielddesc .share-extra {
      color: #888;
      font-weight: normal;
    }

/* iTunes uploader */

#itunes-page #content #main-column {
  width: 100%;
}

iframe {
  border: none;
  padding: none;
  overflow: hidden;
}

#uploading-action-area {
  margin-top: 20px;
  margin-bottom: 20px;
}

#finished-instructions-box {
  border: 1px solid #cc0;
  background: #ffb;
  padding: 15px;
}

#check-all-none-links {
  margin: 25px 0 -10px;
}

#check-all-none-links a {
  margin-right: 15px;
}

#artists-table {
  margin-top: 20px;
  width: 660px;
  vertical-align: middle;
}

#artists {
}
  #artists td {
    padding: 3px 0;
  }

  #artists div.artist-line {
    border-top: 1px solid #CCC;
  }

  #artists #artists-header {
    border-top: none;
    font-weight: bold;
    background: #666;
    color: white;
  }

  #artists td.artist-check {
    width: 100px;
    padding: 0; /* Because checkboxes can be relaly big! */
    text-align: center;
  }

  #artists td.artist-name {
    /*width: 250px;*/
    padding-left: 5px;
  }

  #artists td.artist-count {
    width: 100px;
    text-align: center;
  }

  #artists td.artist-amazon {
    width: 80px;
    text-align: center;
  }

  #artists td.artist-jambase {
    width: 80px;
    text-align: center;
  }

  #artists td.hidden {
    display: none;
  }

/* #artists-wrap {
  margin-top: 20px;
  width: 660px;
}

  #artists-wrap div.artist-line {
    clear: both;
    padding-top: 3px;
    border-top: 1px solid #CCC;
  }

  #artists-wrap #artists-header {
    border-top: none;
    font-weight: bold;
    background: #666;
    color: white;
  }

  #artists-wrap div.artist-check {
    float: left;
    width: 100px;
    text-align: center;
  }

  #artists-wrap div.artist-name {
    float: left;
    width: 250px;
    padding-bottom: 3px;
    padding-left: 5px;
  }

  #artists-wrap div.artist-count {
    float: left;
    width: 100px;
    padding-bottom: 3px;
    text-align: center;
  }

  #artists-wrap div.artist-amazon {
    float: left;
    width: 80px;
    text-align: center;
  }

  #artists-wrap div.artist-jambase {
    float: left;
    width: 80px;
    text-align: center;
  } */

  /* IMPORTANT: we CAN'T use the background combined property because
     this will override the background color property, even if we set it
     to transparent, and there's a bug in IE where setting TR background
     color actually sets TD color, which means it gets overridden to
     transparent. But the following works: */

  #artists .itunes-amazon {
    background-image:  url('/images/itunes_album.gif');
    background-repeat: no-repeat;
    background-position: center center;
  }

  #artists .itunes-jambase {
    background-image:  url('/images/itunes_concert.gif');
    background-repeat: no-repeat;
    background-position: center center;
  }

  #artists .itunes-none {
    background-image:  url('/images/itunes_none.gif');
    background-repeat: no-repeat;
    background-position: center center;
  }