/*your custom style goes in this file*/
/*if you're overriding style blocks from genstyle.css, you only need to include the attributes you're overriding, not the whole block*/

.site-inner {
  padding-top: 0px;
}
.site-title a:hover {
	color:#FF3300;
	text-decoration:underline;
}
#content-desktop {display: block;}
#content-mobile {display: none;}
	.mmaintitle {
	text-align:center;
	}
	#mcontent {margin-top: 20px;}
	.responsive-menu-icon {display:none;}
	.site-title {
		text-align:center;
	}
	.featured-content .entry,
	.site-header .search-form,
	.tng-nav .site-header,
	.title-area {
		padding-top:2px;
		float: none;
		width: auto;
}
@media only screen and (max-width:1139px) {
#content-desktop {display: block;}
#content-mobile {display: none;}
}
@media only screen and (max-width:1023px) {
#content-desktop {display: block;}
#content-mobile {display: none;}
}
@media screen and (max-width: 768px) {

#content-desktop {display: none;}
#content-mobile {display: block;}
}
figure {
  border: 0px #cccccc solid;
  display: inline-block;
  padding-bottom: 6px;
  margin: 0px;
}
figure img {
    vertical-align: top;
    border: 1px #000000 solid;
}
figcaption {
  background-color: LemonChiffon ;
  color: black;
  font-style: italic;
  padding-top: 6px;
  padding-bottom: 6px;
  text-align: center;
  margin: 0px;
}
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 0px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: visible;
  width: 100px;
  background-color: #FF6;
  color: #000;
  text-align: right;
  padding: 5px 5px;
  border: 1px solid #000;
  border-radius: 3px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -55px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
a:hover {
  color: red;
  background-color: transparent;
  text-decoration: none;
}
a:active {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}