/*
Sticky header
- Full width of header and fixed header-holder
 */
.show_on_fixed {
    display: none;
}

body.fixed-header {
    margin-top: 127px;
}

body.fixed-header #header {
    z-index: 1000;
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.5s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0;
    background-position-y: bottom;
}

body.fixed-header #header .container {
    margin-top: 10px;
}

body.fixed-header #header .container table {
    width: 100%;
}
body.fixed-header #top_menu{
    float: right;
    width: 100%;
}

body.fixed-header #top_menu #top_menu_holder{
    margin-top: 30px!important;
    width: 370px;
}

body.fixed-header #top_menu #top_menu_table {
    display: inline-block;
    margin-left: 10px;
    text-align: right;
}

body.fixed-header #top_menu #top_menu_table .top_menu_table_center {
    width: 180px;
}

body.fixed-header #top_menu #top_menu_table .top_menu_table_center2 {
    width: 140px;
}

body.fixed-header #top_menu #searchholder {
    width: 400px;
    display: inline-block;
    margin-top: 30px;
}


body.fixed-header .hide_on_fixed {
    display: none;
}

body.fixed-header .show_on_fixed {
    display: block;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
