/* -- General HTML Elements -- */

* { padding: 0; margin: 0; }

html, body {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 13px;
    text-align: center;  /* to center div (in IE) */
    margin: 0;
    padding: 0;
    background-color: #005;
    color: #000;
}

h2 {
    font-size: 2em;
    line-height: 2em;
    color: #009;
    font-weight: bold;
}

h3 {
    font-size: 1.75em;
    line-height: 1em;
    color: #009;
    font-weight: bold;
    text-align: center;
}


p, form, td {
    font-size: 100%;
    line-height: 1.3em;
    margin: 0;
}

fieldset {
    border: 0;
}


ul, ol {
    line-height: 130%;
}

img {
    border: 0;
}

p a:link {
    color: #009;
    text-decoration: none;
    font-weight: normal;
}

p a:visited {
    color: #840eb2;
    text-decoration: none;
    font-weight: normal;
}

p a:hover {
    color: #009;
    text-decoration: none;
    border-bottom: 1px #840eb2 solid;
    border-top: 1px #840eb2 solid;
    font-weight: normal;
}



/* -- Basic Layout -- */

#container {
    margin: 10px auto;
    width: 600px;
    border: #009 10px double;
    background-color: white;
}

#masthead {
    width: 100%;
    margin: 0;
    clear: both;
}

#masthead div {
    padding: 8px;
    border: 0;
}

#content {
    margin-left: 0px;
    margin-bottom: 8px;
    width: 100%;
    background-color: transparent;
}

#content div {
    padding: 8px;
    border: 0;
}



/* -- Styling -- */

.required, .error {
    color: #c00;
}

.left {
    text-align: left;
}