/*
 * Florian Rehder
 * http://FlorianRehder.de/
 */


/*
 * CSS RESET
 */ 
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, img, q, small, strong, ol, ul, li, dl, dt, dd, fieldset, form, label, legend {
	margin: 0;
	padding: 0;
	background: transparent;
	font-size: 100%;
	vertical-align: baseline;
	border: 0;
	outline: 0;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: disc;
}
:focus {
	outline: 0;
}


/*
 * GENERAL
 */
body {
	background: #efefef;
	color: #000;
	text-align: center;
}
a {
	color: #000;
	text-decoration: none;
}
	a:hover {
		color: #5a5657;
	}
	a:active {
		position: relative;
		top: 1px;
	}


/*
 * LAYOUT
 */
#wrapper {
	width: 800px;
	margin: 50px auto 10px;
	padding: 30px;
	background: #fff;
	font: 16px/1.6em Georgia, 'Palatino Linotype', Palatino, Serif;
	text-align: left;
}


/*
 * CONTENT
 */
h1, h2, h3, #footer {
	margin-top: 30px;
	font-family: Helvetica, Arial, Sans-Serif;
	line-height: 1.6em;
}
h1 {
	font-size: 26px;
}
h2 {
	padding-top: 20px;
	font-size: 22px;
}
h3 {
	font-size: 18px;
}
p {
	margin: 15px 0;
}
ul {
	margin: 20px 0;
}
	li {
		margin: 0 0 10px 20px;
	}
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}


/*
 * FOOTER
 */
#footer {
	margin: 30px auto;
	font-size: 12px;
	text-align: center;
}


