if( rEngine == 'Trident' && ver <= 8 ) {
	document.write(
		'<style type="text/css">\n' +

		'.headlineBox {\n' +
		'	zoom: 1;\n' +
		'}\n' +

		'</style>\n'
	);
}

if( rEngine != 'Trident' || ver >= 9 ) {
	style = document.createElement( 'style' );
	style.appendChild(
		document.createTextNode(
			'.headlineBox {' +
				cssBorderRadius( '', '1em' ) +
				cssBorderRadius( 'bottom-left', '0' ) +
				cssBorderRadius( 'bottom-right', '0' ) +
			'}'
			+
			'.contentBox {' +
				cssBorderRadius( '', '0' ) +
				cssBorderRadius( 'bottom-left', '1em' ) +
				cssBorderRadius( 'bottom-right', '1em' ) +
				cssBoxShadow( '6px 6px 8px rgba( 0, 0, 0, 0.2 )' ) +
			'}'
		)
	);
	head = document.getElementsByTagName( 'head' )[ 0 ];
	head.appendChild( style );
}

function bTerminate() {}

function aTerminate() {}
