
    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_6832df8116075196397ca7f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752441;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_69ca1f3ba751752383f72988.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949000;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_3584c93a3a7c1c42d52acfa8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003418;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_4b948e8885de375663daa213.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2466f2166aac12730cc49e7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008301;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_2422f868d0298e4f843ccfa5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.724609;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_9e10fca04a780c5010f3af73.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a0d192146af224a76f04cb37.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932000;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_5e57b3b57bbd44603a4c5262.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.949000;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_69ca1f3ba751752383f72988.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.949000;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_90b945f71e3d60022ec655e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003418;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_a3e08f4850aef61f85302fdd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.008301;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_2422f868d0298e4f843ccfa5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.724609;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_6051092b4a114267d88c1e63.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7e795ffdb313780ad1c75509.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_69ca1f3ba751752383f72988.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.949000;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_6051092b4a114267d88c1e63.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a5763b493384c880952a92b4.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-25.278000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.980000px;}
.v1{vertical-align:29.874600px;}
.ls74{letter-spacing:-0.702000px;}
.ls3d{letter-spacing:-0.660000px;}
.ls60{letter-spacing:-0.540000px;}
.ls72{letter-spacing:-0.432000px;}
.ls80{letter-spacing:-0.270000px;}
.ls5b{letter-spacing:-0.216000px;}
.ls59{letter-spacing:-0.180000px;}
.ls7f{letter-spacing:-0.162000px;}
.ls70{letter-spacing:-0.120000px;}
.ls58{letter-spacing:-0.060000px;}
.ls5a{letter-spacing:-0.048000px;}
.ls20{letter-spacing:0.000000px;}
.ls62{letter-spacing:0.054000px;}
.ls49{letter-spacing:0.060000px;}
.ls4c{letter-spacing:0.108000px;}
.ls4b{letter-spacing:0.114000px;}
.ls4{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.132000px;}
.ls73{letter-spacing:0.162000px;}
.ls3a{letter-spacing:0.180000px;}
.ls76{letter-spacing:0.216000px;}
.ls4a{letter-spacing:0.240000px;}
.ls6e{letter-spacing:0.270000px;}
.ls4d{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.300000px;}
.ls3b{letter-spacing:0.360000px;}
.ls5d{letter-spacing:0.378000px;}
.ls6{letter-spacing:0.420000px;}
.ls5e{letter-spacing:0.480000px;}
.ls7c{letter-spacing:0.486000px;}
.ls1c{letter-spacing:0.532452px;}
.ls19{letter-spacing:0.533052px;}
.ls38{letter-spacing:0.540000px;}
.ls24{letter-spacing:0.570000px;}
.ls6d{letter-spacing:0.594000px;}
.ls12{letter-spacing:0.600000px;}
.ls4e{letter-spacing:0.648000px;}
.ls39{letter-spacing:0.660000px;}
.ls4f{letter-spacing:0.666000px;}
.ls64{letter-spacing:0.702000px;}
.ls30{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.740400px;}
.ls68{letter-spacing:0.756000px;}
.ls1a{letter-spacing:0.779400px;}
.ls1b{letter-spacing:0.780000px;}
.ls21{letter-spacing:0.792000px;}
.ls65{letter-spacing:0.810000px;}
.ls0{letter-spacing:0.814200px;}
.ls17{letter-spacing:0.840000px;}
.ls61{letter-spacing:0.864000px;}
.ls43{letter-spacing:0.900000px;}
.ls69{letter-spacing:0.918000px;}
.ls31{letter-spacing:0.960000px;}
.ls7a{letter-spacing:0.972000px;}
.ls1d{letter-spacing:0.980844px;}
.ls3e{letter-spacing:1.020000px;}
.ls6b{letter-spacing:1.026000px;}
.ls45{letter-spacing:1.080000px;}
.ls63{letter-spacing:1.134000px;}
.lsb{letter-spacing:1.140000px;}
.ls5f{letter-spacing:1.147440px;}
.ls5c{letter-spacing:1.188000px;}
.ls13{letter-spacing:1.200000px;}
.ls6c{letter-spacing:1.242000px;}
.ls2d{letter-spacing:1.260000px;}
.ls79{letter-spacing:1.296000px;}
.ls1f{letter-spacing:1.320000px;}
.ls44{letter-spacing:1.323000px;}
.ls5{letter-spacing:1.380000px;}
.ls66{letter-spacing:1.404000px;}
.ls22{letter-spacing:1.440000px;}
.ls1e{letter-spacing:1.452000px;}
.ls78{letter-spacing:1.458000px;}
.ls32{letter-spacing:1.500000px;}
.ls7e{letter-spacing:1.512000px;}
.ls11{letter-spacing:1.560000px;}
.ls77{letter-spacing:1.566000px;}
.lsa{letter-spacing:1.611600px;}
.ls9{letter-spacing:1.620000px;}
.ls2f{letter-spacing:1.680000px;}
.ls18{letter-spacing:1.728000px;}
.ls2e{letter-spacing:1.740000px;}
.ls7b{letter-spacing:1.782000px;}
.ls25{letter-spacing:1.800000px;}
.ls7d{letter-spacing:1.836000px;}
.ls46{letter-spacing:1.860000px;}
.ls2a{letter-spacing:1.920000px;}
.ls75{letter-spacing:1.944000px;}
.ls41{letter-spacing:1.953000px;}
.ls10{letter-spacing:1.980000px;}
.ls23{letter-spacing:2.040000px;}
.ls6f{letter-spacing:2.089980px;}
.ls34{letter-spacing:2.100000px;}
.ls67{letter-spacing:2.106000px;}
.ls3f{letter-spacing:2.160000px;}
.lsd{letter-spacing:2.220000px;}
.ls36{letter-spacing:2.280000px;}
.ls7{letter-spacing:2.340000px;}
.ls81{letter-spacing:2.376000px;}
.ls2c{letter-spacing:2.400000px;}
.ls37{letter-spacing:2.460000px;}
.ls6a{letter-spacing:2.484000px;}
.lsf{letter-spacing:2.520000px;}
.ls16{letter-spacing:2.580000px;}
.ls71{letter-spacing:2.583000px;}
.ls40{letter-spacing:2.640000px;}
.ls42{letter-spacing:2.700000px;}
.ls3c{letter-spacing:2.760000px;}
.ls8{letter-spacing:2.820000px;}
.ls14{letter-spacing:2.880000px;}
.ls48{letter-spacing:2.940000px;}
.ls29{letter-spacing:3.000000px;}
.lse{letter-spacing:3.060000px;}
.ls15{letter-spacing:3.120000px;}
.ls2b{letter-spacing:3.180000px;}
.ls26{letter-spacing:3.240000px;}
.ls27{letter-spacing:3.300000px;}
.lsc{letter-spacing:3.360000px;}
.ls28{letter-spacing:3.420000px;}
.ls33{letter-spacing:3.480000px;}
.ls35{letter-spacing:3.540000px;}
.ls55{letter-spacing:196.039800px;}
.ls53{letter-spacing:226.264800px;}
.ls50{letter-spacing:235.198800px;}
.ls56{letter-spacing:275.623200px;}
.ls57{letter-spacing:343.878000px;}
.ls51{letter-spacing:391.869000px;}
.ls54{letter-spacing:402.129000px;}
.ls52{letter-spacing:415.408800px;}
.ls2{letter-spacing:948.152400px;}
.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;}
}
.ws6d{word-spacing:-247.888800px;}
.ws0{word-spacing:-60.120000px;}
.ws20{word-spacing:-60.000000px;}
.ws51{word-spacing:-16.920000px;}
.ws8f{word-spacing:-16.884000px;}
.ws82{word-spacing:-16.680000px;}
.ws62{word-spacing:-16.440000px;}
.ws3b{word-spacing:-16.320000px;}
.ws3a{word-spacing:-16.254000px;}
.ws81{word-spacing:-16.140000px;}
.ws21{word-spacing:-15.780000px;}
.ws8e{word-spacing:-15.624000px;}
.ws22{word-spacing:-15.540000px;}
.ws3c{word-spacing:-15.480000px;}
.ws2{word-spacing:-15.420000px;}
.ws61{word-spacing:-15.060000px;}
.ws60{word-spacing:-14.940000px;}
.ws50{word-spacing:-14.820000px;}
.ws52{word-spacing:-14.700000px;}
.ws83{word-spacing:-14.580000px;}
.ws53{word-spacing:-14.400000px;}
.ws5f{word-spacing:-14.340000px;}
.ws70{word-spacing:-13.878000px;}
.ws90{word-spacing:-13.608000px;}
.ws5{word-spacing:-13.509000px;}
.ws6c{word-spacing:-13.338000px;}
.ws72{word-spacing:-13.068000px;}
.ws4{word-spacing:-12.939000px;}
.ws73{word-spacing:-12.798000px;}
.ws6e{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.258000px;}
.ws8d{word-spacing:-11.720280px;}
.ws63{word-spacing:-11.280000px;}
.ws80{word-spacing:-10.777740px;}
.wsab{word-spacing:-4.374000px;}
.ws78{word-spacing:-3.900000px;}
.ws8b{word-spacing:-3.840000px;}
.ws37{word-spacing:-3.780000px;}
.ws77{word-spacing:-3.660000px;}
.ws79{word-spacing:-3.600000px;}
.wse{word-spacing:-3.540000px;}
.ws8{word-spacing:-3.480000px;}
.ws7e{word-spacing:-3.363000px;}
.ws42{word-spacing:-3.360000px;}
.ws2f{word-spacing:-3.240000px;}
.ws97{word-spacing:-3.186000px;}
.ws9f{word-spacing:-3.132000px;}
.ws10{word-spacing:-3.120000px;}
.ws17{word-spacing:-3.078000px;}
.ws5a{word-spacing:-3.060000px;}
.ws4d{word-spacing:-3.000000px;}
.ws3f{word-spacing:-2.940000px;}
.ws31{word-spacing:-2.880000px;}
.wsa2{word-spacing:-2.862000px;}
.ws8a{word-spacing:-2.820000px;}
.ws4b{word-spacing:-2.760000px;}
.ws16{word-spacing:-2.736000px;}
.ws34{word-spacing:-2.700000px;}
.ws5c{word-spacing:-2.640000px;}
.ws2e{word-spacing:-2.580000px;}
.ws30{word-spacing:-2.520000px;}
.wsac{word-spacing:-2.484000px;}
.ws89{word-spacing:-2.460000px;}
.ws39{word-spacing:-2.400000px;}
.ws45{word-spacing:-2.340000px;}
.ws59{word-spacing:-2.280000px;}
.ws38{word-spacing:-2.220000px;}
.ws27{word-spacing:-2.160000px;}
.ws56{word-spacing:-2.100000px;}
.ws35{word-spacing:-2.040000px;}
.wsa8{word-spacing:-1.998000px;}
.ws9{word-spacing:-1.920000px;}
.ws48{word-spacing:-1.860000px;}
.ws24{word-spacing:-1.800000px;}
.wsb3{word-spacing:-1.782000px;}
.wsa{word-spacing:-1.740000px;}
.ws88{word-spacing:-1.680000px;}
.ws14{word-spacing:-1.620000px;}
.ws47{word-spacing:-1.560000px;}
.wsb6{word-spacing:-1.512000px;}
.ws44{word-spacing:-1.440000px;}
.ws9e{word-spacing:-1.404000px;}
.ws55{word-spacing:-1.380000px;}
.ws46{word-spacing:-1.320000px;}
.ws2c{word-spacing:-1.200000px;}
.wsa0{word-spacing:-1.188000px;}
.ws86{word-spacing:-1.080000px;}
.ws91{word-spacing:-1.020000px;}
.ws99{word-spacing:-0.918000px;}
.ws7{word-spacing:-0.900000px;}
.wsb7{word-spacing:-0.810000px;}
.ws5e{word-spacing:-0.780000px;}
.ws57{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.660000px;}
.wsaa{word-spacing:-0.648000px;}
.wsf{word-spacing:-0.600000px;}
.wsa5{word-spacing:-0.594000px;}
.ws85{word-spacing:-0.480000px;}
.ws92{word-spacing:-0.420000px;}
.ws4a{word-spacing:-0.360000px;}
.ws93{word-spacing:-0.300000px;}
.ws98{word-spacing:-0.270000px;}
.ws95{word-spacing:-0.240000px;}
.ws1{word-spacing:-0.180000px;}
.wsa3{word-spacing:-0.162000px;}
.ws33{word-spacing:-0.120000px;}
.ws7a{word-spacing:-0.114000px;}
.wsae{word-spacing:-0.108000px;}
.ws2a{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws7c{word-spacing:0.048000px;}
.wsb0{word-spacing:0.054000px;}
.ws1e{word-spacing:0.057000px;}
.ws3e{word-spacing:0.060000px;}
.ws87{word-spacing:0.120000px;}
.ws8c{word-spacing:0.180000px;}
.ws36{word-spacing:0.240000px;}
.ws12{word-spacing:0.360000px;}
.ws2d{word-spacing:0.420000px;}
.wsb8{word-spacing:0.432000px;}
.ws5d{word-spacing:0.480000px;}
.ws28{word-spacing:0.600000px;}
.ws7f{word-spacing:0.648000px;}
.ws43{word-spacing:0.660000px;}
.ws54{word-spacing:0.720000px;}
.ws4f{word-spacing:0.840000px;}
.wsa1{word-spacing:0.864000px;}
.ws58{word-spacing:0.900000px;}
.ws9c{word-spacing:0.918000px;}
.ws29{word-spacing:0.960000px;}
.ws23{word-spacing:1.020000px;}
.ws25{word-spacing:1.140000px;}
.ws9b{word-spacing:1.242000px;}
.ws13{word-spacing:1.260000px;}
.ws40{word-spacing:1.320000px;}
.ws1f{word-spacing:1.368000px;}
.wsad{word-spacing:1.404000px;}
.ws4e{word-spacing:1.440000px;}
.ws4c{word-spacing:1.449000px;}
.ws94{word-spacing:1.500000px;}
.ws26{word-spacing:1.560000px;}
.wsaf{word-spacing:1.566000px;}
.ws5b{word-spacing:1.740000px;}
.ws32{word-spacing:1.800000px;}
.ws11{word-spacing:1.860000px;}
.ws9d{word-spacing:1.890000px;}
.ws84{word-spacing:1.980000px;}
.ws9a{word-spacing:1.998000px;}
.ws41{word-spacing:2.040000px;}
.wsc{word-spacing:2.100000px;}
.ws1a{word-spacing:2.109000px;}
.wsb{word-spacing:2.160000px;}
.ws18{word-spacing:2.166000px;}
.wsa4{word-spacing:2.214000px;}
.ws49{word-spacing:2.220000px;}
.ws2b{word-spacing:2.280000px;}
.wsb1{word-spacing:2.376000px;}
.wsb5{word-spacing:2.430000px;}
.ws15{word-spacing:2.484000px;}
.ws96{word-spacing:2.538000px;}
.wsa9{word-spacing:2.592000px;}
.wsb4{word-spacing:2.916000px;}
.wsa6{word-spacing:2.970000px;}
.wsb2{word-spacing:3.402000px;}
.wsa7{word-spacing:3.726000px;}
.ws19{word-spacing:3.819000px;}
.ws1c{word-spacing:3.876000px;}
.ws1d{word-spacing:4.731000px;}
.ws1b{word-spacing:6.270000px;}
.ws7d{word-spacing:6.441000px;}
.ws7b{word-spacing:6.669000px;}
.ws3d{word-spacing:13.986000px;}
.ws64{word-spacing:107.952000px;}
.ws74{word-spacing:124.966200px;}
.ws65{word-spacing:138.565200px;}
.ws71{word-spacing:158.302800px;}
.ws6a{word-spacing:159.760200px;}
.ws68{word-spacing:162.703200px;}
.ws69{word-spacing:164.351400px;}
.ws6b{word-spacing:166.816200px;}
.ws66{word-spacing:171.974400px;}
.ws67{word-spacing:173.278800px;}
.ws6f{word-spacing:186.077400px;}
.ws76{word-spacing:222.508200px;}
.ws75{word-spacing:222.508800px;}
._c{margin-left:-235.200000px;}
._b{margin-left:-70.801800px;}
._7{margin-left:-6.588000px;}
._5{margin-left:-5.169600px;}
._3{margin-left:-3.540000px;}
._2{margin-left:-2.460000px;}
._1{margin-left:-1.050000px;}
._0{width:1.548000px;}
._4{width:2.712000px;}
._8{width:4.387200px;}
._a{width:107.136000px;}
._10{width:138.612000px;}
._e{width:171.898800px;}
._9{width:183.552000px;}
._d{width:198.602400px;}
._f{width:200.165400px;}
._6{width:945.670200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:40.980000px;}
.fs9{font-size:42.822000px;}
.fs5{font-size:45.078000px;}
.fsa{font-size:48.000000px;}
.fs4{font-size:53.274000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:108.000000px;}
.yd9{bottom:-12.716100px;}
.yed{bottom:-11.229450px;}
.y0{bottom:0.000000px;}
.y3d{bottom:95.920650px;}
.y1{bottom:97.408200px;}
.y106{bottom:127.947450px;}
.y27{bottom:128.268750px;}
.y15{bottom:128.380800px;}
.y9b{bottom:128.605200px;}
.yab{bottom:129.089400px;}
.y137{bottom:131.416200px;}
.y15e{bottom:131.534250px;}
.yc3{bottom:132.006750px;}
.y72{bottom:132.243000px;}
.y196{bottom:133.345500px;}
.y26{bottom:147.768750px;}
.y14{bottom:147.880800px;}
.y9a{bottom:148.105200px;}
.yaa{bottom:148.589400px;}
.y136{bottom:150.916200px;}
.y15d{bottom:151.034250px;}
.yc2{bottom:151.506750px;}
.y71{bottom:151.743000px;}
.y195{bottom:152.845500px;}
.y105{bottom:155.922450px;}
.y25{bottom:167.268750px;}
.y13{bottom:167.380800px;}
.y99{bottom:167.605200px;}
.ya9{bottom:168.089400px;}
.y135{bottom:170.416200px;}
.y15c{bottom:170.534250px;}
.yc1{bottom:171.006750px;}
.y70{bottom:171.243000px;}
.y194{bottom:172.345500px;}
.y24{bottom:186.768750px;}
.y12{bottom:186.880800px;}
.y98{bottom:187.105200px;}
.ya8{bottom:187.589400px;}
.y104{bottom:188.966250px;}
.y134{bottom:189.916200px;}
.y15b{bottom:190.034250px;}
.yc0{bottom:190.506750px;}
.y6f{bottom:190.743000px;}
.y193{bottom:191.845500px;}
.y23{bottom:206.268750px;}
.y11{bottom:206.380800px;}
.y97{bottom:206.605200px;}
.ya7{bottom:207.089400px;}
.y133{bottom:209.416200px;}
.y15a{bottom:209.534250px;}
.y103{bottom:209.851050px;}
.ybf{bottom:210.006750px;}
.y6e{bottom:210.243000px;}
.y192{bottom:211.345500px;}
.y22{bottom:225.768750px;}
.y10{bottom:225.880800px;}
.y96{bottom:226.105200px;}
.ya6{bottom:226.589400px;}
.y132{bottom:228.916200px;}
.y159{bottom:229.034250px;}
.ybe{bottom:229.506750px;}
.y6d{bottom:229.743000px;}
.y191{bottom:230.845500px;}
.y102{bottom:231.110850px;}
.y21{bottom:245.268750px;}
.yf{bottom:245.380800px;}
.y95{bottom:245.605200px;}
.ya5{bottom:246.089400px;}
.y131{bottom:248.416200px;}
.y158{bottom:248.534250px;}
.ybd{bottom:249.006750px;}
.y6c{bottom:249.243000px;}
.y190{bottom:250.345500px;}
.y101{bottom:252.370800px;}
.y20{bottom:264.768750px;}
.ye{bottom:264.880800px;}
.y94{bottom:265.105200px;}
.ya4{bottom:265.589400px;}
.y130{bottom:267.916200px;}
.y157{bottom:268.034250px;}
.ybc{bottom:268.506750px;}
.y6b{bottom:268.743000px;}
.y18f{bottom:269.845500px;}
.y100{bottom:273.630600px;}
.y163{bottom:283.388700px;}
.y1f{bottom:284.268750px;}
.yd{bottom:284.380800px;}
.y93{bottom:284.605200px;}
.ya3{bottom:285.089400px;}
.y12f{bottom:287.416200px;}
.y156{bottom:287.534250px;}
.ybb{bottom:288.006750px;}
.y6a{bottom:288.243000px;}
.y18e{bottom:289.345500px;}
.yff{bottom:294.890400px;}
.y1e{bottom:303.768750px;}
.yc{bottom:303.880800px;}
.y92{bottom:304.105200px;}
.ya2{bottom:304.589400px;}
.y12e{bottom:306.916200px;}
.y155{bottom:307.034250px;}
.yba{bottom:307.506750px;}
.y69{bottom:307.743000px;}
.y18d{bottom:308.845500px;}
.yfe{bottom:316.150350px;}
.y1d{bottom:323.268750px;}
.yb{bottom:323.380800px;}
.y91{bottom:323.605200px;}
.ya1{bottom:324.089400px;}
.y12d{bottom:326.416200px;}
.y154{bottom:326.534250px;}
.y162{bottom:327.124950px;}
.y68{bottom:327.243000px;}
.y18c{bottom:328.345500px;}
.yfd{bottom:337.222650px;}
.yb9{bottom:341.888700px;}
.y1c{bottom:342.768750px;}
.ya{bottom:342.880800px;}
.y90{bottom:343.105200px;}
.ya0{bottom:343.589400px;}
.y12c{bottom:345.916200px;}
.y153{bottom:346.034250px;}
.y161{bottom:346.624950px;}
.y67{bottom:346.743000px;}
.y18b{bottom:347.845500px;}
.yfc{bottom:358.482450px;}
.y1b{bottom:362.268750px;}
.y9{bottom:362.380800px;}
.y8f{bottom:362.605200px;}
.y9f{bottom:363.089400px;}
.y12b{bottom:365.416200px;}
.y152{bottom:365.534250px;}
.y160{bottom:366.124950px;}
.y66{bottom:366.243000px;}
.y18a{bottom:367.345500px;}
.y1a{bottom:381.768750px;}
.y8{bottom:381.880800px;}
.y8e{bottom:382.105200px;}
.y9e{bottom:382.589400px;}
.y12a{bottom:384.916200px;}
.y151{bottom:385.034250px;}
.yb8{bottom:385.624950px;}
.y65{bottom:385.743000px;}
.y189{bottom:386.845500px;}
.yfb{bottom:389.485200px;}
.y15f{bottom:400.506750px;}
.y19{bottom:401.268750px;}
.y7{bottom:401.380800px;}
.y8d{bottom:401.605200px;}
.y129{bottom:404.416200px;}
.y150{bottom:404.534250px;}
.yb7{bottom:405.124950px;}
.y64{bottom:405.243000px;}
.y188{bottom:406.345500px;}
.y9d{bottom:420.372900px;}
.y18{bottom:420.768750px;}
.y6{bottom:420.880800px;}
.y8c{bottom:421.105200px;}
.y128{bottom:423.916200px;}
.y14f{bottom:424.034250px;}
.yb6{bottom:424.624950px;}
.y63{bottom:424.743000px;}
.y187{bottom:425.845500px;}
.yd3{bottom:431.357100px;}
.y17{bottom:440.268750px;}
.y5{bottom:440.380800px;}
.y8b{bottom:440.605200px;}
.y127{bottom:443.416200px;}
.y14e{bottom:443.534250px;}
.yb5{bottom:444.124950px;}
.y62{bottom:444.243000px;}
.y186{bottom:445.345500px;}
.yd2{bottom:450.857100px;}
.y9c{bottom:459.006750px;}
.y16{bottom:459.768750px;}
.y4{bottom:459.880800px;}
.y8a{bottom:460.105200px;}
.y126{bottom:462.916200px;}
.y14d{bottom:463.034250px;}
.yb4{bottom:463.624950px;}
.y61{bottom:463.743000px;}
.y185{bottom:464.845500px;}
.yd1{bottom:470.357100px;}
.y89{bottom:479.605200px;}
.y125{bottom:482.416200px;}
.y14c{bottom:482.534250px;}
.yb3{bottom:483.124950px;}
.y60{bottom:483.243000px;}
.y184{bottom:484.345500px;}
.yd0{bottom:489.857100px;}
.y88{bottom:499.105200px;}
.y124{bottom:501.916200px;}
.y14b{bottom:502.034250px;}
.yb2{bottom:502.624950px;}
.y5f{bottom:502.743000px;}
.y183{bottom:503.845500px;}
.ycf{bottom:509.357100px;}
.y87{bottom:518.605200px;}
.y123{bottom:521.416200px;}
.y14a{bottom:521.534250px;}
.yb1{bottom:522.124950px;}
.y5e{bottom:522.243000px;}
.y182{bottom:523.345500px;}
.yce{bottom:528.857100px;}
.y3c{bottom:533.496000px;}
.y86{bottom:538.105200px;}
.y122{bottom:540.916200px;}
.y149{bottom:541.034250px;}
.yb0{bottom:541.624950px;}
.y5d{bottom:541.743000px;}
.y181{bottom:542.845500px;}
.ycd{bottom:548.357100px;}
.y121{bottom:560.416200px;}
.y148{bottom:560.534250px;}
.yaf{bottom:561.124950px;}
.y5c{bottom:561.243000px;}
.y180{bottom:562.345500px;}
.ycc{bottom:567.857100px;}
.y3b{bottom:572.121000px;}
.y85{bottom:575.888700px;}
.y120{bottom:579.916200px;}
.y147{bottom:580.034250px;}
.yae{bottom:580.624950px;}
.y5b{bottom:580.743000px;}
.y17f{bottom:581.845500px;}
.ycb{bottom:587.357100px;}
.y3a{bottom:591.621000px;}
.y11f{bottom:599.416200px;}
.y146{bottom:599.534250px;}
.yad{bottom:600.124950px;}
.y5a{bottom:600.243000px;}
.y17e{bottom:601.345500px;}
.yca{bottom:606.857100px;}
.y39{bottom:611.121000px;}
.y11e{bottom:618.916200px;}
.y145{bottom:619.034250px;}
.y84{bottom:619.624950px;}
.y59{bottom:619.743000px;}
.y17d{bottom:620.845500px;}
.yc9{bottom:626.357100px;}
.y38{bottom:630.621000px;}
.y11d{bottom:638.416200px;}
.y144{bottom:638.534250px;}
.y83{bottom:639.124950px;}
.y58{bottom:639.243000px;}
.y17c{bottom:640.345500px;}
.yc8{bottom:645.857100px;}
.y37{bottom:650.121000px;}
.y11c{bottom:657.916200px;}
.y143{bottom:658.034250px;}
.y82{bottom:658.624950px;}
.y57{bottom:658.743000px;}
.y17b{bottom:659.845500px;}
.yc7{bottom:665.357100px;}
.y36{bottom:669.621000px;}
.y11b{bottom:677.416200px;}
.y142{bottom:677.534250px;}
.y81{bottom:678.124950px;}
.y56{bottom:678.243000px;}
.y17a{bottom:679.345500px;}
.yc6{bottom:684.857100px;}
.y35{bottom:689.121000px;}
.y11a{bottom:696.916200px;}
.y141{bottom:697.034250px;}
.y80{bottom:697.624950px;}
.y55{bottom:697.743000px;}
.y179{bottom:698.845500px;}
.yc5{bottom:704.357100px;}
.y34{bottom:708.621000px;}
.y119{bottom:716.416200px;}
.y140{bottom:716.534250px;}
.y7f{bottom:717.124950px;}
.y54{bottom:717.243000px;}
.y178{bottom:718.345500px;}
.yc4{bottom:723.857100px;}
.y33{bottom:728.121000px;}
.y118{bottom:735.916200px;}
.y13f{bottom:736.034250px;}
.y7e{bottom:736.624950px;}
.y53{bottom:736.743000px;}
.y177{bottom:737.845500px;}
.y32{bottom:747.621000px;}
.y117{bottom:755.416200px;}
.y13e{bottom:755.534250px;}
.y7d{bottom:756.124950px;}
.y52{bottom:756.243000px;}
.y176{bottom:757.345500px;}
.yd7{bottom:764.624850px;}
.yeb{bottom:765.748950px;}
.y116{bottom:774.916200px;}
.y13d{bottom:775.034250px;}
.y7c{bottom:775.624950px;}
.y51{bottom:775.743000px;}
.y175{bottom:776.845500px;}
.y31{bottom:785.119650px;}
.yd6{bottom:788.376750px;}
.yea{bottom:789.501000px;}
.y115{bottom:794.416200px;}
.y13c{bottom:794.534250px;}
.y7b{bottom:795.124950px;}
.y50{bottom:795.243000px;}
.y174{bottom:796.345500px;}
.y30{bottom:804.619650px;}
.yd5{bottom:807.876750px;}
.ye9{bottom:809.001000px;}
.y114{bottom:813.916200px;}
.y13b{bottom:814.034250px;}
.y7a{bottom:814.624950px;}
.y4f{bottom:814.743000px;}
.y173{bottom:815.845500px;}
.yd4{bottom:827.376750px;}
.ye8{bottom:828.501000px;}
.y13a{bottom:833.534250px;}
.y79{bottom:834.124950px;}
.y4e{bottom:834.243000px;}
.y172{bottom:835.345500px;}
.y2f{bottom:842.118300px;}
.yec{bottom:847.995000px;}
.y113{bottom:848.298000px;}
.yd8{bottom:848.692500px;}
.y139{bottom:853.034250px;}
.y78{bottom:853.624950px;}
.y4d{bottom:853.743000px;}
.y171{bottom:854.845500px;}
.yf7{bottom:854.917800px;}
.yfa{bottom:854.939850px;}
.ye7{bottom:855.106950px;}
.yda{bottom:870.316650px;}
.yee{bottom:871.105800px;}
.y2e{bottom:872.189700px;}
.y138{bottom:872.534250px;}
.y77{bottom:873.124950px;}
.y4c{bottom:873.243000px;}
.y170{bottom:874.345500px;}
.y112{bottom:892.034250px;}
.y76{bottom:892.624950px;}
.y4b{bottom:892.743000px;}
.y16f{bottom:893.845500px;}
.y2d{bottom:894.689700px;}
.ydb{bottom:896.404650px;}
.yef{bottom:900.469800px;}
.yac{bottom:907.506750px;}
.y111{bottom:911.534250px;}
.y75{bottom:912.124950px;}
.y4a{bottom:912.243000px;}
.y16e{bottom:913.345500px;}
.y2c{bottom:917.189700px;}
.ydc{bottom:922.492650px;}
.yf0{bottom:929.833800px;}
.y110{bottom:931.034250px;}
.y74{bottom:931.624950px;}
.y49{bottom:931.743000px;}
.y16d{bottom:932.845500px;}
.yf8{bottom:938.790600px;}
.ye4{bottom:939.180300px;}
.ydd{bottom:948.640650px;}
.y10f{bottom:950.534250px;}
.y48{bottom:951.243000px;}
.y2b{bottom:951.368700px;}
.y16c{bottom:952.345500px;}
.yf1{bottom:959.197800px;}
.y73{bottom:966.006750px;}
.y10e{bottom:970.034250px;}
.y47{bottom:970.743000px;}
.y16b{bottom:971.845500px;}
.yde{bottom:974.728650px;}
.y2a{bottom:975.368700px;}
.yf2{bottom:988.561800px;}
.y10d{bottom:989.534250px;}
.y46{bottom:990.243000px;}
.y16a{bottom:991.345500px;}
.ydf{bottom:1000.816650px;}
.y10c{bottom:1009.034250px;}
.y45{bottom:1009.743000px;}
.y169{bottom:1010.845500px;}
.yf3{bottom:1017.925800px;}
.y29{bottom:1026.368700px;}
.ye0{bottom:1026.964650px;}
.y10b{bottom:1028.534250px;}
.y44{bottom:1029.243000px;}
.y168{bottom:1030.345500px;}
.yf4{bottom:1047.289800px;}
.y10a{bottom:1048.034250px;}
.y43{bottom:1048.743000px;}
.y167{bottom:1049.845500px;}
.ye1{bottom:1053.052650px;}
.y28{bottom:1059.368700px;}
.y109{bottom:1067.534250px;}
.y42{bottom:1068.243000px;}
.y166{bottom:1069.345500px;}
.yf5{bottom:1076.713800px;}
.ye6{bottom:1079.110950px;}
.ye2{bottom:1079.140650px;}
.y108{bottom:1087.034250px;}
.y41{bottom:1087.743000px;}
.y165{bottom:1088.845500px;}
.yf9{bottom:1095.935850px;}
.ye5{bottom:1096.661250px;}
.ye3{bottom:1105.288650px;}
.yf6{bottom:1106.077800px;}
.y107{bottom:1106.534250px;}
.y40{bottom:1107.243000px;}
.y164{bottom:1108.345500px;}
.y3{bottom:1140.921300px;}
.y3f{bottom:1141.452900px;}
.y2{bottom:1177.429200px;}
.y3e{bottom:1177.960650px;}
.he{height:28.541030px;}
.h8{height:32.636472px;}
.h10{height:34.032000px;}
.hf{height:34.752000px;}
.h12{height:38.286000px;}
.ha{height:39.096000px;}
.hb{height:41.268000px;}
.h2{height:42.421875px;}
.h9{height:42.540000px;}
.h5{height:43.440000px;}
.h4{height:43.623047px;}
.hc{height:44.100000px;}
.h3{height:47.888672px;}
.h13{height:52.649520px;}
.h7{height:68.444976px;}
.h6{height:75.600000px;}
.hd{height:269.575500px;}
.h11{height:270.273000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:335.991000px;}
.w2{width:340.158000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:53.839050px;}
.x12{left:57.721650px;}
.x2{left:94.960650px;}
.x7{left:98.261100px;}
.x3{left:108.419250px;}
.xf{left:120.500850px;}
.xe{left:126.872850px;}
.x11{left:170.073300px;}
.x1b{left:194.629500px;}
.x8{left:198.147750px;}
.x1a{left:209.828400px;}
.x1c{left:213.033600px;}
.x19{left:278.738550px;}
.x10{left:368.505300px;}
.x4{left:457.084500px;}
.x5{left:469.834500px;}
.x16{left:471.156000px;}
.xb{left:475.340250px;}
.x6{left:481.497000px;}
.x14{left:483.851250px;}
.x13{left:490.223250px;}
.xa{left:498.545550px;}
.x18{left:525.357450px;}
.xc{left:547.421250px;}
.x9{left:591.490350px;}
.x1e{left:649.043850px;}
.x1d{left:667.754400px;}
.x15{left:700.355250px;}
.x17{left:706.233450px;}
.x1{left:782.244150px;}
@media print{
.v2{vertical-align:-22.469333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:20.426667pt;}
.v1{vertical-align:26.555200pt;}
.ls74{letter-spacing:-0.624000pt;}
.ls3d{letter-spacing:-0.586667pt;}
.ls60{letter-spacing:-0.480000pt;}
.ls72{letter-spacing:-0.384000pt;}
.ls80{letter-spacing:-0.240000pt;}
.ls5b{letter-spacing:-0.192000pt;}
.ls59{letter-spacing:-0.160000pt;}
.ls7f{letter-spacing:-0.144000pt;}
.ls70{letter-spacing:-0.106667pt;}
.ls58{letter-spacing:-0.053333pt;}
.ls5a{letter-spacing:-0.042667pt;}
.ls20{letter-spacing:0.000000pt;}
.ls62{letter-spacing:0.048000pt;}
.ls49{letter-spacing:0.053333pt;}
.ls4c{letter-spacing:0.096000pt;}
.ls4b{letter-spacing:0.101333pt;}
.ls4{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.117333pt;}
.ls73{letter-spacing:0.144000pt;}
.ls3a{letter-spacing:0.160000pt;}
.ls76{letter-spacing:0.192000pt;}
.ls4a{letter-spacing:0.213333pt;}
.ls6e{letter-spacing:0.240000pt;}
.ls4d{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.266667pt;}
.ls3b{letter-spacing:0.320000pt;}
.ls5d{letter-spacing:0.336000pt;}
.ls6{letter-spacing:0.373333pt;}
.ls5e{letter-spacing:0.426667pt;}
.ls7c{letter-spacing:0.432000pt;}
.ls1c{letter-spacing:0.473291pt;}
.ls19{letter-spacing:0.473824pt;}
.ls38{letter-spacing:0.480000pt;}
.ls24{letter-spacing:0.506667pt;}
.ls6d{letter-spacing:0.528000pt;}
.ls12{letter-spacing:0.533333pt;}
.ls4e{letter-spacing:0.576000pt;}
.ls39{letter-spacing:0.586667pt;}
.ls4f{letter-spacing:0.592000pt;}
.ls64{letter-spacing:0.624000pt;}
.ls30{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.658133pt;}
.ls68{letter-spacing:0.672000pt;}
.ls1a{letter-spacing:0.692800pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls21{letter-spacing:0.704000pt;}
.ls65{letter-spacing:0.720000pt;}
.ls0{letter-spacing:0.723733pt;}
.ls17{letter-spacing:0.746667pt;}
.ls61{letter-spacing:0.768000pt;}
.ls43{letter-spacing:0.800000pt;}
.ls69{letter-spacing:0.816000pt;}
.ls31{letter-spacing:0.853333pt;}
.ls7a{letter-spacing:0.864000pt;}
.ls1d{letter-spacing:0.871861pt;}
.ls3e{letter-spacing:0.906667pt;}
.ls6b{letter-spacing:0.912000pt;}
.ls45{letter-spacing:0.960000pt;}
.ls63{letter-spacing:1.008000pt;}
.lsb{letter-spacing:1.013333pt;}
.ls5f{letter-spacing:1.019947pt;}
.ls5c{letter-spacing:1.056000pt;}
.ls13{letter-spacing:1.066667pt;}
.ls6c{letter-spacing:1.104000pt;}
.ls2d{letter-spacing:1.120000pt;}
.ls79{letter-spacing:1.152000pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls44{letter-spacing:1.176000pt;}
.ls5{letter-spacing:1.226667pt;}
.ls66{letter-spacing:1.248000pt;}
.ls22{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:1.290667pt;}
.ls78{letter-spacing:1.296000pt;}
.ls32{letter-spacing:1.333333pt;}
.ls7e{letter-spacing:1.344000pt;}
.ls11{letter-spacing:1.386667pt;}
.ls77{letter-spacing:1.392000pt;}
.lsa{letter-spacing:1.432533pt;}
.ls9{letter-spacing:1.440000pt;}
.ls2f{letter-spacing:1.493333pt;}
.ls18{letter-spacing:1.536000pt;}
.ls2e{letter-spacing:1.546667pt;}
.ls7b{letter-spacing:1.584000pt;}
.ls25{letter-spacing:1.600000pt;}
.ls7d{letter-spacing:1.632000pt;}
.ls46{letter-spacing:1.653333pt;}
.ls2a{letter-spacing:1.706667pt;}
.ls75{letter-spacing:1.728000pt;}
.ls41{letter-spacing:1.736000pt;}
.ls10{letter-spacing:1.760000pt;}
.ls23{letter-spacing:1.813333pt;}
.ls6f{letter-spacing:1.857760pt;}
.ls34{letter-spacing:1.866667pt;}
.ls67{letter-spacing:1.872000pt;}
.ls3f{letter-spacing:1.920000pt;}
.lsd{letter-spacing:1.973333pt;}
.ls36{letter-spacing:2.026667pt;}
.ls7{letter-spacing:2.080000pt;}
.ls81{letter-spacing:2.112000pt;}
.ls2c{letter-spacing:2.133333pt;}
.ls37{letter-spacing:2.186667pt;}
.ls6a{letter-spacing:2.208000pt;}
.lsf{letter-spacing:2.240000pt;}
.ls16{letter-spacing:2.293333pt;}
.ls71{letter-spacing:2.296000pt;}
.ls40{letter-spacing:2.346667pt;}
.ls42{letter-spacing:2.400000pt;}
.ls3c{letter-spacing:2.453333pt;}
.ls8{letter-spacing:2.506667pt;}
.ls14{letter-spacing:2.560000pt;}
.ls48{letter-spacing:2.613333pt;}
.ls29{letter-spacing:2.666667pt;}
.lse{letter-spacing:2.720000pt;}
.ls15{letter-spacing:2.773333pt;}
.ls2b{letter-spacing:2.826667pt;}
.ls26{letter-spacing:2.880000pt;}
.ls27{letter-spacing:2.933333pt;}
.lsc{letter-spacing:2.986667pt;}
.ls28{letter-spacing:3.040000pt;}
.ls33{letter-spacing:3.093333pt;}
.ls35{letter-spacing:3.146667pt;}
.ls55{letter-spacing:174.257600pt;}
.ls53{letter-spacing:201.124267pt;}
.ls50{letter-spacing:209.065600pt;}
.ls56{letter-spacing:244.998400pt;}
.ls57{letter-spacing:305.669333pt;}
.ls51{letter-spacing:348.328000pt;}
.ls54{letter-spacing:357.448000pt;}
.ls52{letter-spacing:369.252267pt;}
.ls2{letter-spacing:842.802133pt;}
.ws6d{word-spacing:-220.345600pt;}
.ws0{word-spacing:-53.440000pt;}
.ws20{word-spacing:-53.333333pt;}
.ws51{word-spacing:-15.040000pt;}
.ws8f{word-spacing:-15.008000pt;}
.ws82{word-spacing:-14.826667pt;}
.ws62{word-spacing:-14.613333pt;}
.ws3b{word-spacing:-14.506667pt;}
.ws3a{word-spacing:-14.448000pt;}
.ws81{word-spacing:-14.346667pt;}
.ws21{word-spacing:-14.026667pt;}
.ws8e{word-spacing:-13.888000pt;}
.ws22{word-spacing:-13.813333pt;}
.ws3c{word-spacing:-13.760000pt;}
.ws2{word-spacing:-13.706667pt;}
.ws61{word-spacing:-13.386667pt;}
.ws60{word-spacing:-13.280000pt;}
.ws50{word-spacing:-13.173333pt;}
.ws52{word-spacing:-13.066667pt;}
.ws83{word-spacing:-12.960000pt;}
.ws53{word-spacing:-12.800000pt;}
.ws5f{word-spacing:-12.746667pt;}
.ws70{word-spacing:-12.336000pt;}
.ws90{word-spacing:-12.096000pt;}
.ws5{word-spacing:-12.008000pt;}
.ws6c{word-spacing:-11.856000pt;}
.ws72{word-spacing:-11.616000pt;}
.ws4{word-spacing:-11.501333pt;}
.ws73{word-spacing:-11.376000pt;}
.ws6e{word-spacing:-11.088000pt;}
.ws3{word-spacing:-10.896000pt;}
.ws8d{word-spacing:-10.418027pt;}
.ws63{word-spacing:-10.026667pt;}
.ws80{word-spacing:-9.580213pt;}
.wsab{word-spacing:-3.888000pt;}
.ws78{word-spacing:-3.466667pt;}
.ws8b{word-spacing:-3.413333pt;}
.ws37{word-spacing:-3.360000pt;}
.ws77{word-spacing:-3.253333pt;}
.ws79{word-spacing:-3.200000pt;}
.wse{word-spacing:-3.146667pt;}
.ws8{word-spacing:-3.093333pt;}
.ws7e{word-spacing:-2.989333pt;}
.ws42{word-spacing:-2.986667pt;}
.ws2f{word-spacing:-2.880000pt;}
.ws97{word-spacing:-2.832000pt;}
.ws9f{word-spacing:-2.784000pt;}
.ws10{word-spacing:-2.773333pt;}
.ws17{word-spacing:-2.736000pt;}
.ws5a{word-spacing:-2.720000pt;}
.ws4d{word-spacing:-2.666667pt;}
.ws3f{word-spacing:-2.613333pt;}
.ws31{word-spacing:-2.560000pt;}
.wsa2{word-spacing:-2.544000pt;}
.ws8a{word-spacing:-2.506667pt;}
.ws4b{word-spacing:-2.453333pt;}
.ws16{word-spacing:-2.432000pt;}
.ws34{word-spacing:-2.400000pt;}
.ws5c{word-spacing:-2.346667pt;}
.ws2e{word-spacing:-2.293333pt;}
.ws30{word-spacing:-2.240000pt;}
.wsac{word-spacing:-2.208000pt;}
.ws89{word-spacing:-2.186667pt;}
.ws39{word-spacing:-2.133333pt;}
.ws45{word-spacing:-2.080000pt;}
.ws59{word-spacing:-2.026667pt;}
.ws38{word-spacing:-1.973333pt;}
.ws27{word-spacing:-1.920000pt;}
.ws56{word-spacing:-1.866667pt;}
.ws35{word-spacing:-1.813333pt;}
.wsa8{word-spacing:-1.776000pt;}
.ws9{word-spacing:-1.706667pt;}
.ws48{word-spacing:-1.653333pt;}
.ws24{word-spacing:-1.600000pt;}
.wsb3{word-spacing:-1.584000pt;}
.wsa{word-spacing:-1.546667pt;}
.ws88{word-spacing:-1.493333pt;}
.ws14{word-spacing:-1.440000pt;}
.ws47{word-spacing:-1.386667pt;}
.wsb6{word-spacing:-1.344000pt;}
.ws44{word-spacing:-1.280000pt;}
.ws9e{word-spacing:-1.248000pt;}
.ws55{word-spacing:-1.226667pt;}
.ws46{word-spacing:-1.173333pt;}
.ws2c{word-spacing:-1.066667pt;}
.wsa0{word-spacing:-1.056000pt;}
.ws86{word-spacing:-0.960000pt;}
.ws91{word-spacing:-0.906667pt;}
.ws99{word-spacing:-0.816000pt;}
.ws7{word-spacing:-0.800000pt;}
.wsb7{word-spacing:-0.720000pt;}
.ws5e{word-spacing:-0.693333pt;}
.ws57{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.586667pt;}
.wsaa{word-spacing:-0.576000pt;}
.wsf{word-spacing:-0.533333pt;}
.wsa5{word-spacing:-0.528000pt;}
.ws85{word-spacing:-0.426667pt;}
.ws92{word-spacing:-0.373333pt;}
.ws4a{word-spacing:-0.320000pt;}
.ws93{word-spacing:-0.266667pt;}
.ws98{word-spacing:-0.240000pt;}
.ws95{word-spacing:-0.213333pt;}
.ws1{word-spacing:-0.160000pt;}
.wsa3{word-spacing:-0.144000pt;}
.ws33{word-spacing:-0.106667pt;}
.ws7a{word-spacing:-0.101333pt;}
.wsae{word-spacing:-0.096000pt;}
.ws2a{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.042667pt;}
.wsb0{word-spacing:0.048000pt;}
.ws1e{word-spacing:0.050667pt;}
.ws3e{word-spacing:0.053333pt;}
.ws87{word-spacing:0.106667pt;}
.ws8c{word-spacing:0.160000pt;}
.ws36{word-spacing:0.213333pt;}
.ws12{word-spacing:0.320000pt;}
.ws2d{word-spacing:0.373333pt;}
.wsb8{word-spacing:0.384000pt;}
.ws5d{word-spacing:0.426667pt;}
.ws28{word-spacing:0.533333pt;}
.ws7f{word-spacing:0.576000pt;}
.ws43{word-spacing:0.586667pt;}
.ws54{word-spacing:0.640000pt;}
.ws4f{word-spacing:0.746667pt;}
.wsa1{word-spacing:0.768000pt;}
.ws58{word-spacing:0.800000pt;}
.ws9c{word-spacing:0.816000pt;}
.ws29{word-spacing:0.853333pt;}
.ws23{word-spacing:0.906667pt;}
.ws25{word-spacing:1.013333pt;}
.ws9b{word-spacing:1.104000pt;}
.ws13{word-spacing:1.120000pt;}
.ws40{word-spacing:1.173333pt;}
.ws1f{word-spacing:1.216000pt;}
.wsad{word-spacing:1.248000pt;}
.ws4e{word-spacing:1.280000pt;}
.ws4c{word-spacing:1.288000pt;}
.ws94{word-spacing:1.333333pt;}
.ws26{word-spacing:1.386667pt;}
.wsaf{word-spacing:1.392000pt;}
.ws5b{word-spacing:1.546667pt;}
.ws32{word-spacing:1.600000pt;}
.ws11{word-spacing:1.653333pt;}
.ws9d{word-spacing:1.680000pt;}
.ws84{word-spacing:1.760000pt;}
.ws9a{word-spacing:1.776000pt;}
.ws41{word-spacing:1.813333pt;}
.wsc{word-spacing:1.866667pt;}
.ws1a{word-spacing:1.874667pt;}
.wsb{word-spacing:1.920000pt;}
.ws18{word-spacing:1.925333pt;}
.wsa4{word-spacing:1.968000pt;}
.ws49{word-spacing:1.973333pt;}
.ws2b{word-spacing:2.026667pt;}
.wsb1{word-spacing:2.112000pt;}
.wsb5{word-spacing:2.160000pt;}
.ws15{word-spacing:2.208000pt;}
.ws96{word-spacing:2.256000pt;}
.wsa9{word-spacing:2.304000pt;}
.wsb4{word-spacing:2.592000pt;}
.wsa6{word-spacing:2.640000pt;}
.wsb2{word-spacing:3.024000pt;}
.wsa7{word-spacing:3.312000pt;}
.ws19{word-spacing:3.394667pt;}
.ws1c{word-spacing:3.445333pt;}
.ws1d{word-spacing:4.205333pt;}
.ws1b{word-spacing:5.573333pt;}
.ws7d{word-spacing:5.725333pt;}
.ws7b{word-spacing:5.928000pt;}
.ws3d{word-spacing:12.432000pt;}
.ws64{word-spacing:95.957333pt;}
.ws74{word-spacing:111.081067pt;}
.ws65{word-spacing:123.169067pt;}
.ws71{word-spacing:140.713600pt;}
.ws6a{word-spacing:142.009067pt;}
.ws68{word-spacing:144.625067pt;}
.ws69{word-spacing:146.090133pt;}
.ws6b{word-spacing:148.281067pt;}
.ws66{word-spacing:152.866133pt;}
.ws67{word-spacing:154.025600pt;}
.ws6f{word-spacing:165.402133pt;}
.ws76{word-spacing:197.785067pt;}
.ws75{word-spacing:197.785600pt;}
._c{margin-left:-209.066667pt;}
._b{margin-left:-62.934933pt;}
._7{margin-left:-5.856000pt;}
._5{margin-left:-4.595200pt;}
._3{margin-left:-3.146667pt;}
._2{margin-left:-2.186667pt;}
._1{margin-left:-0.933333pt;}
._0{width:1.376000pt;}
._4{width:2.410667pt;}
._8{width:3.899733pt;}
._a{width:95.232000pt;}
._10{width:123.210667pt;}
._e{width:152.798933pt;}
._9{width:163.157333pt;}
._d{width:176.535467pt;}
._f{width:177.924800pt;}
._6{width:840.595733pt;}
.fsb{font-size:36.426667pt;}
.fs9{font-size:38.064000pt;}
.fs5{font-size:40.069333pt;}
.fsa{font-size:42.666667pt;}
.fs4{font-size:47.354667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:96.000000pt;}
.yd9{bottom:-11.303200pt;}
.yed{bottom:-9.981733pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:85.262800pt;}
.y1{bottom:86.585067pt;}
.y106{bottom:113.731067pt;}
.y27{bottom:114.016667pt;}
.y15{bottom:114.116267pt;}
.y9b{bottom:114.315733pt;}
.yab{bottom:114.746133pt;}
.y137{bottom:116.814400pt;}
.y15e{bottom:116.919333pt;}
.yc3{bottom:117.339333pt;}
.y72{bottom:117.549333pt;}
.y196{bottom:118.529333pt;}
.y26{bottom:131.350000pt;}
.y14{bottom:131.449600pt;}
.y9a{bottom:131.649067pt;}
.yaa{bottom:132.079467pt;}
.y136{bottom:134.147733pt;}
.y15d{bottom:134.252667pt;}
.yc2{bottom:134.672667pt;}
.y71{bottom:134.882667pt;}
.y195{bottom:135.862667pt;}
.y105{bottom:138.597733pt;}
.y25{bottom:148.683333pt;}
.y13{bottom:148.782933pt;}
.y99{bottom:148.982400pt;}
.ya9{bottom:149.412800pt;}
.y135{bottom:151.481067pt;}
.y15c{bottom:151.586000pt;}
.yc1{bottom:152.006000pt;}
.y70{bottom:152.216000pt;}
.y194{bottom:153.196000pt;}
.y24{bottom:166.016667pt;}
.y12{bottom:166.116267pt;}
.y98{bottom:166.315733pt;}
.ya8{bottom:166.746133pt;}
.y104{bottom:167.970000pt;}
.y134{bottom:168.814400pt;}
.y15b{bottom:168.919333pt;}
.yc0{bottom:169.339333pt;}
.y6f{bottom:169.549333pt;}
.y193{bottom:170.529333pt;}
.y23{bottom:183.350000pt;}
.y11{bottom:183.449600pt;}
.y97{bottom:183.649067pt;}
.ya7{bottom:184.079467pt;}
.y133{bottom:186.147733pt;}
.y15a{bottom:186.252667pt;}
.y103{bottom:186.534267pt;}
.ybf{bottom:186.672667pt;}
.y6e{bottom:186.882667pt;}
.y192{bottom:187.862667pt;}
.y22{bottom:200.683333pt;}
.y10{bottom:200.782933pt;}
.y96{bottom:200.982400pt;}
.ya6{bottom:201.412800pt;}
.y132{bottom:203.481067pt;}
.y159{bottom:203.586000pt;}
.ybe{bottom:204.006000pt;}
.y6d{bottom:204.216000pt;}
.y191{bottom:205.196000pt;}
.y102{bottom:205.431867pt;}
.y21{bottom:218.016667pt;}
.yf{bottom:218.116267pt;}
.y95{bottom:218.315733pt;}
.ya5{bottom:218.746133pt;}
.y131{bottom:220.814400pt;}
.y158{bottom:220.919333pt;}
.ybd{bottom:221.339333pt;}
.y6c{bottom:221.549333pt;}
.y190{bottom:222.529333pt;}
.y101{bottom:224.329600pt;}
.y20{bottom:235.350000pt;}
.ye{bottom:235.449600pt;}
.y94{bottom:235.649067pt;}
.ya4{bottom:236.079467pt;}
.y130{bottom:238.147733pt;}
.y157{bottom:238.252667pt;}
.ybc{bottom:238.672667pt;}
.y6b{bottom:238.882667pt;}
.y18f{bottom:239.862667pt;}
.y100{bottom:243.227200pt;}
.y163{bottom:251.901067pt;}
.y1f{bottom:252.683333pt;}
.yd{bottom:252.782933pt;}
.y93{bottom:252.982400pt;}
.ya3{bottom:253.412800pt;}
.y12f{bottom:255.481067pt;}
.y156{bottom:255.586000pt;}
.ybb{bottom:256.006000pt;}
.y6a{bottom:256.216000pt;}
.y18e{bottom:257.196000pt;}
.yff{bottom:262.124800pt;}
.y1e{bottom:270.016667pt;}
.yc{bottom:270.116267pt;}
.y92{bottom:270.315733pt;}
.ya2{bottom:270.746133pt;}
.y12e{bottom:272.814400pt;}
.y155{bottom:272.919333pt;}
.yba{bottom:273.339333pt;}
.y69{bottom:273.549333pt;}
.y18d{bottom:274.529333pt;}
.yfe{bottom:281.022533pt;}
.y1d{bottom:287.350000pt;}
.yb{bottom:287.449600pt;}
.y91{bottom:287.649067pt;}
.ya1{bottom:288.079467pt;}
.y12d{bottom:290.147733pt;}
.y154{bottom:290.252667pt;}
.y162{bottom:290.777733pt;}
.y68{bottom:290.882667pt;}
.y18c{bottom:291.862667pt;}
.yfd{bottom:299.753467pt;}
.yb9{bottom:303.901067pt;}
.y1c{bottom:304.683333pt;}
.ya{bottom:304.782933pt;}
.y90{bottom:304.982400pt;}
.ya0{bottom:305.412800pt;}
.y12c{bottom:307.481067pt;}
.y153{bottom:307.586000pt;}
.y161{bottom:308.111067pt;}
.y67{bottom:308.216000pt;}
.y18b{bottom:309.196000pt;}
.yfc{bottom:318.651067pt;}
.y1b{bottom:322.016667pt;}
.y9{bottom:322.116267pt;}
.y8f{bottom:322.315733pt;}
.y9f{bottom:322.746133pt;}
.y12b{bottom:324.814400pt;}
.y152{bottom:324.919333pt;}
.y160{bottom:325.444400pt;}
.y66{bottom:325.549333pt;}
.y18a{bottom:326.529333pt;}
.y1a{bottom:339.350000pt;}
.y8{bottom:339.449600pt;}
.y8e{bottom:339.649067pt;}
.y9e{bottom:340.079467pt;}
.y12a{bottom:342.147733pt;}
.y151{bottom:342.252667pt;}
.yb8{bottom:342.777733pt;}
.y65{bottom:342.882667pt;}
.y189{bottom:343.862667pt;}
.yfb{bottom:346.209067pt;}
.y15f{bottom:356.006000pt;}
.y19{bottom:356.683333pt;}
.y7{bottom:356.782933pt;}
.y8d{bottom:356.982400pt;}
.y129{bottom:359.481067pt;}
.y150{bottom:359.586000pt;}
.yb7{bottom:360.111067pt;}
.y64{bottom:360.216000pt;}
.y188{bottom:361.196000pt;}
.y9d{bottom:373.664800pt;}
.y18{bottom:374.016667pt;}
.y6{bottom:374.116267pt;}
.y8c{bottom:374.315733pt;}
.y128{bottom:376.814400pt;}
.y14f{bottom:376.919333pt;}
.yb6{bottom:377.444400pt;}
.y63{bottom:377.549333pt;}
.y187{bottom:378.529333pt;}
.yd3{bottom:383.428533pt;}
.y17{bottom:391.350000pt;}
.y5{bottom:391.449600pt;}
.y8b{bottom:391.649067pt;}
.y127{bottom:394.147733pt;}
.y14e{bottom:394.252667pt;}
.yb5{bottom:394.777733pt;}
.y62{bottom:394.882667pt;}
.y186{bottom:395.862667pt;}
.yd2{bottom:400.761867pt;}
.y9c{bottom:408.006000pt;}
.y16{bottom:408.683333pt;}
.y4{bottom:408.782933pt;}
.y8a{bottom:408.982400pt;}
.y126{bottom:411.481067pt;}
.y14d{bottom:411.586000pt;}
.yb4{bottom:412.111067pt;}
.y61{bottom:412.216000pt;}
.y185{bottom:413.196000pt;}
.yd1{bottom:418.095200pt;}
.y89{bottom:426.315733pt;}
.y125{bottom:428.814400pt;}
.y14c{bottom:428.919333pt;}
.yb3{bottom:429.444400pt;}
.y60{bottom:429.549333pt;}
.y184{bottom:430.529333pt;}
.yd0{bottom:435.428533pt;}
.y88{bottom:443.649067pt;}
.y124{bottom:446.147733pt;}
.y14b{bottom:446.252667pt;}
.yb2{bottom:446.777733pt;}
.y5f{bottom:446.882667pt;}
.y183{bottom:447.862667pt;}
.ycf{bottom:452.761867pt;}
.y87{bottom:460.982400pt;}
.y123{bottom:463.481067pt;}
.y14a{bottom:463.586000pt;}
.yb1{bottom:464.111067pt;}
.y5e{bottom:464.216000pt;}
.y182{bottom:465.196000pt;}
.yce{bottom:470.095200pt;}
.y3c{bottom:474.218667pt;}
.y86{bottom:478.315733pt;}
.y122{bottom:480.814400pt;}
.y149{bottom:480.919333pt;}
.yb0{bottom:481.444400pt;}
.y5d{bottom:481.549333pt;}
.y181{bottom:482.529333pt;}
.ycd{bottom:487.428533pt;}
.y121{bottom:498.147733pt;}
.y148{bottom:498.252667pt;}
.yaf{bottom:498.777733pt;}
.y5c{bottom:498.882667pt;}
.y180{bottom:499.862667pt;}
.ycc{bottom:504.761867pt;}
.y3b{bottom:508.552000pt;}
.y85{bottom:511.901067pt;}
.y120{bottom:515.481067pt;}
.y147{bottom:515.586000pt;}
.yae{bottom:516.111067pt;}
.y5b{bottom:516.216000pt;}
.y17f{bottom:517.196000pt;}
.ycb{bottom:522.095200pt;}
.y3a{bottom:525.885333pt;}
.y11f{bottom:532.814400pt;}
.y146{bottom:532.919333pt;}
.yad{bottom:533.444400pt;}
.y5a{bottom:533.549333pt;}
.y17e{bottom:534.529333pt;}
.yca{bottom:539.428533pt;}
.y39{bottom:543.218667pt;}
.y11e{bottom:550.147733pt;}
.y145{bottom:550.252667pt;}
.y84{bottom:550.777733pt;}
.y59{bottom:550.882667pt;}
.y17d{bottom:551.862667pt;}
.yc9{bottom:556.761867pt;}
.y38{bottom:560.552000pt;}
.y11d{bottom:567.481067pt;}
.y144{bottom:567.586000pt;}
.y83{bottom:568.111067pt;}
.y58{bottom:568.216000pt;}
.y17c{bottom:569.196000pt;}
.yc8{bottom:574.095200pt;}
.y37{bottom:577.885333pt;}
.y11c{bottom:584.814400pt;}
.y143{bottom:584.919333pt;}
.y82{bottom:585.444400pt;}
.y57{bottom:585.549333pt;}
.y17b{bottom:586.529333pt;}
.yc7{bottom:591.428533pt;}
.y36{bottom:595.218667pt;}
.y11b{bottom:602.147733pt;}
.y142{bottom:602.252667pt;}
.y81{bottom:602.777733pt;}
.y56{bottom:602.882667pt;}
.y17a{bottom:603.862667pt;}
.yc6{bottom:608.761867pt;}
.y35{bottom:612.552000pt;}
.y11a{bottom:619.481067pt;}
.y141{bottom:619.586000pt;}
.y80{bottom:620.111067pt;}
.y55{bottom:620.216000pt;}
.y179{bottom:621.196000pt;}
.yc5{bottom:626.095200pt;}
.y34{bottom:629.885333pt;}
.y119{bottom:636.814400pt;}
.y140{bottom:636.919333pt;}
.y7f{bottom:637.444400pt;}
.y54{bottom:637.549333pt;}
.y178{bottom:638.529333pt;}
.yc4{bottom:643.428533pt;}
.y33{bottom:647.218667pt;}
.y118{bottom:654.147733pt;}
.y13f{bottom:654.252667pt;}
.y7e{bottom:654.777733pt;}
.y53{bottom:654.882667pt;}
.y177{bottom:655.862667pt;}
.y32{bottom:664.552000pt;}
.y117{bottom:671.481067pt;}
.y13e{bottom:671.586000pt;}
.y7d{bottom:672.111067pt;}
.y52{bottom:672.216000pt;}
.y176{bottom:673.196000pt;}
.yd7{bottom:679.666533pt;}
.yeb{bottom:680.665733pt;}
.y116{bottom:688.814400pt;}
.y13d{bottom:688.919333pt;}
.y7c{bottom:689.444400pt;}
.y51{bottom:689.549333pt;}
.y175{bottom:690.529333pt;}
.y31{bottom:697.884133pt;}
.yd6{bottom:700.779333pt;}
.yea{bottom:701.778667pt;}
.y115{bottom:706.147733pt;}
.y13c{bottom:706.252667pt;}
.y7b{bottom:706.777733pt;}
.y50{bottom:706.882667pt;}
.y174{bottom:707.862667pt;}
.y30{bottom:715.217467pt;}
.yd5{bottom:718.112667pt;}
.ye9{bottom:719.112000pt;}
.y114{bottom:723.481067pt;}
.y13b{bottom:723.586000pt;}
.y7a{bottom:724.111067pt;}
.y4f{bottom:724.216000pt;}
.y173{bottom:725.196000pt;}
.yd4{bottom:735.446000pt;}
.ye8{bottom:736.445333pt;}
.y13a{bottom:740.919333pt;}
.y79{bottom:741.444400pt;}
.y4e{bottom:741.549333pt;}
.y172{bottom:742.529333pt;}
.y2f{bottom:748.549600pt;}
.yec{bottom:753.773333pt;}
.y113{bottom:754.042667pt;}
.yd8{bottom:754.393333pt;}
.y139{bottom:758.252667pt;}
.y78{bottom:758.777733pt;}
.y4d{bottom:758.882667pt;}
.y171{bottom:759.862667pt;}
.yf7{bottom:759.926933pt;}
.yfa{bottom:759.946533pt;}
.ye7{bottom:760.095067pt;}
.yda{bottom:773.614800pt;}
.yee{bottom:774.316267pt;}
.y2e{bottom:775.279733pt;}
.y138{bottom:775.586000pt;}
.y77{bottom:776.111067pt;}
.y4c{bottom:776.216000pt;}
.y170{bottom:777.196000pt;}
.y112{bottom:792.919333pt;}
.y76{bottom:793.444400pt;}
.y4b{bottom:793.549333pt;}
.y16f{bottom:794.529333pt;}
.y2d{bottom:795.279733pt;}
.ydb{bottom:796.804133pt;}
.yef{bottom:800.417600pt;}
.yac{bottom:806.672667pt;}
.y111{bottom:810.252667pt;}
.y75{bottom:810.777733pt;}
.y4a{bottom:810.882667pt;}
.y16e{bottom:811.862667pt;}
.y2c{bottom:815.279733pt;}
.ydc{bottom:819.993467pt;}
.yf0{bottom:826.518933pt;}
.y110{bottom:827.586000pt;}
.y74{bottom:828.111067pt;}
.y49{bottom:828.216000pt;}
.y16d{bottom:829.196000pt;}
.yf8{bottom:834.480533pt;}
.ye4{bottom:834.826933pt;}
.ydd{bottom:843.236133pt;}
.y10f{bottom:844.919333pt;}
.y48{bottom:845.549333pt;}
.y2b{bottom:845.661067pt;}
.y16c{bottom:846.529333pt;}
.yf1{bottom:852.620267pt;}
.y73{bottom:858.672667pt;}
.y10e{bottom:862.252667pt;}
.y47{bottom:862.882667pt;}
.y16b{bottom:863.862667pt;}
.yde{bottom:866.425467pt;}
.y2a{bottom:866.994400pt;}
.yf2{bottom:878.721600pt;}
.y10d{bottom:879.586000pt;}
.y46{bottom:880.216000pt;}
.y16a{bottom:881.196000pt;}
.ydf{bottom:889.614800pt;}
.y10c{bottom:896.919333pt;}
.y45{bottom:897.549333pt;}
.y169{bottom:898.529333pt;}
.yf3{bottom:904.822933pt;}
.y29{bottom:912.327733pt;}
.ye0{bottom:912.857467pt;}
.y10b{bottom:914.252667pt;}
.y44{bottom:914.882667pt;}
.y168{bottom:915.862667pt;}
.yf4{bottom:930.924267pt;}
.y10a{bottom:931.586000pt;}
.y43{bottom:932.216000pt;}
.y167{bottom:933.196000pt;}
.ye1{bottom:936.046800pt;}
.y28{bottom:941.661067pt;}
.y109{bottom:948.919333pt;}
.y42{bottom:949.549333pt;}
.y166{bottom:950.529333pt;}
.yf5{bottom:957.078933pt;}
.ye6{bottom:959.209733pt;}
.ye2{bottom:959.236133pt;}
.y108{bottom:966.252667pt;}
.y41{bottom:966.882667pt;}
.y165{bottom:967.862667pt;}
.yf9{bottom:974.165200pt;}
.ye5{bottom:974.810000pt;}
.ye3{bottom:982.478800pt;}
.yf6{bottom:983.180267pt;}
.y107{bottom:983.586000pt;}
.y40{bottom:984.216000pt;}
.y164{bottom:985.196000pt;}
.y3{bottom:1014.152267pt;}
.y3f{bottom:1014.624800pt;}
.y2{bottom:1046.603733pt;}
.y3e{bottom:1047.076133pt;}
.he{height:25.369805pt;}
.h8{height:29.010197pt;}
.h10{height:30.250667pt;}
.hf{height:30.890667pt;}
.h12{height:34.032000pt;}
.ha{height:34.752000pt;}
.hb{height:36.682667pt;}
.h2{height:37.708333pt;}
.h9{height:37.813333pt;}
.h5{height:38.613333pt;}
.h4{height:38.776042pt;}
.hc{height:39.200000pt;}
.h3{height:42.567708pt;}
.h13{height:46.799573pt;}
.h7{height:60.839979pt;}
.h6{height:67.200000pt;}
.hd{height:239.622667pt;}
.h11{height:240.242667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:298.658667pt;}
.w2{width:302.362667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:47.856933pt;}
.x12{left:51.308133pt;}
.x2{left:84.409467pt;}
.x7{left:87.343200pt;}
.x3{left:96.372667pt;}
.xf{left:107.111867pt;}
.xe{left:112.775867pt;}
.x11{left:151.176267pt;}
.x1b{left:173.004000pt;}
.x8{left:176.131333pt;}
.x1a{left:186.514133pt;}
.x1c{left:189.363200pt;}
.x19{left:247.767600pt;}
.x10{left:327.560267pt;}
.x4{left:406.297333pt;}
.x5{left:417.630667pt;}
.x16{left:418.805333pt;}
.xb{left:422.524667pt;}
.x6{left:427.997333pt;}
.x14{left:430.090000pt;}
.x13{left:435.754000pt;}
.xa{left:443.151600pt;}
.x18{left:466.984400pt;}
.xc{left:486.596667pt;}
.x9{left:525.769200pt;}
.x1e{left:576.927867pt;}
.x1d{left:593.559467pt;}
.x15{left:622.538000pt;}
.x17{left:627.763067pt;}
.x1{left:695.328133pt;}
}




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