// ==UserScript==
// @name  Forrst - Header fixed
// @namespace     http://stylebot.me/styles/1023
// @description   Header fixed for Forrst. Created by Brian Moyano
// @include   http://forrst.com/*
// @include   https://forrst.com/*
// @author        important
// ==/UserScript==
var styleEl = document.createElement('style');
styleEl.type = 'text/css';
styleEl.innerHTML = '#header {    position: fixed ;    width: 100% ;    z-index: 2000 ;}#nav {    position: fixed ;    width: 100% ;    z-index: 2000 ;    margin-top: 56px ;}#content {    padding: 110px 0 30px ;}.subnav-wrap {    margin-top: 40px ;}';
document.documentElement.appendChild(styleEl);
