/* 
    Document   : layout.css
    Created on : 03.07.2010, 15:29:46
    Author     : H. Eisenmenger
    Description:
        Purpose of the stylesheet follows.
*/
/* 
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/
* {
        font-family: Arial, Helvetica, sans-serif;
}

root { 
    display: block;
}
a {
    font-size: 10px;
}

a:hover {
    color: #00f;
}
h1 {
    text-align: left;
    color: red;
    font-style: normal;
    font-size: 12px;
}

h2 {
    color: #f00;
    font-size: 10px;
}
span {
    color: #ccc;
}
strong {
    text-align: left;
    font-weight: normal;
}

p {
    color: #000; 
    font-size: 10px;
}


