/*
// --------------------------------------------------------------------------
// Resets
// --------------------------------------------------------------------------
*/
* { box-sizing: border-box; }
h1, h2, h3, h4, h5, h6, p, ul, blockquote { margin-top: 0px; }
a { cursor: pointer; }
a img { border: 0px none; }



/*
// --------------------------------------------------------------------------
// Layout
// --------------------------------------------------------------------------
*/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    color: #666;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #dfdfdf;
    background-position: top;
    background-repeat: repeat-x;
}
.container {
    width: 100%;
    padding: 20px;
}

a {
    color: #666666;
    text-decoration: none;
}
a:hover {
    color: #000000;
}
h1 {
    margin-bottom: 5px;
    font-size: 26px;
    font-weight: 700;
}
h4 {
    margin-bottom: 5px;
    font-size: 10px;
    font-weight: 400;
}

.island {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 0;
    margin-left: auto;
    margin-right: 0;
}

.island-content {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    padding: 0;
}

@media(max-width: 600px) {
    .island-content {
        position: static;
        margin-bottom: 20px;
        text-align: right;
    }
}

figure.island-image {
    display: block;
    margin: 0;
    padding: 0;
}

figure.island-image img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.clouds-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 400px;
    background-repeat: repeat-x;
    background-image: url('/files/clouds-1.png');
}

.clouds-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 400px;
    background-repeat: repeat-x;
    background-image: url('/files/clouds-2.png');
}