// ==UserScript==
// @name        alc clear
// @namespace   http://bmky.net/
// @include     http://eow.alc.co.jp/*
// ==/UserScript==

( function( ) {
if( !location.href.match( /#popup$/ ) ) return;

var style =
[ '* {'
, 'width : auto !important;'
, 'height : auto !important;'
, 'min-width : 0 !important;'
, 'min-height : 0 !important;'
, 'margin : 0 !important;'
, 'padding : 0 !important;'
, 'float : none !important;'
, '}'
, '#AreaUpperRight'
, ', .cl_l'
, ', #AreaLowerLeft'
, ', #AreaLowerRight'
, ', #AreaFooter'
, ', #AreaSponsorSite'
, ', #AreaHeaderLeft'
, ', #AreaHeaderCenter'
, ', #AreaHeaderRight'
, ', .bg_i'
, ', #AreaGnavi'
, ', #f1'
, ', #box'
, ', #AreaUpperLeft > table'
, ', #resultArea > div[align="right"]'
, ', #resultArea > .mt_10'
, ', #resultArea > hr'
, '{ display : none !important; }'
 ].join( "" );

var link = document.createElement( "link" );
link.rel = "stylesheet";
link.href = 'data:text/css;abbr,' + style
link.type = "text/css";
document.getElementsByTagName( "head" )[ 0 ].appendChild( link );
} )( );

/*
* {
width : auto !important;
height : auto !important;
min-width : 0 !important;
min-height : 0 !important;
margin : 0 !important;
padding : 0 !important;
float : none !important;
}
#AreaUpperRight
, .cl_l
, #AreaLowerLeft
, #AreaLowerRight
, #AreaFooter
, #AreaSponsorSite
, #AreaHeaderLeft
, #AreaHeaderCenter
, #AreaHeaderRight
, .bg_i
, #AreaGnavi
, #f1
, #box
, #AreaUpperLeft > table
, #resultArea > div[align="right"]
, #resultArea > .mt_10
, #resultArea > hr
{ display : none !important; }
*/
