@charset "UTF-8";

@media all
{

	html * {
		margin: 0; padding: 0;
	}
	html {
		height: 100%; margin-bottom: 1px;  /* Scrollbar allways visible -> no page jumping */
	}
	body {
		background-color: #fff;
		color: #000;
		font-family: Verdana, Helvetica, Arial, sans-serif;
		font-size: 62.5%; /* Set default font size to 1em = 10px */
		height: 100%;
	}
	
	a {
		color: #00f;
	}
	a:link, a:visited {
		text-decoration: none;
	}
	a:hover, a:focus, a:active {
		text-decoration: underline;
	}
	
	h1,h2,h3,h4,h5,h6 {
		margin: 0; font-size: 1em;
	}
	
	img {
		border: 0;
	}
	ul {
		list-style: none;
	}
	hr {
		display: none;
	}
	
	.clear {
		clear: both;
	}
	
	/* Skiplinks */
	.skip {
		position: absolute;
	}
	.skip:link, .skip:visited {
		top: -999em; left: -999em; /* off screen = invisible */
	}	
	.skip:focus, .skip:focus, .skip:active {
		top: 0; left: 0; /* on screen = visible */
	} 
	
	thead {
		text-align:left;
	}
}