body{
    padding: 1em;
}
em{
  font-style: italic;
}
p{
  margin: 1em 0;
}
/* artist info */
div#artist-info{
    background: #eef;
    margin: 1em;
    padding: 1em;
}
div#artist-info h1#artist-name{
    font-weight: bold;
}
div#artist-tracklist{
    background: #ddf;
    margin: 1em 0 0;
    padding: 1em;
}
div#artist-tracklist > div{
    background: #ccf;
    height: 100px;
    width: 110px;
    margin: 1em;
} 


/* art strip */
div#art-strip{
  background: #fee;
  padding: 20px;
  margin: 1em;
  overflow: auto;
}
div#art-strip > div{
  background: #fdd;
  float: left;
  height: 100px;
  width: 100px;
  margin: 10px;
}


/* toggles */
div#toggles{
  background: #fcc;
  padding: 20px;
  margin: 1em;
}
div#toggles div.toggle{
  background: #fbb;
  overflow: auto;
  margin: 0 0 1em;
}

div#toggles div.toggle div.choices{

}
div#toggles div.toggle div.choices div{
  background: #faa;
  float: left;
  height: 60px;
  width: 60px;
  margin: 1em;
}

/* section choices */
div#section-choices{
    background: #fef;
    margin: 1em;
    padding: 1em;
}
div#section-choices div.section{
    background: #fdf;
    overflow: auto;
    margin: 0 0 1em;
}
div#section-choices div.section div.choices{
    
}
div#section-choices div.section div.choices div{
  background: #fcf;
    float: left;
    height: 100px;
    width: 100px;
    margin: 1em;
}
    

/* search */

div#search{
    background: #efe;
    padding: 1em;
    margin: 1em;
}
div#search input{
    background: #fff;
}
div#search ul.suggest{
    position: absolute;
    border: solid 1px #ddd;
    display: none;
}
div#search ul.suggest li{
    background: #dfd;
    cursor: default;
    display: block;
    padding: 0.5em 1em;
    width: 200px;
}
div#search ul.suggest li a{
    display: block;
    text-decoration: none;
    
}
div#search ul.suggest li a:hover{
    text-decoration: underline;
}