/* 
    Document   : style.css
    Created on : 2009/06/22, 06:42:19
    Author     : Griffin Studios
    Description:
*/

root { 
    display: block;
}

body {
    background-color: black;
    background-image: url('images/gradient.jpg');
    background-repeat: repeat-x;
}

div#wrap {
    position: relative;
    margin: 15px auto;
    width: 800px;
    overflow: hidden;
    background-image: url('images/content.png');
    background-repeat: repeat-y;
    border: 2px solid black;
}

div#header {
    background-image: url('images/darkcurse.png');
    width: 800px;
    height: 200px;
}

div#content {
    padding: 10px 20px;
}

div#footer {
    width: 800px;
    text-align: center;
    font-size: 10px;
    padding-top: 10px;
}

h3.status {
    color: red;
    text-decoration:blink;
}

p.content {
    text-align:justify;
}

a {
    color: red;
}

a:hover {
    color: black;
}