@charset 'utf-8';

/**
 * @version 200901071327
 * @author  Rolf den Hartog - rolf@rolfdenhartog.nl
 */

/**
 * reset
 */
a, body, blockquote, form, fieldset, h1, h2, h3, html, img, input,
li, ol, p, select, table, td, textarea, th, tr, ul {
    border: 0px;
    font-family: 'lucida sans unicode', verdana, arial, sans-serif;
    font-size: 100%;
    margin: 0px;
    outline: none;
    padding: 0px;
}

/**
 * main xhtml tags
 */
a:link, a:visited {
    color: #333;
    font-weight: bold;
    text-decoration: underline;
}
a:hover, a:active {
    color: #4db967;
    text-decoration: none;
}
body {
    background: #592c26 url('/static/gfx/body.jpg') no-repeat center center;
    background-attachment: fixed;
    color: #333;
    font-size: 0.7em;
    margin: 50px auto;
}
h1 {
    font-size: 200%;
    margin-bottom: 10px;
}
h2 {
    font-size: 150%;
    margin-bottom: 10px;
}
h3 {
    font-size: 100%;
    margin-bottom: 10px;
}

li {
    margin-left: 20px;
}
ol,
ul {
    margin-bottom: 10px;
}

p {
    margin-bottom: 10px;
}

/**
 * forms
 */
input[type=button],
input[type=submit] {
    background: #fff;
    border: 1px solid #333;
    cursor: pointer;
    padding: 1px;
}
input[type=text],
input[type=password] {
    background: #fff;
    border: 1px solid #333;
    padding: 2px;
    width: 200px;
}
input.width-small {
    width: 100px;
}
input.width-medium {
    width: 300px;
}

label {
    cursor: pointer;
}
select {
    background: #fff;
    border: 1px solid #333;
    padding: 1px;
}
textarea {
    background: #fff;
    border: 1px solid #333;
    height: 200px;
    padding: 2px;
    width: 574px;
}

/**
 * tables
 */
table {
    width: 100%;
    margin-bottom: 10px;
}

/**
 * header
 */
#header {
    height: 120px;
    margin: 0px auto;
    padding-left: 200px;
    width: 600px;
}

/**
 * left
 */
#left {
    background: transparent url('/static/gfx/left.png') no-repeat top left;
    float: left;
    padding-top: 10px;
    width: 200px;
}
#left p {
    margin: 0px 10px 10px 10px;
    text-align: center;
}

/**
 * navigation
 */
#navigation {
    list-style: none;
}
#navigation li {
    margin: 0px;
    padding: 0px 10px;
}
#navigation li a:link,
#navigation li a:visited {
    border-bottom: 1px solid transparent;
    display: block;
    padding: 3px 0px;
    text-decoration: none;
    text-align: left;
}
#navigation li a:hover,
#navigation li a:active,
#navigation li a.active {
    border-bottom: 1px solid #333;
    color: #333;
}

/**
 * wrapper
 */
#wrapper {
    margin: 0px auto;
    width: 800px;
}

/**
 * message
 */
.message {
    margin: 0px 0px 10px 0px;
    text-align: center;
}
.message p {
    margin: 0px;
    padding: 5px;
}
a.message-close:link,
a.message-close:visited {
    float: right;
    margin: 5px 5px 0px 0px;
    text-decoration: none;
}
a.message-close:hover,
a.message-close:active {
    color: #e33e44;
}
#message-confirm {
    background: #fff;
    border: 1px solid #333;
}
#message-error {
    background: #ffebe8;
    border: 1px solid #e33e44;
    color: #e33e44;
}

/**
 * content
 */
#content {
    background: transparent url('/static/gfx/content.png') repeat top left;
    float: left;
    min-height: 600px;
    padding: 10px;
    width: 580px;
}

/**
 * picasa
 */
.picasa-block {
    float: left;
    padding: 10px;
    margin-bottom: 25px;
    width: 270px;
}

/**
 * footer
 */
#footer {
    margin: 0px auto;
    width: 800px;
}
#footer p {
    background: transparent url('/static/gfx/content.png') repeat top left;
    font-size: 90%;
    margin-left: 200px;
    padding: 10px;
    text-align: center;
    width: 580px;
}

/**
 * other styles
 */
.border-ccc {
    border: 1px solid #ccc;
}
img.border-ccc {
    padding: 1px;
}
.display-none {
    display: none;
}
.clear-both {
    clear: both;
}
.display-none {
    display: none;
}
.float-left {
    float: left;
}
.font-size-small {
    font-size: 80%;
}
img.float-left {
    margin: 0px 10px 5px 0px;
}
.float-right {
    float: right;    
}
img.float-right {
    margin: 0px 0px 5px 10px;
}
.text-align-center {
    text-align: center;
}
