/*
* @title フォントをMeiryo UIに変える
* @description フォントをMeiryo UIに変える
* @include http://*
* @license MIT License
* @javascript_url
*/
(function() {
var s = document.createElement('style');
s.setAttribute('type', 'text/css');
s.innerHTML='body{font-family:"Meiryo UI"}';
document.getElementsByTagName('head').item(0).appendChild(s);
})();