* {
	margin : 0;
	padding : 0;
}

body {
	background-color : #1144AA;
	color : White;
	width: 100%;
	height: 100%;
}

header {
	height: 30%;
	background-color : #6B8FD4;
	clear : left;
	width : 100%;
	display : block;
	text-align : center;
}

header > img {
	padding: 10px 15px 0;
	float: left;
}

header > h1{
	padding: 10px 15px 10px;
	font-family: Verdana;
	font-size: xx-large;
	color:#FFF;
}

aside {
	text-align : right;
}

.tabs a{
	font-family: Verdana;
	font-size: 36px;
	padding: 0px 5px;
	cursor: pointer;
	color: #000;
}

.tabs a:hover{
	color: #CCC;
}

.tabs a.active{
	color: #FFF;
}

section {
	height: 60%;
}

footer {
	background-color : #FFA700;
	color : black;
	clear : both;
	width : 100%;
	display : block;
	text-align : left;
	height: 20%;
}

/* CSS kod för hyperlänkar med färg och egenskaper */
a:link {
	color: #FFBD40;
	text-decoration: none;
}

a:visited {
	color: #BF8E30;
	text-decoration: none;
}

a:hover {
	color: white;
	text-decoration: underline;
}

a:active {
	color: red;
	text-decoration: underline;
}