/* Enter Your Custom CSS Here */
h2::first-letter {
	font-size: 150%;
}
.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
		width:100%;
	}
a:link {font-weight:400;
}
.genesis-nav-menu a {
	color: #000;
	display: block;
	font-family: Montserrat, sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1px;
	padding-top: 25px; padding-left:10px; padding-right:10px; padding-bottom:15px;
	text-transform: uppercase;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button,
.footer-widgets .button,
.sidebar .button {
	background-color: #fff;
	border: 1px solid #1f487c;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
.entry-content .button:hover,
.footer-widgets .button:hover,
.sidebar .button:hover {
	background-color: #1f487c;
	border-color: #1f487c;
	color: #fff;
}

.sidebar .widget {
	background-color: #fff;
	border: 1px solid #1f487c;
	margin-bottom: 60px;
	padding: 40px 40px 30px;
}
.sidebar .widget-title {
	background-color: #1f487c;
	color: #fff;
	font-size: 12px;
	margin-bottom: 30px;
	margin-top: -67px;
	padding: 20px;
	text-align: center;
}

.sidebar .widget-title a {
	border-width: 0;
	color: #fff;
}
/*.navigation-container {
		background-color: #fff;
		border-bottom: 1px solid #1f487c;
		border-top: 1px solid #1f487c;
		margin-bottom: 98px;
		margin-top: -170px;
		min-height: 70px;
	}*/
.single .author-box {
	border-top: 1px solid #1f487c;
	padding-top: 30px;
}
.footer-widgets {
	border-top: 1px solid #1f487c;
}
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #1f487c; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: #1f487c;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* 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: #1f487c transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}