   .Qu {color: White; border: Solid 1px Orange; background-color: Blue;}
/* -- Examples -- */
@media (min-width: 640px) {
  .image-row {
    text-align: left; } }

.example-image-link {
  display: inline-block;
  padding: 2px;
  margin: 0 0.5rem 0.1rem 0.5rem;
  background-color: #fff;
  line-height: 0;
  border-radius: 4px;
  transition: background-color 0.5s ease-out; }
  .example-image-link:hover {
    background-color: #4ae;
    transition: none; }

.example-image {
  height: 120px; /*17rem;*/
  border-radius: 4px;
  }

.example-image-small {
  height: 120px; /*17rem;*/
  border-radius: 4px;
  }

.example-image-medium {
  height: 150px; /*17rem;*/
  border-radius: 4px;
  }

.example-image-tiny {
  height: 102px; /*60px 17rem;*/
  border-radius: 4px;
  }

.example-image-tiny20 {
  height: 20px; /*60px 17rem;*/
  border-radius: 4px;
  }

.example-image-tiny30 {
  height: 30px; /*60px 17rem;*/
  border-radius: 4px;
  }

.example-image-tiny47 {
  height: 47px; /*60px 17rem;*/
  border-radius: 4px;
  }

.example-image-260 {
  height: 260px; /*17rem;*/
  border-radius: 5px;
  }

.example-image-200 {
  height: 200px; /*17rem;*/
  border-radius: 5px;
  }
.example-image-300 {
  height: 300px; /*17rem;*/
  border-radius: 5px;
  }

[OP5tooltip]:before
{
  /* needed - do not touch */
  content: attr(tooltip);
  position: absolute;
  opacity: 0;
  
  /* customizable */
  transition: all 0.15s ease;
  padding: 8px;
  color: #333;
  border-radius: 8px;
  border: 1px solid Red;
  box-shadow: 8px 8px 8px black;
}

[OP5tooltip]:hover:before
{
  /* needed - do not touch */
  opacity: 1;
  
  /* customizable */
  background: Yellow;
  margin-top: 30px;
  margin-left: -0px;    
}

[OP5tooltip]:not([OP5tooltip-persistent]):before
{
  pointer-events: none;
}
.tooltip-inner
{
  max-width: 800px;
  width: 28em;
  color: #00FFFF;
  background-color:#258;
}