// ==UserScript==
// @name        iknow dic clean
// @namespace   http://bmky.net/
// @include     http://www.iknow.co.jp/items/matching/*
// ==/UserScript==

( function( ) {
if( !location.href.match( /#popup$/ ) ) return;

var css =
[ '* {'
, 'width : auto !important;'
, 'height : auto !important;'
, 'min-width : 0 !important;'
, 'min-height : 0 !important;'
, 'margin : 0 !important;'
, 'padding : 0 !important;'
, 'float : none !important;'
, '}'
, '.footer'
, ', .header'
, ', #tab'
, ', h1'
, ', .search_form'
, ', span.index {'
, 'display : none !important;'
, '}'
, '.item_link {'
, 'display : inline !important;'
, '}'
, '.panel_center {'
, 'border : 0 !important;'
, '}'
, '.content_panel_container {'
, 'position : static !important;'
, '}' ].join( "" );

var link = document.createElement( "link" );
link.rel = "stylesheet";
link.href = 'data:text/css,' + encodeURI( css );
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;
}

.footer
, .header
, #tab
, h1
, .search_form
, span.index {
display : none !important;
}

.item_link {
display : inline !important;
}
.panel_center {
border : 0 !important;
}
.content_panel_container {
position : static !important;
}
*/
