body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	margin: 0px;
	background-image: url('images/iadpBackground.jpg');
	background-repeat: repeat-x;
	background-color: #000;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

.site-main {
	max-width: 796px;
	margin: 0 auto;
}

.nav {
	background-image: -moz-linear-gradient(90deg, rgb(113, 112, 108) 0%, rgb(163, 164, 158) 100%);
	background-image: -webkit-linear-gradient(90deg, rgb(113, 112, 108) 0%, rgb(163, 164, 158) 100%);
	background-image: -ms-linear-gradient(90deg, rgb(113, 112, 108) 0%, rgb(163, 164, 158) 100%);
	padding: 0 10px;
}

.sitemenu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sitemenu li {}

.sitemenu a {
	display: inline-block;
	font-size: 12px;
	line-height: 12px;
	background: #fff;
	color: #000;
	text-decoration: none;
	padding: 7px 6px 8px 6px;
	text-transform: uppercase;
	border-radius: 10px 10px 0 0;
	margin: 0 5px;
	font-family: "arial";
	font-weight: 600;
}

.sitemenu a:hover {
	color: #EC9D31;
}

/**/
.site-content {
	background: #FFF;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 15px;
}

.site-content-left {
	width: 186px;
}

.site-content-copy {
	flex: 1;
}

.site-content-copy a {
	color: #FF9900;
}

/**/
.footer {
	background-image: url(images/bottom.jpg);
	background-repeat: repeat-x;
	background-color: #c7c8c2;
	padding: 20px 15px 15px;
	text-align: center;
	font-weight: 700;
	font-size: 10px;
}

.footer a {
	color: #808080;
}


@media screen and (max-width: 767px) {
	body {
		font-size: 16px;
	}
	.nav {
		padding: 10px;
	}

	.sitemenu {
		justify-content: flex-start;
		gap: 10px;
	}

	.sitemenu a {
		padding: 10px 12px;
		border-radius: 10px;
		margin: 0;
	}

	.site-content {
		flex-direction: column;
	}


	.site-content-left {
		width: 100%;
		text-align: center;
	}

	.site-content-copy img {
		float: none !important;
		margin: 0 auto 20px !important;
		display: block;
	}

	.site-content-copy p:empty {
		display: none;
	}

	.site-content-copy p:not(:empty):not(:has(*)) {
		display: none;
	}
}