
    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_9a7844872d6b4f5b14758e1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_d6cafed2605c72f377e7091d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.899000;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_a7c6086b19fadcd6cd7b15bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.705000;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_f03c513e564bc6025fbbbb88.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_323f79812b5bf81533d4ad5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.899000;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_866bdfe1c8193af6b952a029.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_d75d5d66e8988a4d8fb2df1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_719989d0f48facdc9444e4c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.635000;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_be72b6ad53885b8df6487fe1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_987ef88e1527ea7b7aa8cc9f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_4e545c394afb2725329db7be.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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_ee5f4b32f08e9c9cc0b695dd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908000;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_44978d87c5b42b43725d3aba.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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_e4cf1835311cf6349c38bfbf.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2bb5e3809f2de2a6e3678de7.woff2')format("woff");}.fff{font-family:fff;line-height:1.001000;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:ff10;src:url('chunks/assets/font_0452e4139a88ce6aaaaed095.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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:ff11;src:url('chunks/assets/font_d2a84e85d16f6193cd6c4a11.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.711000;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:ff12;src:url('chunks/assets/font_4026d00c1359d86c315105a1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.840000;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:ff13;src:url('chunks/assets/font_d67682bed382f43bc4306cc1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.923000;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:ff14;src:url('chunks/assets/font_bd73b6a61bdd59fed58b336e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-12.912000px;}
.v3{vertical-align:-10.662000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.000493px;}
.ls3a{letter-spacing:0.001024px;}
.ls35{letter-spacing:0.002533px;}
.ls47{letter-spacing:0.010779px;}
.ls1d{letter-spacing:0.012337px;}
.ls18{letter-spacing:0.013752px;}
.ls4d{letter-spacing:0.014920px;}
.ls21{letter-spacing:0.018570px;}
.ls4a{letter-spacing:0.018692px;}
.ls3e{letter-spacing:0.019841px;}
.ls41{letter-spacing:0.024321px;}
.ls42{letter-spacing:0.025623px;}
.lse{letter-spacing:0.025807px;}
.ls48{letter-spacing:0.025827px;}
.ls2e{letter-spacing:0.026553px;}
.ls26{letter-spacing:0.029420px;}
.ls4f{letter-spacing:0.035369px;}
.ls1{letter-spacing:2.982648px;}
.ls22{letter-spacing:2.986767px;}
.ls9{letter-spacing:2.987236px;}
.lsf{letter-spacing:2.988792px;}
.ls6{letter-spacing:2.991031px;}
.ls10{letter-spacing:2.992767px;}
.ls11{letter-spacing:2.993236px;}
.ls12{letter-spacing:4.647277px;}
.lsd{letter-spacing:4.712731px;}
.ls23{letter-spacing:5.105459px;}
.ls0{letter-spacing:6.455765px;}
.ls40{letter-spacing:7.003642px;}
.ls8{letter-spacing:7.069097px;}
.ls5{letter-spacing:9.210260px;}
.ls2{letter-spacing:9.982525px;}
.lsa{letter-spacing:10.930918px;}
.ls7{letter-spacing:14.374892px;}
.ls30{letter-spacing:14.530921px;}
.ls3f{letter-spacing:16.232741px;}
.ls1a{letter-spacing:16.690923px;}
.ls20{letter-spacing:16.952741px;}
.ls34{letter-spacing:17.607287px;}
.ls37{letter-spacing:17.934560px;}
.ls3d{letter-spacing:18.130924px;}
.ls28{letter-spacing:18.261833px;}
.ls2b{letter-spacing:18.310767px;}
.ls27{letter-spacing:19.374562px;}
.ls3{letter-spacing:19.666172px;}
.ls33{letter-spacing:20.029108px;}
.lsb{letter-spacing:20.094562px;}
.ls2a{letter-spacing:20.314767px;}
.ls39{letter-spacing:21.076381px;}
.ls17{letter-spacing:21.665473px;}
.ls14{letter-spacing:21.730927px;}
.ls29{letter-spacing:22.660767px;}
.ls3c{letter-spacing:22.909110px;}
.ls31{letter-spacing:23.040019px;}
.lsc{letter-spacing:23.081236px;}
.ls2c{letter-spacing:23.548767px;}
.ls19{letter-spacing:23.890929px;}
.ls38{letter-spacing:24.349111px;}
.ls24{letter-spacing:24.480020px;}
.ls15{letter-spacing:24.688767px;}
.ls16{letter-spacing:24.690792px;}
.ls36{letter-spacing:24.792792px;}
.ls2d{letter-spacing:25.330930px;}
.ls44{letter-spacing:25.527294px;}
.ls1f{letter-spacing:25.723658px;}
.ls1b{letter-spacing:26.836386px;}
.ls4e{letter-spacing:27.425477px;}
.ls49{letter-spacing:27.666792px;}
.ls25{letter-spacing:27.883660px;}
.ls43{letter-spacing:28.407296px;}
.ls2f{letter-spacing:28.642767px;}
.ls1e{letter-spacing:28.667236px;}
.ls46{letter-spacing:28.800024px;}
.ls1c{letter-spacing:30.370934px;}
.ls4b{letter-spacing:32.322792px;}
.ls13{letter-spacing:32.727300px;}
.ls3b{letter-spacing:33.528792px;}
.ls32{letter-spacing:41.301853px;}
.ls4c{letter-spacing:52.363680px;}
.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;}
}
.ws4a{word-spacing:-54.796746px;}
.ws5f{word-spacing:-45.664082px;}
.ws4d{word-spacing:-42.637126px;}
.ws4b{word-spacing:-40.507930px;}
.wsb{word-spacing:-38.937826px;}
.ws1e{word-spacing:-32.544027px;}
.ws4e{word-spacing:-31.771663px;}
.wsc{word-spacing:-29.015076px;}
.ws7e{word-spacing:-18.078561px;}
.wsad{word-spacing:-17.554924px;}
.ws9c{word-spacing:-17.424015px;}
.ws9a{word-spacing:-17.293105px;}
.ws68{word-spacing:-17.227651px;}
.ws42{word-spacing:-16.638559px;}
.ws81{word-spacing:-16.311286px;}
.ws0{word-spacing:-16.196248px;}
.ws5a{word-spacing:-15.918559px;}
.ws33{word-spacing:-15.829597px;}
.ws97{word-spacing:-15.787650px;}
.ws49{word-spacing:-15.743520px;}
.wsb7{word-spacing:-15.722195px;}
.ws92{word-spacing:-15.656740px;}
.ws5e{word-spacing:-15.591286px;}
.ws64{word-spacing:-15.460377px;}
.wsb1{word-spacing:-15.329467px;}
.ws8a{word-spacing:-15.264013px;}
.ws67{word-spacing:-15.198558px;}
.ws8e{word-spacing:-15.067649px;}
.ws59{word-spacing:-15.002194px;}
.ws57{word-spacing:-14.805831px;}
.ws75{word-spacing:-14.674921px;}
.ws14{word-spacing:-14.609467px;}
.ws41{word-spacing:-14.544012px;}
.ws66{word-spacing:-14.347648px;}
.ws1a{word-spacing:-14.282194px;}
.ws8f{word-spacing:-14.151285px;}
.ws45{word-spacing:-14.085830px;}
.ws51{word-spacing:-14.020375px;}
.wsbf{word-spacing:-13.954921px;}
.ws39{word-spacing:-13.889466px;}
.ws20{word-spacing:-13.758557px;}
.wsac{word-spacing:-13.627648px;}
.ws54{word-spacing:-13.514158px;}
.ws91{word-spacing:-13.496739px;}
.ws3d{word-spacing:-13.442427px;}
.ws1c{word-spacing:-13.431284px;}
.wsa5{word-spacing:-13.365829px;}
.wsb2{word-spacing:-13.300375px;}
.ws96{word-spacing:-13.234920px;}
.ws62{word-spacing:-13.169466px;}
.ws63{word-spacing:-13.104011px;}
.ws65{word-spacing:-12.907647px;}
.ws44{word-spacing:-12.842193px;}
.ws23{word-spacing:-12.776738px;}
.wsa8{word-spacing:-12.645829px;}
.ws28{word-spacing:-12.580374px;}
.ws50{word-spacing:-12.514920px;}
.ws4f{word-spacing:-12.449465px;}
.ws2e{word-spacing:-12.318556px;}
.ws6f{word-spacing:-12.253101px;}
.ws6{word-spacing:-12.128469px;}
.ws37{word-spacing:-12.122192px;}
.wsb9{word-spacing:-12.056737px;}
.ws69{word-spacing:-11.991283px;}
.ws6c{word-spacing:-11.925828px;}
.ws3a{word-spacing:-11.794919px;}
.ws90{word-spacing:-11.729464px;}
.ws7d{word-spacing:-11.664010px;}
.ws84{word-spacing:-11.598555px;}
.ws78{word-spacing:-11.533101px;}
.ws2b{word-spacing:-11.467646px;}
.ws77{word-spacing:-11.402191px;}
.ws72{word-spacing:-11.336737px;}
.ws95{word-spacing:-11.271282px;}
.wsbd{word-spacing:-11.205828px;}
.ws25{word-spacing:-11.074918px;}
.wsbc{word-spacing:-10.944009px;}
.ws18{word-spacing:-10.878555px;}
.ws12{word-spacing:-10.873182px;}
.ws29{word-spacing:-10.813100px;}
.ws73{word-spacing:-10.747645px;}
.ws94{word-spacing:-10.682191px;}
.ws32{word-spacing:-10.616736px;}
.wsc0{word-spacing:-10.551282px;}
.wsb3{word-spacing:-10.485827px;}
.ws86{word-spacing:-10.420372px;}
.ws21{word-spacing:-10.354918px;}
.wsae{word-spacing:-10.224009px;}
.wsa{word-spacing:-10.215650px;}
.ws22{word-spacing:-10.027645px;}
.ws9{word-spacing:-9.976548px;}
.ws74{word-spacing:-9.962190px;}
.wsbb{word-spacing:-9.896736px;}
.ws2{word-spacing:-9.856996px;}
.wsc3{word-spacing:-9.831281px;}
.ws11{word-spacing:-9.797221px;}
.ws2d{word-spacing:-9.765826px;}
.wsbe{word-spacing:-9.700372px;}
.ws6d{word-spacing:-9.569463px;}
.ws35{word-spacing:-9.438553px;}
.ws58{word-spacing:-9.373099px;}
.wsaa{word-spacing:-9.111280px;}
.ws17{word-spacing:-9.045826px;}
.ws7{word-spacing:-9.020138px;}
.ws7f{word-spacing:-8.980371px;}
.wse{word-spacing:-8.840811px;}
.ws4c{word-spacing:-8.784007px;}
.ws55{word-spacing:-8.718553px;}
.ws2c{word-spacing:-8.653098px;}
.ws80{word-spacing:-8.587644px;}
.ws3b{word-spacing:-8.522189px;}
.ws1d{word-spacing:-8.325825px;}
.wsa3{word-spacing:-8.260371px;}
.ws76{word-spacing:-8.194916px;}
.ws60{word-spacing:-8.129461px;}
.ws93{word-spacing:-7.998552px;}
.ws83{word-spacing:-7.933098px;}
.ws24{word-spacing:-7.867643px;}
.ws87{word-spacing:-7.802188px;}
.wsa4{word-spacing:-7.540370px;}
.ws34{word-spacing:-7.474915px;}
.wsab{word-spacing:-7.344006px;}
.wsd{word-spacing:-7.286646px;}
.ws53{word-spacing:-7.252370px;}
.ws6a{word-spacing:-7.213097px;}
.ws70{word-spacing:-7.082188px;}
.wsf{word-spacing:-6.987768px;}
.ws6b{word-spacing:-6.951279px;}
.ws5d{word-spacing:-6.885824px;}
.ws46{word-spacing:-6.820369px;}
.ws1b{word-spacing:-6.689460px;}
.ws26{word-spacing:-6.624006px;}
.ws2f{word-spacing:-6.558551px;}
.wsc2{word-spacing:-6.493096px;}
.wsa0{word-spacing:-6.427642px;}
.ws5b{word-spacing:-6.362187px;}
.ws89{word-spacing:-6.296733px;}
.ws56{word-spacing:-6.231278px;}
.ws99{word-spacing:-6.165823px;}
.ws47{word-spacing:-6.100369px;}
.wsa9{word-spacing:-6.034914px;}
.ws8{word-spacing:-5.911807px;}
.ws38{word-spacing:-5.904005px;}
.ws6e{word-spacing:-5.773096px;}
.ws5c{word-spacing:-5.707641px;}
.ws31{word-spacing:-5.576732px;}
.ws10{word-spacing:-5.553153px;}
.ws36{word-spacing:-5.511277px;}
.wsaf{word-spacing:-5.380368px;}
.ws30{word-spacing:-5.314914px;}
.wsb4{word-spacing:-5.249459px;}
.wsba{word-spacing:-5.118550px;}
.wsb5{word-spacing:-4.987641px;}
.ws71{word-spacing:-4.922186px;}
.ws48{word-spacing:-4.791277px;}
.wsa6{word-spacing:-4.660368px;}
.ws9d{word-spacing:-4.398549px;}
.ws8b{word-spacing:-4.333095px;}
.ws85{word-spacing:-4.136731px;}
.ws43{word-spacing:-4.071276px;}
.ws7c{word-spacing:-4.005822px;}
.ws8d{word-spacing:-3.744003px;}
.ws3f{word-spacing:-3.613094px;}
.wsa1{word-spacing:-3.547639px;}
.wsb8{word-spacing:-3.482185px;}
.ws40{word-spacing:-3.416730px;}
.ws19{word-spacing:-3.285821px;}
.ws9b{word-spacing:-3.220366px;}
.wsa7{word-spacing:-3.024003px;}
.ws9e{word-spacing:-2.762184px;}
.wsb6{word-spacing:-2.500366px;}
.ws9f{word-spacing:-2.369457px;}
.ws5{word-spacing:-2.265495px;}
.ws79{word-spacing:-2.238547px;}
.ws4{word-spacing:-2.086168px;}
.ws7b{word-spacing:-2.042184px;}
.ws7a{word-spacing:-1.976729px;}
.ws3c{word-spacing:-1.845820px;}
.ws15{word-spacing:-1.780365px;}
.ws16{word-spacing:-1.125819px;}
.ws3e{word-spacing:-0.864001px;}
.wsc1{word-spacing:-0.798546px;}
.wsa2{word-spacing:-0.667637px;}
.ws1f{word-spacing:-0.536728px;}
.wsc4{word-spacing:-0.086077px;}
.ws2a{word-spacing:-0.078546px;}
.ws88{word-spacing:-0.065455px;}
.wsc7{word-spacing:-0.059776px;}
.ws52{word-spacing:-0.052364px;}
.ws27{word-spacing:0.000000px;}
.ws61{word-spacing:4.594913px;}
.ws98{word-spacing:5.616005px;}
.wsb0{word-spacing:12.881465px;}
.ws8c{word-spacing:12.946920px;}
.ws3{word-spacing:21.399665px;}
.ws1{word-spacing:23.312640px;}
.wsc6{word-spacing:31.262639px;}
.wsc5{word-spacing:31.322414px;}
.ws82{word-spacing:40.355973px;}
.ws13{word-spacing:47.351068px;}
.wsc8{word-spacing:94.086794px;}
._1a{margin-left:-7.833025px;}
._2{margin-left:-6.559087px;}
._a{margin-left:-4.961375px;}
._3{margin-left:-3.594166px;}
._1{margin-left:-1.936742px;}
._5{width:1.044408px;}
._0{width:2.685602px;}
._10{width:4.659842px;}
._21{width:11.912737px;}
._1c{width:17.499705px;}
._7{width:18.913013px;}
._14{width:20.262519px;}
._1d{width:21.263560px;}
._23{width:22.688716px;}
._b{width:23.838535px;}
._c{width:25.472035px;}
._4{width:26.480591px;}
._d{width:27.851130px;}
._8{width:29.206345px;}
._15{width:30.240025px;}
._e{width:31.813801px;}
._1b{width:33.581075px;}
._9{width:34.873098px;}
._11{width:36.850940px;}
._22{width:38.555625px;}
._1f{width:40.098401px;}
._12{width:41.626154px;}
._17{width:42.783278px;}
._24{width:43.791993px;}
._18{width:44.810407px;}
._16{width:47.084847px;}
._26{width:48.713653px;}
._6{width:50.271280px;}
._25{width:52.666923px;}
._20{width:54.654591px;}
._27{width:56.332381px;}
._f{width:58.058230px;}
._13{width:59.825504px;}
._28{width:62.704604px;}
._1e{width:80.697600px;}
._19{width:94.684920px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2c{bottom:63.168000px;}
.y2b{bottom:108.000000px;}
.y178{bottom:116.229000px;}
.y141{bottom:119.250000px;}
.y56{bottom:121.471500px;}
.y119{bottom:124.537500px;}
.y2a{bottom:128.323500px;}
.yeb{bottom:129.379500px;}
.y170{bottom:134.161500px;}
.y140{bottom:137.182500px;}
.y55{bottom:141.795000px;}
.y9b{bottom:141.984000px;}
.y118{bottom:144.861000px;}
.y29{bottom:148.647000px;}
.y72{bottom:148.648500px;}
.yea{bottom:149.704500px;}
.y16f{bottom:152.095500px;}
.y9a{bottom:162.307500px;}
.yc3{bottom:164.848500px;}
.y117{bottom:165.184500px;}
.y28{bottom:168.972000px;}
.ye9{bottom:170.028000px;}
.y54{bottom:172.684500px;}
.y13f{bottom:173.049000px;}
.y99{bottom:182.631000px;}
.y116{bottom:185.508000px;}
.y16e{bottom:187.960500px;}
.y27{bottom:189.295500px;}
.ye8{bottom:190.351500px;}
.y13e{bottom:190.981500px;}
.y98{bottom:202.954500px;}
.y115{bottom:205.831500px;}
.y177{bottom:205.893000px;}
.y13d{bottom:208.914000px;}
.y26{bottom:209.619000px;}
.ye7{bottom:210.675000px;}
.yc2{bottom:215.193000px;}
.y53{bottom:216.498000px;}
.y97{bottom:223.279500px;}
.y16d{bottom:223.825500px;}
.y114{bottom:226.156500px;}
.y13c{bottom:226.846500px;}
.y25{bottom:229.942500px;}
.ye6{bottom:230.998500px;}
.yc1{bottom:235.516500px;}
.y52{bottom:236.821500px;}
.y16c{bottom:241.758000px;}
.y96{bottom:243.603000px;}
.y13b{bottom:244.779000px;}
.y113{bottom:246.480000px;}
.y24{bottom:250.266000px;}
.y71{bottom:250.267500px;}
.ye5{bottom:251.323500px;}
.yc0{bottom:255.840000px;}
.y51{bottom:257.145000px;}
.y16b{bottom:259.692000px;}
.y13a{bottom:262.711500px;}
.y112{bottom:266.803500px;}
.y23{bottom:270.591000px;}
.ye4{bottom:271.647000px;}
.y95{bottom:274.492500px;}
.ybf{bottom:276.163500px;}
.y50{bottom:277.468500px;}
.y16a{bottom:277.624500px;}
.y22{bottom:290.914500px;}
.ye3{bottom:291.970500px;}
.y169{bottom:295.557000px;}
.y4f{bottom:297.793500px;}
.y139{bottom:298.578000px;}
.y70{bottom:301.480500px;}
.y111{bottom:305.059500px;}
.ybe{bottom:306.730500px;}
.y21{bottom:311.238000px;}
.ye2{bottom:312.294000px;}
.y168{bottom:313.489500px;}
.y138{bottom:316.510500px;}
.y4e{bottom:318.117000px;}
.y94{bottom:318.306000px;}
.y110{bottom:325.383000px;}
.ybd{bottom:327.054000px;}
.y167{bottom:331.422000px;}
.y20{bottom:331.561500px;}
.ye1{bottom:332.617500px;}
.y137{bottom:334.443000px;}
.y93{bottom:338.629500px;}
.y6f{bottom:345.108000px;}
.y10f{bottom:345.708000px;}
.ybc{bottom:347.379000px;}
.y4d{bottom:349.006500px;}
.y166{bottom:349.354500px;}
.y1f{bottom:351.885000px;}
.ye0{bottom:352.941000px;}
.y92{bottom:358.953000px;}
.y6e{bottom:365.431500px;}
.y10e{bottom:366.031500px;}
.y165{bottom:367.288500px;}
.ybb{bottom:367.702500px;}
.y1e{bottom:372.210000px;}
.y91{bottom:379.276500px;}
.y164{bottom:385.221000px;}
.y6d{bottom:385.755000px;}
.y10d{bottom:386.355000px;}
.ydf{bottom:386.715000px;}
.yba{bottom:388.026000px;}
.y136{bottom:388.242000px;}
.y1d{bottom:392.533500px;}
.y4c{bottom:392.820000px;}
.y90{bottom:399.600000px;}
.y163{bottom:403.153500px;}
.y6c{bottom:406.078500px;}
.y135{bottom:406.174500px;}
.y10c{bottom:406.678500px;}
.yde{bottom:407.038500px;}
.y1c{bottom:412.857000px;}
.y4b{bottom:413.143500px;}
.yb9{bottom:419.236500px;}
.y8f{bottom:419.925000px;}
.y176{bottom:421.086000px;}
.y134{bottom:424.107000px;}
.y6b{bottom:426.402000px;}
.y10b{bottom:427.002000px;}
.ydd{bottom:427.362000px;}
.y1b{bottom:433.180500px;}
.y4a{bottom:433.467000px;}
.y162{bottom:439.018500px;}
.yb8{bottom:439.560000px;}
.y8e{bottom:440.248500px;}
.y133{bottom:442.039500px;}
.y6a{bottom:446.727000px;}
.y10a{bottom:447.327000px;}
.ydc{bottom:447.687000px;}
.y1a{bottom:453.504000px;}
.y49{bottom:453.790500px;}
.y161{bottom:456.951000px;}
.yb7{bottom:459.883500px;}
.y132{bottom:459.972000px;}
.y8d{bottom:460.572000px;}
.y69{bottom:467.050500px;}
.y109{bottom:467.650500px;}
.ydb{bottom:468.010500px;}
.y19{bottom:473.827500px;}
.y48{bottom:474.114000px;}
.y179{bottom:474.885000px;}
.y131{bottom:477.904500px;}
.yb6{bottom:480.207000px;}
.y8c{bottom:480.895500px;}
.y68{bottom:487.374000px;}
.y108{bottom:487.974000px;}
.yda{bottom:488.334000px;}
.y160{bottom:492.817500px;}
.y18{bottom:494.152500px;}
.y47{bottom:494.439000px;}
.y130{bottom:495.838500px;}
.yb5{bottom:500.530500px;}
.y8b{bottom:501.219000px;}
.y67{bottom:507.697500px;}
.yd9{bottom:508.657500px;}
.y15f{bottom:510.750000px;}
.yb4{bottom:520.855500px;}
.y107{bottom:521.748000px;}
.y46{bottom:525.328500px;}
.y66{bottom:528.021000px;}
.y175{bottom:528.682500px;}
.yd8{bottom:528.981000px;}
.y17{bottom:530.676000px;}
.y12f{bottom:531.703500px;}
.y8a{bottom:532.108500px;}
.yb3{bottom:541.179000px;}
.y106{bottom:542.071500px;}
.y15e{bottom:546.615000px;}
.y65{bottom:548.346000px;}
.yd7{bottom:549.306000px;}
.y12e{bottom:549.636000px;}
.yb2{bottom:561.502500px;}
.y105{bottom:562.395000px;}
.y15d{bottom:564.547500px;}
.y12d{bottom:567.568500px;}
.y64{bottom:568.669500px;}
.y45{bottom:569.142000px;}
.yd6{bottom:569.629500px;}
.y89{bottom:575.922000px;}
.y16{bottom:581.916000px;}
.y15c{bottom:582.481500px;}
.y104{bottom:582.718500px;}
.y63{bottom:588.993000px;}
.y44{bottom:589.465500px;}
.yd5{bottom:589.953000px;}
.yb1{bottom:592.713000px;}
.y88{bottom:596.247000px;}
.y15{bottom:599.848500px;}
.y15b{bottom:600.414000px;}
.y103{bottom:603.042000px;}
.y12c{bottom:603.435000px;}
.y43{bottom:609.789000px;}
.yb0{bottom:613.036500px;}
.y87{bottom:616.570500px;}
.y14{bottom:617.781000px;}
.y15a{bottom:618.346500px;}
.y62{bottom:619.882500px;}
.y12b{bottom:621.367500px;}
.y102{bottom:623.367000px;}
.yd4{bottom:623.727000px;}
.y42{bottom:630.112500px;}
.yaf{bottom:633.360000px;}
.y13{bottom:635.713500px;}
.y159{bottom:636.279000px;}
.y86{bottom:636.894000px;}
.y12a{bottom:639.300000px;}
.y101{bottom:643.690500px;}
.yd3{bottom:644.050500px;}
.y41{bottom:650.436000px;}
.y12{bottom:653.646000px;}
.yae{bottom:653.683500px;}
.y174{bottom:654.211500px;}
.y85{bottom:657.217500px;}
.y129{bottom:657.232500px;}
.y61{bottom:663.510000px;}
.y100{bottom:664.014000px;}
.yd2{bottom:664.374000px;}
.y40{bottom:670.759500px;}
.y11{bottom:671.580000px;}
.y158{bottom:672.144000px;}
.yad{bottom:674.008500px;}
.y84{bottom:677.541000px;}
.yff{bottom:684.337500px;}
.yd1{bottom:684.697500px;}
.y10{bottom:689.512500px;}
.y157{bottom:690.078000px;}
.y3f{bottom:691.084500px;}
.y128{bottom:693.097500px;}
.yac{bottom:694.332000px;}
.y60{bottom:696.889500px;}
.y83{bottom:697.864500px;}
.yfe{bottom:704.661000px;}
.yd0{bottom:705.021000px;}
.yf{bottom:707.445000px;}
.y156{bottom:708.010500px;}
.y127{bottom:711.031500px;}
.y82{bottom:718.189500px;}
.y3e{bottom:721.974000px;}
.yfd{bottom:724.984500px;}
.ycf{bottom:725.344500px;}
.ye{bottom:725.377500px;}
.yab{bottom:725.541000px;}
.y155{bottom:725.943000px;}
.y126{bottom:728.964000px;}
.y5f{bottom:730.267500px;}
.y81{bottom:738.513000px;}
.yd{bottom:743.310000px;}
.y154{bottom:743.875500px;}
.yce{bottom:745.669500px;}
.yaa{bottom:745.866000px;}
.y125{bottom:746.896500px;}
.yfc{bottom:758.758500px;}
.y80{bottom:758.836500px;}
.yc{bottom:761.242500px;}
.y173{bottom:761.808000px;}
.y5e{bottom:763.647000px;}
.y124{bottom:764.829000px;}
.y3d{bottom:765.787500px;}
.ycd{bottom:765.993000px;}
.ya9{bottom:766.189500px;}
.yfb{bottom:779.082000px;}
.y7f{bottom:779.160000px;}
.yb{bottom:779.176500px;}
.y153{bottom:779.742000px;}
.y123{bottom:782.761500px;}
.y3c{bottom:786.111000px;}
.ycc{bottom:786.316500px;}
.ya8{bottom:786.513000px;}
.y5d{bottom:796.434000px;}
.ya{bottom:797.109000px;}
.y152{bottom:797.674500px;}
.yfa{bottom:799.405500px;}
.y7e{bottom:799.483500px;}
.y3b{bottom:806.434500px;}
.ycb{bottom:806.640000px;}
.ya7{bottom:806.836500px;}
.y122{bottom:810.856500px;}
.y9{bottom:815.041500px;}
.y151{bottom:815.607000px;}
.yf9{bottom:819.730500px;}
.y7d{bottom:819.808500px;}
.y3a{bottom:826.758000px;}
.y121{bottom:831.180000px;}
.y5c{bottom:832.012500px;}
.y8{bottom:832.974000px;}
.y172{bottom:833.539500px;}
.ya6{bottom:838.047000px;}
.yf8{bottom:840.054000px;}
.y7c{bottom:840.132000px;}
.yca{bottom:840.414000px;}
.y150{bottom:851.472000px;}
.y7{bottom:858.258000px;}
.ya5{bottom:858.370500px;}
.yf7{bottom:860.377500px;}
.y7b{bottom:860.455500px;}
.yc9{bottom:860.737500px;}
.y39{bottom:863.283000px;}
.y5b{bottom:867.592500px;}
.y120{bottom:867.705000px;}
.y14f{bottom:869.404500px;}
.ya4{bottom:878.694000px;}
.yf6{bottom:880.701000px;}
.y7a{bottom:880.779000px;}
.yc8{bottom:881.061000px;}
.y171{bottom:887.338500px;}
.y5a{bottom:887.916000px;}
.ya3{bottom:899.019000px;}
.yf5{bottom:901.024500px;}
.y79{bottom:901.102500px;}
.yc7{bottom:901.384500px;}
.y14e{bottom:905.271000px;}
.y59{bottom:908.239500px;}
.y38{bottom:914.835000px;}
.y6{bottom:916.537500px;}
.y11f{bottom:919.257000px;}
.ya2{bottom:919.342500px;}
.y78{bottom:921.427500px;}
.yc6{bottom:921.709500px;}
.y14d{bottom:923.203500px;}
.y58{bottom:928.563000px;}
.y37{bottom:935.158500px;}
.yf4{bottom:939.282000px;}
.y11e{bottom:939.580500px;}
.ya1{bottom:939.666000px;}
.y14c{bottom:941.136000px;}
.y77{bottom:941.751000px;}
.yc5{bottom:942.033000px;}
.y5{bottom:952.930500px;}
.y36{bottom:955.482000px;}
.y14b{bottom:959.068500px;}
.yf3{bottom:959.605500px;}
.y76{bottom:962.074500px;}
.yc4{bottom:962.356500px;}
.y57{bottom:965.088000px;}
.ya0{bottom:970.233000px;}
.y11d{bottom:973.354500px;}
.y4{bottom:973.852500px;}
.y35{bottom:975.805500px;}
.y14a{bottom:977.001000px;}
.yf2{bottom:979.929000px;}
.y75{bottom:982.398000px;}
.y9f{bottom:990.556500px;}
.y11c{bottom:993.678000px;}
.y3{bottom:994.773000px;}
.y149{bottom:994.935000px;}
.y34{bottom:996.130500px;}
.yf1{bottom:1000.252500px;}
.y9e{bottom:1010.880000px;}
.y148{bottom:1012.867500px;}
.y74{bottom:1013.287500px;}
.y33{bottom:1016.454000px;}
.yf0{bottom:1020.577500px;}
.y11b{bottom:1027.450500px;}
.y147{bottom:1030.800000px;}
.y9d{bottom:1031.203500px;}
.y32{bottom:1036.777500px;}
.y2{bottom:1040.101500px;}
.yef{bottom:1040.901000px;}
.y11a{bottom:1047.775500px;}
.y146{bottom:1048.732500px;}
.y31{bottom:1057.101000px;}
.yee{bottom:1061.224500px;}
.y145{bottom:1066.665000px;}
.y9c{bottom:1067.728500px;}
.y1{bottom:1072.978500px;}
.y30{bottom:1077.424500px;}
.yed{bottom:1081.548000px;}
.y144{bottom:1084.597500px;}
.y2f{bottom:1097.748000px;}
.y73{bottom:1097.749500px;}
.yec{bottom:1101.871500px;}
.y143{bottom:1102.531500px;}
.y2e{bottom:1118.073000px;}
.y142{bottom:1120.464000px;}
.y2d{bottom:1138.396500px;}
.hc{height:41.544042px;}
.hd{height:41.603818px;}
.h4{height:41.783144px;}
.h5{height:44.891476px;}
.h9{height:49.090950px;}
.h7{height:49.156405px;}
.h8{height:50.283571px;}
.hb{height:50.498765px;}
.h3{height:50.642227px;}
.ha{height:53.798400px;}
.h6{height:64.643977px;}
.h2{height:73.131019px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x2{left:132.603000px;}
.xd{left:136.237500px;}
.x15{left:137.887500px;}
.x9{left:148.909500px;}
.xe{left:164.473500px;}
.x14{left:166.125000px;}
.x8{left:171.319500px;}
.xf{left:192.711000px;}
.x11{left:194.361000px;}
.x12{left:202.206000px;}
.x10{left:220.947000px;}
.x4{left:287.640000px;}
.x5{left:306.706500px;}
.xc{left:309.034500px;}
.x1{left:314.496000px;}
.x6{left:377.703000px;}
.x3{left:399.159000px;}
.x7{left:413.587500px;}
.x13{left:438.321000px;}
.xb{left:442.389000px;}
@media print{
.v2{vertical-align:-11.477333pt;}
.v3{vertical-align:-9.477333pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.000438pt;}
.ls3a{letter-spacing:0.000910pt;}
.ls35{letter-spacing:0.002251pt;}
.ls47{letter-spacing:0.009581pt;}
.ls1d{letter-spacing:0.010966pt;}
.ls18{letter-spacing:0.012224pt;}
.ls4d{letter-spacing:0.013262pt;}
.ls21{letter-spacing:0.016507pt;}
.ls4a{letter-spacing:0.016615pt;}
.ls3e{letter-spacing:0.017636pt;}
.ls41{letter-spacing:0.021618pt;}
.ls42{letter-spacing:0.022776pt;}
.lse{letter-spacing:0.022939pt;}
.ls48{letter-spacing:0.022958pt;}
.ls2e{letter-spacing:0.023603pt;}
.ls26{letter-spacing:0.026151pt;}
.ls4f{letter-spacing:0.031439pt;}
.ls1{letter-spacing:2.651242pt;}
.ls22{letter-spacing:2.654904pt;}
.ls9{letter-spacing:2.655321pt;}
.lsf{letter-spacing:2.656704pt;}
.ls6{letter-spacing:2.658694pt;}
.ls10{letter-spacing:2.660237pt;}
.ls11{letter-spacing:2.660654pt;}
.ls12{letter-spacing:4.130913pt;}
.lsd{letter-spacing:4.189094pt;}
.ls23{letter-spacing:4.538186pt;}
.ls0{letter-spacing:5.738458pt;}
.ls40{letter-spacing:6.225460pt;}
.ls8{letter-spacing:6.283642pt;}
.ls5{letter-spacing:8.186898pt;}
.ls2{letter-spacing:8.873356pt;}
.lsa{letter-spacing:9.716372pt;}
.ls7{letter-spacing:12.777682pt;}
.ls30{letter-spacing:12.916374pt;}
.ls3f{letter-spacing:14.429103pt;}
.ls1a{letter-spacing:14.836376pt;}
.ls20{letter-spacing:15.069103pt;}
.ls34{letter-spacing:15.650922pt;}
.ls37{letter-spacing:15.941831pt;}
.ls3d{letter-spacing:16.116377pt;}
.ls28{letter-spacing:16.232741pt;}
.ls2b{letter-spacing:16.276237pt;}
.ls27{letter-spacing:17.221833pt;}
.ls3{letter-spacing:17.481042pt;}
.ls33{letter-spacing:17.803651pt;}
.lsb{letter-spacing:17.861833pt;}
.ls2a{letter-spacing:18.057571pt;}
.ls39{letter-spacing:18.734561pt;}
.ls17{letter-spacing:19.258198pt;}
.ls14{letter-spacing:19.316380pt;}
.ls29{letter-spacing:20.142904pt;}
.ls3c{letter-spacing:20.363653pt;}
.ls31{letter-spacing:20.480017pt;}
.lsc{letter-spacing:20.516654pt;}
.ls2c{letter-spacing:20.932237pt;}
.ls19{letter-spacing:21.236381pt;}
.ls38{letter-spacing:21.643654pt;}
.ls24{letter-spacing:21.760018pt;}
.ls15{letter-spacing:21.945571pt;}
.ls16{letter-spacing:21.947371pt;}
.ls36{letter-spacing:22.038037pt;}
.ls2d{letter-spacing:22.516382pt;}
.ls44{letter-spacing:22.690928pt;}
.ls1f{letter-spacing:22.865474pt;}
.ls1b{letter-spacing:23.854565pt;}
.ls4e{letter-spacing:24.378202pt;}
.ls49{letter-spacing:24.592704pt;}
.ls25{letter-spacing:24.785475pt;}
.ls43{letter-spacing:25.250930pt;}
.ls2f{letter-spacing:25.460237pt;}
.ls1e{letter-spacing:25.481987pt;}
.ls46{letter-spacing:25.600021pt;}
.ls1c{letter-spacing:26.996386pt;}
.ls4b{letter-spacing:28.731371pt;}
.ls13{letter-spacing:29.090933pt;}
.ls3b{letter-spacing:29.803371pt;}
.ls32{letter-spacing:36.712758pt;}
.ls4c{letter-spacing:46.545493pt;}
.ws4a{word-spacing:-48.708218pt;}
.ws5f{word-spacing:-40.590295pt;}
.ws4d{word-spacing:-37.899668pt;}
.ws4b{word-spacing:-36.007049pt;}
.wsb{word-spacing:-34.611401pt;}
.ws1e{word-spacing:-28.928024pt;}
.ws4e{word-spacing:-28.241478pt;}
.wsc{word-spacing:-25.791179pt;}
.ws7e{word-spacing:-16.069832pt;}
.wsad{word-spacing:-15.604377pt;}
.ws9c{word-spacing:-15.488013pt;}
.ws9a{word-spacing:-15.371649pt;}
.ws68{word-spacing:-15.313467pt;}
.ws42{word-spacing:-14.789831pt;}
.ws81{word-spacing:-14.498921pt;}
.ws0{word-spacing:-14.396665pt;}
.ws5a{word-spacing:-14.149830pt;}
.ws33{word-spacing:-14.070753pt;}
.ws97{word-spacing:-14.033466pt;}
.ws49{word-spacing:-13.994240pt;}
.wsb7{word-spacing:-13.975284pt;}
.ws92{word-spacing:-13.917103pt;}
.ws5e{word-spacing:-13.858921pt;}
.ws64{word-spacing:-13.742557pt;}
.wsb1{word-spacing:-13.626193pt;}
.ws8a{word-spacing:-13.568011pt;}
.ws67{word-spacing:-13.509829pt;}
.ws8e{word-spacing:-13.393466pt;}
.ws59{word-spacing:-13.335284pt;}
.ws57{word-spacing:-13.160738pt;}
.ws75{word-spacing:-13.044375pt;}
.ws14{word-spacing:-12.986193pt;}
.ws41{word-spacing:-12.928011pt;}
.ws66{word-spacing:-12.753465pt;}
.ws1a{word-spacing:-12.695283pt;}
.ws8f{word-spacing:-12.578920pt;}
.ws45{word-spacing:-12.520738pt;}
.ws51{word-spacing:-12.462556pt;}
.wsbf{word-spacing:-12.404374pt;}
.ws39{word-spacing:-12.346192pt;}
.ws20{word-spacing:-12.229828pt;}
.wsac{word-spacing:-12.113465pt;}
.ws54{word-spacing:-12.012585pt;}
.ws91{word-spacing:-11.997101pt;}
.ws3d{word-spacing:-11.948824pt;}
.ws1c{word-spacing:-11.938919pt;}
.wsa5{word-spacing:-11.880737pt;}
.wsb2{word-spacing:-11.822555pt;}
.ws96{word-spacing:-11.764373pt;}
.ws62{word-spacing:-11.706192pt;}
.ws63{word-spacing:-11.648010pt;}
.ws65{word-spacing:-11.473464pt;}
.ws44{word-spacing:-11.415282pt;}
.ws23{word-spacing:-11.357100pt;}
.wsa8{word-spacing:-11.240737pt;}
.ws28{word-spacing:-11.182555pt;}
.ws50{word-spacing:-11.124373pt;}
.ws4f{word-spacing:-11.066191pt;}
.ws2e{word-spacing:-10.949827pt;}
.ws6f{word-spacing:-10.891645pt;}
.ws6{word-spacing:-10.780862pt;}
.ws37{word-spacing:-10.775282pt;}
.wsb9{word-spacing:-10.717100pt;}
.ws69{word-spacing:-10.658918pt;}
.ws6c{word-spacing:-10.600736pt;}
.ws3a{word-spacing:-10.484372pt;}
.ws90{word-spacing:-10.426191pt;}
.ws7d{word-spacing:-10.368009pt;}
.ws84{word-spacing:-10.309827pt;}
.ws78{word-spacing:-10.251645pt;}
.ws2b{word-spacing:-10.193463pt;}
.ws77{word-spacing:-10.135281pt;}
.ws72{word-spacing:-10.077099pt;}
.ws95{word-spacing:-10.018917pt;}
.wsbd{word-spacing:-9.960736pt;}
.ws25{word-spacing:-9.844372pt;}
.wsbc{word-spacing:-9.728008pt;}
.ws18{word-spacing:-9.669826pt;}
.ws12{word-spacing:-9.665050pt;}
.ws29{word-spacing:-9.611644pt;}
.ws73{word-spacing:-9.553463pt;}
.ws94{word-spacing:-9.495281pt;}
.ws32{word-spacing:-9.437099pt;}
.wsc0{word-spacing:-9.378917pt;}
.wsb3{word-spacing:-9.320735pt;}
.ws86{word-spacing:-9.262553pt;}
.ws21{word-spacing:-9.204371pt;}
.wsae{word-spacing:-9.088008pt;}
.wsa{word-spacing:-9.080578pt;}
.ws22{word-spacing:-8.913462pt;}
.ws9{word-spacing:-8.868042pt;}
.ws74{word-spacing:-8.855280pt;}
.wsbb{word-spacing:-8.797098pt;}
.ws2{word-spacing:-8.761775pt;}
.wsc3{word-spacing:-8.738916pt;}
.ws11{word-spacing:-8.708641pt;}
.ws2d{word-spacing:-8.680735pt;}
.wsbe{word-spacing:-8.622553pt;}
.ws6d{word-spacing:-8.506189pt;}
.ws35{word-spacing:-8.389825pt;}
.ws58{word-spacing:-8.331643pt;}
.wsaa{word-spacing:-8.098916pt;}
.ws17{word-spacing:-8.040734pt;}
.ws7{word-spacing:-8.017900pt;}
.ws7f{word-spacing:-7.982552pt;}
.wse{word-spacing:-7.858499pt;}
.ws4c{word-spacing:-7.808007pt;}
.ws55{word-spacing:-7.749825pt;}
.ws2c{word-spacing:-7.691643pt;}
.ws80{word-spacing:-7.633461pt;}
.ws3b{word-spacing:-7.575279pt;}
.ws1d{word-spacing:-7.400733pt;}
.wsa3{word-spacing:-7.342552pt;}
.ws76{word-spacing:-7.284370pt;}
.ws60{word-spacing:-7.226188pt;}
.ws93{word-spacing:-7.109824pt;}
.ws83{word-spacing:-7.051642pt;}
.ws24{word-spacing:-6.993460pt;}
.ws87{word-spacing:-6.935279pt;}
.wsa4{word-spacing:-6.702551pt;}
.ws34{word-spacing:-6.644369pt;}
.wsab{word-spacing:-6.528005pt;}
.wsd{word-spacing:-6.477018pt;}
.ws53{word-spacing:-6.446551pt;}
.ws6a{word-spacing:-6.411642pt;}
.ws70{word-spacing:-6.295278pt;}
.wsf{word-spacing:-6.211349pt;}
.ws6b{word-spacing:-6.178914pt;}
.ws5d{word-spacing:-6.120732pt;}
.ws46{word-spacing:-6.062551pt;}
.ws1b{word-spacing:-5.946187pt;}
.ws26{word-spacing:-5.888005pt;}
.ws2f{word-spacing:-5.829823pt;}
.wsc2{word-spacing:-5.771641pt;}
.wsa0{word-spacing:-5.713459pt;}
.ws5b{word-spacing:-5.655277pt;}
.ws89{word-spacing:-5.597096pt;}
.ws56{word-spacing:-5.538914pt;}
.ws99{word-spacing:-5.480732pt;}
.ws47{word-spacing:-5.422550pt;}
.wsa9{word-spacing:-5.364368pt;}
.ws8{word-spacing:-5.254939pt;}
.ws38{word-spacing:-5.248004pt;}
.ws6e{word-spacing:-5.131641pt;}
.ws5c{word-spacing:-5.073459pt;}
.ws31{word-spacing:-4.957095pt;}
.ws10{word-spacing:-4.936136pt;}
.ws36{word-spacing:-4.898913pt;}
.wsaf{word-spacing:-4.782549pt;}
.ws30{word-spacing:-4.724368pt;}
.wsb4{word-spacing:-4.666186pt;}
.wsba{word-spacing:-4.549822pt;}
.wsb5{word-spacing:-4.433458pt;}
.ws71{word-spacing:-4.375276pt;}
.ws48{word-spacing:-4.258913pt;}
.wsa6{word-spacing:-4.142549pt;}
.ws9d{word-spacing:-3.909821pt;}
.ws8b{word-spacing:-3.851640pt;}
.ws85{word-spacing:-3.677094pt;}
.ws43{word-spacing:-3.618912pt;}
.ws7c{word-spacing:-3.560730pt;}
.ws8d{word-spacing:-3.328003pt;}
.ws3f{word-spacing:-3.211639pt;}
.wsa1{word-spacing:-3.153457pt;}
.wsb8{word-spacing:-3.095275pt;}
.ws40{word-spacing:-3.037093pt;}
.ws19{word-spacing:-2.920730pt;}
.ws9b{word-spacing:-2.862548pt;}
.wsa7{word-spacing:-2.688002pt;}
.ws9e{word-spacing:-2.455275pt;}
.wsb6{word-spacing:-2.222547pt;}
.ws9f{word-spacing:-2.106184pt;}
.ws5{word-spacing:-2.013774pt;}
.ws79{word-spacing:-1.989820pt;}
.ws4{word-spacing:-1.854372pt;}
.ws7b{word-spacing:-1.815274pt;}
.ws7a{word-spacing:-1.757092pt;}
.ws3c{word-spacing:-1.640729pt;}
.ws15{word-spacing:-1.582547pt;}
.ws16{word-spacing:-1.000728pt;}
.ws3e{word-spacing:-0.768001pt;}
.wsc1{word-spacing:-0.709819pt;}
.wsa2{word-spacing:-0.593455pt;}
.ws1f{word-spacing:-0.477091pt;}
.wsc4{word-spacing:-0.076513pt;}
.ws2a{word-spacing:-0.069818pt;}
.ws88{word-spacing:-0.058182pt;}
.wsc7{word-spacing:-0.053134pt;}
.ws52{word-spacing:-0.046545pt;}
.ws27{word-spacing:0.000000pt;}
.ws61{word-spacing:4.084367pt;}
.ws98{word-spacing:4.992004pt;}
.wsb0{word-spacing:11.450191pt;}
.ws8c{word-spacing:11.508373pt;}
.ws3{word-spacing:19.021924pt;}
.ws1{word-spacing:20.722347pt;}
.wsc6{word-spacing:27.789012pt;}
.wsc5{word-spacing:27.842146pt;}
.ws82{word-spacing:35.871976pt;}
.ws13{word-spacing:42.089838pt;}
.wsc8{word-spacing:83.632706pt;}
._1a{margin-left:-6.962689pt;}
._2{margin-left:-5.830300pt;}
._a{margin-left:-4.410111pt;}
._3{margin-left:-3.194814pt;}
._1{margin-left:-1.721549pt;}
._5{width:0.928363pt;}
._0{width:2.387202pt;}
._10{width:4.142082pt;}
._21{width:10.589100pt;}
._1c{width:15.555293pt;}
._7{width:16.811567pt;}
._14{width:18.011128pt;}
._1d{width:18.900943pt;}
._23{width:20.167748pt;}
._b{width:21.189809pt;}
._c{width:22.641809pt;}
._4{width:23.538303pt;}
._d{width:24.756560pt;}
._8{width:25.961196pt;}
._15{width:26.880022pt;}
._e{width:28.278934pt;}
._1b{width:29.849845pt;}
._9{width:30.998309pt;}
._11{width:32.756391pt;}
._22{width:34.271667pt;}
._1f{width:35.643023pt;}
._12{width:37.001026pt;}
._17{width:38.029581pt;}
._24{width:38.926216pt;}
._18{width:39.831473pt;}
._16{width:41.853197pt;}
._26{width:43.301025pt;}
._6{width:44.685582pt;}
._25{width:46.815043pt;}
._20{width:48.581859pt;}
._27{width:50.073227pt;}
._f{width:51.607316pt;}
._13{width:53.178226pt;}
._28{width:55.737426pt;}
._1e{width:71.731200pt;}
._19{width:84.164373pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:56.149333pt;}
.y2b{bottom:96.000000pt;}
.y178{bottom:103.314667pt;}
.y141{bottom:106.000000pt;}
.y56{bottom:107.974667pt;}
.y119{bottom:110.700000pt;}
.y2a{bottom:114.065333pt;}
.yeb{bottom:115.004000pt;}
.y170{bottom:119.254667pt;}
.y140{bottom:121.940000pt;}
.y55{bottom:126.040000pt;}
.y9b{bottom:126.208000pt;}
.y118{bottom:128.765333pt;}
.y29{bottom:132.130667pt;}
.y72{bottom:132.132000pt;}
.yea{bottom:133.070667pt;}
.y16f{bottom:135.196000pt;}
.y9a{bottom:144.273333pt;}
.yc3{bottom:146.532000pt;}
.y117{bottom:146.830667pt;}
.y28{bottom:150.197333pt;}
.ye9{bottom:151.136000pt;}
.y54{bottom:153.497333pt;}
.y13f{bottom:153.821333pt;}
.y99{bottom:162.338667pt;}
.y116{bottom:164.896000pt;}
.y16e{bottom:167.076000pt;}
.y27{bottom:168.262667pt;}
.ye8{bottom:169.201333pt;}
.y13e{bottom:169.761333pt;}
.y98{bottom:180.404000pt;}
.y115{bottom:182.961333pt;}
.y177{bottom:183.016000pt;}
.y13d{bottom:185.701333pt;}
.y26{bottom:186.328000pt;}
.ye7{bottom:187.266667pt;}
.yc2{bottom:191.282667pt;}
.y53{bottom:192.442667pt;}
.y97{bottom:198.470667pt;}
.y16d{bottom:198.956000pt;}
.y114{bottom:201.028000pt;}
.y13c{bottom:201.641333pt;}
.y25{bottom:204.393333pt;}
.ye6{bottom:205.332000pt;}
.yc1{bottom:209.348000pt;}
.y52{bottom:210.508000pt;}
.y16c{bottom:214.896000pt;}
.y96{bottom:216.536000pt;}
.y13b{bottom:217.581333pt;}
.y113{bottom:219.093333pt;}
.y24{bottom:222.458667pt;}
.y71{bottom:222.460000pt;}
.ye5{bottom:223.398667pt;}
.yc0{bottom:227.413333pt;}
.y51{bottom:228.573333pt;}
.y16b{bottom:230.837333pt;}
.y13a{bottom:233.521333pt;}
.y112{bottom:237.158667pt;}
.y23{bottom:240.525333pt;}
.ye4{bottom:241.464000pt;}
.y95{bottom:243.993333pt;}
.ybf{bottom:245.478667pt;}
.y50{bottom:246.638667pt;}
.y16a{bottom:246.777333pt;}
.y22{bottom:258.590667pt;}
.ye3{bottom:259.529333pt;}
.y169{bottom:262.717333pt;}
.y4f{bottom:264.705333pt;}
.y139{bottom:265.402667pt;}
.y70{bottom:267.982667pt;}
.y111{bottom:271.164000pt;}
.ybe{bottom:272.649333pt;}
.y21{bottom:276.656000pt;}
.ye2{bottom:277.594667pt;}
.y168{bottom:278.657333pt;}
.y138{bottom:281.342667pt;}
.y4e{bottom:282.770667pt;}
.y94{bottom:282.938667pt;}
.y110{bottom:289.229333pt;}
.ybd{bottom:290.714667pt;}
.y167{bottom:294.597333pt;}
.y20{bottom:294.721333pt;}
.ye1{bottom:295.660000pt;}
.y137{bottom:297.282667pt;}
.y93{bottom:301.004000pt;}
.y6f{bottom:306.762667pt;}
.y10f{bottom:307.296000pt;}
.ybc{bottom:308.781333pt;}
.y4d{bottom:310.228000pt;}
.y166{bottom:310.537333pt;}
.y1f{bottom:312.786667pt;}
.ye0{bottom:313.725333pt;}
.y92{bottom:319.069333pt;}
.y6e{bottom:324.828000pt;}
.y10e{bottom:325.361333pt;}
.y165{bottom:326.478667pt;}
.ybb{bottom:326.846667pt;}
.y1e{bottom:330.853333pt;}
.y91{bottom:337.134667pt;}
.y164{bottom:342.418667pt;}
.y6d{bottom:342.893333pt;}
.y10d{bottom:343.426667pt;}
.ydf{bottom:343.746667pt;}
.yba{bottom:344.912000pt;}
.y136{bottom:345.104000pt;}
.y1d{bottom:348.918667pt;}
.y4c{bottom:349.173333pt;}
.y90{bottom:355.200000pt;}
.y163{bottom:358.358667pt;}
.y6c{bottom:360.958667pt;}
.y135{bottom:361.044000pt;}
.y10c{bottom:361.492000pt;}
.yde{bottom:361.812000pt;}
.y1c{bottom:366.984000pt;}
.y4b{bottom:367.238667pt;}
.yb9{bottom:372.654667pt;}
.y8f{bottom:373.266667pt;}
.y176{bottom:374.298667pt;}
.y134{bottom:376.984000pt;}
.y6b{bottom:379.024000pt;}
.y10b{bottom:379.557333pt;}
.ydd{bottom:379.877333pt;}
.y1b{bottom:385.049333pt;}
.y4a{bottom:385.304000pt;}
.y162{bottom:390.238667pt;}
.yb8{bottom:390.720000pt;}
.y8e{bottom:391.332000pt;}
.y133{bottom:392.924000pt;}
.y6a{bottom:397.090667pt;}
.y10a{bottom:397.624000pt;}
.ydc{bottom:397.944000pt;}
.y1a{bottom:403.114667pt;}
.y49{bottom:403.369333pt;}
.y161{bottom:406.178667pt;}
.yb7{bottom:408.785333pt;}
.y132{bottom:408.864000pt;}
.y8d{bottom:409.397333pt;}
.y69{bottom:415.156000pt;}
.y109{bottom:415.689333pt;}
.ydb{bottom:416.009333pt;}
.y19{bottom:421.180000pt;}
.y48{bottom:421.434667pt;}
.y179{bottom:422.120000pt;}
.y131{bottom:424.804000pt;}
.yb6{bottom:426.850667pt;}
.y8c{bottom:427.462667pt;}
.y68{bottom:433.221333pt;}
.y108{bottom:433.754667pt;}
.yda{bottom:434.074667pt;}
.y160{bottom:438.060000pt;}
.y18{bottom:439.246667pt;}
.y47{bottom:439.501333pt;}
.y130{bottom:440.745333pt;}
.yb5{bottom:444.916000pt;}
.y8b{bottom:445.528000pt;}
.y67{bottom:451.286667pt;}
.yd9{bottom:452.140000pt;}
.y15f{bottom:454.000000pt;}
.yb4{bottom:462.982667pt;}
.y107{bottom:463.776000pt;}
.y46{bottom:466.958667pt;}
.y66{bottom:469.352000pt;}
.y175{bottom:469.940000pt;}
.yd8{bottom:470.205333pt;}
.y17{bottom:471.712000pt;}
.y12f{bottom:472.625333pt;}
.y8a{bottom:472.985333pt;}
.yb3{bottom:481.048000pt;}
.y106{bottom:481.841333pt;}
.y15e{bottom:485.880000pt;}
.y65{bottom:487.418667pt;}
.yd7{bottom:488.272000pt;}
.y12e{bottom:488.565333pt;}
.yb2{bottom:499.113333pt;}
.y105{bottom:499.906667pt;}
.y15d{bottom:501.820000pt;}
.y12d{bottom:504.505333pt;}
.y64{bottom:505.484000pt;}
.y45{bottom:505.904000pt;}
.yd6{bottom:506.337333pt;}
.y89{bottom:511.930667pt;}
.y16{bottom:517.258667pt;}
.y15c{bottom:517.761333pt;}
.y104{bottom:517.972000pt;}
.y63{bottom:523.549333pt;}
.y44{bottom:523.969333pt;}
.yd5{bottom:524.402667pt;}
.yb1{bottom:526.856000pt;}
.y88{bottom:529.997333pt;}
.y15{bottom:533.198667pt;}
.y15b{bottom:533.701333pt;}
.y103{bottom:536.037333pt;}
.y12c{bottom:536.386667pt;}
.y43{bottom:542.034667pt;}
.yb0{bottom:544.921333pt;}
.y87{bottom:548.062667pt;}
.y14{bottom:549.138667pt;}
.y15a{bottom:549.641333pt;}
.y62{bottom:551.006667pt;}
.y12b{bottom:552.326667pt;}
.y102{bottom:554.104000pt;}
.yd4{bottom:554.424000pt;}
.y42{bottom:560.100000pt;}
.yaf{bottom:562.986667pt;}
.y13{bottom:565.078667pt;}
.y159{bottom:565.581333pt;}
.y86{bottom:566.128000pt;}
.y12a{bottom:568.266667pt;}
.y101{bottom:572.169333pt;}
.yd3{bottom:572.489333pt;}
.y41{bottom:578.165333pt;}
.y12{bottom:581.018667pt;}
.yae{bottom:581.052000pt;}
.y174{bottom:581.521333pt;}
.y85{bottom:584.193333pt;}
.y129{bottom:584.206667pt;}
.y61{bottom:589.786667pt;}
.y100{bottom:590.234667pt;}
.yd2{bottom:590.554667pt;}
.y40{bottom:596.230667pt;}
.y11{bottom:596.960000pt;}
.y158{bottom:597.461333pt;}
.yad{bottom:599.118667pt;}
.y84{bottom:602.258667pt;}
.yff{bottom:608.300000pt;}
.yd1{bottom:608.620000pt;}
.y10{bottom:612.900000pt;}
.y157{bottom:613.402667pt;}
.y3f{bottom:614.297333pt;}
.y128{bottom:616.086667pt;}
.yac{bottom:617.184000pt;}
.y60{bottom:619.457333pt;}
.y83{bottom:620.324000pt;}
.yfe{bottom:626.365333pt;}
.yd0{bottom:626.685333pt;}
.yf{bottom:628.840000pt;}
.y156{bottom:629.342667pt;}
.y127{bottom:632.028000pt;}
.y82{bottom:638.390667pt;}
.y3e{bottom:641.754667pt;}
.yfd{bottom:644.430667pt;}
.ycf{bottom:644.750667pt;}
.ye{bottom:644.780000pt;}
.yab{bottom:644.925333pt;}
.y155{bottom:645.282667pt;}
.y126{bottom:647.968000pt;}
.y5f{bottom:649.126667pt;}
.y81{bottom:656.456000pt;}
.yd{bottom:660.720000pt;}
.y154{bottom:661.222667pt;}
.yce{bottom:662.817333pt;}
.yaa{bottom:662.992000pt;}
.y125{bottom:663.908000pt;}
.yfc{bottom:674.452000pt;}
.y80{bottom:674.521333pt;}
.yc{bottom:676.660000pt;}
.y173{bottom:677.162667pt;}
.y5e{bottom:678.797333pt;}
.y124{bottom:679.848000pt;}
.y3d{bottom:680.700000pt;}
.ycd{bottom:680.882667pt;}
.ya9{bottom:681.057333pt;}
.yfb{bottom:692.517333pt;}
.y7f{bottom:692.586667pt;}
.yb{bottom:692.601333pt;}
.y153{bottom:693.104000pt;}
.y123{bottom:695.788000pt;}
.y3c{bottom:698.765333pt;}
.ycc{bottom:698.948000pt;}
.ya8{bottom:699.122667pt;}
.y5d{bottom:707.941333pt;}
.ya{bottom:708.541333pt;}
.y152{bottom:709.044000pt;}
.yfa{bottom:710.582667pt;}
.y7e{bottom:710.652000pt;}
.y3b{bottom:716.830667pt;}
.ycb{bottom:717.013333pt;}
.ya7{bottom:717.188000pt;}
.y122{bottom:720.761333pt;}
.y9{bottom:724.481333pt;}
.y151{bottom:724.984000pt;}
.yf9{bottom:728.649333pt;}
.y7d{bottom:728.718667pt;}
.y3a{bottom:734.896000pt;}
.y121{bottom:738.826667pt;}
.y5c{bottom:739.566667pt;}
.y8{bottom:740.421333pt;}
.y172{bottom:740.924000pt;}
.ya6{bottom:744.930667pt;}
.yf8{bottom:746.714667pt;}
.y7c{bottom:746.784000pt;}
.yca{bottom:747.034667pt;}
.y150{bottom:756.864000pt;}
.y7{bottom:762.896000pt;}
.ya5{bottom:762.996000pt;}
.yf7{bottom:764.780000pt;}
.y7b{bottom:764.849333pt;}
.yc9{bottom:765.100000pt;}
.y39{bottom:767.362667pt;}
.y5b{bottom:771.193333pt;}
.y120{bottom:771.293333pt;}
.y14f{bottom:772.804000pt;}
.ya4{bottom:781.061333pt;}
.yf6{bottom:782.845333pt;}
.y7a{bottom:782.914667pt;}
.yc8{bottom:783.165333pt;}
.y171{bottom:788.745333pt;}
.y5a{bottom:789.258667pt;}
.ya3{bottom:799.128000pt;}
.yf5{bottom:800.910667pt;}
.y79{bottom:800.980000pt;}
.yc7{bottom:801.230667pt;}
.y14e{bottom:804.685333pt;}
.y59{bottom:807.324000pt;}
.y38{bottom:813.186667pt;}
.y6{bottom:814.700000pt;}
.y11f{bottom:817.117333pt;}
.ya2{bottom:817.193333pt;}
.y78{bottom:819.046667pt;}
.yc6{bottom:819.297333pt;}
.y14d{bottom:820.625333pt;}
.y58{bottom:825.389333pt;}
.y37{bottom:831.252000pt;}
.yf4{bottom:834.917333pt;}
.y11e{bottom:835.182667pt;}
.ya1{bottom:835.258667pt;}
.y14c{bottom:836.565333pt;}
.y77{bottom:837.112000pt;}
.yc5{bottom:837.362667pt;}
.y5{bottom:847.049333pt;}
.y36{bottom:849.317333pt;}
.y14b{bottom:852.505333pt;}
.yf3{bottom:852.982667pt;}
.y76{bottom:855.177333pt;}
.yc4{bottom:855.428000pt;}
.y57{bottom:857.856000pt;}
.ya0{bottom:862.429333pt;}
.y11d{bottom:865.204000pt;}
.y4{bottom:865.646667pt;}
.y35{bottom:867.382667pt;}
.y14a{bottom:868.445333pt;}
.yf2{bottom:871.048000pt;}
.y75{bottom:873.242667pt;}
.y9f{bottom:880.494667pt;}
.y11c{bottom:883.269333pt;}
.y3{bottom:884.242667pt;}
.y149{bottom:884.386667pt;}
.y34{bottom:885.449333pt;}
.yf1{bottom:889.113333pt;}
.y9e{bottom:898.560000pt;}
.y148{bottom:900.326667pt;}
.y74{bottom:900.700000pt;}
.y33{bottom:903.514667pt;}
.yf0{bottom:907.180000pt;}
.y11b{bottom:913.289333pt;}
.y147{bottom:916.266667pt;}
.y9d{bottom:916.625333pt;}
.y32{bottom:921.580000pt;}
.y2{bottom:924.534667pt;}
.yef{bottom:925.245333pt;}
.y11a{bottom:931.356000pt;}
.y146{bottom:932.206667pt;}
.y31{bottom:939.645333pt;}
.yee{bottom:943.310667pt;}
.y145{bottom:948.146667pt;}
.y9c{bottom:949.092000pt;}
.y1{bottom:953.758667pt;}
.y30{bottom:957.710667pt;}
.yed{bottom:961.376000pt;}
.y144{bottom:964.086667pt;}
.y2f{bottom:975.776000pt;}
.y73{bottom:975.777333pt;}
.yec{bottom:979.441333pt;}
.y143{bottom:980.028000pt;}
.y2e{bottom:993.842667pt;}
.y142{bottom:995.968000pt;}
.y2d{bottom:1011.908000pt;}
.hc{height:36.928037pt;}
.hd{height:36.981171pt;}
.h4{height:37.140573pt;}
.h5{height:39.903534pt;}
.h9{height:43.636400pt;}
.h7{height:43.694582pt;}
.h8{height:44.696508pt;}
.hb{height:44.887791pt;}
.h3{height:45.015313pt;}
.ha{height:47.820800pt;}
.h6{height:57.461313pt;}
.h2{height:65.005350pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x2{left:117.869333pt;}
.xd{left:121.100000pt;}
.x15{left:122.566667pt;}
.x9{left:132.364000pt;}
.xe{left:146.198667pt;}
.x14{left:147.666667pt;}
.x8{left:152.284000pt;}
.xf{left:171.298667pt;}
.x11{left:172.765333pt;}
.x12{left:179.738667pt;}
.x10{left:196.397333pt;}
.x4{left:255.680000pt;}
.x5{left:272.628000pt;}
.xc{left:274.697333pt;}
.x1{left:279.552000pt;}
.x6{left:335.736000pt;}
.x3{left:354.808000pt;}
.x7{left:367.633333pt;}
.x13{left:389.618667pt;}
.xb{left:393.234667pt;}
}




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