html 


body {margin: 2% 5% 0% 5% ; font: 10pt "Trebuchet MS"; color: #333; text-align: center; }

this.blankwin = function(){
	var hostname = window.location.hostname;
	hostname = hostname.replace("www.","").toLowerCase();
	var a = document.getElementsByTagName("a");	
	this.check = function(obj){
		var href = obj.href.toLowerCase();
		return (href.indexOf("http://")!=-1 && href.indexOf(hostname)==-1) ? true : false;
	};
	this.set = function(obj){
		obj.target = "_blank";
		obj.className = "external";
	};	
	for (var i=0;i<a.length;i++){
		if(check(a[i])) set(a[i]);
	};		
};


a:hover {
text-decoration: underline;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
} 

.nounder a {
text-decoration: none;
color: black;
}



H1 { font: bold 10pt Trebuchet MS }
H2 { font: bold 10pt Trebuchet MS }
H3 { font: bold 10pt Trebuchet MS }
H4 { font: bold 10pt Trebuchet MS }
H5 { font: bold 10pt Trebuchet MS }
H6 { font: bold 10pt Trebuchet MS }


/* Links */
a {font-weight: normal; }

a:link {color: #0033cc; }
a:visited {color: #81b; }
a:active {color: #4682b4; }
a:hover {color: #9999ff; }