header {
	background-color: #003300;
	background-image: url("../images/flywheel.jpg");
	padding: 3%;
	margin: 0.2%;
	text-align: center;
}

a {
	color: #001A00;
	background-color: #FFFFFF;
}
	
nav a {
		display: inline-block;
		text-decoration: none;
		padding: 1% 4%;
		margin: 1% 0.5%;
		color: #FFFFFF;
		font-size: 130%;
		border-radius: 150px;
		background-color: rgba(64, 64, 64, 0.8);
					
}

.active {
	color: #000000;
	background-color:#FFFFFF;
	text-transform: uppercase;
}

img {
	max-width: 90%;
	border: solid;
	border-color: #000000;
	display: block;
	margin: 5% auto;
	background-position: center;
}


h1 {
	color: #FFFFFF;
	text-align: center;
	text-transform: uppercase;
	font-size: 250%;
}

h2 {
	color: #003300;
	text-transform: uppercase;
}

body {
	padding: 0.4%;
	margin: 0.1%;
}

section {
	font-size: 120%;
	background-color: rgba(255, 255, 153, 0.4);
	background: #ffffff;
	display: inline-block;
	float: right;
	margin: 0.2%; 
	padding: 1% 4%;
	width: 73%;	
}


aside {
	clear: both;
	display: inline-block;
	float: left;
	margin:0.2%; 
	width: 16%;
	height: 100vh;
	padding: 1%;
    background: #404040;
}

/*Defines table in general*/
table, th, td {
	border: 3px solid white;
}

table {
	font-family: "Times New Roman", Verdana, Arial;
	background:  #80ccff;
	border-spacing: 8px;
	margin: 2% auto;
	width: 80%;
	height: 100%;
	font-size: 100%;
	line-height: 100%;
	border-collapse: collapse;
	-webkit-border-radius: 15px 15px 0 0;
	border-radius: 15px 15px 0 0;
	overflow: hidden;
}

/*Defines various parts of the table*/
/*Table heading*/
th {
	font-family: Arial, Verdana;
	font-size: 90%;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 3px 3px #000000;
	background:  #006bb3;
	background: -webkit-linear-gradient(#006bb3 0%, #80ccff 100%);
	background: -moz-linear-gradient(#006bb3 0%, #80ccff 100%);
	background: -o-linear-gradient(#006bb3 0%, #80ccff 100%);
	background: linear-gradient(#006bb3 0%, #80ccff 100%);
	color: #ffffff;
	padding: 1.7%;
	margin: 2%;
	border-bottom-width: 8px;
}

th:first-child {
	text-align: left;
}

/*Table cells*/
td{
	height: 100%;
	width: auto;
	padding: 1%;
	vertical-align: top;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color: #4d1300;
	text-shadow: 0.5px 1px #ff4000;
	opacity: 0.7;
}

td:hover {
	opacity: 1;
}

td:active {
	background-color: #006bb3;
	color: #ffffff;
	text-shadow: 0.5px 1px #000000;
}

/*Defines border-radius of top corners*/
th:first-child{
	-webkit-border-radius: 15px 0 0 0;
	border-radius: 15px 0 0 0;	
}

th:last-child{
	-webkit-border-radius: 0 15px 0 0;
	border-radius: 0 15px 0 0;
}	
th:first-child>td:first-child {
	-webkit-border-radius: 15px 0 0 0;
	border-radius: 15px 0 0 0 ;	
}

th:first-child>td:last-child{
	-webkit-border-radius: 0 15px 0 0;
	border-radius: 0 15px 0 0;
}

/*Defines text-align for second and third column of the table*/
td:nth-child(2){
	text-align: center;
}
td:last-child{
	text-align: center;
}

