/* stylesheet fixes for individual browser bugs */
/* IE{Mac IE, non-Mac IE}, non-IE, NS6, non-NS4 */
document.write('<style>');
var Mac=(navigator.appVersion.indexOf('Mac')>-1)?1:0;

if (document.all) /* IE */
{
	document.write('.formFileFld206{width:'+(Mac ? 272 : 274)+'px;}');
	/* don't use following class anymore - to be phased out */
	document.write('.formFileFld210{width:'+(Mac ? 276 : 278)+'px;}');
	

	if (Mac) /* Mac IE */
	{
		document.write('TABLE.tblWFlexible {width:98%;}');
		document.write('UL {margin-left:20px;}');
		document.write('OL {margin-left:25px;}');
	}
	else /* non-Mac IE */
	{
		document.write('UL {margin-left:17px;margin-bottom:5px;}');
		
		if(navigator.appVersion.indexOf('6.'))
		{
			document.write('OL {margin-left:25px;}');
			
		}
		else
		{
			document.write('OL {margin-left:20px;}');
			
		}
	}
}
else /* non-IE */
{	
	document.write('UL {margin-left:-25px;margin-bottom:5px;}');
	document.write('OL {margin-left:-15px;}');
}

if (!document.all&&document.getElementById) /* NS6 */
{
	document.write('.formRadio{background-color:#ffffff;}'); //interpret radio/checkbox bgcolor as color of button/box, not surrounding space
	document.write('.formFileFld206{width:'+(Mac ? 294 : 287)+'px;}');
	/* don't use following class anymore - to be phased out */
	document.write('.formFileFld210{width:'+(Mac ? 298 : 291)+'px;}');
	document.write('UL {margin-left:-25px;margin-bottom:15px;}');
	document.write('.msgError{padding-top:1px;}');
}

document.write('</style>');




