*, *::before, *::after {box-sizing: border-box;}
* {margin: 0;}
body {line-height: 1.5; -webkit-font-smoothing: antialiased;}
img, picture, video, canvas, svg {display: block; max-width: 100%;}
input, button, textarea, select {font: inherit;}
p, h1, h2, h3, h4, h5, h6 {overflow-wrap: break-word;}
p {text-wrap: pretty;}
h1, h2, h3, h4, h5, h6 {text-wrap: balance;}
#root, #__next {isolation: isolate;}
li {margin: 0; padding: 0; border: 0;}
ol, ul {list-style: none;}


body {
	font-family: 'Ubuntu', Arial, sans-serif;
	font-size: 14px;
	margin: 0 auto;
	width: 960px;		
	background-color: whitesmoke;	
	background-image: url("../includes/bg.jpg");
	background-repeat: repeat-x;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;			
}

.navbar {
	background-color: #03579B;
	height: 60px;
	font-size: 22px;
	width: 960px;
	position: fixed;
	top: 0;
}

nav {
	margin: 0;
	font-weight: bold;
}

nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: space-between;
}

nav li {
	display: inline;
	padding: 0 20px 15px 20px;
}

nav a {
	text-decoration: none;
	color: white;
	display: inline-block;
	padding-top: 15px;
}

nav a:hover {
	color: white;
	text-decoration: underline;
}

nav a:active {
	text-decoration-line: underline;
}


header {
	padding-top: 80px;
	color: black;	
	background-color: white;
}

main {
	padding: 40px 0 40px 0;
	color: black;	
	background-color: white;	
	min-height: 100vh;	
}

main a, main a:visited {
  color: blue;  
}

main a:hover, main a:focus {
  color: purple;
  } 

main a[target="_blank"]:after{
	padding-left: 4px;
	content: url("../includes/external16.png");
	}


main p{
	font-size: 16px;
	line-height: 20px;
	text-wrap: pretty;
	padding: 0 20px;
}

main ul{
	list-style: disc;
	list-style-position: outside;
}

main ol {
	list-style-position: outside;
	list-style-type: decimal;
}

main table, th, td {
	font-family: 'Ubuntu', Arial, sans-serif;
	font-size: 14px;
	line-height: 16px;
	color: black;
	border: 1px solid #666;;
	border-collapse: collapse;
	padding: 0 10px;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

main th, td {
	width: 33%	
}

hr {	
	margin: 40px 0;
}

footer {
	font-family: 'Ubuntu', Arial, sans-serif;
	font-size: 14px;
	color: white;
	background-color: #03579B;
	padding: 20px;
	text-align: center;	
}

footer a {
	color: white;
	text-decoration: none;
	padding-top: 15px;
}

footer a:hover {
	color: white;
	text-decoration: underline;
}

footer #farmlinks{
	display: none;	
}


@media screen and (max-width: 700px) {
nav {
	width: 100%;
	margin-top: -5px;
}

nav li {
	display: block;
	background-color: #03579B;
	text-align: center;
}
}

