
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_97f7c6322b4f893585c6cf4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.700684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d18ab7a26998a1358aaa0c8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e450b95379660307460e2e7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f44d2c7d905506301f84cdb7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m69{transform:matrix(-0.196852,0.147265,-0.149757,-0.200182,0,0);-ms-transform:matrix(-0.196852,0.147265,-0.149757,-0.200182,0,0);-webkit-transform:matrix(-0.196852,0.147265,-0.149757,-0.200182,0,0);}
.m30{transform:matrix(-0.196850,0.147267,-0.149759,-0.200180,0,0);-ms-transform:matrix(-0.196850,0.147267,-0.149759,-0.200180,0,0);-webkit-transform:matrix(-0.196850,0.147267,-0.149759,-0.200180,0,0);}
.m45{transform:matrix(-0.196850,0.147267,-0.149758,-0.200181,0,0);-ms-transform:matrix(-0.196850,0.147267,-0.149758,-0.200181,0,0);-webkit-transform:matrix(-0.196850,0.147267,-0.149758,-0.200181,0,0);}
.m2f{transform:matrix(-0.185556,0.161264,-0.163993,-0.188697,0,0);-ms-transform:matrix(-0.185556,0.161264,-0.163993,-0.188697,0,0);-webkit-transform:matrix(-0.185556,0.161264,-0.163993,-0.188697,0,0);}
.m58{transform:matrix(-0.185556,0.161265,-0.163993,-0.188696,0,0);-ms-transform:matrix(-0.185556,0.161265,-0.163993,-0.188696,0,0);-webkit-transform:matrix(-0.185556,0.161265,-0.163993,-0.188696,0,0);}
.m44{transform:matrix(-0.165891,0.181432,-0.184502,-0.168698,0,0);-ms-transform:matrix(-0.165891,0.181432,-0.184502,-0.168698,0,0);-webkit-transform:matrix(-0.165891,0.181432,-0.184502,-0.168698,0,0);}
.m2e{transform:matrix(-0.165890,0.181433,-0.184503,-0.168697,0,0);-ms-transform:matrix(-0.165890,0.181433,-0.184503,-0.168697,0,0);-webkit-transform:matrix(-0.165890,0.181433,-0.184503,-0.168697,0,0);}
.m57{transform:matrix(-0.165889,0.181434,-0.184504,-0.168696,0,0);-ms-transform:matrix(-0.165889,0.181434,-0.184504,-0.168696,0,0);-webkit-transform:matrix(-0.165889,0.181434,-0.184504,-0.168696,0,0);}
.m2d{transform:matrix(-0.138095,0.203389,-0.206830,-0.140432,0,0);-ms-transform:matrix(-0.138095,0.203389,-0.206830,-0.140432,0,0);-webkit-transform:matrix(-0.138095,0.203389,-0.206830,-0.140432,0,0);}
.m56{transform:matrix(-0.138089,0.203393,-0.206835,-0.140425,0,0);-ms-transform:matrix(-0.138089,0.203393,-0.206835,-0.140425,0,0);-webkit-transform:matrix(-0.138089,0.203393,-0.206835,-0.140425,0,0);}
.m43{transform:matrix(-0.138088,0.203395,-0.206836,-0.140424,0,0);-ms-transform:matrix(-0.138088,0.203395,-0.206836,-0.140424,0,0);-webkit-transform:matrix(-0.138088,0.203395,-0.206836,-0.140424,0,0);}
.m6a{transform:matrix(-0.123219,-0.212730,0.216330,-0.125304,0,0);-ms-transform:matrix(-0.123219,-0.212730,0.216330,-0.125304,0,0);-webkit-transform:matrix(-0.123219,-0.212730,0.216330,-0.125304,0,0);}
.m2c{transform:matrix(-0.110209,0.219753,-0.223471,-0.112074,0,0);-ms-transform:matrix(-0.110209,0.219753,-0.223471,-0.112074,0,0);-webkit-transform:matrix(-0.110209,0.219753,-0.223471,-0.112074,0,0);}
.m68{transform:matrix(-0.110202,0.219757,-0.223475,-0.112066,0,0);-ms-transform:matrix(-0.110202,0.219757,-0.223475,-0.112066,0,0);-webkit-transform:matrix(-0.110202,0.219757,-0.223475,-0.112066,0,0);}
.m55{transform:matrix(-0.110200,0.219758,-0.223476,-0.112065,0,0);-ms-transform:matrix(-0.110200,0.219758,-0.223476,-0.112065,0,0);-webkit-transform:matrix(-0.110200,0.219758,-0.223476,-0.112065,0,0);}
.m42{transform:matrix(-0.110195,0.219760,-0.223479,-0.112059,0,0);-ms-transform:matrix(-0.110195,0.219760,-0.223479,-0.112059,0,0);-webkit-transform:matrix(-0.110195,0.219760,-0.223479,-0.112059,0,0);}
.m2b{transform:matrix(-0.088124,0.229502,-0.233386,-0.089615,0,0);-ms-transform:matrix(-0.088124,0.229502,-0.233386,-0.089615,0,0);-webkit-transform:matrix(-0.088124,0.229502,-0.233386,-0.089615,0,0);}
.m67{transform:matrix(-0.088115,0.229506,-0.233390,-0.089607,0,0);-ms-transform:matrix(-0.088115,0.229506,-0.233390,-0.089607,0,0);-webkit-transform:matrix(-0.088115,0.229506,-0.233390,-0.089607,0,0);}
.m54{transform:matrix(-0.088112,0.229507,-0.233391,-0.089604,0,0);-ms-transform:matrix(-0.088112,0.229507,-0.233391,-0.089604,0,0);-webkit-transform:matrix(-0.088112,0.229507,-0.233391,-0.089604,0,0);}
.m41{transform:matrix(-0.088108,0.229508,-0.233392,-0.089600,0,0);-ms-transform:matrix(-0.088108,0.229508,-0.233392,-0.089600,0,0);-webkit-transform:matrix(-0.088108,0.229508,-0.233392,-0.089600,0,0);}
.m6b{transform:matrix(-0.085876,-0.230353,0.234251,-0.087329,0,0);-ms-transform:matrix(-0.085876,-0.230353,0.234251,-0.087329,0,0);-webkit-transform:matrix(-0.085876,-0.230353,0.234251,-0.087329,0,0);}
.m2a{transform:matrix(-0.063887,0.237393,-0.241411,-0.064968,0,0);-ms-transform:matrix(-0.063887,0.237393,-0.241411,-0.064968,0,0);-webkit-transform:matrix(-0.063887,0.237393,-0.241411,-0.064968,0,0);}
.m66{transform:matrix(-0.063878,0.237396,-0.241413,-0.064959,0,0);-ms-transform:matrix(-0.063878,0.237396,-0.241413,-0.064959,0,0);-webkit-transform:matrix(-0.063878,0.237396,-0.241413,-0.064959,0,0);}
.m53{transform:matrix(-0.063876,0.237397,-0.241414,-0.064957,0,0);-ms-transform:matrix(-0.063876,0.237397,-0.241414,-0.064957,0,0);-webkit-transform:matrix(-0.063876,0.237397,-0.241414,-0.064957,0,0);}
.m40{transform:matrix(-0.063874,0.237398,-0.241414,-0.064955,0,0);-ms-transform:matrix(-0.063874,0.237398,-0.241414,-0.064955,0,0);-webkit-transform:matrix(-0.063874,0.237398,-0.241414,-0.064955,0,0);}
.m6c{transform:matrix(-0.057536,-0.239012,0.243057,-0.058510,0,0);-ms-transform:matrix(-0.057536,-0.239012,0.243057,-0.058510,0,0);-webkit-transform:matrix(-0.057536,-0.239012,0.243057,-0.058510,0,0);}
.m6d{transform:matrix(-0.031584,-0.243803,0.247928,-0.032119,0,0);-ms-transform:matrix(-0.031584,-0.243803,0.247928,-0.032119,0,0);-webkit-transform:matrix(-0.031584,-0.243803,0.247928,-0.032119,0,0);}
.m29{transform:matrix(-0.029771,0.244031,-0.248160,-0.030275,0,0);-ms-transform:matrix(-0.029771,0.244031,-0.248160,-0.030275,0,0);-webkit-transform:matrix(-0.029771,0.244031,-0.248160,-0.030275,0,0);}
.m52{transform:matrix(-0.029758,0.244033,-0.248162,-0.030262,0,0);-ms-transform:matrix(-0.029758,0.244033,-0.248162,-0.030262,0,0);-webkit-transform:matrix(-0.029758,0.244033,-0.248162,-0.030262,0,0);}
.m65{transform:matrix(-0.029758,0.244033,-0.248162,-0.030261,0,0);-ms-transform:matrix(-0.029758,0.244033,-0.248162,-0.030261,0,0);-webkit-transform:matrix(-0.029758,0.244033,-0.248162,-0.030261,0,0);}
.m3f{transform:matrix(-0.029751,0.244034,-0.248163,-0.030254,0,0);-ms-transform:matrix(-0.029751,0.244034,-0.248163,-0.030254,0,0);-webkit-transform:matrix(-0.029751,0.244034,-0.248163,-0.030254,0,0);}
.m99{transform:matrix(-0.007508,0.245725,-0.249883,-0.007635,0,0);-ms-transform:matrix(-0.007508,0.245725,-0.249883,-0.007635,0,0);-webkit-transform:matrix(-0.007508,0.245725,-0.249883,-0.007635,0,0);}
.m6e{transform:matrix(0.004623,-0.245797,0.249956,0.004702,0,0);-ms-transform:matrix(0.004623,-0.245797,0.249956,0.004702,0,0);-webkit-transform:matrix(0.004623,-0.245797,0.249956,0.004702,0,0);}
.m64{transform:matrix(0.006346,0.245758,-0.249917,0.006453,0,0);-ms-transform:matrix(0.006346,0.245758,-0.249917,0.006453,0,0);-webkit-transform:matrix(0.006346,0.245758,-0.249917,0.006453,0,0);}
.m3e{transform:matrix(0.006406,0.245757,-0.249915,0.006513,0,0);-ms-transform:matrix(0.006406,0.245757,-0.249915,0.006513,0,0);-webkit-transform:matrix(0.006406,0.245757,-0.249915,0.006513,0,0);}
.m28{transform:matrix(0.006440,0.245756,-0.249914,0.006548,0,0);-ms-transform:matrix(0.006440,0.245756,-0.249914,0.006548,0,0);-webkit-transform:matrix(0.006440,0.245756,-0.249914,0.006548,0,0);}
.m51{transform:matrix(0.006446,0.245756,-0.249914,0.006554,0,0);-ms-transform:matrix(0.006446,0.245756,-0.249914,0.006554,0,0);-webkit-transform:matrix(0.006446,0.245756,-0.249914,0.006554,0,0);}
.m98{transform:matrix(0.010570,0.245613,-0.249769,0.010748,0,0);-ms-transform:matrix(0.010570,0.245613,-0.249769,0.010748,0,0);-webkit-transform:matrix(0.010570,0.245613,-0.249769,0.010748,0,0);}
.m17{transform:matrix(0.027845,0.244258,-0.248391,0.028316,0,0);-ms-transform:matrix(0.027845,0.244258,-0.248391,0.028316,0,0);-webkit-transform:matrix(0.027845,0.244258,-0.248391,0.028316,0,0);}
.m27{transform:matrix(0.033558,0.243539,-0.247660,0.034126,0,0);-ms-transform:matrix(0.033558,0.243539,-0.247660,0.034126,0,0);-webkit-transform:matrix(0.033558,0.243539,-0.247660,0.034126,0,0);}
.m50{transform:matrix(0.033561,0.243538,-0.247659,0.034129,0,0);-ms-transform:matrix(0.033561,0.243538,-0.247659,0.034129,0,0);-webkit-transform:matrix(0.033561,0.243538,-0.247659,0.034129,0,0);}
.m63{transform:matrix(0.033564,0.243538,-0.247659,0.034132,0,0);-ms-transform:matrix(0.033564,0.243538,-0.247659,0.034132,0,0);-webkit-transform:matrix(0.033564,0.243538,-0.247659,0.034132,0,0);}
.m3d{transform:matrix(0.033578,0.243536,-0.247657,0.034146,0,0);-ms-transform:matrix(0.033578,0.243536,-0.247657,0.034146,0,0);-webkit-transform:matrix(0.033578,0.243536,-0.247657,0.034146,0,0);}
.m97{transform:matrix(0.039024,0.242722,-0.246830,0.039684,0,0);-ms-transform:matrix(0.039024,0.242722,-0.246830,0.039684,0,0);-webkit-transform:matrix(0.039024,0.242722,-0.246830,0.039684,0,0);}
.m16{transform:matrix(0.041042,0.242390,-0.246492,0.041736,0,0);-ms-transform:matrix(0.041042,0.242390,-0.246492,0.041736,0,0);-webkit-transform:matrix(0.041042,0.242390,-0.246492,0.041736,0,0);}
.m6f{transform:matrix(0.042435,-0.242150,0.246248,0.043152,0,0);-ms-transform:matrix(0.042435,-0.242150,0.246248,0.043152,0,0);-webkit-transform:matrix(0.042435,-0.242150,0.246248,0.043152,0,0);}
.m82{transform:matrix(0.052807,-0.240102,0.244164,0.053700,0,0);-ms-transform:matrix(0.052807,-0.240102,0.244164,0.053700,0,0);-webkit-transform:matrix(0.052807,-0.240102,0.244164,0.053700,0,0);}
.m26{transform:matrix(0.058777,0.238710,-0.242750,0.059771,0,0);-ms-transform:matrix(0.058777,0.238710,-0.242750,0.059771,0,0);-webkit-transform:matrix(0.058777,0.238710,-0.242750,0.059771,0,0);}
.m3c{transform:matrix(0.058791,0.238707,-0.242746,0.059785,0,0);-ms-transform:matrix(0.058791,0.238707,-0.242746,0.059785,0,0);-webkit-transform:matrix(0.058791,0.238707,-0.242746,0.059785,0,0);}
.m15{transform:matrix(0.065786,0.236874,-0.240883,0.066899,0,0);-ms-transform:matrix(0.065786,0.236874,-0.240883,0.066899,0,0);-webkit-transform:matrix(0.065786,0.236874,-0.240883,0.066899,0,0);}
.m0{transform:matrix(0.070259,-0.235587,0.239573,0.071448,0,0);-ms-transform:matrix(0.070259,-0.235587,0.239573,0.071448,0,0);-webkit-transform:matrix(0.070259,-0.235587,0.239573,0.071448,0,0);}
.m96{transform:matrix(0.074022,0.234431,-0.238398,0.075275,0,0);-ms-transform:matrix(0.074022,0.234431,-0.238398,0.075275,0,0);-webkit-transform:matrix(0.074022,0.234431,-0.238398,0.075275,0,0);}
.m70{transform:matrix(0.080154,-0.232405,0.236339,0.081511,0,0);-ms-transform:matrix(0.080154,-0.232405,0.236339,0.081511,0,0);-webkit-transform:matrix(0.080154,-0.232405,0.236339,0.081511,0,0);}
.m83{transform:matrix(0.091839,-0.228041,0.231900,0.093393,0,0);-ms-transform:matrix(0.091839,-0.228041,0.231900,0.093393,0,0);-webkit-transform:matrix(0.091839,-0.228041,0.231900,0.093393,0,0);}
.m4f{transform:matrix(0.093629,0.227313,-0.231159,0.095213,0,0);-ms-transform:matrix(0.093629,0.227313,-0.231159,0.095213,0,0);-webkit-transform:matrix(0.093629,0.227313,-0.231159,0.095213,0,0);}
.m62{transform:matrix(0.093629,0.227312,-0.231159,0.095214,0,0);-ms-transform:matrix(0.093629,0.227312,-0.231159,0.095214,0,0);-webkit-transform:matrix(0.093629,0.227312,-0.231159,0.095214,0,0);}
.m3b{transform:matrix(0.093637,0.227309,-0.231155,0.095222,0,0);-ms-transform:matrix(0.093637,0.227309,-0.231155,0.095222,0,0);-webkit-transform:matrix(0.093637,0.227309,-0.231155,0.095222,0,0);}
.m25{transform:matrix(0.093646,0.227306,-0.231152,0.095230,0,0);-ms-transform:matrix(0.093646,0.227306,-0.231152,0.095230,0,0);-webkit-transform:matrix(0.093646,0.227306,-0.231152,0.095230,0,0);}
.m14{transform:matrix(0.096379,0.226161,-0.229988,0.098009,0,0);-ms-transform:matrix(0.096379,0.226161,-0.229988,0.098009,0,0);-webkit-transform:matrix(0.096379,0.226161,-0.229988,0.098009,0,0);}
.m95{transform:matrix(0.104656,0.222451,-0.226215,0.106427,0,0);-ms-transform:matrix(0.104656,0.222451,-0.226215,0.106427,0,0);-webkit-transform:matrix(0.104656,0.222451,-0.226215,0.106427,0,0);}
.m71{transform:matrix(0.105237,-0.222176,0.225936,0.107018,0,0);-ms-transform:matrix(0.105237,-0.222176,0.225936,0.107018,0,0);-webkit-transform:matrix(0.105237,-0.222176,0.225936,0.107018,0,0);}
.m1{transform:matrix(0.105644,-0.221983,0.225740,0.107432,0,0);-ms-transform:matrix(0.105644,-0.221983,0.225740,0.107432,0,0);-webkit-transform:matrix(0.105644,-0.221983,0.225740,0.107432,0,0);}
.m84{transform:matrix(0.117999,-0.215670,0.219320,0.119995,0,0);-ms-transform:matrix(0.117999,-0.215670,0.219320,0.119995,0,0);-webkit-transform:matrix(0.117999,-0.215670,0.219320,0.119995,0,0);}
.m3a{transform:matrix(0.119394,0.214900,-0.218537,0.121415,0,0);-ms-transform:matrix(0.119394,0.214900,-0.218537,0.121415,0,0);-webkit-transform:matrix(0.119394,0.214900,-0.218537,0.121415,0,0);}
.m4e{transform:matrix(0.119429,0.214881,-0.218517,0.121450,0,0);-ms-transform:matrix(0.119429,0.214881,-0.218517,0.121450,0,0);-webkit-transform:matrix(0.119429,0.214881,-0.218517,0.121450,0,0);}
.m61{transform:matrix(0.119434,0.214879,-0.218515,0.121455,0,0);-ms-transform:matrix(0.119434,0.214879,-0.218515,0.121455,0,0);-webkit-transform:matrix(0.119434,0.214879,-0.218515,0.121455,0,0);}
.m24{transform:matrix(0.119442,0.214874,-0.218510,0.121463,0,0);-ms-transform:matrix(0.119442,0.214874,-0.218510,0.121463,0,0);-webkit-transform:matrix(0.119442,0.214874,-0.218510,0.121463,0,0);}
.m13{transform:matrix(0.121035,0.213980,-0.217601,0.123084,0,0);-ms-transform:matrix(0.121035,0.213980,-0.217601,0.123084,0,0);-webkit-transform:matrix(0.121035,0.213980,-0.217601,0.123084,0,0);}
.m94{transform:matrix(0.126737,0.210654,-0.214219,0.128881,0,0);-ms-transform:matrix(0.126737,0.210654,-0.214219,0.128881,0,0);-webkit-transform:matrix(0.126737,0.210654,-0.214219,0.128881,0,0);}
.m72{transform:matrix(0.130077,-0.208608,0.212138,0.132278,0,0);-ms-transform:matrix(0.130077,-0.208608,0.212138,0.132278,0,0);-webkit-transform:matrix(0.130077,-0.208608,0.212138,0.132278,0,0);}
.m2{transform:matrix(0.130516,-0.208333,0.211859,0.132725,0,0);-ms-transform:matrix(0.130516,-0.208333,0.211859,0.132725,0,0);-webkit-transform:matrix(0.130516,-0.208333,0.211859,0.132725,0,0);}
.m85{transform:matrix(0.139715,-0.202280,0.205703,0.142079,0,0);-ms-transform:matrix(0.139715,-0.202280,0.205703,0.142079,0,0);-webkit-transform:matrix(0.139715,-0.202280,0.205703,0.142079,0,0);}
.m12{transform:matrix(0.140139,0.201986,-0.205404,0.142510,0,0);-ms-transform:matrix(0.140139,0.201986,-0.205404,0.142510,0,0);-webkit-transform:matrix(0.140139,0.201986,-0.205404,0.142510,0,0);}
.m4d{transform:matrix(0.143674,0.199486,-0.202862,0.146106,0,0);-ms-transform:matrix(0.143674,0.199486,-0.202862,0.146106,0,0);-webkit-transform:matrix(0.143674,0.199486,-0.202862,0.146106,0,0);}
.m60{transform:matrix(0.143676,0.199485,-0.202861,0.146107,0,0);-ms-transform:matrix(0.143676,0.199485,-0.202861,0.146107,0,0);-webkit-transform:matrix(0.143676,0.199485,-0.202861,0.146107,0,0);}
.m23{transform:matrix(0.143682,0.199481,-0.202857,0.146113,0,0);-ms-transform:matrix(0.143682,0.199481,-0.202857,0.146113,0,0);-webkit-transform:matrix(0.143682,0.199481,-0.202857,0.146113,0,0);}
.m93{transform:matrix(0.148606,0.195841,-0.199155,0.151121,0,0);-ms-transform:matrix(0.148606,0.195841,-0.199155,0.151121,0,0);-webkit-transform:matrix(0.148606,0.195841,-0.199155,0.151121,0,0);}
.m3{transform:matrix(0.153552,-0.191987,0.195235,0.156151,0,0);-ms-transform:matrix(0.153552,-0.191987,0.195235,0.156151,0,0);-webkit-transform:matrix(0.153552,-0.191987,0.195235,0.156151,0,0);}
.m11{transform:matrix(0.160559,0.186166,-0.189317,0.163276,0,0);-ms-transform:matrix(0.160559,0.186166,-0.189317,0.163276,0,0);-webkit-transform:matrix(0.160559,0.186166,-0.189317,0.163276,0,0);}
.m81{transform:matrix(0.160773,0.185982,-0.189129,0.163493,0,0);-ms-transform:matrix(0.160773,0.185982,-0.189129,0.163493,0,0);-webkit-transform:matrix(0.160773,0.185982,-0.189129,0.163493,0,0);}
.m73{transform:matrix(0.161381,-0.185454,0.188592,0.164113,0,0);-ms-transform:matrix(0.161381,-0.185454,0.188592,0.164113,0,0);-webkit-transform:matrix(0.161381,-0.185454,0.188592,0.164113,0,0);}
.m86{transform:matrix(0.166943,-0.180464,0.183518,0.169768,0,0);-ms-transform:matrix(0.166943,-0.180464,0.183518,0.169768,0,0);-webkit-transform:matrix(0.166943,-0.180464,0.183518,0.169768,0,0);}
.m4c{transform:matrix(0.173404,0.174266,-0.177214,0.176338,0,0);-ms-transform:matrix(0.173404,0.174266,-0.177214,0.176338,0,0);-webkit-transform:matrix(0.173404,0.174266,-0.177214,0.176338,0,0);}
.m5f{transform:matrix(0.173407,0.174263,-0.177211,0.176341,0,0);-ms-transform:matrix(0.173407,0.174263,-0.177211,0.176341,0,0);-webkit-transform:matrix(0.173407,0.174263,-0.177211,0.176341,0,0);}
.m22{transform:matrix(0.173408,0.174261,-0.177210,0.176342,0,0);-ms-transform:matrix(0.173408,0.174261,-0.177210,0.176342,0,0);-webkit-transform:matrix(0.173408,0.174261,-0.177210,0.176342,0,0);}
.m39{transform:matrix(0.173408,0.174260,-0.177209,0.176343,0,0);-ms-transform:matrix(0.173408,0.174260,-0.177209,0.176343,0,0);-webkit-transform:matrix(0.173408,0.174260,-0.177209,0.176343,0,0);}
.m80{transform:matrix(0.173940,0.173730,-0.176670,0.176883,0,0);-ms-transform:matrix(0.173940,0.173730,-0.176670,0.176883,0,0);-webkit-transform:matrix(0.173940,0.173730,-0.176670,0.176883,0,0);}
.m92{transform:matrix(0.175672,0.171978,-0.174889,0.178645,0,0);-ms-transform:matrix(0.175672,0.171978,-0.174889,0.178645,0,0);-webkit-transform:matrix(0.175672,0.171978,-0.174889,0.178645,0,0);}
.m4{transform:matrix(0.180622,-0.166772,0.169594,0.183678,0,0);-ms-transform:matrix(0.180622,-0.166772,0.169594,0.183678,0,0);-webkit-transform:matrix(0.180622,-0.166772,0.169594,0.183678,0,0);}
.m10{transform:matrix(0.185614,0.161197,-0.163926,0.188755,0,0);-ms-transform:matrix(0.185614,0.161197,-0.163926,0.188755,0,0);-webkit-transform:matrix(0.185614,0.161197,-0.163926,0.188755,0,0);}
.m74{transform:matrix(0.188614,-0.157677,0.160346,0.191805,0,0);-ms-transform:matrix(0.188614,-0.157677,0.160346,0.191805,0,0);-webkit-transform:matrix(0.188614,-0.157677,0.160346,0.191805,0,0);}
.m87{transform:matrix(0.192046,-0.153478,0.156075,0.195296,0,0);-ms-transform:matrix(0.192046,-0.153478,0.156075,0.195296,0,0);-webkit-transform:matrix(0.192046,-0.153478,0.156075,0.195296,0,0);}
.m7f{transform:matrix(0.192738,0.152609,-0.155191,0.195999,0,0);-ms-transform:matrix(0.192738,0.152609,-0.155191,0.195999,0,0);-webkit-transform:matrix(0.192738,0.152609,-0.155191,0.195999,0,0);}
.m21{transform:matrix(0.198690,0.144774,-0.147224,0.202052,0,0);-ms-transform:matrix(0.198690,0.144774,-0.147224,0.202052,0,0);-webkit-transform:matrix(0.198690,0.144774,-0.147224,0.202052,0,0);}
.m38{transform:matrix(0.198692,0.144773,-0.147222,0.202053,0,0);-ms-transform:matrix(0.198692,0.144773,-0.147222,0.202053,0,0);-webkit-transform:matrix(0.198692,0.144773,-0.147222,0.202053,0,0);}
.m91{transform:matrix(0.199577,0.143549,-0.145978,0.202954,0,0);-ms-transform:matrix(0.199577,0.143549,-0.145978,0.202954,0,0);-webkit-transform:matrix(0.199577,0.143549,-0.145978,0.202954,0,0);}
.m5{transform:matrix(0.201797,-0.140412,0.142788,0.205211,0,0);-ms-transform:matrix(0.201797,-0.140412,0.142788,0.205211,0,0);-webkit-transform:matrix(0.201797,-0.140412,0.142788,0.205211,0,0);}
.mf{transform:matrix(0.204332,0.136696,-0.139009,0.207789,0,0);-ms-transform:matrix(0.204332,0.136696,-0.139009,0.207789,0,0);-webkit-transform:matrix(0.204332,0.136696,-0.139009,0.207789,0,0);}
.m75{transform:matrix(0.205771,-0.134521,0.136797,0.209252,0,0);-ms-transform:matrix(0.205771,-0.134521,0.136797,0.209252,0,0);-webkit-transform:matrix(0.205771,-0.134521,0.136797,0.209252,0,0);}
.m7e{transform:matrix(0.212673,0.123318,-0.125405,0.216272,0,0);-ms-transform:matrix(0.212673,0.123318,-0.125405,0.216272,0,0);-webkit-transform:matrix(0.212673,0.123318,-0.125405,0.216272,0,0);}
.m88{transform:matrix(0.213477,-0.121921,0.123984,0.217090,0,0);-ms-transform:matrix(0.213477,-0.121921,0.123984,0.217090,0,0);-webkit-transform:matrix(0.213477,-0.121921,0.123984,0.217090,0,0);}
.m20{transform:matrix(0.213990,0.121019,-0.123067,0.217611,0,0);-ms-transform:matrix(0.213990,0.121019,-0.123067,0.217611,0,0);-webkit-transform:matrix(0.213990,0.121019,-0.123067,0.217611,0,0);}
.m37{transform:matrix(0.213991,0.121017,-0.123065,0.217612,0,0);-ms-transform:matrix(0.213991,0.121017,-0.123065,0.217612,0,0);-webkit-transform:matrix(0.213991,0.121017,-0.123065,0.217612,0,0);}
.m5e{transform:matrix(0.213993,0.121014,-0.123062,0.217614,0,0);-ms-transform:matrix(0.213993,0.121014,-0.123062,0.217614,0,0);-webkit-transform:matrix(0.213993,0.121014,-0.123062,0.217614,0,0);}
.m90{transform:matrix(0.214540,0.120041,-0.122073,0.218170,0,0);-ms-transform:matrix(0.214540,0.120041,-0.122073,0.218170,0,0);-webkit-transform:matrix(0.214540,0.120041,-0.122073,0.218170,0,0);}
.me{transform:matrix(0.215181,0.118887,-0.120900,0.218822,0,0);-ms-transform:matrix(0.215181,0.118887,-0.120900,0.218822,0,0);-webkit-transform:matrix(0.215181,0.118887,-0.120900,0.218822,0,0);}
.m6{transform:matrix(0.217845,-0.113932,0.115860,0.221532,0,0);-ms-transform:matrix(0.217845,-0.113932,0.115860,0.221532,0,0);-webkit-transform:matrix(0.217845,-0.113932,0.115860,0.221532,0,0);}
.m76{transform:matrix(0.220021,-0.109672,0.111528,0.223744,0,0);-ms-transform:matrix(0.220021,-0.109672,0.111528,0.223744,0,0);-webkit-transform:matrix(0.220021,-0.109672,0.111528,0.223744,0,0);}
.m59{transform:matrix(0.221105,-0.107472,0.109290,0.224846,0,0);-ms-transform:matrix(0.221105,-0.107472,0.109290,0.224846,0,0);-webkit-transform:matrix(0.221105,-0.107472,0.109290,0.224846,0,0);}
.m31{transform:matrix(0.221108,-0.107462,0.109281,0.224850,0,0);-ms-transform:matrix(0.221108,-0.107462,0.109281,0.224850,0,0);-webkit-transform:matrix(0.221108,-0.107462,0.109281,0.224850,0,0);}
.m19{transform:matrix(0.221109,-0.107463,0.109282,0.224850,0,0);-ms-transform:matrix(0.221109,-0.107463,0.109282,0.224850,0,0);-webkit-transform:matrix(0.221109,-0.107463,0.109282,0.224850,0,0);}
.m46{transform:matrix(0.221109,-0.107461,0.109281,0.224850,0,0);-ms-transform:matrix(0.221109,-0.107461,0.109281,0.224850,0,0);-webkit-transform:matrix(0.221109,-0.107461,0.109281,0.224850,0,0);}
.m89{transform:matrix(0.225387,-0.098173,0.099834,0.229201,0,0);-ms-transform:matrix(0.225387,-0.098173,0.099834,0.229201,0,0);-webkit-transform:matrix(0.225387,-0.098173,0.099834,0.229201,0,0);}
.md{transform:matrix(0.225500,0.097914,-0.099572,0.229315,0,0);-ms-transform:matrix(0.225500,0.097914,-0.099572,0.229315,0,0);-webkit-transform:matrix(0.225500,0.097914,-0.099572,0.229315,0,0);}
.m4b{transform:matrix(0.226005,0.096742,-0.098379,0.229829,0,0);-ms-transform:matrix(0.226005,0.096742,-0.098379,0.229829,0,0);-webkit-transform:matrix(0.226005,0.096742,-0.098379,0.229829,0,0);}
.m1f{transform:matrix(0.226006,0.096739,-0.098376,0.229831,0,0);-ms-transform:matrix(0.226006,0.096739,-0.098376,0.229831,0,0);-webkit-transform:matrix(0.226006,0.096739,-0.098376,0.229831,0,0);}
.m36{transform:matrix(0.226006,0.096738,-0.098376,0.229831,0,0);-ms-transform:matrix(0.226006,0.096738,-0.098376,0.229831,0,0);-webkit-transform:matrix(0.226006,0.096738,-0.098376,0.229831,0,0);}
.m5d{transform:matrix(0.226007,0.096737,-0.098373,0.229832,0,0);-ms-transform:matrix(0.226007,0.096737,-0.098373,0.229832,0,0);-webkit-transform:matrix(0.226007,0.096737,-0.098373,0.229832,0,0);}
.m8f{transform:matrix(0.226134,0.096442,-0.098074,0.229960,0,0);-ms-transform:matrix(0.226134,0.096442,-0.098074,0.229960,0,0);-webkit-transform:matrix(0.226134,0.096442,-0.098074,0.229960,0,0);}
.m7d{transform:matrix(0.227021,0.094335,-0.095931,0.230862,0,0);-ms-transform:matrix(0.227021,0.094335,-0.095931,0.230862,0,0);-webkit-transform:matrix(0.227021,0.094335,-0.095931,0.230862,0,0);}
.m7{transform:matrix(0.227673,-0.092746,0.094316,0.231527,0,0);-ms-transform:matrix(0.227673,-0.092746,0.094316,0.231527,0,0);-webkit-transform:matrix(0.227673,-0.092746,0.094316,0.231527,0,0);}
.m77{transform:matrix(0.233904,-0.075671,0.076951,0.237862,0,0);-ms-transform:matrix(0.233904,-0.075671,0.076951,0.237862,0,0);-webkit-transform:matrix(0.233904,-0.075671,0.076951,0.237862,0,0);}
.m8a{transform:matrix(0.234926,-0.072436,0.073662,0.238901,0,0);-ms-transform:matrix(0.234926,-0.072436,0.073662,0.238901,0,0);-webkit-transform:matrix(0.234926,-0.072436,0.073662,0.238901,0,0);}
.m7c{transform:matrix(0.235178,0.071615,-0.072827,0.239157,0,0);-ms-transform:matrix(0.235178,0.071615,-0.072827,0.239157,0,0);-webkit-transform:matrix(0.235178,0.071615,-0.072827,0.239157,0,0);}
.m5a{transform:matrix(0.235988,-0.068896,0.070063,0.239982,0,0);-ms-transform:matrix(0.235988,-0.068896,0.070063,0.239982,0,0);-webkit-transform:matrix(0.235988,-0.068896,0.070063,0.239982,0,0);}
.m32{transform:matrix(0.235990,-0.068892,0.070058,0.239983,0,0);-ms-transform:matrix(0.235990,-0.068892,0.070058,0.239983,0,0);-webkit-transform:matrix(0.235990,-0.068892,0.070058,0.239983,0,0);}
.m1a{transform:matrix(0.235991,-0.068887,0.070053,0.239985,0,0);-ms-transform:matrix(0.235991,-0.068887,0.070053,0.239985,0,0);-webkit-transform:matrix(0.235991,-0.068887,0.070053,0.239985,0,0);}
.m8{transform:matrix(0.237001,-0.065330,0.066435,0.241011,0,0);-ms-transform:matrix(0.237001,-0.065330,0.066435,0.241011,0,0);-webkit-transform:matrix(0.237001,-0.065330,0.066435,0.241011,0,0);}
.mc{transform:matrix(0.237428,0.063757,-0.064836,0.241446,0,0);-ms-transform:matrix(0.237428,0.063757,-0.064836,0.241446,0,0);-webkit-transform:matrix(0.237428,0.063757,-0.064836,0.241446,0,0);}
.m8e{transform:matrix(0.238189,0.060854,-0.061883,0.242220,0,0);-ms-transform:matrix(0.238189,0.060854,-0.061883,0.242220,0,0);-webkit-transform:matrix(0.238189,0.060854,-0.061883,0.242220,0,0);}
.m4a{transform:matrix(0.238439,0.059865,-0.060879,0.242474,0,0);-ms-transform:matrix(0.238439,0.059865,-0.060879,0.242474,0,0);-webkit-transform:matrix(0.238439,0.059865,-0.060879,0.242474,0,0);}
.m1e{transform:matrix(0.238440,0.059863,-0.060876,0.242475,0,0);-ms-transform:matrix(0.238440,0.059863,-0.060876,0.242475,0,0);-webkit-transform:matrix(0.238440,0.059863,-0.060876,0.242475,0,0);}
.m35{transform:matrix(0.238442,0.059857,-0.060869,0.242477,0,0);-ms-transform:matrix(0.238442,0.059857,-0.060869,0.242477,0,0);-webkit-transform:matrix(0.238442,0.059857,-0.060869,0.242477,0,0);}
.m78{transform:matrix(0.240511,-0.050912,0.051773,0.244580,0,0);-ms-transform:matrix(0.240511,-0.050912,0.051773,0.244580,0,0);-webkit-transform:matrix(0.240511,-0.050912,0.051773,0.244580,0,0);}
.m7b{transform:matrix(0.241330,0.046877,-0.047670,0.245413,0,0);-ms-transform:matrix(0.241330,0.046877,-0.047670,0.245413,0,0);-webkit-transform:matrix(0.241330,0.046877,-0.047670,0.245413,0,0);}
.m47{transform:matrix(0.242552,-0.040074,0.040752,0.246656,0,0);-ms-transform:matrix(0.242552,-0.040074,0.040752,0.246656,0,0);-webkit-transform:matrix(0.242552,-0.040074,0.040752,0.246656,0,0);}
.m1b{transform:matrix(0.242560,-0.040030,0.040707,0.246664,0,0);-ms-transform:matrix(0.242560,-0.040030,0.040707,0.246664,0,0);-webkit-transform:matrix(0.242560,-0.040030,0.040707,0.246664,0,0);}
.m5b{transform:matrix(0.242567,-0.039980,0.040656,0.246672,0,0);-ms-transform:matrix(0.242567,-0.039980,0.040656,0.246672,0,0);-webkit-transform:matrix(0.242567,-0.039980,0.040656,0.246672,0,0);}
.mb{transform:matrix(0.242875,0.038060,-0.038705,0.246986,0,0);-ms-transform:matrix(0.242875,0.038060,-0.038705,0.246986,0,0);-webkit-transform:matrix(0.242875,0.038060,-0.038705,0.246986,0,0);}
.m8b{transform:matrix(0.243333,-0.035018,0.035611,0.247451,0,0);-ms-transform:matrix(0.243333,-0.035018,0.035611,0.247451,0,0);-webkit-transform:matrix(0.243333,-0.035018,0.035611,0.247451,0,0);}
.m8d{transform:matrix(0.243681,0.032508,-0.033058,0.247805,0,0);-ms-transform:matrix(0.243681,0.032508,-0.033058,0.247805,0,0);-webkit-transform:matrix(0.243681,0.032508,-0.033058,0.247805,0,0);}
.m9{transform:matrix(0.244333,-0.027183,0.027644,0.248467,0,0);-ms-transform:matrix(0.244333,-0.027183,0.027644,0.248467,0,0);-webkit-transform:matrix(0.244333,-0.027183,0.027644,0.248467,0,0);}
.m79{transform:matrix(0.244672,-0.023935,0.024340,0.248812,0,0);-ms-transform:matrix(0.244672,-0.023935,0.024340,0.248812,0,0);-webkit-transform:matrix(0.244672,-0.023935,0.024340,0.248812,0,0);}
.m49{transform:matrix(0.244824,0.022322,-0.022700,0.248967,0,0);-ms-transform:matrix(0.244824,0.022322,-0.022700,0.248967,0,0);-webkit-transform:matrix(0.244824,0.022322,-0.022700,0.248967,0,0);}
.m1d{transform:matrix(0.244825,0.022319,-0.022697,0.248968,0,0);-ms-transform:matrix(0.244825,0.022319,-0.022697,0.248968,0,0);-webkit-transform:matrix(0.244825,0.022319,-0.022697,0.248968,0,0);}
.m34{transform:matrix(0.244825,0.022314,-0.022692,0.248968,0,0);-ms-transform:matrix(0.244825,0.022314,-0.022692,0.248968,0,0);-webkit-transform:matrix(0.244825,0.022314,-0.022692,0.248968,0,0);}
.m1c{transform:matrix(0.245449,-0.013848,0.014083,0.249603,0,0);-ms-transform:matrix(0.245449,-0.013848,0.014083,0.249603,0,0);-webkit-transform:matrix(0.245449,-0.013848,0.014083,0.249603,0,0);}
.m5c{transform:matrix(0.245450,-0.013845,0.014079,0.249603,0,0);-ms-transform:matrix(0.245450,-0.013845,0.014079,0.249603,0,0);-webkit-transform:matrix(0.245450,-0.013845,0.014079,0.249603,0,0);}
.m33{transform:matrix(0.245450,-0.013843,0.014077,0.249603,0,0);-ms-transform:matrix(0.245450,-0.013843,0.014077,0.249603,0,0);-webkit-transform:matrix(0.245450,-0.013843,0.014077,0.249603,0,0);}
.m48{transform:matrix(0.245450,-0.013842,0.014076,0.249603,0,0);-ms-transform:matrix(0.245450,-0.013842,0.014076,0.249603,0,0);-webkit-transform:matrix(0.245450,-0.013842,0.014076,0.249603,0,0);}
.m7a{transform:matrix(0.245533,0.012295,-0.012503,0.249687,0,0);-ms-transform:matrix(0.245533,0.012295,-0.012503,0.249687,0,0);-webkit-transform:matrix(0.245533,0.012295,-0.012503,0.249687,0,0);}
.ma{transform:matrix(0.245558,0.011777,-0.011976,0.249713,0,0);-ms-transform:matrix(0.245558,0.011777,-0.011976,0.249713,0,0);-webkit-transform:matrix(0.245558,0.011777,-0.011976,0.249713,0,0);}
.m8c{transform:matrix(0.245810,0.003814,-0.003879,0.249970,0,0);-ms-transform:matrix(0.245810,0.003814,-0.003879,0.249970,0,0);-webkit-transform:matrix(0.245810,0.003814,-0.003879,0.249970,0,0);}
.m18{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-48.662178px;}
.ws2{word-spacing:-42.928473px;}
.ws3{word-spacing:-39.814479px;}
.ws1{word-spacing:-35.123286px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-4.746390px;}
._1{width:2.320458px;}
.fc3{color:rgb(255,184,29);}
.fc2{color:rgb(163,33,54);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs17{font-size:78.000000px;}
.fsf{font-size:153.767919px;}
.fs0{font-size:153.768044px;}
.fs12{font-size:153.768056px;}
.fs5{font-size:153.768066px;}
.fs16{font-size:153.768087px;}
.fsa{font-size:153.768139px;}
.fs6{font-size:153.768187px;}
.fs14{font-size:153.768209px;}
.fsd{font-size:153.768216px;}
.fs2{font-size:153.768234px;}
.fs7{font-size:153.768293px;}
.fs3{font-size:153.768312px;}
.fs13{font-size:153.768324px;}
.fs9{font-size:153.768326px;}
.fs11{font-size:153.768335px;}
.fs15{font-size:153.768377px;}
.fs8{font-size:153.768380px;}
.fsc{font-size:153.768407px;}
.fs4{font-size:153.768441px;}
.fse{font-size:153.768473px;}
.fs10{font-size:153.768511px;}
.fs1{font-size:153.768526px;}
.fsb{font-size:153.768595px;}
.fs5c{font-size:172.488898px;}
.fs30{font-size:172.488941px;}
.fs5e{font-size:172.488950px;}
.fs1a{font-size:172.488951px;}
.fs3c{font-size:172.488953px;}
.fs20{font-size:172.488963px;}
.fs40{font-size:172.488966px;}
.fs65{font-size:172.488968px;}
.fs52{font-size:172.488970px;}
.fs64{font-size:172.488972px;}
.fs26{font-size:172.488980px;}
.fs50{font-size:172.488985px;}
.fs5a{font-size:172.488995px;}
.fs53{font-size:172.489003px;}
.fs2c{font-size:172.489011px;}
.fs29{font-size:172.489015px;}
.fs33{font-size:172.489016px;}
.fs18{font-size:172.489027px;}
.fs54{font-size:172.489049px;}
.fs27{font-size:172.489062px;}
.fs3f{font-size:172.489065px;}
.fs4c{font-size:172.489066px;}
.fs59{font-size:172.489070px;}
.fs48{font-size:172.489084px;}
.fs2e{font-size:172.489085px;}
.fs4e{font-size:172.489090px;}
.fs61{font-size:172.489091px;}
.fs3e{font-size:172.489096px;}
.fs63{font-size:172.489105px;}
.fs3d{font-size:172.489106px;}
.fs60{font-size:172.489125px;}
.fs39{font-size:172.489128px;}
.fs35{font-size:172.489132px;}
.fs25{font-size:172.489146px;}
.fs4b{font-size:172.489153px;}
.fs41{font-size:172.489162px;}
.fs4f{font-size:172.489164px;}
.fs38{font-size:172.489180px;}
.fs47{font-size:172.489193px;}
.fs23{font-size:172.489194px;}
.fs1f{font-size:172.489200px;}
.fs43{font-size:172.489206px;}
.fs57{font-size:172.489209px;}
.fs45{font-size:172.489211px;}
.fs2b{font-size:172.489217px;}
.fs36{font-size:172.489226px;}
.fs1e{font-size:172.489243px;}
.fs32{font-size:172.489245px;}
.fs2a{font-size:172.489247px;}
.fs19{font-size:172.489252px;}
.fs28{font-size:172.489273px;}
.fs5f{font-size:172.489290px;}
.fs62{font-size:172.489297px;}
.fs44{font-size:172.489299px;}
.fs2f{font-size:172.489304px;}
.fs37{font-size:172.489317px;}
.fs21{font-size:172.489319px;}
.fs3b{font-size:172.489329px;}
.fs4a{font-size:172.489330px;}
.fs34{font-size:172.489332px;}
.fs1d{font-size:172.489337px;}
.fs1c{font-size:172.489343px;}
.fs58{font-size:172.489347px;}
.fs5b{font-size:172.489358px;}
.fs5d{font-size:172.489367px;}
.fs56{font-size:172.489374px;}
.fs42{font-size:172.489378px;}
.fs22{font-size:172.489387px;}
.fs3a{font-size:172.489432px;}
.fs31{font-size:172.489446px;}
.fs49{font-size:172.489448px;}
.fs55{font-size:172.489462px;}
.fs24{font-size:172.489467px;}
.fs4d{font-size:172.489473px;}
.fs1b{font-size:172.489482px;}
.fs46{font-size:172.489506px;}
.fs2d{font-size:172.489522px;}
.fs51{font-size:172.489580px;}
.fs96{font-size:189.855600px;}
.fs8c{font-size:195.830531px;}
.fs6e{font-size:195.830602px;}
.fs77{font-size:195.830638px;}
.fs74{font-size:195.830644px;}
.fs76{font-size:195.830655px;}
.fs67{font-size:195.830686px;}
.fs91{font-size:195.830727px;}
.fs80{font-size:195.830738px;}
.fs8a{font-size:195.830745px;}
.fs7d{font-size:195.830748px;}
.fs75{font-size:195.830758px;}
.fs78{font-size:195.830768px;}
.fs84{font-size:195.830776px;}
.fs83{font-size:195.830782px;}
.fs71{font-size:195.830803px;}
.fs68{font-size:195.830805px;}
.fs85{font-size:195.830816px;}
.fs6a{font-size:195.830832px;}
.fs8e{font-size:195.830848px;}
.fs90{font-size:195.830860px;}
.fs93{font-size:195.830864px;}
.fs72{font-size:195.830868px;}
.fs7e{font-size:195.830870px;}
.fs69{font-size:195.830878px;}
.fs70{font-size:195.830906px;}
.fs6b{font-size:195.830943px;}
.fs82{font-size:195.830959px;}
.fs7c{font-size:195.830967px;}
.fs7a{font-size:195.830969px;}
.fs8d{font-size:195.830982px;}
.fs7b{font-size:195.830996px;}
.fs81{font-size:195.831042px;}
.fs79{font-size:195.831046px;}
.fs86{font-size:195.831064px;}
.fs88{font-size:195.831068px;}
.fs8b{font-size:195.831070px;}
.fs66{font-size:195.831087px;}
.fs6d{font-size:195.831095px;}
.fs73{font-size:195.831107px;}
.fs8f{font-size:195.831117px;}
.fs92{font-size:195.831122px;}
.fs94{font-size:195.831150px;}
.fs89{font-size:195.831152px;}
.fs87{font-size:195.831172px;}
.fs6f{font-size:195.831268px;}
.fs6c{font-size:195.831275px;}
.fs7f{font-size:195.831290px;}
.fs95{font-size:201.623400px;}
.fs98{font-size:215.213400px;}
.fs97{font-size:232.045800px;}
.fs99{font-size:263.038800px;}
.y0{bottom:0.000000px;}
.yaf{bottom:109.291950px;}
.yad{bottom:143.595780px;}
.yab{bottom:148.576230px;}
.yae{bottom:162.030750px;}
.yac{bottom:204.082800px;}
.yaa{bottom:209.063250px;}
.yb3{bottom:250.347600px;}
.yb1{bottom:254.239800px;}
.y79{bottom:304.219800px;}
.y61{bottom:309.772950px;}
.yb2{bottom:310.129350px;}
.y78{bottom:310.557900px;}
.yb0{bottom:314.021550px;}
.y60{bottom:316.110900px;}
.y77{bottom:325.957800px;}
.y5f{bottom:331.510500px;}
.ya9{bottom:333.193950px;}
.y76{bottom:340.799700px;}
.ya8{bottom:344.139600px;}
.y5e{bottom:346.352550px;}
.y92{bottom:348.361950px;}
.y18{bottom:348.481800px;}
.y75{bottom:356.798400px;}
.y17{bottom:357.426450px;}
.y5d{bottom:362.352750px;}
.y74{bottom:365.009700px;}
.y1{bottom:365.048550px;}
.ya7{bottom:367.910250px;}
.y5c{bottom:370.562250px;}
.y93{bottom:372.366750px;}
.y16{bottom:382.320600px;}
.y73{bottom:383.906400px;}
.ya6{bottom:387.110250px;}
.y2{bottom:388.681200px;}
.y5b{bottom:389.459250px;}
.y94{bottom:396.870900px;}
.y15{bottom:399.546150px;}
.y72{bottom:403.102950px;}
.ya5{bottom:405.414450px;}
.y95{bottom:405.685950px;}
.y5a{bottom:408.657000px;}
.y3{bottom:412.374750px;}
.ya4{bottom:413.727750px;}
.y14{bottom:416.053350px;}
.y4{bottom:422.034600px;}
.y96{bottom:423.856650px;}
.y71{bottom:424.029450px;}
.y13{bottom:425.248650px;}
.y59{bottom:429.638250px;}
.ya3{bottom:431.594400px;}
.y70{bottom:433.276350px;}
.y58{bottom:438.830400px;}
.y97{bottom:440.089050px;}
.y5{bottom:442.163250px;}
.y12{bottom:445.195650px;}
.ya2{bottom:446.905800px;}
.y6f{bottom:452.411700px;}
.y98{bottom:455.494800px;}
.y6{bottom:457.638450px;}
.y57{bottom:457.966350px;}
.y11{bottom:459.979650px;}
.ya1{bottom:460.782600px;}
.ya0{bottom:465.599250px;}
.y99{bottom:467.156400px;}
.y7{bottom:470.177100px;}
.y10{bottom:470.557500px;}
.y9a{bottom:471.524250px;}
.y6e{bottom:473.223000px;}
.y9f{bottom:474.575550px;}
.yf{bottom:474.644850px;}
.y56{bottom:478.777350px;}
.y8{bottom:479.038950px;}
.y9b{bottom:479.069250px;}
.y9e{bottom:480.927900px;}
.y6d{bottom:481.191900px;}
.y9d{bottom:481.837950px;}
.y9c{bottom:482.623650px;}
.y9{bottom:483.702000px;}
.ye{bottom:484.086300px;}
.y55{bottom:486.746100px;}
.ya{bottom:490.717200px;}
.yd{bottom:491.065050px;}
.yc{bottom:491.912250px;}
.yb{bottom:493.647750px;}
.y6c{bottom:499.774050px;}
.y54{bottom:505.328700px;}
.y6b{bottom:514.496250px;}
.y53{bottom:520.049100px;}
.y6a{bottom:527.656800px;}
.y62{bottom:528.233100px;}
.y69{bottom:531.489000px;}
.y52{bottom:533.209950px;}
.y4a{bottom:533.788500px;}
.y51{bottom:537.045300px;}
.y63{bottom:537.809400px;}
.y68{bottom:540.108600px;}
.y4b{bottom:543.365250px;}
.y64{bottom:544.002150px;}
.y67{bottom:545.316600px;}
.y50{bottom:545.663550px;}
.y65{bottom:545.735100px;}
.y66{bottom:546.900600px;}
.y4c{bottom:549.547650px;}
.y4f{bottom:550.871700px;}
.y4d{bottom:551.290950px;}
.y4e{bottom:552.456300px;}
.y49{bottom:744.643650px;}
.y31{bottom:747.159900px;}
.y48{bottom:750.981450px;}
.y30{bottom:753.497700px;}
.y47{bottom:766.381350px;}
.y2f{bottom:768.896100px;}
.y46{bottom:781.223400px;}
.y2e{bottom:783.738150px;}
.y45{bottom:797.223600px;}
.y2d{bottom:799.735800px;}
.y7a{bottom:804.846900px;}
.y44{bottom:805.432800px;}
.y2c{bottom:807.945150px;}
.y43{bottom:824.331450px;}
.y7b{bottom:825.937350px;}
.y2b{bottom:826.844100px;}
.y42{bottom:843.527400px;}
.y2a{bottom:846.039150px;}
.y7c{bottom:851.058600px;}
.y7d{bottom:860.517000px;}
.y41{bottom:864.481800px;}
.y29{bottom:867.021750px;}
.y40{bottom:873.700500px;}
.y28{bottom:876.213600px;}
.y7e{bottom:882.325200px;}
.y3f{bottom:892.835850px;}
.y27{bottom:895.348050px;}
.y7f{bottom:904.215300px;}
.y3e{bottom:913.648650px;}
.y26{bottom:916.160550px;}
.y3d{bottom:921.594000px;}
.y25{bottom:924.129300px;}
.y80{bottom:928.429200px;}
.y3c{bottom:940.199400px;}
.y24{bottom:942.711000px;}
.y81{bottom:951.064500px;}
.y3b{bottom:954.918750px;}
.y23{bottom:957.430500px;}
.y82{bottom:960.125250px;}
.y3a{bottom:968.080950px;}
.y32{bottom:968.657250px;}
.y22{bottom:970.592250px;}
.y1a{bottom:971.171400px;}
.y39{bottom:971.914950px;}
.y21{bottom:974.427750px;}
.y33{bottom:978.234300px;}
.y38{bottom:980.532750px;}
.y1b{bottom:980.747100px;}
.y83{bottom:981.764400px;}
.y20{bottom:983.045400px;}
.y34{bottom:984.420600px;}
.y37{bottom:985.741800px;}
.y35{bottom:986.160000px;}
.y1c{bottom:986.932950px;}
.y36{bottom:987.325200px;}
.y1f{bottom:988.252200px;}
.y1d{bottom:988.671300px;}
.y1e{bottom:989.839800px;}
.y91{bottom:996.446100px;}
.y84{bottom:999.749700px;}
.y90{bottom:1004.167950px;}
.y85{bottom:1015.985850px;}
.y8f{bottom:1019.355150px;}
.y86{bottom:1022.216550px;}
.y8e{bottom:1029.310950px;}
.y87{bottom:1033.576200px;}
.y8d{bottom:1037.023650px;}
.y8c{bottom:1039.608000px;}
.y88{bottom:1040.190450px;}
.y89{bottom:1042.813200px;}
.y8b{bottom:1044.133050px;}
.y8a{bottom:1045.151400px;}
.y19{bottom:1196.127000px;}
.h19{height:55.692000px;}
.h11{height:106.090854px;}
.h2{height:106.090941px;}
.h14{height:106.090949px;}
.h7{height:106.090956px;}
.h18{height:106.090970px;}
.hc{height:106.091006px;}
.h8{height:106.091039px;}
.h16{height:106.091054px;}
.hf{height:106.091059px;}
.h4{height:106.091072px;}
.h9{height:106.091112px;}
.h5{height:106.091126px;}
.h15{height:106.091134px;}
.hb{height:106.091135px;}
.h13{height:106.091141px;}
.h17{height:106.091170px;}
.ha{height:106.091172px;}
.he{height:106.091191px;}
.h6{height:106.091214px;}
.h10{height:106.091236px;}
.h12{height:106.091263px;}
.h3{height:106.091273px;}
.hd{height:106.091321px;}
.h5a{height:125.571918px;}
.h32{height:125.571949px;}
.h1c{height:125.571957px;}
.h3d{height:125.571958px;}
.h22{height:125.571965px;}
.h41{height:125.571967px;}
.h61{height:125.571968px;}
.h50{height:125.571970px;}
.h60{height:125.571972px;}
.h28{height:125.571978px;}
.h4e{height:125.571981px;}
.h58{height:125.571988px;}
.h51{height:125.571994px;}
.h2e{height:125.572000px;}
.h2b{height:125.572003px;}
.h1a{height:125.572011px;}
.h52{height:125.572028px;}
.h29{height:125.572037px;}
.h40{height:125.572039px;}
.h4a{height:125.572040px;}
.h57{height:125.572043px;}
.h30{height:125.572054px;}
.h4c{height:125.572058px;}
.h3f{height:125.572062px;}
.h5f{height:125.572068px;}
.h3e{height:125.572069px;}
.h5d{height:125.572083px;}
.h3a{height:125.572085px;}
.h36{height:125.572088px;}
.h27{height:125.572098px;}
.h49{height:125.572103px;}
.h42{height:125.572110px;}
.h4d{height:125.572111px;}
.h39{height:125.572123px;}
.h25{height:125.572134px;}
.h21{height:125.572138px;}
.h44{height:125.572142px;}
.h55{height:125.572144px;}
.h46{height:125.572146px;}
.h2d{height:125.572150px;}
.h37{height:125.572157px;}
.h20{height:125.572169px;}
.h34{height:125.572171px;}
.h2c{height:125.572172px;}
.h1b{height:125.572176px;}
.h2a{height:125.572191px;}
.h5c{height:125.572203px;}
.h5e{height:125.572208px;}
.h45{height:125.572209px;}
.h31{height:125.572213px;}
.h38{height:125.572223px;}
.h23{height:125.572225px;}
.h3c{height:125.572231px;}
.h35{height:125.572234px;}
.h1f{height:125.572237px;}
.h1e{height:125.572241px;}
.h56{height:125.572244px;}
.h59{height:125.572252px;}
.h5b{height:125.572259px;}
.h54{height:125.572264px;}
.h43{height:125.572267px;}
.h24{height:125.572274px;}
.h3b{height:125.572307px;}
.h33{height:125.572316px;}
.h48{height:125.572318px;}
.h53{height:125.572329px;}
.h26{height:125.572332px;}
.h4b{height:125.572337px;}
.h1d{height:125.572343px;}
.h47{height:125.572360px;}
.h2f{height:125.572372px;}
.h4f{height:125.572414px;}
.h92{height:134.607620px;}
.h88{height:142.564626px;}
.h6a{height:142.564679px;}
.h73{height:142.564705px;}
.h70{height:142.564709px;}
.h72{height:142.564717px;}
.h63{height:142.564740px;}
.h8d{height:142.564770px;}
.h7c{height:142.564777px;}
.h86{height:142.564782px;}
.h79{height:142.564785px;}
.h71{height:142.564792px;}
.h74{height:142.564799px;}
.h80{height:142.564805px;}
.h7f{height:142.564810px;}
.h6d{height:142.564825px;}
.h64{height:142.564826px;}
.h81{height:142.564834px;}
.h66{height:142.564846px;}
.h8a{height:142.564857px;}
.h8c{height:142.564866px;}
.h8f{height:142.564869px;}
.h6e{height:142.564872px;}
.h7a{height:142.564874px;}
.h65{height:142.564879px;}
.h6c{height:142.564899px;}
.h67{height:142.564926px;}
.h7e{height:142.564938px;}
.h78{height:142.564944px;}
.h76{height:142.564946px;}
.h89{height:142.564955px;}
.h77{height:142.564965px;}
.h7d{height:142.564999px;}
.h75{height:142.565001px;}
.h82{height:142.565015px;}
.h84{height:142.565018px;}
.h87{height:142.565019px;}
.h62{height:142.565032px;}
.h69{height:142.565037px;}
.h6f{height:142.565046px;}
.h8b{height:142.565053px;}
.h8e{height:142.565057px;}
.h90{height:142.565077px;}
.h85{height:142.565079px;}
.h83{height:142.565094px;}
.h6b{height:142.565163px;}
.h68{height:142.565168px;}
.h7b{height:142.565179px;}
.h91{height:146.781835px;}
.h94{height:152.586301px;}
.h93{height:164.520472px;}
.h95{height:186.494509px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:52.283250px;}
.x6f{left:120.524400px;}
.x1a{left:163.854600px;}
.x42{left:168.307650px;}
.x1b{left:183.203550px;}
.x43{left:187.655550px;}
.x1c{left:205.813050px;}
.x44{left:210.240900px;}
.x1d{left:214.267500px;}
.x45{left:218.719050px;}
.x1e{left:233.560350px;}
.x46{left:238.012050px;}
.x1f{left:252.828600px;}
.x47{left:257.279550px;}
.x20{left:273.809550px;}
.x48{left:278.261400px;}
.x1{left:284.886750px;}
.x2{left:291.789750px;}
.x21{left:293.174250px;}
.x49{left:297.624000px;}
.x22{left:300.876450px;}
.x3{left:303.505350px;}
.x4a{left:305.326350px;}
.x4{left:308.998800px;}
.x53{left:311.413050px;}
.x52{left:314.323950px;}
.x54{left:315.805200px;}
.x2c{left:316.964100px;}
.x23{left:318.995700px;}
.x51{left:321.413700px;}
.x4b{left:323.443050px;}
.x5{left:325.159050px;}
.x50{left:328.678200px;}
.x61{left:330.581850px;}
.x24{left:333.852450px;}
.x2b{left:338.698800px;}
.x6{left:341.883300px;}
.x4f{left:343.147950px;}
.x62{left:345.336450px;}
.x25{left:346.820550px;}
.x2a{left:348.545400px;}
.x26{left:351.750600px;}
.x4e{left:352.994550px;}
.x29{left:356.496300px;}
.x7{left:359.951100px;}
.x27{left:364.753800px;}
.x28{left:366.401100px;}
.x4c{left:369.200850px;}
.x4d{left:370.846800px;}
.x8{left:377.251650px;}
.x55{left:385.227300px;}
.x9{left:387.360750px;}
.x63{left:394.404450px;}
.x56{left:408.131850px;}
.xa{left:412.586700px;}
.x64{left:418.744650px;}
.x57{left:429.405450px;}
.xb{left:437.857050px;}
.x58{left:439.737600px;}
.x65{left:442.238700px;}
.x59{left:463.447950px;}
.xc{left:464.632500px;}
.x66{left:467.962050px;}
.xd{left:473.393850px;}
.x67{left:478.573500px;}
.x5a{left:485.425500px;}
.xe{left:499.085550px;}
.x68{left:503.273850px;}
.x5b{left:507.255600px;}
.x5c{left:516.781650px;}
.xf{left:520.057200px;}
.x69{left:523.650150px;}
.x10{left:527.970600px;}
.x6a{left:533.151600px;}
.x5d{left:535.539450px;}
.x11{left:544.072200px;}
.x5e{left:553.140750px;}
.x12{left:561.360300px;}
.x6b{left:568.251750px;}
.x5f{left:571.789050px;}
.x2d{left:576.647400px;}
.x13{left:578.052300px;}
.x60{left:579.550950px;}
.x6c{left:581.453550px;}
.x14{left:584.652300px;}
.x6d{left:586.817250px;}
.x15{left:594.037950px;}
.x2e{left:595.996050px;}
.x16{left:601.681650px;}
.x6e{left:605.288250px;}
.x17{left:608.177250px;}
.x18{left:609.703500px;}
.x2f{left:618.607050px;}
.x30{left:627.059700px;}
.x31{left:646.351950px;}
.x32{left:665.618250px;}
.x33{left:686.602650px;}
.x34{left:705.966750px;}
.x35{left:713.668650px;}
.x41{left:729.760650px;}
.x36{left:731.785650px;}
.x40{left:737.024400px;}
.x37{left:746.643150px;}
.x3f{left:751.494900px;}
.x38{left:759.625200px;}
.x3e{left:761.341500px;}
.x39{left:764.539800px;}
.x3d{left:769.291050px;}
.x3a{left:773.064450px;}
.x3b{left:777.544950px;}
.x3c{left:779.193600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-43.255269pt;}
.ws2{word-spacing:-38.158643pt;}
.ws3{word-spacing:-35.390648pt;}
.ws1{word-spacing:-31.220699pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-4.219013pt;}
._1{width:2.062629pt;}
.fs17{font-size:69.333333pt;}
.fsf{font-size:136.682595pt;}
.fs0{font-size:136.682706pt;}
.fs12{font-size:136.682716pt;}
.fs5{font-size:136.682725pt;}
.fs16{font-size:136.682744pt;}
.fsa{font-size:136.682790pt;}
.fs6{font-size:136.682833pt;}
.fs14{font-size:136.682852pt;}
.fsd{font-size:136.682859pt;}
.fs2{font-size:136.682875pt;}
.fs7{font-size:136.682927pt;}
.fs3{font-size:136.682944pt;}
.fs13{font-size:136.682955pt;}
.fs9{font-size:136.682956pt;}
.fs11{font-size:136.682964pt;}
.fs15{font-size:136.683001pt;}
.fs8{font-size:136.683005pt;}
.fsc{font-size:136.683029pt;}
.fs4{font-size:136.683058pt;}
.fse{font-size:136.683087pt;}
.fs10{font-size:136.683121pt;}
.fs1{font-size:136.683135pt;}
.fsb{font-size:136.683196pt;}
.fs5c{font-size:153.323465pt;}
.fs30{font-size:153.323503pt;}
.fs5e{font-size:153.323511pt;}
.fs1a{font-size:153.323512pt;}
.fs3c{font-size:153.323514pt;}
.fs20{font-size:153.323523pt;}
.fs40{font-size:153.323525pt;}
.fs65{font-size:153.323527pt;}
.fs52{font-size:153.323529pt;}
.fs64{font-size:153.323531pt;}
.fs26{font-size:153.323538pt;}
.fs50{font-size:153.323542pt;}
.fs5a{font-size:153.323551pt;}
.fs53{font-size:153.323558pt;}
.fs2c{font-size:153.323565pt;}
.fs29{font-size:153.323569pt;}
.fs33{font-size:153.323570pt;}
.fs18{font-size:153.323579pt;}
.fs54{font-size:153.323599pt;}
.fs27{font-size:153.323611pt;}
.fs3f{font-size:153.323613pt;}
.fs4c{font-size:153.323614pt;}
.fs59{font-size:153.323618pt;}
.fs48{font-size:153.323630pt;}
.fs2e{font-size:153.323631pt;}
.fs4e{font-size:153.323636pt;}
.fs61{font-size:153.323637pt;}
.fs3e{font-size:153.323641pt;}
.fs63{font-size:153.323648pt;}
.fs3d{font-size:153.323650pt;}
.fs60{font-size:153.323666pt;}
.fs39{font-size:153.323669pt;}
.fs35{font-size:153.323673pt;}
.fs25{font-size:153.323685pt;}
.fs4b{font-size:153.323691pt;}
.fs41{font-size:153.323700pt;}
.fs4f{font-size:153.323701pt;}
.fs38{font-size:153.323716pt;}
.fs47{font-size:153.323727pt;}
.fs23{font-size:153.323728pt;}
.fs1f{font-size:153.323733pt;}
.fs43{font-size:153.323739pt;}
.fs57{font-size:153.323741pt;}
.fs45{font-size:153.323743pt;}
.fs2b{font-size:153.323749pt;}
.fs36{font-size:153.323757pt;}
.fs1e{font-size:153.323771pt;}
.fs32{font-size:153.323774pt;}
.fs2a{font-size:153.323775pt;}
.fs19{font-size:153.323780pt;}
.fs28{font-size:153.323799pt;}
.fs5f{font-size:153.323814pt;}
.fs62{font-size:153.323819pt;}
.fs44{font-size:153.323821pt;}
.fs2f{font-size:153.323826pt;}
.fs37{font-size:153.323838pt;}
.fs21{font-size:153.323840pt;}
.fs3b{font-size:153.323848pt;}
.fs4a{font-size:153.323849pt;}
.fs34{font-size:153.323850pt;}
.fs1d{font-size:153.323855pt;}
.fs1c{font-size:153.323860pt;}
.fs58{font-size:153.323864pt;}
.fs5b{font-size:153.323874pt;}
.fs5d{font-size:153.323882pt;}
.fs56{font-size:153.323888pt;}
.fs42{font-size:153.323892pt;}
.fs22{font-size:153.323900pt;}
.fs3a{font-size:153.323940pt;}
.fs31{font-size:153.323952pt;}
.fs49{font-size:153.323954pt;}
.fs55{font-size:153.323967pt;}
.fs24{font-size:153.323971pt;}
.fs4d{font-size:153.323976pt;}
.fs1b{font-size:153.323984pt;}
.fs46{font-size:153.324005pt;}
.fs2d{font-size:153.324019pt;}
.fs51{font-size:153.324071pt;}
.fs96{font-size:168.760533pt;}
.fs8c{font-size:174.071583pt;}
.fs6e{font-size:174.071647pt;}
.fs77{font-size:174.071678pt;}
.fs74{font-size:174.071683pt;}
.fs76{font-size:174.071693pt;}
.fs67{font-size:174.071721pt;}
.fs91{font-size:174.071758pt;}
.fs80{font-size:174.071767pt;}
.fs8a{font-size:174.071773pt;}
.fs7d{font-size:174.071776pt;}
.fs75{font-size:174.071785pt;}
.fs78{font-size:174.071794pt;}
.fs84{font-size:174.071801pt;}
.fs83{font-size:174.071807pt;}
.fs71{font-size:174.071825pt;}
.fs68{font-size:174.071827pt;}
.fs85{font-size:174.071836pt;}
.fs6a{font-size:174.071851pt;}
.fs8e{font-size:174.071865pt;}
.fs90{font-size:174.071876pt;}
.fs93{font-size:174.071879pt;}
.fs72{font-size:174.071882pt;}
.fs7e{font-size:174.071885pt;}
.fs69{font-size:174.071891pt;}
.fs70{font-size:174.071916pt;}
.fs6b{font-size:174.071949pt;}
.fs82{font-size:174.071964pt;}
.fs7c{font-size:174.071971pt;}
.fs7a{font-size:174.071973pt;}
.fs8d{font-size:174.071984pt;}
.fs7b{font-size:174.071996pt;}
.fs81{font-size:174.072038pt;}
.fs79{font-size:174.072040pt;}
.fs86{font-size:174.072057pt;}
.fs88{font-size:174.072061pt;}
.fs8b{font-size:174.072062pt;}
.fs66{font-size:174.072078pt;}
.fs6d{font-size:174.072084pt;}
.fs73{font-size:174.072095pt;}
.fs8f{font-size:174.072104pt;}
.fs92{font-size:174.072109pt;}
.fs94{font-size:174.072133pt;}
.fs89{font-size:174.072135pt;}
.fs87{font-size:174.072153pt;}
.fs6f{font-size:174.072238pt;}
.fs6c{font-size:174.072245pt;}
.fs7f{font-size:174.072258pt;}
.fs95{font-size:179.220800pt;}
.fs98{font-size:191.300800pt;}
.fs97{font-size:206.262933pt;}
.fs99{font-size:233.812267pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:97.148400pt;}
.yad{bottom:127.640693pt;}
.yab{bottom:132.067760pt;}
.yae{bottom:144.027333pt;}
.yac{bottom:181.406933pt;}
.yaa{bottom:185.834000pt;}
.yb3{bottom:222.531200pt;}
.yb1{bottom:225.990933pt;}
.y79{bottom:270.417600pt;}
.y61{bottom:275.353733pt;}
.yb2{bottom:275.670533pt;}
.y78{bottom:276.051467pt;}
.yb0{bottom:279.130267pt;}
.y60{bottom:280.987467pt;}
.y77{bottom:289.740267pt;}
.y5f{bottom:294.676000pt;}
.ya9{bottom:296.172400pt;}
.y76{bottom:302.933067pt;}
.ya8{bottom:305.901867pt;}
.y5e{bottom:307.868933pt;}
.y92{bottom:309.655067pt;}
.y18{bottom:309.761600pt;}
.y75{bottom:317.154133pt;}
.y17{bottom:317.712400pt;}
.y5d{bottom:322.091333pt;}
.y74{bottom:324.453067pt;}
.y1{bottom:324.487600pt;}
.ya7{bottom:327.031333pt;}
.y5c{bottom:329.388667pt;}
.y93{bottom:330.992667pt;}
.y16{bottom:339.840533pt;}
.y73{bottom:341.250133pt;}
.ya6{bottom:344.098000pt;}
.y2{bottom:345.494400pt;}
.y5b{bottom:346.186000pt;}
.y94{bottom:352.774133pt;}
.y15{bottom:355.152133pt;}
.y72{bottom:358.313733pt;}
.ya5{bottom:360.368400pt;}
.y95{bottom:360.609733pt;}
.y5a{bottom:363.250667pt;}
.y3{bottom:366.555333pt;}
.ya4{bottom:367.758000pt;}
.y14{bottom:369.825200pt;}
.y4{bottom:375.141867pt;}
.y96{bottom:376.761467pt;}
.y71{bottom:376.915067pt;}
.y13{bottom:377.998800pt;}
.y59{bottom:381.900667pt;}
.ya3{bottom:383.639467pt;}
.y70{bottom:385.134533pt;}
.y58{bottom:390.071467pt;}
.y97{bottom:391.190267pt;}
.y5{bottom:393.034000pt;}
.y12{bottom:395.729467pt;}
.ya2{bottom:397.249600pt;}
.y6f{bottom:402.143733pt;}
.y98{bottom:404.884267pt;}
.y6{bottom:406.789733pt;}
.y57{bottom:407.081200pt;}
.y11{bottom:408.870800pt;}
.ya1{bottom:409.584533pt;}
.ya0{bottom:413.866000pt;}
.y99{bottom:415.250133pt;}
.y7{bottom:417.935200pt;}
.y10{bottom:418.273333pt;}
.y9a{bottom:419.132667pt;}
.y6e{bottom:420.642667pt;}
.y9f{bottom:421.844933pt;}
.yf{bottom:421.906533pt;}
.y56{bottom:425.579867pt;}
.y8{bottom:425.812400pt;}
.y9b{bottom:425.839333pt;}
.y9e{bottom:427.491467pt;}
.y6d{bottom:427.726133pt;}
.y9d{bottom:428.300400pt;}
.y9c{bottom:428.998800pt;}
.y9{bottom:429.957333pt;}
.ye{bottom:430.298933pt;}
.y55{bottom:432.663200pt;}
.ya{bottom:436.193067pt;}
.yd{bottom:436.502267pt;}
.yc{bottom:437.255333pt;}
.yb{bottom:438.798000pt;}
.y6c{bottom:444.243600pt;}
.y54{bottom:449.181067pt;}
.y6b{bottom:457.330000pt;}
.y53{bottom:462.265867pt;}
.y6a{bottom:469.028267pt;}
.y62{bottom:469.540533pt;}
.y69{bottom:472.434667pt;}
.y52{bottom:473.964400pt;}
.y4a{bottom:474.478667pt;}
.y51{bottom:477.373600pt;}
.y63{bottom:478.052800pt;}
.y68{bottom:480.096533pt;}
.y4b{bottom:482.991333pt;}
.y64{bottom:483.557467pt;}
.y67{bottom:484.725867pt;}
.y50{bottom:485.034267pt;}
.y65{bottom:485.097867pt;}
.y66{bottom:486.133867pt;}
.y4c{bottom:488.486800pt;}
.y4f{bottom:489.663733pt;}
.y4d{bottom:490.036400pt;}
.y4e{bottom:491.072267pt;}
.y49{bottom:661.905467pt;}
.y31{bottom:664.142133pt;}
.y48{bottom:667.539067pt;}
.y30{bottom:669.775733pt;}
.y47{bottom:681.227867pt;}
.y2f{bottom:683.463200pt;}
.y46{bottom:694.420800pt;}
.y2e{bottom:696.656133pt;}
.y45{bottom:708.643200pt;}
.y2d{bottom:710.876267pt;}
.y7a{bottom:715.419467pt;}
.y44{bottom:715.940267pt;}
.y2c{bottom:718.173467pt;}
.y43{bottom:732.739067pt;}
.y7b{bottom:734.166533pt;}
.y2b{bottom:734.972533pt;}
.y42{bottom:749.802133pt;}
.y2a{bottom:752.034800pt;}
.y7c{bottom:756.496533pt;}
.y7d{bottom:764.904000pt;}
.y41{bottom:768.428267pt;}
.y29{bottom:770.686000pt;}
.y40{bottom:776.622667pt;}
.y28{bottom:778.856533pt;}
.y7e{bottom:784.289067pt;}
.y3f{bottom:793.631867pt;}
.y27{bottom:795.864933pt;}
.y7f{bottom:803.746933pt;}
.y3e{bottom:812.132133pt;}
.y26{bottom:814.364933pt;}
.y3d{bottom:819.194667pt;}
.y25{bottom:821.448267pt;}
.y80{bottom:825.270400pt;}
.y3c{bottom:835.732800pt;}
.y24{bottom:837.965333pt;}
.y81{bottom:845.390667pt;}
.y3b{bottom:848.816667pt;}
.y23{bottom:851.049333pt;}
.y82{bottom:853.444667pt;}
.y3a{bottom:860.516400pt;}
.y32{bottom:861.028667pt;}
.y22{bottom:862.748667pt;}
.y1a{bottom:863.263467pt;}
.y39{bottom:863.924400pt;}
.y21{bottom:866.158000pt;}
.y33{bottom:869.541600pt;}
.y38{bottom:871.584667pt;}
.y1b{bottom:871.775200pt;}
.y83{bottom:872.679467pt;}
.y20{bottom:873.818133pt;}
.y34{bottom:875.040533pt;}
.y37{bottom:876.214933pt;}
.y35{bottom:876.586667pt;}
.y1c{bottom:877.273733pt;}
.y36{bottom:877.622400pt;}
.y1f{bottom:878.446400pt;}
.y1d{bottom:878.818933pt;}
.y1e{bottom:879.857600pt;}
.y91{bottom:885.729867pt;}
.y84{bottom:888.666400pt;}
.y90{bottom:892.593733pt;}
.y85{bottom:903.098533pt;}
.y8f{bottom:906.093467pt;}
.y86{bottom:908.636933pt;}
.y8e{bottom:914.943067pt;}
.y87{bottom:918.734400pt;}
.y8d{bottom:921.798800pt;}
.y8c{bottom:924.096000pt;}
.y88{bottom:924.613733pt;}
.y89{bottom:926.945067pt;}
.y8b{bottom:928.118267pt;}
.y8a{bottom:929.023467pt;}
.y19{bottom:1063.224000pt;}
.h19{height:49.504000pt;}
.h11{height:94.302981pt;}
.h2{height:94.303058pt;}
.h14{height:94.303066pt;}
.h7{height:94.303072pt;}
.h18{height:94.303085pt;}
.hc{height:94.303116pt;}
.h8{height:94.303146pt;}
.h16{height:94.303159pt;}
.hf{height:94.303164pt;}
.h4{height:94.303175pt;}
.h9{height:94.303211pt;}
.h5{height:94.303223pt;}
.h15{height:94.303230pt;}
.hb{height:94.303231pt;}
.h13{height:94.303236pt;}
.h17{height:94.303262pt;}
.ha{height:94.303264pt;}
.he{height:94.303281pt;}
.h6{height:94.303302pt;}
.h10{height:94.303321pt;}
.h12{height:94.303345pt;}
.h3{height:94.303354pt;}
.hd{height:94.303396pt;}
.h5a{height:111.619483pt;}
.h32{height:111.619510pt;}
.h1c{height:111.619517pt;}
.h3d{height:111.619518pt;}
.h22{height:111.619525pt;}
.h41{height:111.619526pt;}
.h61{height:111.619528pt;}
.h50{height:111.619529pt;}
.h60{height:111.619530pt;}
.h28{height:111.619536pt;}
.h4e{height:111.619539pt;}
.h58{height:111.619545pt;}
.h51{height:111.619550pt;}
.h2e{height:111.619556pt;}
.h2b{height:111.619558pt;}
.h1a{height:111.619566pt;}
.h52{height:111.619580pt;}
.h29{height:111.619589pt;}
.h40{height:111.619590pt;}
.h4a{height:111.619591pt;}
.h57{height:111.619594pt;}
.h30{height:111.619603pt;}
.h4c{height:111.619607pt;}
.h3f{height:111.619611pt;}
.h5f{height:111.619616pt;}
.h3e{height:111.619617pt;}
.h5d{height:111.619629pt;}
.h3a{height:111.619631pt;}
.h36{height:111.619634pt;}
.h27{height:111.619643pt;}
.h49{height:111.619647pt;}
.h42{height:111.619653pt;}
.h4d{height:111.619655pt;}
.h39{height:111.619665pt;}
.h25{height:111.619674pt;}
.h21{height:111.619678pt;}
.h44{height:111.619682pt;}
.h55{height:111.619683pt;}
.h46{height:111.619685pt;}
.h2d{height:111.619689pt;}
.h37{height:111.619695pt;}
.h20{height:111.619705pt;}
.h34{height:111.619707pt;}
.h2c{height:111.619709pt;}
.h1b{height:111.619712pt;}
.h2a{height:111.619725pt;}
.h5c{height:111.619736pt;}
.h5e{height:111.619740pt;}
.h45{height:111.619742pt;}
.h31{height:111.619745pt;}
.h38{height:111.619754pt;}
.h23{height:111.619755pt;}
.h3c{height:111.619761pt;}
.h35{height:111.619763pt;}
.h1f{height:111.619766pt;}
.h1e{height:111.619770pt;}
.h56{height:111.619773pt;}
.h59{height:111.619780pt;}
.h5b{height:111.619786pt;}
.h54{height:111.619790pt;}
.h43{height:111.619793pt;}
.h24{height:111.619799pt;}
.h3b{height:111.619828pt;}
.h33{height:111.619837pt;}
.h48{height:111.619838pt;}
.h53{height:111.619848pt;}
.h26{height:111.619851pt;}
.h4b{height:111.619855pt;}
.h1d{height:111.619860pt;}
.h47{height:111.619876pt;}
.h2f{height:111.619886pt;}
.h4f{height:111.619924pt;}
.h92{height:119.651218pt;}
.h88{height:126.724112pt;}
.h6a{height:126.724159pt;}
.h73{height:126.724182pt;}
.h70{height:126.724186pt;}
.h72{height:126.724193pt;}
.h63{height:126.724213pt;}
.h8d{height:126.724240pt;}
.h7c{height:126.724246pt;}
.h86{height:126.724251pt;}
.h79{height:126.724253pt;}
.h71{height:126.724260pt;}
.h74{height:126.724266pt;}
.h80{height:126.724271pt;}
.h7f{height:126.724275pt;}
.h6d{height:126.724288pt;}
.h64{height:126.724290pt;}
.h81{height:126.724297pt;}
.h66{height:126.724308pt;}
.h8a{height:126.724317pt;}
.h8c{height:126.724325pt;}
.h8f{height:126.724328pt;}
.h6e{height:126.724330pt;}
.h7a{height:126.724332pt;}
.h65{height:126.724337pt;}
.h6c{height:126.724355pt;}
.h67{height:126.724379pt;}
.h7e{height:126.724390pt;}
.h78{height:126.724395pt;}
.h76{height:126.724396pt;}
.h89{height:126.724405pt;}
.h77{height:126.724413pt;}
.h7d{height:126.724443pt;}
.h75{height:126.724445pt;}
.h82{height:126.724458pt;}
.h84{height:126.724460pt;}
.h87{height:126.724461pt;}
.h62{height:126.724473pt;}
.h69{height:126.724477pt;}
.h6f{height:126.724485pt;}
.h8b{height:126.724492pt;}
.h8e{height:126.724495pt;}
.h90{height:126.724513pt;}
.h85{height:126.724514pt;}
.h83{height:126.724528pt;}
.h6b{height:126.724589pt;}
.h68{height:126.724594pt;}
.h7b{height:126.724604pt;}
.h91{height:130.472742pt;}
.h94{height:135.632267pt;}
.h93{height:146.240420pt;}
.h95{height:165.772897pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:46.474000pt;}
.x6f{left:107.132800pt;}
.x1a{left:145.648533pt;}
.x42{left:149.606800pt;}
.x1b{left:162.847600pt;}
.x43{left:166.804933pt;}
.x1c{left:182.944933pt;}
.x44{left:186.880800pt;}
.x1d{left:190.460000pt;}
.x45{left:194.416933pt;}
.x1e{left:207.609200pt;}
.x46{left:211.566267pt;}
.x1f{left:224.736533pt;}
.x47{left:228.692933pt;}
.x20{left:243.386267pt;}
.x48{left:247.343467pt;}
.x1{left:253.232667pt;}
.x2{left:259.368667pt;}
.x21{left:260.599333pt;}
.x49{left:264.554667pt;}
.x22{left:267.445733pt;}
.x3{left:269.782533pt;}
.x4a{left:271.401200pt;}
.x4{left:274.665600pt;}
.x53{left:276.811600pt;}
.x52{left:279.399067pt;}
.x54{left:280.715733pt;}
.x2c{left:281.745867pt;}
.x23{left:283.551733pt;}
.x51{left:285.701067pt;}
.x4b{left:287.504933pt;}
.x5{left:289.030267pt;}
.x50{left:292.158400pt;}
.x61{left:293.850533pt;}
.x24{left:296.757733pt;}
.x2b{left:301.065600pt;}
.x6{left:303.896267pt;}
.x4f{left:305.020400pt;}
.x62{left:306.965733pt;}
.x25{left:308.284933pt;}
.x2a{left:309.818133pt;}
.x26{left:312.667200pt;}
.x4e{left:313.772933pt;}
.x29{left:316.885600pt;}
.x7{left:319.956533pt;}
.x27{left:324.225600pt;}
.x28{left:325.689867pt;}
.x4c{left:328.178533pt;}
.x4d{left:329.641600pt;}
.x8{left:335.334800pt;}
.x55{left:342.424267pt;}
.x9{left:344.320667pt;}
.x63{left:350.581733pt;}
.x56{left:362.783867pt;}
.xa{left:366.743733pt;}
.x64{left:372.217467pt;}
.x57{left:381.693733pt;}
.xb{left:389.206267pt;}
.x58{left:390.877867pt;}
.x65{left:393.101067pt;}
.x59{left:411.953733pt;}
.xc{left:413.006667pt;}
.x66{left:415.966267pt;}
.xd{left:420.794533pt;}
.x67{left:425.398667pt;}
.x5a{left:431.489333pt;}
.xe{left:443.631600pt;}
.x68{left:447.354533pt;}
.x5b{left:450.893867pt;}
.x5c{left:459.361467pt;}
.xf{left:462.273067pt;}
.x69{left:465.466800pt;}
.x10{left:469.307200pt;}
.x6a{left:473.912533pt;}
.x5d{left:476.035067pt;}
.x11{left:483.619733pt;}
.x5e{left:491.680667pt;}
.x12{left:498.986933pt;}
.x6b{left:505.112667pt;}
.x5f{left:508.256933pt;}
.x2d{left:512.575467pt;}
.x13{left:513.824267pt;}
.x60{left:515.156400pt;}
.x6c{left:516.847600pt;}
.x14{left:519.690933pt;}
.x6d{left:521.615333pt;}
.x15{left:528.033733pt;}
.x2e{left:529.774267pt;}
.x16{left:534.828133pt;}
.x6e{left:538.034000pt;}
.x17{left:540.602000pt;}
.x18{left:541.958667pt;}
.x2f{left:549.872933pt;}
.x30{left:557.386400pt;}
.x31{left:574.535067pt;}
.x32{left:591.660667pt;}
.x33{left:610.313467pt;}
.x34{left:627.526000pt;}
.x35{left:634.372133pt;}
.x41{left:648.676133pt;}
.x36{left:650.476133pt;}
.x40{left:655.132800pt;}
.x37{left:663.682800pt;}
.x3f{left:667.995467pt;}
.x38{left:675.222400pt;}
.x3e{left:676.748000pt;}
.x39{left:679.590933pt;}
.x3d{left:683.814267pt;}
.x3a{left:687.168400pt;}
.x3b{left:691.151067pt;}
.x3c{left:692.616533pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  