header.header {
    background-color:  rgb(255, 255, 255);
    background-color:  rgba(255, 255, 255, 0.95);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#F2FFFFFF', endColorstr='#F2FFFFFF'); /* IE */
    position: fixed;
    z-index: 10000000;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform 0.5s ease;
                    transition: transform 0.5s ease;
}

header.header .content {
    display: table;
    height: 100px;
    width: 100%;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
}

header.header .content > * {
    display: table-cell;
    vertical-align: middle;
}

header.header .logo {
    width: 62px;
}
header.header .buttons { overflow: hidden }

header.header .logo img {
    width: 43px;
    height: 50px;
    vertical-align: middle;
}

header.header .blog-title a {
    font-family: 'gotham_probold', sans-serif;
    font-size: 2.7rem;
    text-decoration: none;
    vertical-align: middle;
    border-left: 4px solid #feeca0;
    padding: 5px 0 5px 17px;
}

header.header .blog-title a h1 {
    font-family: inherit;
    font-size: inherit;
    display: inherit;
    color: inherit;
}


header.header.shrinked .content {
    height: 56px;
}

header.header.shrinked .logo img {
    width: 32px;
    height: 36px;
}

header.header.shrinked .logo {
    text-align: center;
    background-color: #feeca0;
    width: 56px;
}

header.header.shrinked .blog-title a {
    font-size: 1.7rem;
    margin-left: 22px;
    padding: 0;
    border: 0;
}

header.header .buttons {
    float: right;
}

header.header .topics {
    position: relative;
    float: right;
    font-size: 2.2rem;
    width: 188px;
    text-align: center;
    margin-right: 39px;
    font-family: 'gotham', sans-serif;
}

header.header .topics i {
    font-size: 1.8rem;
}

header.header .topics .toggle {
    border: 2px solid transparent;
    text-decoration: none;
    padding: 9px 11px 10px;
    vertical-align: bottom;
    width: 100%;
    -webkit-transition: border 0.2s ease 0.3s, background-color 0.1s ease 0.3s;
            transition: border 0.2s ease 0.3s, background-color 0.1s ease 0.3s;
}

header.header .expanded .toggle {
    -webkit-transition: border 0.1s ease, background-color 0.1s ease;
            transition: border 0.1s ease, background-color 0.1s ease;
}

header.header .topics .icon-dropdown:before {
    -webkit-transition: -webkit-transform 0.3s ease;
            transition: transform 0.3s ease;
    display: inline-block;
}

header.header .topics.expanded .icon-dropdown:before {
    -webkit-transform: rotate(-540deg);
    -ms-transform: rotate(-540deg);
    -o-transform:rotate(-540deg);
    transform: rotate(-540deg);
}

header.header .topics.expanded .toggle {
    outline: none;
    background-color: #ffffff;
    border-color: #e5e5e5;
}

header.header .dropdown {
    background-color: #ffffff;
    border: 2px solid #e5e5e5;
    padding: 9px 11px;
    margin: -50% 0 0 0;
    border-top: 0;
    -webkit-transition: margin 0.3s ease;
            transition: margin 0.3s ease;
}

header.header .topics .dropdown-wrap {
    margin: -2px 0 0 0;
    width: 100%;
    position: absolute;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
            transition: max-height 0.3s ease;
}

header.header .topics.expanded .dropdown-wrap {
    max-height: 600px;
}

header.header .topics.expanded .dropdown {
    margin: 0;
}

header.header .dropdown li {
    list-style: none;
    margin: 0;
    padding: 0.4em 0;
}

header.header .dropdown li:first-child {
    border-top: 2px solid #f2f2f2;
}

header.header .dropdown a {
    text-decoration: none;
}

header.header .dropdown a:hover,
header.header .dropdown .current a {
    border-bottom: 3px solid #feeca0;
}

header.header .menu-button {
    display: none;
}


#main-menu {
    margin: 0;
    padding: 0;
}

#main-menu li {
    margin: 0 15px 0 35px;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    padding: 36px 0 26px;
    border-bottom: 6px solid transparent;
    -webkit-transition: padding 0.3s;
    -moz-transition: padding 0.3s;
    transition: padding 0.3s;
}

#main-menu li:hover, #main-menu li.active  {
    border-bottom: 6px solid #feeca0;
}

#main-menu li a {
    font-family: 'gotham', sans-serif;
    color: #000001;
    font-size: 22px;
    font-weight: 400;
    text-decoration: none;
}

header.header.shrinked #main-menu li {
    padding: 12px 0 8px;
    border-bottom-width: 3px;
    margin: 0 15px 0 65px
}

header.header.shrinked #main-menu li a {
    font-size: 16px;
    font-weight: bold;
}

@media only screen and (max-width: 900px) {

    header.header .content {
        height: 56px;
    }

    header.header .logo img {
        width: 32px;
        height: 36px;
    }

    header.header .logo {
        text-align: center;
        width: 56px;
    }

    header.header .blog-title a {
        font-size: 1.7rem;
        margin-left: 5px;
    }

    #main-menu li a {
        font-size: 18px;
    }

    #main-menu li {
        padding: 12px 0 5px;
    }
}

@media only screen and (max-width: 700px) {


    header.header .subscribe-button,
    header.header .topics,
    header.header .main-menu {
        display: none;
    }

    header.header .menu-button {
        display: inline-block;
    }

}