/*
 * MyFonts Webfont Build ID 746086, 2011-04-06T15:15:54-0400
 * 
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are 
 * explicitly restricted from using the Licensed Webfonts(s).
 * 
 * You may obtain a valid license at the URLs below.
 * 
 * Webfont: Museo Sans 700
 * URL: http://new.myfonts.com/fonts/exljbris/museo-sans/700/
 * Foundry: exljbris
 * Copyright: Copyright (c) 2008 by Jos Buivenga. All rights reserved.
 * License: http://www.myfonts.com/viewlicense?1056
 * Licensed pageviews: 10,000/month
 * CSS font-family: MuseoSans-700
 * CSS font-weight: normal
 * 
 * Webfont: Museo Sans 300
 * URL: http://new.myfonts.com/fonts/exljbris/museo-sans/300/
 * Foundry: exljbris
 * Copyright: Copyright (c) 2008 by Jos Buivenga. All rights reserved.
 * License: http://www.myfonts.com/viewlicense?1056
 * Licensed pageviews: 10,000/month
 * CSS font-family: MuseoSans-300
 * CSS font-weight: normal
 * 
 * Webfont: Museo Sans 900 Italic
 * URL: http://new.myfonts.com/fonts/exljbris/museo-sans/900-italic/
 * Foundry: exljbris
 * Copyright: Copyright (c) 2008 by Jos Buivenga. All rights reserved.
 * License: http://www.myfonts.com/viewlicense?1056
 * Licensed pageviews: 10,000/month
 * CSS font-family: MuseoSans-900Italic
 * CSS font-weight: normal
 * 
 * Webfont: Museo Sans 700 Italic
 * URL: http://new.myfonts.com/fonts/exljbris/museo-sans/700-italic/
 * Foundry: exljbris
 * Copyright: Copyright (c) 2008 by Jos Buivenga. All rights reserved.
 * License: http://www.myfonts.com/viewlicense?1056
 * Licensed pageviews: 10,000/month
 * CSS font-family: MuseoSans-700Italic
 * CSS font-weight: normal
 * 
 * Webfont: Museo Sans 300 Italic
 * URL: http://new.myfonts.com/fonts/exljbris/museo-sans/300-italic/
 * Foundry: exljbris
 * Copyright: Copyright (c) 2008 by Jos Buivenga. All rights reserved.
 * License: http://www.myfonts.com/viewlicense?1056
 * Licensed pageviews: 10,000/month
 * CSS font-family: MuseoSans-300Italic
 * CSS font-weight: normal
 * 
 * Webfont: Museo Sans 900
 * URL: http://new.myfonts.com/fonts/exljbris/museo-sans/900/
 * Foundry: exljbris
 * Copyright: Copyright (c) 2008 by Jos Buivenga. All rights reserved.
 * License: http://www.myfonts.com/viewlicense?1056
 * Licensed pageviews: 10,000/month
 * CSS font-family: MuseoSans-900
 * CSS font-weight: normal
 * 
 * (c) 2011 Bitstream, Inc
*/



// safari 3.1: data-css
// firefox 3.6+: woff
// firefox 3.5+: data-css
// chrome 4+: data-css
// chrome 6+: woff
// IE 5+: eot
// IE 9: woff
// opera 10.1+: data-css
// mobile safari: svg/data-css
// android: data-css

var browserName, browserVersion, webfontType,  webfontTypeOverride;
 
if (typeof(customPath) == 'undefined')
	var customPath = false;


if (typeof(woffEnabled) == 'undefined')
	var woffEnabled = true;


if (/myfonts_test=on/.test(window.location.search))
	var myfonts_webfont_test = true;

else if (typeof(myfonts_webfont_test) == 'undefined')
	var myfonts_webfont_test = false;


if (customPath)
	var path = customPath;

else {
	var scripts = document.getElementsByTagName("SCRIPT");
	var script = scripts[scripts.length-1].src;

	if (!script.match("://") && script.charAt(0) != '/')
		script = "./"+script;
		
	var path = script.replace(/\\/g,'/').replace(/\/[^\/]*\/?$/, '');
}


if (myfonts_webfont_test)
	document.write('<script type="text/javascript" src="' +path+ '/MyFontsWebfontsKit_test.js"></script>');


if (/webfont=(woff|ttf|eot)/.test(window.location.search))
{
	webfontTypeOverride = RegExp.$1;

	if (webfontTypeOverride == 'ttf')
		webfontTypeOverride = 'data-css';
}


if (/MSIE (\d+\.\d+)/.test(navigator.userAgent))
{
	browserName = 'MSIE';
	browserVersion = new Number(RegExp.$1);
	if (browserVersion >= 9.0 && woffEnabled)
		webfontType = 'woff';
	else if (browserVersion >= 5.0)
		webfontType = 'eot';
}
else if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent))
{
	browserName = 'Firefox';
	browserVersion = new Number(RegExp.$1);
	if (browserVersion >= 3.6 && woffEnabled)
		webfontType = 'woff';
	else if (browserVersion >= 3.5)
		webfontType = 'data-css';
}
else if (/Chrome\/(\d+\.\d+)/.test(navigator.userAgent)) // must check before safari
{
	browserName = 'Chrome';
	browserVersion = new Number(RegExp.$1);

	if (browserVersion >= 6.0 && woffEnabled)
		webfontType = 'woff';

	else if (browserVersion >= 4.0)
		webfontType = 'data-css';
}
else if (/Mozilla.*(iPhone|iPad).* OS (\d+)_(\d+).* AppleWebKit.*Safari/.test(navigator.userAgent))
{
		browserName = 'MobileSafari';
		browserVersion = new Number(RegExp.$2) + (new Number(RegExp.$3) / 10)

	if(browserVersion >= 4.2)
		webfontType = 'data-css';

	else
		webfontType = 'svg';
}
else if (/Mozilla.*(iPhone|iPad|BlackBerry).*AppleWebKit.*Safari/.test(navigator.userAgent))
{
	browserName = 'MobileSafari';
	webfontType = 'svg';
}
else if (/Safari\/(\d+\.\d+)/.test(navigator.userAgent))
{
	browserName = 'Safari';
	if (/Version\/(\d+\.\d+)/.test(navigator.userAgent))
	{
		browserVersion = new Number(RegExp.$1);
		if (browserVersion >= 3.1)
			webfontType = 'data-css';
	}
}
else if (/Opera\/(\d+\.\d+)/.test(navigator.userAgent))
{
	browserName = 'Opera';
	if (/Version\/(\d+\.\d+)/.test(navigator.userAgent))
	{
		browserVersion = new Number(RegExp.$1);
		if (browserVersion >= 10.1)
			webfontType = 'data-css';
	}
}


if (webfontTypeOverride)
	webfontType = webfontTypeOverride;

switch (webfontType)
{
		case 'eot':
		document.write("<style>\n");
				document.write("@font-face {font-family:\"MuseoSans-700\";src:url(\"" + path + "/webfonts/eot/5e131e65083e8bd567a28b081a89ac5d.eot\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-300\";src:url(\"" + path + "/webfonts/eot/fd359235a2e98497c62860267afd7317.eot\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-900Italic\";src:url(\"" + path + "/webfonts/eot/9833c42eaeb2bdc1b4211612c0f0eb87.eot\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-700Italic\";src:url(\"" + path + "/webfonts/eot/d99b802be793a5fc06e5927b6ca2041c.eot\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-300Italic\";src:url(\"" + path + "/webfonts/eot/42004037aa11a48b1ddcf08a45c823a3.eot\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-900\";src:url(\"" + path + "/webfonts/eot/bccfc8523e1a7adecbfed0cfec8582c3.eot\");}\n");
				document.write("</style>");
		break;
		
		case 'woff':
		document.write("<style>\n");
				document.write("@font-face {font-family:\"MuseoSans-700\";src:url(\"" + path + "/webfonts/woff/5e131e65083e8bd567a28b081a89ac5d.woff\") format(\"woff\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-300\";src:url(\"" + path + "/webfonts/woff/fd359235a2e98497c62860267afd7317.woff\") format(\"woff\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-900Italic\";src:url(\"" + path + "/webfonts/woff/9833c42eaeb2bdc1b4211612c0f0eb87.woff\") format(\"woff\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-700Italic\";src:url(\"" + path + "/webfonts/woff/d99b802be793a5fc06e5927b6ca2041c.woff\") format(\"woff\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-300Italic\";src:url(\"" + path + "/webfonts/woff/42004037aa11a48b1ddcf08a45c823a3.woff\") format(\"woff\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-900\";src:url(\"" + path + "/webfonts/woff/bccfc8523e1a7adecbfed0cfec8582c3.woff\") format(\"woff\");}\n");
				document.write("</style>");
		break;
	
		case 'data-css':
		document.write("<link rel='stylesheet' type='text/css' href='" + path + "/webfonts/datacss/a0e67c9b7b40cbd23a99a47f17b596d0.css'>");
		break;
	
		case 'svg':
		document.write("<style>\n");
				document.write("@font-face {font-family:\"MuseoSans-700\";src:url(\"" + path + "/webfonts/svg/5e131e65083e8bd567a28b081a89ac5d.svg#MuseoSans-700\") format(\"svg\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-300\";src:url(\"" + path + "/webfonts/svg/fd359235a2e98497c62860267afd7317.svg#MuseoSans-300\") format(\"svg\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-900Italic\";src:url(\"" + path + "/webfonts/svg/9833c42eaeb2bdc1b4211612c0f0eb87.svg#MuseoSans-900Italic\") format(\"svg\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-700Italic\";src:url(\"" + path + "/webfonts/svg/d99b802be793a5fc06e5927b6ca2041c.svg#MuseoSans-700Italic\") format(\"svg\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-300Italic\";src:url(\"" + path + "/webfonts/svg/42004037aa11a48b1ddcf08a45c823a3.svg#MuseoSans-300Italic\") format(\"svg\");}\n");
				document.write("@font-face {font-family:\"MuseoSans-900\";src:url(\"" + path + "/webfonts/svg/bccfc8523e1a7adecbfed0cfec8582c3.svg#MuseoSans-900\") format(\"svg\");}\n");
				document.write("</style>");
		break;
		
	default:
		break;
}
