html {
    -webkit-font-smoothing: antialiased;
}

body {
    background: #fff;
    color: #545454;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    margin: 0 auto;
    height: 100%;
}
div#container{
    position: relative;
    min-height: 100%;
    height: auto !important;
    height: 100%;
}
div#main{
    padding-bottom: 50px
}
div#footer{
    position: absolute
    bottom: 0
    width: 100%
    height: 50px
}


h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-weight: 600;
    line-height: 0;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #0083e8;
}

b, strong {
    font-weight: 600;
}

p.img_center{
    text-align: center;
}

samp {
    display: none;
}

img {
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    max-width: 100%;
    margin:auto;

}

@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }

div {
    line-height: 0;
}
    
}