
    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_ade8275634cdc3233433e161.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.190918;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_1a21e866c79061e206d36ece.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.190918;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_70052536984bd90703d61d92.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.191406;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_42126ff01d18801ae007317f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_05c99a4e022bea862983dea6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.191406;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_d97e883ce5c0b9024a8e28a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_401eafaeebe2408d04dbde69.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.268000;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_005eaf20e73f5e63d75ef935.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.349000;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_0c5c9ddd3dbd6fc609b47335.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.200885;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_73af09bb43bcf7a4283074c8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;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_8221629a2f96b69de8830043.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908203;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_2ce8ea2c747d9ec189a2210a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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_9bcc9df976f639f2228c1784.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.362000;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_ddf1c956e6e197f20df0f706.woff2')format("woff");}.fff{font-family:fff;line-height:0.894000;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.384000;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_2ce8ea2c747d9ec189a2210a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;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_2ce8ea2c747d9ec189a2210a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958496;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_2ce8ea2c747d9ec189a2210a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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:-20.400000px;}
.v4{vertical-align:-18.360000px;}
.v5{vertical-align:-17.340000px;}
.v6{vertical-align:-10.848000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:14.280000px;}
.v3{vertical-align:18.198000px;}
.v1{vertical-align:20.400000px;}
.ls73{letter-spacing:-1.350000px;}
.ls50{letter-spacing:-1.344000px;}
.ls70{letter-spacing:-1.305000px;}
.ls74{letter-spacing:-1.215000px;}
.ls71{letter-spacing:-1.170000px;}
.ls5d{letter-spacing:-1.080000px;}
.ls7e{letter-spacing:-1.035000px;}
.ls30{letter-spacing:-1.026000px;}
.ls10{letter-spacing:-0.960000px;}
.ls18{letter-spacing:-0.810000px;}
.ls40{letter-spacing:-0.702000px;}
.ls4f{letter-spacing:-0.630000px;}
.ls79{letter-spacing:-0.585000px;}
.ls4e{letter-spacing:-0.546000px;}
.ls15{letter-spacing:-0.540000px;}
.ls7b{letter-spacing:-0.495000px;}
.ls3f{letter-spacing:-0.486000px;}
.ls43{letter-spacing:-0.432000px;}
.ls76{letter-spacing:-0.405000px;}
.ls44{letter-spacing:-0.378000px;}
.ls7a{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.324000px;}
.ls67{letter-spacing:-0.315000px;}
.ls5e{letter-spacing:-0.300000px;}
.ls5f{letter-spacing:-0.270000px;}
.ls2c{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.210600px;}
.ls77{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.162000px;}
.ls75{letter-spacing:-0.135000px;}
.ls13{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.105300px;}
.ls1d{letter-spacing:-0.102000px;}
.ls78{letter-spacing:-0.090000px;}
.ls14{letter-spacing:-0.070200px;}
.ls12{letter-spacing:-0.054000px;}
.ls72{letter-spacing:-0.045000px;}
.lsf{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.007800px;}
.ls4{letter-spacing:0.010200px;}
.ls2{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.013800px;}
.ls68{letter-spacing:0.045000px;}
.ls21{letter-spacing:0.054000px;}
.ls31{letter-spacing:0.064200px;}
.ls60{letter-spacing:0.066000px;}
.ls41{letter-spacing:0.070200px;}
.ls63{letter-spacing:0.081600px;}
.ls6b{letter-spacing:0.090000px;}
.ls42{letter-spacing:0.105300px;}
.ls28{letter-spacing:0.108000px;}
.ls6a{letter-spacing:0.135000px;}
.ls6{letter-spacing:0.140400px;}
.ls6e{letter-spacing:0.157500px;}
.ls32{letter-spacing:0.162000px;}
.ls65{letter-spacing:0.167400px;}
.ls2f{letter-spacing:0.175500px;}
.ls5c{letter-spacing:0.180000px;}
.ls35{letter-spacing:0.206400px;}
.ls34{letter-spacing:0.210600px;}
.ls7{letter-spacing:0.216000px;}
.ls6f{letter-spacing:0.225000px;}
.ls19{letter-spacing:0.245700px;}
.ls4d{letter-spacing:0.252000px;}
.ls27{letter-spacing:0.262800px;}
.ls16{letter-spacing:0.270000px;}
.ls33{letter-spacing:0.272400px;}
.lsa{letter-spacing:0.280800px;}
.ls3d{letter-spacing:0.282900px;}
.ls45{letter-spacing:0.309000px;}
.ls6c{letter-spacing:0.315000px;}
.ls2b{letter-spacing:0.315900px;}
.ls17{letter-spacing:0.324000px;}
.ls1f{letter-spacing:0.351000px;}
.ls61{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.378000px;}
.ls2d{letter-spacing:0.386100px;}
.ls7c{letter-spacing:0.405000px;}
.ls66{letter-spacing:0.410400px;}
.ls8{letter-spacing:0.411000px;}
.ls3a{letter-spacing:0.421200px;}
.ls46{letter-spacing:0.426600px;}
.ls62{letter-spacing:0.427200px;}
.lsb{letter-spacing:0.432000px;}
.ls3e{letter-spacing:0.438600px;}
.ls39{letter-spacing:0.440700px;}
.ls6d{letter-spacing:0.450000px;}
.ls38{letter-spacing:0.456300px;}
.ls59{letter-spacing:0.458100px;}
.ls64{letter-spacing:0.480600px;}
.ls1b{letter-spacing:0.486000px;}
.ls54{letter-spacing:0.494400px;}
.ls53{letter-spacing:0.495000px;}
.ls58{letter-spacing:0.526500px;}
.ls5{letter-spacing:0.540000px;}
.ls52{letter-spacing:0.561600px;}
.ls26{letter-spacing:0.567000px;}
.ls20{letter-spacing:0.594000px;}
.ls5b{letter-spacing:0.596700px;}
.ls55{letter-spacing:0.601200px;}
.ls57{letter-spacing:0.601800px;}
.ls3c{letter-spacing:0.605400px;}
.ls25{letter-spacing:0.631800px;}
.ls24{letter-spacing:0.637200px;}
.ls11{letter-spacing:0.648000px;}
.lsc{letter-spacing:0.651450px;}
.ls22{letter-spacing:0.702000px;}
.ls37{letter-spacing:0.756000px;}
.ls2e{letter-spacing:0.810000px;}
.ls7d{letter-spacing:0.837000px;}
.ls51{letter-spacing:0.864000px;}
.ls23{letter-spacing:0.900000px;}
.lse{letter-spacing:0.918000px;}
.ls69{letter-spacing:0.963000px;}
.ls3b{letter-spacing:0.972000px;}
.lsd{letter-spacing:1.020000px;}
.ls56{letter-spacing:1.080000px;}
.ls7f{letter-spacing:1.242000px;}
.ls5a{letter-spacing:1.297800px;}
.ls0{letter-spacing:2.592000px;}
.ls1e{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls48{letter-spacing:64.050000px;}
.ls4c{letter-spacing:66.066000px;}
.ls47{letter-spacing:72.618000px;}
.ls4b{letter-spacing:74.634000px;}
.ls49{letter-spacing:102.816000px;}
.ls4a{letter-spacing:122.976000px;}
.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;}
}
.ws2{word-spacing:-15.067500px;}
.ws24{word-spacing:-14.700000px;}
.ws7e{word-spacing:-13.596000px;}
.ws2c{word-spacing:-13.500000px;}
.ws53{word-spacing:-12.906000px;}
.ws7c{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.ws46{word-spacing:-12.420000px;}
.ws47{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws29{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws2b{word-spacing:-12.150000px;}
.ws7d{word-spacing:-12.042000px;}
.ws5{word-spacing:-11.448000px;}
.ws8e{word-spacing:-10.485000px;}
.wsaa{word-spacing:-10.305000px;}
.wsa{word-spacing:-10.200000px;}
.ws88{word-spacing:-10.035000px;}
.ws7f{word-spacing:-9.990000px;}
.ws8d{word-spacing:-9.855000px;}
.ws9d{word-spacing:-9.810000px;}
.wsa0{word-spacing:-9.675000px;}
.ws9a{word-spacing:-9.585000px;}
.wsab{word-spacing:-9.270000px;}
.ws8a{word-spacing:-9.135000px;}
.ws55{word-spacing:-9.114000px;}
.ws8c{word-spacing:-9.090000px;}
.ws89{word-spacing:-9.000000px;}
.ws8b{word-spacing:-8.955000px;}
.ws2d{word-spacing:-8.775000px;}
.ws6b{word-spacing:-8.564400px;}
.ws6a{word-spacing:-8.424000px;}
.ws28{word-spacing:-8.353800px;}
.ws6c{word-spacing:-8.318700px;}
.ws26{word-spacing:-8.283600px;}
.ws4a{word-spacing:-8.248500px;}
.ws7{word-spacing:-8.213400px;}
.ws6d{word-spacing:-8.178300px;}
.ws2a{word-spacing:-8.143200px;}
.ws6{word-spacing:-8.108100px;}
.ws49{word-spacing:-8.073000px;}
.ws48{word-spacing:-8.037900px;}
.ws4{word-spacing:-7.967700px;}
.ws27{word-spacing:-7.897500px;}
.ws8{word-spacing:-7.862400px;}
.ws25{word-spacing:-7.757100px;}
.ws9{word-spacing:-6.630000px;}
.ws58{word-spacing:-6.197100px;}
.ws44{word-spacing:-5.508000px;}
.ws80{word-spacing:-5.400000px;}
.ws84{word-spacing:-5.346000px;}
.ws66{word-spacing:-4.284000px;}
.wsae{word-spacing:-3.960000px;}
.wsf{word-spacing:-3.840000px;}
.ws65{word-spacing:-3.318000px;}
.wsd{word-spacing:-3.276000px;}
.ws10{word-spacing:-2.400000px;}
.ws2e{word-spacing:-1.998000px;}
.ws7b{word-spacing:-1.944000px;}
.ws7a{word-spacing:-1.920000px;}
.ws32{word-spacing:-1.890000px;}
.ws14{word-spacing:-1.836000px;}
.ws82{word-spacing:-1.782000px;}
.ws3e{word-spacing:-1.728000px;}
.ws4e{word-spacing:-1.620000px;}
.ws97{word-spacing:-1.575000px;}
.ws93{word-spacing:-1.530000px;}
.ws83{word-spacing:-1.512000px;}
.ws96{word-spacing:-1.485000px;}
.ws4b{word-spacing:-1.458000px;}
.wsa8{word-spacing:-1.440000px;}
.ws17{word-spacing:-1.404000px;}
.ws3a{word-spacing:-1.386000px;}
.ws4d{word-spacing:-1.350000px;}
.ws75{word-spacing:-1.296000px;}
.ws23{word-spacing:-1.275000px;}
.wse{word-spacing:-1.260000px;}
.ws13{word-spacing:-1.242000px;}
.ws9e{word-spacing:-1.215000px;}
.ws3b{word-spacing:-1.188000px;}
.ws11{word-spacing:-1.134000px;}
.wsa9{word-spacing:-1.125000px;}
.wsac{word-spacing:-1.080000px;}
.ws86{word-spacing:-1.035000px;}
.ws39{word-spacing:-0.972000px;}
.ws68{word-spacing:-0.966000px;}
.wsa6{word-spacing:-0.945000px;}
.ws99{word-spacing:-0.900000px;}
.ws52{word-spacing:-0.864000px;}
.wsa4{word-spacing:-0.855000px;}
.ws40{word-spacing:-0.810000px;}
.wsa2{word-spacing:-0.765000px;}
.wsaf{word-spacing:-0.756000px;}
.ws94{word-spacing:-0.720000px;}
.ws3f{word-spacing:-0.702000px;}
.ws74{word-spacing:-0.660000px;}
.ws38{word-spacing:-0.648000px;}
.ws69{word-spacing:-0.627900px;}
.ws18{word-spacing:-0.594000px;}
.ws1a{word-spacing:-0.540000px;}
.ws87{word-spacing:-0.495000px;}
.ws1b{word-spacing:-0.486000px;}
.ws70{word-spacing:-0.456300px;}
.ws36{word-spacing:-0.432000px;}
.ws98{word-spacing:-0.405000px;}
.ws72{word-spacing:-0.378000px;}
.ws73{word-spacing:-0.351000px;}
.ws3c{word-spacing:-0.324000px;}
.ws31{word-spacing:-0.315900px;}
.ws9f{word-spacing:-0.315000px;}
.ws81{word-spacing:-0.300000px;}
.ws51{word-spacing:-0.270000px;}
.ws1c{word-spacing:-0.245700px;}
.ws95{word-spacing:-0.225000px;}
.ws15{word-spacing:-0.216000px;}
.ws91{word-spacing:-0.180000px;}
.ws3d{word-spacing:-0.175500px;}
.ws33{word-spacing:-0.162000px;}
.ws92{word-spacing:-0.135000px;}
.ws1f{word-spacing:-0.108000px;}
.wsa7{word-spacing:-0.090000px;}
.ws1d{word-spacing:-0.054000px;}
.ws8f{word-spacing:-0.045000px;}
.wsb{word-spacing:0.000000px;}
.ws30{word-spacing:0.054000px;}
.ws16{word-spacing:0.070200px;}
.wsa3{word-spacing:0.090000px;}
.ws21{word-spacing:0.102000px;}
.ws1e{word-spacing:0.105300px;}
.ws45{word-spacing:0.108000px;}
.wsa5{word-spacing:0.135000px;}
.ws35{word-spacing:0.162000px;}
.wsa1{word-spacing:0.180000px;}
.ws2f{word-spacing:0.210600px;}
.ws19{word-spacing:0.216000px;}
.ws76{word-spacing:0.270000px;}
.ws90{word-spacing:0.315000px;}
.ws12{word-spacing:0.324000px;}
.ws85{word-spacing:0.360000px;}
.ws67{word-spacing:0.378000px;}
.ws41{word-spacing:0.432000px;}
.ws43{word-spacing:0.486000px;}
.ws50{word-spacing:0.540000px;}
.ws34{word-spacing:0.594000px;}
.ws4c{word-spacing:0.702000px;}
.ws77{word-spacing:0.756000px;}
.ws37{word-spacing:0.810000px;}
.ws6f{word-spacing:0.864000px;}
.wsc{word-spacing:0.960000px;}
.ws4f{word-spacing:1.026000px;}
.ws9b{word-spacing:1.035000px;}
.ws42{word-spacing:1.080000px;}
.wsb0{word-spacing:1.188000px;}
.ws79{word-spacing:1.242000px;}
.ws22{word-spacing:1.275000px;}
.ws6e{word-spacing:1.404000px;}
.ws78{word-spacing:1.458000px;}
.ws71{word-spacing:1.512000px;}
.ws20{word-spacing:1.530000px;}
.ws9c{word-spacing:1.575000px;}
.wsad{word-spacing:1.836000px;}
.ws54{word-spacing:51.114000px;}
.ws5f{word-spacing:53.676000px;}
.ws59{word-spacing:60.774000px;}
.ws5b{word-spacing:71.652000px;}
.ws62{word-spacing:80.934000px;}
.ws5c{word-spacing:81.228000px;}
.ws64{word-spacing:81.774000px;}
.ws5e{word-spacing:93.450000px;}
.ws61{word-spacing:93.996000px;}
.ws56{word-spacing:101.934000px;}
.ws57{word-spacing:107.268000px;}
.ws60{word-spacing:113.610000px;}
.ws5a{word-spacing:133.308000px;}
.ws5d{word-spacing:137.244600px;}
.ws63{word-spacing:175.452000px;}
._9{margin-left:-11.298000px;}
._3{margin-left:-9.859800px;}
._d{margin-left:-7.926600px;}
._8{margin-left:-6.347700px;}
._4{margin-left:-5.311200px;}
._1{margin-left:-4.258800px;}
._5{margin-left:-3.105600px;}
._0{margin-left:-1.776000px;}
._6{width:1.008000px;}
._7{width:2.258400px;}
._15{width:3.741600px;}
._b{width:4.864200px;}
._e{width:6.182700px;}
._18{width:7.491000px;}
._1a{width:8.616000px;}
._1b{width:9.771600px;}
._19{width:12.960000px;}
._c{width:15.282000px;}
._1c{width:17.730000px;}
._f{width:36.690000px;}
._2{width:43.870200px;}
._a{width:46.830600px;}
._17{width:47.880000px;}
._16{width:49.855200px;}
._12{width:95.559600px;}
._13{width:97.575600px;}
._14{width:118.580100px;}
._11{width:185.404800px;}
._10{width:250.420800px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177600px;}
.y1{bottom:27.197850px;}
.y2f{bottom:68.313900px;}
.y5f{bottom:68.554500px;}
.y124{bottom:68.565000px;}
.y175{bottom:71.343300px;}
.y82{bottom:71.794800px;}
.y8e{bottom:80.785800px;}
.y123{bottom:81.311250px;}
.y2e{bottom:83.307900px;}
.y5e{bottom:83.553000px;}
.y174{bottom:84.089550px;}
.y81{bottom:86.794800px;}
.y122{bottom:94.057500px;}
.y8d{bottom:95.784300px;}
.y173{bottom:96.835800px;}
.y5d{bottom:98.551500px;}
.y80{bottom:101.794800px;}
.y2d{bottom:102.636900px;}
.y121{bottom:106.803750px;}
.y172{bottom:109.582050px;}
.y8c{bottom:110.782800px;}
.ye8{bottom:113.551500px;}
.y5c{bottom:113.554500px;}
.y7f{bottom:116.794800px;}
.y2c{bottom:117.636900px;}
.y120{bottom:119.550000px;}
.y171{bottom:122.328300px;}
.y8b{bottom:125.781300px;}
.y5b{bottom:128.553000px;}
.y7e{bottom:131.794800px;}
.y11f{bottom:132.300000px;}
.y170{bottom:135.074550px;}
.y8a{bottom:140.779800px;}
.y5a{bottom:143.551500px;}
.y7d{bottom:146.799300px;}
.y16f{bottom:147.820800px;}
.y2b{bottom:153.688800px;}
.y89{bottom:155.778300px;}
.y59{bottom:158.550000px;}
.ye7{bottom:158.557500px;}
.y16e{bottom:160.567050px;}
.y11e{bottom:161.132550px;}
.y7c{bottom:161.797800px;}
.y2a{bottom:168.687300px;}
.y16d{bottom:173.313300px;}
.ye6{bottom:173.556000px;}
.y11d{bottom:176.137050px;}
.y7b{bottom:176.796300px;}
.y29{bottom:183.685800px;}
.y16c{bottom:186.059550px;}
.y58{bottom:187.554150px;}
.ye5{bottom:188.554500px;}
.y11c{bottom:191.135550px;}
.y7a{bottom:191.794800px;}
.y28{bottom:198.688800px;}
.y16b{bottom:198.805800px;}
.y57{bottom:202.552650px;}
.ye4{bottom:203.553000px;}
.yaa{bottom:204.909300px;}
.y11b{bottom:206.134050px;}
.y79{bottom:206.800800px;}
.y16a{bottom:211.552050px;}
.y27{bottom:213.687300px;}
.y56{bottom:217.551150px;}
.ye3{bottom:218.551500px;}
.ya9{bottom:219.907800px;}
.y11a{bottom:221.132550px;}
.y78{bottom:221.799300px;}
.y169{bottom:224.298300px;}
.y26{bottom:228.685800px;}
.y55{bottom:232.549650px;}
.ye2{bottom:233.550000px;}
.ya8{bottom:234.906300px;}
.y119{bottom:236.143050px;}
.y77{bottom:236.797800px;}
.y168{bottom:237.044550px;}
.y25{bottom:243.685800px;}
.y54{bottom:247.548150px;}
.ye1{bottom:248.550000px;}
.y167{bottom:249.790800px;}
.ya7{bottom:249.904800px;}
.y118{bottom:251.141550px;}
.y76{bottom:251.796300px;}
.y24{bottom:258.685800px;}
.y166{bottom:262.537050px;}
.y53{bottom:262.548150px;}
.ya6{bottom:264.903300px;}
.y117{bottom:266.140050px;}
.y75{bottom:266.794800px;}
.y23{bottom:273.691800px;}
.y165{bottom:275.283300px;}
.y52{bottom:277.561650px;}
.ye0{bottom:278.710650px;}
.y116{bottom:281.138550px;}
.y74{bottom:281.794800px;}
.y164{bottom:288.029550px;}
.y22{bottom:288.690300px;}
.y51{bottom:292.560150px;}
.ydf{bottom:293.709150px;}
.ya5{bottom:295.087800px;}
.y115{bottom:296.137050px;}
.y73{bottom:296.797800px;}
.y163{bottom:300.775800px;}
.y21{bottom:303.688800px;}
.y50{bottom:307.558650px;}
.yde{bottom:308.707650px;}
.y114{bottom:311.135550px;}
.y72{bottom:311.796300px;}
.ya4{bottom:312.525300px;}
.y162{bottom:313.522050px;}
.y20{bottom:318.687300px;}
.y4f{bottom:322.557150px;}
.ydd{bottom:323.706150px;}
.y113{bottom:326.134050px;}
.y161{bottom:326.268300px;}
.y71{bottom:326.794800px;}
.ya3{bottom:329.962800px;}
.y1f{bottom:333.685800px;}
.y4e{bottom:337.555650px;}
.ydc{bottom:338.704650px;}
.y160{bottom:339.014550px;}
.y112{bottom:341.132550px;}
.y70{bottom:341.805300px;}
.ya2{bottom:347.400300px;}
.y1e{bottom:348.687300px;}
.y15f{bottom:351.760800px;}
.y4d{bottom:352.554150px;}
.ydb{bottom:353.703150px;}
.y111{bottom:356.137050px;}
.y6f{bottom:356.803800px;}
.y1d{bottom:363.685800px;}
.y15e{bottom:364.507050px;}
.ya1{bottom:364.837800px;}
.y4c{bottom:367.552650px;}
.yda{bottom:368.701650px;}
.y110{bottom:371.135550px;}
.y6e{bottom:371.802300px;}
.y15d{bottom:377.253300px;}
.y1c{bottom:378.687300px;}
.ya0{bottom:382.275300px;}
.y4b{bottom:382.551150px;}
.yd9{bottom:383.700150px;}
.y10f{bottom:386.134050px;}
.y6d{bottom:386.800800px;}
.y15c{bottom:389.999550px;}
.y1b{bottom:393.685800px;}
.y4a{bottom:397.549650px;}
.yd8{bottom:398.698650px;}
.y9f{bottom:399.712800px;}
.y10e{bottom:401.132550px;}
.y6c{bottom:401.799300px;}
.y15b{bottom:402.745800px;}
.y1a{bottom:408.685800px;}
.y49{bottom:412.548150px;}
.yd7{bottom:413.697150px;}
.y15a{bottom:415.492050px;}
.y10d{bottom:416.135550px;}
.y6b{bottom:416.797800px;}
.y9e{bottom:417.150300px;}
.y19{bottom:423.724800px;}
.y48{bottom:427.546650px;}
.y159{bottom:428.238300px;}
.yd6{bottom:428.695650px;}
.y10c{bottom:431.134050px;}
.y6a{bottom:431.796300px;}
.y9d{bottom:434.587800px;}
.y18{bottom:438.723300px;}
.y158{bottom:440.984550px;}
.y47{bottom:442.546650px;}
.yd5{bottom:443.694150px;}
.y10b{bottom:446.132550px;}
.y69{bottom:446.794800px;}
.y9c{bottom:452.025300px;}
.y157{bottom:453.730800px;}
.yd4{bottom:458.692650px;}
.y10a{bottom:461.131050px;}
.y68{bottom:461.799300px;}
.y156{bottom:466.477050px;}
.y9b{bottom:469.462800px;}
.y46{bottom:471.553800px;}
.y192{bottom:472.306800px;}
.yd3{bottom:473.691150px;}
.y67{bottom:476.797800px;}
.y155{bottom:479.223300px;}
.y17{bottom:485.973300px;}
.y45{bottom:486.552300px;}
.y9a{bottom:486.900300px;}
.y191{bottom:487.305300px;}
.yd2{bottom:488.689650px;}
.y109{bottom:489.981600px;}
.y66{bottom:491.796300px;}
.y154{bottom:491.969550px;}
.y44{bottom:501.550800px;}
.y190{bottom:502.303800px;}
.y16{bottom:502.470300px;}
.yd1{bottom:503.688150px;}
.y99{bottom:504.337800px;}
.y153{bottom:504.715800px;}
.y108{bottom:504.980100px;}
.y65{bottom:506.794800px;}
.y43{bottom:516.549300px;}
.y18f{bottom:517.302300px;}
.y152{bottom:517.462050px;}
.yd0{bottom:518.686650px;}
.y15{bottom:518.967300px;}
.y107{bottom:519.978600px;}
.y98{bottom:521.775300px;}
.y64{bottom:521.793300px;}
.y151{bottom:530.208300px;}
.y42{bottom:531.547800px;}
.y18e{bottom:532.300800px;}
.ycf{bottom:533.685150px;}
.y106{bottom:534.977100px;}
.y14{bottom:535.464300px;}
.y97{bottom:539.215800px;}
.y150{bottom:542.954550px;}
.y41{bottom:546.546300px;}
.y18d{bottom:547.299300px;}
.yce{bottom:548.683650px;}
.y105{bottom:549.975600px;}
.y13{bottom:551.961300px;}
.y14f{bottom:555.700800px;}
.y96{bottom:556.653300px;}
.y40{bottom:561.544800px;}
.y18c{bottom:562.297800px;}
.ycd{bottom:563.682150px;}
.y104{bottom:564.974100px;}
.y14e{bottom:568.447050px;}
.y12{bottom:568.458300px;}
.y3f{bottom:576.550800px;}
.y88{bottom:577.086450px;}
.y18b{bottom:577.296300px;}
.ycc{bottom:578.680650px;}
.y103{bottom:579.972600px;}
.y14d{bottom:581.193300px;}
.y11{bottom:584.955300px;}
.y3e{bottom:591.549300px;}
.y87{bottom:592.084950px;}
.y18a{bottom:592.294800px;}
.ycb{bottom:593.679150px;}
.y14c{bottom:593.939550px;}
.y102{bottom:594.971100px;}
.y10{bottom:601.452300px;}
.y3d{bottom:606.547800px;}
.y14b{bottom:606.685800px;}
.y86{bottom:607.083450px;}
.y189{bottom:607.293300px;}
.yca{bottom:608.677650px;}
.y101{bottom:609.969600px;}
.y95{bottom:610.507950px;}
.yf{bottom:617.949300px;}
.y14a{bottom:619.432050px;}
.y3c{bottom:621.546300px;}
.y85{bottom:622.081950px;}
.yc9{bottom:623.676150px;}
.y100{bottom:624.968100px;}
.y94{bottom:625.506450px;}
.y188{bottom:629.047800px;}
.y149{bottom:632.178300px;}
.ye{bottom:634.446300px;}
.y3b{bottom:636.544800px;}
.y84{bottom:637.080450px;}
.yc8{bottom:638.674650px;}
.yff{bottom:639.966600px;}
.y93{bottom:640.504950px;}
.y187{bottom:644.046300px;}
.y148{bottom:644.924550px;}
.yd{bottom:650.943300px;}
.y3a{bottom:651.549300px;}
.y83{bottom:652.078950px;}
.yc7{bottom:653.673150px;}
.yfe{bottom:654.965100px;}
.y92{bottom:655.503450px;}
.y147{bottom:657.670800px;}
.y186{bottom:665.794800px;}
.y39{bottom:666.547800px;}
.yc{bottom:667.440300px;}
.yc6{bottom:668.682150px;}
.yfd{bottom:669.963600px;}
.y146{bottom:670.417050px;}
.y91{bottom:670.501950px;}
.y38{bottom:681.546300px;}
.y145{bottom:683.163300px;}
.yc5{bottom:683.680650px;}
.yb{bottom:683.937300px;}
.yfc{bottom:684.963600px;}
.y90{bottom:685.500450px;}
.y185{bottom:687.543300px;}
.y144{bottom:695.909550px;}
.y37{bottom:696.544800px;}
.yc4{bottom:698.679150px;}
.yfb{bottom:699.968100px;}
.ya{bottom:700.434300px;}
.y8f{bottom:700.498950px;}
.y184{bottom:702.543300px;}
.y143{bottom:708.655800px;}
.y36{bottom:711.544800px;}
.yc3{bottom:713.677650px;}
.yfa{bottom:714.966600px;}
.y142{bottom:721.402050px;}
.y35{bottom:726.543300px;}
.yc2{bottom:728.676150px;}
.y183{bottom:729.546300px;}
.yf9{bottom:729.965100px;}
.y9{bottom:730.434300px;}
.y141{bottom:734.148300px;}
.yc1{bottom:743.674650px;}
.y182{bottom:744.544800px;}
.yf8{bottom:744.963600px;}
.y140{bottom:746.894550px;}
.y8{bottom:748.434300px;}
.y32{bottom:757.145400px;}
.yc0{bottom:758.673150px;}
.y181{bottom:759.543300px;}
.y13f{bottom:759.640800px;}
.yf7{bottom:759.965250px;}
.y13e{bottom:772.387050px;}
.ybf{bottom:773.673150px;}
.y180{bottom:774.543300px;}
.yf6{bottom:774.963750px;}
.y31{bottom:778.144650px;}
.y7{bottom:781.416300px;}
.y13d{bottom:785.133300px;}
.ybe{bottom:788.671650px;}
.y63{bottom:789.783450px;}
.yf5{bottom:789.966750px;}
.y13c{bottom:797.879550px;}
.y30{bottom:799.143900px;}
.y17f{bottom:801.555300px;}
.y62{bottom:804.781950px;}
.yf4{bottom:804.965250px;}
.y13b{bottom:810.625800px;}
.y17e{bottom:816.553800px;}
.ybd{bottom:818.796300px;}
.y61{bottom:819.780450px;}
.yf3{bottom:819.963750px;}
.y13a{bottom:823.372050px;}
.y6{bottom:826.422300px;}
.y17d{bottom:831.552300px;}
.ybc{bottom:833.794800px;}
.y60{bottom:834.778950px;}
.yf2{bottom:834.962250px;}
.y139{bottom:836.118300px;}
.y17c{bottom:846.550800px;}
.ybb{bottom:848.794800px;}
.y138{bottom:848.864550px;}
.y17b{bottom:861.549300px;}
.y137{bottom:861.610800px;}
.yba{bottom:863.796300px;}
.yf1{bottom:863.802300px;}
.y5{bottom:871.428300px;}
.y136{bottom:874.357050px;}
.y17a{bottom:876.547800px;}
.yb9{bottom:878.794800px;}
.yf0{bottom:878.800800px;}
.y135{bottom:887.103300px;}
.y179{bottom:891.546300px;}
.yb8{bottom:893.799300px;}
.y134{bottom:899.849550px;}
.y178{bottom:906.544800px;}
.yb7{bottom:908.797800px;}
.y133{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y177{bottom:921.543300px;}
.yb6{bottom:923.796300px;}
.y132{bottom:925.342050px;}
.y33{bottom:926.409600px;}
.y176{bottom:936.543300px;}
.y131{bottom:938.088300px;}
.yb5{bottom:938.794800px;}
.y130{bottom:950.834550px;}
.yef{bottom:953.794800px;}
.yb4{bottom:953.799300px;}
.y12f{bottom:963.580800px;}
.yee{bottom:968.796300px;}
.yb3{bottom:968.797800px;}
.y12e{bottom:976.327050px;}
.yed{bottom:983.794800px;}
.yb2{bottom:983.796300px;}
.y12d{bottom:989.073300px;}
.yb1{bottom:998.794800px;}
.yec{bottom:998.799300px;}
.y12c{bottom:1001.819550px;}
.yb0{bottom:1013.794800px;}
.yeb{bottom:1013.797800px;}
.y12b{bottom:1014.565800px;}
.y12a{bottom:1027.312050px;}
.yaf{bottom:1028.794800px;}
.yea{bottom:1028.796300px;}
.y129{bottom:1040.058300px;}
.yae{bottom:1043.794800px;}
.y128{bottom:1052.804550px;}
.yad{bottom:1058.794800px;}
.ye9{bottom:1058.796300px;}
.y127{bottom:1065.550800px;}
.yac{bottom:1073.794800px;}
.y126{bottom:1078.297050px;}
.yab{bottom:1088.793300px;}
.y125{bottom:1091.043300px;}
.y34{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hc{height:23.842749px;}
.hb{height:31.194668px;}
.he{height:35.411133px;}
.h8{height:38.838867px;}
.h15{height:41.538000px;}
.h16{height:41.550000px;}
.h14{height:43.008000px;}
.h4{height:44.233154px;}
.h17{height:44.505000px;}
.h19{height:45.090000px;}
.h3{height:45.744000px;}
.h18{height:46.080000px;}
.h1a{height:47.469727px;}
.hd{height:48.534668px;}
.h7{height:51.416016px;}
.h9{height:51.840000px;}
.ha{height:53.406000px;}
.h12{height:54.102000px;}
.h10{height:54.108000px;}
.h13{height:55.296000px;}
.h2{height:57.099609px;}
.h6{height:57.128906px;}
.h11{height:62.841797px;}
.hf{height:102.832031px;}
.h5{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:14.077350px;}
.x2{left:61.191450px;}
.x7{left:140.952750px;}
.x4{left:233.456400px;}
.x9{left:238.143900px;}
.x5{left:251.454300px;}
.xa{left:300.594600px;}
.x3{left:584.586600px;}
.x8{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v2{vertical-align:-18.133333pt;}
.v4{vertical-align:-16.320000pt;}
.v5{vertical-align:-15.413333pt;}
.v6{vertical-align:-9.642667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.693333pt;}
.v3{vertical-align:16.176000pt;}
.v1{vertical-align:18.133333pt;}
.ls73{letter-spacing:-1.200000pt;}
.ls50{letter-spacing:-1.194667pt;}
.ls70{letter-spacing:-1.160000pt;}
.ls74{letter-spacing:-1.080000pt;}
.ls71{letter-spacing:-1.040000pt;}
.ls5d{letter-spacing:-0.960000pt;}
.ls7e{letter-spacing:-0.920000pt;}
.ls30{letter-spacing:-0.912000pt;}
.ls10{letter-spacing:-0.853333pt;}
.ls18{letter-spacing:-0.720000pt;}
.ls40{letter-spacing:-0.624000pt;}
.ls4f{letter-spacing:-0.560000pt;}
.ls79{letter-spacing:-0.520000pt;}
.ls4e{letter-spacing:-0.485333pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls7b{letter-spacing:-0.440000pt;}
.ls3f{letter-spacing:-0.432000pt;}
.ls43{letter-spacing:-0.384000pt;}
.ls76{letter-spacing:-0.360000pt;}
.ls44{letter-spacing:-0.336000pt;}
.ls7a{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.288000pt;}
.ls67{letter-spacing:-0.280000pt;}
.ls5e{letter-spacing:-0.266667pt;}
.ls5f{letter-spacing:-0.240000pt;}
.ls2c{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.187200pt;}
.ls77{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.144000pt;}
.ls75{letter-spacing:-0.120000pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.093600pt;}
.ls1d{letter-spacing:-0.090667pt;}
.ls78{letter-spacing:-0.080000pt;}
.ls14{letter-spacing:-0.062400pt;}
.ls12{letter-spacing:-0.048000pt;}
.ls72{letter-spacing:-0.040000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.006933pt;}
.ls4{letter-spacing:0.009067pt;}
.ls2{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.012267pt;}
.ls68{letter-spacing:0.040000pt;}
.ls21{letter-spacing:0.048000pt;}
.ls31{letter-spacing:0.057067pt;}
.ls60{letter-spacing:0.058667pt;}
.ls41{letter-spacing:0.062400pt;}
.ls63{letter-spacing:0.072533pt;}
.ls6b{letter-spacing:0.080000pt;}
.ls42{letter-spacing:0.093600pt;}
.ls28{letter-spacing:0.096000pt;}
.ls6a{letter-spacing:0.120000pt;}
.ls6{letter-spacing:0.124800pt;}
.ls6e{letter-spacing:0.140000pt;}
.ls32{letter-spacing:0.144000pt;}
.ls65{letter-spacing:0.148800pt;}
.ls2f{letter-spacing:0.156000pt;}
.ls5c{letter-spacing:0.160000pt;}
.ls35{letter-spacing:0.183467pt;}
.ls34{letter-spacing:0.187200pt;}
.ls7{letter-spacing:0.192000pt;}
.ls6f{letter-spacing:0.200000pt;}
.ls19{letter-spacing:0.218400pt;}
.ls4d{letter-spacing:0.224000pt;}
.ls27{letter-spacing:0.233600pt;}
.ls16{letter-spacing:0.240000pt;}
.ls33{letter-spacing:0.242133pt;}
.lsa{letter-spacing:0.249600pt;}
.ls3d{letter-spacing:0.251467pt;}
.ls45{letter-spacing:0.274667pt;}
.ls6c{letter-spacing:0.280000pt;}
.ls2b{letter-spacing:0.280800pt;}
.ls17{letter-spacing:0.288000pt;}
.ls1f{letter-spacing:0.312000pt;}
.ls61{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.336000pt;}
.ls2d{letter-spacing:0.343200pt;}
.ls7c{letter-spacing:0.360000pt;}
.ls66{letter-spacing:0.364800pt;}
.ls8{letter-spacing:0.365333pt;}
.ls3a{letter-spacing:0.374400pt;}
.ls46{letter-spacing:0.379200pt;}
.ls62{letter-spacing:0.379733pt;}
.lsb{letter-spacing:0.384000pt;}
.ls3e{letter-spacing:0.389867pt;}
.ls39{letter-spacing:0.391733pt;}
.ls6d{letter-spacing:0.400000pt;}
.ls38{letter-spacing:0.405600pt;}
.ls59{letter-spacing:0.407200pt;}
.ls64{letter-spacing:0.427200pt;}
.ls1b{letter-spacing:0.432000pt;}
.ls54{letter-spacing:0.439467pt;}
.ls53{letter-spacing:0.440000pt;}
.ls58{letter-spacing:0.468000pt;}
.ls5{letter-spacing:0.480000pt;}
.ls52{letter-spacing:0.499200pt;}
.ls26{letter-spacing:0.504000pt;}
.ls20{letter-spacing:0.528000pt;}
.ls5b{letter-spacing:0.530400pt;}
.ls55{letter-spacing:0.534400pt;}
.ls57{letter-spacing:0.534933pt;}
.ls3c{letter-spacing:0.538133pt;}
.ls25{letter-spacing:0.561600pt;}
.ls24{letter-spacing:0.566400pt;}
.ls11{letter-spacing:0.576000pt;}
.lsc{letter-spacing:0.579067pt;}
.ls22{letter-spacing:0.624000pt;}
.ls37{letter-spacing:0.672000pt;}
.ls2e{letter-spacing:0.720000pt;}
.ls7d{letter-spacing:0.744000pt;}
.ls51{letter-spacing:0.768000pt;}
.ls23{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.816000pt;}
.ls69{letter-spacing:0.856000pt;}
.ls3b{letter-spacing:0.864000pt;}
.lsd{letter-spacing:0.906667pt;}
.ls56{letter-spacing:0.960000pt;}
.ls7f{letter-spacing:1.104000pt;}
.ls5a{letter-spacing:1.153600pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1e{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls48{letter-spacing:56.933333pt;}
.ls4c{letter-spacing:58.725333pt;}
.ls47{letter-spacing:64.549333pt;}
.ls4b{letter-spacing:66.341333pt;}
.ls49{letter-spacing:91.392000pt;}
.ls4a{letter-spacing:109.312000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws24{word-spacing:-13.066667pt;}
.ws7e{word-spacing:-12.085333pt;}
.ws2c{word-spacing:-12.000000pt;}
.ws53{word-spacing:-11.472000pt;}
.ws7c{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws46{word-spacing:-11.040000pt;}
.ws47{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws29{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws2b{word-spacing:-10.800000pt;}
.ws7d{word-spacing:-10.704000pt;}
.ws5{word-spacing:-10.176000pt;}
.ws8e{word-spacing:-9.320000pt;}
.wsaa{word-spacing:-9.160000pt;}
.wsa{word-spacing:-9.066667pt;}
.ws88{word-spacing:-8.920000pt;}
.ws7f{word-spacing:-8.880000pt;}
.ws8d{word-spacing:-8.760000pt;}
.ws9d{word-spacing:-8.720000pt;}
.wsa0{word-spacing:-8.600000pt;}
.ws9a{word-spacing:-8.520000pt;}
.wsab{word-spacing:-8.240000pt;}
.ws8a{word-spacing:-8.120000pt;}
.ws55{word-spacing:-8.101333pt;}
.ws8c{word-spacing:-8.080000pt;}
.ws89{word-spacing:-8.000000pt;}
.ws8b{word-spacing:-7.960000pt;}
.ws2d{word-spacing:-7.800000pt;}
.ws6b{word-spacing:-7.612800pt;}
.ws6a{word-spacing:-7.488000pt;}
.ws28{word-spacing:-7.425600pt;}
.ws6c{word-spacing:-7.394400pt;}
.ws26{word-spacing:-7.363200pt;}
.ws4a{word-spacing:-7.332000pt;}
.ws7{word-spacing:-7.300800pt;}
.ws6d{word-spacing:-7.269600pt;}
.ws2a{word-spacing:-7.238400pt;}
.ws6{word-spacing:-7.207200pt;}
.ws49{word-spacing:-7.176000pt;}
.ws48{word-spacing:-7.144800pt;}
.ws4{word-spacing:-7.082400pt;}
.ws27{word-spacing:-7.020000pt;}
.ws8{word-spacing:-6.988800pt;}
.ws25{word-spacing:-6.895200pt;}
.ws9{word-spacing:-5.893333pt;}
.ws58{word-spacing:-5.508533pt;}
.ws44{word-spacing:-4.896000pt;}
.ws80{word-spacing:-4.800000pt;}
.ws84{word-spacing:-4.752000pt;}
.ws66{word-spacing:-3.808000pt;}
.wsae{word-spacing:-3.520000pt;}
.wsf{word-spacing:-3.413333pt;}
.ws65{word-spacing:-2.949333pt;}
.wsd{word-spacing:-2.912000pt;}
.ws10{word-spacing:-2.133333pt;}
.ws2e{word-spacing:-1.776000pt;}
.ws7b{word-spacing:-1.728000pt;}
.ws7a{word-spacing:-1.706667pt;}
.ws32{word-spacing:-1.680000pt;}
.ws14{word-spacing:-1.632000pt;}
.ws82{word-spacing:-1.584000pt;}
.ws3e{word-spacing:-1.536000pt;}
.ws4e{word-spacing:-1.440000pt;}
.ws97{word-spacing:-1.400000pt;}
.ws93{word-spacing:-1.360000pt;}
.ws83{word-spacing:-1.344000pt;}
.ws96{word-spacing:-1.320000pt;}
.ws4b{word-spacing:-1.296000pt;}
.wsa8{word-spacing:-1.280000pt;}
.ws17{word-spacing:-1.248000pt;}
.ws3a{word-spacing:-1.232000pt;}
.ws4d{word-spacing:-1.200000pt;}
.ws75{word-spacing:-1.152000pt;}
.ws23{word-spacing:-1.133333pt;}
.wse{word-spacing:-1.120000pt;}
.ws13{word-spacing:-1.104000pt;}
.ws9e{word-spacing:-1.080000pt;}
.ws3b{word-spacing:-1.056000pt;}
.ws11{word-spacing:-1.008000pt;}
.wsa9{word-spacing:-1.000000pt;}
.wsac{word-spacing:-0.960000pt;}
.ws86{word-spacing:-0.920000pt;}
.ws39{word-spacing:-0.864000pt;}
.ws68{word-spacing:-0.858667pt;}
.wsa6{word-spacing:-0.840000pt;}
.ws99{word-spacing:-0.800000pt;}
.ws52{word-spacing:-0.768000pt;}
.wsa4{word-spacing:-0.760000pt;}
.ws40{word-spacing:-0.720000pt;}
.wsa2{word-spacing:-0.680000pt;}
.wsaf{word-spacing:-0.672000pt;}
.ws94{word-spacing:-0.640000pt;}
.ws3f{word-spacing:-0.624000pt;}
.ws74{word-spacing:-0.586667pt;}
.ws38{word-spacing:-0.576000pt;}
.ws69{word-spacing:-0.558133pt;}
.ws18{word-spacing:-0.528000pt;}
.ws1a{word-spacing:-0.480000pt;}
.ws87{word-spacing:-0.440000pt;}
.ws1b{word-spacing:-0.432000pt;}
.ws70{word-spacing:-0.405600pt;}
.ws36{word-spacing:-0.384000pt;}
.ws98{word-spacing:-0.360000pt;}
.ws72{word-spacing:-0.336000pt;}
.ws73{word-spacing:-0.312000pt;}
.ws3c{word-spacing:-0.288000pt;}
.ws31{word-spacing:-0.280800pt;}
.ws9f{word-spacing:-0.280000pt;}
.ws81{word-spacing:-0.266667pt;}
.ws51{word-spacing:-0.240000pt;}
.ws1c{word-spacing:-0.218400pt;}
.ws95{word-spacing:-0.200000pt;}
.ws15{word-spacing:-0.192000pt;}
.ws91{word-spacing:-0.160000pt;}
.ws3d{word-spacing:-0.156000pt;}
.ws33{word-spacing:-0.144000pt;}
.ws92{word-spacing:-0.120000pt;}
.ws1f{word-spacing:-0.096000pt;}
.wsa7{word-spacing:-0.080000pt;}
.ws1d{word-spacing:-0.048000pt;}
.ws8f{word-spacing:-0.040000pt;}
.wsb{word-spacing:0.000000pt;}
.ws30{word-spacing:0.048000pt;}
.ws16{word-spacing:0.062400pt;}
.wsa3{word-spacing:0.080000pt;}
.ws21{word-spacing:0.090667pt;}
.ws1e{word-spacing:0.093600pt;}
.ws45{word-spacing:0.096000pt;}
.wsa5{word-spacing:0.120000pt;}
.ws35{word-spacing:0.144000pt;}
.wsa1{word-spacing:0.160000pt;}
.ws2f{word-spacing:0.187200pt;}
.ws19{word-spacing:0.192000pt;}
.ws76{word-spacing:0.240000pt;}
.ws90{word-spacing:0.280000pt;}
.ws12{word-spacing:0.288000pt;}
.ws85{word-spacing:0.320000pt;}
.ws67{word-spacing:0.336000pt;}
.ws41{word-spacing:0.384000pt;}
.ws43{word-spacing:0.432000pt;}
.ws50{word-spacing:0.480000pt;}
.ws34{word-spacing:0.528000pt;}
.ws4c{word-spacing:0.624000pt;}
.ws77{word-spacing:0.672000pt;}
.ws37{word-spacing:0.720000pt;}
.ws6f{word-spacing:0.768000pt;}
.wsc{word-spacing:0.853333pt;}
.ws4f{word-spacing:0.912000pt;}
.ws9b{word-spacing:0.920000pt;}
.ws42{word-spacing:0.960000pt;}
.wsb0{word-spacing:1.056000pt;}
.ws79{word-spacing:1.104000pt;}
.ws22{word-spacing:1.133333pt;}
.ws6e{word-spacing:1.248000pt;}
.ws78{word-spacing:1.296000pt;}
.ws71{word-spacing:1.344000pt;}
.ws20{word-spacing:1.360000pt;}
.ws9c{word-spacing:1.400000pt;}
.wsad{word-spacing:1.632000pt;}
.ws54{word-spacing:45.434667pt;}
.ws5f{word-spacing:47.712000pt;}
.ws59{word-spacing:54.021333pt;}
.ws5b{word-spacing:63.690667pt;}
.ws62{word-spacing:71.941333pt;}
.ws5c{word-spacing:72.202667pt;}
.ws64{word-spacing:72.688000pt;}
.ws5e{word-spacing:83.066667pt;}
.ws61{word-spacing:83.552000pt;}
.ws56{word-spacing:90.608000pt;}
.ws57{word-spacing:95.349333pt;}
.ws60{word-spacing:100.986667pt;}
.ws5a{word-spacing:118.496000pt;}
.ws5d{word-spacing:121.995200pt;}
.ws63{word-spacing:155.957333pt;}
._9{margin-left:-10.042667pt;}
._3{margin-left:-8.764267pt;}
._d{margin-left:-7.045867pt;}
._8{margin-left:-5.642400pt;}
._4{margin-left:-4.721067pt;}
._1{margin-left:-3.785600pt;}
._5{margin-left:-2.760533pt;}
._0{margin-left:-1.578667pt;}
._6{width:0.896000pt;}
._7{width:2.007467pt;}
._15{width:3.325867pt;}
._b{width:4.323733pt;}
._e{width:5.495733pt;}
._18{width:6.658667pt;}
._1a{width:7.658667pt;}
._1b{width:8.685867pt;}
._19{width:11.520000pt;}
._c{width:13.584000pt;}
._1c{width:15.760000pt;}
._f{width:32.613333pt;}
._2{width:38.995733pt;}
._a{width:41.627200pt;}
._17{width:42.560000pt;}
._16{width:44.315733pt;}
._12{width:84.941867pt;}
._13{width:86.733867pt;}
._14{width:105.404533pt;}
._11{width:164.804267pt;}
._10{width:222.596267pt;}
.fsc{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175867pt;}
.y2f{bottom:60.723467pt;}
.y5f{bottom:60.937333pt;}
.y124{bottom:60.946667pt;}
.y175{bottom:63.416267pt;}
.y82{bottom:63.817600pt;}
.y8e{bottom:71.809600pt;}
.y123{bottom:72.276667pt;}
.y2e{bottom:74.051467pt;}
.y5e{bottom:74.269333pt;}
.y174{bottom:74.746267pt;}
.y81{bottom:77.150933pt;}
.y122{bottom:83.606667pt;}
.y8d{bottom:85.141600pt;}
.y173{bottom:86.076267pt;}
.y5d{bottom:87.601333pt;}
.y80{bottom:90.484267pt;}
.y2d{bottom:91.232800pt;}
.y121{bottom:94.936667pt;}
.y172{bottom:97.406267pt;}
.y8c{bottom:98.473600pt;}
.ye8{bottom:100.934667pt;}
.y5c{bottom:100.937333pt;}
.y7f{bottom:103.817600pt;}
.y2c{bottom:104.566133pt;}
.y120{bottom:106.266667pt;}
.y171{bottom:108.736267pt;}
.y8b{bottom:111.805600pt;}
.y5b{bottom:114.269333pt;}
.y7e{bottom:117.150933pt;}
.y11f{bottom:117.600000pt;}
.y170{bottom:120.066267pt;}
.y8a{bottom:125.137600pt;}
.y5a{bottom:127.601333pt;}
.y7d{bottom:130.488267pt;}
.y16f{bottom:131.396267pt;}
.y2b{bottom:136.612267pt;}
.y89{bottom:138.469600pt;}
.y59{bottom:140.933333pt;}
.ye7{bottom:140.940000pt;}
.y16e{bottom:142.726267pt;}
.y11e{bottom:143.228933pt;}
.y7c{bottom:143.820267pt;}
.y2a{bottom:149.944267pt;}
.y16d{bottom:154.056267pt;}
.ye6{bottom:154.272000pt;}
.y11d{bottom:156.566267pt;}
.y7b{bottom:157.152267pt;}
.y29{bottom:163.276267pt;}
.y16c{bottom:165.386267pt;}
.y58{bottom:166.714800pt;}
.ye5{bottom:167.604000pt;}
.y11c{bottom:169.898267pt;}
.y7a{bottom:170.484267pt;}
.y28{bottom:176.612267pt;}
.y16b{bottom:176.716267pt;}
.y57{bottom:180.046800pt;}
.ye4{bottom:180.936000pt;}
.yaa{bottom:182.141600pt;}
.y11b{bottom:183.230267pt;}
.y79{bottom:183.822933pt;}
.y16a{bottom:188.046267pt;}
.y27{bottom:189.944267pt;}
.y56{bottom:193.378800pt;}
.ye3{bottom:194.268000pt;}
.ya9{bottom:195.473600pt;}
.y11a{bottom:196.562267pt;}
.y78{bottom:197.154933pt;}
.y169{bottom:199.376267pt;}
.y26{bottom:203.276267pt;}
.y55{bottom:206.710800pt;}
.ye2{bottom:207.600000pt;}
.ya8{bottom:208.805600pt;}
.y119{bottom:209.904933pt;}
.y77{bottom:210.486933pt;}
.y168{bottom:210.706267pt;}
.y25{bottom:216.609600pt;}
.y54{bottom:220.042800pt;}
.ye1{bottom:220.933333pt;}
.y167{bottom:222.036267pt;}
.ya7{bottom:222.137600pt;}
.y118{bottom:223.236933pt;}
.y76{bottom:223.818933pt;}
.y24{bottom:229.942933pt;}
.y166{bottom:233.366267pt;}
.y53{bottom:233.376133pt;}
.ya6{bottom:235.469600pt;}
.y117{bottom:236.568933pt;}
.y75{bottom:237.150933pt;}
.y23{bottom:243.281600pt;}
.y165{bottom:244.696267pt;}
.y52{bottom:246.721467pt;}
.ye0{bottom:247.742800pt;}
.y116{bottom:249.900933pt;}
.y74{bottom:250.484267pt;}
.y164{bottom:256.026267pt;}
.y22{bottom:256.613600pt;}
.y51{bottom:260.053467pt;}
.ydf{bottom:261.074800pt;}
.ya5{bottom:262.300267pt;}
.y115{bottom:263.232933pt;}
.y73{bottom:263.820267pt;}
.y163{bottom:267.356267pt;}
.y21{bottom:269.945600pt;}
.y50{bottom:273.385467pt;}
.yde{bottom:274.406800pt;}
.y114{bottom:276.564933pt;}
.y72{bottom:277.152267pt;}
.ya4{bottom:277.800267pt;}
.y162{bottom:278.686267pt;}
.y20{bottom:283.277600pt;}
.y4f{bottom:286.717467pt;}
.ydd{bottom:287.738800pt;}
.y113{bottom:289.896933pt;}
.y161{bottom:290.016267pt;}
.y71{bottom:290.484267pt;}
.ya3{bottom:293.300267pt;}
.y1f{bottom:296.609600pt;}
.y4e{bottom:300.049467pt;}
.ydc{bottom:301.070800pt;}
.y160{bottom:301.346267pt;}
.y112{bottom:303.228933pt;}
.y70{bottom:303.826933pt;}
.ya2{bottom:308.800267pt;}
.y1e{bottom:309.944267pt;}
.y15f{bottom:312.676267pt;}
.y4d{bottom:313.381467pt;}
.ydb{bottom:314.402800pt;}
.y111{bottom:316.566267pt;}
.y6f{bottom:317.158933pt;}
.y1d{bottom:323.276267pt;}
.y15e{bottom:324.006267pt;}
.ya1{bottom:324.300267pt;}
.y4c{bottom:326.713467pt;}
.yda{bottom:327.734800pt;}
.y110{bottom:329.898267pt;}
.y6e{bottom:330.490933pt;}
.y15d{bottom:335.336267pt;}
.y1c{bottom:336.610933pt;}
.ya0{bottom:339.800267pt;}
.y4b{bottom:340.045467pt;}
.yd9{bottom:341.066800pt;}
.y10f{bottom:343.230267pt;}
.y6d{bottom:343.822933pt;}
.y15c{bottom:346.666267pt;}
.y1b{bottom:349.942933pt;}
.y4a{bottom:353.377467pt;}
.yd8{bottom:354.398800pt;}
.y9f{bottom:355.300267pt;}
.y10e{bottom:356.562267pt;}
.y6c{bottom:357.154933pt;}
.y15b{bottom:357.996267pt;}
.y1a{bottom:363.276267pt;}
.y49{bottom:366.709467pt;}
.yd7{bottom:367.730800pt;}
.y15a{bottom:369.326267pt;}
.y10d{bottom:369.898267pt;}
.y6b{bottom:370.486933pt;}
.y9e{bottom:370.800267pt;}
.y19{bottom:376.644267pt;}
.y48{bottom:380.041467pt;}
.y159{bottom:380.656267pt;}
.yd6{bottom:381.062800pt;}
.y10c{bottom:383.230267pt;}
.y6a{bottom:383.818933pt;}
.y9d{bottom:386.300267pt;}
.y18{bottom:389.976267pt;}
.y158{bottom:391.986267pt;}
.y47{bottom:393.374800pt;}
.yd5{bottom:394.394800pt;}
.y10b{bottom:396.562267pt;}
.y69{bottom:397.150933pt;}
.y9c{bottom:401.800267pt;}
.y157{bottom:403.316267pt;}
.yd4{bottom:407.726800pt;}
.y10a{bottom:409.894267pt;}
.y68{bottom:410.488267pt;}
.y156{bottom:414.646267pt;}
.y9b{bottom:417.300267pt;}
.y46{bottom:419.158933pt;}
.y192{bottom:419.828267pt;}
.yd3{bottom:421.058800pt;}
.y67{bottom:423.820267pt;}
.y155{bottom:425.976267pt;}
.y17{bottom:431.976267pt;}
.y45{bottom:432.490933pt;}
.y9a{bottom:432.800267pt;}
.y191{bottom:433.160267pt;}
.yd2{bottom:434.390800pt;}
.y109{bottom:435.539200pt;}
.y66{bottom:437.152267pt;}
.y154{bottom:437.306267pt;}
.y44{bottom:445.822933pt;}
.y190{bottom:446.492267pt;}
.y16{bottom:446.640267pt;}
.yd1{bottom:447.722800pt;}
.y99{bottom:448.300267pt;}
.y153{bottom:448.636267pt;}
.y108{bottom:448.871200pt;}
.y65{bottom:450.484267pt;}
.y43{bottom:459.154933pt;}
.y18f{bottom:459.824267pt;}
.y152{bottom:459.966267pt;}
.yd0{bottom:461.054800pt;}
.y15{bottom:461.304267pt;}
.y107{bottom:462.203200pt;}
.y98{bottom:463.800267pt;}
.y64{bottom:463.816267pt;}
.y151{bottom:471.296267pt;}
.y42{bottom:472.486933pt;}
.y18e{bottom:473.156267pt;}
.ycf{bottom:474.386800pt;}
.y106{bottom:475.535200pt;}
.y14{bottom:475.968267pt;}
.y97{bottom:479.302933pt;}
.y150{bottom:482.626267pt;}
.y41{bottom:485.818933pt;}
.y18d{bottom:486.488267pt;}
.yce{bottom:487.718800pt;}
.y105{bottom:488.867200pt;}
.y13{bottom:490.632267pt;}
.y14f{bottom:493.956267pt;}
.y96{bottom:494.802933pt;}
.y40{bottom:499.150933pt;}
.y18c{bottom:499.820267pt;}
.ycd{bottom:501.050800pt;}
.y104{bottom:502.199200pt;}
.y14e{bottom:505.286267pt;}
.y12{bottom:505.296267pt;}
.y3f{bottom:512.489600pt;}
.y88{bottom:512.965733pt;}
.y18b{bottom:513.152267pt;}
.ycc{bottom:514.382800pt;}
.y103{bottom:515.531200pt;}
.y14d{bottom:516.616267pt;}
.y11{bottom:519.960267pt;}
.y3e{bottom:525.821600pt;}
.y87{bottom:526.297733pt;}
.y18a{bottom:526.484267pt;}
.ycb{bottom:527.714800pt;}
.y14c{bottom:527.946267pt;}
.y102{bottom:528.863200pt;}
.y10{bottom:534.624267pt;}
.y3d{bottom:539.153600pt;}
.y14b{bottom:539.276267pt;}
.y86{bottom:539.629733pt;}
.y189{bottom:539.816267pt;}
.yca{bottom:541.046800pt;}
.y101{bottom:542.195200pt;}
.y95{bottom:542.673733pt;}
.yf{bottom:549.288267pt;}
.y14a{bottom:550.606267pt;}
.y3c{bottom:552.485600pt;}
.y85{bottom:552.961733pt;}
.yc9{bottom:554.378800pt;}
.y100{bottom:555.527200pt;}
.y94{bottom:556.005733pt;}
.y188{bottom:559.153600pt;}
.y149{bottom:561.936267pt;}
.ye{bottom:563.952267pt;}
.y3b{bottom:565.817600pt;}
.y84{bottom:566.293733pt;}
.yc8{bottom:567.710800pt;}
.yff{bottom:568.859200pt;}
.y93{bottom:569.337733pt;}
.y187{bottom:572.485600pt;}
.y148{bottom:573.266267pt;}
.yd{bottom:578.616267pt;}
.y3a{bottom:579.154933pt;}
.y83{bottom:579.625733pt;}
.yc7{bottom:581.042800pt;}
.yfe{bottom:582.191200pt;}
.y92{bottom:582.669733pt;}
.y147{bottom:584.596267pt;}
.y186{bottom:591.817600pt;}
.y39{bottom:592.486933pt;}
.yc{bottom:593.280267pt;}
.yc6{bottom:594.384133pt;}
.yfd{bottom:595.523200pt;}
.y146{bottom:595.926267pt;}
.y91{bottom:596.001733pt;}
.y38{bottom:605.818933pt;}
.y145{bottom:607.256267pt;}
.yc5{bottom:607.716133pt;}
.yb{bottom:607.944267pt;}
.yfc{bottom:608.856533pt;}
.y90{bottom:609.333733pt;}
.y185{bottom:611.149600pt;}
.y144{bottom:618.586267pt;}
.y37{bottom:619.150933pt;}
.yc4{bottom:621.048133pt;}
.yfb{bottom:622.193867pt;}
.ya{bottom:622.608267pt;}
.y8f{bottom:622.665733pt;}
.y184{bottom:624.482933pt;}
.y143{bottom:629.916267pt;}
.y36{bottom:632.484267pt;}
.yc3{bottom:634.380133pt;}
.yfa{bottom:635.525867pt;}
.y142{bottom:641.246267pt;}
.y35{bottom:645.816267pt;}
.yc2{bottom:647.712133pt;}
.y183{bottom:648.485600pt;}
.yf9{bottom:648.857867pt;}
.y9{bottom:649.274933pt;}
.y141{bottom:652.576267pt;}
.yc1{bottom:661.044133pt;}
.y182{bottom:661.817600pt;}
.yf8{bottom:662.189867pt;}
.y140{bottom:663.906267pt;}
.y8{bottom:665.274933pt;}
.y32{bottom:673.018133pt;}
.yc0{bottom:674.376133pt;}
.y181{bottom:675.149600pt;}
.y13f{bottom:675.236267pt;}
.yf7{bottom:675.524667pt;}
.y13e{bottom:686.566267pt;}
.ybf{bottom:687.709467pt;}
.y180{bottom:688.482933pt;}
.yf6{bottom:688.856667pt;}
.y31{bottom:691.684133pt;}
.y7{bottom:694.592267pt;}
.y13d{bottom:697.896267pt;}
.ybe{bottom:701.041467pt;}
.y63{bottom:702.029733pt;}
.yf5{bottom:702.192667pt;}
.y13c{bottom:709.226267pt;}
.y30{bottom:710.350133pt;}
.y17f{bottom:712.493600pt;}
.y62{bottom:715.361733pt;}
.yf4{bottom:715.524667pt;}
.y13b{bottom:720.556267pt;}
.y17e{bottom:725.825600pt;}
.ybd{bottom:727.818933pt;}
.y61{bottom:728.693733pt;}
.yf3{bottom:728.856667pt;}
.y13a{bottom:731.886267pt;}
.y6{bottom:734.597600pt;}
.y17d{bottom:739.157600pt;}
.ybc{bottom:741.150933pt;}
.y60{bottom:742.025733pt;}
.yf2{bottom:742.188667pt;}
.y139{bottom:743.216267pt;}
.y17c{bottom:752.489600pt;}
.ybb{bottom:754.484267pt;}
.y138{bottom:754.546267pt;}
.y17b{bottom:765.821600pt;}
.y137{bottom:765.876267pt;}
.yba{bottom:767.818933pt;}
.yf1{bottom:767.824267pt;}
.y5{bottom:774.602933pt;}
.y136{bottom:777.206267pt;}
.y17a{bottom:779.153600pt;}
.yb9{bottom:781.150933pt;}
.yf0{bottom:781.156267pt;}
.y135{bottom:788.536267pt;}
.y179{bottom:792.485600pt;}
.yb8{bottom:794.488267pt;}
.y134{bottom:799.866267pt;}
.y178{bottom:805.817600pt;}
.yb7{bottom:807.820267pt;}
.y133{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y177{bottom:819.149600pt;}
.yb6{bottom:821.152267pt;}
.y132{bottom:822.526267pt;}
.y33{bottom:823.475200pt;}
.y176{bottom:832.482933pt;}
.y131{bottom:833.856267pt;}
.yb5{bottom:834.484267pt;}
.y130{bottom:845.186267pt;}
.yef{bottom:847.817600pt;}
.yb4{bottom:847.821600pt;}
.y12f{bottom:856.516267pt;}
.yee{bottom:861.152267pt;}
.yb3{bottom:861.153600pt;}
.y12e{bottom:867.846267pt;}
.yed{bottom:874.484267pt;}
.yb2{bottom:874.485600pt;}
.y12d{bottom:879.176267pt;}
.yb1{bottom:887.817600pt;}
.yec{bottom:887.821600pt;}
.y12c{bottom:890.506267pt;}
.yb0{bottom:901.150933pt;}
.yeb{bottom:901.153600pt;}
.y12b{bottom:901.836267pt;}
.y12a{bottom:913.166267pt;}
.yaf{bottom:914.484267pt;}
.yea{bottom:914.485600pt;}
.y129{bottom:924.496267pt;}
.yae{bottom:927.817600pt;}
.y128{bottom:935.826267pt;}
.yad{bottom:941.150933pt;}
.ye9{bottom:941.152267pt;}
.y127{bottom:947.156267pt;}
.yac{bottom:954.484267pt;}
.y126{bottom:958.486267pt;}
.yab{bottom:967.816267pt;}
.y125{bottom:969.816267pt;}
.y34{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hc{height:21.193555pt;}
.hb{height:27.728594pt;}
.he{height:31.476562pt;}
.h8{height:34.523438pt;}
.h15{height:36.922667pt;}
.h16{height:36.933333pt;}
.h14{height:38.229333pt;}
.h4{height:39.318359pt;}
.h17{height:39.560000pt;}
.h19{height:40.080000pt;}
.h3{height:40.661333pt;}
.h18{height:40.960000pt;}
.h1a{height:42.195312pt;}
.hd{height:43.141927pt;}
.h7{height:45.703125pt;}
.h9{height:46.080000pt;}
.ha{height:47.472000pt;}
.h12{height:48.090667pt;}
.h10{height:48.096000pt;}
.h13{height:49.152000pt;}
.h2{height:50.755208pt;}
.h6{height:50.781250pt;}
.h11{height:55.859375pt;}
.hf{height:91.406250pt;}
.h5{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:12.513200pt;}
.x2{left:54.392400pt;}
.x7{left:125.291333pt;}
.x4{left:207.516800pt;}
.x9{left:211.683467pt;}
.x5{left:223.514933pt;}
.xa{left:267.195200pt;}
.x3{left:519.632533pt;}
.x8{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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