<!--
var screenWidth = window.screen.width;
if (isMinNS4) {
 switch( screenWidth )	{
	case 800:
		questchar = 12;
		mainheaderchar = 16;
		headerchar = 14;
		subheaderchar = 13;
		answerchar = 10;
		commentchar = 9;
		break;
	case 640:
		questchar = 11;
		mainheaderchar = 15;
		headerchar = 13;
		subheaderchar = 12;
		answerchar = 9;
		commentchar = 8;
		break;
	default:
		questchar = 13;
		mainheaderchar = 17;
		headerchar = 15;
		subheaderchar = 14;
		answerchar = 11;
		commentchar = 10;
		break;
	}
}
else
{
	switch( screenWidth )
	{
	case 800:
		questchar = 11;
		mainheaderchar = 15;
		headerchar = 12;
		subheaderchar = 11;
		answerchar = "x-small";
		commentchar = 8;
		break;
	case 640:
		questchar = 10;
		mainheaderchar = 14;
		headerchar = 12;
		subheaderchar = 11;
		answerchar = "x-small";
		commentchar = 7;
		break;
	default:
		questchar = 12;
		mainheaderchar = 16;
		headerchar = 12;
		subheaderchar = 11;
		answerchar = "x-small";
		commentchar = 9;
		break;
	}
}

document.writeln("<style type=\"text/css\">");
document.writeln("body            { color: #000000; background-color: #FFFFFF; scrollbar-3d-light-color: #CCCCCC; scrollbar-arrow-color: #000000; scrollbar-base-color: #FFFFFF; scrollbar-dark-shadow-color: #666666; scrollbar-face-color: #CCCCCC; scrollbar-highlight-color: #CCCCCC; scrollbar-shadow-color: #CCCCCC }");

document.writeln("h1 { color: #235061; text-decoration:none; font-family: Arial; font-size:" + mainheaderchar + "pt }");
document.writeln("h2 { color: #235061; text-decoration:none; font-family: Arial; font-size: " + headerchar + "pt }");
document.writeln("h3 { color: #235061; text-decoration:none; font-family: Arial; font-size: " + subheaderchar + "pt }");


document.writeln("a              { color: #990000; text-decoration:underline; font-family: Verdana, Arial, Helvetica }");
document.writeln("a:hover        { color: #FF0000; text-decoration:underline; font-family: Verdana, Arial, Helvetica }");
//document.writeln("a:visited      { color: #990000; text-decoration:underline; font-family: Verdana, Arial, Helvetica }");
document.writeln("a:active       { color: #FF0000; text-decoration:underline; font-family: Verdana, Arial, Helvetica }");

document.writeln(".mainheader    { color: #235061; text-decoration:none; font-family: Arial; font-size:" + mainheaderchar + "pt; font-weight: bold }");
document.writeln(".header,       { color: #235061; text-decoration:none; font-family: Arial; font-size: " + headerchar + "pt; font-weight: bold }");
document.writeln(".subheader     { color: #235061; text-decoration:none; font-family: Arial; font-size: " + subheaderchar + "pt; font-weight: bold }");
document.writeln(".question      { color: #235061; text-decoration:none; font-family: Verdana, Arial, Helvetica; font-size: " + questchar + "pt; font-weight: bold }");
document.writeln(".answer, p, td { color: #000000; text-decoration:none; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: " + answerchar + " }");
document.writeln(".comment       { color: #FFFFFF; text-decoration:none; font-family: Sans-serif, Verdana, Arial, Helvetica; font-size: " + commentchar + "pt; font-weight: 700 }");

document.writeln(".input_text    { color: #FFFFFF; text-decoration:none; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: " + commentchar + "pt;  font-weight: bold; background-color: #83A7B5; border-width: 1; border-color: #83A7B5 }");
document.writeln(".input_button  { color: #F0EA9C; text-decoration:none; font-family: verdana; font-size: " + ctrl_font + "px;  font-weight:bold; background-color: #4e8296; border-width: 2; border-color: #83A7B5 }");

document.writeln("</style>");

// End -->
