/* Normalisieren der Innen- und Außenabstände */
body, p, pre, blockquote,
a, address,
h1, h2, h3, h4, h5, h6,
dl, dt, dd, ul, ol, li,
th, td {
	margin:0;
	padding:0;
}

/*Normalisieren der Standardschriftart*/
html, body
{
    font-family: 'Neucha', "Lucida Sans", "Lucida Grande", "Lucida", sans-serif;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
}
/*Normalisieren der Überschriften*/
h1, h2, h3, h4, h5, h6 {
    font-size: 16px;
    line-height: 20px;
    font-weight:normal;
}
/*Normalisieren der Schriften weiterer (X)HTML-Elemente*/
abbr, acronym, address, caption, cite, code, dfn, em, kbd, pre, q, samp, strong, th, var
{
    font-family: 'Neucha', "Lucida Sans", "Lucida Grande", "Lucida", sans-serif;
    font-style:normal;
    font-weight:normal;
}
/*Normalisieren der Textausrichtung in Tabellenunter und -überschrift*/
caption, th {
text-align:left;
}

/*Normalisieren von Listen*/
ol, ul {
list-style:none;
}
/*Normalisieren von Tabellen (Rahmen)*/
table {
border-collapse: collapse;
border-spacing: 0;
}
/*Normalisieren von fieldset und img (Rahmen)*/
fieldset, img {
border: 0;
}
/*Normalisieren von Zitaten*/
q:before, q:after {
content: '';
}