/* global whitespace reset !!! */
* {
    margin: 0;
    padding: 0;
}

/* body */
body {
    background-color: #fff;
    color:#000;
    font-size: 100.01%;
    line-height: 1.4;
}

/* headlines */
h1, h2, h3, h4, h5, h6 {
   font-weight:normal;
}
h1{
    font-size: 150%;
    line-height: 115%;
    color:#e3000f;
    margin-top:-3px;
    margin-bottom: 0.3em;
}
h2 {
    font-size: 115%;
    line-height: 115%;
    color:#e3000f;
    margin-bottom: 0.3em;
}
h3 {
    font-size: 90%;
    line-height: 110%;
    margin-bottom: 0.3em;
    font-weight: bold;
}

h4 {
    font-size: 75%;
    font-weight: bold;
    margin-bottom: 0.3em;
}
strong {
    font-style: normal;
    font-weight: bold;
}

p {
	font-size: 75%;
	margin-bottom: 0.3em;
}

div{
	/* only for IE with enlarged display option */
	word-wrap:break-word;	
}

/* text - inline */
abbr, acronym {
    border-bottom: 1px dotted #4b4b4b;
    font-style: normal;
	cursor: help;
}
em {
    font-style: italic;
    font-weight: inherit;
}
code, kbd, pre, samp, var {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 110%;
    font-weight: bold;
}
q, cite {
    font-style: italic;
    quotes: "\201E" "\201C" "\201A" "\2018"; /* german punctuation */
}
q:before {
    content: open-quote;
}
q:after {
    content: close-quote;
}

/* text - block */
address {
    display: block;
    font-style: normal;
}
blockquote {
    font-style: italic;
}

/* links - specificity: "LVHAF"! */
a {
    text-decoration: none;
}
a:link, a:visited {
    background-color: transparent;
    color: #4b4b4b;
}
a:hover {
    background-color: transparent;
    color: #e3000f;
}
a:active, a:focus {
    background-color: transparent;
    color: #a2000b;
}
a:hover, a:active, a:focus {
	text-decoration: underline;
}
/* horizontal rule */
hr {
    display: none;
}

/* images */
img {
    border: none;
    color: #000;
	display: block;
}

/* lists */
ol {
  	list-style-type: decimal;
}
ul {
    list-style-type: disc;
}
li { 
	list-style-position:outside;
}

/* forms */
fieldset {
    border: 0 solid; /* required by opera 7 */
}
legend {
    display: block;
}
label, input, select {
    font-weight: normal;
    line-height: normal;
}
label, input[type=button], input[type=checkbox], input[type=image], input[type=radio], input[type=reset], input[type=submit], select, button {
	cursor: pointer;
}
optgroup {
    font-style: normal;
    font-weight: bold;
}

/* tables */
table {
    caption-side: top;
    empty-cells: show;
}
caption {
    font-weight: bold;
    text-align: left;
}
table, caption {
	border: none;
	color: #000;
	width: 100%;
}
th, td {
   vertical-align: top;
    text-align: left;
}

