
    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_c5b4c5e8d6a212d0663a68da.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b27781e8daa2f0687b3ae6d2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_7d7bc1d07bdaa6c41d295e75.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_fee057706f002a146edd8741.woff')format("woff");}.ff4{font-family:ff4;line-height:0.925781;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_b04696130fbcbff907cb0594.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_cdd46d744a7a3c18a85e4343.woff')format("woff");}.ff6{font-family:ff6;line-height:0.902344;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_3d0672764ed726fb7fc14a85.woff')format("woff");}.ff7{font-family:ff7;line-height:0.828000;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_279817e740f356b648becf7f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.939000;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_6d00c3256dc4ac0fdd521fca.woff')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_cc5ddec9b3f180cb474a0d61.woff')format("woff");}.ffa{font-family:ffa;line-height:1.082031;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_6c2a8e1607dd08ccd01f7b1e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.902344;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_63f5be89a24e975b5521bb76.woff')format("woff");}.ffc{font-family:ffc;line-height:0.922852;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_f3f7afd9d431f9f16be2a0c3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.833984;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_7d14876196a17e397b3ade78.woff')format("woff");}.ffe{font-family:ffe;line-height:0.912000;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);}
.v4{vertical-align:-16.830000px;}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.840000px;}
.v5{vertical-align:19.800000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:180.000000px;}
.ls8{letter-spacing:-12.000000px;}
.ls45{letter-spacing:-2.736000px;}
.ls63{letter-spacing:-2.340000px;}
.ls34{letter-spacing:-2.304000px;}
.ls33{letter-spacing:-2.088000px;}
.ls3c{letter-spacing:-1.872000px;}
.ls42{letter-spacing:-1.656000px;}
.ls1f{letter-spacing:-1.584000px;}
.ls30{letter-spacing:-1.512000px;}
.ls1e{letter-spacing:-1.440000px;}
.ls43{letter-spacing:-1.368000px;}
.ls44{letter-spacing:-1.296000px;}
.lsf{letter-spacing:-1.224000px;}
.ls22{letter-spacing:-1.152000px;}
.ls32{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-1.008000px;}
.ls64{letter-spacing:-0.960000px;}
.ls3d{letter-spacing:-0.936000px;}
.ls41{letter-spacing:-0.864000px;}
.lsa{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.648000px;}
.ls5f{letter-spacing:-0.600000px;}
.ls20{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.504000px;}
.ls58{letter-spacing:-0.480000px;}
.lsd{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.288000px;}
.ls4d{letter-spacing:-0.240000px;}
.ls31{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls56{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.216000px;}
.ls5a{letter-spacing:0.240000px;}
.ls47{letter-spacing:0.252000px;}
.ls27{letter-spacing:0.288000px;}
.ls60{letter-spacing:0.300000px;}
.ls62{letter-spacing:0.318000px;}
.ls4e{letter-spacing:0.343800px;}
.ls6{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.468000px;}
.ls57{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.576000px;}
.ls4c{letter-spacing:0.633600px;}
.ls10{letter-spacing:0.648000px;}
.ls15{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.780000px;}
.ls14{letter-spacing:0.792000px;}
.ls2f{letter-spacing:0.828000px;}
.ls12{letter-spacing:0.864000px;}
.ls36{letter-spacing:0.936000px;}
.ls26{letter-spacing:1.008000px;}
.ls37{letter-spacing:1.044000px;}
.ls25{letter-spacing:1.080000px;}
.ls3b{letter-spacing:1.152000px;}
.ls48{letter-spacing:1.224000px;}
.ls29{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.512000px;}
.ls38{letter-spacing:1.584000px;}
.ls49{letter-spacing:1.728000px;}
.ls39{letter-spacing:1.800000px;}
.ls3a{letter-spacing:1.836000px;}
.ls3e{letter-spacing:1.872000px;}
.ls40{letter-spacing:1.944000px;}
.ls2e{letter-spacing:2.016000px;}
.ls35{letter-spacing:2.088000px;}
.ls2d{letter-spacing:2.304000px;}
.ls24{letter-spacing:2.448000px;}
.ls23{letter-spacing:2.736000px;}
.ls59{letter-spacing:3.374400px;}
.ls54{letter-spacing:3.441600px;}
.ls4a{letter-spacing:3.600000px;}
.ls5e{letter-spacing:3.792000px;}
.ls46{letter-spacing:3.988800px;}
.ls3f{letter-spacing:4.176000px;}
.ls5c{letter-spacing:4.272000px;}
.ls4f{letter-spacing:4.384800px;}
.ls51{letter-spacing:4.392000px;}
.ls5b{letter-spacing:4.416000px;}
.ls50{letter-spacing:4.428000px;}
.ls61{letter-spacing:4.500000px;}
.ls4b{letter-spacing:4.752000px;}
.ls2{letter-spacing:4.920000px;}
.ls5d{letter-spacing:5.664000px;}
.ls0{letter-spacing:8.436000px;}
.ls13{letter-spacing:8.460000px;}
.ls4{letter-spacing:8.474220px;}
.ls55{letter-spacing:9.000000px;}
.ls2c{letter-spacing:9.144000px;}
.ls28{letter-spacing:9.540000px;}
.ls1b{letter-spacing:10.224000px;}
.ls1{letter-spacing:10.740000px;}
.ls52{letter-spacing:10.800000px;}
.ls53{letter-spacing:10.872000px;}
.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;}
}
.ws1{word-spacing:-29.640000px;}
.ws8a{word-spacing:-25.320000px;}
.ws37{word-spacing:-21.744000px;}
.ws35{word-spacing:-21.312000px;}
.ws81{word-spacing:-21.168000px;}
.ws43{word-spacing:-20.952000px;}
.ws44{word-spacing:-20.736000px;}
.ws78{word-spacing:-20.592000px;}
.ws77{word-spacing:-20.448000px;}
.ws45{word-spacing:-20.376000px;}
.ws2a{word-spacing:-20.304000px;}
.ws1c{word-spacing:-20.232000px;}
.ws36{word-spacing:-19.872000px;}
.ws29{word-spacing:-19.584000px;}
.ws46{word-spacing:-19.512000px;}
.ws56{word-spacing:-19.368000px;}
.ws67{word-spacing:-18.864000px;}
.ws55{word-spacing:-18.720000px;}
.ws80{word-spacing:-18.648000px;}
.ws86{word-spacing:-18.576000px;}
.ws19{word-spacing:-18.504000px;}
.ws38{word-spacing:-18.288000px;}
.ws76{word-spacing:-18.216000px;}
.ws65{word-spacing:-18.144000px;}
.ws89{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.928000px;}
.ws57{word-spacing:-17.856000px;}
.ws15{word-spacing:-17.784000px;}
.ws1a{word-spacing:-17.712000px;}
.ws16{word-spacing:-17.640000px;}
.ws68{word-spacing:-17.496000px;}
.ws47{word-spacing:-17.424000px;}
.ws17{word-spacing:-17.136000px;}
.ws85{word-spacing:-17.064000px;}
.ws2{word-spacing:-16.860000px;}
.ws74{word-spacing:-16.848000px;}
.ws8b{word-spacing:-16.704000px;}
.ws66{word-spacing:-16.632000px;}
.ws96{word-spacing:-15.120000px;}
.ws91{word-spacing:-14.820000px;}
.ws18{word-spacing:-14.162400px;}
.ws8c{word-spacing:-13.488000px;}
.ws1d{word-spacing:-11.856000px;}
.ws83{word-spacing:-11.802000px;}
.ws90{word-spacing:-11.328000px;}
.ws87{word-spacing:-10.800000px;}
.ws0{word-spacing:-8.496000px;}
.ws25{word-spacing:-8.460000px;}
.ws3a{word-spacing:-2.736000px;}
.ws39{word-spacing:-2.448000px;}
.ws50{word-spacing:-2.304000px;}
.ws51{word-spacing:-2.016000px;}
.ws70{word-spacing:-1.944000px;}
.ws62{word-spacing:-1.872000px;}
.ws5c{word-spacing:-1.800000px;}
.ws7f{word-spacing:-1.728000px;}
.ws5d{word-spacing:-1.584000px;}
.ws42{word-spacing:-1.512000px;}
.ws41{word-spacing:-1.440000px;}
.ws7e{word-spacing:-1.224000px;}
.ws58{word-spacing:-1.152000px;}
.ws3c{word-spacing:-1.080000px;}
.ws3d{word-spacing:-1.008000px;}
.ws53{word-spacing:-0.936000px;}
.ws24{word-spacing:-0.864000px;}
.ws26{word-spacing:-0.792000px;}
.wsa{word-spacing:-0.780000px;}
.ws32{word-spacing:-0.720000px;}
.ws1f{word-spacing:-0.648000px;}
.ws20{word-spacing:-0.576000px;}
.ws34{word-spacing:-0.504000px;}
.ws8f{word-spacing:-0.480000px;}
.ws33{word-spacing:-0.432000px;}
.ws12{word-spacing:-0.360000px;}
.ws98{word-spacing:-0.300000px;}
.ws3e{word-spacing:-0.288000px;}
.ws92{word-spacing:-0.240000px;}
.ws23{word-spacing:-0.216000px;}
.ws4a{word-spacing:-0.144000px;}
.ws11{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws27{word-spacing:0.072000px;}
.ws22{word-spacing:0.144000px;}
.ws4b{word-spacing:0.216000px;}
.ws84{word-spacing:0.240000px;}
.ws10{word-spacing:0.288000px;}
.wse{word-spacing:0.360000px;}
.wsf{word-spacing:0.432000px;}
.ws8d{word-spacing:0.480000px;}
.wsd{word-spacing:0.504000px;}
.ws2f{word-spacing:0.576000px;}
.ws95{word-spacing:0.600000px;}
.ws3b{word-spacing:0.648000px;}
.wsb{word-spacing:0.720000px;}
.wsc{word-spacing:0.792000px;}
.ws6a{word-spacing:0.864000px;}
.ws40{word-spacing:0.936000px;}
.ws9a{word-spacing:0.960000px;}
.ws30{word-spacing:1.008000px;}
.ws4c{word-spacing:1.080000px;}
.ws31{word-spacing:1.152000px;}
.ws13{word-spacing:1.224000px;}
.ws72{word-spacing:1.296000px;}
.ws71{word-spacing:1.368000px;}
.ws2c{word-spacing:1.440000px;}
.ws49{word-spacing:1.512000px;}
.ws2b{word-spacing:1.584000px;}
.ws6b{word-spacing:1.656000px;}
.ws5a{word-spacing:1.728000px;}
.ws7{word-spacing:1.800000px;}
.ws2e{word-spacing:1.872000px;}
.ws60{word-spacing:1.944000px;}
.ws4d{word-spacing:2.088000px;}
.ws3f{word-spacing:2.232000px;}
.ws4e{word-spacing:2.304000px;}
.ws97{word-spacing:2.340000px;}
.ws93{word-spacing:2.400000px;}
.ws48{word-spacing:2.520000px;}
.ws73{word-spacing:2.736000px;}
.ws6d{word-spacing:2.880000px;}
.ws8e{word-spacing:2.976000px;}
.ws7d{word-spacing:3.240000px;}
.ws9{word-spacing:3.312000px;}
.ws28{word-spacing:3.360000px;}
.ws94{word-spacing:3.720000px;}
.ws61{word-spacing:3.888000px;}
.ws59{word-spacing:4.032000px;}
.ws88{word-spacing:4.176000px;}
.ws3{word-spacing:4.200000px;}
.ws82{word-spacing:4.248000px;}
.ws69{word-spacing:4.392000px;}
.ws8{word-spacing:4.464000px;}
.ws99{word-spacing:4.500000px;}
.ws21{word-spacing:5.040000px;}
.ws4f{word-spacing:5.256000px;}
.ws2d{word-spacing:5.472000px;}
.ws6e{word-spacing:6.264000px;}
.ws7c{word-spacing:6.336000px;}
.ws6c{word-spacing:6.696000px;}
.ws7b{word-spacing:7.200000px;}
.ws5f{word-spacing:7.488000px;}
.ws75{word-spacing:7.704000px;}
.ws5e{word-spacing:8.208000px;}
.ws5{word-spacing:8.400000px;}
.ws52{word-spacing:8.928000px;}
.ws7a{word-spacing:9.000000px;}
.ws64{word-spacing:9.144000px;}
.ws54{word-spacing:9.576000px;}
.ws79{word-spacing:10.080000px;}
.ws6{word-spacing:12.000000px;}
.ws5b{word-spacing:12.384000px;}
.ws63{word-spacing:12.528000px;}
.ws6f{word-spacing:17.856000px;}
.ws1e{word-spacing:73.140000px;}
.ws14{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._d{margin-left:-19.887600px;}
._21{margin-left:-17.046000px;}
._1c{margin-left:-14.673600px;}
._20{margin-left:-11.793600px;}
._1f{margin-left:-10.771200px;}
._22{margin-left:-9.751200px;}
._14{margin-left:-8.580000px;}
._16{margin-left:-7.296000px;}
._1{margin-left:-5.964000px;}
._1b{margin-left:-4.959600px;}
._9{margin-left:-3.948000px;}
._a{margin-left:-2.284800px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._6{width:3.720000px;}
._5{width:4.848000px;}
._c{width:6.513600px;}
._4{width:8.088000px;}
._7{width:9.144000px;}
._b{width:10.346400px;}
._8{width:12.240000px;}
._13{width:13.362000px;}
._18{width:15.098400px;}
._19{width:16.272000px;}
._17{width:17.719200px;}
._1a{width:18.907200px;}
._1e{width:20.253600px;}
._1d{width:22.752000px;}
._15{width:31.646100px;}
._e{width:51.552000px;}
._11{width:73.056000px;}
._f{width:75.180000px;}
._10{width:77.304000px;}
._12{width:165.180000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y22{bottom:39.000000px;}
.y21{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y45{bottom:117.000000px;}
.yf2{bottom:118.104000px;}
.y69{bottom:118.110000px;}
.y187{bottom:118.194000px;}
.y8f{bottom:118.734000px;}
.y141{bottom:120.558000px;}
.y6b{bottom:121.207500px;}
.y1ac{bottom:122.622000px;}
.y20{bottom:123.968550px;}
.y10d{bottom:132.000000px;}
.y186{bottom:133.038000px;}
.y44{bottom:136.207500px;}
.y90{bottom:139.500000px;}
.yf1{bottom:141.198000px;}
.y68{bottom:141.204000px;}
.y1ab{bottom:141.372000px;}
.y8e{bottom:141.540000px;}
.y140{bottom:143.652000px;}
.y1f{bottom:146.468550px;}
.y10c{bottom:147.000000px;}
.y185{bottom:147.894000px;}
.y14f{bottom:151.207500px;}
.y1aa{bottom:160.122000px;}
.y43{bottom:162.000000px;}
.y184{bottom:162.738000px;}
.yf0{bottom:164.292000px;}
.y67{bottom:164.298000px;}
.y8d{bottom:164.346000px;}
.y10b{bottom:166.207500px;}
.y13f{bottom:166.746000px;}
.y1e{bottom:168.968550px;}
.y12c{bottom:174.114000px;}
.ycf{bottom:174.180000px;}
.yb1{bottom:174.498000px;}
.y183{bottom:177.582000px;}
.y1a9{bottom:178.872000px;}
.y42{bottom:184.500000px;}
.y14e{bottom:185.622000px;}
.y8c{bottom:187.152000px;}
.yef{bottom:187.386000px;}
.y66{bottom:187.392000px;}
.y13e{bottom:189.840000px;}
.y1d{bottom:191.468550px;}
.y182{bottom:192.426000px;}
.y12b{bottom:196.920000px;}
.yce{bottom:196.986000px;}
.yb0{bottom:197.304000px;}
.y1a8{bottom:197.622000px;}
.y14d{bottom:200.622000px;}
.y10a{bottom:203.544000px;}
.y41{bottom:207.000000px;}
.y181{bottom:207.270000px;}
.y8b{bottom:209.796000px;}
.yee{bottom:210.480000px;}
.y65{bottom:210.486000px;}
.y13d{bottom:212.934000px;}
.y1c{bottom:213.968550px;}
.y14c{bottom:215.622000px;}
.y1a7{bottom:216.372000px;}
.y12a{bottom:219.726000px;}
.ycd{bottom:219.792000px;}
.yaf{bottom:220.110000px;}
.y180{bottom:222.114000px;}
.y109{bottom:226.188000px;}
.y40{bottom:229.500000px;}
.y14b{bottom:230.622000px;}
.y8a{bottom:232.440000px;}
.yed{bottom:233.574000px;}
.y64{bottom:233.580000px;}
.y1a6{bottom:235.122000px;}
.y13c{bottom:235.884000px;}
.y1b{bottom:236.468550px;}
.y17f{bottom:236.958000px;}
.y129{bottom:242.532000px;}
.ycc{bottom:242.598000px;}
.yae{bottom:242.916000px;}
.y14a{bottom:245.622000px;}
.y108{bottom:248.832000px;}
.y17e{bottom:251.802000px;}
.y3f{bottom:252.000000px;}
.y1a5{bottom:253.872000px;}
.y89{bottom:255.084000px;}
.yec{bottom:256.668000px;}
.y63{bottom:256.674000px;}
.y13b{bottom:258.834000px;}
.y1a{bottom:258.968550px;}
.y149{bottom:260.622000px;}
.y128{bottom:265.338000px;}
.ycb{bottom:265.404000px;}
.yad{bottom:265.722000px;}
.y17d{bottom:266.646000px;}
.y107{bottom:271.476000px;}
.y1a4{bottom:272.622000px;}
.y3e{bottom:274.500000px;}
.y148{bottom:275.622000px;}
.y88{bottom:277.728000px;}
.yeb{bottom:279.762000px;}
.y62{bottom:279.768000px;}
.y19{bottom:281.468550px;}
.y17c{bottom:281.490000px;}
.y13a{bottom:281.784000px;}
.y127{bottom:288.144000px;}
.yca{bottom:288.210000px;}
.yac{bottom:288.528000px;}
.y147{bottom:290.622000px;}
.y1a3{bottom:291.372000px;}
.y106{bottom:294.120000px;}
.y17b{bottom:296.334000px;}
.y3d{bottom:297.000000px;}
.y87{bottom:300.372000px;}
.yea{bottom:302.856000px;}
.y61{bottom:302.862000px;}
.y18{bottom:303.968550px;}
.y139{bottom:304.734000px;}
.y146{bottom:305.622000px;}
.y1a2{bottom:310.122000px;}
.y126{bottom:310.950000px;}
.yc9{bottom:311.016000px;}
.y17a{bottom:311.178000px;}
.yab{bottom:311.334000px;}
.y105{bottom:316.764000px;}
.y3c{bottom:319.500000px;}
.y145{bottom:320.622000px;}
.y86{bottom:323.016000px;}
.ye9{bottom:325.950000px;}
.y60{bottom:325.956000px;}
.y179{bottom:326.022000px;}
.y17{bottom:326.468550px;}
.y138{bottom:327.684000px;}
.y1a1{bottom:328.872000px;}
.y125{bottom:333.756000px;}
.yc8{bottom:333.822000px;}
.yaa{bottom:334.140000px;}
.y144{bottom:335.622000px;}
.y104{bottom:339.408000px;}
.y178{bottom:340.866000px;}
.y3b{bottom:342.000000px;}
.y85{bottom:345.660000px;}
.y1a0{bottom:347.622000px;}
.y16{bottom:348.968550px;}
.ye8{bottom:349.044000px;}
.y5f{bottom:349.050000px;}
.y143{bottom:350.622000px;}
.y137{bottom:350.634000px;}
.y177{bottom:355.710000px;}
.y124{bottom:356.562000px;}
.yc7{bottom:356.628000px;}
.ya9{bottom:356.946000px;}
.y103{bottom:362.052000px;}
.y3a{bottom:364.500000px;}
.y142{bottom:365.622000px;}
.y19f{bottom:366.372000px;}
.y84{bottom:368.304000px;}
.y176{bottom:370.554000px;}
.y15{bottom:371.468550px;}
.ye7{bottom:372.138000px;}
.y5e{bottom:372.144000px;}
.y136{bottom:373.584000px;}
.y123{bottom:379.368000px;}
.yc6{bottom:379.434000px;}
.ya8{bottom:379.752000px;}
.y102{bottom:384.696000px;}
.y19e{bottom:385.122000px;}
.y175{bottom:385.398000px;}
.y39{bottom:387.000000px;}
.y83{bottom:390.948000px;}
.y14{bottom:393.968550px;}
.ye6{bottom:395.232000px;}
.y5d{bottom:395.238000px;}
.y135{bottom:396.534000px;}
.y174{bottom:400.242000px;}
.y122{bottom:402.174000px;}
.yc5{bottom:402.240000px;}
.ya7{bottom:402.558000px;}
.y19d{bottom:403.872000px;}
.y101{bottom:407.340000px;}
.y38{bottom:409.500000px;}
.y82{bottom:413.592000px;}
.y173{bottom:415.086000px;}
.y13{bottom:416.468550px;}
.ye5{bottom:418.326000px;}
.y5c{bottom:418.332000px;}
.y134{bottom:419.484000px;}
.y19c{bottom:422.622000px;}
.y121{bottom:424.980000px;}
.yc4{bottom:425.046000px;}
.ya6{bottom:425.364000px;}
.y1be{bottom:428.250000px;}
.y172{bottom:429.930000px;}
.y100{bottom:429.984000px;}
.y37{bottom:432.000000px;}
.y81{bottom:436.236000px;}
.y12{bottom:438.968550px;}
.y19b{bottom:441.372000px;}
.ye4{bottom:441.420000px;}
.y5b{bottom:441.426000px;}
.y133{bottom:442.434000px;}
.y171{bottom:444.774000px;}
.y1bd{bottom:447.000000px;}
.y120{bottom:447.786000px;}
.yc3{bottom:447.852000px;}
.ya5{bottom:448.170000px;}
.yff{bottom:452.628000px;}
.y36{bottom:454.500000px;}
.y80{bottom:459.042000px;}
.y170{bottom:459.618000px;}
.y11{bottom:461.468550px;}
.ye3{bottom:464.514000px;}
.y5a{bottom:464.520000px;}
.y132{bottom:465.384000px;}
.y1bc{bottom:465.750000px;}
.y19a{bottom:466.500000px;}
.y11f{bottom:470.592000px;}
.yc2{bottom:470.658000px;}
.ya4{bottom:470.976000px;}
.y16f{bottom:474.462000px;}
.yfe{bottom:475.272000px;}
.y35{bottom:477.000000px;}
.y7f{bottom:481.848000px;}
.y10{bottom:483.968550px;}
.y199{bottom:484.500000px;}
.ye2{bottom:487.608000px;}
.y59{bottom:487.614000px;}
.y131{bottom:488.334000px;}
.y16e{bottom:489.306000px;}
.y11e{bottom:493.398000px;}
.yc1{bottom:493.464000px;}
.ya3{bottom:493.782000px;}
.yfd{bottom:497.916000px;}
.y34{bottom:499.500000px;}
.y16d{bottom:504.150000px;}
.y7e{bottom:504.654000px;}
.yf{bottom:506.468550px;}
.ye1{bottom:510.702000px;}
.y58{bottom:510.708000px;}
.y130{bottom:511.284000px;}
.y1bb{bottom:514.500000px;}
.y11d{bottom:516.204000px;}
.yc0{bottom:516.270000px;}
.ya2{bottom:516.588000px;}
.y16c{bottom:518.994000px;}
.yfc{bottom:520.560000px;}
.y6a{bottom:522.000000px;}
.y7d{bottom:527.460000px;}
.ye{bottom:528.968550px;}
.y198{bottom:529.500000px;}
.ye0{bottom:533.796000px;}
.y57{bottom:533.802000px;}
.y16b{bottom:533.838000px;}
.y12f{bottom:534.234000px;}
.y11c{bottom:539.010000px;}
.ybf{bottom:539.076000px;}
.ya1{bottom:539.394000px;}
.yfb{bottom:543.204000px;}
.y33{bottom:544.500000px;}
.y16a{bottom:548.682000px;}
.y7c{bottom:550.266000px;}
.yd{bottom:551.468550px;}
.y1ba{bottom:555.750000px;}
.ydf{bottom:556.890000px;}
.y56{bottom:556.896000px;}
.y12e{bottom:557.184000px;}
.y197{bottom:559.500000px;}
.y11b{bottom:561.816000px;}
.ybe{bottom:561.882000px;}
.ya0{bottom:562.110000px;}
.y169{bottom:563.526000px;}
.yfa{bottom:565.848000px;}
.y32{bottom:567.000000px;}
.y7b{bottom:573.072000px;}
.yc{bottom:573.968550px;}
.y196{bottom:574.500000px;}
.y168{bottom:578.370000px;}
.yde{bottom:579.984000px;}
.y55{bottom:579.990000px;}
.y12d{bottom:580.134000px;}
.y11a{bottom:584.622000px;}
.ybd{bottom:584.688000px;}
.y9f{bottom:584.916000px;}
.yf9{bottom:588.492000px;}
.y31{bottom:589.500000px;}
.y167{bottom:593.214000px;}
.y1b9{bottom:593.250000px;}
.y7a{bottom:595.878000px;}
.ya{bottom:596.468550px;}
.ydd{bottom:603.078000px;}
.y54{bottom:603.084000px;}
.y195{bottom:604.500000px;}
.y119{bottom:607.428000px;}
.ybc{bottom:607.494000px;}
.y9e{bottom:607.722000px;}
.y166{bottom:608.058000px;}
.yf8{bottom:611.136000px;}
.y30{bottom:612.000000px;}
.y79{bottom:618.684000px;}
.yb{bottom:618.968550px;}
.y194{bottom:619.500000px;}
.y165{bottom:622.902000px;}
.ydc{bottom:626.172000px;}
.y53{bottom:626.178000px;}
.ybb{bottom:630.222000px;}
.y118{bottom:630.234000px;}
.y9d{bottom:630.528000px;}
.y1b8{bottom:630.750000px;}
.yf7{bottom:633.780000px;}
.y2f{bottom:634.500000px;}
.y164{bottom:637.746000px;}
.y78{bottom:641.490000px;}
.ydb{bottom:649.266000px;}
.y52{bottom:649.272000px;}
.y193{bottom:649.500000px;}
.y163{bottom:652.590000px;}
.yba{bottom:653.028000px;}
.y117{bottom:653.040000px;}
.y9c{bottom:653.334000px;}
.yf6{bottom:656.424000px;}
.y2e{bottom:657.000000px;}
.y77{bottom:664.296000px;}
.y192{bottom:664.500000px;}
.y162{bottom:667.434000px;}
.y1b7{bottom:668.250000px;}
.yda{bottom:672.360000px;}
.y51{bottom:672.366000px;}
.yb9{bottom:675.834000px;}
.y116{bottom:675.846000px;}
.y9b{bottom:676.140000px;}
.yf5{bottom:679.068000px;}
.y2d{bottom:679.500000px;}
.y161{bottom:682.278000px;}
.y9{bottom:686.468550px;}
.y1b6{bottom:687.000000px;}
.y76{bottom:687.102000px;}
.y191{bottom:694.500000px;}
.yd9{bottom:695.454000px;}
.y50{bottom:695.460000px;}
.y160{bottom:697.122000px;}
.yb8{bottom:698.640000px;}
.y115{bottom:698.652000px;}
.y9a{bottom:698.946000px;}
.yf4{bottom:701.712000px;}
.y2c{bottom:702.000000px;}
.y8{bottom:705.218550px;}
.y1b5{bottom:705.750000px;}
.y190{bottom:709.500000px;}
.y75{bottom:709.908000px;}
.y15f{bottom:711.966000px;}
.yd8{bottom:718.548000px;}
.y4f{bottom:718.554000px;}
.yb7{bottom:721.446000px;}
.y114{bottom:721.458000px;}
.y99{bottom:721.752000px;}
.yf3{bottom:724.356000px;}
.y2b{bottom:724.500000px;}
.y15e{bottom:726.810000px;}
.y74{bottom:732.714000px;}
.y18f{bottom:739.500000px;}
.yd7{bottom:741.642000px;}
.y4e{bottom:741.648000px;}
.y15d{bottom:741.654000px;}
.y1b4{bottom:743.250000px;}
.yb6{bottom:744.252000px;}
.y113{bottom:744.264000px;}
.y98{bottom:744.558000px;}
.y2a{bottom:747.000000px;}
.y7{bottom:747.354300px;}
.y18e{bottom:754.500000px;}
.y73{bottom:755.520000px;}
.y15c{bottom:756.498000px;}
.y1b3{bottom:762.000000px;}
.yd6{bottom:764.736000px;}
.y4d{bottom:764.742000px;}
.yb5{bottom:767.058000px;}
.y112{bottom:767.070000px;}
.y97{bottom:767.364000px;}
.y29{bottom:769.500000px;}
.y6{bottom:769.854300px;}
.y15b{bottom:771.342000px;}
.y72{bottom:778.326000px;}
.y1b2{bottom:780.750000px;}
.y18d{bottom:784.500000px;}
.y15a{bottom:786.186000px;}
.yd5{bottom:787.830000px;}
.y4c{bottom:787.836000px;}
.yb4{bottom:789.864000px;}
.y111{bottom:789.876000px;}
.y96{bottom:790.170000px;}
.y28{bottom:792.000000px;}
.y5{bottom:792.354300px;}
.y18c{bottom:799.500000px;}
.y159{bottom:801.030000px;}
.y71{bottom:801.132000px;}
.yd4{bottom:810.924000px;}
.y4b{bottom:810.930000px;}
.yb3{bottom:812.670000px;}
.y110{bottom:812.682000px;}
.y95{bottom:812.976000px;}
.y27{bottom:814.500000px;}
.y158{bottom:815.886000px;}
.y1b1{bottom:818.250000px;}
.y70{bottom:823.938000px;}
.y18b{bottom:829.500000px;}
.y157{bottom:830.730000px;}
.yd3{bottom:834.018000px;}
.y4a{bottom:834.024000px;}
.yb2{bottom:835.476000px;}
.y10f{bottom:835.488000px;}
.y94{bottom:835.782000px;}
.y26{bottom:837.000000px;}
.y18a{bottom:844.500000px;}
.y156{bottom:845.574000px;}
.y1b0{bottom:855.750000px;}
.yd2{bottom:857.112000px;}
.y49{bottom:857.118000px;}
.y6f{bottom:858.282000px;}
.y10e{bottom:858.294000px;}
.y93{bottom:858.588000px;}
.y4{bottom:859.500000px;}
.y155{bottom:860.418000px;}
.y189{bottom:874.500000px;}
.y154{bottom:875.262000px;}
.yd1{bottom:880.206000px;}
.y48{bottom:880.212000px;}
.y6e{bottom:881.088000px;}
.y92{bottom:881.394000px;}
.y25{bottom:882.000000px;}
.y3{bottom:889.500000px;}
.y153{bottom:890.118000px;}
.y1af{bottom:893.250000px;}
.yd0{bottom:903.300000px;}
.y47{bottom:903.306000px;}
.y6d{bottom:903.894000px;}
.y91{bottom:904.200000px;}
.y24{bottom:904.500000px;}
.y152{bottom:904.962000px;}
.y1ae{bottom:912.000000px;}
.y2{bottom:919.500000px;}
.y151{bottom:919.806000px;}
.y46{bottom:926.400000px;}
.y6c{bottom:926.700000px;}
.y23{bottom:927.000000px;}
.y1ad{bottom:930.750000px;}
.y188{bottom:934.500000px;}
.y150{bottom:934.650000px;}
.ha{height:24.630908px;}
.hd{height:30.313623px;}
.h12{height:39.072000px;}
.h11{height:39.984000px;}
.h9{height:39.990234px;}
.hb{height:40.757812px;}
.h1{height:41.396484px;}
.h10{height:43.190400px;}
.h5{height:47.988281px;}
.h3{height:49.200000px;}
.h4{height:49.675781px;}
.h6{height:50.947266px;}
.h8{height:61.136719px;}
.hc{height:66.555703px;}
.hf{height:66.603703px;}
.he{height:66.915703px;}
.h2{height:101.894531px;}
.h7{height:296.679600px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x6{left:82.381950px;}
.x8{left:103.645950px;}
.x2{left:112.500000px;}
.x7{left:127.381950px;}
.x5{left:135.000000px;}
.x9{left:148.641750px;}
.x3{left:155.412000px;}
.xa{left:180.495000px;}
.x1{left:625.781250px;}
@media print{
.v4{vertical-align:-14.960000pt;}
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.080000pt;}
.v5{vertical-align:17.600000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:160.000000pt;}
.ls8{letter-spacing:-10.666667pt;}
.ls45{letter-spacing:-2.432000pt;}
.ls63{letter-spacing:-2.080000pt;}
.ls34{letter-spacing:-2.048000pt;}
.ls33{letter-spacing:-1.856000pt;}
.ls3c{letter-spacing:-1.664000pt;}
.ls42{letter-spacing:-1.472000pt;}
.ls1f{letter-spacing:-1.408000pt;}
.ls30{letter-spacing:-1.344000pt;}
.ls1e{letter-spacing:-1.280000pt;}
.ls43{letter-spacing:-1.216000pt;}
.ls44{letter-spacing:-1.152000pt;}
.lsf{letter-spacing:-1.088000pt;}
.ls22{letter-spacing:-1.024000pt;}
.ls32{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.896000pt;}
.ls64{letter-spacing:-0.853333pt;}
.ls3d{letter-spacing:-0.832000pt;}
.ls41{letter-spacing:-0.768000pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls5f{letter-spacing:-0.533333pt;}
.ls20{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls58{letter-spacing:-0.426667pt;}
.lsd{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls4d{letter-spacing:-0.213333pt;}
.ls31{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls56{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls5a{letter-spacing:0.213333pt;}
.ls47{letter-spacing:0.224000pt;}
.ls27{letter-spacing:0.256000pt;}
.ls60{letter-spacing:0.266667pt;}
.ls62{letter-spacing:0.282667pt;}
.ls4e{letter-spacing:0.305600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.416000pt;}
.ls57{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.512000pt;}
.ls4c{letter-spacing:0.563200pt;}
.ls10{letter-spacing:0.576000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.693333pt;}
.ls14{letter-spacing:0.704000pt;}
.ls2f{letter-spacing:0.736000pt;}
.ls12{letter-spacing:0.768000pt;}
.ls36{letter-spacing:0.832000pt;}
.ls26{letter-spacing:0.896000pt;}
.ls37{letter-spacing:0.928000pt;}
.ls25{letter-spacing:0.960000pt;}
.ls3b{letter-spacing:1.024000pt;}
.ls48{letter-spacing:1.088000pt;}
.ls29{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.344000pt;}
.ls38{letter-spacing:1.408000pt;}
.ls49{letter-spacing:1.536000pt;}
.ls39{letter-spacing:1.600000pt;}
.ls3a{letter-spacing:1.632000pt;}
.ls3e{letter-spacing:1.664000pt;}
.ls40{letter-spacing:1.728000pt;}
.ls2e{letter-spacing:1.792000pt;}
.ls35{letter-spacing:1.856000pt;}
.ls2d{letter-spacing:2.048000pt;}
.ls24{letter-spacing:2.176000pt;}
.ls23{letter-spacing:2.432000pt;}
.ls59{letter-spacing:2.999467pt;}
.ls54{letter-spacing:3.059200pt;}
.ls4a{letter-spacing:3.200000pt;}
.ls5e{letter-spacing:3.370667pt;}
.ls46{letter-spacing:3.545600pt;}
.ls3f{letter-spacing:3.712000pt;}
.ls5c{letter-spacing:3.797333pt;}
.ls4f{letter-spacing:3.897600pt;}
.ls51{letter-spacing:3.904000pt;}
.ls5b{letter-spacing:3.925333pt;}
.ls50{letter-spacing:3.936000pt;}
.ls61{letter-spacing:4.000000pt;}
.ls4b{letter-spacing:4.224000pt;}
.ls2{letter-spacing:4.373333pt;}
.ls5d{letter-spacing:5.034667pt;}
.ls0{letter-spacing:7.498667pt;}
.ls13{letter-spacing:7.520000pt;}
.ls4{letter-spacing:7.532640pt;}
.ls55{letter-spacing:8.000000pt;}
.ls2c{letter-spacing:8.128000pt;}
.ls28{letter-spacing:8.480000pt;}
.ls1b{letter-spacing:9.088000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls52{letter-spacing:9.600000pt;}
.ls53{letter-spacing:9.664000pt;}
.ws1{word-spacing:-26.346667pt;}
.ws8a{word-spacing:-22.506667pt;}
.ws37{word-spacing:-19.328000pt;}
.ws35{word-spacing:-18.944000pt;}
.ws81{word-spacing:-18.816000pt;}
.ws43{word-spacing:-18.624000pt;}
.ws44{word-spacing:-18.432000pt;}
.ws78{word-spacing:-18.304000pt;}
.ws77{word-spacing:-18.176000pt;}
.ws45{word-spacing:-18.112000pt;}
.ws2a{word-spacing:-18.048000pt;}
.ws1c{word-spacing:-17.984000pt;}
.ws36{word-spacing:-17.664000pt;}
.ws29{word-spacing:-17.408000pt;}
.ws46{word-spacing:-17.344000pt;}
.ws56{word-spacing:-17.216000pt;}
.ws67{word-spacing:-16.768000pt;}
.ws55{word-spacing:-16.640000pt;}
.ws80{word-spacing:-16.576000pt;}
.ws86{word-spacing:-16.512000pt;}
.ws19{word-spacing:-16.448000pt;}
.ws38{word-spacing:-16.256000pt;}
.ws76{word-spacing:-16.192000pt;}
.ws65{word-spacing:-16.128000pt;}
.ws89{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.936000pt;}
.ws57{word-spacing:-15.872000pt;}
.ws15{word-spacing:-15.808000pt;}
.ws1a{word-spacing:-15.744000pt;}
.ws16{word-spacing:-15.680000pt;}
.ws68{word-spacing:-15.552000pt;}
.ws47{word-spacing:-15.488000pt;}
.ws17{word-spacing:-15.232000pt;}
.ws85{word-spacing:-15.168000pt;}
.ws2{word-spacing:-14.986667pt;}
.ws74{word-spacing:-14.976000pt;}
.ws8b{word-spacing:-14.848000pt;}
.ws66{word-spacing:-14.784000pt;}
.ws96{word-spacing:-13.440000pt;}
.ws91{word-spacing:-13.173333pt;}
.ws18{word-spacing:-12.588800pt;}
.ws8c{word-spacing:-11.989333pt;}
.ws1d{word-spacing:-10.538667pt;}
.ws83{word-spacing:-10.490667pt;}
.ws90{word-spacing:-10.069333pt;}
.ws87{word-spacing:-9.600000pt;}
.ws0{word-spacing:-7.552000pt;}
.ws25{word-spacing:-7.520000pt;}
.ws3a{word-spacing:-2.432000pt;}
.ws39{word-spacing:-2.176000pt;}
.ws50{word-spacing:-2.048000pt;}
.ws51{word-spacing:-1.792000pt;}
.ws70{word-spacing:-1.728000pt;}
.ws62{word-spacing:-1.664000pt;}
.ws5c{word-spacing:-1.600000pt;}
.ws7f{word-spacing:-1.536000pt;}
.ws5d{word-spacing:-1.408000pt;}
.ws42{word-spacing:-1.344000pt;}
.ws41{word-spacing:-1.280000pt;}
.ws7e{word-spacing:-1.088000pt;}
.ws58{word-spacing:-1.024000pt;}
.ws3c{word-spacing:-0.960000pt;}
.ws3d{word-spacing:-0.896000pt;}
.ws53{word-spacing:-0.832000pt;}
.ws24{word-spacing:-0.768000pt;}
.ws26{word-spacing:-0.704000pt;}
.wsa{word-spacing:-0.693333pt;}
.ws32{word-spacing:-0.640000pt;}
.ws1f{word-spacing:-0.576000pt;}
.ws20{word-spacing:-0.512000pt;}
.ws34{word-spacing:-0.448000pt;}
.ws8f{word-spacing:-0.426667pt;}
.ws33{word-spacing:-0.384000pt;}
.ws12{word-spacing:-0.320000pt;}
.ws98{word-spacing:-0.266667pt;}
.ws3e{word-spacing:-0.256000pt;}
.ws92{word-spacing:-0.213333pt;}
.ws23{word-spacing:-0.192000pt;}
.ws4a{word-spacing:-0.128000pt;}
.ws11{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws27{word-spacing:0.064000pt;}
.ws22{word-spacing:0.128000pt;}
.ws4b{word-spacing:0.192000pt;}
.ws84{word-spacing:0.213333pt;}
.ws10{word-spacing:0.256000pt;}
.wse{word-spacing:0.320000pt;}
.wsf{word-spacing:0.384000pt;}
.ws8d{word-spacing:0.426667pt;}
.wsd{word-spacing:0.448000pt;}
.ws2f{word-spacing:0.512000pt;}
.ws95{word-spacing:0.533333pt;}
.ws3b{word-spacing:0.576000pt;}
.wsb{word-spacing:0.640000pt;}
.wsc{word-spacing:0.704000pt;}
.ws6a{word-spacing:0.768000pt;}
.ws40{word-spacing:0.832000pt;}
.ws9a{word-spacing:0.853333pt;}
.ws30{word-spacing:0.896000pt;}
.ws4c{word-spacing:0.960000pt;}
.ws31{word-spacing:1.024000pt;}
.ws13{word-spacing:1.088000pt;}
.ws72{word-spacing:1.152000pt;}
.ws71{word-spacing:1.216000pt;}
.ws2c{word-spacing:1.280000pt;}
.ws49{word-spacing:1.344000pt;}
.ws2b{word-spacing:1.408000pt;}
.ws6b{word-spacing:1.472000pt;}
.ws5a{word-spacing:1.536000pt;}
.ws7{word-spacing:1.600000pt;}
.ws2e{word-spacing:1.664000pt;}
.ws60{word-spacing:1.728000pt;}
.ws4d{word-spacing:1.856000pt;}
.ws3f{word-spacing:1.984000pt;}
.ws4e{word-spacing:2.048000pt;}
.ws97{word-spacing:2.080000pt;}
.ws93{word-spacing:2.133333pt;}
.ws48{word-spacing:2.240000pt;}
.ws73{word-spacing:2.432000pt;}
.ws6d{word-spacing:2.560000pt;}
.ws8e{word-spacing:2.645333pt;}
.ws7d{word-spacing:2.880000pt;}
.ws9{word-spacing:2.944000pt;}
.ws28{word-spacing:2.986667pt;}
.ws94{word-spacing:3.306667pt;}
.ws61{word-spacing:3.456000pt;}
.ws59{word-spacing:3.584000pt;}
.ws88{word-spacing:3.712000pt;}
.ws3{word-spacing:3.733333pt;}
.ws82{word-spacing:3.776000pt;}
.ws69{word-spacing:3.904000pt;}
.ws8{word-spacing:3.968000pt;}
.ws99{word-spacing:4.000000pt;}
.ws21{word-spacing:4.480000pt;}
.ws4f{word-spacing:4.672000pt;}
.ws2d{word-spacing:4.864000pt;}
.ws6e{word-spacing:5.568000pt;}
.ws7c{word-spacing:5.632000pt;}
.ws6c{word-spacing:5.952000pt;}
.ws7b{word-spacing:6.400000pt;}
.ws5f{word-spacing:6.656000pt;}
.ws75{word-spacing:6.848000pt;}
.ws5e{word-spacing:7.296000pt;}
.ws5{word-spacing:7.466667pt;}
.ws52{word-spacing:7.936000pt;}
.ws7a{word-spacing:8.000000pt;}
.ws64{word-spacing:8.128000pt;}
.ws54{word-spacing:8.512000pt;}
.ws79{word-spacing:8.960000pt;}
.ws6{word-spacing:10.666667pt;}
.ws5b{word-spacing:11.008000pt;}
.ws63{word-spacing:11.136000pt;}
.ws6f{word-spacing:15.872000pt;}
.ws1e{word-spacing:65.013333pt;}
.ws14{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._d{margin-left:-17.677867pt;}
._21{margin-left:-15.152000pt;}
._1c{margin-left:-13.043200pt;}
._20{margin-left:-10.483200pt;}
._1f{margin-left:-9.574400pt;}
._22{margin-left:-8.667733pt;}
._14{margin-left:-7.626667pt;}
._16{margin-left:-6.485333pt;}
._1{margin-left:-5.301333pt;}
._1b{margin-left:-4.408533pt;}
._9{margin-left:-3.509333pt;}
._a{margin-left:-2.030933pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._6{width:3.306667pt;}
._5{width:4.309333pt;}
._c{width:5.789867pt;}
._4{width:7.189333pt;}
._7{width:8.128000pt;}
._b{width:9.196800pt;}
._8{width:10.880000pt;}
._13{width:11.877333pt;}
._18{width:13.420800pt;}
._19{width:14.464000pt;}
._17{width:15.750400pt;}
._1a{width:16.806400pt;}
._1e{width:18.003200pt;}
._1d{width:20.224000pt;}
._15{width:28.129867pt;}
._e{width:45.824000pt;}
._11{width:64.938667pt;}
._f{width:66.826667pt;}
._10{width:68.714667pt;}
._12{width:146.826667pt;}
.fs8{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:34.666667pt;}
.y21{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y45{bottom:104.000000pt;}
.yf2{bottom:104.981333pt;}
.y69{bottom:104.986667pt;}
.y187{bottom:105.061333pt;}
.y8f{bottom:105.541333pt;}
.y141{bottom:107.162667pt;}
.y6b{bottom:107.740000pt;}
.y1ac{bottom:108.997333pt;}
.y20{bottom:110.194267pt;}
.y10d{bottom:117.333333pt;}
.y186{bottom:118.256000pt;}
.y44{bottom:121.073333pt;}
.y90{bottom:124.000000pt;}
.yf1{bottom:125.509333pt;}
.y68{bottom:125.514667pt;}
.y1ab{bottom:125.664000pt;}
.y8e{bottom:125.813333pt;}
.y140{bottom:127.690667pt;}
.y1f{bottom:130.194267pt;}
.y10c{bottom:130.666667pt;}
.y185{bottom:131.461333pt;}
.y14f{bottom:134.406667pt;}
.y1aa{bottom:142.330667pt;}
.y43{bottom:144.000000pt;}
.y184{bottom:144.656000pt;}
.yf0{bottom:146.037333pt;}
.y67{bottom:146.042667pt;}
.y8d{bottom:146.085333pt;}
.y10b{bottom:147.740000pt;}
.y13f{bottom:148.218667pt;}
.y1e{bottom:150.194267pt;}
.y12c{bottom:154.768000pt;}
.ycf{bottom:154.826667pt;}
.yb1{bottom:155.109333pt;}
.y183{bottom:157.850667pt;}
.y1a9{bottom:158.997333pt;}
.y42{bottom:164.000000pt;}
.y14e{bottom:164.997333pt;}
.y8c{bottom:166.357333pt;}
.yef{bottom:166.565333pt;}
.y66{bottom:166.570667pt;}
.y13e{bottom:168.746667pt;}
.y1d{bottom:170.194267pt;}
.y182{bottom:171.045333pt;}
.y12b{bottom:175.040000pt;}
.yce{bottom:175.098667pt;}
.yb0{bottom:175.381333pt;}
.y1a8{bottom:175.664000pt;}
.y14d{bottom:178.330667pt;}
.y10a{bottom:180.928000pt;}
.y41{bottom:184.000000pt;}
.y181{bottom:184.240000pt;}
.y8b{bottom:186.485333pt;}
.yee{bottom:187.093333pt;}
.y65{bottom:187.098667pt;}
.y13d{bottom:189.274667pt;}
.y1c{bottom:190.194267pt;}
.y14c{bottom:191.664000pt;}
.y1a7{bottom:192.330667pt;}
.y12a{bottom:195.312000pt;}
.ycd{bottom:195.370667pt;}
.yaf{bottom:195.653333pt;}
.y180{bottom:197.434667pt;}
.y109{bottom:201.056000pt;}
.y40{bottom:204.000000pt;}
.y14b{bottom:204.997333pt;}
.y8a{bottom:206.613333pt;}
.yed{bottom:207.621333pt;}
.y64{bottom:207.626667pt;}
.y1a6{bottom:208.997333pt;}
.y13c{bottom:209.674667pt;}
.y1b{bottom:210.194267pt;}
.y17f{bottom:210.629333pt;}
.y129{bottom:215.584000pt;}
.ycc{bottom:215.642667pt;}
.yae{bottom:215.925333pt;}
.y14a{bottom:218.330667pt;}
.y108{bottom:221.184000pt;}
.y17e{bottom:223.824000pt;}
.y3f{bottom:224.000000pt;}
.y1a5{bottom:225.664000pt;}
.y89{bottom:226.741333pt;}
.yec{bottom:228.149333pt;}
.y63{bottom:228.154667pt;}
.y13b{bottom:230.074667pt;}
.y1a{bottom:230.194267pt;}
.y149{bottom:231.664000pt;}
.y128{bottom:235.856000pt;}
.ycb{bottom:235.914667pt;}
.yad{bottom:236.197333pt;}
.y17d{bottom:237.018667pt;}
.y107{bottom:241.312000pt;}
.y1a4{bottom:242.330667pt;}
.y3e{bottom:244.000000pt;}
.y148{bottom:244.997333pt;}
.y88{bottom:246.869333pt;}
.yeb{bottom:248.677333pt;}
.y62{bottom:248.682667pt;}
.y19{bottom:250.194267pt;}
.y17c{bottom:250.213333pt;}
.y13a{bottom:250.474667pt;}
.y127{bottom:256.128000pt;}
.yca{bottom:256.186667pt;}
.yac{bottom:256.469333pt;}
.y147{bottom:258.330667pt;}
.y1a3{bottom:258.997333pt;}
.y106{bottom:261.440000pt;}
.y17b{bottom:263.408000pt;}
.y3d{bottom:264.000000pt;}
.y87{bottom:266.997333pt;}
.yea{bottom:269.205333pt;}
.y61{bottom:269.210667pt;}
.y18{bottom:270.194267pt;}
.y139{bottom:270.874667pt;}
.y146{bottom:271.664000pt;}
.y1a2{bottom:275.664000pt;}
.y126{bottom:276.400000pt;}
.yc9{bottom:276.458667pt;}
.y17a{bottom:276.602667pt;}
.yab{bottom:276.741333pt;}
.y105{bottom:281.568000pt;}
.y3c{bottom:284.000000pt;}
.y145{bottom:284.997333pt;}
.y86{bottom:287.125333pt;}
.ye9{bottom:289.733333pt;}
.y60{bottom:289.738667pt;}
.y179{bottom:289.797333pt;}
.y17{bottom:290.194267pt;}
.y138{bottom:291.274667pt;}
.y1a1{bottom:292.330667pt;}
.y125{bottom:296.672000pt;}
.yc8{bottom:296.730667pt;}
.yaa{bottom:297.013333pt;}
.y144{bottom:298.330667pt;}
.y104{bottom:301.696000pt;}
.y178{bottom:302.992000pt;}
.y3b{bottom:304.000000pt;}
.y85{bottom:307.253333pt;}
.y1a0{bottom:308.997333pt;}
.y16{bottom:310.194267pt;}
.ye8{bottom:310.261333pt;}
.y5f{bottom:310.266667pt;}
.y143{bottom:311.664000pt;}
.y137{bottom:311.674667pt;}
.y177{bottom:316.186667pt;}
.y124{bottom:316.944000pt;}
.yc7{bottom:317.002667pt;}
.ya9{bottom:317.285333pt;}
.y103{bottom:321.824000pt;}
.y3a{bottom:324.000000pt;}
.y142{bottom:324.997333pt;}
.y19f{bottom:325.664000pt;}
.y84{bottom:327.381333pt;}
.y176{bottom:329.381333pt;}
.y15{bottom:330.194267pt;}
.ye7{bottom:330.789333pt;}
.y5e{bottom:330.794667pt;}
.y136{bottom:332.074667pt;}
.y123{bottom:337.216000pt;}
.yc6{bottom:337.274667pt;}
.ya8{bottom:337.557333pt;}
.y102{bottom:341.952000pt;}
.y19e{bottom:342.330667pt;}
.y175{bottom:342.576000pt;}
.y39{bottom:344.000000pt;}
.y83{bottom:347.509333pt;}
.y14{bottom:350.194267pt;}
.ye6{bottom:351.317333pt;}
.y5d{bottom:351.322667pt;}
.y135{bottom:352.474667pt;}
.y174{bottom:355.770667pt;}
.y122{bottom:357.488000pt;}
.yc5{bottom:357.546667pt;}
.ya7{bottom:357.829333pt;}
.y19d{bottom:358.997333pt;}
.y101{bottom:362.080000pt;}
.y38{bottom:364.000000pt;}
.y82{bottom:367.637333pt;}
.y173{bottom:368.965333pt;}
.y13{bottom:370.194267pt;}
.ye5{bottom:371.845333pt;}
.y5c{bottom:371.850667pt;}
.y134{bottom:372.874667pt;}
.y19c{bottom:375.664000pt;}
.y121{bottom:377.760000pt;}
.yc4{bottom:377.818667pt;}
.ya6{bottom:378.101333pt;}
.y1be{bottom:380.666667pt;}
.y172{bottom:382.160000pt;}
.y100{bottom:382.208000pt;}
.y37{bottom:384.000000pt;}
.y81{bottom:387.765333pt;}
.y12{bottom:390.194267pt;}
.y19b{bottom:392.330667pt;}
.ye4{bottom:392.373333pt;}
.y5b{bottom:392.378667pt;}
.y133{bottom:393.274667pt;}
.y171{bottom:395.354667pt;}
.y1bd{bottom:397.333333pt;}
.y120{bottom:398.032000pt;}
.yc3{bottom:398.090667pt;}
.ya5{bottom:398.373333pt;}
.yff{bottom:402.336000pt;}
.y36{bottom:404.000000pt;}
.y80{bottom:408.037333pt;}
.y170{bottom:408.549333pt;}
.y11{bottom:410.194267pt;}
.ye3{bottom:412.901333pt;}
.y5a{bottom:412.906667pt;}
.y132{bottom:413.674667pt;}
.y1bc{bottom:414.000000pt;}
.y19a{bottom:414.666667pt;}
.y11f{bottom:418.304000pt;}
.yc2{bottom:418.362667pt;}
.ya4{bottom:418.645333pt;}
.y16f{bottom:421.744000pt;}
.yfe{bottom:422.464000pt;}
.y35{bottom:424.000000pt;}
.y7f{bottom:428.309333pt;}
.y10{bottom:430.194267pt;}
.y199{bottom:430.666667pt;}
.ye2{bottom:433.429333pt;}
.y59{bottom:433.434667pt;}
.y131{bottom:434.074667pt;}
.y16e{bottom:434.938667pt;}
.y11e{bottom:438.576000pt;}
.yc1{bottom:438.634667pt;}
.ya3{bottom:438.917333pt;}
.yfd{bottom:442.592000pt;}
.y34{bottom:444.000000pt;}
.y16d{bottom:448.133333pt;}
.y7e{bottom:448.581333pt;}
.yf{bottom:450.194267pt;}
.ye1{bottom:453.957333pt;}
.y58{bottom:453.962667pt;}
.y130{bottom:454.474667pt;}
.y1bb{bottom:457.333333pt;}
.y11d{bottom:458.848000pt;}
.yc0{bottom:458.906667pt;}
.ya2{bottom:459.189333pt;}
.y16c{bottom:461.328000pt;}
.yfc{bottom:462.720000pt;}
.y6a{bottom:464.000000pt;}
.y7d{bottom:468.853333pt;}
.ye{bottom:470.194267pt;}
.y198{bottom:470.666667pt;}
.ye0{bottom:474.485333pt;}
.y57{bottom:474.490667pt;}
.y16b{bottom:474.522667pt;}
.y12f{bottom:474.874667pt;}
.y11c{bottom:479.120000pt;}
.ybf{bottom:479.178667pt;}
.ya1{bottom:479.461333pt;}
.yfb{bottom:482.848000pt;}
.y33{bottom:484.000000pt;}
.y16a{bottom:487.717333pt;}
.y7c{bottom:489.125333pt;}
.yd{bottom:490.194267pt;}
.y1ba{bottom:494.000000pt;}
.ydf{bottom:495.013333pt;}
.y56{bottom:495.018667pt;}
.y12e{bottom:495.274667pt;}
.y197{bottom:497.333333pt;}
.y11b{bottom:499.392000pt;}
.ybe{bottom:499.450667pt;}
.ya0{bottom:499.653333pt;}
.y169{bottom:500.912000pt;}
.yfa{bottom:502.976000pt;}
.y32{bottom:504.000000pt;}
.y7b{bottom:509.397333pt;}
.yc{bottom:510.194267pt;}
.y196{bottom:510.666667pt;}
.y168{bottom:514.106667pt;}
.yde{bottom:515.541333pt;}
.y55{bottom:515.546667pt;}
.y12d{bottom:515.674667pt;}
.y11a{bottom:519.664000pt;}
.ybd{bottom:519.722667pt;}
.y9f{bottom:519.925333pt;}
.yf9{bottom:523.104000pt;}
.y31{bottom:524.000000pt;}
.y167{bottom:527.301333pt;}
.y1b9{bottom:527.333333pt;}
.y7a{bottom:529.669333pt;}
.ya{bottom:530.194267pt;}
.ydd{bottom:536.069333pt;}
.y54{bottom:536.074667pt;}
.y195{bottom:537.333333pt;}
.y119{bottom:539.936000pt;}
.ybc{bottom:539.994667pt;}
.y9e{bottom:540.197333pt;}
.y166{bottom:540.496000pt;}
.yf8{bottom:543.232000pt;}
.y30{bottom:544.000000pt;}
.y79{bottom:549.941333pt;}
.yb{bottom:550.194267pt;}
.y194{bottom:550.666667pt;}
.y165{bottom:553.690667pt;}
.ydc{bottom:556.597333pt;}
.y53{bottom:556.602667pt;}
.ybb{bottom:560.197333pt;}
.y118{bottom:560.208000pt;}
.y9d{bottom:560.469333pt;}
.y1b8{bottom:560.666667pt;}
.yf7{bottom:563.360000pt;}
.y2f{bottom:564.000000pt;}
.y164{bottom:566.885333pt;}
.y78{bottom:570.213333pt;}
.ydb{bottom:577.125333pt;}
.y52{bottom:577.130667pt;}
.y193{bottom:577.333333pt;}
.y163{bottom:580.080000pt;}
.yba{bottom:580.469333pt;}
.y117{bottom:580.480000pt;}
.y9c{bottom:580.741333pt;}
.yf6{bottom:583.488000pt;}
.y2e{bottom:584.000000pt;}
.y77{bottom:590.485333pt;}
.y192{bottom:590.666667pt;}
.y162{bottom:593.274667pt;}
.y1b7{bottom:594.000000pt;}
.yda{bottom:597.653333pt;}
.y51{bottom:597.658667pt;}
.yb9{bottom:600.741333pt;}
.y116{bottom:600.752000pt;}
.y9b{bottom:601.013333pt;}
.yf5{bottom:603.616000pt;}
.y2d{bottom:604.000000pt;}
.y161{bottom:606.469333pt;}
.y9{bottom:610.194267pt;}
.y1b6{bottom:610.666667pt;}
.y76{bottom:610.757333pt;}
.y191{bottom:617.333333pt;}
.yd9{bottom:618.181333pt;}
.y50{bottom:618.186667pt;}
.y160{bottom:619.664000pt;}
.yb8{bottom:621.013333pt;}
.y115{bottom:621.024000pt;}
.y9a{bottom:621.285333pt;}
.yf4{bottom:623.744000pt;}
.y2c{bottom:624.000000pt;}
.y8{bottom:626.860933pt;}
.y1b5{bottom:627.333333pt;}
.y190{bottom:630.666667pt;}
.y75{bottom:631.029333pt;}
.y15f{bottom:632.858667pt;}
.yd8{bottom:638.709333pt;}
.y4f{bottom:638.714667pt;}
.yb7{bottom:641.285333pt;}
.y114{bottom:641.296000pt;}
.y99{bottom:641.557333pt;}
.yf3{bottom:643.872000pt;}
.y2b{bottom:644.000000pt;}
.y15e{bottom:646.053333pt;}
.y74{bottom:651.301333pt;}
.y18f{bottom:657.333333pt;}
.yd7{bottom:659.237333pt;}
.y4e{bottom:659.242667pt;}
.y15d{bottom:659.248000pt;}
.y1b4{bottom:660.666667pt;}
.yb6{bottom:661.557333pt;}
.y113{bottom:661.568000pt;}
.y98{bottom:661.829333pt;}
.y2a{bottom:664.000000pt;}
.y7{bottom:664.314933pt;}
.y18e{bottom:670.666667pt;}
.y73{bottom:671.573333pt;}
.y15c{bottom:672.442667pt;}
.y1b3{bottom:677.333333pt;}
.yd6{bottom:679.765333pt;}
.y4d{bottom:679.770667pt;}
.yb5{bottom:681.829333pt;}
.y112{bottom:681.840000pt;}
.y97{bottom:682.101333pt;}
.y29{bottom:684.000000pt;}
.y6{bottom:684.314933pt;}
.y15b{bottom:685.637333pt;}
.y72{bottom:691.845333pt;}
.y1b2{bottom:694.000000pt;}
.y18d{bottom:697.333333pt;}
.y15a{bottom:698.832000pt;}
.yd5{bottom:700.293333pt;}
.y4c{bottom:700.298667pt;}
.yb4{bottom:702.101333pt;}
.y111{bottom:702.112000pt;}
.y96{bottom:702.373333pt;}
.y28{bottom:704.000000pt;}
.y5{bottom:704.314933pt;}
.y18c{bottom:710.666667pt;}
.y159{bottom:712.026667pt;}
.y71{bottom:712.117333pt;}
.yd4{bottom:720.821333pt;}
.y4b{bottom:720.826667pt;}
.yb3{bottom:722.373333pt;}
.y110{bottom:722.384000pt;}
.y95{bottom:722.645333pt;}
.y27{bottom:724.000000pt;}
.y158{bottom:725.232000pt;}
.y1b1{bottom:727.333333pt;}
.y70{bottom:732.389333pt;}
.y18b{bottom:737.333333pt;}
.y157{bottom:738.426667pt;}
.yd3{bottom:741.349333pt;}
.y4a{bottom:741.354667pt;}
.yb2{bottom:742.645333pt;}
.y10f{bottom:742.656000pt;}
.y94{bottom:742.917333pt;}
.y26{bottom:744.000000pt;}
.y18a{bottom:750.666667pt;}
.y156{bottom:751.621333pt;}
.y1b0{bottom:760.666667pt;}
.yd2{bottom:761.877333pt;}
.y49{bottom:761.882667pt;}
.y6f{bottom:762.917333pt;}
.y10e{bottom:762.928000pt;}
.y93{bottom:763.189333pt;}
.y4{bottom:764.000000pt;}
.y155{bottom:764.816000pt;}
.y189{bottom:777.333333pt;}
.y154{bottom:778.010667pt;}
.yd1{bottom:782.405333pt;}
.y48{bottom:782.410667pt;}
.y6e{bottom:783.189333pt;}
.y92{bottom:783.461333pt;}
.y25{bottom:784.000000pt;}
.y3{bottom:790.666667pt;}
.y153{bottom:791.216000pt;}
.y1af{bottom:794.000000pt;}
.yd0{bottom:802.933333pt;}
.y47{bottom:802.938667pt;}
.y6d{bottom:803.461333pt;}
.y91{bottom:803.733333pt;}
.y24{bottom:804.000000pt;}
.y152{bottom:804.410667pt;}
.y1ae{bottom:810.666667pt;}
.y2{bottom:817.333333pt;}
.y151{bottom:817.605333pt;}
.y46{bottom:823.466667pt;}
.y6c{bottom:823.733333pt;}
.y23{bottom:824.000000pt;}
.y1ad{bottom:827.333333pt;}
.y188{bottom:830.666667pt;}
.y150{bottom:830.800000pt;}
.ha{height:21.894141pt;}
.hd{height:26.945443pt;}
.h12{height:34.730667pt;}
.h11{height:35.541333pt;}
.h9{height:35.546875pt;}
.hb{height:36.229167pt;}
.h1{height:36.796875pt;}
.h10{height:38.391467pt;}
.h5{height:42.656250pt;}
.h3{height:43.733333pt;}
.h4{height:44.156250pt;}
.h6{height:45.286458pt;}
.h8{height:54.343750pt;}
.hc{height:59.160625pt;}
.hf{height:59.203292pt;}
.he{height:59.480625pt;}
.h2{height:90.572917pt;}
.h7{height:263.715200pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x6{left:73.228400pt;}
.x8{left:92.129733pt;}
.x2{left:100.000000pt;}
.x7{left:113.228400pt;}
.x5{left:120.000000pt;}
.x9{left:132.126000pt;}
.x3{left:138.144000pt;}
.xa{left:160.440000pt;}
.x1{left:556.250000pt;}
}




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