document.write("<style type='text/css'><!--");

var agent = navigator.userAgent;
var appve = navigator.appVersion;
var appna = navigator.appName;

var userOs = null;
var browser = null;
var version = null;

if ( agent.indexOf('Win') != -1 ) {
	userOs = "Win";
} else if ( agent.indexOf('Mac') != -1 ) {
	userOs = "Mac";
} else {
	userOs = "Other";
}

if ( agent.indexOf('Opera') != -1 ){
	browser = "OPERA";
	version = agent.substring((agent.indexOf('Opera') + 6),(agent.indexOf('Opera') + 7));
} else if ( appna == "Microsoft Internet Explorer" ) {
	browser = "MSIE";
	version = agent.substring((agent.indexOf('MSIE') + 5),(agent.indexOf('MSIE') + 8));
} else if ( appna == "Netscape" ) {
	browser = "NN";
	version = appve.substring( 0,1 );
}

if ( userOs == "Win" && ( browser == "MSIE" && version >= 5 )) {
	document.write(".body1 {  font-size: 12px; line-height:140%; }")
	document.write(".body2 {  font-size: 12px; color: #ff0000; line-height:140% }")
	document.write(".body3 {  font-size: 12px; color: #666666; line-height:140% }")
	document.write(".body4 {  font-size: 12px; color: #666666; line-height:140% }")
	document.write(".body5 {  font-size: 12px; color: #ffffff; line-height:140%; text-decoration: underline; font-weight: bold}")
	document.write(".body6 {  font-size: 11px; color: #ff6600; line-height:140%; text-decoration: underline; font-weight: normal}")
	document.write(".body7 {  font-size: 12px; color: #666666; line-height:140% }")
	
	document.write(".Formtext1 { width:180px }")	
	document.write(".Formtext2 { width:300px }")	
	document.write(".Formtext3 { width:60px }")	
	document.write(".Formtext4 { width:100px }")
	document.write(".Formtext5 { width:30px }")	
	document.write(".Formtextarea1 { height:150px; width:325px }")

	document.write(".Formlist1 { background-color:#ffcc99; width:100px }")	
	document.write(".Formlist2 { background-color:#ffcc99; width:60px }")
	document.write(".Formlist3 { background-color:#ffcc99; width:120px }")
	document.write(".Formlist4 { background-color:#ffcc99; width:200px }")

		
} else if ( userOs == "Win" && ( browser == "NN" && version == 4 )) {
	document.write(".body1 {  font-size: 12px; }")
	document.write(".body2 {  font-size: 12px; color: #ff0000; }")
	document.write(".body3 {  font-size: 12px; color: #666666; }")
	document.write(".body4 {  font-size: 12px; color: #666666; }")
	document.write(".body5 {  font-size: 12px; color: #ffffff; text-decoration: underline; font-weight: bold}")
	document.write(".body6 {  font-size: 11px; color: #ff6600; text-decoration: underline; font-weight: normal}")
	document.write(".body7 {  font-size: 12px; color: #666666; }")
	
} else if ( userOs == "Win" && ( browser == "OPERA" && version >= 6 )) {
	document.write(".body1 {  font-size: 12px; line-height:140%; }")
	document.write(".body2 {  font-size: 12px; color: #ff0000; line-height:140%; }")
	document.write(".body3 {  font-size: 12px; color: #666666; line-height:140%; }")
	document.write(".body4 {  font-size: 12px; color: #666666; line-height:140%; }")
	document.write(".body5 {  font-size: 12px; color: #ffffff; line-height:140%; text-decoration: underline; font-weight: bold}")
	document.write(".body6 {  font-size: 11px; color: #ff6600; line-height:140%; text-decoration: underline; font-weight: normal}")
	document.write(".body7 {  font-size: 12px; color: #666666; line-height:140%; }")
	
	document.write(".Formtext1 { width:180px }")	
	document.write(".Formtext2 { width:300px }")	
	document.write(".Formtext3 { width:60px }")	
	document.write(".Formtext4 { width:100px }")
	document.write(".Formtext5 { width:30px }")
	document.write(".Formtextarea1 { height:150px; width:325px }")

	document.write(".Formlist1 { background-color:#ffcc99; width:100px }")	
	document.write(".Formlist2 { background-color:#ffcc99; width:60px }")
	document.write(".Formlist3 { background-color:#ffcc99; width:120px }")
	document.write(".Formlist4 { background-color:#ffcc99; width:200px }")
	
} else if ( userOs == "Win" ) {
	document.write(".body1 {  font-size: 12px; line-height:140%; }")
	document.write(".body2 {  font-size: 12px; color: #ff0000; line-height:140%; }")
	document.write(".body3 {  font-size: 12px; color: #666666; line-height:140%; }")
	document.write(".body4 {  font-size: 12px; color: #666666; line-height:140%; }")
	document.write(".body5 {  font-size: 12px; color: #ffffff; line-height:140%; text-decoration: underline; font-weight: bold}")
	document.write(".body6 {  font-size: 11px; color: #ff6600; line-height:140%; text-decoration: underline; font-weight: normal}")
	document.write(".body7 {  font-size: 12px; color: #666666; line-height:140%; }")
	
	document.write(".Formtext1 { width:180px }")	
	document.write(".Formtext2 { width:300px }")	
	document.write(".Formtext3 { width:60px }")	
	document.write(".Formtext4 { width:100px }")
	document.write(".Formtext5 { width:30px }")	
	document.write(".Formtextarea1 { height:150px; width:325px }")

	document.write(".Formlist1 { background-color:#ffcc99; width:100px }")	
	document.write(".Formlist2 { background-color:#ffcc99; width:60px }")	
	document.write(".Formlist3 { background-color:#ffcc99; width:120px }")
	document.write(".Formlist4 { background-color:#ffcc99; width:200px }")
	
} else if ( userOs == "Mac" && ( browser == "MSIE" && version >= 5 )) {
	document.write(".body1 {  font-size: 12px; line-height:150%; }")
	document.write(".body2 {  font-size: 12px; color: #ff0000; line-height:150%; }")
	document.write(".body3 {  font-size: 12px; color: #666666; line-height:150%; }")
	document.write(".body4 {  font-size: 12px; color: #666666; line-height:150%; }")
	document.write(".body5 {  font-size: 12px; color: #ffffff; line-height:150%; text-decoration: underline; font-weight: bold}")
	document.write(".body6 {  font-size: 11px; color: #ff6600; line-height:140%; text-decoration: underline; font-weight: normal}")
	document.write(".body7 {  font-size: 10px; color: #666666; line-height:150%; }")
	
	document.write(".Formtext1 { width:180px }")	
	document.write(".Formtext2 { width:300px }")	
	document.write(".Formtext3 { width:60px }")	
	document.write(".Formtext4 { width:100px }")
	document.write(".Formtext5 { width:30px }")	
	document.write(".Formtextarea1 { height:150px; width:325px }")

	document.write(".Formlist1 { background-color:#ffcc99; width:100px }")	
	document.write(".Formlist2 { background-color:#ffcc99; width:60px }")
	document.write(".Formlist3 { background-color:#ffcc99; width:120px }")
	document.write(".Formlist4 { background-color:#ffcc99; width:200px }")
	
} else if ( userOs == "Mac" && ( browser == "NN" && version == 4 )) {
	document.write(".body1 {  font-size: 12px; }")
	document.write(".body2 {  font-size: 12px; color: #ff0000; }")
	document.write(".body3 {  font-size: 12px; color: #666666; }")
	document.write(".body4 {  font-size: 12px; color: #666666; }")
	document.write(".body5 {  font-size: 12px; color: #ffffff; text-decoration: underline; font-weight: bold}")
	document.write(".body6 {  font-size: 11px; color: #ff6600; text-decoration: underline; font-weight: normal}")
	document.write(".body7 {  font-size: 10px; color: #666666; }")
	
} else if ( userOs == "Mac" ) {
	document.write(".body1 {  font-size: 12px; line-height:150%; }")
	document.write(".body2 {  font-size: 12px; color: #ff0000; line-height:150%; }")
	document.write(".body3 {  font-size: 12px; color: #666666; line-height:150%; }")
	document.write(".body4 {  font-size: 12px; color: #666666; line-height:150%; }")
	document.write(".body5 {  font-size: 12px; color: #ffffff; line-height:150%; text-decoration: underline; font-weight: bold}")
	document.write(".body6 {  font-size: 11px; color: #ff6600; line-height:140%; text-decoration: underline; font-weight: normal}")
	document.write(".body7 {  font-size: 10px; color: #666666; line-height:150%; }")

	document.write(".Formtext1 { width:180px }")	
	document.write(".Formtext2 { width:300px }")	
	document.write(".Formtext3 { width:60px }")	
	document.write(".Formtext4 { width:100px }")
	document.write(".Formtext5 { width:30px }")	
	document.write(".Formtextarea1 { height:150px; width:325px }")

	document.write(".Formlist1 { background-color:#ffcc99; width:100px }")	
	document.write(".Formlist2 { background-color:#ffcc99; width:60px }")
	document.write(".Formlist3 { background-color:#ffcc99; width:120px }")
	document.write(".Formlist4 { background-color:#ffcc99; width:200px }")
	
} else {
	document.write(".body1 {  font-size: 12px; line-height:150%; }")
	document.write(".body2 {  font-size: 12px; color: #ff0000; line-height:150%; }")
	document.write(".body3 {  font-size: 12px; color: #666666; line-height:150%; }")
	document.write(".body4 {  font-size: 12px; color: #666666; line-height:150%; }")
	document.write(".body5 {  font-size: 12px; color: #ffffff; line-height:150%; text-decoration: underline; font-weight: bold}")
	document.write(".body6 {  font-size: 11px; color: #ff6600; line-height:140%; text-decoration: underline; font-weight: normal}")
	document.write(".body7 {  font-size: 12px; color: #666666; line-height:150%; }")
	
	document.write(".Formtext1 { width:180px }")	
	document.write(".Formtext2 { width:300px }")	
	document.write(".Formtext3 { width:60px }")	
	document.write(".Formtext4 { width:100px }")
	document.write(".Formtext5 { width:30px }")	
	document.write(".Formtextarea1 { height:150px; width:325px }")

	document.write(".Formlist1 { background-color:#ffcc99; width:100px }")	
	document.write(".Formlist2 { background-color:#ffcc99; width:60px }")
	document.write(".Formlist3 { background-color:#ffcc99; width:120px }")
	document.write(".Formlist4 { background-color:#ffcc99; width:200px }")
	
}
	
	document.write("a:link{  color: #333399; }")
	document.write("a:visited{  color: #333399; }")
	document.write("a:active { color: #333399; }")
	
	


	
document.write("--></style>")


