/* 
    Document   : default
    Created on : 1.9.2011, 21:17:23
    Author     : lopik
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}

a {
    text-decoration: none;
    color: #000;
}

a:visited {
    color: #000;
}

a:hover {
    color: #a00;
}

li {
    list-style: square;
}

body {
    font-family: sans-serif;
    background-color: #333;
}

div.page {
    width: 1000px;
    background-color: #eee;
    margin: auto;
/*    padding: 10px;*/
    min-height: 800px;
}

div.header {
    border-bottom: 2px solid #333;
    padding: 10px;
    font-weight: bold;
    font-size: 1.4em;
}

div.content {
    font-size: 0.9em;
}

