
body {margin: 0;font-family: Verdana}

 /* Some text class selectors that can be ref'd by "class=" */
 
	.tbighead { font: 14pt Verdana,Arial,sans-serif; color:#1A2951; font-weight: bold; text-decoration: none }
	.thead { font: 11pt Verdana,Arial,sans-serif; color:#1A2951; font-weight: bold; text-decoration: none }
	.tbody { font: 9pt Verdana,Arial,sans-serif; color:#1A2951; text-decoration: none }
	.tsmall { font: 7pt Verdana,Arial,sans-serif; color:#1A2951; text-decoration: none }
	.tmicro { font: 1pt Verdana,Arial,sans-serif; color:#1A2951; text-decoration: none }

/* So we don't underline links*/
a:link {
	text-decoration: none;
	color: #1A2951;
	font-weight: bold;
}

/* So we don't decorate visited sites */
a:visited {
	text-decoration: none;
	decoration: none;
	outline: none;
	color: #1A2951;
	font-weight: bold;
}

/* So we change color when we hover over links*/
a:hover {
	background-color: #909090;
	color: #1A2951;
}

/* End Added */
/* --------------- */

/* Navigation Bar with top nav for phones */

/* This is our background color */
.topnav {
	overflow: hidden;
	background-color: #E04C10;
}


/* Style the links in the nav bar */
.topnav a {
	float: left;
	display: block;
	color: #1A2951;
	text-align: center;
	padding: 8px 10px;
	text-decoration: none;
	font-size: 14px
}

/* Style the links in the nav bar */
.topnav a.active {
	color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
	display: none;
}

/* Dropdown container */
.dropdown {
	float: left;
	overflow: hidden;
}

/* Style the dropdown button to fit in topnav */
.dropdown .dropbtn {
	font-size: 14px;
	border: none;
	outline: none;
	color: white;
	padding: 8px 10px;
	background-color: #1171C1;
	font-family: inherit;
	margin: 0;
}

/* Style the dropdown content - hidden by default */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #E8E8E8;
	min-width: 180px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

/* Style the links in the dropdown */
.dropdown-content a {
	float: none;
	color: black;
	padding: 8px 10px;
	text-decoration: none;
	display: block;
	text-align: left;
	font-weight: normal;
}

/* Define a hover background for topnav and the dropbutton */
/* 1/1/2020 - separated these two...
.topnav a:hover:not(.active), .dropdown:hover .dropbtn {
	background-color: #909090;
	color: #1A2951;
}
*/

/* Define a hover background for topnav */
.topnav a:hover:not(.active) {
	background-color: #909090;
	color: #1A2951;
	}
/* Define a hover background for the dropbutton */
.dropdown:hover .dropbtn {
	background-color: #C0C0C0;
	color: black;
	}

/* Define a hover background for the dropdown links - Not used */
.dropdown-content a:hover {
	background-color: #FF0000;
	color: red;
}

/* Show dropdown menu when mouse moves over the drop button */
.dropdown:hover .dropdown-content {
	display: block;
}

/* for showing thumbnails...hover doesn't work because it's overidden by main hover */
.imgthumb {
	border: 1px solid #E0E0E0;
	/* border-radius: 4 px; */
	padding: 2px,2px;
	width: 160px;
    /*height: auto;*/
    height: 230px;
	text-align: center;
}

.imgthumb: hover {
	box-shadow: 0 0 2px 1px rgba(144, 144, 144, 0.5);
}

/* 1/1/2020 (Changed from 700px to 768px) */

/* When screen is less than 768px pixels wide, hide all links except "home".
Show the link that contains should open and close the topnav (.icon) */

@media screen and (max-width: 768px){
	.topnav a:not(:first-child), .dropdown .dropbtn {display: none;}
	.topnav a.icon {
	    float: right;
		display: block;
	}
}

/* The "responsive" is added to the topnav with JavaScript when the user clicks on the icon.
This class makes the topnav look good on small screens by displaying the links vertically
instead of horizontally.
*/

@media screen and (max-width: 768px){
	.topnav.responsive {position: relative;}
	.topnav.responsive a.icon {
	    position: absolute;
		right: 0;
		top: 0;
	}
	.topnav.responsive a {
	    float: none;
		display: block;
		text-align: left;
	}
	.topnav.responsive .dropdown {float: none;}
	.topnav.responsive .dropdown-content {position: relative;}
	.topnav.responsive .dropdown .dropbtn {
		display: block;
		width; 100%;
		text-align: left;
	}
}