@charset "utf-8";
.redcenterbold {
	text-align:center;
  text-indent:0;
  color:#FF0000;
  font-weight:bold;
  }
.imgbottom {
	margin-bottom:1em;
  }
div#mermaid td {
	border:#0000ff double 3px;
  background-color:#00FFFF;
  padding:1em;
  text-align:left;
  }
#merchlist {
	display:block;
    width:400px;
	margin: 20px auto;
    }
    
    /*Text/image hyperlink*/
    
.thumbnail{
position: relative;
z-index: 0;
}

a.thumbnail { cursor:default; } /*pointer instead of hand*/

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -9999px;
/*border: 1px dashed gray;*/
border: 2px double gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -275px;
left: 50px; /*position where enlarged image should offset horizontally */
}    