@charset "utf-8";

/* HTML */

    * { margin:0; padding: 0; }
    
    body {
        margin: 20px;
        font-family: "Lucida Sans Unicode","Lucida Grande", sans-serif;
        font-size: 9.5pt;
        background-color: #fce9d8;
        background-image: url("/media/images/bg5.jpg");
        background-position: center 0;
        background-repeat: no-repeat;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: "Trebuchet MS", sans-serif;
        color: #000;
        line-height: 130%;
        }
    h1 { font-size: 24pt; }
    h2 { font-size: 18pt; }
    h3 { font-size: 14pt; }
    h4 { font-size: 12pt; }
    h5 { font-size: 10pt; }
    h6 { font-size: 8pt; }
    
    p {
        font-size: 9.5pt;
        color: #333;
        line-height: 160%;
        margin-bottom: 9.5pt;
        }
        
    ul { margin: 0 0 9.5pt 15px; }
    
    li {
        color: #333;
        font-family: "Lucida Sans Unicode","Lucida Grande", sans-serif;
        font-size: 9.5pt;
        line-height: 160%;
    }
    
    img { border:none; }
    
    a { outline: none; color: #0000ff; }
        a:visited { }
        a:hover { }
        
/* CLASSES */

    .big { font-size: 12pt; margin-bottom: 12pt; }
    .small { font-size: 10pt; margin-bottom: 10pt; }
    .italic { font-style: italic; }
    .bold { font-weight: bold; }
    .underline { text-decoration: underline; }
    
    .red { color: red; }
    .green { color: green; }
    .rust { color: #b54027; }
    .black { color: #000; }
    
    .float-left-20 { float: left; margin-right: 20px; }
    .float-right-20 { float: right; margin-left: 20px; }
    .center { text-align: center; }
    .clear-both { clear:both; }
    
    .quote {
        color: #000;
        font-weight: bold;
        font-family: Georgia, serif;
        font-size: 16pt;
    }
    .quote-text {
        font-size: 12pt;
        color: #000;
    }
    .trebuchet {
        font-family: "Trebuchet MS", sans-serif;
    }
    
/* FORMS */

    label { display: block; margin-top: 10px; }
    
    
/* PAGE */

    #wrapper {
        width: 770px;
        margin: auto auto 40px auto;
    }
    
