/* Jacob W. Chesna */
/* 20231025 */

/* -------------Adaptive Web------------- */
.mobile {
  display: none;
  visibility: hidden;
}

@media screen and (max-width:900px), screen and (max-height:500px) {
    .desktop { display: none !important; }
    .mobile  { display: block; visibility: visible; }
}

/* -------------Desktop & Mobile------------- */
body {
	text-align: center;
	background-color: black;
	color: lime;
}

.imgBlock{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.imgMap{
	max-width: 350px;
}

table, th, td {
	padding: 0;
	border-spacing: 0;
	margin-left: auto;
	margin-right: auto;
}

/* unvisited link */
a:link {
  color: #189900;
}

/* visited link */
a:visited {
  color: #779933;
}

/* mouse over link */
a:hover {
  color: #00172A;
}

/* selected link */
a:active {
  color: #400807;
}

/* -------------Desktop------------- */
/* layout guidelines: */
/* 	body 		900px Min 	*/
/*  banner 		750 x 200px	*/
/* 	navImage 	750 x 600 */
/* 	footer 		750 x 200px */

/* -------------Mobile------------- */
.mobileImg {
	max-height: 100%;
    max-width: 100%;
}

/* -------------Engineer------------- */
.publist {
	color: #779933;
	line-height: 1.8em;
	text-align: left;
	list-style-type: decimal;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.publist ol li {
	padding-bottom: 16px;
}
.featureText{
	color: lime;	
}
hr {
  border-top: 1px solid #779933;
  border-bottom: 1px solid #779933;
}
