@charset "utf-8";
/* CSS Document */

#sticky {
   
    width: 100%;
}

#sticky.stick {
    margin-top: 0 !important;
    position: fixed;
    top: 0;
    z-index: 10000;
    border-radius: 0 0 0.5em 0.5em;
}
@media(max-width:992px)
{
	#sticky.stick {
    margin-top: 0 !important;
    position: absolute;
    top: 0;
    z-index: 10000;
    border-radius: 0 0 0.5em 0.5em;
}
}


