@charset 'UTF-8';

/**
 * @version 200907081155
 * @author  Rolf den Hartog - rolf@rolfdenhartog.nl
 */

/**
 * reset
 */
a, body, blockquote, button, fieldset, form, h1, h2, h3, hr, img, input, label,
legend, ol, optgroup, option, p, select, table, td, textarea, th, tr, ul {
    border: 0px;
    color: #333;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 100%;
    margin: 0px;
    outline: none;
    padding: 0px;
}

/**
 * main tags
 */
a:link, a:visited {
    color: #3bb54a;
    text-decoration: underline;
}
a:hover, a:active {
    text-decoration: none;
}
body {
    background: #1b4ba0 url('/static/gfx/body-background.png') repeat-y top left;
    background-attachment: fixed;
    font-size: 0.7em;
    margin-bottom: 100px;
}
h1, h2, h3 {
	color: #3bb54a;
	font-family: arial, helvetica;
	margin-bottom: 10px;
}
h1 {
    font-size: 160%;
}
h2 {
    font-size: 130%;
}
h3 {
    font-size: 105%;
}
li {
    margin: 0px 0px 3px 20px;
}
ol, ul {
    margin-bottom: 10px;
}
p {
    margin-bottom: 10px;
}

/**
 * forms
 */
input[type=text] {
    background: #fff;
    border: 1px solid #333;
    padding: 2px;
    width: 200px;
}
input[type=submit] {
    background: #fff;
    border: 1px solid #333;
    padding: 2px;
}
textarea {
    background: #fff;
    border: 1px solid #333;
    height: 200px;
    padding: 2px;
    width: 500px;
}

/**
 * wrapper
 */
#wrapper {
    width: 990px;
}

/**
 * logo / sponsor
 */
#logo {
    float: left;
    height: 110px;
    margin: 0px;
    width: 230px;
}
#sponsor {
    float: left;
    height: 110px;
    margin: 0px;
    width: 760px;
}

/**
 * navigation
 */
#navigation {
    background: transparent url('/static/gfx/navigation-background.png') no-repeat top;
    float: left;
    padding-top: 117px;
    width: 200px;
}
#navigation ul {
    list-style: none;
    margin: 0px;
}
#navigation ul li {
    margin: 0px;
}
#navigation ul li a:link,
#navigation ul li a:visited {
    background: transparent url('/static/gfx/navigation-item-background.png') no-repeat top left;
    display: block;
}
#navigation ul li a:hover,
#navigation ul li a:active,
#navigation ul li a.active {
    background: transparent url('/static/gfx/navigation-item-active-background.png') no-repeat top left;
}

/**
 * content
 */
#content-wrapper {
    float: left;
    width: 790px;
}
#content {
    background: transparent url('/static/gfx/content-background.png') no-repeat top center;
    min-height: 600px;
    padding: 30px 20px 10px 20px;
}

/**
 * contact form
 */
#contact-form label {
    cursor: pointer;
    display: block;
    float: left;
    width: 100px;
}
#contact-form input[type=submit] {
    margin-left: 100px;
}

/**
 * footer
 */
#footer {
    background: transparent url('/static/gfx/content-footer-background.png') no-repeat top center;
    color: #fff;
    font-size: 90%;
    margin-bottom: 100px;
    padding-top: 20px;
    text-align: center;
}

/**
 * other styles
 */
.border {
    border: 1px solid #ccc;
}
img.border {
    padding: 1px;
}
.clear-both {
    clear: both;
}
.float-left {
    float: left;
}
img.float-left {
    margin: 0px 10px 5px 0px;
}
.float-right {
    float: right;
}
img.float-right {
    margin: 0px 0px 5px 10px;
}
.margin-top-100 {
    margin-top: 100px;
}
.text-align-center {
    text-align: center;
}
 