* {
    margin: 0;
    padding: 0;
    outline: 0;
}
html, body {
    width: 100%;
    height: 100%;
}
.normal {
    background-color: #e6e6e6;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 0.8em;
}
.pf {
    color: #1b7fcc;
}
h1 {
    padding-bottom: 0.4em;
    color: #1b7fcc;
    font-size: 2.3em;
    line-height: 1em;
    text-shadow: #ccc 1px 1px 1px, #e6e6e6 0 0 1px;
}
a {
    color: #1b7fcc;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
p {
    color: #333;
    font-size: 1.4em;
    line-height: 1.3em;
}
    #main {
        position: relative;
        width: 100%;
        height: 100%;
    }
        #container {
            position: relative;
            margin: 0 auto;
            height: 100%;
            display: block;
        }
        .normal #container,
        .normal #header,
        .normal #footer {
            width: 70%;
            min-width: 600px;
            max-width: 1000px;
        }
            #header, #center, #footer {
                width: 100%;
                display: block;
            }
            #header {
                position: fixed;
                height: 80px;
                z-index: 999;
                background-color: #333;
            }
                #header .logo {
                    position: relative;
                    margin: 7px auto;
                    width: 176px;
                    height: 65px;
                    display: block;
                    background: url('/public/pf/img/logo_header.png') no-repeat 0 0;
                }
                #header a {
                    color: #fff;
                }
                #header .nav_top {
                    position: absolute;
                    top: 45px;
                    right: 15px;
                }
                    #header .nav_top ul {
                        list-style-type: none;
                    }
                        #header .nav_top ul li {
                            margin-left: 7px;
                            float: left;
                        }
                            #header .nav_top ul li .active,
                            #header .nav_top ul li a:hover {
                                color: #1b7fcc;
                                text-decoration: underline;
                            }
            #center {
                position: relative;
                width: 100%;
                min-height: 100%;
                z-index: 1;
                box-shadow: 0 0 10px #333;
                background-color: #fff;
            }
                #content {
                    padding: 90px 1em 50px 1em;
                    min-height: 100%;
                }
                    #content .page,
                    #content .column {
                        width: 100%;
                        overflow: hidden;
                    }
                    #content .page {
                        min-height: 100%;
                    }
            #footer {
                position: fixed;
                bottom: 0;
                height: 35px;
                z-index: 1;
                text-align: right;
                background-color: #333;
            }
                #footer .powered {
                    position: absolute;
                    top: 8px;
                    right: 8px;
                    cursor: default;
                }