
    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_3cedc5c909f0dec677084388.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_af0e9bf3de315f632f6424fe.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_106c6b75ce9dfadbcd53df45.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_4be402578c6d895d2a83cc02.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9a96c889a413cfa8da21ac5b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.851000;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_f2481a6141606a0ee55c3e70.woff')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_f373ed8faf4c74a15bec192e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.706000;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_8bd81fb31c6487c99ce69907.woff')format("woff");}.ff8{font-family:ff8;line-height:0.947266;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_9343358ad2162ac5ad0a8194.woff')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_765e04b2ae4328c27762a5b8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.070312;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_24800ade9099ee56ada5a6db.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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_29521ed4f316ed3b66c85d20.woff')format("woff");}.ffc{font-family:ffc;line-height:1.033000;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;}
.v5{vertical-align:-14.110800px;}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.840000px;}
.v3{vertical-align:23.760000px;}
.v2{vertical-align:187.200000px;}
.ls18{letter-spacing:-6.912000px;}
.ls36{letter-spacing:-5.760000px;}
.ls61{letter-spacing:-5.568000px;}
.ls41{letter-spacing:-5.544000px;}
.ls52{letter-spacing:-5.400000px;}
.ls51{letter-spacing:-5.112000px;}
.ls54{letter-spacing:-3.600000px;}
.ls42{letter-spacing:-3.312000px;}
.ls35{letter-spacing:-3.168000px;}
.ls19{letter-spacing:-3.024000px;}
.ls1d{letter-spacing:-2.808000px;}
.lsf{letter-spacing:-2.448000px;}
.ls29{letter-spacing:-2.376000px;}
.ls66{letter-spacing:-2.352000px;}
.ls6e{letter-spacing:-2.340000px;}
.ls6c{letter-spacing:-2.112000px;}
.ls63{letter-spacing:-1.968000px;}
.ls5a{letter-spacing:-1.944000px;}
.ls5f{letter-spacing:-1.920000px;}
.ls39{letter-spacing:-1.872000px;}
.ls37{letter-spacing:-1.656000px;}
.ls1f{letter-spacing:-1.440000px;}
.ls3d{letter-spacing:-1.368000px;}
.ls47{letter-spacing:-1.152000px;}
.ls49{letter-spacing:-1.080000px;}
.ls48{letter-spacing:-1.008000px;}
.ls1a{letter-spacing:-0.936000px;}
.ls1c{letter-spacing:-0.864000px;}
.ls1b{letter-spacing:-0.792000px;}
.ls34{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.648000px;}
.ls25{letter-spacing:-0.576000px;}
.ls30{letter-spacing:-0.504000px;}
.ls65{letter-spacing:-0.480000px;}
.ls10{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls40{letter-spacing:-0.072000px;}
.lsd{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.048000px;}
.ls9{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.288000px;}
.ls62{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.576000px;}
.ls6b{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.792000px;}
.ls4b{letter-spacing:0.864000px;}
.ls8{letter-spacing:0.936000px;}
.ls2d{letter-spacing:1.008000px;}
.ls53{letter-spacing:1.152000px;}
.ls12{letter-spacing:1.224000px;}
.ls6{letter-spacing:1.368000px;}
.ls2c{letter-spacing:1.584000px;}
.ls3b{letter-spacing:1.656000px;}
.ls5c{letter-spacing:1.872000px;}
.ls3f{letter-spacing:2.021400px;}
.ls3c{letter-spacing:2.304000px;}
.ls55{letter-spacing:2.376000px;}
.ls68{letter-spacing:2.736000px;}
.ls67{letter-spacing:2.784000px;}
.ls4d{letter-spacing:3.024000px;}
.ls6d{letter-spacing:3.120000px;}
.ls60{letter-spacing:3.168000px;}
.ls5d{letter-spacing:3.456000px;}
.ls33{letter-spacing:3.528000px;}
.lse{letter-spacing:3.600000px;}
.ls5b{letter-spacing:3.672000px;}
.ls69{letter-spacing:3.792000px;}
.ls45{letter-spacing:4.032000px;}
.ls3e{letter-spacing:4.320000px;}
.ls3a{letter-spacing:4.392000px;}
.ls6a{letter-spacing:4.416000px;}
.ls31{letter-spacing:4.464000px;}
.ls32{letter-spacing:4.536000px;}
.ls2{letter-spacing:4.560000px;}
.ls5e{letter-spacing:4.752000px;}
.ls4a{letter-spacing:5.112000px;}
.ls46{letter-spacing:5.256000px;}
.ls4c{letter-spacing:5.976000px;}
.ls56{letter-spacing:6.912000px;}
.ls58{letter-spacing:7.056000px;}
.ls22{letter-spacing:7.200000px;}
.ls3{letter-spacing:7.488000px;}
.ls27{letter-spacing:8.265000px;}
.ls16{letter-spacing:8.340000px;}
.ls38{letter-spacing:8.400000px;}
.ls0{letter-spacing:8.460000px;}
.ls4f{letter-spacing:9.288000px;}
.ls50{letter-spacing:9.360000px;}
.ls4e{letter-spacing:9.432000px;}
.ls57{letter-spacing:9.576000px;}
.ls59{letter-spacing:9.864000px;}
.ls15{letter-spacing:10.152000px;}
.ls43{letter-spacing:10.296000px;}
.ls26{letter-spacing:10.440000px;}
.ls1{letter-spacing:10.740000px;}
.ls28{letter-spacing:10.800000px;}
.ls4{letter-spacing:10.926915px;}
.ls44{letter-spacing:10.944000px;}
.ls2e{letter-spacing:11.376000px;}
.ls17{letter-spacing:12.660000px;}
.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;}
}
.ws3{word-spacing:-80.880000px;}
.ws60{word-spacing:-49.392000px;}
.wsa{word-spacing:-49.248000px;}
.ws45{word-spacing:-49.104000px;}
.ws63{word-spacing:-49.032000px;}
.ws7{word-spacing:-48.888000px;}
.ws6f{word-spacing:-48.744000px;}
.ws6e{word-spacing:-48.672000px;}
.ws9{word-spacing:-48.600000px;}
.ws5{word-spacing:-48.528000px;}
.ws52{word-spacing:-48.456000px;}
.ws22{word-spacing:-48.384000px;}
.wsb{word-spacing:-48.312000px;}
.ws8{word-spacing:-48.168000px;}
.ws70{word-spacing:-48.096000px;}
.ws53{word-spacing:-48.024000px;}
.ws2f{word-spacing:-47.952000px;}
.ws46{word-spacing:-47.880000px;}
.ws47{word-spacing:-47.808000px;}
.ws1f{word-spacing:-47.736000px;}
.ws20{word-spacing:-47.664000px;}
.ws5a{word-spacing:-47.520000px;}
.ws1d{word-spacing:-41.616000px;}
.ws1{word-spacing:-40.440000px;}
.ws4c{word-spacing:-32.352000px;}
.ws7c{word-spacing:-32.112000px;}
.ws5e{word-spacing:-31.032000px;}
.ws21{word-spacing:-25.320000px;}
.ws49{word-spacing:-25.260000px;}
.ws69{word-spacing:-20.880000px;}
.ws68{word-spacing:-20.736000px;}
.ws61{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.280000px;}
.ws1e{word-spacing:-20.232000px;}
.ws40{word-spacing:-20.088000px;}
.ws37{word-spacing:-20.016000px;}
.ws38{word-spacing:-19.872000px;}
.ws59{word-spacing:-19.800000px;}
.ws55{word-spacing:-19.728000px;}
.ws67{word-spacing:-19.656000px;}
.ws4b{word-spacing:-19.584000px;}
.ws4a{word-spacing:-16.860000px;}
.ws5f{word-spacing:-15.120000px;}
.ws62{word-spacing:-14.832000px;}
.ws54{word-spacing:-14.688000px;}
.ws48{word-spacing:-14.472000px;}
.ws1c{word-spacing:-14.162400px;}
.ws23{word-spacing:-13.488000px;}
.ws77{word-spacing:-13.008000px;}
.ws75{word-spacing:-12.768000px;}
.ws72{word-spacing:-12.336000px;}
.ws6{word-spacing:-12.144000px;}
.ws73{word-spacing:-11.568000px;}
.ws3d{word-spacing:-11.376000px;}
.ws7d{word-spacing:-11.328000px;}
.ws58{word-spacing:-10.944000px;}
.ws34{word-spacing:-10.800000px;}
.wsf{word-spacing:-10.740000px;}
.ws31{word-spacing:-10.440000px;}
.ws57{word-spacing:-10.296000px;}
.ws64{word-spacing:-9.888000px;}
.ws6d{word-spacing:-9.864000px;}
.ws1b{word-spacing:-8.520000px;}
.ws29{word-spacing:-8.460000px;}
.ws33{word-spacing:-8.265000px;}
.ws7e{word-spacing:-6.912000px;}
.ws10{word-spacing:-3.600000px;}
.ws80{word-spacing:-3.120000px;}
.ws5b{word-spacing:-1.944000px;}
.ws71{word-spacing:-1.872000px;}
.ws16{word-spacing:-1.224000px;}
.ws66{word-spacing:-1.152000px;}
.ws3b{word-spacing:-1.008000px;}
.ws13{word-spacing:-0.936000px;}
.ws6a{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.792000px;}
.ws2b{word-spacing:-0.720000px;}
.ws2a{word-spacing:-0.648000px;}
.ws84{word-spacing:-0.600000px;}
.ws3c{word-spacing:-0.576000px;}
.ws3e{word-spacing:-0.504000px;}
.ws39{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.360000px;}
.ws35{word-spacing:-0.288000px;}
.ws18{word-spacing:-0.216000px;}
.ws32{word-spacing:-0.144000px;}
.ws15{word-spacing:-0.072000px;}
.ws79{word-spacing:-0.048000px;}
.wsc{word-spacing:0.000000px;}
.ws43{word-spacing:0.072000px;}
.ws2c{word-spacing:0.144000px;}
.ws1a{word-spacing:0.216000px;}
.ws2e{word-spacing:0.240000px;}
.ws19{word-spacing:0.288000px;}
.ws25{word-spacing:0.360000px;}
.ws14{word-spacing:0.432000px;}
.ws7b{word-spacing:0.480000px;}
.ws44{word-spacing:0.504000px;}
.ws30{word-spacing:0.576000px;}
.ws41{word-spacing:0.648000px;}
.ws4d{word-spacing:0.720000px;}
.ws27{word-spacing:0.792000px;}
.ws42{word-spacing:0.864000px;}
.ws26{word-spacing:0.936000px;}
.ws65{word-spacing:1.008000px;}
.ws5d{word-spacing:1.080000px;}
.ws5c{word-spacing:1.152000px;}
.ws81{word-spacing:1.248000px;}
.ws4f{word-spacing:1.368000px;}
.ws82{word-spacing:1.392000px;}
.ws2d{word-spacing:1.440000px;}
.ws50{word-spacing:1.656000px;}
.ws51{word-spacing:1.872000px;}
.ws6b{word-spacing:1.944000px;}
.ws78{word-spacing:1.968000px;}
.ws7f{word-spacing:2.112000px;}
.ws3f{word-spacing:2.160000px;}
.ws83{word-spacing:2.340000px;}
.ws7a{word-spacing:2.352000px;}
.ws36{word-spacing:2.376000px;}
.ws12{word-spacing:2.448000px;}
.ws28{word-spacing:2.808000px;}
.ws24{word-spacing:3.024000px;}
.ws4e{word-spacing:3.168000px;}
.ws56{word-spacing:3.312000px;}
.ws74{word-spacing:5.112000px;}
.ws3a{word-spacing:5.184000px;}
.ws76{word-spacing:5.568000px;}
.ws6c{word-spacing:7.056000px;}
.wse{word-spacing:12.540000px;}
.ws2{word-spacing:34.740000px;}
.wsd{word-spacing:73.140000px;}
.ws0{word-spacing:146.100000px;}
._f{margin-left:-948.900000px;}
._1b{margin-left:-15.324000px;}
._1a{margin-left:-13.560000px;}
._19{margin-left:-12.276000px;}
._14{margin-left:-10.800000px;}
._1c{margin-left:-9.792000px;}
._15{margin-left:-8.508000px;}
._10{margin-left:-7.344000px;}
._16{margin-left:-6.336000px;}
._d{margin-left:-5.244000px;}
._11{margin-left:-4.200000px;}
._b{margin-left:-3.180000px;}
._2{margin-left:-1.980000px;}
._3{width:1.620000px;}
._4{width:3.600000px;}
._0{width:5.160000px;}
._e{width:6.276000px;}
._8{width:7.320000px;}
._9{width:8.520000px;}
._a{width:9.900000px;}
._c{width:11.604000px;}
._12{width:13.512000px;}
._18{width:17.916000px;}
._17{width:21.816000px;}
._13{width:31.646100px;}
._1{width:51.240000px;}
._6{width:73.080000px;}
._5{width:77.280000px;}
._7{width:165.180000px;}
.fc1{color:rgb(59,61,65);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:437.181000px;}
.y0{bottom:0.000000px;}
.y46{bottom:60.257850px;}
.y3{bottom:60.263700px;}
.y45{bottom:79.757850px;}
.y2{bottom:79.763700px;}
.y44{bottom:93.257850px;}
.y1{bottom:93.263700px;}
.y6b{bottom:138.257850px;}
.y1aa{bottom:138.263400px;}
.y43{bottom:138.263700px;}
.yb7{bottom:138.341700px;}
.y15c{bottom:138.408150px;}
.ycb{bottom:138.444000px;}
.y20{bottom:143.432250px;}
.yf0{bottom:143.597700px;}
.y207{bottom:144.402000px;}
.y1de{bottom:144.563700px;}
.y136{bottom:153.257850px;}
.y1a9{bottom:153.263400px;}
.y91{bottom:153.263700px;}
.y42{bottom:157.471200px;}
.y1dd{bottom:159.863700px;}
.yb6{bottom:160.247700px;}
.y15b{bottom:160.314150px;}
.yca{bottom:160.350000px;}
.y6a{bottom:160.757850px;}
.y8e{bottom:160.763700px;}
.y206{bottom:163.152000px;}
.yef{bottom:165.953700px;}
.y1f{bottom:166.832250px;}
.y90{bottom:168.263700px;}
.y135{bottom:172.465350px;}
.y1a8{bottom:172.470900px;}
.y112{bottom:172.471200px;}
.y1dc{bottom:175.163700px;}
.y41{bottom:179.971200px;}
.y205{bottom:182.052000px;}
.yb5{bottom:182.153700px;}
.y15a{bottom:182.220150px;}
.yc9{bottom:182.256000px;}
.y69{bottom:183.257850px;}
.y8d{bottom:183.263700px;}
.y8f{bottom:187.471200px;}
.yee{bottom:188.309700px;}
.y1e{bottom:190.232250px;}
.y1db{bottom:190.463700px;}
.y180{bottom:199.049700px;}
.y204{bottom:200.952000px;}
.y40{bottom:202.471200px;}
.yb4{bottom:204.059700px;}
.y159{bottom:204.126150px;}
.yc8{bottom:204.162000px;}
.y68{bottom:205.757850px;}
.y8c{bottom:205.763700px;}
.y1a7{bottom:209.285400px;}
.yed{bottom:210.665700px;}
.y1d{bottom:213.632250px;}
.y134{bottom:215.087850px;}
.y111{bottom:215.675700px;}
.y17f{bottom:220.343700px;}
.y1da{bottom:221.063700px;}
.y1a6{bottom:224.285400px;}
.yb3{bottom:225.965700px;}
.y158{bottom:226.032150px;}
.yc7{bottom:226.068000px;}
.y67{bottom:228.257850px;}
.y8b{bottom:228.263700px;}
.y203{bottom:231.252000px;}
.yec{bottom:233.021700px;}
.y1d9{bottom:236.363700px;}
.y1c{bottom:237.032250px;}
.y133{bottom:237.281850px;}
.y110{bottom:237.869700px;}
.y1a5{bottom:238.985400px;}
.y17e{bottom:241.637700px;}
.y3f{bottom:245.993700px;}
.yb2{bottom:247.871700px;}
.y157{bottom:247.938150px;}
.yc6{bottom:247.974000px;}
.y66{bottom:250.757850px;}
.y8a{bottom:250.763700px;}
.y1d8{bottom:251.663700px;}
.y1a4{bottom:253.685400px;}
.yeb{bottom:255.377700px;}
.y132{bottom:259.475850px;}
.y10f{bottom:260.249700px;}
.y1b{bottom:260.432250px;}
.y17d{bottom:262.931700px;}
.y1d7{bottom:266.963700px;}
.y1a3{bottom:268.385400px;}
.y3e{bottom:268.637700px;}
.yb1{bottom:269.777700px;}
.y156{bottom:269.844150px;}
.yc5{bottom:269.880000px;}
.y202{bottom:272.802000px;}
.y65{bottom:273.257850px;}
.y89{bottom:273.263700px;}
.yea{bottom:277.733700px;}
.y131{bottom:281.669850px;}
.y1d6{bottom:282.263700px;}
.y10e{bottom:282.443700px;}
.y1a2{bottom:283.085400px;}
.y1a{bottom:283.832250px;}
.y17c{bottom:284.225700px;}
.y3d{bottom:291.281700px;}
.yb0{bottom:291.683700px;}
.y201{bottom:291.702000px;}
.y155{bottom:291.750150px;}
.yc4{bottom:291.786000px;}
.y64{bottom:295.757850px;}
.y88{bottom:295.763700px;}
.y1d5{bottom:297.563700px;}
.y1a1{bottom:297.785400px;}
.ye9{bottom:300.089700px;}
.y130{bottom:303.863850px;}
.y10d{bottom:304.637700px;}
.y17b{bottom:305.519700px;}
.y19{bottom:307.232250px;}
.y200{bottom:310.602000px;}
.y1a0{bottom:312.485400px;}
.y1d4{bottom:312.863700px;}
.yaf{bottom:313.589700px;}
.y154{bottom:313.656150px;}
.yc3{bottom:313.692000px;}
.y3c{bottom:313.925700px;}
.y63{bottom:318.257850px;}
.y87{bottom:318.263700px;}
.ye8{bottom:322.445700px;}
.y12f{bottom:326.225850px;}
.y17a{bottom:326.639700px;}
.y10c{bottom:326.831700px;}
.y19f{bottom:327.185400px;}
.y1d3{bottom:328.163700px;}
.y1ff{bottom:329.502000px;}
.y18{bottom:330.632250px;}
.yae{bottom:335.495700px;}
.y153{bottom:335.562150px;}
.yc2{bottom:335.598000px;}
.y3b{bottom:336.569700px;}
.y62{bottom:340.757850px;}
.y86{bottom:340.763700px;}
.y19e{bottom:341.885400px;}
.y1d2{bottom:343.463700px;}
.ye7{bottom:344.801700px;}
.y1fe{bottom:348.402000px;}
.y12e{bottom:348.419850px;}
.y179{bottom:348.545700px;}
.y10b{bottom:349.025700px;}
.y17{bottom:354.032250px;}
.y19d{bottom:356.585400px;}
.yad{bottom:357.401700px;}
.y152{bottom:357.468150px;}
.yc1{bottom:357.504000px;}
.y1d1{bottom:358.763700px;}
.y3a{bottom:359.219700px;}
.y61{bottom:363.257850px;}
.y85{bottom:363.263700px;}
.ye6{bottom:367.157700px;}
.y1fd{bottom:367.302000px;}
.y178{bottom:370.001700px;}
.y12d{bottom:370.613850px;}
.y10a{bottom:371.219700px;}
.y19c{bottom:371.285400px;}
.y1d0{bottom:374.063700px;}
.y16{bottom:377.432250px;}
.yac{bottom:379.307700px;}
.y151{bottom:379.374150px;}
.yc0{bottom:379.410000px;}
.y39{bottom:381.917700px;}
.y60{bottom:385.757850px;}
.y84{bottom:385.763700px;}
.y19b{bottom:385.985400px;}
.y1fc{bottom:386.202000px;}
.y1cf{bottom:389.363700px;}
.ye5{bottom:389.513700px;}
.y177{bottom:391.457700px;}
.y12c{bottom:392.807850px;}
.y109{bottom:393.413700px;}
.y19a{bottom:400.685400px;}
.y15{bottom:400.832250px;}
.yab{bottom:401.213700px;}
.y150{bottom:401.280150px;}
.ybf{bottom:401.316000px;}
.y38{bottom:404.561700px;}
.y1ce{bottom:404.663700px;}
.y1fb{bottom:405.102000px;}
.y5f{bottom:408.257850px;}
.y83{bottom:408.263700px;}
.ye4{bottom:411.869700px;}
.y176{bottom:412.913700px;}
.y12b{bottom:415.001850px;}
.y199{bottom:415.385400px;}
.y108{bottom:415.607700px;}
.y1cd{bottom:419.963700px;}
.yaa{bottom:423.119700px;}
.y14f{bottom:423.186150px;}
.ybe{bottom:423.222000px;}
.y1fa{bottom:424.002000px;}
.y14{bottom:424.232250px;}
.y37{bottom:427.205700px;}
.y198{bottom:430.085400px;}
.y5e{bottom:430.757850px;}
.y82{bottom:430.763700px;}
.ye3{bottom:434.225700px;}
.y175{bottom:434.369700px;}
.y1cc{bottom:435.263700px;}
.y12a{bottom:437.195850px;}
.y107{bottom:437.801700px;}
.y1f9{bottom:442.902000px;}
.ya9{bottom:445.025700px;}
.y14e{bottom:445.092150px;}
.ybd{bottom:445.128000px;}
.y13{bottom:447.632250px;}
.y36{bottom:449.849700px;}
.y1cb{bottom:450.563700px;}
.y197{bottom:451.163400px;}
.y5d{bottom:453.257850px;}
.y81{bottom:453.263700px;}
.y174{bottom:455.825700px;}
.ye2{bottom:456.581700px;}
.y129{bottom:459.389850px;}
.y106{bottom:459.995700px;}
.y1f8{bottom:461.802000px;}
.y1ca{bottom:465.863700px;}
.ya8{bottom:466.931700px;}
.y14d{bottom:466.998150px;}
.ybc{bottom:467.034000px;}
.y12{bottom:471.032250px;}
.y35{bottom:472.493700px;}
.y5c{bottom:475.757850px;}
.y80{bottom:475.763700px;}
.y173{bottom:477.281700px;}
.ye1{bottom:478.937700px;}
.y1f7{bottom:480.702000px;}
.y1c9{bottom:481.163700px;}
.y128{bottom:481.583850px;}
.y105{bottom:482.189700px;}
.ya7{bottom:488.837700px;}
.y14c{bottom:488.904150px;}
.ybb{bottom:488.940000px;}
.y11{bottom:494.432250px;}
.y34{bottom:495.137700px;}
.y196{bottom:495.563550px;}
.y1c8{bottom:496.463700px;}
.y5b{bottom:498.257850px;}
.y7f{bottom:498.263700px;}
.y172{bottom:498.737700px;}
.y1f6{bottom:499.602000px;}
.ye0{bottom:501.293700px;}
.y127{bottom:503.777850px;}
.y104{bottom:504.383700px;}
.ya6{bottom:510.743700px;}
.y14b{bottom:510.810150px;}
.yba{bottom:510.846000px;}
.y1c7{bottom:511.763700px;}
.y195{bottom:517.163550px;}
.y33{bottom:517.781700px;}
.y10{bottom:517.832250px;}
.y1f5{bottom:518.502000px;}
.y171{bottom:520.193700px;}
.y5a{bottom:520.757850px;}
.y7e{bottom:520.763700px;}
.ydf{bottom:523.649700px;}
.y126{bottom:525.971850px;}
.y103{bottom:526.577700px;}
.y1c6{bottom:527.063700px;}
.ya5{bottom:532.649700px;}
.y14a{bottom:532.716150px;}
.yb9{bottom:532.752000px;}
.y1f4{bottom:537.402000px;}
.y194{bottom:538.763550px;}
.y32{bottom:540.425700px;}
.yf{bottom:541.232250px;}
.y170{bottom:541.649700px;}
.y1c5{bottom:542.363700px;}
.y59{bottom:543.257850px;}
.y7d{bottom:543.263700px;}
.yde{bottom:546.005700px;}
.y125{bottom:548.165850px;}
.y102{bottom:548.771700px;}
.ya4{bottom:554.555700px;}
.y149{bottom:554.622150px;}
.yb8{bottom:554.658000px;}
.y1f3{bottom:556.302000px;}
.y1c4{bottom:557.663700px;}
.y193{bottom:560.363550px;}
.y31{bottom:563.069700px;}
.y16f{bottom:563.105700px;}
.ye{bottom:564.632250px;}
.y58{bottom:565.757850px;}
.y7c{bottom:565.763700px;}
.ydd{bottom:568.361700px;}
.y124{bottom:570.359850px;}
.y101{bottom:570.965700px;}
.y1c3{bottom:572.963700px;}
.y1f2{bottom:575.202000px;}
.ya3{bottom:576.461700px;}
.y148{bottom:576.528150px;}
.y192{bottom:581.963550px;}
.y16e{bottom:584.561700px;}
.y30{bottom:585.713700px;}
.yd{bottom:588.032250px;}
.y57{bottom:588.257850px;}
.y7b{bottom:588.263700px;}
.ydc{bottom:590.717700px;}
.y123{bottom:592.553850px;}
.y100{bottom:593.159700px;}
.y1f1{bottom:594.102000px;}
.ya2{bottom:598.367700px;}
.y147{bottom:598.434150px;}
.y191{bottom:603.563550px;}
.y1c2{bottom:603.563700px;}
.y16d{bottom:606.017700px;}
.y2f{bottom:608.363700px;}
.y56{bottom:610.757850px;}
.y7a{bottom:610.763700px;}
.yb{bottom:611.432250px;}
.y1f0{bottom:613.002000px;}
.ydb{bottom:613.073700px;}
.y122{bottom:614.747850px;}
.yff{bottom:615.353700px;}
.y1c1{bottom:618.863700px;}
.ya1{bottom:620.273700px;}
.y146{bottom:620.340150px;}
.y190{bottom:625.163550px;}
.y16c{bottom:627.473700px;}
.y1ef{bottom:631.902000px;}
.y55{bottom:633.257850px;}
.y79{bottom:633.263700px;}
.y1c0{bottom:634.163700px;}
.yc{bottom:634.832250px;}
.yda{bottom:635.429700px;}
.y121{bottom:636.941850px;}
.yfe{bottom:637.547700px;}
.ya0{bottom:642.179700px;}
.y145{bottom:642.246150px;}
.y18f{bottom:646.763550px;}
.y16b{bottom:648.929700px;}
.y1bf{bottom:649.463700px;}
.y1ee{bottom:650.802000px;}
.y2e{bottom:653.741700px;}
.y54{bottom:655.757850px;}
.y78{bottom:655.763700px;}
.yd9{bottom:657.785700px;}
.y120{bottom:659.135850px;}
.yfd{bottom:659.741700px;}
.y9f{bottom:664.085700px;}
.y144{bottom:664.152150px;}
.y1be{bottom:664.763700px;}
.y18e{bottom:668.363550px;}
.y1ed{bottom:669.702000px;}
.y16a{bottom:670.385700px;}
.y2d{bottom:676.385700px;}
.y53{bottom:678.257850px;}
.y77{bottom:678.263700px;}
.y1bd{bottom:680.063700px;}
.yd8{bottom:680.141700px;}
.y11f{bottom:681.329850px;}
.yfc{bottom:681.935700px;}
.y143{bottom:685.985850px;}
.y9e{bottom:685.991700px;}
.y18d{bottom:689.963550px;}
.y169{bottom:691.841700px;}
.y1ec{bottom:695.051850px;}
.y1bc{bottom:695.363700px;}
.y2c{bottom:699.029700px;}
.y52{bottom:700.757850px;}
.y76{bottom:700.763700px;}
.yd7{bottom:702.497700px;}
.y11e{bottom:703.523850px;}
.yfb{bottom:704.129700px;}
.y142{bottom:707.891850px;}
.y9d{bottom:707.897700px;}
.y1bb{bottom:710.663700px;}
.y18c{bottom:711.563550px;}
.y168{bottom:713.297700px;}
.y1eb{bottom:714.695850px;}
.y2b{bottom:721.673700px;}
.y51{bottom:723.257850px;}
.y75{bottom:723.263700px;}
.yd6{bottom:724.853700px;}
.y11d{bottom:725.717850px;}
.y1ba{bottom:725.963700px;}
.yfa{bottom:726.323700px;}
.ya{bottom:728.432100px;}
.y141{bottom:729.797850px;}
.y9c{bottom:729.803700px;}
.y18b{bottom:733.163550px;}
.y167{bottom:734.753700px;}
.y1b9{bottom:741.263700px;}
.y2a{bottom:744.317700px;}
.y50{bottom:745.757850px;}
.y74{bottom:745.763700px;}
.yd5{bottom:747.209700px;}
.y11c{bottom:747.911850px;}
.y9{bottom:748.082100px;}
.yf9{bottom:748.517700px;}
.y140{bottom:751.703850px;}
.y9b{bottom:751.709700px;}
.y18a{bottom:754.763550px;}
.y166{bottom:756.209700px;}
.y1b8{bottom:756.563700px;}
.y1ea{bottom:759.995850px;}
.y29{bottom:766.961700px;}
.y4f{bottom:768.257850px;}
.y73{bottom:768.263700px;}
.yd4{bottom:769.565700px;}
.y11b{bottom:770.105850px;}
.yf8{bottom:770.711700px;}
.y1b7{bottom:771.863700px;}
.y13f{bottom:773.609850px;}
.y9a{bottom:773.615700px;}
.y1e9{bottom:775.139850px;}
.y189{bottom:776.363550px;}
.y165{bottom:777.665700px;}
.y1b6{bottom:787.163700px;}
.y28{bottom:789.605700px;}
.y1e8{bottom:790.283850px;}
.y4e{bottom:790.757850px;}
.y72{bottom:790.763700px;}
.y8{bottom:791.118000px;}
.yd3{bottom:791.921700px;}
.y11a{bottom:792.299850px;}
.yf7{bottom:792.905700px;}
.y13e{bottom:795.515850px;}
.y99{bottom:795.521700px;}
.y188{bottom:797.963550px;}
.y164{bottom:799.121700px;}
.y1b5{bottom:802.463700px;}
.y1e7{bottom:805.427850px;}
.y27{bottom:812.249700px;}
.y4d{bottom:813.257850px;}
.y71{bottom:813.263700px;}
.y7{bottom:813.618000px;}
.yd2{bottom:814.277700px;}
.y119{bottom:814.493850px;}
.yf6{bottom:815.099700px;}
.y13d{bottom:817.421850px;}
.y98{bottom:817.427700px;}
.y1b4{bottom:817.763700px;}
.y187{bottom:819.563550px;}
.y1e6{bottom:820.571850px;}
.y163{bottom:820.577700px;}
.y1b3{bottom:833.063700px;}
.y26{bottom:834.893700px;}
.y1e5{bottom:835.715850px;}
.y4c{bottom:835.757850px;}
.y70{bottom:835.763700px;}
.yd1{bottom:836.633700px;}
.y118{bottom:836.687850px;}
.yf5{bottom:837.293700px;}
.y13c{bottom:839.327850px;}
.y97{bottom:839.333700px;}
.y186{bottom:841.163550px;}
.y162{bottom:842.033700px;}
.y1b2{bottom:848.363700px;}
.y1e4{bottom:850.859850px;}
.y25{bottom:857.537700px;}
.y4b{bottom:858.257850px;}
.y6f{bottom:858.263700px;}
.y117{bottom:858.881850px;}
.yd0{bottom:858.989700px;}
.yf4{bottom:859.487700px;}
.y13b{bottom:861.233850px;}
.y96{bottom:861.239700px;}
.y185{bottom:862.763550px;}
.y161{bottom:863.489700px;}
.y1b1{bottom:863.663700px;}
.y1e3{bottom:866.003850px;}
.y1b0{bottom:878.963700px;}
.y24{bottom:880.181700px;}
.y4a{bottom:880.757850px;}
.y6{bottom:880.763700px;}
.y116{bottom:881.075850px;}
.y1e2{bottom:881.147850px;}
.ycf{bottom:881.345700px;}
.yf3{bottom:881.681700px;}
.y13a{bottom:883.139850px;}
.y95{bottom:883.145700px;}
.y184{bottom:884.363550px;}
.y160{bottom:884.945700px;}
.y1af{bottom:894.263700px;}
.y1e1{bottom:896.291850px;}
.y23{bottom:902.825700px;}
.y49{bottom:903.257850px;}
.y6e{bottom:903.263700px;}
.y115{bottom:903.269850px;}
.yce{bottom:903.701700px;}
.yf2{bottom:903.875700px;}
.y139{bottom:905.045850px;}
.y94{bottom:905.051700px;}
.y183{bottom:905.963550px;}
.y15f{bottom:906.401700px;}
.y1ae{bottom:909.563700px;}
.y5{bottom:910.763700px;}
.y1e0{bottom:911.435850px;}
.y1ad{bottom:924.863700px;}
.y114{bottom:925.463850px;}
.y22{bottom:925.469700px;}
.y48{bottom:925.757850px;}
.y6d{bottom:925.763700px;}
.ycd{bottom:926.057700px;}
.yf1{bottom:926.069700px;}
.y1df{bottom:926.579850px;}
.y138{bottom:926.951850px;}
.y93{bottom:926.957700px;}
.y182{bottom:927.563550px;}
.y15e{bottom:927.857700px;}
.y1ac{bottom:940.163700px;}
.y4{bottom:940.763700px;}
.y113{bottom:948.107850px;}
.y21{bottom:948.113700px;}
.y47{bottom:948.257850px;}
.y6c{bottom:948.263700px;}
.ycc{bottom:948.413700px;}
.y137{bottom:948.857850px;}
.y92{bottom:948.863700px;}
.y181{bottom:949.163700px;}
.y15d{bottom:949.313700px;}
.y1ab{bottom:955.463700px;}
.h8{height:24.630908px;}
.hb{height:30.313623px;}
.h11{height:39.888000px;}
.h9{height:40.757812px;}
.h3{height:41.396484px;}
.h10{height:43.761600px;}
.h5{height:50.580000px;}
.h2{height:50.947266px;}
.h6{height:61.136719px;}
.he{height:61.425919px;}
.hc{height:61.545919px;}
.hf{height:61.832719px;}
.hd{height:65.811703px;}
.ha{height:66.555703px;}
.h4{height:101.894531px;}
.h7{height:306.026700px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x1{left:88.759800px;}
.x4{left:103.654200px;}
.x6{left:112.500000px;}
.x7{left:127.381950px;}
.x3{left:133.570200px;}
.x2{left:156.259800px;}
.x5{left:625.781250px;}
@media print{
.v4{vertical-align:-14.960000pt;}
.v5{vertical-align:-12.542933pt;}
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.080000pt;}
.v3{vertical-align:21.120000pt;}
.v2{vertical-align:166.400000pt;}
.ls18{letter-spacing:-6.144000pt;}
.ls36{letter-spacing:-5.120000pt;}
.ls61{letter-spacing:-4.949333pt;}
.ls41{letter-spacing:-4.928000pt;}
.ls52{letter-spacing:-4.800000pt;}
.ls51{letter-spacing:-4.544000pt;}
.ls54{letter-spacing:-3.200000pt;}
.ls42{letter-spacing:-2.944000pt;}
.ls35{letter-spacing:-2.816000pt;}
.ls19{letter-spacing:-2.688000pt;}
.ls1d{letter-spacing:-2.496000pt;}
.lsf{letter-spacing:-2.176000pt;}
.ls29{letter-spacing:-2.112000pt;}
.ls66{letter-spacing:-2.090667pt;}
.ls6e{letter-spacing:-2.080000pt;}
.ls6c{letter-spacing:-1.877333pt;}
.ls63{letter-spacing:-1.749333pt;}
.ls5a{letter-spacing:-1.728000pt;}
.ls5f{letter-spacing:-1.706667pt;}
.ls39{letter-spacing:-1.664000pt;}
.ls37{letter-spacing:-1.472000pt;}
.ls1f{letter-spacing:-1.280000pt;}
.ls3d{letter-spacing:-1.216000pt;}
.ls47{letter-spacing:-1.024000pt;}
.ls49{letter-spacing:-0.960000pt;}
.ls48{letter-spacing:-0.896000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.ls1c{letter-spacing:-0.768000pt;}
.ls1b{letter-spacing:-0.704000pt;}
.ls34{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.576000pt;}
.ls25{letter-spacing:-0.512000pt;}
.ls30{letter-spacing:-0.448000pt;}
.ls65{letter-spacing:-0.426667pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls40{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.042667pt;}
.ls9{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.256000pt;}
.ls62{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.512000pt;}
.ls6b{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.704000pt;}
.ls4b{letter-spacing:0.768000pt;}
.ls8{letter-spacing:0.832000pt;}
.ls2d{letter-spacing:0.896000pt;}
.ls53{letter-spacing:1.024000pt;}
.ls12{letter-spacing:1.088000pt;}
.ls6{letter-spacing:1.216000pt;}
.ls2c{letter-spacing:1.408000pt;}
.ls3b{letter-spacing:1.472000pt;}
.ls5c{letter-spacing:1.664000pt;}
.ls3f{letter-spacing:1.796800pt;}
.ls3c{letter-spacing:2.048000pt;}
.ls55{letter-spacing:2.112000pt;}
.ls68{letter-spacing:2.432000pt;}
.ls67{letter-spacing:2.474667pt;}
.ls4d{letter-spacing:2.688000pt;}
.ls6d{letter-spacing:2.773333pt;}
.ls60{letter-spacing:2.816000pt;}
.ls5d{letter-spacing:3.072000pt;}
.ls33{letter-spacing:3.136000pt;}
.lse{letter-spacing:3.200000pt;}
.ls5b{letter-spacing:3.264000pt;}
.ls69{letter-spacing:3.370667pt;}
.ls45{letter-spacing:3.584000pt;}
.ls3e{letter-spacing:3.840000pt;}
.ls3a{letter-spacing:3.904000pt;}
.ls6a{letter-spacing:3.925333pt;}
.ls31{letter-spacing:3.968000pt;}
.ls32{letter-spacing:4.032000pt;}
.ls2{letter-spacing:4.053333pt;}
.ls5e{letter-spacing:4.224000pt;}
.ls4a{letter-spacing:4.544000pt;}
.ls46{letter-spacing:4.672000pt;}
.ls4c{letter-spacing:5.312000pt;}
.ls56{letter-spacing:6.144000pt;}
.ls58{letter-spacing:6.272000pt;}
.ls22{letter-spacing:6.400000pt;}
.ls3{letter-spacing:6.656000pt;}
.ls27{letter-spacing:7.346667pt;}
.ls16{letter-spacing:7.413333pt;}
.ls38{letter-spacing:7.466667pt;}
.ls0{letter-spacing:7.520000pt;}
.ls4f{letter-spacing:8.256000pt;}
.ls50{letter-spacing:8.320000pt;}
.ls4e{letter-spacing:8.384000pt;}
.ls57{letter-spacing:8.512000pt;}
.ls59{letter-spacing:8.768000pt;}
.ls15{letter-spacing:9.024000pt;}
.ls43{letter-spacing:9.152000pt;}
.ls26{letter-spacing:9.280000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls28{letter-spacing:9.600000pt;}
.ls4{letter-spacing:9.712813pt;}
.ls44{letter-spacing:9.728000pt;}
.ls2e{letter-spacing:10.112000pt;}
.ls17{letter-spacing:11.253333pt;}
.ws3{word-spacing:-71.893333pt;}
.ws60{word-spacing:-43.904000pt;}
.wsa{word-spacing:-43.776000pt;}
.ws45{word-spacing:-43.648000pt;}
.ws63{word-spacing:-43.584000pt;}
.ws7{word-spacing:-43.456000pt;}
.ws6f{word-spacing:-43.328000pt;}
.ws6e{word-spacing:-43.264000pt;}
.ws9{word-spacing:-43.200000pt;}
.ws5{word-spacing:-43.136000pt;}
.ws52{word-spacing:-43.072000pt;}
.ws22{word-spacing:-43.008000pt;}
.wsb{word-spacing:-42.944000pt;}
.ws8{word-spacing:-42.816000pt;}
.ws70{word-spacing:-42.752000pt;}
.ws53{word-spacing:-42.688000pt;}
.ws2f{word-spacing:-42.624000pt;}
.ws46{word-spacing:-42.560000pt;}
.ws47{word-spacing:-42.496000pt;}
.ws1f{word-spacing:-42.432000pt;}
.ws20{word-spacing:-42.368000pt;}
.ws5a{word-spacing:-42.240000pt;}
.ws1d{word-spacing:-36.992000pt;}
.ws1{word-spacing:-35.946667pt;}
.ws4c{word-spacing:-28.757333pt;}
.ws7c{word-spacing:-28.544000pt;}
.ws5e{word-spacing:-27.584000pt;}
.ws21{word-spacing:-22.506667pt;}
.ws49{word-spacing:-22.453333pt;}
.ws69{word-spacing:-18.560000pt;}
.ws68{word-spacing:-18.432000pt;}
.ws61{word-spacing:-18.048000pt;}
.ws4{word-spacing:-18.026667pt;}
.ws1e{word-spacing:-17.984000pt;}
.ws40{word-spacing:-17.856000pt;}
.ws37{word-spacing:-17.792000pt;}
.ws38{word-spacing:-17.664000pt;}
.ws59{word-spacing:-17.600000pt;}
.ws55{word-spacing:-17.536000pt;}
.ws67{word-spacing:-17.472000pt;}
.ws4b{word-spacing:-17.408000pt;}
.ws4a{word-spacing:-14.986667pt;}
.ws5f{word-spacing:-13.440000pt;}
.ws62{word-spacing:-13.184000pt;}
.ws54{word-spacing:-13.056000pt;}
.ws48{word-spacing:-12.864000pt;}
.ws1c{word-spacing:-12.588800pt;}
.ws23{word-spacing:-11.989333pt;}
.ws77{word-spacing:-11.562667pt;}
.ws75{word-spacing:-11.349333pt;}
.ws72{word-spacing:-10.965333pt;}
.ws6{word-spacing:-10.794667pt;}
.ws73{word-spacing:-10.282667pt;}
.ws3d{word-spacing:-10.112000pt;}
.ws7d{word-spacing:-10.069333pt;}
.ws58{word-spacing:-9.728000pt;}
.ws34{word-spacing:-9.600000pt;}
.wsf{word-spacing:-9.546667pt;}
.ws31{word-spacing:-9.280000pt;}
.ws57{word-spacing:-9.152000pt;}
.ws64{word-spacing:-8.789333pt;}
.ws6d{word-spacing:-8.768000pt;}
.ws1b{word-spacing:-7.573333pt;}
.ws29{word-spacing:-7.520000pt;}
.ws33{word-spacing:-7.346667pt;}
.ws7e{word-spacing:-6.144000pt;}
.ws10{word-spacing:-3.200000pt;}
.ws80{word-spacing:-2.773333pt;}
.ws5b{word-spacing:-1.728000pt;}
.ws71{word-spacing:-1.664000pt;}
.ws16{word-spacing:-1.088000pt;}
.ws66{word-spacing:-1.024000pt;}
.ws3b{word-spacing:-0.896000pt;}
.ws13{word-spacing:-0.832000pt;}
.ws6a{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.704000pt;}
.ws2b{word-spacing:-0.640000pt;}
.ws2a{word-spacing:-0.576000pt;}
.ws84{word-spacing:-0.533333pt;}
.ws3c{word-spacing:-0.512000pt;}
.ws3e{word-spacing:-0.448000pt;}
.ws39{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.320000pt;}
.ws35{word-spacing:-0.256000pt;}
.ws18{word-spacing:-0.192000pt;}
.ws32{word-spacing:-0.128000pt;}
.ws15{word-spacing:-0.064000pt;}
.ws79{word-spacing:-0.042667pt;}
.wsc{word-spacing:0.000000pt;}
.ws43{word-spacing:0.064000pt;}
.ws2c{word-spacing:0.128000pt;}
.ws1a{word-spacing:0.192000pt;}
.ws2e{word-spacing:0.213333pt;}
.ws19{word-spacing:0.256000pt;}
.ws25{word-spacing:0.320000pt;}
.ws14{word-spacing:0.384000pt;}
.ws7b{word-spacing:0.426667pt;}
.ws44{word-spacing:0.448000pt;}
.ws30{word-spacing:0.512000pt;}
.ws41{word-spacing:0.576000pt;}
.ws4d{word-spacing:0.640000pt;}
.ws27{word-spacing:0.704000pt;}
.ws42{word-spacing:0.768000pt;}
.ws26{word-spacing:0.832000pt;}
.ws65{word-spacing:0.896000pt;}
.ws5d{word-spacing:0.960000pt;}
.ws5c{word-spacing:1.024000pt;}
.ws81{word-spacing:1.109333pt;}
.ws4f{word-spacing:1.216000pt;}
.ws82{word-spacing:1.237333pt;}
.ws2d{word-spacing:1.280000pt;}
.ws50{word-spacing:1.472000pt;}
.ws51{word-spacing:1.664000pt;}
.ws6b{word-spacing:1.728000pt;}
.ws78{word-spacing:1.749333pt;}
.ws7f{word-spacing:1.877333pt;}
.ws3f{word-spacing:1.920000pt;}
.ws83{word-spacing:2.080000pt;}
.ws7a{word-spacing:2.090667pt;}
.ws36{word-spacing:2.112000pt;}
.ws12{word-spacing:2.176000pt;}
.ws28{word-spacing:2.496000pt;}
.ws24{word-spacing:2.688000pt;}
.ws4e{word-spacing:2.816000pt;}
.ws56{word-spacing:2.944000pt;}
.ws74{word-spacing:4.544000pt;}
.ws3a{word-spacing:4.608000pt;}
.ws76{word-spacing:4.949333pt;}
.ws6c{word-spacing:6.272000pt;}
.wse{word-spacing:11.146667pt;}
.ws2{word-spacing:30.880000pt;}
.wsd{word-spacing:65.013333pt;}
.ws0{word-spacing:129.866667pt;}
._f{margin-left:-843.466667pt;}
._1b{margin-left:-13.621333pt;}
._1a{margin-left:-12.053333pt;}
._19{margin-left:-10.912000pt;}
._14{margin-left:-9.600000pt;}
._1c{margin-left:-8.704000pt;}
._15{margin-left:-7.562667pt;}
._10{margin-left:-6.528000pt;}
._16{margin-left:-5.632000pt;}
._d{margin-left:-4.661333pt;}
._11{margin-left:-3.733333pt;}
._b{margin-left:-2.826667pt;}
._2{margin-left:-1.760000pt;}
._3{width:1.440000pt;}
._4{width:3.200000pt;}
._0{width:4.586667pt;}
._e{width:5.578667pt;}
._8{width:6.506667pt;}
._9{width:7.573333pt;}
._a{width:8.800000pt;}
._c{width:10.314667pt;}
._12{width:12.010667pt;}
._18{width:15.925333pt;}
._17{width:19.392000pt;}
._13{width:28.129867pt;}
._1{width:45.546667pt;}
._6{width:64.960000pt;}
._5{width:68.693333pt;}
._7{width:146.826667pt;}
.fs8{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:388.605333pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:53.562533pt;}
.y3{bottom:53.567733pt;}
.y45{bottom:70.895867pt;}
.y2{bottom:70.901067pt;}
.y44{bottom:82.895867pt;}
.y1{bottom:82.901067pt;}
.y6b{bottom:122.895867pt;}
.y1aa{bottom:122.900800pt;}
.y43{bottom:122.901067pt;}
.yb7{bottom:122.970400pt;}
.y15c{bottom:123.029467pt;}
.ycb{bottom:123.061333pt;}
.y20{bottom:127.495333pt;}
.yf0{bottom:127.642400pt;}
.y207{bottom:128.357333pt;}
.y1de{bottom:128.501067pt;}
.y136{bottom:136.229200pt;}
.y1a9{bottom:136.234133pt;}
.y91{bottom:136.234400pt;}
.y42{bottom:139.974400pt;}
.y1dd{bottom:142.101067pt;}
.yb6{bottom:142.442400pt;}
.y15b{bottom:142.501467pt;}
.yca{bottom:142.533333pt;}
.y6a{bottom:142.895867pt;}
.y8e{bottom:142.901067pt;}
.y206{bottom:145.024000pt;}
.yef{bottom:147.514400pt;}
.y1f{bottom:148.295333pt;}
.y90{bottom:149.567733pt;}
.y135{bottom:153.302533pt;}
.y1a8{bottom:153.307467pt;}
.y112{bottom:153.307733pt;}
.y1dc{bottom:155.701067pt;}
.y41{bottom:159.974400pt;}
.y205{bottom:161.824000pt;}
.yb5{bottom:161.914400pt;}
.y15a{bottom:161.973467pt;}
.yc9{bottom:162.005333pt;}
.y69{bottom:162.895867pt;}
.y8d{bottom:162.901067pt;}
.y8f{bottom:166.641067pt;}
.yee{bottom:167.386400pt;}
.y1e{bottom:169.095333pt;}
.y1db{bottom:169.301067pt;}
.y180{bottom:176.933067pt;}
.y204{bottom:178.624000pt;}
.y40{bottom:179.974400pt;}
.yb4{bottom:181.386400pt;}
.y159{bottom:181.445467pt;}
.yc8{bottom:181.477333pt;}
.y68{bottom:182.895867pt;}
.y8c{bottom:182.901067pt;}
.y1a7{bottom:186.031467pt;}
.yed{bottom:187.258400pt;}
.y1d{bottom:189.895333pt;}
.y134{bottom:191.189200pt;}
.y111{bottom:191.711733pt;}
.y17f{bottom:195.861067pt;}
.y1da{bottom:196.501067pt;}
.y1a6{bottom:199.364800pt;}
.yb3{bottom:200.858400pt;}
.y158{bottom:200.917467pt;}
.yc7{bottom:200.949333pt;}
.y67{bottom:202.895867pt;}
.y8b{bottom:202.901067pt;}
.y203{bottom:205.557333pt;}
.yec{bottom:207.130400pt;}
.y1d9{bottom:210.101067pt;}
.y1c{bottom:210.695333pt;}
.y133{bottom:210.917200pt;}
.y110{bottom:211.439733pt;}
.y1a5{bottom:212.431467pt;}
.y17e{bottom:214.789067pt;}
.y3f{bottom:218.661067pt;}
.yb2{bottom:220.330400pt;}
.y157{bottom:220.389467pt;}
.yc6{bottom:220.421333pt;}
.y66{bottom:222.895867pt;}
.y8a{bottom:222.901067pt;}
.y1d8{bottom:223.701067pt;}
.y1a4{bottom:225.498133pt;}
.yeb{bottom:227.002400pt;}
.y132{bottom:230.645200pt;}
.y10f{bottom:231.333067pt;}
.y1b{bottom:231.495333pt;}
.y17d{bottom:233.717067pt;}
.y1d7{bottom:237.301067pt;}
.y1a3{bottom:238.564800pt;}
.y3e{bottom:238.789067pt;}
.yb1{bottom:239.802400pt;}
.y156{bottom:239.861467pt;}
.yc5{bottom:239.893333pt;}
.y202{bottom:242.490667pt;}
.y65{bottom:242.895867pt;}
.y89{bottom:242.901067pt;}
.yea{bottom:246.874400pt;}
.y131{bottom:250.373200pt;}
.y1d6{bottom:250.901067pt;}
.y10e{bottom:251.061067pt;}
.y1a2{bottom:251.631467pt;}
.y1a{bottom:252.295333pt;}
.y17c{bottom:252.645067pt;}
.y3d{bottom:258.917067pt;}
.yb0{bottom:259.274400pt;}
.y201{bottom:259.290667pt;}
.y155{bottom:259.333467pt;}
.yc4{bottom:259.365333pt;}
.y64{bottom:262.895867pt;}
.y88{bottom:262.901067pt;}
.y1d5{bottom:264.501067pt;}
.y1a1{bottom:264.698133pt;}
.ye9{bottom:266.746400pt;}
.y130{bottom:270.101200pt;}
.y10d{bottom:270.789067pt;}
.y17b{bottom:271.573067pt;}
.y19{bottom:273.095333pt;}
.y200{bottom:276.090667pt;}
.y1a0{bottom:277.764800pt;}
.y1d4{bottom:278.101067pt;}
.yaf{bottom:278.746400pt;}
.y154{bottom:278.805467pt;}
.yc3{bottom:278.837333pt;}
.y3c{bottom:279.045067pt;}
.y63{bottom:282.895867pt;}
.y87{bottom:282.901067pt;}
.ye8{bottom:286.618400pt;}
.y12f{bottom:289.978533pt;}
.y17a{bottom:290.346400pt;}
.y10c{bottom:290.517067pt;}
.y19f{bottom:290.831467pt;}
.y1d3{bottom:291.701067pt;}
.y1ff{bottom:292.890667pt;}
.y18{bottom:293.895333pt;}
.yae{bottom:298.218400pt;}
.y153{bottom:298.277467pt;}
.yc2{bottom:298.309333pt;}
.y3b{bottom:299.173067pt;}
.y62{bottom:302.895867pt;}
.y86{bottom:302.901067pt;}
.y19e{bottom:303.898133pt;}
.y1d2{bottom:305.301067pt;}
.ye7{bottom:306.490400pt;}
.y1fe{bottom:309.690667pt;}
.y12e{bottom:309.706533pt;}
.y179{bottom:309.818400pt;}
.y10b{bottom:310.245067pt;}
.y17{bottom:314.695333pt;}
.y19d{bottom:316.964800pt;}
.yad{bottom:317.690400pt;}
.y152{bottom:317.749467pt;}
.yc1{bottom:317.781333pt;}
.y1d1{bottom:318.901067pt;}
.y3a{bottom:319.306400pt;}
.y61{bottom:322.895867pt;}
.y85{bottom:322.901067pt;}
.ye6{bottom:326.362400pt;}
.y1fd{bottom:326.490667pt;}
.y178{bottom:328.890400pt;}
.y12d{bottom:329.434533pt;}
.y10a{bottom:329.973067pt;}
.y19c{bottom:330.031467pt;}
.y1d0{bottom:332.501067pt;}
.y16{bottom:335.495333pt;}
.yac{bottom:337.162400pt;}
.y151{bottom:337.221467pt;}
.yc0{bottom:337.253333pt;}
.y39{bottom:339.482400pt;}
.y60{bottom:342.895867pt;}
.y84{bottom:342.901067pt;}
.y19b{bottom:343.098133pt;}
.y1fc{bottom:343.290667pt;}
.y1cf{bottom:346.101067pt;}
.ye5{bottom:346.234400pt;}
.y177{bottom:347.962400pt;}
.y12c{bottom:349.162533pt;}
.y109{bottom:349.701067pt;}
.y19a{bottom:356.164800pt;}
.y15{bottom:356.295333pt;}
.yab{bottom:356.634400pt;}
.y150{bottom:356.693467pt;}
.ybf{bottom:356.725333pt;}
.y38{bottom:359.610400pt;}
.y1ce{bottom:359.701067pt;}
.y1fb{bottom:360.090667pt;}
.y5f{bottom:362.895867pt;}
.y83{bottom:362.901067pt;}
.ye4{bottom:366.106400pt;}
.y176{bottom:367.034400pt;}
.y12b{bottom:368.890533pt;}
.y199{bottom:369.231467pt;}
.y108{bottom:369.429067pt;}
.y1cd{bottom:373.301067pt;}
.yaa{bottom:376.106400pt;}
.y14f{bottom:376.165467pt;}
.ybe{bottom:376.197333pt;}
.y1fa{bottom:376.890667pt;}
.y14{bottom:377.095333pt;}
.y37{bottom:379.738400pt;}
.y198{bottom:382.298133pt;}
.y5e{bottom:382.895867pt;}
.y82{bottom:382.901067pt;}
.ye3{bottom:385.978400pt;}
.y175{bottom:386.106400pt;}
.y1cc{bottom:386.901067pt;}
.y12a{bottom:388.618533pt;}
.y107{bottom:389.157067pt;}
.y1f9{bottom:393.690667pt;}
.ya9{bottom:395.578400pt;}
.y14e{bottom:395.637467pt;}
.ybd{bottom:395.669333pt;}
.y13{bottom:397.895333pt;}
.y36{bottom:399.866400pt;}
.y1cb{bottom:400.501067pt;}
.y197{bottom:401.034133pt;}
.y5d{bottom:402.895867pt;}
.y81{bottom:402.901067pt;}
.y174{bottom:405.178400pt;}
.ye2{bottom:405.850400pt;}
.y129{bottom:408.346533pt;}
.y106{bottom:408.885067pt;}
.y1f8{bottom:410.490667pt;}
.y1ca{bottom:414.101067pt;}
.ya8{bottom:415.050400pt;}
.y14d{bottom:415.109467pt;}
.ybc{bottom:415.141333pt;}
.y12{bottom:418.695333pt;}
.y35{bottom:419.994400pt;}
.y5c{bottom:422.895867pt;}
.y80{bottom:422.901067pt;}
.y173{bottom:424.250400pt;}
.ye1{bottom:425.722400pt;}
.y1f7{bottom:427.290667pt;}
.y1c9{bottom:427.701067pt;}
.y128{bottom:428.074533pt;}
.y105{bottom:428.613067pt;}
.ya7{bottom:434.522400pt;}
.y14c{bottom:434.581467pt;}
.ybb{bottom:434.613333pt;}
.y11{bottom:439.495333pt;}
.y34{bottom:440.122400pt;}
.y196{bottom:440.500933pt;}
.y1c8{bottom:441.301067pt;}
.y5b{bottom:442.895867pt;}
.y7f{bottom:442.901067pt;}
.y172{bottom:443.322400pt;}
.y1f6{bottom:444.090667pt;}
.ye0{bottom:445.594400pt;}
.y127{bottom:447.802533pt;}
.y104{bottom:448.341067pt;}
.ya6{bottom:453.994400pt;}
.y14b{bottom:454.053467pt;}
.yba{bottom:454.085333pt;}
.y1c7{bottom:454.901067pt;}
.y195{bottom:459.700933pt;}
.y33{bottom:460.250400pt;}
.y10{bottom:460.295333pt;}
.y1f5{bottom:460.890667pt;}
.y171{bottom:462.394400pt;}
.y5a{bottom:462.895867pt;}
.y7e{bottom:462.901067pt;}
.ydf{bottom:465.466400pt;}
.y126{bottom:467.530533pt;}
.y103{bottom:468.069067pt;}
.y1c6{bottom:468.501067pt;}
.ya5{bottom:473.466400pt;}
.y14a{bottom:473.525467pt;}
.yb9{bottom:473.557333pt;}
.y1f4{bottom:477.690667pt;}
.y194{bottom:478.900933pt;}
.y32{bottom:480.378400pt;}
.yf{bottom:481.095333pt;}
.y170{bottom:481.466400pt;}
.y1c5{bottom:482.101067pt;}
.y59{bottom:482.895867pt;}
.y7d{bottom:482.901067pt;}
.yde{bottom:485.338400pt;}
.y125{bottom:487.258533pt;}
.y102{bottom:487.797067pt;}
.ya4{bottom:492.938400pt;}
.y149{bottom:492.997467pt;}
.yb8{bottom:493.029333pt;}
.y1f3{bottom:494.490667pt;}
.y1c4{bottom:495.701067pt;}
.y193{bottom:498.100933pt;}
.y31{bottom:500.506400pt;}
.y16f{bottom:500.538400pt;}
.ye{bottom:501.895333pt;}
.y58{bottom:502.895867pt;}
.y7c{bottom:502.901067pt;}
.ydd{bottom:505.210400pt;}
.y124{bottom:506.986533pt;}
.y101{bottom:507.525067pt;}
.y1c3{bottom:509.301067pt;}
.y1f2{bottom:511.290667pt;}
.ya3{bottom:512.410400pt;}
.y148{bottom:512.469467pt;}
.y192{bottom:517.300933pt;}
.y16e{bottom:519.610400pt;}
.y30{bottom:520.634400pt;}
.yd{bottom:522.695333pt;}
.y57{bottom:522.895867pt;}
.y7b{bottom:522.901067pt;}
.ydc{bottom:525.082400pt;}
.y123{bottom:526.714533pt;}
.y100{bottom:527.253067pt;}
.y1f1{bottom:528.090667pt;}
.ya2{bottom:531.882400pt;}
.y147{bottom:531.941467pt;}
.y191{bottom:536.500933pt;}
.y1c2{bottom:536.501067pt;}
.y16d{bottom:538.682400pt;}
.y2f{bottom:540.767733pt;}
.y56{bottom:542.895867pt;}
.y7a{bottom:542.901067pt;}
.yb{bottom:543.495333pt;}
.y1f0{bottom:544.890667pt;}
.ydb{bottom:544.954400pt;}
.y122{bottom:546.442533pt;}
.yff{bottom:546.981067pt;}
.y1c1{bottom:550.101067pt;}
.ya1{bottom:551.354400pt;}
.y146{bottom:551.413467pt;}
.y190{bottom:555.700933pt;}
.y16c{bottom:557.754400pt;}
.y1ef{bottom:561.690667pt;}
.y55{bottom:562.895867pt;}
.y79{bottom:562.901067pt;}
.y1c0{bottom:563.701067pt;}
.yc{bottom:564.295333pt;}
.yda{bottom:564.826400pt;}
.y121{bottom:566.170533pt;}
.yfe{bottom:566.709067pt;}
.ya0{bottom:570.826400pt;}
.y145{bottom:570.885467pt;}
.y18f{bottom:574.900933pt;}
.y16b{bottom:576.826400pt;}
.y1bf{bottom:577.301067pt;}
.y1ee{bottom:578.490667pt;}
.y2e{bottom:581.103733pt;}
.y54{bottom:582.895867pt;}
.y78{bottom:582.901067pt;}
.yd9{bottom:584.698400pt;}
.y120{bottom:585.898533pt;}
.yfd{bottom:586.437067pt;}
.y9f{bottom:590.298400pt;}
.y144{bottom:590.357467pt;}
.y1be{bottom:590.901067pt;}
.y18e{bottom:594.100933pt;}
.y1ed{bottom:595.290667pt;}
.y16a{bottom:595.898400pt;}
.y2d{bottom:601.231733pt;}
.y53{bottom:602.895867pt;}
.y77{bottom:602.901067pt;}
.y1bd{bottom:604.501067pt;}
.yd8{bottom:604.570400pt;}
.y11f{bottom:605.626533pt;}
.yfc{bottom:606.165067pt;}
.y143{bottom:609.765200pt;}
.y9e{bottom:609.770400pt;}
.y18d{bottom:613.300933pt;}
.y169{bottom:614.970400pt;}
.y1ec{bottom:617.823867pt;}
.y1bc{bottom:618.101067pt;}
.y2c{bottom:621.359733pt;}
.y52{bottom:622.895867pt;}
.y76{bottom:622.901067pt;}
.yd7{bottom:624.442400pt;}
.y11e{bottom:625.354533pt;}
.yfb{bottom:625.893067pt;}
.y142{bottom:629.237200pt;}
.y9d{bottom:629.242400pt;}
.y1bb{bottom:631.701067pt;}
.y18c{bottom:632.500933pt;}
.y168{bottom:634.042400pt;}
.y1eb{bottom:635.285200pt;}
.y2b{bottom:641.487733pt;}
.y51{bottom:642.895867pt;}
.y75{bottom:642.901067pt;}
.yd6{bottom:644.314400pt;}
.y11d{bottom:645.082533pt;}
.y1ba{bottom:645.301067pt;}
.yfa{bottom:645.621067pt;}
.ya{bottom:647.495200pt;}
.y141{bottom:648.709200pt;}
.y9c{bottom:648.714400pt;}
.y18b{bottom:651.700933pt;}
.y167{bottom:653.114400pt;}
.y1b9{bottom:658.901067pt;}
.y2a{bottom:661.615733pt;}
.y50{bottom:662.895867pt;}
.y74{bottom:662.901067pt;}
.yd5{bottom:664.186400pt;}
.y11c{bottom:664.810533pt;}
.y9{bottom:664.961867pt;}
.yf9{bottom:665.349067pt;}
.y140{bottom:668.181200pt;}
.y9b{bottom:668.186400pt;}
.y18a{bottom:670.900933pt;}
.y166{bottom:672.186400pt;}
.y1b8{bottom:672.501067pt;}
.y1ea{bottom:675.551867pt;}
.y29{bottom:681.743733pt;}
.y4f{bottom:682.895867pt;}
.y73{bottom:682.901067pt;}
.yd4{bottom:684.058400pt;}
.y11b{bottom:684.538533pt;}
.yf8{bottom:685.077067pt;}
.y1b7{bottom:686.101067pt;}
.y13f{bottom:687.653200pt;}
.y9a{bottom:687.658400pt;}
.y1e9{bottom:689.013200pt;}
.y189{bottom:690.100933pt;}
.y165{bottom:691.258400pt;}
.y1b6{bottom:699.701067pt;}
.y28{bottom:701.871733pt;}
.y1e8{bottom:702.474533pt;}
.y4e{bottom:702.895867pt;}
.y72{bottom:702.901067pt;}
.y8{bottom:703.216000pt;}
.yd3{bottom:703.930400pt;}
.y11a{bottom:704.266533pt;}
.yf7{bottom:704.805067pt;}
.y13e{bottom:707.125200pt;}
.y99{bottom:707.130400pt;}
.y188{bottom:709.300933pt;}
.y164{bottom:710.330400pt;}
.y1b5{bottom:713.301067pt;}
.y1e7{bottom:715.935867pt;}
.y27{bottom:721.999733pt;}
.y4d{bottom:722.895867pt;}
.y71{bottom:722.901067pt;}
.y7{bottom:723.216000pt;}
.yd2{bottom:723.802400pt;}
.y119{bottom:723.994533pt;}
.yf6{bottom:724.533067pt;}
.y13d{bottom:726.597200pt;}
.y98{bottom:726.602400pt;}
.y1b4{bottom:726.901067pt;}
.y187{bottom:728.500933pt;}
.y1e6{bottom:729.397200pt;}
.y163{bottom:729.402400pt;}
.y1b3{bottom:740.501067pt;}
.y26{bottom:742.127733pt;}
.y1e5{bottom:742.858533pt;}
.y4c{bottom:742.895867pt;}
.y70{bottom:742.901067pt;}
.yd1{bottom:743.674400pt;}
.y118{bottom:743.722533pt;}
.yf5{bottom:744.261067pt;}
.y13c{bottom:746.069200pt;}
.y97{bottom:746.074400pt;}
.y186{bottom:747.700933pt;}
.y162{bottom:748.474400pt;}
.y1b2{bottom:754.101067pt;}
.y1e4{bottom:756.319867pt;}
.y25{bottom:762.255733pt;}
.y4b{bottom:762.895867pt;}
.y6f{bottom:762.901067pt;}
.y117{bottom:763.450533pt;}
.yd0{bottom:763.546400pt;}
.yf4{bottom:763.989067pt;}
.y13b{bottom:765.541200pt;}
.y96{bottom:765.546400pt;}
.y185{bottom:766.900933pt;}
.y161{bottom:767.546400pt;}
.y1b1{bottom:767.701067pt;}
.y1e3{bottom:769.781200pt;}
.y1b0{bottom:781.301067pt;}
.y24{bottom:782.383733pt;}
.y4a{bottom:782.895867pt;}
.y6{bottom:782.901067pt;}
.y116{bottom:783.178533pt;}
.y1e2{bottom:783.242533pt;}
.ycf{bottom:783.418400pt;}
.yf3{bottom:783.717067pt;}
.y13a{bottom:785.013200pt;}
.y95{bottom:785.018400pt;}
.y184{bottom:786.100933pt;}
.y160{bottom:786.618400pt;}
.y1af{bottom:794.901067pt;}
.y1e1{bottom:796.703867pt;}
.y23{bottom:802.511733pt;}
.y49{bottom:802.895867pt;}
.y6e{bottom:802.901067pt;}
.y115{bottom:802.906533pt;}
.yce{bottom:803.290400pt;}
.yf2{bottom:803.445067pt;}
.y139{bottom:804.485200pt;}
.y94{bottom:804.490400pt;}
.y183{bottom:805.300933pt;}
.y15f{bottom:805.690400pt;}
.y1ae{bottom:808.501067pt;}
.y5{bottom:809.567733pt;}
.y1e0{bottom:810.165200pt;}
.y1ad{bottom:822.101067pt;}
.y114{bottom:822.634533pt;}
.y22{bottom:822.639733pt;}
.y48{bottom:822.895867pt;}
.y6d{bottom:822.901067pt;}
.ycd{bottom:823.162400pt;}
.yf1{bottom:823.173067pt;}
.y1df{bottom:823.626533pt;}
.y138{bottom:823.957200pt;}
.y93{bottom:823.962400pt;}
.y182{bottom:824.500933pt;}
.y15e{bottom:824.762400pt;}
.y1ac{bottom:835.701067pt;}
.y4{bottom:836.234400pt;}
.y113{bottom:842.762533pt;}
.y21{bottom:842.767733pt;}
.y47{bottom:842.895867pt;}
.y6c{bottom:842.901067pt;}
.ycc{bottom:843.034400pt;}
.y137{bottom:843.429200pt;}
.y92{bottom:843.434400pt;}
.y181{bottom:843.701067pt;}
.y15d{bottom:843.834400pt;}
.y1ab{bottom:849.301067pt;}
.h8{height:21.894141pt;}
.hb{height:26.945443pt;}
.h11{height:35.456000pt;}
.h9{height:36.229167pt;}
.h3{height:36.796875pt;}
.h10{height:38.899200pt;}
.h5{height:44.960000pt;}
.h2{height:45.286458pt;}
.h6{height:54.343750pt;}
.he{height:54.600817pt;}
.hc{height:54.707483pt;}
.hf{height:54.962417pt;}
.hd{height:58.499292pt;}
.ha{height:59.160625pt;}
.h4{height:90.572917pt;}
.h7{height:272.023733pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x1{left:78.897600pt;}
.x4{left:92.137067pt;}
.x6{left:100.000000pt;}
.x7{left:113.228400pt;}
.x3{left:118.729067pt;}
.x2{left:138.897600pt;}
.x5{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; }
  