@charset "utf-8";

.nav-header {
	background-color: #003366;
}
.nav-header a:link {
	color: #009999;
	text-decoration: none;
}
.nav-header a:active {
	color: #009999;
	text-decoration: underline;
}
.nav-header a:hover {
	color: #009999;
	text-decoration: underline;
}
.nav-header a:visited {
	color: #009999;
	text-decoration: none;
}

.post {
	margin-bottom: 20px;
	padding-top: 10px;
}
.postheader {
	padding-bottom: 10px;
}
.posttitle {
	margin: 0px;
}
.postsecondarytitle {
	margin-bottom: 0px;
}
.postmetadata {
	font-style: italic;
}
.postcontent {
	margin-bottom: 0px;
}
.signature {
	font-family: "Times New Roman", Georgia, serif;
}
.pleft {
	float: left;
}

.aligncenter {
	text-align: center;
}

#postnav
{
	margin-bottom: 20px;
	text-align: center;
	width: 100%;
}
#postnav .newer
{
	position: relative;
	width: 50%;
	float: left;
	text-align: left;
}
#postnav .older
{
	position: relative;
	width: 50%;
	float: right;
	text-align: right;
}

.whitetext {
	color: #ffffff;
}

.triNav
{
	width: 100%;
	display: grid;
	grid-template-columns: 33% 34% 33%;
	margin-bottom: 20px;
}
.triNav .tnLeft
{
	text-align: left
}
.triNav .tnMid
{
	text-align: center;
}
.triNav .tnRight
{
	text-align: right;
}
.tnghost {
	color: #ffffff;
}

.ra-footer {
	background-color: #999999;
}

.pagenav {
	text-align: center;
}

.excerptlink {
	color: #000000;
	text-decoration: none;
}

#myBtn {
	display: none; /* Hidden by default */
	position: fixed; /* Fixed/sticky position */
	bottom: 20px; /* Place the button at the bottom of the page */
	right: 20px; /* Place the button 10px from the right */
	z-index: 99; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	background-color: #f4f4f4; /* Set a background color */
	color: #999999; /* Text color */
	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 0px; /* Some padding */
	border-radius: 10px; /* Rounded corners */
	font-size: 18px; /* Increase font size */
	font-weight: bold;
	width: 50px;
	height: 50px;
	margin: 0px;
}

#myBtn:hover {
	color: #000000;
}

/*Nav Dropdown*/
nav ul li ul
{
	visibility: hidden;
	opacity: 0;
	position: absolute;
	transition: all 0.5s ease;
	right: 0;
	display: none;
}
nav ul li:hover > ul,
ul li:focus-within > ul,
ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}
nav ul li ul li {
	clear: both;
	width: 100%;
	padding: 5px 15px 5px 15px;
	margin: 0px;
}
nav ul li ul li a {
	display: block;
}
@media (min-width: 0px) {
	.navData {
		width: 145px;
	}
}
@media (min-width: 576px) {
	.navData {
		width: 155px;
	}
}
@media (min-width: 768px) {
	.navData {
		width: 160px;
	}
}
@media (min-width: 992px) {
	.navData {
		width: 170px;
	}
}
@media (min-width: 1200px) {
	.navData {
		width: 185px;
	}
}
nav .dropdown {
	overflow: hidden;
	border: none;
	outline: none;
	background-color: #003366;
	color: #009999;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	z-index: 100;
}
nav .dropdown:hover {
	display: block;
} 