
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_421870daf6b61e36214bb235.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_6464429a074d9bc0fcbf8f55.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963000;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_d33363810275f56cd2ca1e5d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e29f0f422b415855e815a965.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137667;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_c5233d4c15b4e8108982ffa6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.963000;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_880a630d851a2f042095d907.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.987000;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_59cfe862cca9c5efc31db816.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968000;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_ae0aa2d6c49c8280ee9bd3d8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f8f618a929b544fdcafbdb0e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.886000;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_68b83c706a0b80e5c0356f6a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.865000;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_39e3ad849d394ce2bda46859.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.887000;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_befecad3f1b79470e70517ab.woff2')format("woff");}.fff{font-family:fff;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-8.316864px;}
.ls1f{letter-spacing:-1.701000px;}
.ls18{letter-spacing:-1.638000px;}
.ls21{letter-spacing:-1.575000px;}
.ls22{letter-spacing:-1.449000px;}
.ls19{letter-spacing:-1.323000px;}
.ls20{letter-spacing:-1.260000px;}
.ls14{letter-spacing:-1.197000px;}
.lsb{letter-spacing:-1.134000px;}
.ls1c{letter-spacing:-1.008000px;}
.ls1d{letter-spacing:-0.945000px;}
.ls1b{letter-spacing:-0.819000px;}
.ls4{letter-spacing:-0.693000px;}
.ls17{letter-spacing:-0.630000px;}
.ls12{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.441000px;}
.ls6{letter-spacing:-0.378000px;}
.ls8{letter-spacing:-0.315000px;}
.ls13{letter-spacing:-0.189000px;}
.lse{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.063000px;}
.ls7{letter-spacing:0.126000px;}
.lsd{letter-spacing:0.240000px;}
.ls1e{letter-spacing:0.252000px;}
.ls3{letter-spacing:0.315000px;}
.ls15{letter-spacing:0.441000px;}
.ls5{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.567000px;}
.ls11{letter-spacing:0.756000px;}
.ls16{letter-spacing:0.819000px;}
.ls10{letter-spacing:0.882000px;}
.ls1a{letter-spacing:11.655000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.wsb3{word-spacing:-13.980000px;}
.wsb4{word-spacing:-13.005000px;}
.wsa{word-spacing:-11.907000px;}
.ws77{word-spacing:-11.655000px;}
.ws7{word-spacing:-11.529000px;}
.ws6{word-spacing:-11.403000px;}
.ws9{word-spacing:-11.214000px;}
.wsb{word-spacing:-11.025000px;}
.ws6e{word-spacing:-10.521000px;}
.ws13{word-spacing:-3.780000px;}
.ws15{word-spacing:-2.520000px;}
.wsd{word-spacing:-1.980000px;}
.wse6{word-spacing:-1.785000px;}
.wse8{word-spacing:-1.734000px;}
.wse{word-spacing:-1.560000px;}
.wse9{word-spacing:-1.479000px;}
.wsa5{word-spacing:-1.323000px;}
.wsca{word-spacing:-1.134000px;}
.wsdd{word-spacing:-1.071000px;}
.wsac{word-spacing:-0.945000px;}
.ws49{word-spacing:-0.882000px;}
.ws5a{word-spacing:-0.819000px;}
.ws8f{word-spacing:-0.756000px;}
.wsa3{word-spacing:-0.630000px;}
.ws4a{word-spacing:-0.504000px;}
.ws18{word-spacing:-0.378000px;}
.ws20{word-spacing:-0.315000px;}
.wsbb{word-spacing:-0.252000px;}
.ws30{word-spacing:-0.240000px;}
.ws22{word-spacing:-0.126000px;}
.ws8a{word-spacing:-0.063000px;}
.ws3{word-spacing:0.000000px;}
.ws2c{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.wsd4{word-spacing:0.126000px;}
.ws82{word-spacing:0.189000px;}
.ws23{word-spacing:0.315000px;}
.ws4f{word-spacing:0.378000px;}
.ws24{word-spacing:0.441000px;}
.wse5{word-spacing:0.504000px;}
.ws75{word-spacing:0.630000px;}
.ws68{word-spacing:0.693000px;}
.ws5f{word-spacing:0.756000px;}
.ws84{word-spacing:0.819000px;}
.ws10{word-spacing:0.840000px;}
.ws65{word-spacing:0.882000px;}
.wsa7{word-spacing:0.945000px;}
.ws4d{word-spacing:1.071000px;}
.ws61{word-spacing:1.197000px;}
.wsc4{word-spacing:1.260000px;}
.ws74{word-spacing:1.323000px;}
.ws45{word-spacing:1.449000px;}
.wsc8{word-spacing:1.575000px;}
.ws97{word-spacing:1.638000px;}
.ws41{word-spacing:1.764000px;}
.ws14{word-spacing:1.920000px;}
.ws6b{word-spacing:1.953000px;}
.ws11{word-spacing:1.980000px;}
.ws9d{word-spacing:2.016000px;}
.ws40{word-spacing:2.142000px;}
.wsb9{word-spacing:2.268000px;}
.ws44{word-spacing:2.457000px;}
.wsa6{word-spacing:2.583000px;}
.ws2b{word-spacing:2.646000px;}
.wsb5{word-spacing:2.709000px;}
.wsc9{word-spacing:2.772000px;}
.ws1e{word-spacing:2.898000px;}
.wsf{word-spacing:2.940000px;}
.ws46{word-spacing:3.087000px;}
.wsb0{word-spacing:3.150000px;}
.ws9b{word-spacing:3.213000px;}
.ws3a{word-spacing:3.276000px;}
.ws4e{word-spacing:3.339000px;}
.wsd0{word-spacing:3.402000px;}
.wsc3{word-spacing:3.465000px;}
.ws12{word-spacing:3.480000px;}
.ws5b{word-spacing:3.528000px;}
.ws6f{word-spacing:3.654000px;}
.ws51{word-spacing:3.780000px;}
.ws2f{word-spacing:3.969000px;}
.ws31{word-spacing:4.032000px;}
.ws2a{word-spacing:4.095000px;}
.ws5c{word-spacing:4.158000px;}
.ws1d{word-spacing:4.284000px;}
.wscc{word-spacing:4.347000px;}
.ws70{word-spacing:4.473000px;}
.ws6c{word-spacing:4.662000px;}
.ws72{word-spacing:4.725000px;}
.ws48{word-spacing:4.851000px;}
.ws96{word-spacing:4.914000px;}
.ws3c{word-spacing:4.977000px;}
.ws52{word-spacing:5.040000px;}
.ws8e{word-spacing:5.103000px;}
.ws86{word-spacing:5.229000px;}
.ws67{word-spacing:5.481000px;}
.ws73{word-spacing:5.670000px;}
.ws17{word-spacing:5.796000px;}
.ws8d{word-spacing:6.111000px;}
.ws9c{word-spacing:6.426000px;}
.ws36{word-spacing:6.615000px;}
.wsa8{word-spacing:6.867000px;}
.wsda{word-spacing:6.930000px;}
.ws69{word-spacing:6.993000px;}
.ws19{word-spacing:7.056000px;}
.ws63{word-spacing:7.434000px;}
.wsc5{word-spacing:7.560000px;}
.wse2{word-spacing:7.623000px;}
.ws83{word-spacing:7.875000px;}
.ws16{word-spacing:8.040000px;}
.ws7f{word-spacing:8.127000px;}
.wsbd{word-spacing:8.253000px;}
.ws26{word-spacing:8.316000px;}
.ws47{word-spacing:8.442000px;}
.ws2e{word-spacing:8.505000px;}
.ws94{word-spacing:8.631000px;}
.ws85{word-spacing:8.694000px;}
.ws38{word-spacing:8.757000px;}
.ws28{word-spacing:8.820000px;}
.ws79{word-spacing:8.883000px;}
.wsad{word-spacing:9.072000px;}
.wsa4{word-spacing:9.198000px;}
.ws66{word-spacing:9.261000px;}
.wsa9{word-spacing:9.513000px;}
.ws57{word-spacing:9.702000px;}
.wsc6{word-spacing:9.891000px;}
.ws9e{word-spacing:9.954000px;}
.wsa1{word-spacing:10.080000px;}
.wscb{word-spacing:10.332000px;}
.ws1a{word-spacing:10.458000px;}
.wse3{word-spacing:10.584000px;}
.wsc2{word-spacing:10.710000px;}
.ws42{word-spacing:10.773000px;}
.wsb7{word-spacing:10.836000px;}
.wsce{word-spacing:10.899000px;}
.wsba{word-spacing:11.088000px;}
.wsa0{word-spacing:11.277000px;}
.wse0{word-spacing:11.340000px;}
.ws6a{word-spacing:11.403000px;}
.wsb8{word-spacing:11.466000px;}
.ws39{word-spacing:11.592000px;}
.ws9a{word-spacing:11.718000px;}
.wsc1{word-spacing:11.844000px;}
.ws37{word-spacing:12.096000px;}
.ws53{word-spacing:12.159000px;}
.ws58{word-spacing:12.411000px;}
.ws89{word-spacing:12.474000px;}
.ws43{word-spacing:12.915000px;}
.ws1b{word-spacing:13.041000px;}
.ws35{word-spacing:13.230000px;}
.ws76{word-spacing:13.293000px;}
.ws98{word-spacing:13.608000px;}
.ws3b{word-spacing:13.671000px;}
.wsd1{word-spacing:13.860000px;}
.wsd8{word-spacing:13.923000px;}
.ws95{word-spacing:14.049000px;}
.ws90{word-spacing:14.238000px;}
.wsbe{word-spacing:14.301000px;}
.ws71{word-spacing:14.364000px;}
.wsaa{word-spacing:14.427000px;}
.wscd{word-spacing:14.553000px;}
.ws9f{word-spacing:14.868000px;}
.ws7a{word-spacing:14.931000px;}
.ws7e{word-spacing:15.372000px;}
.ws5e{word-spacing:15.498000px;}
.ws29{word-spacing:15.687000px;}
.wsdb{word-spacing:15.750000px;}
.wsab{word-spacing:15.876000px;}
.ws87{word-spacing:16.065000px;}
.ws33{word-spacing:16.254000px;}
.wsb1{word-spacing:16.380000px;}
.ws3d{word-spacing:16.506000px;}
.ws62{word-spacing:16.569000px;}
.ws88{word-spacing:16.632000px;}
.ws56{word-spacing:16.758000px;}
.ws7d{word-spacing:16.821000px;}
.ws8b{word-spacing:16.884000px;}
.ws34{word-spacing:17.199000px;}
.wsc7{word-spacing:17.262000px;}
.ws7b{word-spacing:17.766000px;}
.ws59{word-spacing:18.018000px;}
.wsd2{word-spacing:18.396000px;}
.wsaf{word-spacing:18.837000px;}
.ws2d{word-spacing:18.963000px;}
.ws3f{word-spacing:19.026000px;}
.wsbc{word-spacing:19.782000px;}
.wscf{word-spacing:19.971000px;}
.wsdc{word-spacing:20.034000px;}
.ws55{word-spacing:20.160000px;}
.ws8c{word-spacing:20.664000px;}
.wse4{word-spacing:20.853000px;}
.ws80{word-spacing:21.105000px;}
.ws32{word-spacing:21.546000px;}
.wsdf{word-spacing:21.798000px;}
.ws3e{word-spacing:21.924000px;}
.ws99{word-spacing:22.176000px;}
.ws25{word-spacing:22.365000px;}
.wsbf{word-spacing:22.554000px;}
.wsa2{word-spacing:22.806000px;}
.wsd3{word-spacing:22.869000px;}
.wsd6{word-spacing:22.932000px;}
.wsc0{word-spacing:23.058000px;}
.wsde{word-spacing:23.877000px;}
.ws64{word-spacing:24.822000px;}
.ws81{word-spacing:24.885000px;}
.ws1f{word-spacing:25.641000px;}
.wsae{word-spacing:25.893000px;}
.ws91{word-spacing:27.342000px;}
.ws60{word-spacing:27.531000px;}
.ws5d{word-spacing:28.728000px;}
.ws50{word-spacing:29.169000px;}
.wse1{word-spacing:30.429000px;}
.ws27{word-spacing:30.807000px;}
.wsb6{word-spacing:30.870000px;}
.wsd9{word-spacing:31.122000px;}
.ws4c{word-spacing:31.752000px;}
.wsd5{word-spacing:31.878000px;}
.ws7c{word-spacing:32.319000px;}
.ws78{word-spacing:33.138000px;}
.ws93{word-spacing:33.327000px;}
.ws4b{word-spacing:37.422000px;}
.wsd7{word-spacing:40.194000px;}
.ws92{word-spacing:40.509000px;}
.ws1c{word-spacing:42.336000px;}
.ws21{word-spacing:51.471000px;}
.ws54{word-spacing:68.418000px;}
.ws8{word-spacing:247.104600px;}
.wsc{word-spacing:247.105200px;}
.ws6d{word-spacing:6166.800000px;}
.wsb2{word-spacing:6169.824000px;}
.wse7{word-spacing:6170.256000px;}
.ws5{word-spacing:6172.992000px;}
._16{margin-left:-15.777902px;}
._1a{margin-left:-14.697900px;}
._17{margin-left:-13.343400px;}
._19{margin-left:-12.278700px;}
._18{margin-left:-11.100600px;}
._1b{margin-left:-9.935100px;}
._22{margin-left:-6.797698px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._4{margin-left:-1.012195px;}
._5{width:1.335902px;}
._6{width:2.626193px;}
._13{width:3.640493px;}
._9{width:4.824893px;}
._8{width:5.990998px;}
._7{width:7.275895px;}
._15{width:9.145207px;}
._b{width:10.443295px;}
._1c{width:11.466000px;}
._14{width:14.376898px;}
._11{width:15.560698px;}
._10{width:17.349898px;}
._c{width:18.897593px;}
._d{width:20.009400px;}
._21{width:21.494995px;}
._a{width:23.234098px;}
._f{width:25.293905px;}
._e{width:26.706295px;}
._20{width:27.763495px;}
._12{width:30.445502px;}
._1e{width:31.537190px;}
._1d{width:32.773502px;}
._1f{width:662.004010px;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:32.834700px;}
.ya{bottom:41.220000px;}
.ya1{bottom:47.834700px;}
.ya0{bottom:62.834700px;}
.y48{bottom:95.876550px;}
.y9f{bottom:95.929200px;}
.y75{bottom:96.018300px;}
.ycf{bottom:96.034200px;}
.y1be{bottom:96.186450px;}
.yfa{bottom:96.207450px;}
.y128{bottom:96.427950px;}
.y154{bottom:96.616950px;}
.y1e1{bottom:116.863950px;}
.y47{bottom:116.871300px;}
.y9e{bottom:116.923950px;}
.y32{bottom:116.929050px;}
.y192{bottom:117.007950px;}
.y74{bottom:117.013050px;}
.yce{bottom:117.028950px;}
.y1bd{bottom:117.181200px;}
.yf9{bottom:117.202200px;}
.y127{bottom:117.422700px;}
.y153{bottom:117.611700px;}
.y1e0{bottom:137.863200px;}
.y46{bottom:137.866050px;}
.y9d{bottom:137.918700px;}
.y31{bottom:137.923800px;}
.y191{bottom:138.002700px;}
.y73{bottom:138.007800px;}
.ycd{bottom:138.023700px;}
.y1bc{bottom:138.175950px;}
.yf8{bottom:138.196950px;}
.y126{bottom:138.417450px;}
.y152{bottom:138.606450px;}
.y45{bottom:158.860800px;}
.y9c{bottom:158.913450px;}
.y30{bottom:158.918550px;}
.y190{bottom:158.997450px;}
.y72{bottom:159.002550px;}
.ycc{bottom:159.018450px;}
.y1bb{bottom:159.170700px;}
.y125{bottom:159.412200px;}
.y151{bottom:159.601200px;}
.y44{bottom:179.855550px;}
.y1df{bottom:179.861700px;}
.y205{bottom:179.866950px;}
.y229{bottom:179.905200px;}
.y9b{bottom:179.908200px;}
.y2f{bottom:179.913300px;}
.y18f{bottom:179.992200px;}
.y71{bottom:179.997300px;}
.ycb{bottom:180.013200px;}
.y1ba{bottom:180.165450px;}
.yf7{bottom:180.202200px;}
.y124{bottom:180.406950px;}
.y150{bottom:180.595950px;}
.y43{bottom:200.850300px;}
.y1de{bottom:200.860950px;}
.y204{bottom:200.866200px;}
.y9a{bottom:200.902950px;}
.y228{bottom:200.904450px;}
.y2e{bottom:200.908050px;}
.y18e{bottom:200.986950px;}
.y70{bottom:200.992050px;}
.yca{bottom:201.007950px;}
.y1b9{bottom:201.160200px;}
.yf6{bottom:201.196950px;}
.y123{bottom:201.401700px;}
.y14f{bottom:201.590700px;}
.y42{bottom:221.845050px;}
.y1dd{bottom:221.860200px;}
.y203{bottom:221.865450px;}
.y99{bottom:221.897700px;}
.y2d{bottom:221.902800px;}
.y227{bottom:221.903700px;}
.y18d{bottom:221.981700px;}
.y6f{bottom:221.986800px;}
.y169{bottom:222.002700px;}
.y1b8{bottom:222.154950px;}
.yf5{bottom:222.191700px;}
.y14e{bottom:222.585450px;}
.y41{bottom:242.839800px;}
.y2c{bottom:242.897550px;}
.y226{bottom:242.902950px;}
.y18c{bottom:242.976450px;}
.y6e{bottom:242.981550px;}
.y168{bottom:242.997450px;}
.yc9{bottom:243.013200px;}
.y1b7{bottom:243.149700px;}
.yf4{bottom:243.186450px;}
.y122{bottom:243.406950px;}
.y14d{bottom:243.580200px;}
.y40{bottom:263.834550px;}
.y1dc{bottom:263.858700px;}
.y202{bottom:263.863950px;}
.y2b{bottom:263.892300px;}
.y225{bottom:263.902200px;}
.y98{bottom:263.902950px;}
.y18b{bottom:263.971200px;}
.y167{bottom:263.992200px;}
.yc8{bottom:264.007950px;}
.y1b6{bottom:264.144450px;}
.yf3{bottom:264.181200px;}
.y121{bottom:264.401700px;}
.y14c{bottom:264.574950px;}
.y1db{bottom:284.857950px;}
.y201{bottom:284.863200px;}
.y2a{bottom:284.887050px;}
.y97{bottom:284.897700px;}
.y18a{bottom:284.965950px;}
.y6d{bottom:284.986800px;}
.y166{bottom:284.986950px;}
.yc7{bottom:285.002700px;}
.y1b5{bottom:285.139200px;}
.yf2{bottom:285.175950px;}
.y120{bottom:285.396450px;}
.y14b{bottom:285.569700px;}
.y3f{bottom:305.834550px;}
.y200{bottom:305.862450px;}
.y29{bottom:305.881800px;}
.y96{bottom:305.892450px;}
.y224{bottom:305.900700px;}
.y6c{bottom:305.981550px;}
.y165{bottom:305.981700px;}
.yc6{bottom:305.997450px;}
.y1b4{bottom:306.133950px;}
.yf1{bottom:306.170700px;}
.y11f{bottom:306.391200px;}
.y1da{bottom:326.856450px;}
.y1ff{bottom:326.861700px;}
.y95{bottom:326.887200px;}
.y223{bottom:326.899950px;}
.y189{bottom:326.971200px;}
.y6b{bottom:326.976300px;}
.y164{bottom:326.976450px;}
.yc5{bottom:326.992200px;}
.y1b3{bottom:327.128700px;}
.yf0{bottom:327.165450px;}
.y11e{bottom:327.385950px;}
.y14a{bottom:327.574950px;}
.y1d9{bottom:347.855700px;}
.y94{bottom:347.881950px;}
.y28{bottom:347.887050px;}
.y3e{bottom:347.892300px;}
.y222{bottom:347.899200px;}
.y188{bottom:347.965950px;}
.y6a{bottom:347.971050px;}
.y163{bottom:347.971200px;}
.yc4{bottom:347.986950px;}
.yef{bottom:348.160200px;}
.y11d{bottom:348.380700px;}
.y149{bottom:348.569700px;}
.y7{bottom:352.018200px;}
.y1fe{bottom:368.860200px;}
.y27{bottom:368.881800px;}
.y3d{bottom:368.887050px;}
.y187{bottom:368.960700px;}
.y69{bottom:368.965800px;}
.y162{bottom:368.965950px;}
.yc3{bottom:368.981700px;}
.y1b2{bottom:369.133950px;}
.yee{bottom:369.154950px;}
.y11c{bottom:369.375450px;}
.y148{bottom:369.564450px;}
.y9{bottom:381.914100px;}
.y1d8{bottom:389.854200px;}
.y1fd{bottom:389.859450px;}
.y26{bottom:389.876550px;}
.y3c{bottom:389.881800px;}
.y93{bottom:389.887200px;}
.y221{bottom:389.897700px;}
.y186{bottom:389.955450px;}
.y68{bottom:389.960550px;}
.y161{bottom:389.960700px;}
.yc2{bottom:389.976450px;}
.y1b1{bottom:390.128700px;}
.yed{bottom:390.149700px;}
.y11b{bottom:390.370200px;}
.y147{bottom:390.559200px;}
.y1d7{bottom:410.853450px;}
.y1fc{bottom:410.858700px;}
.y25{bottom:410.871300px;}
.y3b{bottom:410.876550px;}
.y92{bottom:410.881950px;}
.y220{bottom:410.896950px;}
.y185{bottom:410.950200px;}
.y67{bottom:410.955300px;}
.y160{bottom:410.955450px;}
.yc1{bottom:410.971200px;}
.y1b0{bottom:411.123450px;}
.yec{bottom:411.144450px;}
.y11a{bottom:411.364950px;}
.y146{bottom:411.553950px;}
.y1d6{bottom:431.852700px;}
.y1fb{bottom:431.857950px;}
.y24{bottom:431.866050px;}
.y3a{bottom:431.871300px;}
.y91{bottom:431.876700px;}
.y21f{bottom:431.896200px;}
.y184{bottom:431.944950px;}
.y66{bottom:431.950050px;}
.y15f{bottom:431.950200px;}
.yc0{bottom:431.965950px;}
.y1af{bottom:432.118200px;}
.yeb{bottom:432.139200px;}
.y119{bottom:432.359700px;}
.y145{bottom:432.548700px;}
.y6{bottom:445.018200px;}
.y1d5{bottom:452.851950px;}
.y23{bottom:452.860800px;}
.y39{bottom:452.866050px;}
.y90{bottom:452.871450px;}
.y183{bottom:452.939700px;}
.y65{bottom:452.944800px;}
.y15e{bottom:452.944950px;}
.ybf{bottom:452.960700px;}
.y1ae{bottom:453.112950px;}
.yea{bottom:453.133950px;}
.y118{bottom:453.354450px;}
.y144{bottom:453.543450px;}
.y1d4{bottom:473.851200px;}
.y22{bottom:473.855550px;}
.y1fa{bottom:473.856450px;}
.y38{bottom:473.860800px;}
.y8f{bottom:473.866200px;}
.y21e{bottom:473.894700px;}
.y182{bottom:473.934450px;}
.y64{bottom:473.939550px;}
.y15d{bottom:473.939700px;}
.ybe{bottom:473.955450px;}
.y1ad{bottom:474.107700px;}
.ye9{bottom:474.128700px;}
.y117{bottom:474.349200px;}
.y143{bottom:474.538200px;}
.y21{bottom:494.850300px;}
.y37{bottom:494.855550px;}
.y1f9{bottom:494.855700px;}
.y8e{bottom:494.860950px;}
.y21d{bottom:494.893950px;}
.y181{bottom:494.929200px;}
.y15c{bottom:494.934450px;}
.ybd{bottom:494.950200px;}
.y1ac{bottom:495.102450px;}
.ye8{bottom:495.123450px;}
.y116{bottom:495.343950px;}
.y142{bottom:495.532950px;}
.y20{bottom:515.845050px;}
.y1d3{bottom:515.849700px;}
.y36{bottom:515.850300px;}
.y1f8{bottom:515.854950px;}
.y8d{bottom:515.855700px;}
.y21c{bottom:515.893200px;}
.y180{bottom:515.923950px;}
.y15b{bottom:515.929200px;}
.y63{bottom:515.944800px;}
.ybc{bottom:515.944950px;}
.ye7{bottom:516.118200px;}
.y115{bottom:516.338700px;}
.y1f{bottom:536.839800px;}
.y35{bottom:536.845050px;}
.y1d2{bottom:536.848950px;}
.y8c{bottom:536.850450px;}
.y1f7{bottom:536.854200px;}
.y21b{bottom:536.892450px;}
.y17f{bottom:536.918700px;}
.y15a{bottom:536.923950px;}
.y62{bottom:536.939550px;}
.ybb{bottom:536.939700px;}
.y1ab{bottom:537.107700px;}
.ye6{bottom:537.112950px;}
.y114{bottom:537.333450px;}
.y141{bottom:537.538200px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y1e{bottom:557.834550px;}
.y34{bottom:557.839800px;}
.y8b{bottom:557.845200px;}
.y1d1{bottom:557.848200px;}
.y1f6{bottom:557.853450px;}
.y21a{bottom:557.891700px;}
.y17e{bottom:557.913450px;}
.y61{bottom:557.934300px;}
.yba{bottom:557.934450px;}
.y1aa{bottom:558.102450px;}
.y113{bottom:558.328200px;}
.y140{bottom:558.532950px;}
.y33{bottom:578.834550px;}
.y8a{bottom:578.839950px;}
.y1d0{bottom:578.847450px;}
.y17d{bottom:578.908200px;}
.y60{bottom:578.929050px;}
.yb9{bottom:578.929200px;}
.y1a9{bottom:579.097200px;}
.ye5{bottom:579.118200px;}
.y112{bottom:579.322950px;}
.y13f{bottom:579.527700px;}
.y1d{bottom:599.834550px;}
.y89{bottom:599.834700px;}
.y1cf{bottom:599.846700px;}
.y1f5{bottom:599.851950px;}
.y219{bottom:599.890200px;}
.y17c{bottom:599.902950px;}
.y5f{bottom:599.923800px;}
.yb8{bottom:599.923950px;}
.y1a8{bottom:600.091950px;}
.ye4{bottom:600.112950px;}
.y111{bottom:600.317700px;}
.y13e{bottom:600.522450px;}
.y1c{bottom:620.834550px;}
.y1f4{bottom:620.851200px;}
.y218{bottom:620.889450px;}
.y5e{bottom:620.918550px;}
.yb7{bottom:620.918700px;}
.y1a7{bottom:621.086700px;}
.ye3{bottom:621.107700px;}
.y110{bottom:621.312450px;}
.y13d{bottom:621.517200px;}
.y4{bottom:631.018200px;}
.y88{bottom:641.834700px;}
.y1ce{bottom:641.845200px;}
.y1f3{bottom:641.850450px;}
.y217{bottom:641.888700px;}
.y17b{bottom:641.908200px;}
.y5d{bottom:641.913300px;}
.yb6{bottom:641.913450px;}
.ye2{bottom:642.102450px;}
.y10f{bottom:642.307200px;}
.y13c{bottom:642.511950px;}
.y87{bottom:662.834700px;}
.y1cd{bottom:662.844450px;}
.y1f2{bottom:662.849700px;}
.y216{bottom:662.887950px;}
.y17a{bottom:662.902950px;}
.y5c{bottom:662.908050px;}
.yb5{bottom:662.908200px;}
.y1a6{bottom:663.091950px;}
.ye1{bottom:663.097200px;}
.y10e{bottom:663.301950px;}
.y13b{bottom:663.506700px;}
.y1cc{bottom:683.843700px;}
.y1f1{bottom:683.848950px;}
.y215{bottom:683.887200px;}
.y179{bottom:683.897700px;}
.y5b{bottom:683.902800px;}
.yb4{bottom:683.902950px;}
.y1a5{bottom:684.086700px;}
.ye0{bottom:684.091950px;}
.y10d{bottom:684.296700px;}
.y13a{bottom:684.501450px;}
.y1b{bottom:704.834700px;}
.y214{bottom:704.886450px;}
.y178{bottom:704.892450px;}
.yb3{bottom:704.897700px;}
.y159{bottom:704.913450px;}
.y1a4{bottom:705.081450px;}
.y10c{bottom:705.291450px;}
.y139{bottom:705.496200px;}
.y1a{bottom:725.834700px;}
.y1cb{bottom:725.842200px;}
.y1f0{bottom:725.847450px;}
.y177{bottom:725.887200px;}
.yb2{bottom:725.892450px;}
.y5a{bottom:725.908050px;}
.y158{bottom:725.908200px;}
.y1a3{bottom:726.076200px;}
.y86{bottom:726.097050px;}
.ydf{bottom:726.097200px;}
.y10b{bottom:726.286200px;}
.y138{bottom:726.490950px;}
.y19{bottom:746.834700px;}
.y1ca{bottom:746.841450px;}
.y1ef{bottom:746.846700px;}
.y176{bottom:746.881950px;}
.y213{bottom:746.884950px;}
.yb1{bottom:746.887200px;}
.y59{bottom:746.902800px;}
.y157{bottom:746.902950px;}
.y1a2{bottom:747.070950px;}
.y85{bottom:747.091800px;}
.yde{bottom:747.091950px;}
.y10a{bottom:747.280950px;}
.y137{bottom:747.485700px;}
.y3{bottom:751.738650px;}
.y18{bottom:767.834700px;}
.y1c9{bottom:767.840700px;}
.y1ee{bottom:767.845950px;}
.y175{bottom:767.876700px;}
.y212{bottom:767.884200px;}
.y58{bottom:767.897550px;}
.y156{bottom:767.897700px;}
.y1a1{bottom:768.065700px;}
.y84{bottom:768.086550px;}
.ydd{bottom:768.086700px;}
.y109{bottom:768.275700px;}
.y136{bottom:768.480450px;}
.y17{bottom:788.834700px;}
.y1c8{bottom:788.839950px;}
.y1ed{bottom:788.845200px;}
.y174{bottom:788.871450px;}
.y211{bottom:788.883450px;}
.y57{bottom:788.892300px;}
.yb0{bottom:788.892450px;}
.y1a0{bottom:789.060450px;}
.y83{bottom:789.081300px;}
.ydc{bottom:789.081450px;}
.y108{bottom:789.270450px;}
.y135{bottom:789.475200px;}
.y2{bottom:791.931000px;}
.y16{bottom:809.834700px;}
.y1c7{bottom:809.839200px;}
.y173{bottom:809.866200px;}
.y210{bottom:809.882700px;}
.y56{bottom:809.887050px;}
.yaf{bottom:809.887200px;}
.y19f{bottom:810.055200px;}
.y82{bottom:810.076050px;}
.ydb{bottom:810.076200px;}
.y107{bottom:810.265200px;}
.y134{bottom:810.469950px;}
.y15{bottom:830.834700px;}
.y1ec{bottom:830.843700px;}
.y172{bottom:830.860950px;}
.y55{bottom:830.881800px;}
.yae{bottom:830.881950px;}
.y234{bottom:830.920200px;}
.y19e{bottom:831.049950px;}
.y81{bottom:831.070800px;}
.yda{bottom:831.070950px;}
.y133{bottom:831.464700px;}
.y14{bottom:851.834700px;}
.y1c6{bottom:851.837700px;}
.y1eb{bottom:851.842950px;}
.y171{bottom:851.855700px;}
.y54{bottom:851.876550px;}
.yad{bottom:851.876700px;}
.y20f{bottom:851.881200px;}
.y233{bottom:851.919450px;}
.y80{bottom:852.065550px;}
.yd9{bottom:852.065700px;}
.y106{bottom:852.270450px;}
.y1{bottom:859.112850px;}
.y13{bottom:872.834700px;}
.y1c5{bottom:872.836950px;}
.y1ea{bottom:872.842200px;}
.y170{bottom:872.850450px;}
.y53{bottom:872.871300px;}
.yac{bottom:872.871450px;}
.y232{bottom:872.918700px;}
.y19d{bottom:873.055200px;}
.y7f{bottom:873.060300px;}
.yd8{bottom:873.060450px;}
.y105{bottom:873.265200px;}
.y132{bottom:873.469950px;}
.y12{bottom:893.834700px;}
.y1c4{bottom:893.836200px;}
.y1e9{bottom:893.841450px;}
.y16f{bottom:893.845200px;}
.y52{bottom:893.866050px;}
.yab{bottom:893.866200px;}
.y20e{bottom:893.879700px;}
.y231{bottom:893.917950px;}
.y19c{bottom:894.049950px;}
.y104{bottom:894.259950px;}
.y131{bottom:894.464700px;}
.y11{bottom:914.834700px;}
.y1c3{bottom:914.835450px;}
.y1e8{bottom:914.840700px;}
.y51{bottom:914.860800px;}
.yaa{bottom:914.860950px;}
.y20d{bottom:914.878950px;}
.y230{bottom:914.917200px;}
.y19b{bottom:915.044700px;}
.y7e{bottom:915.065550px;}
.yd7{bottom:915.065700px;}
.y103{bottom:915.254700px;}
.y130{bottom:915.459450px;}
.y10{bottom:935.834700px;}
.y1e7{bottom:935.839950px;}
.y16e{bottom:935.850450px;}
.y50{bottom:935.855550px;}
.y20c{bottom:935.878200px;}
.y19a{bottom:936.039450px;}
.y7d{bottom:936.060300px;}
.yd6{bottom:936.060450px;}
.y102{bottom:936.249450px;}
.y12f{bottom:936.454200px;}
.yf{bottom:956.834700px;}
.y1e6{bottom:956.839200px;}
.y16d{bottom:956.845200px;}
.y4f{bottom:956.850300px;}
.ya9{bottom:956.866200px;}
.y22f{bottom:956.915700px;}
.y199{bottom:957.034200px;}
.y7c{bottom:957.055050px;}
.yd5{bottom:957.055200px;}
.y101{bottom:957.244200px;}
.y12e{bottom:957.448950px;}
.y1c2{bottom:977.834700px;}
.y16c{bottom:977.839950px;}
.y4e{bottom:977.845050px;}
.ya8{bottom:977.860950px;}
.y20b{bottom:977.876700px;}
.y22e{bottom:977.914950px;}
.y198{bottom:978.028950px;}
.y7b{bottom:978.049800px;}
.yd4{bottom:978.049950px;}
.y100{bottom:978.238950px;}
.y12d{bottom:978.443700px;}
.y16b{bottom:998.834700px;}
.y1e5{bottom:998.837700px;}
.y4d{bottom:998.839800px;}
.ya7{bottom:998.855700px;}
.y20a{bottom:998.875950px;}
.y197{bottom:999.023700px;}
.y7a{bottom:999.044550px;}
.yd3{bottom:999.044700px;}
.yff{bottom:999.233700px;}
.y12c{bottom:999.438450px;}
.ye{bottom:1007.834700px;}
.y1e4{bottom:1019.836950px;}
.ya6{bottom:1019.850450px;}
.y209{bottom:1019.875200px;}
.y22d{bottom:1019.913450px;}
.y196{bottom:1020.018450px;}
.y79{bottom:1020.039300px;}
.yd2{bottom:1020.039450px;}
.yfe{bottom:1020.228450px;}
.yd{bottom:1034.834700px;}
.y16a{bottom:1040.834700px;}
.y1e3{bottom:1040.836200px;}
.y4c{bottom:1040.845050px;}
.ya5{bottom:1040.845200px;}
.y208{bottom:1040.874450px;}
.y22c{bottom:1040.912700px;}
.y195{bottom:1041.013200px;}
.y78{bottom:1041.034050px;}
.y1c1{bottom:1041.202200px;}
.yfd{bottom:1041.223200px;}
.y12b{bottom:1041.443700px;}
.yc{bottom:1061.834700px;}
.y1e2{bottom:1061.835450px;}
.y4b{bottom:1061.839800px;}
.ya4{bottom:1061.839950px;}
.y207{bottom:1061.873700px;}
.y22b{bottom:1061.911950px;}
.y194{bottom:1062.007950px;}
.y77{bottom:1062.028800px;}
.yd1{bottom:1062.044700px;}
.y1c0{bottom:1062.196950px;}
.yfc{bottom:1062.217950px;}
.y12a{bottom:1062.438450px;}
.y4a{bottom:1082.834550px;}
.ya3{bottom:1082.834700px;}
.y206{bottom:1082.872950px;}
.y22a{bottom:1082.911200px;}
.y193{bottom:1083.002700px;}
.y76{bottom:1083.023550px;}
.yd0{bottom:1083.039450px;}
.y1bf{bottom:1083.191700px;}
.yfb{bottom:1083.212700px;}
.y129{bottom:1083.433200px;}
.yb{bottom:1092.696600px;}
.y155{bottom:1187.834700px;}
.y49{bottom:1188.136350px;}
.h10{height:37.740000px;}
.hd{height:41.940000px;}
.h8{height:44.400000px;}
.he{height:44.793000px;}
.hb{height:45.840000px;}
.hf{height:46.614000px;}
.hc{height:50.526000px;}
.h7{height:51.768000px;}
.ha{height:54.840000px;}
.h9{height:71.040000px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.x4{left:85.039350px;}
.x9{left:139.937100px;}
.x8{left:155.957100px;}
.x2{left:223.228350px;}
.xa{left:249.527100px;}
.x5{left:467.716500px;}
.xb{left:497.484600px;}
.x6{left:977.952750px;}
.xc{left:994.964100px;}
.x7{left:1360.646250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls1f{letter-spacing:-1.512000pt;}
.ls18{letter-spacing:-1.456000pt;}
.ls21{letter-spacing:-1.400000pt;}
.ls22{letter-spacing:-1.288000pt;}
.ls19{letter-spacing:-1.176000pt;}
.ls20{letter-spacing:-1.120000pt;}
.ls14{letter-spacing:-1.064000pt;}
.lsb{letter-spacing:-1.008000pt;}
.ls1c{letter-spacing:-0.896000pt;}
.ls1d{letter-spacing:-0.840000pt;}
.ls1b{letter-spacing:-0.728000pt;}
.ls4{letter-spacing:-0.616000pt;}
.ls17{letter-spacing:-0.560000pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.392000pt;}
.ls6{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:-0.280000pt;}
.ls13{letter-spacing:-0.168000pt;}
.lse{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.056000pt;}
.ls7{letter-spacing:0.112000pt;}
.lsd{letter-spacing:0.213333pt;}
.ls1e{letter-spacing:0.224000pt;}
.ls3{letter-spacing:0.280000pt;}
.ls15{letter-spacing:0.392000pt;}
.ls5{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.504000pt;}
.ls11{letter-spacing:0.672000pt;}
.ls16{letter-spacing:0.728000pt;}
.ls10{letter-spacing:0.784000pt;}
.ls1a{letter-spacing:10.360000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.wsb3{word-spacing:-12.426667pt;}
.wsb4{word-spacing:-11.560000pt;}
.wsa{word-spacing:-10.584000pt;}
.ws77{word-spacing:-10.360000pt;}
.ws7{word-spacing:-10.248000pt;}
.ws6{word-spacing:-10.136000pt;}
.ws9{word-spacing:-9.968000pt;}
.wsb{word-spacing:-9.800000pt;}
.ws6e{word-spacing:-9.352000pt;}
.ws13{word-spacing:-3.360000pt;}
.ws15{word-spacing:-2.240000pt;}
.wsd{word-spacing:-1.760000pt;}
.wse6{word-spacing:-1.586667pt;}
.wse8{word-spacing:-1.541333pt;}
.wse{word-spacing:-1.386667pt;}
.wse9{word-spacing:-1.314667pt;}
.wsa5{word-spacing:-1.176000pt;}
.wsca{word-spacing:-1.008000pt;}
.wsdd{word-spacing:-0.952000pt;}
.wsac{word-spacing:-0.840000pt;}
.ws49{word-spacing:-0.784000pt;}
.ws5a{word-spacing:-0.728000pt;}
.ws8f{word-spacing:-0.672000pt;}
.wsa3{word-spacing:-0.560000pt;}
.ws4a{word-spacing:-0.448000pt;}
.ws18{word-spacing:-0.336000pt;}
.ws20{word-spacing:-0.280000pt;}
.wsbb{word-spacing:-0.224000pt;}
.ws30{word-spacing:-0.213333pt;}
.ws22{word-spacing:-0.112000pt;}
.ws8a{word-spacing:-0.056000pt;}
.ws3{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.wsd4{word-spacing:0.112000pt;}
.ws82{word-spacing:0.168000pt;}
.ws23{word-spacing:0.280000pt;}
.ws4f{word-spacing:0.336000pt;}
.ws24{word-spacing:0.392000pt;}
.wse5{word-spacing:0.448000pt;}
.ws75{word-spacing:0.560000pt;}
.ws68{word-spacing:0.616000pt;}
.ws5f{word-spacing:0.672000pt;}
.ws84{word-spacing:0.728000pt;}
.ws10{word-spacing:0.746667pt;}
.ws65{word-spacing:0.784000pt;}
.wsa7{word-spacing:0.840000pt;}
.ws4d{word-spacing:0.952000pt;}
.ws61{word-spacing:1.064000pt;}
.wsc4{word-spacing:1.120000pt;}
.ws74{word-spacing:1.176000pt;}
.ws45{word-spacing:1.288000pt;}
.wsc8{word-spacing:1.400000pt;}
.ws97{word-spacing:1.456000pt;}
.ws41{word-spacing:1.568000pt;}
.ws14{word-spacing:1.706667pt;}
.ws6b{word-spacing:1.736000pt;}
.ws11{word-spacing:1.760000pt;}
.ws9d{word-spacing:1.792000pt;}
.ws40{word-spacing:1.904000pt;}
.wsb9{word-spacing:2.016000pt;}
.ws44{word-spacing:2.184000pt;}
.wsa6{word-spacing:2.296000pt;}
.ws2b{word-spacing:2.352000pt;}
.wsb5{word-spacing:2.408000pt;}
.wsc9{word-spacing:2.464000pt;}
.ws1e{word-spacing:2.576000pt;}
.wsf{word-spacing:2.613333pt;}
.ws46{word-spacing:2.744000pt;}
.wsb0{word-spacing:2.800000pt;}
.ws9b{word-spacing:2.856000pt;}
.ws3a{word-spacing:2.912000pt;}
.ws4e{word-spacing:2.968000pt;}
.wsd0{word-spacing:3.024000pt;}
.wsc3{word-spacing:3.080000pt;}
.ws12{word-spacing:3.093333pt;}
.ws5b{word-spacing:3.136000pt;}
.ws6f{word-spacing:3.248000pt;}
.ws51{word-spacing:3.360000pt;}
.ws2f{word-spacing:3.528000pt;}
.ws31{word-spacing:3.584000pt;}
.ws2a{word-spacing:3.640000pt;}
.ws5c{word-spacing:3.696000pt;}
.ws1d{word-spacing:3.808000pt;}
.wscc{word-spacing:3.864000pt;}
.ws70{word-spacing:3.976000pt;}
.ws6c{word-spacing:4.144000pt;}
.ws72{word-spacing:4.200000pt;}
.ws48{word-spacing:4.312000pt;}
.ws96{word-spacing:4.368000pt;}
.ws3c{word-spacing:4.424000pt;}
.ws52{word-spacing:4.480000pt;}
.ws8e{word-spacing:4.536000pt;}
.ws86{word-spacing:4.648000pt;}
.ws67{word-spacing:4.872000pt;}
.ws73{word-spacing:5.040000pt;}
.ws17{word-spacing:5.152000pt;}
.ws8d{word-spacing:5.432000pt;}
.ws9c{word-spacing:5.712000pt;}
.ws36{word-spacing:5.880000pt;}
.wsa8{word-spacing:6.104000pt;}
.wsda{word-spacing:6.160000pt;}
.ws69{word-spacing:6.216000pt;}
.ws19{word-spacing:6.272000pt;}
.ws63{word-spacing:6.608000pt;}
.wsc5{word-spacing:6.720000pt;}
.wse2{word-spacing:6.776000pt;}
.ws83{word-spacing:7.000000pt;}
.ws16{word-spacing:7.146667pt;}
.ws7f{word-spacing:7.224000pt;}
.wsbd{word-spacing:7.336000pt;}
.ws26{word-spacing:7.392000pt;}
.ws47{word-spacing:7.504000pt;}
.ws2e{word-spacing:7.560000pt;}
.ws94{word-spacing:7.672000pt;}
.ws85{word-spacing:7.728000pt;}
.ws38{word-spacing:7.784000pt;}
.ws28{word-spacing:7.840000pt;}
.ws79{word-spacing:7.896000pt;}
.wsad{word-spacing:8.064000pt;}
.wsa4{word-spacing:8.176000pt;}
.ws66{word-spacing:8.232000pt;}
.wsa9{word-spacing:8.456000pt;}
.ws57{word-spacing:8.624000pt;}
.wsc6{word-spacing:8.792000pt;}
.ws9e{word-spacing:8.848000pt;}
.wsa1{word-spacing:8.960000pt;}
.wscb{word-spacing:9.184000pt;}
.ws1a{word-spacing:9.296000pt;}
.wse3{word-spacing:9.408000pt;}
.wsc2{word-spacing:9.520000pt;}
.ws42{word-spacing:9.576000pt;}
.wsb7{word-spacing:9.632000pt;}
.wsce{word-spacing:9.688000pt;}
.wsba{word-spacing:9.856000pt;}
.wsa0{word-spacing:10.024000pt;}
.wse0{word-spacing:10.080000pt;}
.ws6a{word-spacing:10.136000pt;}
.wsb8{word-spacing:10.192000pt;}
.ws39{word-spacing:10.304000pt;}
.ws9a{word-spacing:10.416000pt;}
.wsc1{word-spacing:10.528000pt;}
.ws37{word-spacing:10.752000pt;}
.ws53{word-spacing:10.808000pt;}
.ws58{word-spacing:11.032000pt;}
.ws89{word-spacing:11.088000pt;}
.ws43{word-spacing:11.480000pt;}
.ws1b{word-spacing:11.592000pt;}
.ws35{word-spacing:11.760000pt;}
.ws76{word-spacing:11.816000pt;}
.ws98{word-spacing:12.096000pt;}
.ws3b{word-spacing:12.152000pt;}
.wsd1{word-spacing:12.320000pt;}
.wsd8{word-spacing:12.376000pt;}
.ws95{word-spacing:12.488000pt;}
.ws90{word-spacing:12.656000pt;}
.wsbe{word-spacing:12.712000pt;}
.ws71{word-spacing:12.768000pt;}
.wsaa{word-spacing:12.824000pt;}
.wscd{word-spacing:12.936000pt;}
.ws9f{word-spacing:13.216000pt;}
.ws7a{word-spacing:13.272000pt;}
.ws7e{word-spacing:13.664000pt;}
.ws5e{word-spacing:13.776000pt;}
.ws29{word-spacing:13.944000pt;}
.wsdb{word-spacing:14.000000pt;}
.wsab{word-spacing:14.112000pt;}
.ws87{word-spacing:14.280000pt;}
.ws33{word-spacing:14.448000pt;}
.wsb1{word-spacing:14.560000pt;}
.ws3d{word-spacing:14.672000pt;}
.ws62{word-spacing:14.728000pt;}
.ws88{word-spacing:14.784000pt;}
.ws56{word-spacing:14.896000pt;}
.ws7d{word-spacing:14.952000pt;}
.ws8b{word-spacing:15.008000pt;}
.ws34{word-spacing:15.288000pt;}
.wsc7{word-spacing:15.344000pt;}
.ws7b{word-spacing:15.792000pt;}
.ws59{word-spacing:16.016000pt;}
.wsd2{word-spacing:16.352000pt;}
.wsaf{word-spacing:16.744000pt;}
.ws2d{word-spacing:16.856000pt;}
.ws3f{word-spacing:16.912000pt;}
.wsbc{word-spacing:17.584000pt;}
.wscf{word-spacing:17.752000pt;}
.wsdc{word-spacing:17.808000pt;}
.ws55{word-spacing:17.920000pt;}
.ws8c{word-spacing:18.368000pt;}
.wse4{word-spacing:18.536000pt;}
.ws80{word-spacing:18.760000pt;}
.ws32{word-spacing:19.152000pt;}
.wsdf{word-spacing:19.376000pt;}
.ws3e{word-spacing:19.488000pt;}
.ws99{word-spacing:19.712000pt;}
.ws25{word-spacing:19.880000pt;}
.wsbf{word-spacing:20.048000pt;}
.wsa2{word-spacing:20.272000pt;}
.wsd3{word-spacing:20.328000pt;}
.wsd6{word-spacing:20.384000pt;}
.wsc0{word-spacing:20.496000pt;}
.wsde{word-spacing:21.224000pt;}
.ws64{word-spacing:22.064000pt;}
.ws81{word-spacing:22.120000pt;}
.ws1f{word-spacing:22.792000pt;}
.wsae{word-spacing:23.016000pt;}
.ws91{word-spacing:24.304000pt;}
.ws60{word-spacing:24.472000pt;}
.ws5d{word-spacing:25.536000pt;}
.ws50{word-spacing:25.928000pt;}
.wse1{word-spacing:27.048000pt;}
.ws27{word-spacing:27.384000pt;}
.wsb6{word-spacing:27.440000pt;}
.wsd9{word-spacing:27.664000pt;}
.ws4c{word-spacing:28.224000pt;}
.wsd5{word-spacing:28.336000pt;}
.ws7c{word-spacing:28.728000pt;}
.ws78{word-spacing:29.456000pt;}
.ws93{word-spacing:29.624000pt;}
.ws4b{word-spacing:33.264000pt;}
.wsd7{word-spacing:35.728000pt;}
.ws92{word-spacing:36.008000pt;}
.ws1c{word-spacing:37.632000pt;}
.ws21{word-spacing:45.752000pt;}
.ws54{word-spacing:60.816000pt;}
.ws8{word-spacing:219.648533pt;}
.wsc{word-spacing:219.649067pt;}
.ws6d{word-spacing:5481.600000pt;}
.wsb2{word-spacing:5484.288000pt;}
.wse7{word-spacing:5484.672000pt;}
.ws5{word-spacing:5487.104000pt;}
._16{margin-left:-14.024802pt;}
._1a{margin-left:-13.064800pt;}
._17{margin-left:-11.860800pt;}
._19{margin-left:-10.914400pt;}
._18{margin-left:-9.867200pt;}
._1b{margin-left:-8.831200pt;}
._22{margin-left:-6.042398pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._4{margin-left:-0.899729pt;}
._5{width:1.187469pt;}
._6{width:2.334394pt;}
._13{width:3.235994pt;}
._9{width:4.288794pt;}
._8{width:5.325331pt;}
._7{width:6.467462pt;}
._15{width:8.129073pt;}
._b{width:9.282929pt;}
._1c{width:10.192000pt;}
._14{width:12.779465pt;}
._11{width:13.831731pt;}
._10{width:15.422131pt;}
._c{width:16.797860pt;}
._d{width:17.786133pt;}
._21{width:19.106662pt;}
._a{width:20.652531pt;}
._f{width:22.483471pt;}
._e{width:23.738929pt;}
._20{width:24.678662pt;}
._12{width:27.062669pt;}
._1e{width:28.033058pt;}
._1d{width:29.132002pt;}
._1f{width:588.448009pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:29.186400pt;}
.ya{bottom:36.640000pt;}
.ya1{bottom:42.519733pt;}
.ya0{bottom:55.853067pt;}
.y48{bottom:85.223600pt;}
.y9f{bottom:85.270400pt;}
.y75{bottom:85.349600pt;}
.ycf{bottom:85.363733pt;}
.y1be{bottom:85.499067pt;}
.yfa{bottom:85.517733pt;}
.y128{bottom:85.713733pt;}
.y154{bottom:85.881733pt;}
.y1e1{bottom:103.879067pt;}
.y47{bottom:103.885600pt;}
.y9e{bottom:103.932400pt;}
.y32{bottom:103.936933pt;}
.y192{bottom:104.007067pt;}
.y74{bottom:104.011600pt;}
.yce{bottom:104.025733pt;}
.y1bd{bottom:104.161067pt;}
.yf9{bottom:104.179733pt;}
.y127{bottom:104.375733pt;}
.y153{bottom:104.543733pt;}
.y1e0{bottom:122.545067pt;}
.y46{bottom:122.547600pt;}
.y9d{bottom:122.594400pt;}
.y31{bottom:122.598933pt;}
.y191{bottom:122.669067pt;}
.y73{bottom:122.673600pt;}
.ycd{bottom:122.687733pt;}
.y1bc{bottom:122.823067pt;}
.yf8{bottom:122.841733pt;}
.y126{bottom:123.037733pt;}
.y152{bottom:123.205733pt;}
.y45{bottom:141.209600pt;}
.y9c{bottom:141.256400pt;}
.y30{bottom:141.260933pt;}
.y190{bottom:141.331067pt;}
.y72{bottom:141.335600pt;}
.ycc{bottom:141.349733pt;}
.y1bb{bottom:141.485067pt;}
.y125{bottom:141.699733pt;}
.y151{bottom:141.867733pt;}
.y44{bottom:159.871600pt;}
.y1df{bottom:159.877067pt;}
.y205{bottom:159.881733pt;}
.y229{bottom:159.915733pt;}
.y9b{bottom:159.918400pt;}
.y2f{bottom:159.922933pt;}
.y18f{bottom:159.993067pt;}
.y71{bottom:159.997600pt;}
.ycb{bottom:160.011733pt;}
.y1ba{bottom:160.147067pt;}
.yf7{bottom:160.179733pt;}
.y124{bottom:160.361733pt;}
.y150{bottom:160.529733pt;}
.y43{bottom:178.533600pt;}
.y1de{bottom:178.543067pt;}
.y204{bottom:178.547733pt;}
.y9a{bottom:178.580400pt;}
.y228{bottom:178.581733pt;}
.y2e{bottom:178.584933pt;}
.y18e{bottom:178.655067pt;}
.y70{bottom:178.659600pt;}
.yca{bottom:178.673733pt;}
.y1b9{bottom:178.809067pt;}
.yf6{bottom:178.841733pt;}
.y123{bottom:179.023733pt;}
.y14f{bottom:179.191733pt;}
.y42{bottom:197.195600pt;}
.y1dd{bottom:197.209067pt;}
.y203{bottom:197.213733pt;}
.y99{bottom:197.242400pt;}
.y2d{bottom:197.246933pt;}
.y227{bottom:197.247733pt;}
.y18d{bottom:197.317067pt;}
.y6f{bottom:197.321600pt;}
.y169{bottom:197.335733pt;}
.y1b8{bottom:197.471067pt;}
.yf5{bottom:197.503733pt;}
.y14e{bottom:197.853733pt;}
.y41{bottom:215.857600pt;}
.y2c{bottom:215.908933pt;}
.y226{bottom:215.913733pt;}
.y18c{bottom:215.979067pt;}
.y6e{bottom:215.983600pt;}
.y168{bottom:215.997733pt;}
.yc9{bottom:216.011733pt;}
.y1b7{bottom:216.133067pt;}
.yf4{bottom:216.165733pt;}
.y122{bottom:216.361733pt;}
.y14d{bottom:216.515733pt;}
.y40{bottom:234.519600pt;}
.y1dc{bottom:234.541067pt;}
.y202{bottom:234.545733pt;}
.y2b{bottom:234.570933pt;}
.y225{bottom:234.579733pt;}
.y98{bottom:234.580400pt;}
.y18b{bottom:234.641067pt;}
.y167{bottom:234.659733pt;}
.yc8{bottom:234.673733pt;}
.y1b6{bottom:234.795067pt;}
.yf3{bottom:234.827733pt;}
.y121{bottom:235.023733pt;}
.y14c{bottom:235.177733pt;}
.y1db{bottom:253.207067pt;}
.y201{bottom:253.211733pt;}
.y2a{bottom:253.232933pt;}
.y97{bottom:253.242400pt;}
.y18a{bottom:253.303067pt;}
.y6d{bottom:253.321600pt;}
.y166{bottom:253.321733pt;}
.yc7{bottom:253.335733pt;}
.y1b5{bottom:253.457067pt;}
.yf2{bottom:253.489733pt;}
.y120{bottom:253.685733pt;}
.y14b{bottom:253.839733pt;}
.y3f{bottom:271.852933pt;}
.y200{bottom:271.877733pt;}
.y29{bottom:271.894933pt;}
.y96{bottom:271.904400pt;}
.y224{bottom:271.911733pt;}
.y6c{bottom:271.983600pt;}
.y165{bottom:271.983733pt;}
.yc6{bottom:271.997733pt;}
.y1b4{bottom:272.119067pt;}
.yf1{bottom:272.151733pt;}
.y11f{bottom:272.347733pt;}
.y1da{bottom:290.539067pt;}
.y1ff{bottom:290.543733pt;}
.y95{bottom:290.566400pt;}
.y223{bottom:290.577733pt;}
.y189{bottom:290.641067pt;}
.y6b{bottom:290.645600pt;}
.y164{bottom:290.645733pt;}
.yc5{bottom:290.659733pt;}
.y1b3{bottom:290.781067pt;}
.yf0{bottom:290.813733pt;}
.y11e{bottom:291.009733pt;}
.y14a{bottom:291.177733pt;}
.y1d9{bottom:309.205067pt;}
.y94{bottom:309.228400pt;}
.y28{bottom:309.232933pt;}
.y3e{bottom:309.237600pt;}
.y222{bottom:309.243733pt;}
.y188{bottom:309.303067pt;}
.y6a{bottom:309.307600pt;}
.y163{bottom:309.307733pt;}
.yc4{bottom:309.321733pt;}
.yef{bottom:309.475733pt;}
.y11d{bottom:309.671733pt;}
.y149{bottom:309.839733pt;}
.y7{bottom:312.905067pt;}
.y1fe{bottom:327.875733pt;}
.y27{bottom:327.894933pt;}
.y3d{bottom:327.899600pt;}
.y187{bottom:327.965067pt;}
.y69{bottom:327.969600pt;}
.y162{bottom:327.969733pt;}
.yc3{bottom:327.983733pt;}
.y1b2{bottom:328.119067pt;}
.yee{bottom:328.137733pt;}
.y11c{bottom:328.333733pt;}
.y148{bottom:328.501733pt;}
.y9{bottom:339.479200pt;}
.y1d8{bottom:346.537067pt;}
.y1fd{bottom:346.541733pt;}
.y26{bottom:346.556933pt;}
.y3c{bottom:346.561600pt;}
.y93{bottom:346.566400pt;}
.y221{bottom:346.575733pt;}
.y186{bottom:346.627067pt;}
.y68{bottom:346.631600pt;}
.y161{bottom:346.631733pt;}
.yc2{bottom:346.645733pt;}
.y1b1{bottom:346.781067pt;}
.yed{bottom:346.799733pt;}
.y11b{bottom:346.995733pt;}
.y147{bottom:347.163733pt;}
.y1d7{bottom:365.203067pt;}
.y1fc{bottom:365.207733pt;}
.y25{bottom:365.218933pt;}
.y3b{bottom:365.223600pt;}
.y92{bottom:365.228400pt;}
.y220{bottom:365.241733pt;}
.y185{bottom:365.289067pt;}
.y67{bottom:365.293600pt;}
.y160{bottom:365.293733pt;}
.yc1{bottom:365.307733pt;}
.y1b0{bottom:365.443067pt;}
.yec{bottom:365.461733pt;}
.y11a{bottom:365.657733pt;}
.y146{bottom:365.825733pt;}
.y1d6{bottom:383.869067pt;}
.y1fb{bottom:383.873733pt;}
.y24{bottom:383.880933pt;}
.y3a{bottom:383.885600pt;}
.y91{bottom:383.890400pt;}
.y21f{bottom:383.907733pt;}
.y184{bottom:383.951067pt;}
.y66{bottom:383.955600pt;}
.y15f{bottom:383.955733pt;}
.yc0{bottom:383.969733pt;}
.y1af{bottom:384.105067pt;}
.yeb{bottom:384.123733pt;}
.y119{bottom:384.319733pt;}
.y145{bottom:384.487733pt;}
.y6{bottom:395.571733pt;}
.y1d5{bottom:402.535067pt;}
.y23{bottom:402.542933pt;}
.y39{bottom:402.547600pt;}
.y90{bottom:402.552400pt;}
.y183{bottom:402.613067pt;}
.y65{bottom:402.617600pt;}
.y15e{bottom:402.617733pt;}
.ybf{bottom:402.631733pt;}
.y1ae{bottom:402.767067pt;}
.yea{bottom:402.785733pt;}
.y118{bottom:402.981733pt;}
.y144{bottom:403.149733pt;}
.y1d4{bottom:421.201067pt;}
.y22{bottom:421.204933pt;}
.y1fa{bottom:421.205733pt;}
.y38{bottom:421.209600pt;}
.y8f{bottom:421.214400pt;}
.y21e{bottom:421.239733pt;}
.y182{bottom:421.275067pt;}
.y64{bottom:421.279600pt;}
.y15d{bottom:421.279733pt;}
.ybe{bottom:421.293733pt;}
.y1ad{bottom:421.429067pt;}
.ye9{bottom:421.447733pt;}
.y117{bottom:421.643733pt;}
.y143{bottom:421.811733pt;}
.y21{bottom:439.866933pt;}
.y37{bottom:439.871600pt;}
.y1f9{bottom:439.871733pt;}
.y8e{bottom:439.876400pt;}
.y21d{bottom:439.905733pt;}
.y181{bottom:439.937067pt;}
.y15c{bottom:439.941733pt;}
.ybd{bottom:439.955733pt;}
.y1ac{bottom:440.091067pt;}
.ye8{bottom:440.109733pt;}
.y116{bottom:440.305733pt;}
.y142{bottom:440.473733pt;}
.y20{bottom:458.528933pt;}
.y1d3{bottom:458.533067pt;}
.y36{bottom:458.533600pt;}
.y1f8{bottom:458.537733pt;}
.y8d{bottom:458.538400pt;}
.y21c{bottom:458.571733pt;}
.y180{bottom:458.599067pt;}
.y15b{bottom:458.603733pt;}
.y63{bottom:458.617600pt;}
.ybc{bottom:458.617733pt;}
.ye7{bottom:458.771733pt;}
.y115{bottom:458.967733pt;}
.y1f{bottom:477.190933pt;}
.y35{bottom:477.195600pt;}
.y1d2{bottom:477.199067pt;}
.y8c{bottom:477.200400pt;}
.y1f7{bottom:477.203733pt;}
.y21b{bottom:477.237733pt;}
.y17f{bottom:477.261067pt;}
.y15a{bottom:477.265733pt;}
.y62{bottom:477.279600pt;}
.ybb{bottom:477.279733pt;}
.y1ab{bottom:477.429067pt;}
.ye6{bottom:477.433733pt;}
.y114{bottom:477.629733pt;}
.y141{bottom:477.811733pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y1e{bottom:495.852933pt;}
.y34{bottom:495.857600pt;}
.y8b{bottom:495.862400pt;}
.y1d1{bottom:495.865067pt;}
.y1f6{bottom:495.869733pt;}
.y21a{bottom:495.903733pt;}
.y17e{bottom:495.923067pt;}
.y61{bottom:495.941600pt;}
.yba{bottom:495.941733pt;}
.y1aa{bottom:496.091067pt;}
.y113{bottom:496.291733pt;}
.y140{bottom:496.473733pt;}
.y33{bottom:514.519600pt;}
.y8a{bottom:514.524400pt;}
.y1d0{bottom:514.531067pt;}
.y17d{bottom:514.585067pt;}
.y60{bottom:514.603600pt;}
.yb9{bottom:514.603733pt;}
.y1a9{bottom:514.753067pt;}
.ye5{bottom:514.771733pt;}
.y112{bottom:514.953733pt;}
.y13f{bottom:515.135733pt;}
.y1d{bottom:533.186267pt;}
.y89{bottom:533.186400pt;}
.y1cf{bottom:533.197067pt;}
.y1f5{bottom:533.201733pt;}
.y219{bottom:533.235733pt;}
.y17c{bottom:533.247067pt;}
.y5f{bottom:533.265600pt;}
.yb8{bottom:533.265733pt;}
.y1a8{bottom:533.415067pt;}
.ye4{bottom:533.433733pt;}
.y111{bottom:533.615733pt;}
.y13e{bottom:533.797733pt;}
.y1c{bottom:551.852933pt;}
.y1f4{bottom:551.867733pt;}
.y218{bottom:551.901733pt;}
.y5e{bottom:551.927600pt;}
.yb7{bottom:551.927733pt;}
.y1a7{bottom:552.077067pt;}
.ye3{bottom:552.095733pt;}
.y110{bottom:552.277733pt;}
.y13d{bottom:552.459733pt;}
.y4{bottom:560.905067pt;}
.y88{bottom:570.519733pt;}
.y1ce{bottom:570.529067pt;}
.y1f3{bottom:570.533733pt;}
.y217{bottom:570.567733pt;}
.y17b{bottom:570.585067pt;}
.y5d{bottom:570.589600pt;}
.yb6{bottom:570.589733pt;}
.ye2{bottom:570.757733pt;}
.y10f{bottom:570.939733pt;}
.y13c{bottom:571.121733pt;}
.y87{bottom:589.186400pt;}
.y1cd{bottom:589.195067pt;}
.y1f2{bottom:589.199733pt;}
.y216{bottom:589.233733pt;}
.y17a{bottom:589.247067pt;}
.y5c{bottom:589.251600pt;}
.yb5{bottom:589.251733pt;}
.y1a6{bottom:589.415067pt;}
.ye1{bottom:589.419733pt;}
.y10e{bottom:589.601733pt;}
.y13b{bottom:589.783733pt;}
.y1cc{bottom:607.861067pt;}
.y1f1{bottom:607.865733pt;}
.y215{bottom:607.899733pt;}
.y179{bottom:607.909067pt;}
.y5b{bottom:607.913600pt;}
.yb4{bottom:607.913733pt;}
.y1a5{bottom:608.077067pt;}
.ye0{bottom:608.081733pt;}
.y10d{bottom:608.263733pt;}
.y13a{bottom:608.445733pt;}
.y1b{bottom:626.519733pt;}
.y214{bottom:626.565733pt;}
.y178{bottom:626.571067pt;}
.yb3{bottom:626.575733pt;}
.y159{bottom:626.589733pt;}
.y1a4{bottom:626.739067pt;}
.y10c{bottom:626.925733pt;}
.y139{bottom:627.107733pt;}
.y1a{bottom:645.186400pt;}
.y1cb{bottom:645.193067pt;}
.y1f0{bottom:645.197733pt;}
.y177{bottom:645.233067pt;}
.yb2{bottom:645.237733pt;}
.y5a{bottom:645.251600pt;}
.y158{bottom:645.251733pt;}
.y1a3{bottom:645.401067pt;}
.y86{bottom:645.419600pt;}
.ydf{bottom:645.419733pt;}
.y10b{bottom:645.587733pt;}
.y138{bottom:645.769733pt;}
.y19{bottom:663.853067pt;}
.y1ca{bottom:663.859067pt;}
.y1ef{bottom:663.863733pt;}
.y176{bottom:663.895067pt;}
.y213{bottom:663.897733pt;}
.yb1{bottom:663.899733pt;}
.y59{bottom:663.913600pt;}
.y157{bottom:663.913733pt;}
.y1a2{bottom:664.063067pt;}
.y85{bottom:664.081600pt;}
.yde{bottom:664.081733pt;}
.y10a{bottom:664.249733pt;}
.y137{bottom:664.431733pt;}
.y3{bottom:668.212133pt;}
.y18{bottom:682.519733pt;}
.y1c9{bottom:682.525067pt;}
.y1ee{bottom:682.529733pt;}
.y175{bottom:682.557067pt;}
.y212{bottom:682.563733pt;}
.y58{bottom:682.575600pt;}
.y156{bottom:682.575733pt;}
.y1a1{bottom:682.725067pt;}
.y84{bottom:682.743600pt;}
.ydd{bottom:682.743733pt;}
.y109{bottom:682.911733pt;}
.y136{bottom:683.093733pt;}
.y17{bottom:701.186400pt;}
.y1c8{bottom:701.191067pt;}
.y1ed{bottom:701.195733pt;}
.y174{bottom:701.219067pt;}
.y211{bottom:701.229733pt;}
.y57{bottom:701.237600pt;}
.yb0{bottom:701.237733pt;}
.y1a0{bottom:701.387067pt;}
.y83{bottom:701.405600pt;}
.ydc{bottom:701.405733pt;}
.y108{bottom:701.573733pt;}
.y135{bottom:701.755733pt;}
.y2{bottom:703.938667pt;}
.y16{bottom:719.853067pt;}
.y1c7{bottom:719.857067pt;}
.y173{bottom:719.881067pt;}
.y210{bottom:719.895733pt;}
.y56{bottom:719.899600pt;}
.yaf{bottom:719.899733pt;}
.y19f{bottom:720.049067pt;}
.y82{bottom:720.067600pt;}
.ydb{bottom:720.067733pt;}
.y107{bottom:720.235733pt;}
.y134{bottom:720.417733pt;}
.y15{bottom:738.519733pt;}
.y1ec{bottom:738.527733pt;}
.y172{bottom:738.543067pt;}
.y55{bottom:738.561600pt;}
.yae{bottom:738.561733pt;}
.y234{bottom:738.595733pt;}
.y19e{bottom:738.711067pt;}
.y81{bottom:738.729600pt;}
.yda{bottom:738.729733pt;}
.y133{bottom:739.079733pt;}
.y14{bottom:757.186400pt;}
.y1c6{bottom:757.189067pt;}
.y1eb{bottom:757.193733pt;}
.y171{bottom:757.205067pt;}
.y54{bottom:757.223600pt;}
.yad{bottom:757.223733pt;}
.y20f{bottom:757.227733pt;}
.y233{bottom:757.261733pt;}
.y80{bottom:757.391600pt;}
.yd9{bottom:757.391733pt;}
.y106{bottom:757.573733pt;}
.y1{bottom:763.655867pt;}
.y13{bottom:775.853067pt;}
.y1c5{bottom:775.855067pt;}
.y1ea{bottom:775.859733pt;}
.y170{bottom:775.867067pt;}
.y53{bottom:775.885600pt;}
.yac{bottom:775.885733pt;}
.y232{bottom:775.927733pt;}
.y19d{bottom:776.049067pt;}
.y7f{bottom:776.053600pt;}
.yd8{bottom:776.053733pt;}
.y105{bottom:776.235733pt;}
.y132{bottom:776.417733pt;}
.y12{bottom:794.519733pt;}
.y1c4{bottom:794.521067pt;}
.y1e9{bottom:794.525733pt;}
.y16f{bottom:794.529067pt;}
.y52{bottom:794.547600pt;}
.yab{bottom:794.547733pt;}
.y20e{bottom:794.559733pt;}
.y231{bottom:794.593733pt;}
.y19c{bottom:794.711067pt;}
.y104{bottom:794.897733pt;}
.y131{bottom:795.079733pt;}
.y11{bottom:813.186400pt;}
.y1c3{bottom:813.187067pt;}
.y1e8{bottom:813.191733pt;}
.y51{bottom:813.209600pt;}
.yaa{bottom:813.209733pt;}
.y20d{bottom:813.225733pt;}
.y230{bottom:813.259733pt;}
.y19b{bottom:813.373067pt;}
.y7e{bottom:813.391600pt;}
.yd7{bottom:813.391733pt;}
.y103{bottom:813.559733pt;}
.y130{bottom:813.741733pt;}
.y10{bottom:831.853067pt;}
.y1e7{bottom:831.857733pt;}
.y16e{bottom:831.867067pt;}
.y50{bottom:831.871600pt;}
.y20c{bottom:831.891733pt;}
.y19a{bottom:832.035067pt;}
.y7d{bottom:832.053600pt;}
.yd6{bottom:832.053733pt;}
.y102{bottom:832.221733pt;}
.y12f{bottom:832.403733pt;}
.yf{bottom:850.519733pt;}
.y1e6{bottom:850.523733pt;}
.y16d{bottom:850.529067pt;}
.y4f{bottom:850.533600pt;}
.ya9{bottom:850.547733pt;}
.y22f{bottom:850.591733pt;}
.y199{bottom:850.697067pt;}
.y7c{bottom:850.715600pt;}
.yd5{bottom:850.715733pt;}
.y101{bottom:850.883733pt;}
.y12e{bottom:851.065733pt;}
.y1c2{bottom:869.186400pt;}
.y16c{bottom:869.191067pt;}
.y4e{bottom:869.195600pt;}
.ya8{bottom:869.209733pt;}
.y20b{bottom:869.223733pt;}
.y22e{bottom:869.257733pt;}
.y198{bottom:869.359067pt;}
.y7b{bottom:869.377600pt;}
.yd4{bottom:869.377733pt;}
.y100{bottom:869.545733pt;}
.y12d{bottom:869.727733pt;}
.y16b{bottom:887.853067pt;}
.y1e5{bottom:887.855733pt;}
.y4d{bottom:887.857600pt;}
.ya7{bottom:887.871733pt;}
.y20a{bottom:887.889733pt;}
.y197{bottom:888.021067pt;}
.y7a{bottom:888.039600pt;}
.yd3{bottom:888.039733pt;}
.yff{bottom:888.207733pt;}
.y12c{bottom:888.389733pt;}
.ye{bottom:895.853067pt;}
.y1e4{bottom:906.521733pt;}
.ya6{bottom:906.533733pt;}
.y209{bottom:906.555733pt;}
.y22d{bottom:906.589733pt;}
.y196{bottom:906.683067pt;}
.y79{bottom:906.701600pt;}
.yd2{bottom:906.701733pt;}
.yfe{bottom:906.869733pt;}
.yd{bottom:919.853067pt;}
.y16a{bottom:925.186400pt;}
.y1e3{bottom:925.187733pt;}
.y4c{bottom:925.195600pt;}
.ya5{bottom:925.195733pt;}
.y208{bottom:925.221733pt;}
.y22c{bottom:925.255733pt;}
.y195{bottom:925.345067pt;}
.y78{bottom:925.363600pt;}
.y1c1{bottom:925.513067pt;}
.yfd{bottom:925.531733pt;}
.y12b{bottom:925.727733pt;}
.yc{bottom:943.853067pt;}
.y1e2{bottom:943.853733pt;}
.y4b{bottom:943.857600pt;}
.ya4{bottom:943.857733pt;}
.y207{bottom:943.887733pt;}
.y22b{bottom:943.921733pt;}
.y194{bottom:944.007067pt;}
.y77{bottom:944.025600pt;}
.yd1{bottom:944.039733pt;}
.y1c0{bottom:944.175067pt;}
.yfc{bottom:944.193733pt;}
.y12a{bottom:944.389733pt;}
.y4a{bottom:962.519600pt;}
.ya3{bottom:962.519733pt;}
.y206{bottom:962.553733pt;}
.y22a{bottom:962.587733pt;}
.y193{bottom:962.669067pt;}
.y76{bottom:962.687600pt;}
.yd0{bottom:962.701733pt;}
.y1bf{bottom:962.837067pt;}
.yfb{bottom:962.855733pt;}
.y129{bottom:963.051733pt;}
.yb{bottom:971.285867pt;}
.y155{bottom:1055.853067pt;}
.y49{bottom:1056.121200pt;}
.h10{height:33.546667pt;}
.hd{height:37.280000pt;}
.h8{height:39.466667pt;}
.he{height:39.816000pt;}
.hb{height:40.746667pt;}
.hf{height:41.434667pt;}
.hc{height:44.912000pt;}
.h7{height:46.016000pt;}
.ha{height:48.746667pt;}
.h9{height:63.146667pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.x4{left:75.590533pt;}
.x9{left:124.388533pt;}
.x8{left:138.628533pt;}
.x2{left:198.425200pt;}
.xa{left:221.801867pt;}
.x5{left:415.748000pt;}
.xb{left:442.208533pt;}
.x6{left:869.291333pt;}
.xc{left:884.412533pt;}
.x7{left:1209.463333pt;}
}




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