#tinkertoy h1
{
  font-size: 20px;
}


#tinkertoy
{
  border: none;
  display: none;
  height: 230px;
  position: relative;
  width: 300px;
  margin-top: -20px;
}

#tinkertoy .label
{
  background: white;
  color: black;
  border: 1px solid black;
  cursor: pointer;
  font-size: 11px;
  padding: 2px;
  text-align: center;
  /* ellipsis handling */
  text-overflow: none;
  -moz-binding: url("ellipsis.xml#remove");
  -moz-user-select: none; /* no elements selectable */
  -o-text-overflow: none;
}

#tinkertoy.truncated
{
  display: block;
  overflow: hidden;
  white-space: nowrap;
  /* ellipsis handling */
  text-overflow: ellipsis;
  -moz-binding: url("ellipsis.xml#add");
  -o-text-overflow: ellipsis;
}
