/* CSS Document */
* {
	box-sizing: border-box;
}
body {
background-image: linear-gradient(#000,#333,#F00,#333,#000);
	margin: 0 0 0 0;
	font-family: Arial;
	font-size: 100%px;
	position: relative;
}
a {
	color: #f00;
}
h1 {
	color: #F00;
	text-shadow: 2px 2px #333;
}
h2 {
	color: #000;
	margin: 50 0 30 0;
	font-size: 100%px;
}
h3 {
	color: #F00;
	font-size: 120%;
	margin: 50 0 30 0;
}
span {
	font-weight: bold;
}
li {
	list-style-image: url('img/li.png');
	font-size: 100%;
	font-weight: bold;
	margin-left: 10px;
	padding: 2px;
	list-style-position: inside;
}
img {
	width: 10%;
	border-radius: 15%;
	box-shadow: 0px 0px 15px #000;
	display: inline;
	margin: 8% 2% 0 0;
}
.right {
	height: 16%;
	width: auto;
	max-width: auto;
	max-height: auto;
	float: right;
	margin: 20 0 20 50;
}
.left {
	float: left;
	max-height: 100px;
	max-width: 100px;
	margin: 20 50 20 0;
}

/* Style the header */
.header {
	//box-shadow: 0px 0px 20px #000;
	background-color: #333;
	background-image: url("img/logo.png");
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 270px;
	padding: 0px;
	height: 100px;
	width: 80%;
	text-align: right;
	margin: auto;
}
.header h1 {
	font-size: 25px;
	letter-spacing: 10px;
	color: #F00;
	margin: auto;
	padding: 5 10 2 10;
}
.header p {
	color: #fff;
	font-size: 14px;
	letter-spacing: 4px;
	font-weight: bold;
	margin: auto;
	padding: 5 10 2 10;
}
/* Menu */
.topnav {
	overflow: hidden;
	background-color: #333;
	position: relative;
	top: 7;
	right: 0px;
	float: right;
	margin: auto;
}
.topnav a {
	float: left;
	display: block;
	color: #FFF;
	text-align: center;
	padding: 7px 16px;
	text-decoration: none;
	font-size: 17px;
}
.topnav a:hover {
	background-color: #F00;
	color: black;
}
.topnav a.active {
	background-color: #F00;
	color: white;
}
.topnav .icon {
	display: none;
}
@media screen and (max-width: 950px) {
.topnav a {
	display: none;
}
.topnav a.icon {
	float: right;
	display: block;
}
}
@media screen and (max-width: 950px) {
//.topnav.responsive {
	position: relative;
}
.topnav.responsive .icon {
	position: absolute;
	right: 0;
	top: 0;
	padding-right: 16;
}
.topnav.responsive a {
	float: none;
	display: block;
	text-align: left;
	padding-right: 100;
}
}
.ico {
	width: 20px;
	height: 3px;
	background-color: white;
	margin: 3px 0;
}
/* Create three unequal columns that floats next to each other */
.column {
	//border-radius: 25px;
	text-align: justify;
	background-color: #FFF;
	box-shadow: 0px 0px 50px #000;
	color: #000;
	display: block;
	margin: 50 auto 50 auto;
	width: 80%;
	//min-height: 1300px;
	padding: 50px;
}
.column p {
	padding: 2px;
	margin: 15 0 15 0;
}
.column div {
	text-align: center;
	margin: auto;
}
/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}
/* Create three equal columns that floats next to each other */
.bgstrip {
	background-color: #333;
	width: 100%;
	//min-height: 150px;
	//margin-bottom: 0px;
	//margin-top: 20px;
}
.footer {
	width: 80%;
	//min-height: 150px;
	display: table;
	box-shadow: 0px 0px 20px #000;
	padding: 0 5% 30px 5%;
	margin: auto;
}
.col-footer {
	color: #fff;
	float: left;
	width: 33.33%;
	text-align: justify;
	padding: 0 5px 5px 0;
}
.footer h3 {
	color: #fff;
	font-size: 100%;
	text-align: justify
}
.footer p {
	font-size: 80%;
	margin: 5px;
}
.footerfix {
	background-color: #000;
	box-shadow: 0px 0px 10px #000;
	font-size: 12px;
	color: #FFF;
	bottom: 0;
	padding: 5 0 5 0;
	width: 100%;
	text-align: center;
}
.space {
	margin-top: 50px;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 750px) {
.column {
	width: 90%;
}
.header {
	background-size: 150px;
	width: 90%;
}
.header h1 {
	text-align: center;
	font-size: 20;
	padding: 2 10 0 10;
    }
.header p {
	text-align: center;
	font-size: 12;
	padding: 0 10 0 10;
    }
.topnav {
	top: 25;
    }
.footer {
	width: 90%;
    }
}

@media screen and (min-width: 900px) {
.footerfix {
	position: fixed;
	bottom: 0;
    }
}