@charset "UTF-8";

/**
*	Default Style Sheet
*	- reset all HTML elements
*	- do not edit this file, use screen.css / print.css
**/
html * {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

html { /* Scrollbar allways visible -> no page jumping */
	height: 100%;
	margin-bottom: 1px;
}

body {
	background-color: #fff;
	color: #000;
	/*height: 100%;*/
	font-family: Verdana, Helvetica, Arial, sans-serif;
	/* Set default font size to 1em = 10px */
	font-size: 62.5%;
}

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 {
	font-size: 1em;
	margin: 0;
}

img {
	border: 0;
}

ul {
	list-style: none;
}

del {
	text-decoration: line-through;
}

abbr[title],dfn[title] {
	border-bottom: 1px dotted #000;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input,select {
	vertical-align: middle;
}

hr {
	display: none;
}

/* Skiplinks */
.skip {
	position: absolute;
}

.skip:link,.skip:visited { /* off screen = invisible */
	top: -999em;
	left: -999em;
}

.skip:focus,.skip:focus,.skip:active { /* on screen = visible */
	top: 0;
	left: 0;
}
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}