/* 
    Author: Jonatan Kazmierczak
*/

body {
	font: 12pt Verdana, Helvetica, Arial;
	color: black;
	background-color: white;
	background: linear-gradient(to right bottom, white 20%, lightblue);
}

h1 {
	font-size: 24pt;
	font-weight: bold;
	color: navy;
	text-shadow: 0px 0px 6px blue, 4px 4px lightblue;
}
header p {
	font-size: 14pt;
	font-style: italic;
	font-weight: normal;
	margin-top: 0px;
	padding-top: 0px;
}

nav, footer {
	background-color: navy;
	color: white;
}
nav a {
	text-decoration: none;
	font-weight: bold;
	color: white;
}
nav a:hover {
	background-color: white;
	color: navy;
	text-shadow: 0px 0px 4px blue;
	transition: color,background-color .1s linear;
}

footer * {
	background-color: navy;
	color: white;
}
footer .copyright {
	float: left;
}
footer .email {
	float: right;
}

h2 {
	font-size: 16pt;
	font-weight: bold;
	background: linear-gradient(to right, lightblue, white);
	padding-left: 8px;
}
article {
	/*height: 100%;*/
}
a {
	color: navy;
}
.glossterm {
	color: navy;
	font-weight: bold;
}
img {
	border-style: none;
}
img.thumbnail {
	width: 200px;
	padding-right: 12px;
	float: left;
}
