
var myriad = {
  src: '/sifr4/myriad.swf'
};

sIFR.prefetch(myriad);

sIFR.activate();

/*
- leading: similar to line-height in CSS
- Don't type "px" after the values for leading & letter-spacing!!
- Have to include bold/italic fonts in Flash file otherwise bold/italic won't show up.
*/

sIFR.replace(myriad, {
selector: 'h1'
,css: [
  '.sIFR-root { color:#b60e2a; padding:0;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 7px;
	margin-left: 0px;
	font-weight: normal; leading: -3;  letter-spacing: 0.1;}'
]
});


sIFR.replace(myriad, {
selector: 'h2'
,css: [
  '.sIFR-root { 
   	padding-bottom:0px;
	margin-top:18px;
	margin-bottom:0px;
	line-height:25px;
	margin-bottom:2px;color:#000000; font-weight: normal; leading: -3; letter-spacing: 0.1;}'
]
});

sIFR.replace(myriad, {
selector: 'h3'
,css: [
  '.sIFR-root { 
  	padding-bottom:0px;
	margin-top:12px;
	margin-bottom:1px;
	margin-left: 0;color:#b60e2a; font-weight: normal; leading: -3; letter-spacing: 0.1;}'
]
});

sIFR.replace(myriad, {
selector: 'h4'
,css: [
  '.sIFR-root { 
  	padding-bottom:0px;
	margin-top:0px;
	margin-bottom:1px;
	margin-left: 0;color:#b60e2a; font-weight: normal; leading: -3; letter-spacing: 0.1;}'
]
});

sIFR.replace(myriad, {
selector: 'h5'
,css: [
  '.sIFR-root { color:#140f55; font-weight: normal; leading: -3; letter-spacing: 0.1; text-transform:uppercase; }'
]
});

sIFR.replace(myriad, {
selector: 'h6'
,css: [
  '.sIFR-root { color:#b60e2a; font-weight: normal; leading: -3; letter-spacing: 0.1;}'
]
});
