Prevent Firefox Scrollbar Jump http://webdeveloperplus.com/css/25-incredibly-useful-css-tricks-you-should-know/
/*
Firefox usually hides the vertical scrollbar if size of the content is less
than the visible window but you can fix that using this simple CSS trick.
*/
html{ overflow-y:scroll; }