/* -------- column container -------------------------- */

.colmask {
  position:relative;	/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
  clear:both;
  float:left; 
  width:100%;		/* width of portion of page allocated for use, can be less than all of width */
  overflow:hidden;	/* This chops off any overhanging divs */
  border-left:1px solid #878787;
  border-right:1px solid #878787;
  border-bottom:1px solid #878787;
}

/* ------- song entries -------- */

table.songlist {
  width:700px;
  font-size:0.85em;
  overflow:hidden;
}
tr.songlist {
  height:1em;
}
td.artist {
  width:200px;
}
td.country {
  width:120px;
}
td.title {
  font-style:italic;
  width:190px;
}
td.time {
  width:35px;
}
td.playlist {
  align:center;
  width:50px;
}

/* ------- playlist entries -------- */

table.playlist {
  width:700px;
  font-size:0.85em;
  overflow:hidden;
}
td.playlist-image {
  padding-right:8px;
  width=220px;
}
td.playlist-summary {
  width=450px;
}

