
    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_6c6fe525507cc9cdc59cf26d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_9b0205c290dd211a3b69325b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_907c90fa82142682592d6931.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_d802a833d55521b18ee79c01.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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:ff5;src:url('chunks/assets/font_ae9f1dd592fbcd2d69522b9e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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:ff6;src:url('chunks/assets/font_706bef295999f4bdd13e242b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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:ff7;src:url('chunks/assets/font_49d6f57d65475246e326c023.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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:ff8;src:url('chunks/assets/font_4da69152cab004ea251dde17.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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:ff9;src:url('chunks/assets/font_77e646751dc93dba4d932b51.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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:ffa;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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:ffb;src:url('chunks/assets/font_925e89931289de0db7852537.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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:ffc;src:url('chunks/assets/font_a709b6d95fdb171190a470bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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:ffd;src:url('chunks/assets/font_8f1f805b0357d6b0419319a6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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:ffe;src:url('chunks/assets/font_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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;}
.m0{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240000px;}
.ls12{letter-spacing:-7.500000px;}
.ls18{letter-spacing:-1.422000px;}
.lse{letter-spacing:-0.708000px;}
.ls3{letter-spacing:-0.648000px;}
.ls37{letter-spacing:-0.642000px;}
.lsa{letter-spacing:-0.588600px;}
.ls40{letter-spacing:-0.576000px;}
.ls39{letter-spacing:-0.568800px;}
.ls9{letter-spacing:-0.567000px;}
.ls4{letter-spacing:-0.501000px;}
.ls38{letter-spacing:-0.483600px;}
.ls2a{letter-spacing:-0.466800px;}
.ls3a{letter-spacing:-0.440400px;}
.ls42{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.284400px;}
.ls26{letter-spacing:-0.234000px;}
.ls3d{letter-spacing:-0.224400px;}
.ls21{letter-spacing:-0.219000px;}
.lsc{letter-spacing:-0.213000px;}
.ls3c{letter-spacing:-0.145200px;}
.ls19{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.142200px;}
.lsb{letter-spacing:-0.102000px;}
.ls46{letter-spacing:-0.075000px;}
.ls29{letter-spacing:-0.043200px;}
.ls0{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.010200px;}
.ls3e{letter-spacing:0.019800px;}
.ls2c{letter-spacing:0.042000px;}
.ls34{letter-spacing:0.058800px;}
.ls41{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.252000px;}
.ls3b{letter-spacing:0.262200px;}
.ls36{letter-spacing:0.340200px;}
.ls35{letter-spacing:0.354000px;}
.ls7{letter-spacing:0.364800px;}
.ls8{letter-spacing:0.397200px;}
.lsf{letter-spacing:0.406200px;}
.ls47{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.508800px;}
.ls13{letter-spacing:0.519600px;}
.ls11{letter-spacing:0.519840px;}
.ls2b{letter-spacing:0.541200px;}
.ls23{letter-spacing:0.549600px;}
.ls1a{letter-spacing:0.549648px;}
.ls6{letter-spacing:0.732000px;}
.ls3f{letter-spacing:48.384000px;}
.ls33{letter-spacing:49.824000px;}
.ls1b{letter-spacing:52.389048px;}
.ls45{letter-spacing:53.989104px;}
.ls44{letter-spacing:54.933120px;}
.ls15{letter-spacing:59.769216px;}
.ls2e{letter-spacing:59.834880px;}
.lsd{letter-spacing:60.112944px;}
.ls2d{letter-spacing:60.253920px;}
.ls1e{letter-spacing:84.585600px;}
.ls1f{letter-spacing:84.672000px;}
.ls2f{letter-spacing:125.968464px;}
.ls30{letter-spacing:126.047520px;}
.ls25{letter-spacing:129.966048px;}
.ls24{letter-spacing:130.032000px;}
.ls16{letter-spacing:176.997600px;}
.ls17{letter-spacing:177.048000px;}
.ls2{letter-spacing:178.437600px;}
.ls1{letter-spacing:178.488000px;}
.ls1c{letter-spacing:186.501600px;}
.ls1d{letter-spacing:186.552000px;}
.ls27{letter-spacing:195.069600px;}
.ls28{letter-spacing:195.120000px;}
.ls31{letter-spacing:210.312000px;}
.ls32{letter-spacing:211.752000px;}
.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;}
}
.ws6{word-spacing:-78.084000px;}
.ws7{word-spacing:-60.847392px;}
.ws12{word-spacing:-60.521592px;}
.ws51{word-spacing:-60.436560px;}
.ws5e{word-spacing:-60.377592px;}
.ws4{word-spacing:-60.115392px;}
.ws2{word-spacing:-60.082560px;}
.ws58{word-spacing:-59.598960px;}
.ws59{word-spacing:-59.546592px;}
.ws3{word-spacing:-59.434560px;}
.ws1d{word-spacing:-59.407392px;}
.ws24{word-spacing:-54.862272px;}
.ws25{word-spacing:-54.829440px;}
.ws7b{word-spacing:-49.680000px;}
.ws54{word-spacing:-49.621032px;}
.ws56{word-spacing:-49.280832px;}
.ws2e{word-spacing:-49.248000px;}
.ws8{word-spacing:-41.072832px;}
.ws2f{word-spacing:-40.638384px;}
.ws30{word-spacing:-40.603680px;}
.wse{word-spacing:-33.226560px;}
.wsf{word-spacing:-33.013560px;}
.ws31{word-spacing:-28.839024px;}
.ws7c{word-spacing:-27.250560px;}
.ws1{word-spacing:-24.624000px;}
.ws15{word-spacing:-24.336000px;}
.ws16{word-spacing:-17.124000px;}
.ws52{word-spacing:-10.784160px;}
.ws34{word-spacing:-3.993360px;}
.ws5{word-spacing:-2.304000px;}
.ws76{word-spacing:-2.130720px;}
.ws26{word-spacing:-0.774240px;}
.ws28{word-spacing:-0.738720px;}
.ws2d{word-spacing:-0.600600px;}
.ws2a{word-spacing:-0.522120px;}
.ws41{word-spacing:-0.487296px;}
.ws45{word-spacing:-0.454416px;}
.ws78{word-spacing:-0.272640px;}
.ws77{word-spacing:-0.202200px;}
.ws4c{word-spacing:-0.161280px;}
.wsb{word-spacing:-0.142416px;}
.ws4d{word-spacing:-0.022416px;}
.ws0{word-spacing:0.000000px;}
.ws3b{word-spacing:0.037584px;}
.ws72{word-spacing:0.072000px;}
.ws23{word-spacing:0.284112px;}
.ws33{word-spacing:0.311040px;}
.ws11{word-spacing:0.422496px;}
.ws2c{word-spacing:0.432000px;}
.ws7a{word-spacing:0.523728px;}
.ws3d{word-spacing:0.587376px;}
.ws68{word-spacing:0.708480px;}
.ws75{word-spacing:0.840000px;}
.ws73{word-spacing:0.864000px;}
.ws55{word-spacing:0.876000px;}
.ws27{word-spacing:0.917880px;}
.ws2b{word-spacing:0.972000px;}
.ws4b{word-spacing:1.164960px;}
.ws57{word-spacing:1.245744px;}
.ws32{word-spacing:1.278720px;}
.ws5b{word-spacing:1.293840px;}
.ws66{word-spacing:1.297584px;}
.ws29{word-spacing:1.380120px;}
.ws6b{word-spacing:1.579392px;}
.wsd{word-spacing:1.579992px;}
.ws37{word-spacing:1.698768px;}
.ws9{word-spacing:1.921968px;}
.ws5a{word-spacing:2.014560px;}
.ws6a{word-spacing:2.102160px;}
.ws20{word-spacing:2.142432px;}
.ws74{word-spacing:2.376000px;}
.ws1f{word-spacing:2.409552px;}
.ws4f{word-spacing:2.516160px;}
.ws69{word-spacing:2.527248px;}
.ws14{word-spacing:2.544480px;}
.ws61{word-spacing:2.675520px;}
.ws79{word-spacing:2.791344px;}
.ws6e{word-spacing:3.116160px;}
.ws48{word-spacing:3.259728px;}
.ws47{word-spacing:3.488160px;}
.ws65{word-spacing:3.542760px;}
.ws18{word-spacing:3.582432px;}
.ws63{word-spacing:3.725280px;}
.ws5c{word-spacing:3.768480px;}
.ws6f{word-spacing:4.040640px;}
.ws1b{word-spacing:4.058400px;}
.ws6d{word-spacing:4.169640px;}
.ws40{word-spacing:4.176480px;}
.ws70{word-spacing:4.203840px;}
.ws39{word-spacing:4.641120px;}
.ws43{word-spacing:4.707840px;}
.ws53{word-spacing:4.761960px;}
.ws35{word-spacing:4.816128px;}
.ws1c{word-spacing:4.899456px;}
.ws3e{word-spacing:5.004000px;}
.ws42{word-spacing:5.016864px;}
.ws3c{word-spacing:5.095440px;}
.ws1e{word-spacing:5.326992px;}
.ws3a{word-spacing:5.328000px;}
.ws44{word-spacing:5.352960px;}
.ws1a{word-spacing:5.371200px;}
.ws64{word-spacing:5.396160px;}
.wsa{word-spacing:5.448000px;}
.ws50{word-spacing:5.526120px;}
.ws19{word-spacing:5.617440px;}
.ws22{word-spacing:5.728224px;}
.ws49{word-spacing:5.741472px;}
.ws4a{word-spacing:5.966400px;}
.wsc{word-spacing:6.055056px;}
.ws5d{word-spacing:6.336480px;}
.ws10{word-spacing:6.938688px;}
.ws3f{word-spacing:6.939840px;}
.ws13{word-spacing:6.985752px;}
.ws36{word-spacing:6.998688px;}
.ws17{word-spacing:7.041600px;}
.ws21{word-spacing:7.147776px;}
.ws46{word-spacing:7.171200px;}
.ws4e{word-spacing:7.250400px;}
.ws38{word-spacing:7.269600px;}
.ws62{word-spacing:7.353720px;}
.ws67{word-spacing:7.578720px;}
.ws5f{word-spacing:7.635936px;}
.ws6c{word-spacing:7.868160px;}
.ws60{word-spacing:8.125536px;}
.ws71{word-spacing:64.683840px;}
._9{margin-left:-10349.148000px;}
._1b{margin-left:-10341.635400px;}
._15{margin-left:-27.768960px;}
._11{margin-left:-24.501600px;}
._10{margin-left:-16.022736px;}
._14{margin-left:-14.752800px;}
._e{margin-left:-12.484656px;}
._c{margin-left:-11.141280px;}
._f{margin-left:-9.486720px;}
._16{margin-left:-8.435376px;}
._1{margin-left:-7.398720px;}
._23{margin-left:-6.274080px;}
._6{margin-left:-5.076000px;}
._a{margin-left:-3.689280px;}
._2{margin-left:-2.113920px;}
._4{margin-left:-1.018080px;}
._0{width:1.944000px;}
._3{width:3.168000px;}
._b{width:4.485600px;}
._5{width:5.569920px;}
._d{width:6.599520px;}
._18{width:8.518656px;}
._22{width:31.294680px;}
._24{width:36.554880px;}
._1c{width:37.944960px;}
._30{width:41.980848px;}
._1e{width:43.086240px;}
._2e{width:47.976360px;}
._27{width:50.290416px;}
._20{width:51.300480px;}
._1f{width:52.888320px;}
._31{width:54.005880px;}
._2d{width:56.665104px;}
._28{width:59.113152px;}
._21{width:61.160976px;}
._25{width:62.414544px;}
._19{width:63.659928px;}
._17{width:65.108160px;}
._13{width:66.165600px;}
._26{width:67.238256px;}
._12{width:68.582832px;}
._2b{width:197.299728px;}
._29{width:198.779040px;}
._2f{width:205.068960px;}
._2a{width:210.312000px;}
._2c{width:211.752000px;}
._7{width:8272.416000px;}
._1d{width:10453.380000px;}
._1a{width:10460.579400px;}
._8{width:10502.340000px;}
.fcb{color:rgb(38,38,35);}
.fca{color:transparent;}
.fc9{color:rgb(0,170,141);}
.fc8{color:rgb(44,185,161);}
.fc4{color:rgb(224,149,1);}
.fc3{color:rgb(72,169,218);}
.fc2{color:rgb(77,75,70);}
.fcc{color:rgb(255,255,255);}
.fc6{color:rgb(0,55,103);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(35,156,255);}
.fc5{color:rgb(216,202,78);}
.fc0{color:rgb(0,79,143);}
.fs0{font-size:108.000000px;}
.fs8{font-size:119.520000px;}
.fse{font-size:119.664000px;}
.fsd{font-size:168.480000px;}
.fsc{font-size:168.624000px;}
.fs7{font-size:180.144000px;}
.fs2{font-size:216.000000px;}
.fsb{font-size:216.144000px;}
.fsa{font-size:240.480000px;}
.fs9{font-size:240.624000px;}
.fs3{font-size:263.520000px;}
.fs4{font-size:263.664000px;}
.fs10{font-size:299.520000px;}
.fsf{font-size:299.664000px;}
.fs5{font-size:324.000000px;}
.fs6{font-size:324.144000px;}
.fs1{font-size:528.480000px;}
.y0{bottom:0.000000px;}
.y1{bottom:17.964000px;}
.y5{bottom:21.024000px;}
.yc2{bottom:54.000000px;}
.y3d{bottom:92.556000px;}
.y43{bottom:94.536000px;}
.y75{bottom:94.644000px;}
.y6b{bottom:98.136000px;}
.yd3{bottom:100.800000px;}
.yd8{bottom:104.616000px;}
.yf1{bottom:108.000000px;}
.y4d{bottom:110.736000px;}
.y49{bottom:119.736000px;}
.ycb{bottom:122.400000px;}
.y13d{bottom:122.616000px;}
.y83{bottom:124.416000px;}
.y3c{bottom:128.556000px;}
.yac{bottom:128.736000px;}
.y42{bottom:130.536000px;}
.y3b{bottom:133.308000px;}
.y6a{bottom:134.136000px;}
.ya5{bottom:143.244000px;}
.y13c{bottom:158.610000px;}
.y7f{bottom:158.910000px;}
.yf6{bottom:162.930000px;}
.y106{bottom:165.450000px;}
.y69{bottom:170.130000px;}
.yaa{bottom:175.530000px;}
.ya4{bottom:180.210000px;}
.yd7{bottom:183.810000px;}
.y12d{bottom:186.840000px;}
.y3{bottom:189.075000px;}
.y137{bottom:194.610000px;}
.y48{bottom:203.610000px;}
.y68{bottom:206.130000px;}
.y12e{bottom:206.205000px;}
.y129{bottom:206.250000px;}
.y124{bottom:206.280000px;}
.y11c{bottom:206.310000px;}
.y117{bottom:206.355000px;}
.yda{bottom:206.385000px;}
.y10d{bottom:206.430000px;}
.y82{bottom:207.930000px;}
.y120{bottom:208.440000px;}
.y95{bottom:212.610000px;}
.y66{bottom:224.850000px;}
.y19{bottom:226.050000px;}
.yf5{bottom:238.530000px;}
.y13b{bottom:239.610000px;}
.y105{bottom:242.175000px;}
.ya3{bottom:245.055000px;}
.ye9{bottom:248.400000px;}
.yb9{bottom:252.105000px;}
.yd4{bottom:252.255000px;}
.yd0{bottom:252.285000px;}
.yca{bottom:252.330000px;}
.yc1{bottom:252.390000px;}
.ybb{bottom:252.435000px;}
.ycf{bottom:270.000000px;}
.yd6{bottom:273.855000px;}
.y65{bottom:275.295000px;}
.y13a{bottom:275.655000px;}
.y4c{bottom:278.175000px;}
.ya6{bottom:282.855000px;}
.y33{bottom:285.195000px;}
.y3a{bottom:287.175000px;}
.y20{bottom:287.250000px;}
.y81{bottom:291.855000px;}
.y128{bottom:294.840000px;}
.yf4{bottom:303.375000px;}
.y18{bottom:305.250000px;}
.ya9{bottom:309.855000px;}
.y104{bottom:313.815000px;}
.ya2{bottom:314.535000px;}
.y59{bottom:320.295000px;}
.y32{bottom:348.555000px;}
.yd5{bottom:353.055000px;}
.y136{bottom:357.375000px;}
.y12c{bottom:360.645000px;}
.yb{bottom:362.055000px;}
.y139{bottom:364.575000px;}
.y10b{bottom:366.150000px;}
.yf3{bottom:368.175000px;}
.y39{bottom:371.055000px;}
.y94{bottom:375.375000px;}
.ya1{bottom:378.975000px;}
.y17{bottom:384.480000px;}
.y103{bottom:386.175000px;}
.y74{bottom:387.975000px;}
.ye5{bottom:388.800000px;}
.y58{bottom:389.415000px;}
.y12f{bottom:393.045000px;}
.yf2{bottom:400.605000px;}
.yec{bottom:400.650000px;}
.ye8{bottom:400.680000px;}
.ye3{bottom:400.710000px;}
.ydd{bottom:400.755000px;}
.y111{bottom:400.785000px;}
.y12b{bottom:425.445000px;}
.y123{bottom:435.240000px;}
.yc9{bottom:439.200000px;}
.y135{bottom:441.285000px;}
.yd2{bottom:443.085000px;}
.yf0{bottom:443.805000px;}
.y4b{bottom:445.605000px;}
.ya0{bottom:448.485000px;}
.y7e{bottom:450.285000px;}
.y41{bottom:450.645000px;}
.y47{bottom:454.605000px;}
.y1f{bottom:454.680000px;}
.y119{bottom:456.840000px;}
.y57{bottom:458.925000px;}
.y80{bottom:459.285000px;}
.y102{bottom:462.525000px;}
.y16{bottom:463.680000px;}
.yea{bottom:465.450000px;}
.ye6{bottom:465.480000px;}
.ye1{bottom:465.510000px;}
.ydc{bottom:465.555000px;}
.y10f{bottom:465.585000px;}
.y64{bottom:476.925000px;}
.yce{bottom:489.930000px;}
.ybe{bottom:489.990000px;}
.y8f{bottom:493.560000px;}
.y12a{bottom:501.090000px;}
.yef{bottom:508.605000px;}
.y7d{bottom:510.555000px;}
.y2a{bottom:511.485000px;}
.ya8{bottom:517.605000px;}
.y9f{bottom:517.965000px;}
.yd1{bottom:522.285000px;}
.y56{bottom:523.725000px;}
.yb7{bottom:524.085000px;}
.y134{bottom:524.805000px;}
.y73{bottom:526.605000px;}
.ye0{bottom:529.200000px;}
.ya{bottom:529.485000px;}
.yab{bottom:533.805000px;}
.y1e{bottom:533.880000px;}
.y63{bottom:535.245000px;}
.y38{bottom:538.485000px;}
.y101{bottom:538.845000px;}
.ybc{bottom:540.000000px;}
.y93{bottom:542.805000px;}
.y15{bottom:547.590000px;}
.y8e{bottom:558.390000px;}
.ycc{bottom:569.130000px;}
.ybd{bottom:569.235000px;}
.yee{bottom:573.450000px;}
.y11e{bottom:575.640000px;}
.y127{bottom:576.690000px;}
.ya7{bottom:587.130000px;}
.y7c{bottom:589.785000px;}
.y31{bottom:590.325000px;}
.y8a{bottom:591.510000px;}
.y72{bottom:596.130000px;}
.y114{bottom:597.240000px;}
.y62{bottom:597.930000px;}
.y29{bottom:599.730000px;}
.y122{bottom:609.090000px;}
.y100{bottom:610.890000px;}
.y4a{bottom:613.050000px;}
.yb6{bottom:614.130000px;}
.y46{bottom:617.730000px;}
.yae{bottom:622.050000px;}
.y14{bottom:626.790000px;}
.y125{bottom:641.520000px;}
.yed{bottom:649.050000px;}
.y61{bottom:656.250000px;}
.y89{bottom:656.310000px;}
.y10a{bottom:660.930000px;}
.y8d{bottom:660.990000px;}
.y55{bottom:662.370000px;}
.y71{bottom:665.250000px;}
.ydb{bottom:669.600000px;}
.y7b{bottom:673.710000px;}
.y121{bottom:673.920000px;}
.yff{bottom:682.890000px;}
.y11b{bottom:683.640000px;}
.y30{bottom:687.570000px;}
.yc0{bottom:687.600000px;}
.y28{bottom:687.930000px;}
.ycd{bottom:691.530000px;}
.y9{bottom:696.930000px;}
.y40{bottom:701.250000px;}
.y1d{bottom:701.355000px;}
.yb5{bottom:704.130000px;}
.y37{bottom:705.930000px;}
.y92{bottom:706.290000px;}
.y126{bottom:706.320000px;}
.y13{bottom:710.355000px;}
.yeb{bottom:713.850000px;}
.y98{bottom:717.450000px;}
.y60{bottom:719.280000px;}
.y9e{bottom:725.760000px;}
.yc7{bottom:727.560000px;}
.y109{bottom:730.080000px;}
.y8c{bottom:730.155000px;}
.y54{bottom:731.520000px;}
.y10e{bottom:737.640000px;}
.y133{bottom:767.160000px;}
.y27{bottom:776.160000px;}
.y3f{bottom:780.480000px;}
.yc8{bottom:781.560000px;}
.y5f{bottom:781.920000px;}
.y11f{bottom:781.950000px;}
.y2f{bottom:784.800000px;}
.y36{bottom:785.160000px;}
.y91{bottom:789.480000px;}
.yb4{bottom:794.160000px;}
.y12{bottom:794.235000px;}
.y9d{bottom:794.880000px;}
.y88{bottom:794.955000px;}
.y108{bottom:799.560000px;}
.y53{bottom:801.000000px;}
.y70{bottom:803.880000px;}
.yc5{bottom:806.760000px;}
.y116{bottom:824.040000px;}
.y22{bottom:831.315000px;}
.yfe{bottom:835.920000px;}
.y7a{bottom:841.140000px;}
.y5e{bottom:844.920000px;}
.y132{bottom:846.360000px;}
.ye7{bottom:854.280000px;}
.y26{bottom:855.360000px;}
.yba{bottom:856.800000px;}
.yc6{bottom:860.760000px;}
.y8{bottom:864.360000px;}
.y8b{bottom:864.465000px;}
.y35{bottom:868.680000px;}
.y1c{bottom:868.785000px;}
.y97{bottom:873.360000px;}
.y11{bottom:873.465000px;}
.y2e{bottom:882.000000px;}
.yb3{bottom:884.160000px;}
.yc3{bottom:885.990000px;}
.y11d{bottom:889.950000px;}
.yfd{bottom:907.950000px;}
.y79{bottom:920.340000px;}
.y11a{bottom:922.350000px;}
.ye4{bottom:929.910000px;}
.y21{bottom:932.865000px;}
.y9c{bottom:933.510000px;}
.y87{bottom:933.585000px;}
.y25{bottom:934.590000px;}
.y107{bottom:938.190000px;}
.y52{bottom:939.630000px;}
.yc4{bottom:939.990000px;}
.yb8{bottom:946.800000px;}
.y34{bottom:947.910000px;}
.y1b{bottom:947.985000px;}
.y45{bottom:952.590000px;}
.y67{bottom:952.740000px;}
.y90{bottom:952.950000px;}
.yad{bottom:956.910000px;}
.y10{bottom:956.985000px;}
.y112{bottom:964.440000px;}
.y5d{bottom:970.590000px;}
.yb2{bottom:974.190000px;}
.y2d{bottom:979.230000px;}
.yfc{bottom:984.630000px;}
.ye2{bottom:994.710000px;}
.y78{bottom:999.570000px;}
.y9b{bottom:1002.990000px;}
.y86{bottom:1003.065000px;}
.yd9{bottom:1004.400000px;}
.y6f{bottom:1007.310000px;}
.y51{bottom:1008.750000px;}
.y131{bottom:1013.790000px;}
.y24{bottom:1022.790000px;}
.y2{bottom:1024.275000px;}
.ybf{bottom:1029.990000px;}
.y118{bottom:1030.395000px;}
.y7{bottom:1031.790000px;}
.y1a{bottom:1031.910000px;}
.y5c{bottom:1033.230000px;}
.y44{bottom:1036.110000px;}
.yf{bottom:1036.230000px;}
.yf8{bottom:1040.910000px;}
.yfb{bottom:1056.675000px;}
.y115{bottom:1062.795000px;}
.yb1{bottom:1064.190000px;}
.ydf{bottom:1070.355000px;}
.y9a{bottom:1072.155000px;}
.y85{bottom:1072.230000px;}
.y10c{bottom:1072.440000px;}
.y2c{bottom:1076.475000px;}
.y6e{bottom:1076.835000px;}
.y50{bottom:1078.275000px;}
.y5b{bottom:1096.275000px;}
.y138{bottom:1101.675000px;}
.y23{bottom:1111.035000px;}
.y3e{bottom:1115.355000px;}
.ye{bottom:1115.430000px;}
.y96{bottom:1120.035000px;}
.yf7{bottom:1120.110000px;}
.yfa{bottom:1128.675000px;}
.yde{bottom:1135.155000px;}
.y99{bottom:1141.635000px;}
.y6d{bottom:1145.955000px;}
.y4f{bottom:1147.395000px;}
.yb0{bottom:1154.235000px;}
.y77{bottom:1167.015000px;}
.y113{bottom:1170.825000px;}
.y2b{bottom:1173.675000px;}
.y4{bottom:1178.745000px;}
.y130{bottom:1180.875000px;}
.y6{bottom:1199.265000px;}
.yd{bottom:1199.340000px;}
.y110{bottom:1203.225000px;}
.yf9{bottom:1205.025000px;}
.y6c{bottom:1210.785000px;}
.y84{bottom:1210.860000px;}
.y4e{bottom:1212.225000px;}
.y5a{bottom:1217.265000px;}
.yaf{bottom:1244.265000px;}
.y76{bottom:1246.215000px;}
.yc{bottom:1446.810000px;}
.h11{height:90.457031px;}
.h12{height:90.566016px;}
.h1{height:97.400391px;}
.ha{height:107.206172px;}
.h29{height:107.789766px;}
.h15{height:107.919633px;}
.h5{height:109.640391px;}
.h10{height:127.511719px;}
.hf{height:127.620703px;}
.h14{height:151.944609px;}
.h21{height:157.358742px;}
.h9{height:162.463852px;}
.hb{height:191.849766px;}
.h13{height:191.954602px;}
.h3{height:194.800781px;}
.he{height:194.930648px;}
.hd{height:216.878203px;}
.hc{height:217.008070px;}
.h17{height:226.541250px;}
.h16{height:226.650164px;}
.h4{height:237.656953px;}
.h6{height:237.786820px;}
.h7{height:245.056641px;}
.h8{height:245.165555px;}
.h20{height:453.960000px;}
.h2{height:476.612578px;}
.h1e{height:486.360000px;}
.h18{height:554.760000px;}
.h25{height:605.160000px;}
.h1f{height:723.960000px;}
.h28{height:867.600000px;}
.h26{height:882.360000px;}
.h1d{height:893.160000px;}
.h22{height:907.560000px;}
.h24{height:1004.760000px;}
.h1c{height:1062.360000px;}
.h19{height:1080.000000px;}
.h1b{height:1109.160000px;}
.h23{height:1209.960000px;}
.h27{height:1342.800000px;}
.h1a{height:1566.000000px;}
.h0{height:1620.000000px;}
.w2{width:147.960000px;}
.w5{width:374.760000px;}
.w1{width:386.280000px;}
.w9{width:635.040000px;}
.w8{width:635.400000px;}
.w4{width:680.760000px;}
.w7{width:1140.480000px;}
.w6{width:1349.640000px;}
.w3{width:1710.720000px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x36{left:11.160000px;}
.x1{left:18.000000px;}
.x35{left:223.560000px;}
.x4{left:234.645000px;}
.x24{left:237.240000px;}
.x3{left:240.195000px;}
.xb{left:248.400000px;}
.x5a{left:252.645000px;}
.x1a{left:254.805000px;}
.x1d{left:255.885000px;}
.x2f{left:266.400000px;}
.x51{left:275.325000px;}
.x30{left:279.000000px;}
.x1c{left:287.205000px;}
.xc{left:290.880000px;}
.x31{left:291.960000px;}
.x59{left:296.280000px;}
.x5{left:302.325000px;}
.x10{left:307.080000px;}
.x19{left:312.045000px;}
.x1b{left:318.885000px;}
.x32{left:324.720000px;}
.xf{left:327.240000px;}
.xd{left:335.160000px;}
.xa{left:336.240000px;}
.x28{left:342.645000px;}
.x1e{left:344.445000px;}
.xe{left:349.920000px;}
.x4e{left:377.310000px;}
.x27{left:379.365000px;}
.x2e{left:403.200000px;}
.x29{left:411.840000px;}
.x56{left:416.880000px;}
.x33{left:437.400000px;}
.x2{left:456.660000px;}
.x46{left:461.160000px;}
.x12{left:518.730000px;}
.x4a{left:522.030000px;}
.x25{left:523.590000px;}
.x2b{left:550.470000px;}
.x4d{left:564.150000px;}
.x11{left:568.470000px;}
.x2a{left:606.990000px;}
.x37{left:609.480000px;}
.x34{left:633.630000px;}
.x18{left:639.750000px;}
.x58{left:716.790000px;}
.x38{left:757.080000px;}
.x45{left:847.515000px;}
.x14{left:854.535000px;}
.x26{left:877.320000px;}
.x3b{left:879.555000px;}
.x41{left:903.960000px;}
.x2c{left:910.290000px;}
.x3a{left:928.155000px;}
.x40{left:931.035000px;}
.x53{left:952.635000px;}
.x39{left:962.715000px;}
.x3c{left:1009.155000px;}
.x2d{left:1074.345000px;}
.x17{left:1080.465000px;}
.x55{left:1139.865000px;}
.x3d{left:1144.185000px;}
.x9{left:1147.425000px;}
.x20{left:1171.155000px;}
.x3e{left:1192.425000px;}
.x48{left:1233.390000px;}
.x21{left:1255.860000px;}
.x42{left:1278.360000px;}
.x52{left:1363.680000px;}
.x1f{left:1381.065000px;}
.x49{left:1422.255000px;}
.x44{left:1434.135000px;}
.x5b{left:1444.035000px;}
.x50{left:1446.735000px;}
.x43{left:1448.895000px;}
.x7{left:1476.510000px;}
.x4f{left:1505.775000px;}
.x15{left:1510.530000px;}
.x8{left:1517.190000px;}
.x23{left:1578.750000px;}
.x47{left:1623.135000px;}
.x4c{left:1650.495000px;}
.x5c{left:1691.025000px;}
.x57{left:1727.745000px;}
.x54{left:1730.985000px;}
.x13{left:1751.145150px;}
.x22{left:1799.820000px;}
.x5f{left:1830.705000px;}
.x4b{left:1999.409850px;}
.x5e{left:2038.110000px;}
.x5d{left:2061.510000px;}
.x3f{left:2399.655000px;}
.x16{left:2802.930000px;}
.x6{left:2815.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880000pt;}
.ls12{letter-spacing:-6.666667pt;}
.ls18{letter-spacing:-1.264000pt;}
.lse{letter-spacing:-0.629333pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls37{letter-spacing:-0.570667pt;}
.lsa{letter-spacing:-0.523200pt;}
.ls40{letter-spacing:-0.512000pt;}
.ls39{letter-spacing:-0.505600pt;}
.ls9{letter-spacing:-0.504000pt;}
.ls4{letter-spacing:-0.445333pt;}
.ls38{letter-spacing:-0.429867pt;}
.ls2a{letter-spacing:-0.414933pt;}
.ls3a{letter-spacing:-0.391467pt;}
.ls42{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.252800pt;}
.ls26{letter-spacing:-0.208000pt;}
.ls3d{letter-spacing:-0.199467pt;}
.ls21{letter-spacing:-0.194667pt;}
.lsc{letter-spacing:-0.189333pt;}
.ls3c{letter-spacing:-0.129067pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.126400pt;}
.lsb{letter-spacing:-0.090667pt;}
.ls46{letter-spacing:-0.066667pt;}
.ls29{letter-spacing:-0.038400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.009067pt;}
.ls3e{letter-spacing:0.017600pt;}
.ls2c{letter-spacing:0.037333pt;}
.ls34{letter-spacing:0.052267pt;}
.ls41{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.224000pt;}
.ls3b{letter-spacing:0.233067pt;}
.ls36{letter-spacing:0.302400pt;}
.ls35{letter-spacing:0.314667pt;}
.ls7{letter-spacing:0.324267pt;}
.ls8{letter-spacing:0.353067pt;}
.lsf{letter-spacing:0.361067pt;}
.ls47{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.452267pt;}
.ls13{letter-spacing:0.461867pt;}
.ls11{letter-spacing:0.462080pt;}
.ls2b{letter-spacing:0.481067pt;}
.ls23{letter-spacing:0.488533pt;}
.ls1a{letter-spacing:0.488576pt;}
.ls6{letter-spacing:0.650667pt;}
.ls3f{letter-spacing:43.008000pt;}
.ls33{letter-spacing:44.288000pt;}
.ls1b{letter-spacing:46.568043pt;}
.ls45{letter-spacing:47.990315pt;}
.ls44{letter-spacing:48.829440pt;}
.ls15{letter-spacing:53.128192pt;}
.ls2e{letter-spacing:53.186560pt;}
.lsd{letter-spacing:53.433728pt;}
.ls2d{letter-spacing:53.559040pt;}
.ls1e{letter-spacing:75.187200pt;}
.ls1f{letter-spacing:75.264000pt;}
.ls2f{letter-spacing:111.971968pt;}
.ls30{letter-spacing:112.042240pt;}
.ls25{letter-spacing:115.525376pt;}
.ls24{letter-spacing:115.584000pt;}
.ls16{letter-spacing:157.331200pt;}
.ls17{letter-spacing:157.376000pt;}
.ls2{letter-spacing:158.611200pt;}
.ls1{letter-spacing:158.656000pt;}
.ls1c{letter-spacing:165.779200pt;}
.ls1d{letter-spacing:165.824000pt;}
.ls27{letter-spacing:173.395200pt;}
.ls28{letter-spacing:173.440000pt;}
.ls31{letter-spacing:186.944000pt;}
.ls32{letter-spacing:188.224000pt;}
.ws6{word-spacing:-69.408000pt;}
.ws7{word-spacing:-54.086571pt;}
.ws12{word-spacing:-53.796971pt;}
.ws51{word-spacing:-53.721387pt;}
.ws5e{word-spacing:-53.668971pt;}
.ws4{word-spacing:-53.435904pt;}
.ws2{word-spacing:-53.406720pt;}
.ws58{word-spacing:-52.976853pt;}
.ws59{word-spacing:-52.930304pt;}
.ws3{word-spacing:-52.830720pt;}
.ws1d{word-spacing:-52.806571pt;}
.ws24{word-spacing:-48.766464pt;}
.ws25{word-spacing:-48.737280pt;}
.ws7b{word-spacing:-44.160000pt;}
.ws54{word-spacing:-44.107584pt;}
.ws56{word-spacing:-43.805184pt;}
.ws2e{word-spacing:-43.776000pt;}
.ws8{word-spacing:-36.509184pt;}
.ws2f{word-spacing:-36.123008pt;}
.ws30{word-spacing:-36.092160pt;}
.wse{word-spacing:-29.534720pt;}
.wsf{word-spacing:-29.345387pt;}
.ws31{word-spacing:-25.634688pt;}
.ws7c{word-spacing:-24.222720pt;}
.ws1{word-spacing:-21.888000pt;}
.ws15{word-spacing:-21.632000pt;}
.ws16{word-spacing:-15.221333pt;}
.ws52{word-spacing:-9.585920pt;}
.ws34{word-spacing:-3.549653pt;}
.ws5{word-spacing:-2.048000pt;}
.ws76{word-spacing:-1.893973pt;}
.ws26{word-spacing:-0.688213pt;}
.ws28{word-spacing:-0.656640pt;}
.ws2d{word-spacing:-0.533867pt;}
.ws2a{word-spacing:-0.464107pt;}
.ws41{word-spacing:-0.433152pt;}
.ws45{word-spacing:-0.403925pt;}
.ws78{word-spacing:-0.242347pt;}
.ws77{word-spacing:-0.179733pt;}
.ws4c{word-spacing:-0.143360pt;}
.wsb{word-spacing:-0.126592pt;}
.ws4d{word-spacing:-0.019925pt;}
.ws0{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.033408pt;}
.ws72{word-spacing:0.064000pt;}
.ws23{word-spacing:0.252544pt;}
.ws33{word-spacing:0.276480pt;}
.ws11{word-spacing:0.375552pt;}
.ws2c{word-spacing:0.384000pt;}
.ws7a{word-spacing:0.465536pt;}
.ws3d{word-spacing:0.522112pt;}
.ws68{word-spacing:0.629760pt;}
.ws75{word-spacing:0.746667pt;}
.ws73{word-spacing:0.768000pt;}
.ws55{word-spacing:0.778667pt;}
.ws27{word-spacing:0.815893pt;}
.ws2b{word-spacing:0.864000pt;}
.ws4b{word-spacing:1.035520pt;}
.ws57{word-spacing:1.107328pt;}
.ws32{word-spacing:1.136640pt;}
.ws5b{word-spacing:1.150080pt;}
.ws66{word-spacing:1.153408pt;}
.ws29{word-spacing:1.226773pt;}
.ws6b{word-spacing:1.403904pt;}
.wsd{word-spacing:1.404437pt;}
.ws37{word-spacing:1.510016pt;}
.ws9{word-spacing:1.708416pt;}
.ws5a{word-spacing:1.790720pt;}
.ws6a{word-spacing:1.868587pt;}
.ws20{word-spacing:1.904384pt;}
.ws74{word-spacing:2.112000pt;}
.ws1f{word-spacing:2.141824pt;}
.ws4f{word-spacing:2.236587pt;}
.ws69{word-spacing:2.246443pt;}
.ws14{word-spacing:2.261760pt;}
.ws61{word-spacing:2.378240pt;}
.ws79{word-spacing:2.481195pt;}
.ws6e{word-spacing:2.769920pt;}
.ws48{word-spacing:2.897536pt;}
.ws47{word-spacing:3.100587pt;}
.ws65{word-spacing:3.149120pt;}
.ws18{word-spacing:3.184384pt;}
.ws63{word-spacing:3.311360pt;}
.ws5c{word-spacing:3.349760pt;}
.ws6f{word-spacing:3.591680pt;}
.ws1b{word-spacing:3.607467pt;}
.ws6d{word-spacing:3.706347pt;}
.ws40{word-spacing:3.712427pt;}
.ws70{word-spacing:3.736747pt;}
.ws39{word-spacing:4.125440pt;}
.ws43{word-spacing:4.184747pt;}
.ws53{word-spacing:4.232853pt;}
.ws35{word-spacing:4.281003pt;}
.ws1c{word-spacing:4.355072pt;}
.ws3e{word-spacing:4.448000pt;}
.ws42{word-spacing:4.459435pt;}
.ws3c{word-spacing:4.529280pt;}
.ws1e{word-spacing:4.735104pt;}
.ws3a{word-spacing:4.736000pt;}
.ws44{word-spacing:4.758187pt;}
.ws1a{word-spacing:4.774400pt;}
.ws64{word-spacing:4.796587pt;}
.wsa{word-spacing:4.842667pt;}
.ws50{word-spacing:4.912107pt;}
.ws19{word-spacing:4.993280pt;}
.ws22{word-spacing:5.091755pt;}
.ws49{word-spacing:5.103531pt;}
.ws4a{word-spacing:5.303467pt;}
.wsc{word-spacing:5.382272pt;}
.ws5d{word-spacing:5.632427pt;}
.ws10{word-spacing:6.167723pt;}
.ws3f{word-spacing:6.168747pt;}
.ws13{word-spacing:6.209557pt;}
.ws36{word-spacing:6.221056pt;}
.ws17{word-spacing:6.259200pt;}
.ws21{word-spacing:6.353579pt;}
.ws46{word-spacing:6.374400pt;}
.ws4e{word-spacing:6.444800pt;}
.ws38{word-spacing:6.461867pt;}
.ws62{word-spacing:6.536640pt;}
.ws67{word-spacing:6.736640pt;}
.ws5f{word-spacing:6.787499pt;}
.ws6c{word-spacing:6.993920pt;}
.ws60{word-spacing:7.222699pt;}
.ws71{word-spacing:57.496747pt;}
._9{margin-left:-9199.242667pt;}
._1b{margin-left:-9192.564800pt;}
._15{margin-left:-24.683520pt;}
._11{margin-left:-21.779200pt;}
._10{margin-left:-14.242432pt;}
._14{margin-left:-13.113600pt;}
._e{margin-left:-11.097472pt;}
._c{margin-left:-9.903360pt;}
._f{margin-left:-8.432640pt;}
._16{margin-left:-7.498112pt;}
._1{margin-left:-6.576640pt;}
._23{margin-left:-5.576960pt;}
._6{margin-left:-4.512000pt;}
._a{margin-left:-3.279360pt;}
._2{margin-left:-1.879040pt;}
._4{margin-left:-0.904960pt;}
._0{width:1.728000pt;}
._3{width:2.816000pt;}
._b{width:3.987200pt;}
._5{width:4.951040pt;}
._d{width:5.866240pt;}
._18{width:7.572139pt;}
._22{width:27.817493pt;}
._24{width:32.493227pt;}
._1c{width:33.728853pt;}
._30{width:37.316309pt;}
._1e{width:38.298880pt;}
._2e{width:42.645653pt;}
._27{width:44.702592pt;}
._20{width:45.600427pt;}
._1f{width:47.011840pt;}
._31{width:48.005227pt;}
._2d{width:50.368981pt;}
._28{width:52.545024pt;}
._21{width:54.365312pt;}
._25{width:55.479595pt;}
._19{width:56.586603pt;}
._17{width:57.873920pt;}
._13{width:58.813867pt;}
._26{width:59.767339pt;}
._12{width:60.962517pt;}
._2b{width:175.377536pt;}
._29{width:176.692480pt;}
._2f{width:182.283520pt;}
._2a{width:186.944000pt;}
._2c{width:188.224000pt;}
._7{width:7353.258667pt;}
._1d{width:9291.893333pt;}
._1a{width:9298.292800pt;}
._8{width:9335.413333pt;}
.fs0{font-size:96.000000pt;}
.fs8{font-size:106.240000pt;}
.fse{font-size:106.368000pt;}
.fsd{font-size:149.760000pt;}
.fsc{font-size:149.888000pt;}
.fs7{font-size:160.128000pt;}
.fs2{font-size:192.000000pt;}
.fsb{font-size:192.128000pt;}
.fsa{font-size:213.760000pt;}
.fs9{font-size:213.888000pt;}
.fs3{font-size:234.240000pt;}
.fs4{font-size:234.368000pt;}
.fs10{font-size:266.240000pt;}
.fsf{font-size:266.368000pt;}
.fs5{font-size:288.000000pt;}
.fs6{font-size:288.128000pt;}
.fs1{font-size:469.760000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:15.968000pt;}
.y5{bottom:18.688000pt;}
.yc2{bottom:48.000000pt;}
.y3d{bottom:82.272000pt;}
.y43{bottom:84.032000pt;}
.y75{bottom:84.128000pt;}
.y6b{bottom:87.232000pt;}
.yd3{bottom:89.600000pt;}
.yd8{bottom:92.992000pt;}
.yf1{bottom:96.000000pt;}
.y4d{bottom:98.432000pt;}
.y49{bottom:106.432000pt;}
.ycb{bottom:108.800000pt;}
.y13d{bottom:108.992000pt;}
.y83{bottom:110.592000pt;}
.y3c{bottom:114.272000pt;}
.yac{bottom:114.432000pt;}
.y42{bottom:116.032000pt;}
.y3b{bottom:118.496000pt;}
.y6a{bottom:119.232000pt;}
.ya5{bottom:127.328000pt;}
.y13c{bottom:140.986667pt;}
.y7f{bottom:141.253333pt;}
.yf6{bottom:144.826667pt;}
.y106{bottom:147.066667pt;}
.y69{bottom:151.226667pt;}
.yaa{bottom:156.026667pt;}
.ya4{bottom:160.186667pt;}
.yd7{bottom:163.386667pt;}
.y12d{bottom:166.080000pt;}
.y3{bottom:168.066667pt;}
.y137{bottom:172.986667pt;}
.y48{bottom:180.986667pt;}
.y68{bottom:183.226667pt;}
.y12e{bottom:183.293333pt;}
.y129{bottom:183.333333pt;}
.y124{bottom:183.360000pt;}
.y11c{bottom:183.386667pt;}
.y117{bottom:183.426667pt;}
.yda{bottom:183.453333pt;}
.y10d{bottom:183.493333pt;}
.y82{bottom:184.826667pt;}
.y120{bottom:185.280000pt;}
.y95{bottom:188.986667pt;}
.y66{bottom:199.866667pt;}
.y19{bottom:200.933333pt;}
.yf5{bottom:212.026667pt;}
.y13b{bottom:212.986667pt;}
.y105{bottom:215.266667pt;}
.ya3{bottom:217.826667pt;}
.ye9{bottom:220.800000pt;}
.yb9{bottom:224.093333pt;}
.yd4{bottom:224.226667pt;}
.yd0{bottom:224.253333pt;}
.yca{bottom:224.293333pt;}
.yc1{bottom:224.346667pt;}
.ybb{bottom:224.386667pt;}
.ycf{bottom:240.000000pt;}
.yd6{bottom:243.426667pt;}
.y65{bottom:244.706667pt;}
.y13a{bottom:245.026667pt;}
.y4c{bottom:247.266667pt;}
.ya6{bottom:251.426667pt;}
.y33{bottom:253.506667pt;}
.y3a{bottom:255.266667pt;}
.y20{bottom:255.333333pt;}
.y81{bottom:259.426667pt;}
.y128{bottom:262.080000pt;}
.yf4{bottom:269.666667pt;}
.y18{bottom:271.333333pt;}
.ya9{bottom:275.426667pt;}
.y104{bottom:278.946667pt;}
.ya2{bottom:279.586667pt;}
.y59{bottom:284.706667pt;}
.y32{bottom:309.826667pt;}
.yd5{bottom:313.826667pt;}
.y136{bottom:317.666667pt;}
.y12c{bottom:320.573333pt;}
.yb{bottom:321.826667pt;}
.y139{bottom:324.066667pt;}
.y10b{bottom:325.466667pt;}
.yf3{bottom:327.266667pt;}
.y39{bottom:329.826667pt;}
.y94{bottom:333.666667pt;}
.ya1{bottom:336.866667pt;}
.y17{bottom:341.760000pt;}
.y103{bottom:343.266667pt;}
.y74{bottom:344.866667pt;}
.ye5{bottom:345.600000pt;}
.y58{bottom:346.146667pt;}
.y12f{bottom:349.373333pt;}
.yf2{bottom:356.093333pt;}
.yec{bottom:356.133333pt;}
.ye8{bottom:356.160000pt;}
.ye3{bottom:356.186667pt;}
.ydd{bottom:356.226667pt;}
.y111{bottom:356.253333pt;}
.y12b{bottom:378.173333pt;}
.y123{bottom:386.880000pt;}
.yc9{bottom:390.400000pt;}
.y135{bottom:392.253333pt;}
.yd2{bottom:393.853333pt;}
.yf0{bottom:394.493333pt;}
.y4b{bottom:396.093333pt;}
.ya0{bottom:398.653333pt;}
.y7e{bottom:400.253333pt;}
.y41{bottom:400.573333pt;}
.y47{bottom:404.093333pt;}
.y1f{bottom:404.160000pt;}
.y119{bottom:406.080000pt;}
.y57{bottom:407.933333pt;}
.y80{bottom:408.253333pt;}
.y102{bottom:411.133333pt;}
.y16{bottom:412.160000pt;}
.yea{bottom:413.733333pt;}
.ye6{bottom:413.760000pt;}
.ye1{bottom:413.786667pt;}
.ydc{bottom:413.826667pt;}
.y10f{bottom:413.853333pt;}
.y64{bottom:423.933333pt;}
.yce{bottom:435.493333pt;}
.ybe{bottom:435.546667pt;}
.y8f{bottom:438.720000pt;}
.y12a{bottom:445.413333pt;}
.yef{bottom:452.093333pt;}
.y7d{bottom:453.826667pt;}
.y2a{bottom:454.653333pt;}
.ya8{bottom:460.093333pt;}
.y9f{bottom:460.413333pt;}
.yd1{bottom:464.253333pt;}
.y56{bottom:465.533333pt;}
.yb7{bottom:465.853333pt;}
.y134{bottom:466.493333pt;}
.y73{bottom:468.093333pt;}
.ye0{bottom:470.400000pt;}
.ya{bottom:470.653333pt;}
.yab{bottom:474.493333pt;}
.y1e{bottom:474.560000pt;}
.y63{bottom:475.773333pt;}
.y38{bottom:478.653333pt;}
.y101{bottom:478.973333pt;}
.ybc{bottom:480.000000pt;}
.y93{bottom:482.493333pt;}
.y15{bottom:486.746667pt;}
.y8e{bottom:496.346667pt;}
.ycc{bottom:505.893333pt;}
.ybd{bottom:505.986667pt;}
.yee{bottom:509.733333pt;}
.y11e{bottom:511.680000pt;}
.y127{bottom:512.613333pt;}
.ya7{bottom:521.893333pt;}
.y7c{bottom:524.253333pt;}
.y31{bottom:524.733333pt;}
.y8a{bottom:525.786667pt;}
.y72{bottom:529.893333pt;}
.y114{bottom:530.880000pt;}
.y62{bottom:531.493333pt;}
.y29{bottom:533.093333pt;}
.y122{bottom:541.413333pt;}
.y100{bottom:543.013333pt;}
.y4a{bottom:544.933333pt;}
.yb6{bottom:545.893333pt;}
.y46{bottom:549.093333pt;}
.yae{bottom:552.933333pt;}
.y14{bottom:557.146667pt;}
.y125{bottom:570.240000pt;}
.yed{bottom:576.933333pt;}
.y61{bottom:583.333333pt;}
.y89{bottom:583.386667pt;}
.y10a{bottom:587.493333pt;}
.y8d{bottom:587.546667pt;}
.y55{bottom:588.773333pt;}
.y71{bottom:591.333333pt;}
.ydb{bottom:595.200000pt;}
.y7b{bottom:598.853333pt;}
.y121{bottom:599.040000pt;}
.yff{bottom:607.013333pt;}
.y11b{bottom:607.680000pt;}
.y30{bottom:611.173333pt;}
.yc0{bottom:611.200000pt;}
.y28{bottom:611.493333pt;}
.ycd{bottom:614.693333pt;}
.y9{bottom:619.493333pt;}
.y40{bottom:623.333333pt;}
.y1d{bottom:623.426667pt;}
.yb5{bottom:625.893333pt;}
.y37{bottom:627.493333pt;}
.y92{bottom:627.813333pt;}
.y126{bottom:627.840000pt;}
.y13{bottom:631.426667pt;}
.yeb{bottom:634.533333pt;}
.y98{bottom:637.733333pt;}
.y60{bottom:639.360000pt;}
.y9e{bottom:645.120000pt;}
.yc7{bottom:646.720000pt;}
.y109{bottom:648.960000pt;}
.y8c{bottom:649.026667pt;}
.y54{bottom:650.240000pt;}
.y10e{bottom:655.680000pt;}
.y133{bottom:681.920000pt;}
.y27{bottom:689.920000pt;}
.y3f{bottom:693.760000pt;}
.yc8{bottom:694.720000pt;}
.y5f{bottom:695.040000pt;}
.y11f{bottom:695.066667pt;}
.y2f{bottom:697.600000pt;}
.y36{bottom:697.920000pt;}
.y91{bottom:701.760000pt;}
.yb4{bottom:705.920000pt;}
.y12{bottom:705.986667pt;}
.y9d{bottom:706.560000pt;}
.y88{bottom:706.626667pt;}
.y108{bottom:710.720000pt;}
.y53{bottom:712.000000pt;}
.y70{bottom:714.560000pt;}
.yc5{bottom:717.120000pt;}
.y116{bottom:732.480000pt;}
.y22{bottom:738.946667pt;}
.yfe{bottom:743.040000pt;}
.y7a{bottom:747.680000pt;}
.y5e{bottom:751.040000pt;}
.y132{bottom:752.320000pt;}
.ye7{bottom:759.360000pt;}
.y26{bottom:760.320000pt;}
.yba{bottom:761.600000pt;}
.yc6{bottom:765.120000pt;}
.y8{bottom:768.320000pt;}
.y8b{bottom:768.413333pt;}
.y35{bottom:772.160000pt;}
.y1c{bottom:772.253333pt;}
.y97{bottom:776.320000pt;}
.y11{bottom:776.413333pt;}
.y2e{bottom:784.000000pt;}
.yb3{bottom:785.920000pt;}
.yc3{bottom:787.546667pt;}
.y11d{bottom:791.066667pt;}
.yfd{bottom:807.066667pt;}
.y79{bottom:818.080000pt;}
.y11a{bottom:819.866667pt;}
.ye4{bottom:826.586667pt;}
.y21{bottom:829.213333pt;}
.y9c{bottom:829.786667pt;}
.y87{bottom:829.853333pt;}
.y25{bottom:830.746667pt;}
.y107{bottom:833.946667pt;}
.y52{bottom:835.226667pt;}
.yc4{bottom:835.546667pt;}
.yb8{bottom:841.600000pt;}
.y34{bottom:842.586667pt;}
.y1b{bottom:842.653333pt;}
.y45{bottom:846.746667pt;}
.y67{bottom:846.880000pt;}
.y90{bottom:847.066667pt;}
.yad{bottom:850.586667pt;}
.y10{bottom:850.653333pt;}
.y112{bottom:857.280000pt;}
.y5d{bottom:862.746667pt;}
.yb2{bottom:865.946667pt;}
.y2d{bottom:870.426667pt;}
.yfc{bottom:875.226667pt;}
.ye2{bottom:884.186667pt;}
.y78{bottom:888.506667pt;}
.y9b{bottom:891.546667pt;}
.y86{bottom:891.613333pt;}
.yd9{bottom:892.800000pt;}
.y6f{bottom:895.386667pt;}
.y51{bottom:896.666667pt;}
.y131{bottom:901.146667pt;}
.y24{bottom:909.146667pt;}
.y2{bottom:910.466667pt;}
.ybf{bottom:915.546667pt;}
.y118{bottom:915.906667pt;}
.y7{bottom:917.146667pt;}
.y1a{bottom:917.253333pt;}
.y5c{bottom:918.426667pt;}
.y44{bottom:920.986667pt;}
.yf{bottom:921.093333pt;}
.yf8{bottom:925.253333pt;}
.yfb{bottom:939.266667pt;}
.y115{bottom:944.706667pt;}
.yb1{bottom:945.946667pt;}
.ydf{bottom:951.426667pt;}
.y9a{bottom:953.026667pt;}
.y85{bottom:953.093333pt;}
.y10c{bottom:953.280000pt;}
.y2c{bottom:956.866667pt;}
.y6e{bottom:957.186667pt;}
.y50{bottom:958.466667pt;}
.y5b{bottom:974.466667pt;}
.y138{bottom:979.266667pt;}
.y23{bottom:987.586667pt;}
.y3e{bottom:991.426667pt;}
.ye{bottom:991.493333pt;}
.y96{bottom:995.586667pt;}
.yf7{bottom:995.653333pt;}
.yfa{bottom:1003.266667pt;}
.yde{bottom:1009.026667pt;}
.y99{bottom:1014.786667pt;}
.y6d{bottom:1018.626667pt;}
.y4f{bottom:1019.906667pt;}
.yb0{bottom:1025.986667pt;}
.y77{bottom:1037.346667pt;}
.y113{bottom:1040.733333pt;}
.y2b{bottom:1043.266667pt;}
.y4{bottom:1047.773333pt;}
.y130{bottom:1049.666667pt;}
.y6{bottom:1066.013333pt;}
.yd{bottom:1066.080000pt;}
.y110{bottom:1069.533333pt;}
.yf9{bottom:1071.133333pt;}
.y6c{bottom:1076.253333pt;}
.y84{bottom:1076.320000pt;}
.y4e{bottom:1077.533333pt;}
.y5a{bottom:1082.013333pt;}
.yaf{bottom:1106.013333pt;}
.y76{bottom:1107.746667pt;}
.yc{bottom:1286.053333pt;}
.h11{height:80.406250pt;}
.h12{height:80.503125pt;}
.h1{height:86.578125pt;}
.ha{height:95.294375pt;}
.h29{height:95.813125pt;}
.h15{height:95.928562pt;}
.h5{height:97.458125pt;}
.h10{height:113.343750pt;}
.hf{height:113.440625pt;}
.h14{height:135.061875pt;}
.h21{height:139.874437pt;}
.h9{height:144.412312pt;}
.hb{height:170.533125pt;}
.h13{height:170.626312pt;}
.h3{height:173.156250pt;}
.he{height:173.271687pt;}
.hd{height:192.780625pt;}
.hc{height:192.896062pt;}
.h17{height:201.370000pt;}
.h16{height:201.466812pt;}
.h4{height:211.250625pt;}
.h6{height:211.366062pt;}
.h7{height:217.828125pt;}
.h8{height:217.924937pt;}
.h20{height:403.520000pt;}
.h2{height:423.655625pt;}
.h1e{height:432.320000pt;}
.h18{height:493.120000pt;}
.h25{height:537.920000pt;}
.h1f{height:643.520000pt;}
.h28{height:771.200000pt;}
.h26{height:784.320000pt;}
.h1d{height:793.920000pt;}
.h22{height:806.720000pt;}
.h24{height:893.120000pt;}
.h1c{height:944.320000pt;}
.h19{height:960.000000pt;}
.h1b{height:985.920000pt;}
.h23{height:1075.520000pt;}
.h27{height:1193.600000pt;}
.h1a{height:1392.000000pt;}
.h0{height:1440.000000pt;}
.w2{width:131.520000pt;}
.w5{width:333.120000pt;}
.w1{width:343.360000pt;}
.w9{width:564.480000pt;}
.w8{width:564.800000pt;}
.w4{width:605.120000pt;}
.w7{width:1013.760000pt;}
.w6{width:1199.680000pt;}
.w3{width:1520.640000pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x36{left:9.920000pt;}
.x1{left:16.000000pt;}
.x35{left:198.720000pt;}
.x4{left:208.573333pt;}
.x24{left:210.880000pt;}
.x3{left:213.506667pt;}
.xb{left:220.800000pt;}
.x5a{left:224.573333pt;}
.x1a{left:226.493333pt;}
.x1d{left:227.453333pt;}
.x2f{left:236.800000pt;}
.x51{left:244.733333pt;}
.x30{left:248.000000pt;}
.x1c{left:255.293333pt;}
.xc{left:258.560000pt;}
.x31{left:259.520000pt;}
.x59{left:263.360000pt;}
.x5{left:268.733333pt;}
.x10{left:272.960000pt;}
.x19{left:277.373333pt;}
.x1b{left:283.453333pt;}
.x32{left:288.640000pt;}
.xf{left:290.880000pt;}
.xd{left:297.920000pt;}
.xa{left:298.880000pt;}
.x28{left:304.573333pt;}
.x1e{left:306.173333pt;}
.xe{left:311.040000pt;}
.x4e{left:335.386667pt;}
.x27{left:337.213333pt;}
.x2e{left:358.400000pt;}
.x29{left:366.080000pt;}
.x56{left:370.560000pt;}
.x33{left:388.800000pt;}
.x2{left:405.920000pt;}
.x46{left:409.920000pt;}
.x12{left:461.093333pt;}
.x4a{left:464.026667pt;}
.x25{left:465.413333pt;}
.x2b{left:489.306667pt;}
.x4d{left:501.466667pt;}
.x11{left:505.306667pt;}
.x2a{left:539.546667pt;}
.x37{left:541.760000pt;}
.x34{left:563.226667pt;}
.x18{left:568.666667pt;}
.x58{left:637.146667pt;}
.x38{left:672.960000pt;}
.x45{left:753.346667pt;}
.x14{left:759.586667pt;}
.x26{left:779.840000pt;}
.x3b{left:781.826667pt;}
.x41{left:803.520000pt;}
.x2c{left:809.146667pt;}
.x3a{left:825.026667pt;}
.x40{left:827.586667pt;}
.x53{left:846.786667pt;}
.x39{left:855.746667pt;}
.x3c{left:897.026667pt;}
.x2d{left:954.973333pt;}
.x17{left:960.413333pt;}
.x55{left:1013.213333pt;}
.x3d{left:1017.053333pt;}
.x9{left:1019.933333pt;}
.x20{left:1041.026667pt;}
.x3e{left:1059.933333pt;}
.x48{left:1096.346667pt;}
.x21{left:1116.320000pt;}
.x42{left:1136.320000pt;}
.x52{left:1212.160000pt;}
.x1f{left:1227.613333pt;}
.x49{left:1264.226667pt;}
.x44{left:1274.786667pt;}
.x5b{left:1283.586667pt;}
.x50{left:1285.986667pt;}
.x43{left:1287.906667pt;}
.x7{left:1312.453333pt;}
.x4f{left:1338.466667pt;}
.x15{left:1342.693333pt;}
.x8{left:1348.613333pt;}
.x23{left:1403.333333pt;}
.x47{left:1442.786667pt;}
.x4c{left:1467.106667pt;}
.x5c{left:1503.133333pt;}
.x57{left:1535.773333pt;}
.x54{left:1538.653333pt;}
.x13{left:1556.573467pt;}
.x22{left:1599.840000pt;}
.x5f{left:1627.293333pt;}
.x4b{left:1777.253200pt;}
.x5e{left:1811.653333pt;}
.x5d{left:1832.453333pt;}
.x3f{left:2133.026667pt;}
.x16{left:2491.493333pt;}
.x6{left:2502.373333pt;}
}




    .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; }
  