/* Trojanboats.net responsive style sheet - 05-20-2019 */
* { box-sizing: border-box; }
* { padding: 0; margin: 0; }

h1 {
	display: block;
	font-size: 1.6em;
	margin-top: 0.2em;
	margin-bottom: 0.2em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

body {
	margin: 0; 
	font-family: verdana, ariel; 
	background-color: #0071AB	
}

/**** Added 3/26/2021 ***************************/
.inset {
    width: 90%; 
    margin-top: 6px;	
}

.col-85 {
    width: 85%;
    text-align: left;
    font-family: verdana, ariel;
    padding: 10px;
}

/************************************************/
/* Create columns that float next to each other */
.left, .right {
    float: left;
    width: 15%;
    padding: 10px; }

.center_main {
    float: left;
    width: 70%;
    padding: 20px;
	border-right: 1px solid #000000;
	border-left: 1px solid #000000; }

.center_main_parts {
    float: left;
    width: 70%;
    padding: 5px;
	border-right: 1px solid #000000;
	border-left: 1px solid #000000; }
	
.mobile-hide {
/* empty class to bracket and hide on mobile */	
}	

.generic {
/* generic class - style applied in-line */
}

.feature {
	width: 100%;
    border: 2px solid #cc3300;
	border-radius: 8px;
    padding: 5px;
    margin: auto;
	background-color: #ffcc00;
	text-align: center; }

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both; }

/*================================================================= */
.header {
	height: 125px;
	width:100%;
	text-align: center;
	background-color: #009933;
	color: black;
	font-family: verdana, ariel;
	border-bottom: 1px solid #000000; }

.footer {
 width:100%;
 height:100px;
 text-align: center;
 font-size: 15px;
 border-top: 1px solid #000000; 
 background-color: #009933; }

/*================================================================= */
.topnav {
  overflow: hidden;
  background-color: #006600;
  border-bottom: 1px solid #000000; }

.topnav a {
  float: left;
  display: block;
  background-color: #006600;
  color: #FFDEAD;
  text-align: center;
  padding: 8px 10px;
  text-decoration: none;
  font-size: 16px;
  border-right: 1px solid #000000; }

.topnav .icon {
  display: none; }

.dropdown {
    float: left;
    overflow: hidden;
	border-right: 1px solid #000000; }

.dropdown .dropbtn {
    font-size: 16px;    
    border: none;
    outline: none;
    color: #FFDEAD;
    padding: 8px 9px;
    background-color: inherit;
    font-family: inherit;
    margin: 0; }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #6699FF;
    min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1; }

.dropdown-content a {
    float: none;
    color: #FFDEAD;
	background-color: #009999;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
	border-bottom: 1px solid #000000; }

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #6699FF;
  color: #FFDEAD; }

.dropdown-content a:hover {
    background-color: #33cc33;
    color: black; }

.dropdown:hover .dropdown-content {
    display: block; }

/*================================================================= */
@media screen and (max-width: 900px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none; }
    
  .topnav a.icon {
    float: right;
    display: block; }

/* hide the left and right sides on mobile devices */
  .left, .right, .mobile-hide {
	display: none; }
  
/**** Added 3/26/2021 ****/
   .inset, .col-85 {
        width: 100%;
        margin-top: 0; }
  
  .center_main, .center_main_parts {
	width: 100%; }

  .topnav.responsive {position: relative;}
  .topnav.responsive .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; }
}