body {
	margin: 0;
	padding: 0;
	background-color: black;
	color: white;
	font-size: 1em;
	font-family: sans-serif;
}

.clearfloat {
	clear: both;
}

a {
	color: yellow;
}

a:visited {
	color: orange;
}

a:hover {
	color: lightgrey;
}

@font-face {
	font-family: 'PoiretOne';
	src:
		url('elements/PoiretOne-Regular.ttf');
}

.header_box {
	box-sizing: border-box;
	width: 100vw;
	padding: 15px;
	background-color: black;
	text-align: center;
	color: white;
	margin: 0;
}

.header_logo {
	width: 100%;
	max-width: 1024px;
}

.header_link {
	display: inline-block;
	padding: 5px;
	margin: 10px;
	background-color: black;
	font-size: 1.2em;
	font-family: PoiretOne;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
}

.header_link_a {
	color: white;
	text-decoration: none;
}

.header_link_a:visited {
	color: white;
	text-decoration: none;
}


.header_link:hover {
	color: black;
	background-color: white;
}

.content_box {
	margin: auto;
	width: 80%;
	max-width: 1200px;
	min-height: 80vh;
}

.footer_box {
	box-sizing: border-box;
	width: 100vw;
	padding: 15px;
	background-color: rgb(10,10,10);
	text-align: center;
	color: white;
	margin: 0;
	font-size: 0.8em;
}

.drop_logo {
	margin: 20px;
	float: left;
	max-width: 10vw;
	min-width: 150px;
}

.drop_heading {
	font-size: 1.2em;
	font-weight: bold;
}

.horizontal_rule {
	display: block;
	box-sizing: border-box;
	background-color: white;
	height: 3px;
	width: 90%;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	content: ' ';
	overflow: visible;
}
.horizontal_rule:before {
	position: relative;
	display: block;
	box-sizing: border-box;
	background-color: white;
	height: 3px;
	width: 70%;
	margin: auto;
	margin-top: 10px;
	content: ' ';
	top: -13px;
}
.horizontal_rule:after {
	position: relative;
	display: block;
	box-sizing: border-box;
	background-color: white;
	height: 3px;
	width: 70%;
	margin: auto;
	content: ' ';
	top: 10px;
}

.article_box {
	box-sizing: border-box;
	padding: 15px;
	border: 1px solid darkgrey;
	margin-top: 10px;
	overflow: auto;
}

.article_box_thumbnail {
	float: left;
	box-sizing: border-box;
	margin-right: 10px;
	overflow: auto;
	width: 25%;
	max-width: 350px;
	min-width: 100px;
}

.article_thumb_img {
	width: 100%;
}

.article_box_description {
	 
}

.product_box {
	overflow: auto;
	padding: 0;
	margin-bottom: 25px;
}

.product_image {
	float: left;
	width: 55%;
	overflow: auto;
	box-sizing: border-box;
	padding: 15px;
}

.product_info {
	float: right;
	width: 30%;
	overflow: auto;
	box-sizing: border-box;
	padding: 15px;
}

.product_headline_image {
	width: 100%;
}

.price {
	font-size: 2em;
	font-weight: bold;
	color: green;
}

.article_image {
	display: block;
	width: 80%;
	margin: auto;
}

.aside_box {
	position: relative;
	width: 90%;
	margin: auto;
	overflow: auto;
	margin-bottom: 15px;
	padding: 15px;
	border: 1px solid darkgrey;
	box-shadow: 5px 5px 0px darkgrey;
}

.color_square {
	display: inline-block;
	width: 25px;
	height: 25px;
	box-sizing: border-box;
	margin: 5px;
	border: 1px solid grey;
}

.sq_green {
	background-color: lightgreen !important;
}
.sq_orange {
	background-color: orange !important;
}
.sq_blue {
	background-color: blue !important;
}
.sq_red {
	background-color: red !important;
}
.sq_yellow {
	background-color: yellow !important;
}
.sq_purple {
	background-color: purple !important;
}
.sq_pink {
	background-color: pink !important;
}
.sq_glow {
	background-color: rgb(226, 252, 187) !important;
}
.sq_silver {
	background-color: rgba(237, 237, 237) !important;
	linear-gradient(rgb(153, 153, 153) 0%, rgba(237, 237, 237) 100%);
}

@media only screen and (max-width: 900px) {

	.product_image {
		float: none;
		width: 100%;
		overflow: auto;
		box-sizing: border-box;
		padding: 15px;
	}

	.product_info {
		float: none;
		width: 100%;
		overflow: auto;
		box-sizing: border-box;
		padding: 15px;
	}
}