/* main location for t3results component */
div.t3ip {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color:black;
  height: 100%;
  overflow: scroll;
}

/* do not display the H@  header */
div.t3ip h2 {
  display: none;
}

/* present ul items as a comma-separated list */

div.t3ip ul {
  padding: 0;
  display: inline;
  list-style: none;
}

div.t3ip ul li {
  display: inline;
}

div.t3ip ul li:after {
  content: ", ";
}

div.t3ip ul li:last-child:after {
    content: "";
}