* {
	box-sizing: border-box
}

img {
	width: 100%;
}
body {
	background-color: lightblue;
	margin: 0px;
	padding: 0px;
	font-size: 100%;
}

hr { 
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
} 

div.header {
	background-color: black;
	color: white;
	text-align: center;
	padding: 20px; 
	width: 100%;
	float: left;
	font-size: 2.2em;
}

div.bodyBackground {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

div.nav {
	background-color: white;
	float: left;
	line-height: 40px;
	color: black;
	padding: 10px;
	width: 30%;
	text-align: center;
}

div.menuItem {
	background-color: #595959;
	width: 25%;
	float:left;
	text-align: center;
	font-size: 1.375em;
	padding: 10px;
}

div.menuItem a:link,
div.menuItem a:visited {
	color: white;
}

div.menuItem:hover {
	background-color: black;
}

div.article {
	background-color: white;
	float: left;
	color: black;
	width: 100%;
	padding: 10px;
}

div.articleTitle {
	background-color: white;
	color: black;
	padding: 10px;
	width: 100%;
	float: left;
	font-size: 1.5em;
}

div.articleThumb {
	padding: 10px;
	width: 48%;
	float: left;
	text-align: center;
	border-style: solid;
    border-width: 1px;
	margin: 5px 1%;
}

div.articleDownloadThumb {
	padding: 10px;
	width: 98%;
	float: left;
	border-style: solid;
    border-width: 1px;
	margin: 5px 1%;
}

div.articleDownloadThumb img {
	width: 30%;
	float: left;
	margin-right: 10px;
}

a.showMore {
	padding: 5px;
	float: left;
	text-align: center;
	background-color: #595959;
	color: white;
	margin: 5px 1%;
	text-decoration: none;
}

a.showMore:hover {
	background-color: black;
}

div.articleThumb:hover {
	background-color: #EEEEEE;
}

div.video {
	position: relative;
	width: 560px;
	height: 315px;
	top: 50px;
}

div.video iframe {
	position:absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

div.footer {
	background-color: #595959;
	color: white;
	text-align: center;
	padding: 5px; 
	width: 100%;
	float: left;
}

div.footer * {
	color: white;
	text-align: center;
}

div.noWrap {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media only screen and (max-width: 1000px) {
	
	div.articleThumb {
		width: 48%;
	}
}

@media only screen and (max-width: 650px) {

	div.menuItem {
		width: 100%;
		border-style: solid;
		border-width: 1px;
	}
	
	div.articleThumb{
		width: 48%;
	}
	
	div.articleDownloadThumb {
	width: 98%;
	}
	
	div.articleDownloadThumb img {
	width: 50%;
}
	
	a.showMore {
		width: 100%;
	}
}

@media only screen and (max-width: 600px) {
	
	div.video {
		position: relative;
		width: 100%;
		height: 0;
		padding-bottom: 56.25%;
	}
}