/*********************/
/* General stuff     */
/*********************/

body {
    background-color: #fff;
    font-family: Georgia, sans-serif;
    font-size: 100%;
}

p {
    line-height: 1em;
    margin-bottom: 1em;
    margin-top: 1em;
}

p:first-child {
    margin-top: 0;
}

p img {
    display: inline-block;
    vertical-align: middle;
}

.left {
    float: left;
}
.right {
    float: right;
}

img.left {
    margin: 10px;
    margin-left: 0;
}

img.right {
    margin: 10px;
    margin-right: 10px;
}

img.border {
    background-color: #ddd;
    border: 1px solid #333;
    padding: 2px;
}

.hidden {
    display: none;
}

/*********************/
/* Structure         */
/*********************/

div#masthead {
    background-color: #352828;
    padding-bottom: 10px;
}
div#navigation {
    background-color: #eec96d;
}
div#breadcrumb {
    font-size: 0.9em;
    line-height: 2;
    margin-bottom: 10px;
    margin-top: 10px;
}
div#content {
    padding-bottom: 1em;
}
div#footer {
    background-color: #ddd;
    border-top: 3px solid #333;
    bottom: 0;
}

/*********************/
/* Masthead          */
/*********************/

div#masthead h1 {
    color: #a35252;
    font-size: 4em;
    font-style: italic;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

/*********************/
/* Navigation        */
/*********************/

div#navigation li {
    margin-left: 10px;
}
div#navigation li:first-child {
    margin-left: 0;
}
div#navigation a {
    display: block;
    color: #352828;
    font-family: Verdana, Arial;
    font-size: 0.9em;
    padding-bottom: 8px;
    padding-top: 5px;
    text-decoration: none;
}
div#navigation a:hover {
    background-color: #352828;
    color: #eec96d;
}
div#navigation a.current {
}

/*********************/
/* Breadcrumb        */
/*********************/

div#breadcrumb a {
    color: #333;
    margin-right: 10px;
    text-decoration: none;
}
div#breadcrumb a:hover {
    text-decoration: underline;
}
div#breadcrumb a:before {
    content: '\0bb\0A0';
}

/*********************/
/* Info paragraphs   */
/*********************/

p.info {
    background-color: #080;
    border-color: #333;
    border-style: solid;
    border-width: 2px;
    color: #fff;
    padding: 15px;
}
p.info.warning {
    background-color: #f00;
    color: #fff;
}
p.info.notice {
    background-color: #fa6;
    color: #000;
}

