<!--
var isMoz = (navigator.appName == "Netscape");
var isIE = (navigator.appName == "Microsoft Internet Explorer");
var isOpera = (navigator.userAgent.indexOf("Opera") != -1);
var isMac = (navigator.userAgent.indexOf("Mac") != -1);

if(isIE && !isMac) {
	document.write('<link rel="stylesheet" href="http://www.carefirst.com/stylesheets/relative.css" type="text/css">')
}
else if (isMoz) {
	document.write('<link rel="stylesheet" href="http://www.carefirst.com/stylesheets/pixels.css" type="text/css">')
}
else if (isIE && isMac) {
	document.write('<link rel="stylesheet" href="http://www.carefirst.com/stylesheets/pixels.css" type="text/css">')
}
else if (isOpera) {
	document.write('<link rel="stylesheet" href="http://www.carefirst.com/stylesheets/pixels.css" type="text/css">')
} else {
	document.write('<link rel="stylesheet" href="http://www.carefirst.com/stylesheets/pixels.css" type="text/css">')
}
//-->