/****** 1.1 Global whitespace and font-family reset ******/
    
* {
    margin: 0;
    padding: 0;
}
/****** 1.2 Global structure ******/
html, 
body { /* xhtml as xml compatible */
    border: 0; /* remove border on html element in IE/Win */
}
address {
    font-style: normal;
}
/****** 1.3 Text ******/

abbr[title], 
acronym[title], 
dfn[title] {
    border-bottom: 1px dotted; /* border-color is inherited from color */
    cursor: help;
}
blockquote, 
cite, 
em
{
    font-style: normal;
}

blockquote p:before,
q:before {
    content: "";
}
blockquote p:after,
q:after {
    content: "";
}
strong {
    font-weight: bold;
}
/****** 1.4 Lists ******/
ul {
    list-style: none;
}
/****** 1.5 Tables ******/
table {
    border-collapse: collapse;
    border-spacing: 0;
    caption-side: top;
    empty-cells: show;
}
td, th {
    /*vertical-align: top; cwalter-12.11.2010 auskommentiert zur Steuerung der Ausrichtung im Editor*/
    text-align: left;
}
/****** 1.7 Objects, images ******/
img {
    border: 0;   
}
/*
    Horizontal rules
*/
hr {
    display: none;
}
/****** 1.8 Forms ******/
fieldset {
    border: 0 solid transparent; /* 'solid transparent' required by Opera */
}
legend {
    color: #000; /* IE/Win does not inherit color */
}
optgroup {
    font-style: normal;
    font-weight: bold;
}
