/*
* @title -><-
* @description centering
* @include http://book.geocities.jp/monene39/paperakyu*
* @license MIT License http://opensource.org/licenses/MIT
* @javascript_url
*/
// UserScript
// https://gist.github.com/noromanba/6802d3a6be14061f1598
// css ver.
// http://let.hatelabo.jp/noromanba/let/gYC-xpLD79PFdw
// e.g.
// http://book.geocities.jp/monene39/paperakyu00.html
(function () {
document.body.style.textAlign = 'center';
document.body.style.marginLeft = 'initial';
document.body.style.marginRight = 'initial';
})();