/* a little fish in a big pond */
/*       basic stylesheet      */

/* BRAND HEADER */
.branding {
    position: fixed;
    top: 0em;
    left: 0em;

    height: 2.5em;
    width: 98%;

    margin: 0em;
    margin-bottom: 0.25em;

    background-color: white;

    border-bottom: 2px solid rgb(140,128,190);
}

    .branding h1 {
        font-size: 220%;
        font-style: italic;
        font-weight: normal;
        letter-spacing: 0.2em;
        color: rgb(140,128,190);
        text-shadow: 0.03em 0.03em 0.1em rgba(0,0,0,0.3);

        text-align: right;

        padding: 0em;
        margin: 0em;
        margin-right: 0.5em;
    }

    .blind {
        overflow: hidden; /* visually invisible, but still available to text readers */

        width: 0em;
        height: 0em;
        margin-top: 0em;
        margin-bottom: -1.25em;
        padding-top: 0em;
        padding-bottom: 0em;
    }

    .icon {
        float: left;
        width: 10%;

        margin: 0px;
        margin-left: 1px;
        margin-top: 1px;

        text-align: center;
    }

        .icon a {
            border: none;
        }

        .icon img {
            height: 2.5em;
        }

/* BASIC BODY*/
body {
    background-color: white;

    font-size: 90%;
    color: black;

    text-align: justify;
    }

a {
    text-decoration: none;
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    }

    a:link {
        color: rgb(50,50,128);
        }

    a:visited {
        color: rgb(0,0,62);
        }

    a:hover {
        color: teal;
        }

    a:active {
        color: red;
        }

/* NAVIGATION AIDS */
nav { /* a navigation area */
    position: fixed;
    top: 3em;
    left: 0em;

    height: 25em;
    overflow: hidden;
    width: 10%;

    border: 1px rgb(140,128,190) outset;
    background-color: white;

    margin: 0px;
    padding: 0px;
}

    nav a {
        display: block;
        clear: both;
        width: 95%;
        margin-left: 2.5%;
        margin-top: 0.5em;
        text-decoration: none;
        text-align: center;
        font-size: 80%;
        border: 1px rgb(140,128,190) solid;
        background-color: rgb(230,210,255);
    }

        .nav_panel a:visited {
            background-color: rgb(230,210,255);
        }

/* CONTENT SECTION */
div.content {
    position: absolute;
    top: 3em;
    right: 0em;
    width: 84%;
    padding: 0em;
    padding-bottom: 50px;
    margin-right: 1%;
    background-color: white;
    }

    #webcomics {
        width: 70%;
        }

        #webcomics h3 {
            }

        #webcomics h4 {
            text-transform: lowercase;
            margin-top: 0.5em;
            margin-bottom: 0em;
            font-style: italic;
            text-align: right;
            font-weight: bold;
            letter-spacing: 0.4em;
            color: rgb(140,128,190);
            border-bottom-style: solid;
            border-bottom-width: 1px;
            border-bottom-color: black;
            }

        #webcomics p {
            margin-bottom: 0em;
            margin-top: 0em;
            }

        p.comic {
            width: 33%;
            float: left;
            text-align: left;
            }


    .article {
        width: 32em;
        text-align: justify;
        margin-left: 5em;
    }

        .article:after {
            content: "\3A9";
            display: block;

            text-align: center;

            color: rgb(140,128,190);
        }

        .article h1 {
            margin-top: 0.25em;

            text-align: center;

            color: rgb(140,128,190);
            font-size: 1.5em;
            font-weight: bold;
            font-style: normal;
            text-shadow: 0.03em 0.03em 0.1em rgba(0,0,0,0.3);

            border-bottom: 1px solid rgb(140,128,190);
        }

        .article .article_body {
            width: 54em;
        }

            .article .article_body p {
                width: 32em;
                float: left;
                margin: 0em;
                padding: 0em;
            }

                .article .article_body p:before {
                    content: "\2666";
                    display: block;
                    clear: left;
                    margin-top: 0.125em;
                    margin-bottom: 0.125em;

                    text-align: center;

                    color: rgb(140,128,190);
                }

                .article .article_body p.first:before, .article .article_body p.aside:before {
                    content: "";
                    display: inline;
                }

                .article .article_body p.first {
                    margin-top: 1.5em;
                }

            .article .article_body p.aside {
                float: right;
                width: 18.75em;
                margin-top: 1.875em;

                font-size: 80%;
                color: rgba(70,50,100,1);
                font-style: italic;
            }

div.form_result_message {
    background-color: rgb(255,230,230);
    border: 1px solid rgb(150,0,0);
    padding: 1em;
}

/* FOOTER */
div.footer {
    position: fixed;
    bottom: 0px;
    left: 0px;

    height: 50px;
    width: 100%;

    background-color: white;
    border-top: 2px solid rgb(140,128,190);

    margin: 0pt;

    padding: 0pt;

    text-align: center;
}
