/*** general.css.php ***/

* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
    -ms-overflow-y: scroll;
}

    body {
        font-family: 'Verdana', sans-serif;
        font-size: 85%;
        color: #555;
        line-height: 200%;
        background: #EEEEE6;
    }

        header,
        section,
        footer,
        aside,
        nav,
        article,
        figure {
            display: block;
        }

        a:link,
        a:visited {
            color: #77F;
            text-decoration: none;
        }
        
        a:hover,
        a:active {
            color: #66F;
            text-decoration: underline;
        }

        p {
            margin: 0 0 20px 0;
        }
        
        img {
            border: 0;
            max-width: 100%;
        }
        
        ul,
        ol {
            margin: 0 0 20px 0;
            padding: 0 0 0 40px;
        }
        
        textarea {
            font-family: inherit;
        }
        
        .clear {
            clear: both;
        }
        
        .center {
            text-align: center;
        }




        
            div.main {
                margin: 0 auto;
                width: 950px;
            }

                div.left-photo {
                    position: fixed;
                    width: 25%;
                    max-width: 250px;
                    min-height: 600px;
                    margin: 20px 0 0 0;
                    vertical-align: top;
                    background-repeat: no-repeat;
                    background-position: center center;
                    background-size: cover;
                }

                div.main h1 {
                    margin: 0 0 20px 0;
                    font-family: 'Actor', 'Arial', sans-serif;
                    font-weight: normal;
                    font-size: 670%;
                    text-align: center;
                    line-height: normal;
                    opacity: 0.7;
                }

                div.content-parent {
                    float: right;
                    width: 70%;
                    vertical-align: top;
                }

                    div.content-header {
                        position: fixed;
                        border: #F8F8F8 solid;
                        border-width: 0 0 1px 0;
                        padding: 20px 0 0 0;
                        background: #EEEEE6;
                    }

                        h2 {
                            margin: 0 0 20px 0;
                            font-family: 'Bilbo Swash Caps', 'Georgia', serif;
                            font-size: 300%;
                            font-weight: normal;
                            line-height: normal;
                            text-align: center;
                            opacity: 0.7;
                        }

                    div.content {
                        margin: 335px 0 0 0;
                    }

        
                        div.content ul {
                            /**/
                        }

                            div.content ul li {
                                list-style-type: circle;
                            }

                        div.content img {
                            margin: 10px;
                            border-color: #FFF;
                        }




/*** menu.css.php ***/


    nav {
        margin: 0 0 20px 0;
        font-family: 'Actor', 'Arial', sans-serif;
        font-size: 130%;
        text-align: center;
    }

        nav ul {
            display: inline-block;
            margin: 0;
            padding: 0;
            text-align: left;
        }
            
            nav ul li {
                position: relative;
                display: inline-block;
                list-style: none;
            }

            nav ul li:hover {
                background: #F8F8F8;
            }
            
                nav ul li a:link,
                nav ul li a:visited {
                    display: block;
                    padding: 10px 20px;
                    width: 100%;
                    height: 100%;
                    color: #555;
                    text-decoration: none;
                }
                
                nav ul li a:hover,
                nav ul li a:active {
                    /**/
                }
                
                    nav ul li ul {
                        position: absolute;
                        left: -9999px;
                        top: auto;
                        width: 200px;
                        background: rgba(248,248,248, 0.8);
                    }

                    nav ul li:hover ul {
                        left: 0;
                    }
                    
                        nav ul li ul li {
                            width: 100%;
                        }
                        
                        nav ul li ul li:hover {
                            background: #F8F8F8;
                        }
                        
                            nav ul li ul li a {
                                /**/
                            }





/*** share-buttons.css.php ***/


    div.share {
        text-align: right;
    }

        a.share-button {
            /**/
        }
        
            a.share-button img {
                width: auto;
                height: 30px;
                opacity: 0.2;
            }






