
    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_01febef4abb2ca6b5121785f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_cd6a7d3cc16955e61ef3ff83.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.874023;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_24434dc40854f92e5dcd5245.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_b4178e305399ceaeaecf6cfc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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_817e6aab8235a5077d7517c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_1715bc6cf0fd747b4486c8dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_155f9a0df7258f82c6e785fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900391;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_46339c390c0b132b880b1af8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_89c07f7947257ae6d1cf4e0e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_ddb892be8ea42834f8b7de90.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_3dc287eb95e534758401c4d4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.724000;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_9c2ab0fb12fff621d9fb0665.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900391;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_dceeceb2577c6f18cde48be7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4da9dd5f0f146dabc2dd9106.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.857910;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);}
.v7{vertical-align:-23.975400px;}
.v3{vertical-align:-21.978000px;}
.v1{vertical-align:-17.007600px;}
.v5{vertical-align:-1.182600px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.182600px;}
.v6{vertical-align:21.978000px;}
.v2{vertical-align:23.976000px;}
.lsa{letter-spacing:-7.992000px;}
.ls9{letter-spacing:-4.920000px;}
.ls2{letter-spacing:-1.518000px;}
.ls1{letter-spacing:-1.296000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:2.862000px;}
.ls3{letter-spacing:3.702000px;}
.ls5{letter-spacing:6.621000px;}
.ls6{letter-spacing:48.000000px;}
.ls8{letter-spacing:198.000000px;}
.ls4{letter-spacing:199.656000px;}
.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;}
}
.ws7{word-spacing:-23.976000px;}
.ws10{word-spacing:-22.896000px;}
.ws4{word-spacing:-22.356000px;}
.wsb{word-spacing:-21.708000px;}
.wsa{word-spacing:-19.656000px;}
.wsaf{word-spacing:-18.984000px;}
.ws11{word-spacing:-18.000000px;}
.ws12{word-spacing:-16.704000px;}
.ws72{word-spacing:-15.860996px;}
.ws2{word-spacing:-15.228000px;}
.ws96{word-spacing:-14.982000px;}
.ws8{word-spacing:-14.580000px;}
.ws5{word-spacing:-13.716000px;}
.ws9f{word-spacing:-13.620000px;}
.wsa4{word-spacing:-13.560000px;}
.ws6a{word-spacing:-13.007023px;}
.ws3{word-spacing:-12.528000px;}
.ws13{word-spacing:-10.494000px;}
.wsb0{word-spacing:-10.008000px;}
.wsf{word-spacing:-9.612000px;}
.wsa7{word-spacing:-8.640000px;}
.wse{word-spacing:-7.020000px;}
.ws83{word-spacing:-6.408000px;}
.ws6{word-spacing:-5.184000px;}
.ws25{word-spacing:-4.680000px;}
.ws2b{word-spacing:-3.528000px;}
.ws4f{word-spacing:-3.456000px;}
.ws9b{word-spacing:-3.384000px;}
.ws5f{word-spacing:-3.240000px;}
.ws99{word-spacing:-3.168000px;}
.ws66{word-spacing:-3.096000px;}
.ws67{word-spacing:-3.024000px;}
.ws68{word-spacing:-2.952000px;}
.ws30{word-spacing:-2.880000px;}
.ws4e{word-spacing:-2.736000px;}
.ws5d{word-spacing:-2.664000px;}
.ws4b{word-spacing:-2.592000px;}
.ws34{word-spacing:-2.448000px;}
.ws9{word-spacing:-2.376000px;}
.ws45{word-spacing:-2.232000px;}
.ws88{word-spacing:-2.160000px;}
.ws42{word-spacing:-2.088000px;}
.ws2a{word-spacing:-2.016000px;}
.ws81{word-spacing:-1.944000px;}
.ws16{word-spacing:-1.872000px;}
.ws84{word-spacing:-1.800000px;}
.ws97{word-spacing:-1.728000px;}
.ws44{word-spacing:-1.656000px;}
.ws8b{word-spacing:-1.584000px;}
.ws79{word-spacing:-1.440000px;}
.ws14{word-spacing:-1.368000px;}
.ws86{word-spacing:-1.296000px;}
.ws57{word-spacing:-1.224000px;}
.ws64{word-spacing:-1.152000px;}
.ws8f{word-spacing:-1.080000px;}
.ws73{word-spacing:-1.008000px;}
.ws4a{word-spacing:-0.864000px;}
.ws2c{word-spacing:-0.792000px;}
.ws26{word-spacing:-0.720000px;}
.ws1a{word-spacing:-0.648000px;}
.ws9c{word-spacing:-0.576000px;}
.ws8a{word-spacing:-0.504000px;}
.ws5e{word-spacing:-0.432000px;}
.ws82{word-spacing:-0.360000px;}
.ws4d{word-spacing:-0.288000px;}
.ws60{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.144000px;}
.ws5b{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws19{word-spacing:0.144000px;}
.ws62{word-spacing:0.216000px;}
.ws1f{word-spacing:0.288000px;}
.ws90{word-spacing:0.432000px;}
.ws33{word-spacing:0.504000px;}
.ws43{word-spacing:0.576000px;}
.ws95{word-spacing:0.648000px;}
.ws41{word-spacing:0.720000px;}
.ws37{word-spacing:0.792000px;}
.ws1{word-spacing:0.864000px;}
.ws2e{word-spacing:0.936000px;}
.ws36{word-spacing:1.008000px;}
.wsc{word-spacing:1.080000px;}
.ws38{word-spacing:1.152000px;}
.ws46{word-spacing:1.224000px;}
.ws9e{word-spacing:1.296000px;}
.ws75{word-spacing:1.368000px;}
.ws31{word-spacing:1.440000px;}
.ws85{word-spacing:1.512000px;}
.ws23{word-spacing:1.518000px;}
.ws39{word-spacing:1.584000px;}
.ws8c{word-spacing:1.728000px;}
.ws2f{word-spacing:1.800000px;}
.ws24{word-spacing:1.872000px;}
.ws93{word-spacing:2.016000px;}
.ws29{word-spacing:2.088000px;}
.ws49{word-spacing:2.160000px;}
.ws4c{word-spacing:2.232000px;}
.ws61{word-spacing:2.304000px;}
.ws56{word-spacing:2.376000px;}
.ws47{word-spacing:2.448000px;}
.ws2d{word-spacing:2.664000px;}
.ws3b{word-spacing:2.736000px;}
.ws74{word-spacing:2.808000px;}
.wsa2{word-spacing:2.838000px;}
.ws52{word-spacing:2.880000px;}
.ws1c{word-spacing:2.952000px;}
.ws51{word-spacing:3.096000px;}
.ws7d{word-spacing:3.168000px;}
.wsd{word-spacing:3.240000px;}
.ws1d{word-spacing:3.312000px;}
.ws35{word-spacing:3.384000px;}
.ws69{word-spacing:3.456000px;}
.wsa3{word-spacing:3.528000px;}
.ws5a{word-spacing:3.600000px;}
.ws17{word-spacing:3.672000px;}
.ws58{word-spacing:3.744000px;}
.ws22{word-spacing:3.888000px;}
.ws89{word-spacing:3.960000px;}
.ws32{word-spacing:4.032000px;}
.ws9d{word-spacing:4.104000px;}
.ws20{word-spacing:4.176000px;}
.ws92{word-spacing:4.248000px;}
.ws5c{word-spacing:4.320000px;}
.ws76{word-spacing:4.608000px;}
.ws3a{word-spacing:4.752000px;}
.ws94{word-spacing:4.824000px;}
.ws7b{word-spacing:4.896000px;}
.ws1b{word-spacing:5.112000px;}
.ws18{word-spacing:5.184000px;}
.ws50{word-spacing:5.256000px;}
.ws55{word-spacing:5.328000px;}
.wsa0{word-spacing:5.544000px;}
.ws91{word-spacing:5.688000px;}
.ws63{word-spacing:5.760000px;}
.ws7e{word-spacing:5.904000px;}
.ws21{word-spacing:5.976000px;}
.ws1e{word-spacing:6.192000px;}
.ws53{word-spacing:6.264000px;}
.ws27{word-spacing:6.336000px;}
.ws40{word-spacing:6.408000px;}
.wsae{word-spacing:6.552000px;}
.ws59{word-spacing:6.624000px;}
.ws48{word-spacing:6.840000px;}
.ws28{word-spacing:7.344000px;}
.ws87{word-spacing:7.416000px;}
.ws80{word-spacing:7.704000px;}
.ws3e{word-spacing:7.848000px;}
.ws3d{word-spacing:7.992000px;}
.wsa1{word-spacing:8.208000px;}
.ws8d{word-spacing:8.352000px;}
.ws7c{word-spacing:8.424000px;}
.ws9a{word-spacing:8.640000px;}
.ws3f{word-spacing:9.144000px;}
.ws3c{word-spacing:9.432000px;}
.ws65{word-spacing:9.504000px;}
.ws8e{word-spacing:9.648000px;}
.ws54{word-spacing:9.864000px;}
.ws7a{word-spacing:10.152000px;}
.ws7f{word-spacing:11.232000px;}
.ws78{word-spacing:13.248000px;}
.ws77{word-spacing:13.752000px;}
.ws98{word-spacing:37.158000px;}
.ws70{word-spacing:145.997550px;}
.ws6c{word-spacing:160.992060px;}
.ws6e{word-spacing:167.881514px;}
.ws6f{word-spacing:187.541011px;}
.ws6b{word-spacing:263.281022px;}
.ws6d{word-spacing:263.799001px;}
.wsa8{word-spacing:263.922600px;}
.ws71{word-spacing:264.604746px;}
.wsa9{word-spacing:444.957000px;}
.wsa6{word-spacing:480.746400px;}
.wsac{word-spacing:499.062000px;}
.wsab{word-spacing:516.703800px;}
.wsaa{word-spacing:592.644000px;}
.wsa5{word-spacing:619.346400px;}
.wsad{word-spacing:628.826400px;}
._14{margin-left:-19.944000px;}
._13{margin-left:-18.469200px;}
._12{margin-left:-16.716600px;}
._38{margin-left:-8.585400px;}
._1c{margin-left:-7.021438px;}
._11{margin-left:-5.796000px;}
._5{margin-left:-4.464000px;}
._a{margin-left:-3.384000px;}
._0{margin-left:-1.824000px;}
._8{width:1.396200px;}
._c{width:2.425254px;}
._15{width:3.747546px;}
._9{width:4.869600px;}
._b{width:5.880000px;}
._e{width:7.128000px;}
._f{width:8.161800px;}
._10{width:10.126200px;}
._1a{width:11.381400px;}
._1b{width:12.744000px;}
._2d{width:18.900600px;}
._2{width:22.433400px;}
._1{width:23.969400px;}
._3{width:26.015400px;}
._4{width:27.107400px;}
._27{width:121.143600px;}
._32{width:136.605600px;}
._21{width:176.913600px;}
._26{width:180.394438px;}
._20{width:188.568000px;}
._22{width:193.896000px;}
._d{width:196.128000px;}
._7{width:198.000000px;}
._1f{width:199.728000px;}
._16{width:201.240000px;}
._37{width:261.011400px;}
._18{width:263.741448px;}
._17{width:278.993046px;}
._34{width:282.110400px;}
._31{width:288.451800px;}
._19{width:308.057412px;}
._24{width:362.930400px;}
._1d{width:368.667300px;}
._2b{width:383.385000px;}
._29{width:425.959200px;}
._33{width:491.478000px;}
._25{width:494.306400px;}
._2f{width:498.969600px;}
._23{width:518.330400px;}
._35{width:528.563400px;}
._36{width:597.193200px;}
._28{width:600.827626px;}
._2e{width:613.131600px;}
._2c{width:621.690600px;}
._2a{width:636.092400px;}
._30{width:640.702200px;}
._6{width:726.018000px;}
._1e{width:1191.634200px;}
.fc6{color:transparent;}
.fc3{color:rgb(101,98,99);}
.fc2{color:rgb(148,115,77);}
.fc1{color:rgb(210,32,39);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:38.478000px;}
.fs6{font-size:41.976000px;}
.fsb{font-size:57.553200px;}
.fsc{font-size:59.130000px;}
.fs9{font-size:60.000000px;}
.fse{font-size:63.256200px;}
.fsf{font-size:63.900000px;}
.fsa{font-size:64.021200px;}
.fs10{font-size:64.200000px;}
.fs8{font-size:66.000000px;}
.fsd{font-size:70.181400px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:180.000000px;}
.fs1{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:67.163400px;}
.y3{bottom:83.848800px;}
.y1d3{bottom:112.297200px;}
.y2{bottom:112.648800px;}
.y1ac{bottom:122.409450px;}
.y16c{bottom:126.037650px;}
.y1ce{bottom:131.431050px;}
.y1c8{bottom:134.620050px;}
.y1d2{bottom:139.297200px;}
.y1ab{bottom:140.409450px;}
.y1{bottom:141.448800px;}
.y16b{bottom:145.837650px;}
.y1cd{bottom:158.431050px;}
.y1aa{bottom:160.209450px;}
.y15c{bottom:161.572350px;}
.y1c7{bottom:161.620050px;}
.y1d1{bottom:166.297200px;}
.y1ff{bottom:169.742100px;}
.y16a{bottom:171.132150px;}
.y83{bottom:176.671650px;}
.y15b{bottom:180.832350px;}
.y1c3{bottom:184.458150px;}
.yc3{bottom:184.911300px;}
.y1cc{bottom:185.431050px;}
.y1fb{bottom:185.586600px;}
.y1c6{bottom:188.620050px;}
.y1ad{bottom:191.553450px;}
.y1fe{bottom:192.992100px;}
.y1d0{bottom:193.297200px;}
.y169{bottom:195.409050px;}
.y17f{bottom:195.775050px;}
.y35{bottom:196.833000px;}
.y14f{bottom:198.873150px;}
.y54{bottom:201.108150px;}
.y19e{bottom:201.345450px;}
.yb5{bottom:202.749900px;}
.y201{bottom:202.881750px;}
.y95{bottom:204.736200px;}
.y73{bottom:205.139850px;}
.y10e{bottom:206.495850px;}
.yf1{bottom:207.133650px;}
.y1fa{bottom:208.836600px;}
.y133{bottom:208.999350px;}
.yfc{bottom:209.624250px;}
.y1fd{bottom:210.992100px;}
.y1cb{bottom:212.431050px;}
.y1c5{bottom:215.620050px;}
.y15{bottom:217.626300px;}
.y1cf{bottom:220.297200px;}
.y116{bottom:221.151150px;}
.y168{bottom:222.409050px;}
.y17e{bottom:222.775050px;}
.y1d7{bottom:225.399600px;}
.y14e{bottom:225.873150px;}
.y53{bottom:228.108150px;}
.y19d{bottom:228.345450px;}
.y191{bottom:229.201200px;}
.yb4{bottom:229.749900px;}
.y200{bottom:229.881750px;}
.y94{bottom:231.736200px;}
.y1f9{bottom:232.086600px;}
.y72{bottom:232.139850px;}
.y10d{bottom:233.495850px;}
.yf0{bottom:234.133650px;}
.y1fc{bottom:234.242100px;}
.y132{bottom:235.999350px;}
.y1ca{bottom:239.431050px;}
.y115{bottom:240.127950px;}
.y1c4{bottom:242.620050px;}
.y167{bottom:249.409050px;}
.y17d{bottom:249.775050px;}
.y14{bottom:250.026450px;}
.y1d6{bottom:252.399600px;}
.y34{bottom:252.726450px;}
.y14d{bottom:252.873150px;}
.y52{bottom:255.108150px;}
.y1f8{bottom:255.336600px;}
.y19c{bottom:255.345450px;}
.yb3{bottom:256.749900px;}
.y93{bottom:258.736200px;}
.y71{bottom:259.139850px;}
.y10c{bottom:260.495850px;}
.y20e{bottom:261.062250px;}
.yef{bottom:261.133650px;}
.y131{bottom:262.999350px;}
.y166{bottom:276.409050px;}
.y17c{bottom:276.775050px;}
.y1f7{bottom:278.586600px;}
.y1d5{bottom:279.399600px;}
.y33{bottom:279.726450px;}
.y227{bottom:281.695650px;}
.y51{bottom:282.108150px;}
.y19b{bottom:282.345450px;}
.y13{bottom:282.426300px;}
.yb2{bottom:283.749900px;}
.y92{bottom:285.736200px;}
.y70{bottom:286.139850px;}
.y10b{bottom:287.495850px;}
.yee{bottom:288.133650px;}
.ydc{bottom:289.509450px;}
.y130{bottom:289.999350px;}
.y1f6{bottom:301.836600px;}
.y165{bottom:303.409050px;}
.y17b{bottom:303.775050px;}
.y1d4{bottom:306.399600px;}
.y32{bottom:306.726450px;}
.y14c{bottom:306.873150px;}
.y226{bottom:308.695650px;}
.y50{bottom:309.108150px;}
.y19a{bottom:309.345450px;}
.yb1{bottom:310.749900px;}
.y91{bottom:312.736200px;}
.y6f{bottom:313.139850px;}
.y10a{bottom:314.495850px;}
.yed{bottom:315.133650px;}
.ydb{bottom:316.509450px;}
.y12f{bottom:316.999350px;}
.y1f5{bottom:325.086600px;}
.y17a{bottom:330.775050px;}
.y31{bottom:333.726450px;}
.y225{bottom:335.695650px;}
.y4f{bottom:336.108150px;}
.y199{bottom:336.345450px;}
.y20d{bottom:337.597650px;}
.yb0{bottom:337.749900px;}
.y90{bottom:339.736200px;}
.y6e{bottom:340.139850px;}
.y109{bottom:341.495850px;}
.yec{bottom:342.133650px;}
.y12{bottom:347.226450px;}
.y1f4{bottom:348.336600px;}
.y164{bottom:357.409050px;}
.y179{bottom:357.775050px;}
.y30{bottom:360.726450px;}
.y4e{bottom:363.108150px;}
.y198{bottom:363.345450px;}
.yaf{bottom:364.749900px;}
.y14b{bottom:366.273150px;}
.y8f{bottom:366.736200px;}
.y6d{bottom:367.139850px;}
.y108{bottom:368.495850px;}
.yeb{bottom:369.133650px;}
.yda{bottom:370.509450px;}
.y12e{bottom:370.999350px;}
.y1f3{bottom:371.586600px;}
.y20c{bottom:375.646950px;}
.y224{bottom:384.295650px;}
.y178{bottom:384.775050px;}
.y2f{bottom:387.726450px;}
.y4d{bottom:390.108150px;}
.y197{bottom:390.345450px;}
.yae{bottom:391.749900px;}
.y14a{bottom:393.273150px;}
.y8e{bottom:393.736200px;}
.y6c{bottom:394.139850px;}
.y1f2{bottom:394.836600px;}
.y171{bottom:395.495850px;}
.yea{bottom:396.133650px;}
.yd9{bottom:397.509450px;}
.y12d{bottom:397.999350px;}
.y223{bottom:405.895650px;}
.y177{bottom:411.775050px;}
.y11{bottom:412.026450px;}
.y1f1{bottom:412.836600px;}
.y20b{bottom:413.696100px;}
.y2e{bottom:414.726450px;}
.y163{bottom:416.809050px;}
.y4c{bottom:417.108150px;}
.y196{bottom:417.345450px;}
.yad{bottom:418.749900px;}
.y149{bottom:420.273150px;}
.y8d{bottom:420.736200px;}
.y6b{bottom:421.139850px;}
.y170{bottom:422.495850px;}
.ye9{bottom:423.133650px;}
.yd8{bottom:424.509450px;}
.y12c{bottom:424.999350px;}
.y222{bottom:427.495650px;}
.y110{bottom:429.663750px;}
.y1f0{bottom:436.086600px;}
.y176{bottom:438.775050px;}
.y2d{bottom:441.726450px;}
.y162{bottom:443.809050px;}
.y4b{bottom:444.108150px;}
.yac{bottom:445.749900px;}
.y148{bottom:447.273150px;}
.y8c{bottom:447.736200px;}
.y6a{bottom:448.139850px;}
.y16f{bottom:449.495850px;}
.ye8{bottom:450.133650px;}
.yd7{bottom:451.509450px;}
.y1c2{bottom:451.736250px;}
.y20a{bottom:451.963800px;}
.y12b{bottom:451.999350px;}
.y1ef{bottom:459.336600px;}
.y175{bottom:465.775050px;}
.y2c{bottom:468.726450px;}
.y161{bottom:470.809050px;}
.y4a{bottom:471.108150px;}
.yab{bottom:472.749900px;}
.y8b{bottom:474.736200px;}
.y69{bottom:475.139850px;}
.y16e{bottom:476.495850px;}
.y10{bottom:476.826300px;}
.ye7{bottom:477.133650px;}
.yd6{bottom:478.509450px;}
.y1c1{bottom:478.736250px;}
.y12a{bottom:478.999350px;}
.y221{bottom:481.495650px;}
.y1ee{bottom:482.586600px;}
.y19f{bottom:487.065300px;}
.y209{bottom:490.231500px;}
.y174{bottom:492.775050px;}
.y158{bottom:494.354250px;}
.y2b{bottom:495.726450px;}
.y160{bottom:497.809050px;}
.y49{bottom:498.108150px;}
.yaa{bottom:499.749900px;}
.y1ed{bottom:500.586600px;}
.y8a{bottom:501.736200px;}
.y68{bottom:502.139850px;}
.ye6{bottom:504.133650px;}
.yd5{bottom:505.509450px;}
.y1c0{bottom:505.736250px;}
.y129{bottom:505.999350px;}
.y147{bottom:506.673150px;}
.y172{bottom:514.703100px;}
.y157{bottom:521.354250px;}
.y2a{bottom:522.726450px;}
.y1ec{bottom:523.836600px;}
.y15f{bottom:524.809050px;}
.y48{bottom:525.108150px;}
.ya9{bottom:526.749900px;}
.y208{bottom:528.499200px;}
.y89{bottom:528.736200px;}
.y67{bottom:529.139850px;}
.ye5{bottom:531.133650px;}
.yd4{bottom:532.509450px;}
.y1bf{bottom:532.736250px;}
.y128{bottom:532.999350px;}
.y146{bottom:533.673150px;}
.y220{bottom:540.895650px;}
.yf{bottom:541.626450px;}
.y1eb{bottom:547.086600px;}
.y156{bottom:548.354250px;}
.y29{bottom:549.726450px;}
.y47{bottom:552.108150px;}
.y181{bottom:552.364650px;}
.ya8{bottom:553.749900px;}
.y88{bottom:555.736200px;}
.y66{bottom:556.139850px;}
.ye4{bottom:558.133650px;}
.yd3{bottom:559.509450px;}
.y1be{bottom:559.736250px;}
.y127{bottom:559.999350px;}
.y145{bottom:560.673150px;}
.y207{bottom:566.766750px;}
.y1ea{bottom:570.336600px;}
.y180{bottom:570.364650px;}
.ye{bottom:574.026450px;}
.y155{bottom:575.354250px;}
.y28{bottom:576.726450px;}
.y82{bottom:578.413800px;}
.y15e{bottom:578.809050px;}
.y46{bottom:579.108150px;}
.ya7{bottom:580.749900px;}
.y87{bottom:582.736200px;}
.y65{bottom:583.139850px;}
.ye3{bottom:585.133650px;}
.yd2{bottom:586.509450px;}
.y1bd{bottom:586.736250px;}
.y126{bottom:586.999350px;}
.y144{bottom:587.673150px;}
.y1e9{bottom:593.586600px;}
.y21f{bottom:594.895650px;}
.y154{bottom:602.354250px;}
.y27{bottom:603.726450px;}
.yc2{bottom:604.241400px;}
.y206{bottom:605.034450px;}
.y81{bottom:605.413800px;}
.y15d{bottom:605.809050px;}
.y45{bottom:606.108150px;}
.yd{bottom:606.426300px;}
.ya6{bottom:607.749900px;}
.y86{bottom:609.736200px;}
.y64{bottom:610.139850px;}
.ye2{bottom:612.133650px;}
.yd1{bottom:613.509450px;}
.y1bc{bottom:613.736250px;}
.y125{bottom:613.999350px;}
.y143{bottom:614.673150px;}
.y1e8{bottom:616.836600px;}
.y21e{bottom:621.895650px;}
.y153{bottom:629.354250px;}
.y26{bottom:630.726450px;}
.yc1{bottom:631.241400px;}
.y80{bottom:632.413800px;}
.y44{bottom:633.108150px;}
.y16d{bottom:634.112550px;}
.ya5{bottom:634.749900px;}
.y1e7{bottom:634.836600px;}
.y190{bottom:634.895100px;}
.y85{bottom:636.736200px;}
.y63{bottom:637.139850px;}
.yc{bottom:638.826300px;}
.ye1{bottom:639.133650px;}
.yd0{bottom:640.509450px;}
.y1bb{bottom:640.736250px;}
.y124{bottom:640.999350px;}
.y142{bottom:641.673150px;}
.y205{bottom:643.302150px;}
.y152{bottom:656.354250px;}
.y25{bottom:657.726450px;}
.y1e6{bottom:658.086600px;}
.yc0{bottom:658.241400px;}
.y7f{bottom:659.413800px;}
.y43{bottom:660.108150px;}
.ya4{bottom:661.749900px;}
.y18f{bottom:661.895100px;}
.y84{bottom:663.736200px;}
.y62{bottom:664.139850px;}
.ye0{bottom:666.133650px;}
.ycf{bottom:667.509450px;}
.y1ba{bottom:667.736250px;}
.y123{bottom:667.999350px;}
.y141{bottom:668.673150px;}
.yb{bottom:671.226450px;}
.y21d{bottom:675.895650px;}
.y1e5{bottom:681.336600px;}
.y204{bottom:681.569850px;}
.y151{bottom:683.354250px;}
.y24{bottom:684.726450px;}
.ybf{bottom:685.241400px;}
.y96{bottom:685.998450px;}
.y7e{bottom:686.413800px;}
.y42{bottom:687.108150px;}
.ya3{bottom:688.749900px;}
.y18e{bottom:688.895100px;}
.y61{bottom:691.139850px;}
.ydf{bottom:693.133650px;}
.yce{bottom:694.509450px;}
.y1b9{bottom:694.736250px;}
.y122{bottom:694.999350px;}
.y140{bottom:695.673150px;}
.y1e4{bottom:699.336600px;}
.y21c{bottom:702.895650px;}
.ya{bottom:703.626450px;}
.y22f{bottom:705.850950px;}
.y150{bottom:710.354250px;}
.y23{bottom:711.726450px;}
.ybe{bottom:712.241400px;}
.y7d{bottom:713.413800px;}
.y41{bottom:714.108150px;}
.ya2{bottom:715.749900px;}
.y18d{bottom:715.895100px;}
.y60{bottom:718.139850px;}
.yde{bottom:720.133650px;}
.ycd{bottom:721.509450px;}
.y1b8{bottom:721.736250px;}
.y121{bottom:721.999350px;}
.y1e3{bottom:722.586600px;}
.y13f{bottom:722.673150px;}
.y203{bottom:726.215550px;}
.y15a{bottom:726.320250px;}
.y22{bottom:738.726450px;}
.ybd{bottom:739.241400px;}
.y7c{bottom:740.413800px;}
.y40{bottom:741.108150px;}
.ya1{bottom:742.749900px;}
.y18c{bottom:742.895100px;}
.y1a9{bottom:744.595800px;}
.y5f{bottom:745.139850px;}
.y159{bottom:745.490250px;}
.y1e2{bottom:745.836600px;}
.y107{bottom:746.495850px;}
.ydd{bottom:747.133650px;}
.ycc{bottom:748.509450px;}
.y1b7{bottom:748.736250px;}
.y120{bottom:748.999350px;}
.y13e{bottom:749.673150px;}
.y21b{bottom:756.895650px;}
.y22e{bottom:765.250950px;}
.y21{bottom:765.726450px;}
.y7b{bottom:767.413800px;}
.y3f{bottom:768.108150px;}
.y9{bottom:768.426300px;}
.y1e1{bottom:769.086600px;}
.ya0{bottom:769.749900px;}
.y18b{bottom:769.895100px;}
.y11f{bottom:770.599350px;}
.y1a8{bottom:771.595800px;}
.y5e{bottom:772.139850px;}
.y106{bottom:773.495850px;}
.y1b6{bottom:775.736250px;}
.y13d{bottom:776.673150px;}
.y202{bottom:781.777650px;}
.y21a{bottom:783.895650px;}
.y1e0{bottom:792.336600px;}
.y20{bottom:792.726450px;}
.y7a{bottom:794.413950px;}
.y3e{bottom:795.108150px;}
.y9f{bottom:796.749900px;}
.y18a{bottom:796.895100px;}
.y1a7{bottom:798.595800px;}
.ybc{bottom:798.641400px;}
.y5d{bottom:799.139850px;}
.yfb{bottom:799.779000px;}
.y105{bottom:800.495850px;}
.y8{bottom:800.826450px;}
.y1b5{bottom:802.736250px;}
.y13c{bottom:803.673150px;}
.yf6{bottom:806.059050px;}
.y10f{bottom:809.784450px;}
.y1df{bottom:815.586600px;}
.y1f{bottom:819.726450px;}
.y79{bottom:821.413950px;}
.y3d{bottom:822.108150px;}
.y9e{bottom:823.749900px;}
.y189{bottom:823.895100px;}
.y22d{bottom:824.650950px;}
.y1a6{bottom:825.595800px;}
.y5c{bottom:826.139850px;}
.y104{bottom:827.495850px;}
.ycb{bottom:829.509450px;}
.y11e{bottom:829.999350px;}
.y13b{bottom:830.673150px;}
.y4{bottom:836.158650px;}
.yfa{bottom:837.805500px;}
.y219{bottom:837.895650px;}
.y1de{bottom:838.836600px;}
.y1e{bottom:846.726450px;}
.y78{bottom:848.413950px;}
.y3c{bottom:849.108150px;}
.y9d{bottom:850.749900px;}
.y188{bottom:850.895100px;}
.y22c{bottom:851.650950px;}
.y1a5{bottom:852.595800px;}
.y5b{bottom:853.139850px;}
.y103{bottom:854.495850px;}
.yf5{bottom:854.688750px;}
.yca{bottom:856.509450px;}
.y1b4{bottom:856.736250px;}
.y11d{bottom:856.999350px;}
.y13a{bottom:857.673150px;}
.y1dd{bottom:862.086600px;}
.y215{bottom:863.226450px;}
.y218{bottom:864.895650px;}
.y7{bottom:865.626300px;}
.y1d{bottom:873.726450px;}
.y77{bottom:875.413950px;}
.yf9{bottom:875.832150px;}
.y3b{bottom:876.108150px;}
.y9c{bottom:877.749900px;}
.y187{bottom:877.895100px;}
.y1a4{bottom:879.595800px;}
.y5a{bottom:880.139850px;}
.y102{bottom:881.495850px;}
.yc9{bottom:883.509450px;}
.y1b3{bottom:883.736250px;}
.y11c{bottom:883.999350px;}
.y139{bottom:884.673150px;}
.ybb{bottom:885.041400px;}
.y1dc{bottom:885.336600px;}
.y214{bottom:886.476450px;}
.y1c{bottom:900.726450px;}
.yf4{bottom:902.727300px;}
.y3a{bottom:903.108150px;}
.y195{bottom:903.345450px;}
.y114{bottom:903.707700px;}
.y213{bottom:904.476450px;}
.y9b{bottom:904.749900px;}
.y186{bottom:904.895100px;}
.y1a3{bottom:906.595800px;}
.y59{bottom:907.139850px;}
.y101{bottom:908.495850px;}
.y1db{bottom:908.586600px;}
.yc8{bottom:910.509450px;}
.y1b2{bottom:910.736250px;}
.y11b{bottom:910.999350px;}
.y138{bottom:911.673150px;}
.yba{bottom:912.041400px;}
.yf8{bottom:913.858650px;}
.y217{bottom:918.895650px;}
.y1b{bottom:927.726450px;}
.y39{bottom:930.108150px;}
.y6{bottom:930.426300px;}
.y9a{bottom:931.749900px;}
.y1da{bottom:931.836600px;}
.y185{bottom:931.895100px;}
.y22b{bottom:932.650950px;}
.y1a2{bottom:933.595800px;}
.y58{bottom:934.139850px;}
.y100{bottom:935.495850px;}
.yc7{bottom:937.509450px;}
.y1b1{bottom:937.736250px;}
.y11a{bottom:937.999350px;}
.y137{bottom:938.673150px;}
.yb9{bottom:939.041400px;}
.y212{bottom:945.726450px;}
.yf3{bottom:951.061350px;}
.yf7{bottom:951.885150px;}
.y1a{bottom:954.726450px;}
.y1d9{bottom:955.086600px;}
.y38{bottom:957.108150px;}
.y113{bottom:957.707700px;}
.y99{bottom:958.749900px;}
.y184{bottom:958.895100px;}
.y22a{bottom:959.650950px;}
.y1a1{bottom:960.595800px;}
.y57{bottom:961.139850px;}
.y76{bottom:961.813800px;}
.yff{bottom:962.495850px;}
.y194{bottom:962.745450px;}
.y211{bottom:963.726450px;}
.yc6{bottom:964.509450px;}
.y1b0{bottom:964.736250px;}
.y119{bottom:964.999350px;}
.y136{bottom:965.673150px;}
.yb8{bottom:966.041400px;}
.y216{bottom:972.895650px;}
.y1d8{bottom:978.336600px;}
.y19{bottom:981.726450px;}
.y37{bottom:984.108150px;}
.y112{bottom:984.707700px;}
.y98{bottom:985.749900px;}
.y183{bottom:985.895100px;}
.y229{bottom:986.650950px;}
.y210{bottom:986.976450px;}
.y1a0{bottom:987.595800px;}
.y56{bottom:988.139850px;}
.y75{bottom:988.813800px;}
.yfe{bottom:989.495850px;}
.y193{bottom:989.745450px;}
.yc5{bottom:991.509450px;}
.y1af{bottom:991.736250px;}
.y118{bottom:991.999350px;}
.y135{bottom:992.673150px;}
.yb7{bottom:993.041400px;}
.y5{bottom:995.226450px;}
.yf2{bottom:999.099750px;}
.y173{bottom:1005.775050px;}
.y18{bottom:1008.726450px;}
.y20f{bottom:1010.226450px;}
.y36{bottom:1011.108150px;}
.y111{bottom:1011.707700px;}
.y97{bottom:1012.749900px;}
.y182{bottom:1012.895100px;}
.y228{bottom:1013.650950px;}
.y55{bottom:1015.139850px;}
.y74{bottom:1015.813800px;}
.yfd{bottom:1016.495850px;}
.y192{bottom:1016.745450px;}
.yc4{bottom:1018.509450px;}
.y1ae{bottom:1018.736250px;}
.y117{bottom:1018.999350px;}
.y134{bottom:1019.673150px;}
.yb6{bottom:1020.041400px;}
.y1c9{bottom:1102.269600px;}
.y17{bottom:1198.311000px;}
.hb{height:27.396336px;}
.hf{height:40.581812px;}
.h1e{height:41.074219px;}
.hc{height:41.660156px;}
.h1b{height:42.720000px;}
.h13{height:43.921053px;}
.h15{height:44.368066px;}
.hd{height:44.452220px;}
.h16{height:44.576367px;}
.h18{height:46.992000px;}
.he{height:47.464529px;}
.h12{height:48.044103px;}
.h10{height:48.647129px;}
.h8{height:49.289062px;}
.h1a{height:49.374336px;}
.h1d{height:49.482422px;}
.h19{height:49.992188px;}
.ha{height:50.027344px;}
.h14{height:51.264000px;}
.h1c{height:53.120845px;}
.h17{height:53.121445px;}
.h7{height:57.503906px;}
.h11{height:57.879094px;}
.h9{height:63.175781px;}
.h1f{height:69.275391px;}
.h3{height:69.703125px;}
.h2{height:79.171875px;}
.h6{height:89.068359px;}
.h5{height:148.447266px;}
.h4{height:639.843750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:125.168250px;}
.x5{left:127.559100px;}
.x7{left:128.807400px;}
.x2d{left:135.059100px;}
.x13{left:138.189000px;}
.x26{left:140.314950px;}
.xd{left:148.640400px;}
.x19{left:165.059100px;}
.xe{left:238.058250px;}
.xc{left:241.804350px;}
.x4{left:252.992250px;}
.x2{left:259.448850px;}
.xb{left:300.648750px;}
.x2c{left:322.145700px;}
.x2b{left:323.251650px;}
.x29{left:332.484450px;}
.x1{left:340.068000px;}
.x1b{left:341.442600px;}
.x1f{left:343.237950px;}
.x25{left:355.993800px;}
.x2a{left:364.050450px;}
.x28{left:368.216400px;}
.x1c{left:375.421200px;}
.x20{left:377.216400px;}
.x1a{left:386.157000px;}
.x22{left:387.952350px;}
.x1e{left:390.202350px;}
.x3{left:392.644200px;}
.x24{left:400.708200px;}
.x9{left:405.764250px;}
.xa{left:407.734650px;}
.x1d{left:418.421700px;}
.x21{left:420.216900px;}
.x23{left:431.708700px;}
.x27{left:432.972900px;}
.x8{left:435.813150px;}
.x6{left:441.134850px;}
.x18{left:446.456700px;}
.x14{left:482.915700px;}
.x15{left:539.241750px;}
.x16{left:637.965300px;}
.x2e{left:657.020400px;}
.xf{left:668.873100px;}
.x12{left:674.595900px;}
.x11{left:685.557450px;}
.x10{left:690.329250px;}
@media print{
.v7{vertical-align:-21.311467pt;}
.v3{vertical-align:-19.536000pt;}
.v1{vertical-align:-15.117867pt;}
.v5{vertical-align:-1.051200pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.051200pt;}
.v6{vertical-align:19.536000pt;}
.v2{vertical-align:21.312000pt;}
.lsa{letter-spacing:-7.104000pt;}
.ls9{letter-spacing:-4.373333pt;}
.ls2{letter-spacing:-1.349333pt;}
.ls1{letter-spacing:-1.152000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:2.544000pt;}
.ls3{letter-spacing:3.290667pt;}
.ls5{letter-spacing:5.885333pt;}
.ls6{letter-spacing:42.666667pt;}
.ls8{letter-spacing:176.000000pt;}
.ls4{letter-spacing:177.472000pt;}
.ws7{word-spacing:-21.312000pt;}
.ws10{word-spacing:-20.352000pt;}
.ws4{word-spacing:-19.872000pt;}
.wsb{word-spacing:-19.296000pt;}
.wsa{word-spacing:-17.472000pt;}
.wsaf{word-spacing:-16.874667pt;}
.ws11{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.848000pt;}
.ws72{word-spacing:-14.098663pt;}
.ws2{word-spacing:-13.536000pt;}
.ws96{word-spacing:-13.317333pt;}
.ws8{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.192000pt;}
.ws9f{word-spacing:-12.106667pt;}
.wsa4{word-spacing:-12.053333pt;}
.ws6a{word-spacing:-11.561798pt;}
.ws3{word-spacing:-11.136000pt;}
.ws13{word-spacing:-9.328000pt;}
.wsb0{word-spacing:-8.896000pt;}
.wsf{word-spacing:-8.544000pt;}
.wsa7{word-spacing:-7.680000pt;}
.wse{word-spacing:-6.240000pt;}
.ws83{word-spacing:-5.696000pt;}
.ws6{word-spacing:-4.608000pt;}
.ws25{word-spacing:-4.160000pt;}
.ws2b{word-spacing:-3.136000pt;}
.ws4f{word-spacing:-3.072000pt;}
.ws9b{word-spacing:-3.008000pt;}
.ws5f{word-spacing:-2.880000pt;}
.ws99{word-spacing:-2.816000pt;}
.ws66{word-spacing:-2.752000pt;}
.ws67{word-spacing:-2.688000pt;}
.ws68{word-spacing:-2.624000pt;}
.ws30{word-spacing:-2.560000pt;}
.ws4e{word-spacing:-2.432000pt;}
.ws5d{word-spacing:-2.368000pt;}
.ws4b{word-spacing:-2.304000pt;}
.ws34{word-spacing:-2.176000pt;}
.ws9{word-spacing:-2.112000pt;}
.ws45{word-spacing:-1.984000pt;}
.ws88{word-spacing:-1.920000pt;}
.ws42{word-spacing:-1.856000pt;}
.ws2a{word-spacing:-1.792000pt;}
.ws81{word-spacing:-1.728000pt;}
.ws16{word-spacing:-1.664000pt;}
.ws84{word-spacing:-1.600000pt;}
.ws97{word-spacing:-1.536000pt;}
.ws44{word-spacing:-1.472000pt;}
.ws8b{word-spacing:-1.408000pt;}
.ws79{word-spacing:-1.280000pt;}
.ws14{word-spacing:-1.216000pt;}
.ws86{word-spacing:-1.152000pt;}
.ws57{word-spacing:-1.088000pt;}
.ws64{word-spacing:-1.024000pt;}
.ws8f{word-spacing:-0.960000pt;}
.ws73{word-spacing:-0.896000pt;}
.ws4a{word-spacing:-0.768000pt;}
.ws2c{word-spacing:-0.704000pt;}
.ws26{word-spacing:-0.640000pt;}
.ws1a{word-spacing:-0.576000pt;}
.ws9c{word-spacing:-0.512000pt;}
.ws8a{word-spacing:-0.448000pt;}
.ws5e{word-spacing:-0.384000pt;}
.ws82{word-spacing:-0.320000pt;}
.ws4d{word-spacing:-0.256000pt;}
.ws60{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.128000pt;}
.ws5b{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws19{word-spacing:0.128000pt;}
.ws62{word-spacing:0.192000pt;}
.ws1f{word-spacing:0.256000pt;}
.ws90{word-spacing:0.384000pt;}
.ws33{word-spacing:0.448000pt;}
.ws43{word-spacing:0.512000pt;}
.ws95{word-spacing:0.576000pt;}
.ws41{word-spacing:0.640000pt;}
.ws37{word-spacing:0.704000pt;}
.ws1{word-spacing:0.768000pt;}
.ws2e{word-spacing:0.832000pt;}
.ws36{word-spacing:0.896000pt;}
.wsc{word-spacing:0.960000pt;}
.ws38{word-spacing:1.024000pt;}
.ws46{word-spacing:1.088000pt;}
.ws9e{word-spacing:1.152000pt;}
.ws75{word-spacing:1.216000pt;}
.ws31{word-spacing:1.280000pt;}
.ws85{word-spacing:1.344000pt;}
.ws23{word-spacing:1.349333pt;}
.ws39{word-spacing:1.408000pt;}
.ws8c{word-spacing:1.536000pt;}
.ws2f{word-spacing:1.600000pt;}
.ws24{word-spacing:1.664000pt;}
.ws93{word-spacing:1.792000pt;}
.ws29{word-spacing:1.856000pt;}
.ws49{word-spacing:1.920000pt;}
.ws4c{word-spacing:1.984000pt;}
.ws61{word-spacing:2.048000pt;}
.ws56{word-spacing:2.112000pt;}
.ws47{word-spacing:2.176000pt;}
.ws2d{word-spacing:2.368000pt;}
.ws3b{word-spacing:2.432000pt;}
.ws74{word-spacing:2.496000pt;}
.wsa2{word-spacing:2.522667pt;}
.ws52{word-spacing:2.560000pt;}
.ws1c{word-spacing:2.624000pt;}
.ws51{word-spacing:2.752000pt;}
.ws7d{word-spacing:2.816000pt;}
.wsd{word-spacing:2.880000pt;}
.ws1d{word-spacing:2.944000pt;}
.ws35{word-spacing:3.008000pt;}
.ws69{word-spacing:3.072000pt;}
.wsa3{word-spacing:3.136000pt;}
.ws5a{word-spacing:3.200000pt;}
.ws17{word-spacing:3.264000pt;}
.ws58{word-spacing:3.328000pt;}
.ws22{word-spacing:3.456000pt;}
.ws89{word-spacing:3.520000pt;}
.ws32{word-spacing:3.584000pt;}
.ws9d{word-spacing:3.648000pt;}
.ws20{word-spacing:3.712000pt;}
.ws92{word-spacing:3.776000pt;}
.ws5c{word-spacing:3.840000pt;}
.ws76{word-spacing:4.096000pt;}
.ws3a{word-spacing:4.224000pt;}
.ws94{word-spacing:4.288000pt;}
.ws7b{word-spacing:4.352000pt;}
.ws1b{word-spacing:4.544000pt;}
.ws18{word-spacing:4.608000pt;}
.ws50{word-spacing:4.672000pt;}
.ws55{word-spacing:4.736000pt;}
.wsa0{word-spacing:4.928000pt;}
.ws91{word-spacing:5.056000pt;}
.ws63{word-spacing:5.120000pt;}
.ws7e{word-spacing:5.248000pt;}
.ws21{word-spacing:5.312000pt;}
.ws1e{word-spacing:5.504000pt;}
.ws53{word-spacing:5.568000pt;}
.ws27{word-spacing:5.632000pt;}
.ws40{word-spacing:5.696000pt;}
.wsae{word-spacing:5.824000pt;}
.ws59{word-spacing:5.888000pt;}
.ws48{word-spacing:6.080000pt;}
.ws28{word-spacing:6.528000pt;}
.ws87{word-spacing:6.592000pt;}
.ws80{word-spacing:6.848000pt;}
.ws3e{word-spacing:6.976000pt;}
.ws3d{word-spacing:7.104000pt;}
.wsa1{word-spacing:7.296000pt;}
.ws8d{word-spacing:7.424000pt;}
.ws7c{word-spacing:7.488000pt;}
.ws9a{word-spacing:7.680000pt;}
.ws3f{word-spacing:8.128000pt;}
.ws3c{word-spacing:8.384000pt;}
.ws65{word-spacing:8.448000pt;}
.ws8e{word-spacing:8.576000pt;}
.ws54{word-spacing:8.768000pt;}
.ws7a{word-spacing:9.024000pt;}
.ws7f{word-spacing:9.984000pt;}
.ws78{word-spacing:11.776000pt;}
.ws77{word-spacing:12.224000pt;}
.ws98{word-spacing:33.029333pt;}
.ws70{word-spacing:129.775600pt;}
.ws6c{word-spacing:143.104053pt;}
.ws6e{word-spacing:149.228013pt;}
.ws6f{word-spacing:166.703121pt;}
.ws6b{word-spacing:234.027575pt;}
.ws6d{word-spacing:234.488001pt;}
.wsa8{word-spacing:234.597867pt;}
.ws71{word-spacing:235.204219pt;}
.wsa9{word-spacing:395.517333pt;}
.wsa6{word-spacing:427.330133pt;}
.wsac{word-spacing:443.610667pt;}
.wsab{word-spacing:459.292267pt;}
.wsaa{word-spacing:526.794667pt;}
.wsa5{word-spacing:550.530133pt;}
.wsad{word-spacing:558.956800pt;}
._14{margin-left:-17.728000pt;}
._13{margin-left:-16.417067pt;}
._12{margin-left:-14.859200pt;}
._38{margin-left:-7.631467pt;}
._1c{margin-left:-6.241278pt;}
._11{margin-left:-5.152000pt;}
._5{margin-left:-3.968000pt;}
._a{margin-left:-3.008000pt;}
._0{margin-left:-1.621333pt;}
._8{width:1.241067pt;}
._c{width:2.155781pt;}
._15{width:3.331152pt;}
._9{width:4.328533pt;}
._b{width:5.226667pt;}
._e{width:6.336000pt;}
._f{width:7.254933pt;}
._10{width:9.001067pt;}
._1a{width:10.116800pt;}
._1b{width:11.328000pt;}
._2d{width:16.800533pt;}
._2{width:19.940800pt;}
._1{width:21.306133pt;}
._3{width:23.124800pt;}
._4{width:24.095467pt;}
._27{width:107.683200pt;}
._32{width:121.427200pt;}
._21{width:157.256533pt;}
._26{width:160.350612pt;}
._20{width:167.616000pt;}
._22{width:172.352000pt;}
._d{width:174.336000pt;}
._7{width:176.000000pt;}
._1f{width:177.536000pt;}
._16{width:178.880000pt;}
._37{width:232.010133pt;}
._18{width:234.436843pt;}
._17{width:247.993819pt;}
._34{width:250.764800pt;}
._31{width:256.401600pt;}
._19{width:273.828811pt;}
._24{width:322.604800pt;}
._1d{width:327.704267pt;}
._2b{width:340.786667pt;}
._29{width:378.630400pt;}
._33{width:436.869333pt;}
._25{width:439.383467pt;}
._2f{width:443.528533pt;}
._23{width:460.738133pt;}
._35{width:469.834133pt;}
._36{width:530.838400pt;}
._28{width:534.069001pt;}
._2e{width:545.005867pt;}
._2c{width:552.613867pt;}
._2a{width:565.415467pt;}
._30{width:569.513067pt;}
._6{width:645.349333pt;}
._1e{width:1059.230400pt;}
.fs7{font-size:34.202667pt;}
.fs6{font-size:37.312000pt;}
.fsb{font-size:51.158400pt;}
.fsc{font-size:52.560000pt;}
.fs9{font-size:53.333333pt;}
.fse{font-size:56.227733pt;}
.fsf{font-size:56.800000pt;}
.fsa{font-size:56.907733pt;}
.fs10{font-size:57.066667pt;}
.fs8{font-size:58.666667pt;}
.fsd{font-size:62.383467pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:160.000000pt;}
.fs1{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:59.700800pt;}
.y3{bottom:74.532267pt;}
.y1d3{bottom:99.819733pt;}
.y2{bottom:100.132267pt;}
.y1ac{bottom:108.808400pt;}
.y16c{bottom:112.033467pt;}
.y1ce{bottom:116.827600pt;}
.y1c8{bottom:119.662267pt;}
.y1d2{bottom:123.819733pt;}
.y1ab{bottom:124.808400pt;}
.y1{bottom:125.732267pt;}
.y16b{bottom:129.633467pt;}
.y1cd{bottom:140.827600pt;}
.y1aa{bottom:142.408400pt;}
.y15c{bottom:143.619867pt;}
.y1c7{bottom:143.662267pt;}
.y1d1{bottom:147.819733pt;}
.y1ff{bottom:150.881867pt;}
.y16a{bottom:152.117467pt;}
.y83{bottom:157.041467pt;}
.y15b{bottom:160.739867pt;}
.y1c3{bottom:163.962800pt;}
.yc3{bottom:164.365600pt;}
.y1cc{bottom:164.827600pt;}
.y1fb{bottom:164.965867pt;}
.y1c6{bottom:167.662267pt;}
.y1ad{bottom:170.269733pt;}
.y1fe{bottom:171.548533pt;}
.y1d0{bottom:171.819733pt;}
.y169{bottom:173.696933pt;}
.y17f{bottom:174.022267pt;}
.y35{bottom:174.962667pt;}
.y14f{bottom:176.776133pt;}
.y54{bottom:178.762800pt;}
.y19e{bottom:178.973733pt;}
.yb5{bottom:180.222133pt;}
.y201{bottom:180.339333pt;}
.y95{bottom:181.987733pt;}
.y73{bottom:182.346533pt;}
.y10e{bottom:183.551867pt;}
.yf1{bottom:184.118800pt;}
.y1fa{bottom:185.632533pt;}
.y133{bottom:185.777200pt;}
.yfc{bottom:186.332667pt;}
.y1fd{bottom:187.548533pt;}
.y1cb{bottom:188.827600pt;}
.y1c5{bottom:191.662267pt;}
.y15{bottom:193.445600pt;}
.y1cf{bottom:195.819733pt;}
.y116{bottom:196.578800pt;}
.y168{bottom:197.696933pt;}
.y17e{bottom:198.022267pt;}
.y1d7{bottom:200.355200pt;}
.y14e{bottom:200.776133pt;}
.y53{bottom:202.762800pt;}
.y19d{bottom:202.973733pt;}
.y191{bottom:203.734400pt;}
.yb4{bottom:204.222133pt;}
.y200{bottom:204.339333pt;}
.y94{bottom:205.987733pt;}
.y1f9{bottom:206.299200pt;}
.y72{bottom:206.346533pt;}
.y10d{bottom:207.551867pt;}
.yf0{bottom:208.118800pt;}
.y1fc{bottom:208.215200pt;}
.y132{bottom:209.777200pt;}
.y1ca{bottom:212.827600pt;}
.y115{bottom:213.447067pt;}
.y1c4{bottom:215.662267pt;}
.y167{bottom:221.696933pt;}
.y17d{bottom:222.022267pt;}
.y14{bottom:222.245733pt;}
.y1d6{bottom:224.355200pt;}
.y34{bottom:224.645733pt;}
.y14d{bottom:224.776133pt;}
.y52{bottom:226.762800pt;}
.y1f8{bottom:226.965867pt;}
.y19c{bottom:226.973733pt;}
.yb3{bottom:228.222133pt;}
.y93{bottom:229.987733pt;}
.y71{bottom:230.346533pt;}
.y10c{bottom:231.551867pt;}
.y20e{bottom:232.055333pt;}
.yef{bottom:232.118800pt;}
.y131{bottom:233.777200pt;}
.y166{bottom:245.696933pt;}
.y17c{bottom:246.022267pt;}
.y1f7{bottom:247.632533pt;}
.y1d5{bottom:248.355200pt;}
.y33{bottom:248.645733pt;}
.y227{bottom:250.396133pt;}
.y51{bottom:250.762800pt;}
.y19b{bottom:250.973733pt;}
.y13{bottom:251.045600pt;}
.yb2{bottom:252.222133pt;}
.y92{bottom:253.987733pt;}
.y70{bottom:254.346533pt;}
.y10b{bottom:255.551867pt;}
.yee{bottom:256.118800pt;}
.ydc{bottom:257.341733pt;}
.y130{bottom:257.777200pt;}
.y1f6{bottom:268.299200pt;}
.y165{bottom:269.696933pt;}
.y17b{bottom:270.022267pt;}
.y1d4{bottom:272.355200pt;}
.y32{bottom:272.645733pt;}
.y14c{bottom:272.776133pt;}
.y226{bottom:274.396133pt;}
.y50{bottom:274.762800pt;}
.y19a{bottom:274.973733pt;}
.yb1{bottom:276.222133pt;}
.y91{bottom:277.987733pt;}
.y6f{bottom:278.346533pt;}
.y10a{bottom:279.551867pt;}
.yed{bottom:280.118800pt;}
.ydb{bottom:281.341733pt;}
.y12f{bottom:281.777200pt;}
.y1f5{bottom:288.965867pt;}
.y17a{bottom:294.022267pt;}
.y31{bottom:296.645733pt;}
.y225{bottom:298.396133pt;}
.y4f{bottom:298.762800pt;}
.y199{bottom:298.973733pt;}
.y20d{bottom:300.086800pt;}
.yb0{bottom:300.222133pt;}
.y90{bottom:301.987733pt;}
.y6e{bottom:302.346533pt;}
.y109{bottom:303.551867pt;}
.yec{bottom:304.118800pt;}
.y12{bottom:308.645733pt;}
.y1f4{bottom:309.632533pt;}
.y164{bottom:317.696933pt;}
.y179{bottom:318.022267pt;}
.y30{bottom:320.645733pt;}
.y4e{bottom:322.762800pt;}
.y198{bottom:322.973733pt;}
.yaf{bottom:324.222133pt;}
.y14b{bottom:325.576133pt;}
.y8f{bottom:325.987733pt;}
.y6d{bottom:326.346533pt;}
.y108{bottom:327.551867pt;}
.yeb{bottom:328.118800pt;}
.yda{bottom:329.341733pt;}
.y12e{bottom:329.777200pt;}
.y1f3{bottom:330.299200pt;}
.y20c{bottom:333.908400pt;}
.y224{bottom:341.596133pt;}
.y178{bottom:342.022267pt;}
.y2f{bottom:344.645733pt;}
.y4d{bottom:346.762800pt;}
.y197{bottom:346.973733pt;}
.yae{bottom:348.222133pt;}
.y14a{bottom:349.576133pt;}
.y8e{bottom:349.987733pt;}
.y6c{bottom:350.346533pt;}
.y1f2{bottom:350.965867pt;}
.y171{bottom:351.551867pt;}
.yea{bottom:352.118800pt;}
.yd9{bottom:353.341733pt;}
.y12d{bottom:353.777200pt;}
.y223{bottom:360.796133pt;}
.y177{bottom:366.022267pt;}
.y11{bottom:366.245733pt;}
.y1f1{bottom:366.965867pt;}
.y20b{bottom:367.729867pt;}
.y2e{bottom:368.645733pt;}
.y163{bottom:370.496933pt;}
.y4c{bottom:370.762800pt;}
.y196{bottom:370.973733pt;}
.yad{bottom:372.222133pt;}
.y149{bottom:373.576133pt;}
.y8d{bottom:373.987733pt;}
.y6b{bottom:374.346533pt;}
.y170{bottom:375.551867pt;}
.ye9{bottom:376.118800pt;}
.yd8{bottom:377.341733pt;}
.y12c{bottom:377.777200pt;}
.y222{bottom:379.996133pt;}
.y110{bottom:381.923333pt;}
.y1f0{bottom:387.632533pt;}
.y176{bottom:390.022267pt;}
.y2d{bottom:392.645733pt;}
.y162{bottom:394.496933pt;}
.y4b{bottom:394.762800pt;}
.yac{bottom:396.222133pt;}
.y148{bottom:397.576133pt;}
.y8c{bottom:397.987733pt;}
.y6a{bottom:398.346533pt;}
.y16f{bottom:399.551867pt;}
.ye8{bottom:400.118800pt;}
.yd7{bottom:401.341733pt;}
.y1c2{bottom:401.543333pt;}
.y20a{bottom:401.745600pt;}
.y12b{bottom:401.777200pt;}
.y1ef{bottom:408.299200pt;}
.y175{bottom:414.022267pt;}
.y2c{bottom:416.645733pt;}
.y161{bottom:418.496933pt;}
.y4a{bottom:418.762800pt;}
.yab{bottom:420.222133pt;}
.y8b{bottom:421.987733pt;}
.y69{bottom:422.346533pt;}
.y16e{bottom:423.551867pt;}
.y10{bottom:423.845600pt;}
.ye7{bottom:424.118800pt;}
.yd6{bottom:425.341733pt;}
.y1c1{bottom:425.543333pt;}
.y12a{bottom:425.777200pt;}
.y221{bottom:427.996133pt;}
.y1ee{bottom:428.965867pt;}
.y19f{bottom:432.946933pt;}
.y209{bottom:435.761333pt;}
.y174{bottom:438.022267pt;}
.y158{bottom:439.426000pt;}
.y2b{bottom:440.645733pt;}
.y160{bottom:442.496933pt;}
.y49{bottom:442.762800pt;}
.yaa{bottom:444.222133pt;}
.y1ed{bottom:444.965867pt;}
.y8a{bottom:445.987733pt;}
.y68{bottom:446.346533pt;}
.ye6{bottom:448.118800pt;}
.yd5{bottom:449.341733pt;}
.y1c0{bottom:449.543333pt;}
.y129{bottom:449.777200pt;}
.y147{bottom:450.376133pt;}
.y172{bottom:457.513867pt;}
.y157{bottom:463.426000pt;}
.y2a{bottom:464.645733pt;}
.y1ec{bottom:465.632533pt;}
.y15f{bottom:466.496933pt;}
.y48{bottom:466.762800pt;}
.ya9{bottom:468.222133pt;}
.y208{bottom:469.777067pt;}
.y89{bottom:469.987733pt;}
.y67{bottom:470.346533pt;}
.ye5{bottom:472.118800pt;}
.yd4{bottom:473.341733pt;}
.y1bf{bottom:473.543333pt;}
.y128{bottom:473.777200pt;}
.y146{bottom:474.376133pt;}
.y220{bottom:480.796133pt;}
.yf{bottom:481.445733pt;}
.y1eb{bottom:486.299200pt;}
.y156{bottom:487.426000pt;}
.y29{bottom:488.645733pt;}
.y47{bottom:490.762800pt;}
.y181{bottom:490.990800pt;}
.ya8{bottom:492.222133pt;}
.y88{bottom:493.987733pt;}
.y66{bottom:494.346533pt;}
.ye4{bottom:496.118800pt;}
.yd3{bottom:497.341733pt;}
.y1be{bottom:497.543333pt;}
.y127{bottom:497.777200pt;}
.y145{bottom:498.376133pt;}
.y207{bottom:503.792667pt;}
.y1ea{bottom:506.965867pt;}
.y180{bottom:506.990800pt;}
.ye{bottom:510.245733pt;}
.y155{bottom:511.426000pt;}
.y28{bottom:512.645733pt;}
.y82{bottom:514.145600pt;}
.y15e{bottom:514.496933pt;}
.y46{bottom:514.762800pt;}
.ya7{bottom:516.222133pt;}
.y87{bottom:517.987733pt;}
.y65{bottom:518.346533pt;}
.ye3{bottom:520.118800pt;}
.yd2{bottom:521.341733pt;}
.y1bd{bottom:521.543333pt;}
.y126{bottom:521.777200pt;}
.y144{bottom:522.376133pt;}
.y1e9{bottom:527.632533pt;}
.y21f{bottom:528.796133pt;}
.y154{bottom:535.426000pt;}
.y27{bottom:536.645733pt;}
.yc2{bottom:537.103467pt;}
.y206{bottom:537.808400pt;}
.y81{bottom:538.145600pt;}
.y15d{bottom:538.496933pt;}
.y45{bottom:538.762800pt;}
.yd{bottom:539.045600pt;}
.ya6{bottom:540.222133pt;}
.y86{bottom:541.987733pt;}
.y64{bottom:542.346533pt;}
.ye2{bottom:544.118800pt;}
.yd1{bottom:545.341733pt;}
.y1bc{bottom:545.543333pt;}
.y125{bottom:545.777200pt;}
.y143{bottom:546.376133pt;}
.y1e8{bottom:548.299200pt;}
.y21e{bottom:552.796133pt;}
.y153{bottom:559.426000pt;}
.y26{bottom:560.645733pt;}
.yc1{bottom:561.103467pt;}
.y80{bottom:562.145600pt;}
.y44{bottom:562.762800pt;}
.y16d{bottom:563.655600pt;}
.ya5{bottom:564.222133pt;}
.y1e7{bottom:564.299200pt;}
.y190{bottom:564.351200pt;}
.y85{bottom:565.987733pt;}
.y63{bottom:566.346533pt;}
.yc{bottom:567.845600pt;}
.ye1{bottom:568.118800pt;}
.yd0{bottom:569.341733pt;}
.y1bb{bottom:569.543333pt;}
.y124{bottom:569.777200pt;}
.y142{bottom:570.376133pt;}
.y205{bottom:571.824133pt;}
.y152{bottom:583.426000pt;}
.y25{bottom:584.645733pt;}
.y1e6{bottom:584.965867pt;}
.yc0{bottom:585.103467pt;}
.y7f{bottom:586.145600pt;}
.y43{bottom:586.762800pt;}
.ya4{bottom:588.222133pt;}
.y18f{bottom:588.351200pt;}
.y84{bottom:589.987733pt;}
.y62{bottom:590.346533pt;}
.ye0{bottom:592.118800pt;}
.ycf{bottom:593.341733pt;}
.y1ba{bottom:593.543333pt;}
.y123{bottom:593.777200pt;}
.y141{bottom:594.376133pt;}
.yb{bottom:596.645733pt;}
.y21d{bottom:600.796133pt;}
.y1e5{bottom:605.632533pt;}
.y204{bottom:605.839867pt;}
.y151{bottom:607.426000pt;}
.y24{bottom:608.645733pt;}
.ybf{bottom:609.103467pt;}
.y96{bottom:609.776400pt;}
.y7e{bottom:610.145600pt;}
.y42{bottom:610.762800pt;}
.ya3{bottom:612.222133pt;}
.y18e{bottom:612.351200pt;}
.y61{bottom:614.346533pt;}
.ydf{bottom:616.118800pt;}
.yce{bottom:617.341733pt;}
.y1b9{bottom:617.543333pt;}
.y122{bottom:617.777200pt;}
.y140{bottom:618.376133pt;}
.y1e4{bottom:621.632533pt;}
.y21c{bottom:624.796133pt;}
.ya{bottom:625.445733pt;}
.y22f{bottom:627.423067pt;}
.y150{bottom:631.426000pt;}
.y23{bottom:632.645733pt;}
.ybe{bottom:633.103467pt;}
.y7d{bottom:634.145600pt;}
.y41{bottom:634.762800pt;}
.ya2{bottom:636.222133pt;}
.y18d{bottom:636.351200pt;}
.y60{bottom:638.346533pt;}
.yde{bottom:640.118800pt;}
.ycd{bottom:641.341733pt;}
.y1b8{bottom:641.543333pt;}
.y121{bottom:641.777200pt;}
.y1e3{bottom:642.299200pt;}
.y13f{bottom:642.376133pt;}
.y203{bottom:645.524933pt;}
.y15a{bottom:645.618000pt;}
.y22{bottom:656.645733pt;}
.ybd{bottom:657.103467pt;}
.y7c{bottom:658.145600pt;}
.y40{bottom:658.762800pt;}
.ya1{bottom:660.222133pt;}
.y18c{bottom:660.351200pt;}
.y1a9{bottom:661.862933pt;}
.y5f{bottom:662.346533pt;}
.y159{bottom:662.658000pt;}
.y1e2{bottom:662.965867pt;}
.y107{bottom:663.551867pt;}
.ydd{bottom:664.118800pt;}
.ycc{bottom:665.341733pt;}
.y1b7{bottom:665.543333pt;}
.y120{bottom:665.777200pt;}
.y13e{bottom:666.376133pt;}
.y21b{bottom:672.796133pt;}
.y22e{bottom:680.223067pt;}
.y21{bottom:680.645733pt;}
.y7b{bottom:682.145600pt;}
.y3f{bottom:682.762800pt;}
.y9{bottom:683.045600pt;}
.y1e1{bottom:683.632533pt;}
.ya0{bottom:684.222133pt;}
.y18b{bottom:684.351200pt;}
.y11f{bottom:684.977200pt;}
.y1a8{bottom:685.862933pt;}
.y5e{bottom:686.346533pt;}
.y106{bottom:687.551867pt;}
.y1b6{bottom:689.543333pt;}
.y13d{bottom:690.376133pt;}
.y202{bottom:694.913467pt;}
.y21a{bottom:696.796133pt;}
.y1e0{bottom:704.299200pt;}
.y20{bottom:704.645733pt;}
.y7a{bottom:706.145733pt;}
.y3e{bottom:706.762800pt;}
.y9f{bottom:708.222133pt;}
.y18a{bottom:708.351200pt;}
.y1a7{bottom:709.862933pt;}
.ybc{bottom:709.903467pt;}
.y5d{bottom:710.346533pt;}
.yfb{bottom:710.914667pt;}
.y105{bottom:711.551867pt;}
.y8{bottom:711.845733pt;}
.y1b5{bottom:713.543333pt;}
.y13c{bottom:714.376133pt;}
.yf6{bottom:716.496933pt;}
.y10f{bottom:719.808400pt;}
.y1df{bottom:724.965867pt;}
.y1f{bottom:728.645733pt;}
.y79{bottom:730.145733pt;}
.y3d{bottom:730.762800pt;}
.y9e{bottom:732.222133pt;}
.y189{bottom:732.351200pt;}
.y22d{bottom:733.023067pt;}
.y1a6{bottom:733.862933pt;}
.y5c{bottom:734.346533pt;}
.y104{bottom:735.551867pt;}
.ycb{bottom:737.341733pt;}
.y11e{bottom:737.777200pt;}
.y13b{bottom:738.376133pt;}
.y4{bottom:743.252133pt;}
.yfa{bottom:744.716000pt;}
.y219{bottom:744.796133pt;}
.y1de{bottom:745.632533pt;}
.y1e{bottom:752.645733pt;}
.y78{bottom:754.145733pt;}
.y3c{bottom:754.762800pt;}
.y9d{bottom:756.222133pt;}
.y188{bottom:756.351200pt;}
.y22c{bottom:757.023067pt;}
.y1a5{bottom:757.862933pt;}
.y5b{bottom:758.346533pt;}
.y103{bottom:759.551867pt;}
.yf5{bottom:759.723333pt;}
.yca{bottom:761.341733pt;}
.y1b4{bottom:761.543333pt;}
.y11d{bottom:761.777200pt;}
.y13a{bottom:762.376133pt;}
.y1dd{bottom:766.299200pt;}
.y215{bottom:767.312400pt;}
.y218{bottom:768.796133pt;}
.y7{bottom:769.445600pt;}
.y1d{bottom:776.645733pt;}
.y77{bottom:778.145733pt;}
.yf9{bottom:778.517467pt;}
.y3b{bottom:778.762800pt;}
.y9c{bottom:780.222133pt;}
.y187{bottom:780.351200pt;}
.y1a4{bottom:781.862933pt;}
.y5a{bottom:782.346533pt;}
.y102{bottom:783.551867pt;}
.yc9{bottom:785.341733pt;}
.y1b3{bottom:785.543333pt;}
.y11c{bottom:785.777200pt;}
.y139{bottom:786.376133pt;}
.ybb{bottom:786.703467pt;}
.y1dc{bottom:786.965867pt;}
.y214{bottom:787.979067pt;}
.y1c{bottom:800.645733pt;}
.yf4{bottom:802.424267pt;}
.y3a{bottom:802.762800pt;}
.y195{bottom:802.973733pt;}
.y114{bottom:803.295733pt;}
.y213{bottom:803.979067pt;}
.y9b{bottom:804.222133pt;}
.y186{bottom:804.351200pt;}
.y1a3{bottom:805.862933pt;}
.y59{bottom:806.346533pt;}
.y101{bottom:807.551867pt;}
.y1db{bottom:807.632533pt;}
.yc8{bottom:809.341733pt;}
.y1b2{bottom:809.543333pt;}
.y11b{bottom:809.777200pt;}
.y138{bottom:810.376133pt;}
.yba{bottom:810.703467pt;}
.yf8{bottom:812.318800pt;}
.y217{bottom:816.796133pt;}
.y1b{bottom:824.645733pt;}
.y39{bottom:826.762800pt;}
.y6{bottom:827.045600pt;}
.y9a{bottom:828.222133pt;}
.y1da{bottom:828.299200pt;}
.y185{bottom:828.351200pt;}
.y22b{bottom:829.023067pt;}
.y1a2{bottom:829.862933pt;}
.y58{bottom:830.346533pt;}
.y100{bottom:831.551867pt;}
.yc7{bottom:833.341733pt;}
.y1b1{bottom:833.543333pt;}
.y11a{bottom:833.777200pt;}
.y137{bottom:834.376133pt;}
.yb9{bottom:834.703467pt;}
.y212{bottom:840.645733pt;}
.yf3{bottom:845.387867pt;}
.yf7{bottom:846.120133pt;}
.y1a{bottom:848.645733pt;}
.y1d9{bottom:848.965867pt;}
.y38{bottom:850.762800pt;}
.y113{bottom:851.295733pt;}
.y99{bottom:852.222133pt;}
.y184{bottom:852.351200pt;}
.y22a{bottom:853.023067pt;}
.y1a1{bottom:853.862933pt;}
.y57{bottom:854.346533pt;}
.y76{bottom:854.945600pt;}
.yff{bottom:855.551867pt;}
.y194{bottom:855.773733pt;}
.y211{bottom:856.645733pt;}
.yc6{bottom:857.341733pt;}
.y1b0{bottom:857.543333pt;}
.y119{bottom:857.777200pt;}
.y136{bottom:858.376133pt;}
.yb8{bottom:858.703467pt;}
.y216{bottom:864.796133pt;}
.y1d8{bottom:869.632533pt;}
.y19{bottom:872.645733pt;}
.y37{bottom:874.762800pt;}
.y112{bottom:875.295733pt;}
.y98{bottom:876.222133pt;}
.y183{bottom:876.351200pt;}
.y229{bottom:877.023067pt;}
.y210{bottom:877.312400pt;}
.y1a0{bottom:877.862933pt;}
.y56{bottom:878.346533pt;}
.y75{bottom:878.945600pt;}
.yfe{bottom:879.551867pt;}
.y193{bottom:879.773733pt;}
.yc5{bottom:881.341733pt;}
.y1af{bottom:881.543333pt;}
.y118{bottom:881.777200pt;}
.y135{bottom:882.376133pt;}
.yb7{bottom:882.703467pt;}
.y5{bottom:884.645733pt;}
.yf2{bottom:888.088667pt;}
.y173{bottom:894.022267pt;}
.y18{bottom:896.645733pt;}
.y20f{bottom:897.979067pt;}
.y36{bottom:898.762800pt;}
.y111{bottom:899.295733pt;}
.y97{bottom:900.222133pt;}
.y182{bottom:900.351200pt;}
.y228{bottom:901.023067pt;}
.y55{bottom:902.346533pt;}
.y74{bottom:902.945600pt;}
.yfd{bottom:903.551867pt;}
.y192{bottom:903.773733pt;}
.yc4{bottom:905.341733pt;}
.y1ae{bottom:905.543333pt;}
.y117{bottom:905.777200pt;}
.y134{bottom:906.376133pt;}
.yb6{bottom:906.703467pt;}
.y1c9{bottom:979.795200pt;}
.y17{bottom:1065.165333pt;}
.hb{height:24.352299pt;}
.hf{height:36.072722pt;}
.h1e{height:36.510417pt;}
.hc{height:37.031250pt;}
.h1b{height:37.973333pt;}
.h13{height:39.040936pt;}
.h15{height:39.438281pt;}
.hd{height:39.513084pt;}
.h16{height:39.623437pt;}
.h18{height:41.770667pt;}
.he{height:42.190692pt;}
.h12{height:42.705869pt;}
.h10{height:43.241892pt;}
.h8{height:43.812500pt;}
.h1a{height:43.888299pt;}
.h1d{height:43.984375pt;}
.h19{height:44.437500pt;}
.ha{height:44.468750pt;}
.h14{height:45.568000pt;}
.h1c{height:47.218529pt;}
.h17{height:47.219062pt;}
.h7{height:51.114583pt;}
.h11{height:51.448084pt;}
.h9{height:56.156250pt;}
.h1f{height:61.578125pt;}
.h3{height:61.958333pt;}
.h2{height:70.375000pt;}
.h6{height:79.171875pt;}
.h5{height:131.953125pt;}
.h4{height:568.750000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:111.260667pt;}
.x5{left:113.385867pt;}
.x7{left:114.495467pt;}
.x2d{left:120.052533pt;}
.x13{left:122.834667pt;}
.x26{left:124.724400pt;}
.xd{left:132.124800pt;}
.x19{left:146.719200pt;}
.xe{left:211.607333pt;}
.xc{left:214.937200pt;}
.x4{left:224.882000pt;}
.x2{left:230.621200pt;}
.xb{left:267.243333pt;}
.x2c{left:286.351733pt;}
.x2b{left:287.334800pt;}
.x29{left:295.541733pt;}
.x1{left:302.282667pt;}
.x1b{left:303.504533pt;}
.x1f{left:305.100400pt;}
.x25{left:316.438933pt;}
.x2a{left:323.600400pt;}
.x28{left:327.303467pt;}
.x1c{left:333.707733pt;}
.x20{left:335.303467pt;}
.x1a{left:343.250667pt;}
.x22{left:344.846533pt;}
.x1e{left:346.846533pt;}
.x3{left:349.017067pt;}
.x24{left:356.185067pt;}
.x9{left:360.679333pt;}
.xa{left:362.430800pt;}
.x1d{left:371.930400pt;}
.x21{left:373.526133pt;}
.x23{left:383.741067pt;}
.x27{left:384.864800pt;}
.x8{left:387.389467pt;}
.x6{left:392.119867pt;}
.x18{left:396.850400pt;}
.x14{left:429.258400pt;}
.x15{left:479.326000pt;}
.x16{left:567.080267pt;}
.x2e{left:584.018133pt;}
.xf{left:594.553867pt;}
.x12{left:599.640800pt;}
.x11{left:609.384400pt;}
.x10{left:613.626000pt;}
}




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