
    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_99ee65e80faa72a5791173ba.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_44741b2f7e10a7149c9c1b89.woff')format("woff");}.ff2{font-family:ff2;line-height:0.951172;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_ba04d36c137a73f338063cd0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_2dd280256eaa594a1833a830.woff')format("woff");}.ff4{font-family:ff4;line-height:0.740234;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_c522d89dfbe645e6adfbb00e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.741211;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_a52551149f8cf16ed0fae55d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_ad7fae260b436a019fcff907.woff')format("woff");}.ff7{font-family:ff7;line-height:0.909180;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_0d7b7d210c1e9db4b317b2ad.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_145a568ae8a03658eaa95e96.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_a268a3ecd5fe6c7e5812226f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b602b596d99f14ccbe69e677.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_95425de094913076b876e07d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.934000;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_fb7f6529e5b236f9185fbbfd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934000;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_ad511f42515f620a9ea43c22.woff')format("woff");}.ffe{font-family:ffe;line-height:0.704102;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_4a24cc0feb79b258daf74231.woff')format("woff");}.fff{font-family:fff;line-height:0.927246;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_6b2a6f55e381423b9bf8a6b3.woff')format("woff");}.ff10{font-family:ff10;line-height:0.926270;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_84ea72f204fbb82afe0e2e06.woff')format("woff");}.ff12{font-family:ff12;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;}
.m1{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);}
.m3{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,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);}
.m2{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);}
.v9{vertical-align:-80.840160px;}
.vb{vertical-align:-71.640000px;}
.v4{vertical-align:-68.777280px;}
.v2{vertical-align:-38.880000px;}
.v3{vertical-align:-33.120000px;}
.v5{vertical-align:-27.000000px;}
.vf{vertical-align:-25.219800px;}
.ve{vertical-align:-14.760000px;}
.vc{vertical-align:-13.680000px;}
.v13{vertical-align:-10.439400px;}
.va{vertical-align:-9.000000px;}
.v12{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:10.439400px;}
.v1a{vertical-align:12.600000px;}
.vd{vertical-align:13.680000px;}
.v16{vertical-align:14.760000px;}
.v11{vertical-align:16.560000px;}
.v1b{vertical-align:24.120000px;}
.v6{vertical-align:27.205080px;}
.v10{vertical-align:33.461280px;}
.v8{vertical-align:36.349200px;}
.v1{vertical-align:38.880000px;}
.v7{vertical-align:42.120000px;}
.v19{vertical-align:46.440000px;}
.v18{vertical-align:56.892960px;}
.v17{vertical-align:59.040000px;}
.v15{vertical-align:88.920000px;}
.ls45{letter-spacing:-0.661320px;}
.ls2d{letter-spacing:-0.541080px;}
.ls2e{letter-spacing:-0.480960px;}
.ls2c{letter-spacing:-0.420840px;}
.ls43{letter-spacing:-0.378000px;}
.ls17{letter-spacing:-0.300600px;}
.ls16{letter-spacing:-0.240480px;}
.ls34{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.180360px;}
.lse{letter-spacing:-0.167760px;}
.ls44{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.120240px;}
.ls33{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.083880px;}
.ls70{letter-spacing:-0.065880px;}
.ls15{letter-spacing:-0.060120px;}
.ls1{letter-spacing:0.000000px;}
.ls4b{letter-spacing:0.019800px;}
.ls14{letter-spacing:0.038880px;}
.ls30{letter-spacing:0.060120px;}
.ls7{letter-spacing:0.062640px;}
.ls10{letter-spacing:0.083880px;}
.ls2{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.120240px;}
.ls1f{letter-spacing:0.123120px;}
.ls28{letter-spacing:0.123840px;}
.ls4e{letter-spacing:0.128160px;}
.ls24{letter-spacing:0.140040px;}
.ls50{letter-spacing:0.141840px;}
.ls3{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.167760px;}
.ls5{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.180360px;}
.ls27{letter-spacing:0.182520px;}
.ls5c{letter-spacing:0.240480px;}
.ls18{letter-spacing:0.388800px;}
.ls9{letter-spacing:0.420840px;}
.ls32{letter-spacing:0.480960px;}
.ls20{letter-spacing:0.541080px;}
.ls1e{letter-spacing:0.661320px;}
.ls1c{letter-spacing:0.781560px;}
.ls73{letter-spacing:0.961920px;}
.ls2a{letter-spacing:1.142280px;}
.ls53{letter-spacing:1.278000px;}
.lsc{letter-spacing:1.322640px;}
.ls54{letter-spacing:1.584720px;}
.ls4f{letter-spacing:1.938600px;}
.ls5a{letter-spacing:1.947960px;}
.ls5d{letter-spacing:2.224440px;}
.ls59{letter-spacing:2.298600px;}
.ls55{letter-spacing:2.307960px;}
.ls57{letter-spacing:2.801520px;}
.ls4a{letter-spacing:2.877480px;}
.ls42{letter-spacing:4.388760px;}
.ls3f{letter-spacing:6.192360px;}
.ls71{letter-spacing:6.913800px;}
.ls0{letter-spacing:6.972660px;}
.ls5b{letter-spacing:7.635240px;}
.ls1a{letter-spacing:7.995960px;}
.ls1b{letter-spacing:8.356680px;}
.lsb{letter-spacing:9.078120px;}
.ls26{letter-spacing:10.881720px;}
.lsa{letter-spacing:11.242440px;}
.ls1d{letter-spacing:11.603160px;}
.ls58{letter-spacing:11.880000px;}
.ls2b{letter-spacing:14.128200px;}
.lsd{letter-spacing:16.653240px;}
.ls21{letter-spacing:17.374680px;}
.ls47{letter-spacing:18.446400px;}
.ls5e{letter-spacing:19.178280px;}
.ls51{letter-spacing:19.825200px;}
.ls52{letter-spacing:20.016000px;}
.ls48{letter-spacing:20.860200px;}
.ls4c{letter-spacing:21.216600px;}
.ls46{letter-spacing:21.237480px;}
.ls22{letter-spacing:21.816000px;}
.ls49{letter-spacing:22.778640px;}
.ls4d{letter-spacing:22.896000px;}
.ls56{letter-spacing:22.961520px;}
.ls74{letter-spacing:36.192240px;}
.ls23{letter-spacing:40.896000px;}
.ls31{letter-spacing:63.546840px;}
.ls72{letter-spacing:66.071880px;}
.ls41{letter-spacing:67.320000px;}
.ls29{letter-spacing:70.280280px;}
.ls6c{letter-spacing:76.518000px;}
.ls5f{letter-spacing:83.322000px;}
.ls40{letter-spacing:92.344320px;}
.ls8{letter-spacing:92.945520px;}
.ls62{letter-spacing:93.798000px;}
.ls36{letter-spacing:107.013600px;}
.ls6d{letter-spacing:114.642000px;}
.ls6e{letter-spacing:115.020000px;}
.ls6f{letter-spacing:115.398000px;}
.ls61{letter-spacing:123.660000px;}
.ls39{letter-spacing:134.728920px;}
.ls69{letter-spacing:139.057560px;}
.ls3e{letter-spacing:143.746920px;}
.ls60{letter-spacing:145.638000px;}
.ls6a{letter-spacing:149.157720px;}
.ls3d{letter-spacing:150.901200px;}
.ls6b{letter-spacing:159.979320px;}
.ls65{letter-spacing:168.937200px;}
.ls3a{letter-spacing:171.462240px;}
.ls66{letter-spacing:178.676640px;}
.ls37{letter-spacing:179.037360px;}
.ls38{letter-spacing:185.109480px;}
.ls67{letter-spacing:189.858960px;}
.ls68{letter-spacing:190.941120px;}
.ls64{letter-spacing:199.177560px;}
.ls2f{letter-spacing:205.719840px;}
.ls3c{letter-spacing:211.381920px;}
.ls63{letter-spacing:220.820760px;}
.ls3b{letter-spacing:236.632320px;}
.ls35{letter-spacing:817.992720px;}
.ls25{letter-spacing:2172.600000px;}
.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;}
}
.ws84{word-spacing:-65.880000px;}
.ws85{word-spacing:-65.814120px;}
.ws3d{word-spacing:-60.120000px;}
.ws88{word-spacing:-51.386400px;}
.ws3c{word-spacing:-51.120000px;}
.ws89{word-spacing:-50.991120px;}
.ws8b{word-spacing:-42.120000px;}
.ws87{word-spacing:-30.024720px;}
.wsd{word-spacing:-17.856000px;}
.ws0{word-spacing:-15.497826px;}
.ws5{word-spacing:-15.210360px;}
.wsc{word-spacing:-15.150240px;}
.wse{word-spacing:-15.030000px;}
.ws7{word-spacing:-14.969880px;}
.ws4{word-spacing:-14.909760px;}
.ws3b{word-spacing:-14.849640px;}
.ws9{word-spacing:-14.789520px;}
.wsa{word-spacing:-14.729400px;}
.ws2{word-spacing:-13.662000px;}
.ws78{word-spacing:-13.587120px;}
.ws3{word-spacing:-13.500000px;}
.ws77{word-spacing:-13.392000px;}
.ws8c{word-spacing:-13.338000px;}
.ws75{word-spacing:-13.122000px;}
.wsb{word-spacing:-10.108800px;}
.ws6{word-spacing:-9.758880px;}
.ws8{word-spacing:-9.720000px;}
.ws76{word-spacing:-9.000000px;}
.ws6c{word-spacing:-0.480960px;}
.ws18{word-spacing:-0.420840px;}
.ws3a{word-spacing:-0.360720px;}
.ws15{word-spacing:-0.251640px;}
.ws1a{word-spacing:-0.240480px;}
.ws19{word-spacing:-0.180360px;}
.ws13{word-spacing:-0.167760px;}
.ws14{word-spacing:-0.162000px;}
.ws1b{word-spacing:-0.120240px;}
.wsf{word-spacing:-0.108000px;}
.ws12{word-spacing:-0.083880px;}
.ws86{word-spacing:-0.065880px;}
.ws16{word-spacing:-0.060120px;}
.ws8a{word-spacing:-0.051120px;}
.ws1{word-spacing:0.000000px;}
.ws33{word-spacing:0.060120px;}
.ws11{word-spacing:0.083880px;}
.ws7b{word-spacing:0.108000px;}
.ws41{word-spacing:0.120240px;}
.ws57{word-spacing:0.144000px;}
.ws7c{word-spacing:0.162000px;}
.ws10{word-spacing:0.167760px;}
.ws64{word-spacing:0.180360px;}
.ws17{word-spacing:0.240480px;}
.ws73{word-spacing:0.270000px;}
.ws1c{word-spacing:0.300600px;}
.ws91{word-spacing:0.324000px;}
.wsa6{word-spacing:0.360720px;}
.ws74{word-spacing:0.378000px;}
.ws4a{word-spacing:0.420840px;}
.ws4d{word-spacing:0.541080px;}
.ws81{word-spacing:0.601200px;}
.ws30{word-spacing:0.661320px;}
.ws80{word-spacing:0.781560px;}
.ws82{word-spacing:0.901800px;}
.ws2f{word-spacing:1.022040px;}
.ws5c{word-spacing:1.322640px;}
.ws53{word-spacing:1.563120px;}
.ws97{word-spacing:1.623240px;}
.ws54{word-spacing:1.683360px;}
.ws66{word-spacing:1.923840px;}
.ws8e{word-spacing:1.983960px;}
.ws7f{word-spacing:2.044080px;}
.wsa5{word-spacing:2.104200px;}
.ws4c{word-spacing:2.284560px;}
.ws8d{word-spacing:2.344680px;}
.ws20{word-spacing:2.404800px;}
.ws21{word-spacing:2.645280px;}
.ws4b{word-spacing:2.765520px;}
.ws5a{word-spacing:2.825640px;}
.ws28{word-spacing:3.006000px;}
.ws27{word-spacing:3.066120px;}
.ws48{word-spacing:3.126240px;}
.ws58{word-spacing:3.366720px;}
.ws29{word-spacing:3.426840px;}
.ws35{word-spacing:3.486960px;}
.ws83{word-spacing:3.727440px;}
.ws34{word-spacing:3.787560px;}
.ws23{word-spacing:3.847680px;}
.ws22{word-spacing:4.088160px;}
.ws2a{word-spacing:4.148280px;}
.ws96{word-spacing:4.208400px;}
.ws72{word-spacing:4.448880px;}
.ws9f{word-spacing:4.629240px;}
.ws69{word-spacing:4.929840px;}
.ws6a{word-spacing:5.170320px;}
.ws42{word-spacing:5.230440px;}
.ws37{word-spacing:5.290560px;}
.wsa0{word-spacing:5.350680px;}
.ws36{word-spacing:5.591160px;}
.ws31{word-spacing:5.651280px;}
.ws71{word-spacing:5.711400px;}
.ws32{word-spacing:5.891760px;}
.ws5b{word-spacing:5.951880px;}
.ws9c{word-spacing:6.012000px;}
.ws9d{word-spacing:6.072120px;}
.ws2b{word-spacing:6.252480px;}
.ws7d{word-spacing:6.312600px;}
.ws95{word-spacing:6.372720px;}
.wsa4{word-spacing:6.432840px;}
.ws3f{word-spacing:6.793560px;}
.ws65{word-spacing:6.973920px;}
.ws40{word-spacing:7.094160px;}
.ws3e{word-spacing:7.154280px;}
.ws6f{word-spacing:7.334640px;}
.ws2c{word-spacing:7.394760px;}
.ws55{word-spacing:7.454880px;}
.ws9e{word-spacing:7.515000px;}
.ws49{word-spacing:7.695360px;}
.ws56{word-spacing:7.755480px;}
.ws94{word-spacing:7.815600px;}
.wsa2{word-spacing:7.875720px;}
.ws44{word-spacing:8.056080px;}
.ws43{word-spacing:8.116200px;}
.ws70{word-spacing:8.176320px;}
.ws50{word-spacing:8.236440px;}
.ws68{word-spacing:8.416800px;}
.ws51{word-spacing:8.476920px;}
.ws9a{word-spacing:8.537040px;}
.wsa1{word-spacing:8.597160px;}
.ws6d{word-spacing:8.777520px;}
.ws45{word-spacing:8.837640px;}
.wsa3{word-spacing:8.897760px;}
.wsa9{word-spacing:8.957880px;}
.ws67{word-spacing:9.138240px;}
.ws24{word-spacing:9.198360px;}
.wsab{word-spacing:9.258480px;}
.wsaa{word-spacing:9.318600px;}
.ws7e{word-spacing:9.498960px;}
.ws25{word-spacing:9.559080px;}
.ws1e{word-spacing:9.619200px;}
.ws1f{word-spacing:9.919800px;}
.ws6e{word-spacing:9.979920px;}
.ws62{word-spacing:10.581120px;}
.ws99{word-spacing:10.701360px;}
.ws98{word-spacing:10.941840px;}
.ws61{word-spacing:11.001960px;}
.ws52{word-spacing:11.062080px;}
.ws1d{word-spacing:11.302560px;}
.ws63{word-spacing:11.362680px;}
.ws7a{word-spacing:12.504960px;}
.ws59{word-spacing:12.745440px;}
.ws79{word-spacing:12.805560px;}
.wsa8{word-spacing:12.925800px;}
.wsa7{word-spacing:13.166280px;}
.ws5d{word-spacing:13.226400px;}
.ws9b{word-spacing:13.827600px;}
.ws4f{word-spacing:13.947840px;}
.ws4e{word-spacing:14.248440px;}
.ws5f{word-spacing:15.691320px;}
.ws47{word-spacing:15.751440px;}
.wsac{word-spacing:15.811560px;}
.wsae{word-spacing:15.931800px;}
.ws46{word-spacing:15.991920px;}
.ws39{word-spacing:16.052040px;}
.ws5e{word-spacing:16.112160px;}
.wsad{word-spacing:16.172280px;}
.ws6b{word-spacing:16.352640px;}
.ws38{word-spacing:16.412760px;}
.ws60{word-spacing:17.434800px;}
.ws26{word-spacing:17.494920px;}
.ws93{word-spacing:17.915760px;}
.ws92{word-spacing:17.975880px;}
.ws90{word-spacing:19.238400px;}
.ws8f{word-spacing:19.298520px;}
.ws2e{word-spacing:19.599120px;}
.ws2d{word-spacing:19.659240px;}
._15{margin-left:-8.569189px;}
._16{margin-left:-7.138800px;}
._4{margin-left:-4.657518px;}
._3{margin-left:-2.693051px;}
._0{margin-left:-1.007767px;}
._5{width:1.006560px;}
._1{width:2.789065px;}
._8{width:4.270320px;}
._6{width:7.752220px;}
._7{width:8.798060px;}
._b{width:10.005967px;}
._9{width:11.362680px;}
._23{width:12.941280px;}
._24{width:16.472880px;}
._a{width:17.735400px;}
._2{width:22.790507px;}
._c{width:51.732000px;}
._f{width:59.292000px;}
._14{width:81.594000px;}
._22{width:96.678000px;}
._13{width:102.492000px;}
._10{width:165.132000px;}
._d{width:181.368000px;}
._e{width:199.962000px;}
._1d{width:208.926000px;}
._1e{width:218.970000px;}
._12{width:225.180000px;}
._1f{width:229.770000px;}
._1c{width:238.788000px;}
._21{width:249.017040px;}
._1b{width:260.766000px;}
._20{width:263.806560px;}
._11{width:305.478000px;}
._18{width:1887.546600px;}
._17{width:1890.818749px;}
._19{width:1950.954120px;}
._1a{width:2075.462640px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(35,31,32);}
.fc5{color:rgb(26,26,26);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(3,166,120);}
.fc2{color:rgb(29,27,27);}
.fc1{color:rgb(100,98,98);}
.fc0{color:rgb(0,102,204);}
.fs6{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fs4{font-size:41.835958px;}
.fse{font-size:42.000000px;}
.fs13{font-size:42.120000px;}
.fsa{font-size:47.880000px;}
.fs2{font-size:48.808618px;}
.fs12{font-size:50.469951px;}
.fs10{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:55.781278px;}
.fsf{font-size:60.000000px;}
.fsb{font-size:60.120000px;}
.fs5{font-size:62.753937px;}
.fs11{font-size:65.880000px;}
.fsc{font-size:72.000000px;}
.fs14{font-size:75.894664px;}
.fs3{font-size:83.671917px;}
.fs8{font-size:83.880000px;}
.fs7{font-size:108.000000px;}
.fs0{font-size:174.316493px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.949272px;}
.yef{bottom:1.260000px;}
.ye4{bottom:1.350000px;}
.y93{bottom:2.970000px;}
.yed{bottom:3.060000px;}
.y8d{bottom:3.240000px;}
.yf3{bottom:3.420000px;}
.yf6{bottom:3.510000px;}
.ya8{bottom:3.780000px;}
.yf5{bottom:6.120000px;}
.ye2{bottom:18.540000px;}
.y91{bottom:34.020000px;}
.y3e{bottom:36.000000px;}
.y3d{bottom:60.000000px;}
.y3c{bottom:72.600000px;}
.y3b{bottom:85.200000px;}
.yee{bottom:110.970000px;}
.y115{bottom:117.157680px;}
.yf0{bottom:120.060000px;}
.y3a{bottom:122.638230px;}
.y72{bottom:122.647860px;}
.y141{bottom:124.755990px;}
.y114{bottom:134.442180px;}
.y8f{bottom:134.550000px;}
.yec{bottom:138.600000px;}
.y39{bottom:139.832550px;}
.y71{bottom:139.932360px;}
.y140{bottom:141.950310px;}
.y8c{bottom:148.320000px;}
.yeb{bottom:149.400000px;}
.y113{bottom:151.726680px;}
.y38{bottom:157.117050px;}
.y70{bottom:157.216860px;}
.y13f{bottom:159.234810px;}
.y8b{bottom:163.741770px;}
.y8e{bottom:163.890000px;}
.y112{bottom:168.921000px;}
.yea{bottom:173.887560px;}
.y37{bottom:174.401550px;}
.y13e{bottom:176.519310px;}
.y111{bottom:186.205500px;}
.y36{bottom:191.595870px;}
.y6f{bottom:191.695680px;}
.y13d{bottom:193.713630px;}
.ye9{bottom:200.160000px;}
.y110{bottom:203.490000px;}
.y35{bottom:208.880370px;}
.y6e{bottom:208.883340px;}
.y13c{bottom:210.998130px;}
.y34{bottom:226.164870px;}
.y6d{bottom:227.250000px;}
.y13b{bottom:228.282630px;}
.ye8{bottom:229.770000px;}
.y10f{bottom:239.220000px;}
.yae{bottom:242.617860px;}
.y33{bottom:243.359190px;}
.y13a{bottom:245.476950px;}
.ye7{bottom:252.990000px;}
.y6c{bottom:253.982700px;}
.yad{bottom:259.812180px;}
.y32{bottom:260.643690px;}
.y139{bottom:262.761450px;}
.y6b{bottom:263.070000px;}
.ye6{bottom:276.300000px;}
.yac{bottom:277.096680px;}
.y10e{bottom:277.348860px;}
.y138{bottom:280.045950px;}
.ye3{bottom:293.400000px;}
.yab{bottom:294.381180px;}
.y10d{bottom:294.633360px;}
.y31{bottom:296.370000px;}
.y137{bottom:297.240270px;}
.y6a{bottom:297.684690px;}
.ye5{bottom:302.490000px;}
.yaa{bottom:311.575500px;}
.y10c{bottom:311.917860px;}
.y136{bottom:314.524770px;}
.y69{bottom:314.969190px;}
.ye1{bottom:321.120000px;}
.y10b{bottom:329.112180px;}
.y135{bottom:331.809270px;}
.ye0{bottom:331.830000px;}
.y68{bottom:332.253690px;}
.y30{bottom:343.559850px;}
.y10a{bottom:346.396680px;}
.ya9{bottom:346.770000px;}
.y134{bottom:349.003590px;}
.y67{bottom:349.448010px;}
.ydf{bottom:356.367600px;}
.y2f{bottom:360.754170px;}
.ya6{bottom:363.330000px;}
.y109{bottom:363.591000px;}
.y133{bottom:366.288090px;}
.y66{bottom:366.732510px;}
.y2e{bottom:378.038670px;}
.ya5{bottom:378.900000px;}
.ya7{bottom:379.440000px;}
.y108{bottom:380.875500px;}
.yde{bottom:382.564890px;}
.y132{bottom:383.572590px;}
.y65{bottom:384.017010px;}
.y2d{bottom:395.323170px;}
.y107{bottom:398.160000px;}
.ydd{bottom:399.849390px;}
.y131{bottom:400.766910px;}
.y64{bottom:401.211330px;}
.y2c{bottom:412.517490px;}
.ydc{bottom:417.043710px;}
.y130{bottom:418.051410px;}
.y63{bottom:418.495830px;}
.y2b{bottom:429.801990px;}
.y106{bottom:429.930000px;}
.ydb{bottom:434.328210px;}
.y12f{bottom:435.335910px;}
.y62{bottom:435.638880px;}
.y105{bottom:445.410000px;}
.y2a{bottom:447.086490px;}
.y8a{bottom:450.574290px;}
.y12e{bottom:452.530230px;}
.y61{bottom:454.095720px;}
.yda{bottom:460.615680px;}
.y29{bottom:464.280810px;}
.y89{bottom:469.211490px;}
.y12d{bottom:469.814730px;}
.y60{bottom:471.380220px;}
.yd9{bottom:477.803340px;}
.y28{bottom:481.565310px;}
.y12c{bottom:487.009050px;}
.y5f{bottom:488.574540px;}
.y88{bottom:488.915820px;}
.yd8{bottom:496.170000px;}
.y27{bottom:498.759630px;}
.y12b{bottom:504.293550px;}
.y5e{bottom:505.859040px;}
.y87{bottom:508.620150px;}
.yd7{bottom:515.250000px;}
.y26{bottom:516.044130px;}
.y12a{bottom:521.578050px;}
.y5d{bottom:523.053360px;}
.y86{bottom:528.324480px;}
.yd5{bottom:531.810000px;}
.yd4{bottom:532.710000px;}
.y25{bottom:533.328630px;}
.yd3{bottom:535.860150px;}
.y129{bottom:538.772370px;}
.yd6{bottom:540.086580px;}
.y5c{bottom:540.337860px;}
.ycf{bottom:540.720000px;}
.yce{bottom:544.410000px;}
.y85{bottom:546.961680px;}
.y24{bottom:550.522950px;}
.yd1{bottom:551.790000px;}
.yd0{bottom:552.330000px;}
.y128{bottom:556.056870px;}
.y5b{bottom:557.622360px;}
.yd2{bottom:560.066580px;}
.y84{bottom:566.575830px;}
.ycd{bottom:572.400000px;}
.y127{bottom:573.341370px;}
.y5a{bottom:574.816680px;}
.y83{bottom:585.213030px;}
.ycb{bottom:586.260000px;}
.yc8{bottom:587.160000px;}
.yc4{bottom:589.770150px;}
.yc7{bottom:589.772700px;}
.y126{bottom:590.535690px;}
.y59{bottom:592.101180px;}
.ycc{bottom:594.536580px;}
.y23{bottom:594.801330px;}
.yc5{bottom:598.860150px;}
.y82{bottom:604.917360px;}
.yc9{bottom:606.240000px;}
.yc6{bottom:606.780150px;}
.y125{bottom:607.820190px;}
.y58{bottom:609.385680px;}
.yc3{bottom:609.390000px;}
.y22{bottom:612.085830px;}
.yca{bottom:614.516580px;}
.y81{bottom:623.554560px;}
.ya4{bottom:623.855340px;}
.y124{bottom:625.104690px;}
.y57{bottom:626.580000px;}
.yc2{bottom:635.767560px;}
.y21{bottom:636.030150px;}
.y80{bottom:641.831040px;}
.y123{bottom:642.299010px;}
.y3f{bottom:647.505000px;}
.ya3{bottom:650.142810px;}
.y20{bottom:653.310000px;}
.y7f{bottom:659.115540px;}
.y122{bottom:659.583510px;}
.yc1{bottom:662.040000px;}
.y56{bottom:662.310000px;}
.ya2{bottom:667.427310px;}
.y1f{bottom:670.590000px;}
.yc0{bottom:675.900000px;}
.y7e{bottom:676.400040px;}
.y121{bottom:676.868010px;}
.y55{bottom:683.010000px;}
.ybc{bottom:684.270000px;}
.ye{bottom:685.005000px;}
.y1e{bottom:687.780150px;}
.ybd{bottom:690.574950px;}
.ybf{bottom:691.560000px;}
.y7d{bottom:693.594360px;}
.ya1{bottom:693.880110px;}
.ybe{bottom:693.990000px;}
.y120{bottom:694.062330px;}
.y1d{bottom:705.060000px;}
.ybb{bottom:708.120000px;}
.y7c{bottom:710.878860px;}
.ya0{bottom:711.164610px;}
.y11f{bottom:711.346830px;}
.y54{bottom:721.171260px;}
.yba{bottom:721.980000px;}
.y1c{bottom:722.340000px;}
.y7b{bottom:728.163360px;}
.y11e{bottom:728.631330px;}
.yb6{bottom:730.350000px;}
.yb7{bottom:736.654950px;}
.yb9{bottom:737.640000px;}
.y9f{bottom:737.707590px;}
.y53{bottom:738.455760px;}
.y1b{bottom:739.530150px;}
.yb8{bottom:740.070000px;}
.y7a{bottom:745.357680px;}
.y11d{bottom:745.825650px;}
.y52{bottom:755.650080px;}
.y1a{bottom:756.810000px;}
.y79{bottom:762.642180px;}
.y11c{bottom:763.110150px;}
.yb5{bottom:763.191180px;}
.y9e{bottom:764.160390px;}
.y51{bottom:772.934580px;}
.y78{bottom:779.926680px;}
.yb4{bottom:780.385500px;}
.y9d{bottom:781.444890px;}
.y19{bottom:784.519920px;}
.y50{bottom:790.219080px;}
.y104{bottom:793.537560px;}
.y77{bottom:797.121000px;}
.y9c{bottom:798.729390px;}
.y11b{bottom:798.840000px;}
.y18{bottom:801.804420px;}
.y4f{bottom:807.413400px;}
.y76{bottom:814.405500px;}
.yb3{bottom:815.580000px;}
.y9b{bottom:815.923710px;}
.yd{bottom:817.544351px;}
.y103{bottom:819.810000px;}
.y4e{bottom:824.697900px;}
.y17{bottom:827.910000px;}
.y75{bottom:831.690000px;}
.yb1{bottom:832.140000px;}
.y11a{bottom:837.076860px;}
.yc{bottom:840.205495px;}
.y4d{bottom:841.982400px;}
.y9a{bottom:842.211180px;}
.y102{bottom:843.300000px;}
.y16{bottom:848.610000px;}
.y74{bottom:849.420000px;}
.yb2{bottom:850.945500px;}
.yb0{bottom:850.950000px;}
.y119{bottom:854.271180px;}
.y4c{bottom:859.176720px;}
.yaf{bottom:863.190000px;}
.y101{bottom:866.520000px;}
.y15{bottom:869.310000px;}
.y73{bottom:870.120000px;}
.y118{bottom:871.555680px;}
.y100{bottom:872.640000px;}
.yb{bottom:873.325629px;}
.y4b{bottom:876.461220px;}
.y99{bottom:876.690000px;}
.y14{bottom:881.094420px;}
.y117{bottom:888.750000px;}
.yff{bottom:889.830000px;}
.y4a{bottom:893.655540px;}
.yfe{bottom:895.950000px;}
.y98{bottom:901.350000px;}
.y13{bottom:907.200000px;}
.y49{bottom:910.940040px;}
.yfc{bottom:913.050000px;}
.yfd{bottom:922.140000px;}
.y116{bottom:924.480000px;}
.y4{bottom:924.748994px;}
.y48{bottom:928.224540px;}
.y97{bottom:929.790000px;}
.y3{bottom:938.694313px;}
.yfb{bottom:940.770000px;}
.y47{bottom:945.418860px;}
.y90{bottom:946.440000px;}
.y12{bottom:947.434500px;}
.y2{bottom:952.639633px;}
.y94{bottom:955.440000px;}
.y96{bottom:957.235500px;}
.yfa{bottom:960.487560px;}
.y46{bottom:962.703360px;}
.y92{bottom:964.980000px;}
.y11{bottom:971.550000px;}
.y95{bottom:972.720000px;}
.y45{bottom:979.987860px;}
.yf9{bottom:986.760000px;}
.y44{bottom:997.182180px;}
.yf8{bottom:1010.250000px;}
.y43{bottom:1014.466680px;}
.yf7{bottom:1016.370000px;}
.y10{bottom:1023.840000px;}
.ya{bottom:1024.980977px;}
.y42{bottom:1031.751180px;}
.yf4{bottom:1033.470000px;}
.y9{bottom:1041.541044px;}
.y41{bottom:1048.945500px;}
.yf{bottom:1054.890000px;}
.yf2{bottom:1056.780000px;}
.y8{bottom:1061.587441px;}
.yf1{bottom:1062.810000px;}
.y40{bottom:1066.230000px;}
.y7{bottom:1085.991750px;}
.y6{bottom:1112.139224px;}
.y5{bottom:1139.158280px;}
.h3c{height:15.478500px;}
.h3e{height:22.498500px;}
.h3b{height:22.500000px;}
.ha{height:26.226562px;}
.h3a{height:27.630000px;}
.h39{height:27.721500px;}
.h29{height:27.774141px;}
.h15{height:29.148000px;}
.h2f{height:30.088652px;}
.h16{height:30.156000px;}
.h8{height:30.988842px;}
.h38{height:31.050000px;}
.h27{height:34.203340px;}
.h28{height:35.043101px;}
.h35{height:36.068555px;}
.h4{height:36.153649px;}
.h21{height:36.281250px;}
.h2b{height:36.517852px;}
.h11{height:38.158594px;}
.h3{height:41.318456px;}
.h17{height:43.080000px;}
.h9{height:45.686582px;}
.h7{height:45.758079px;}
.h2d{height:46.507955px;}
.h20{height:46.528500px;}
.hf{height:46.968223px;}
.h26{height:47.061738px;}
.h3f{height:47.988281px;}
.h34{height:48.668555px;}
.h36{height:48.669155px;}
.h31{height:52.696393px;}
.h22{height:52.998047px;}
.h1f{height:54.421875px;}
.h10{height:58.975137px;}
.h12{height:59.004492px;}
.h3d{height:60.401250px;}
.h13{height:60.589687px;}
.h5{height:60.915443px;}
.h1d{height:62.703281px;}
.h1b{height:65.158594px;}
.h1c{height:65.185234px;}
.h18{height:65.363674px;}
.h32{height:65.560781px;}
.h24{height:70.664062px;}
.h14{height:72.562500px;}
.h37{height:76.298172px;}
.h30{height:76.298772px;}
.h6{height:78.442422px;}
.h2c{height:78.637252px;}
.h19{height:78.637852px;}
.he{height:91.860047px;}
.hd{height:91.878047px;}
.h2a{height:92.484492px;}
.h33{height:95.108555px;}
.h1a{height:107.013263px;}
.hc{height:108.843750px;}
.h2e{height:125.437852px;}
.h2{height:163.421712px;}
.h25{height:247.860000px;}
.h23{height:257.130000px;}
.h1e{height:285.478500px;}
.h40{height:351.088500px;}
.hb{height:1188.000000px;}
.h1{height:1262.050728px;}
.h0{height:1263.000000px;}
.w7{width:74.430000px;}
.wc{width:84.780000px;}
.w5{width:85.050000px;}
.wd{width:89.998500px;}
.we{width:92.160000px;}
.wf{width:93.508500px;}
.w11{width:93.510000px;}
.w10{width:93.601500px;}
.w4{width:106.020000px;}
.w6{width:127.530000px;}
.w8{width:201.600000px;}
.wb{width:334.530000px;}
.w2{width:339.750000px;}
.wa{width:339.840000px;}
.w9{width:373.950000px;}
.w3{width:378.450000px;}
.w12{width:701.190000px;}
.w0{width:892.500000px;}
.w1{width:918.000000px;}
.x0{left:0.000000px;}
.x61{left:5.310000px;}
.x33{left:9.900000px;}
.x3c{left:12.060000px;}
.x35{left:19.800000px;}
.x6a{left:21.870000px;}
.x2f{left:25.560000px;}
.x74{left:32.130000px;}
.x41{left:37.350000px;}
.x62{left:38.970000px;}
.x31{left:41.760000px;}
.x64{left:44.910000px;}
.x68{left:45.990000px;}
.x3a{left:52.560000px;}
.x37{left:60.660000px;}
.x43{left:67.770000px;}
.x2a{left:71.100000px;}
.x2d{left:95.850000px;}
.x49{left:97.560000px;}
.x29{left:99.900000px;}
.x76{left:102.780000px;}
.x1e{left:107.995680px;}
.xd{left:116.190000px;}
.xb{left:117.810000px;}
.x2e{left:119.160000px;}
.x5f{left:121.950000px;}
.x53{left:128.070000px;}
.x1c{left:129.683610px;}
.x4c{left:131.220000px;}
.x46{left:132.390000px;}
.x27{left:134.996310px;}
.x30{left:137.250000px;}
.x47{left:139.833540px;}
.x54{left:146.516580px;}
.x58{left:149.490000px;}
.x23{left:150.750000px;}
.x69{left:157.500000px;}
.x59{left:158.940000px;}
.x28{left:161.990190px;}
.x10{left:163.530000px;}
.x5d{left:173.700000px;}
.x4f{left:175.684320px;}
.x6{left:179.545988px;}
.x7{left:181.289152px;}
.x8{left:194.362889px;}
.x9{left:196.106054px;}
.x50{left:204.750000px;}
.x52{left:207.270000px;}
.x51{left:211.410000px;}
.xe{left:215.637120px;}
.x5a{left:218.430000px;}
.x32{left:225.180000px;}
.x12{left:227.880000px;}
.x77{left:230.580000px;}
.x5b{left:239.220000px;}
.x5c{left:241.557660px;}
.x57{left:243.540000px;}
.x6e{left:246.336120px;}
.x34{left:253.440000px;}
.xc{left:260.640000px;}
.x11{left:268.290000px;}
.x55{left:270.270000px;}
.x56{left:272.607660px;}
.x36{left:278.370000px;}
.x20{left:282.889650px;}
.xf{left:290.420190px;}
.x1f{left:293.278950px;}
.x38{left:310.230000px;}
.x65{left:312.573330px;}
.x6f{left:317.970000px;}
.x5e{left:328.846500px;}
.x25{left:329.940000px;}
.x14{left:342.630000px;}
.x39{left:345.150000px;}
.x78{left:359.010000px;}
.x6b{left:377.460000px;}
.x1d{left:387.000000px;}
.x24{left:396.450000px;}
.x19{left:398.160000px;}
.x70{left:411.570000px;}
.x17{left:414.810000px;}
.x16{left:421.380000px;}
.x18{left:424.350000px;}
.x15{left:426.510000px;}
.x21{left:430.252500px;}
.x1a{left:432.900000px;}
.x3b{left:437.760000px;}
.x2c{left:439.650000px;}
.x3d{left:450.990000px;}
.x13{left:459.021150px;}
.x6c{left:462.510000px;}
.x48{left:465.750000px;}
.x26{left:469.620000px;}
.x4e{left:471.955500px;}
.x4b{left:473.850000px;}
.x1b{left:485.999820px;}
.x71{left:505.080000px;}
.x3e{left:530.640000px;}
.x3f{left:543.424500px;}
.x6d{left:547.560000px;}
.x40{left:597.240000px;}
.x72{left:598.590000px;}
.x60{left:631.350000px;}
.x66{left:632.610000px;}
.x42{left:662.400000px;}
.x1{left:667.632167px;}
.x3{left:669.266384px;}
.x2{left:674.427791px;}
.x73{left:692.100000px;}
.x44{left:697.680000px;}
.x63{left:716.130000px;}
.x67{left:717.660000px;}
.x45{left:719.100000px;}
.x4{left:728.642940px;}
.x5{left:730.277157px;}
.x75{left:742.500000px;}
.x4d{left:795.780000px;}
.x4a{left:799.020000px;}
.x2b{left:810.000000px;}
.xa{left:870.750000px;}
.x22{left:896.250000px;}
@media print{
.v9{vertical-align:-71.857920pt;}
.vb{vertical-align:-63.680000pt;}
.v4{vertical-align:-61.135360pt;}
.v2{vertical-align:-34.560000pt;}
.v3{vertical-align:-29.440000pt;}
.v5{vertical-align:-24.000000pt;}
.vf{vertical-align:-22.417600pt;}
.ve{vertical-align:-13.120000pt;}
.vc{vertical-align:-12.160000pt;}
.v13{vertical-align:-9.279467pt;}
.va{vertical-align:-8.000000pt;}
.v12{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:9.279467pt;}
.v1a{vertical-align:11.200000pt;}
.vd{vertical-align:12.160000pt;}
.v16{vertical-align:13.120000pt;}
.v11{vertical-align:14.720000pt;}
.v1b{vertical-align:21.440000pt;}
.v6{vertical-align:24.182293pt;}
.v10{vertical-align:29.743360pt;}
.v8{vertical-align:32.310400pt;}
.v1{vertical-align:34.560000pt;}
.v7{vertical-align:37.440000pt;}
.v19{vertical-align:41.280000pt;}
.v18{vertical-align:50.571520pt;}
.v17{vertical-align:52.480000pt;}
.v15{vertical-align:79.040000pt;}
.ls45{letter-spacing:-0.587840pt;}
.ls2d{letter-spacing:-0.480960pt;}
.ls2e{letter-spacing:-0.427520pt;}
.ls2c{letter-spacing:-0.374080pt;}
.ls43{letter-spacing:-0.336000pt;}
.ls17{letter-spacing:-0.267200pt;}
.ls16{letter-spacing:-0.213760pt;}
.ls34{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.160320pt;}
.lse{letter-spacing:-0.149120pt;}
.ls44{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.106880pt;}
.ls33{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.074560pt;}
.ls70{letter-spacing:-0.058560pt;}
.ls15{letter-spacing:-0.053440pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4b{letter-spacing:0.017600pt;}
.ls14{letter-spacing:0.034560pt;}
.ls30{letter-spacing:0.053440pt;}
.ls7{letter-spacing:0.055680pt;}
.ls10{letter-spacing:0.074560pt;}
.ls2{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.106880pt;}
.ls1f{letter-spacing:0.109440pt;}
.ls28{letter-spacing:0.110080pt;}
.ls4e{letter-spacing:0.113920pt;}
.ls24{letter-spacing:0.124480pt;}
.ls50{letter-spacing:0.126080pt;}
.ls3{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.149120pt;}
.ls5{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.160320pt;}
.ls27{letter-spacing:0.162240pt;}
.ls5c{letter-spacing:0.213760pt;}
.ls18{letter-spacing:0.345600pt;}
.ls9{letter-spacing:0.374080pt;}
.ls32{letter-spacing:0.427520pt;}
.ls20{letter-spacing:0.480960pt;}
.ls1e{letter-spacing:0.587840pt;}
.ls1c{letter-spacing:0.694720pt;}
.ls73{letter-spacing:0.855040pt;}
.ls2a{letter-spacing:1.015360pt;}
.ls53{letter-spacing:1.136000pt;}
.lsc{letter-spacing:1.175680pt;}
.ls54{letter-spacing:1.408640pt;}
.ls4f{letter-spacing:1.723200pt;}
.ls5a{letter-spacing:1.731520pt;}
.ls5d{letter-spacing:1.977280pt;}
.ls59{letter-spacing:2.043200pt;}
.ls55{letter-spacing:2.051520pt;}
.ls57{letter-spacing:2.490240pt;}
.ls4a{letter-spacing:2.557760pt;}
.ls42{letter-spacing:3.901120pt;}
.ls3f{letter-spacing:5.504320pt;}
.ls71{letter-spacing:6.145600pt;}
.ls0{letter-spacing:6.197920pt;}
.ls5b{letter-spacing:6.786880pt;}
.ls1a{letter-spacing:7.107520pt;}
.ls1b{letter-spacing:7.428160pt;}
.lsb{letter-spacing:8.069440pt;}
.ls26{letter-spacing:9.672640pt;}
.lsa{letter-spacing:9.993280pt;}
.ls1d{letter-spacing:10.313920pt;}
.ls58{letter-spacing:10.560000pt;}
.ls2b{letter-spacing:12.558400pt;}
.lsd{letter-spacing:14.802880pt;}
.ls21{letter-spacing:15.444160pt;}
.ls47{letter-spacing:16.396800pt;}
.ls5e{letter-spacing:17.047360pt;}
.ls51{letter-spacing:17.622400pt;}
.ls52{letter-spacing:17.792000pt;}
.ls48{letter-spacing:18.542400pt;}
.ls4c{letter-spacing:18.859200pt;}
.ls46{letter-spacing:18.877760pt;}
.ls22{letter-spacing:19.392000pt;}
.ls49{letter-spacing:20.247680pt;}
.ls4d{letter-spacing:20.352000pt;}
.ls56{letter-spacing:20.410240pt;}
.ls74{letter-spacing:32.170880pt;}
.ls23{letter-spacing:36.352000pt;}
.ls31{letter-spacing:56.486080pt;}
.ls72{letter-spacing:58.730560pt;}
.ls41{letter-spacing:59.840000pt;}
.ls29{letter-spacing:62.471360pt;}
.ls6c{letter-spacing:68.016000pt;}
.ls5f{letter-spacing:74.064000pt;}
.ls40{letter-spacing:82.083840pt;}
.ls8{letter-spacing:82.618240pt;}
.ls62{letter-spacing:83.376000pt;}
.ls36{letter-spacing:95.123200pt;}
.ls6d{letter-spacing:101.904000pt;}
.ls6e{letter-spacing:102.240000pt;}
.ls6f{letter-spacing:102.576000pt;}
.ls61{letter-spacing:109.920000pt;}
.ls39{letter-spacing:119.759040pt;}
.ls69{letter-spacing:123.606720pt;}
.ls3e{letter-spacing:127.775040pt;}
.ls60{letter-spacing:129.456000pt;}
.ls6a{letter-spacing:132.584640pt;}
.ls3d{letter-spacing:134.134400pt;}
.ls6b{letter-spacing:142.203840pt;}
.ls65{letter-spacing:150.166400pt;}
.ls3a{letter-spacing:152.410880pt;}
.ls66{letter-spacing:158.823680pt;}
.ls37{letter-spacing:159.144320pt;}
.ls38{letter-spacing:164.541760pt;}
.ls67{letter-spacing:168.763520pt;}
.ls68{letter-spacing:169.725440pt;}
.ls64{letter-spacing:177.046720pt;}
.ls2f{letter-spacing:182.862080pt;}
.ls3c{letter-spacing:187.895040pt;}
.ls63{letter-spacing:196.285120pt;}
.ls3b{letter-spacing:210.339840pt;}
.ls35{letter-spacing:727.104640pt;}
.ls25{letter-spacing:1931.200000pt;}
.ws84{word-spacing:-58.560000pt;}
.ws85{word-spacing:-58.501440pt;}
.ws3d{word-spacing:-53.440000pt;}
.ws88{word-spacing:-45.676800pt;}
.ws3c{word-spacing:-45.440000pt;}
.ws89{word-spacing:-45.325440pt;}
.ws8b{word-spacing:-37.440000pt;}
.ws87{word-spacing:-26.688640pt;}
.wsd{word-spacing:-15.872000pt;}
.ws0{word-spacing:-13.775845pt;}
.ws5{word-spacing:-13.520320pt;}
.wsc{word-spacing:-13.466880pt;}
.wse{word-spacing:-13.360000pt;}
.ws7{word-spacing:-13.306560pt;}
.ws4{word-spacing:-13.253120pt;}
.ws3b{word-spacing:-13.199680pt;}
.ws9{word-spacing:-13.146240pt;}
.wsa{word-spacing:-13.092800pt;}
.ws2{word-spacing:-12.144000pt;}
.ws78{word-spacing:-12.077440pt;}
.ws3{word-spacing:-12.000000pt;}
.ws77{word-spacing:-11.904000pt;}
.ws8c{word-spacing:-11.856000pt;}
.ws75{word-spacing:-11.664000pt;}
.wsb{word-spacing:-8.985600pt;}
.ws6{word-spacing:-8.674560pt;}
.ws8{word-spacing:-8.640000pt;}
.ws76{word-spacing:-8.000000pt;}
.ws6c{word-spacing:-0.427520pt;}
.ws18{word-spacing:-0.374080pt;}
.ws3a{word-spacing:-0.320640pt;}
.ws15{word-spacing:-0.223680pt;}
.ws1a{word-spacing:-0.213760pt;}
.ws19{word-spacing:-0.160320pt;}
.ws13{word-spacing:-0.149120pt;}
.ws14{word-spacing:-0.144000pt;}
.ws1b{word-spacing:-0.106880pt;}
.wsf{word-spacing:-0.096000pt;}
.ws12{word-spacing:-0.074560pt;}
.ws86{word-spacing:-0.058560pt;}
.ws16{word-spacing:-0.053440pt;}
.ws8a{word-spacing:-0.045440pt;}
.ws1{word-spacing:0.000000pt;}
.ws33{word-spacing:0.053440pt;}
.ws11{word-spacing:0.074560pt;}
.ws7b{word-spacing:0.096000pt;}
.ws41{word-spacing:0.106880pt;}
.ws57{word-spacing:0.128000pt;}
.ws7c{word-spacing:0.144000pt;}
.ws10{word-spacing:0.149120pt;}
.ws64{word-spacing:0.160320pt;}
.ws17{word-spacing:0.213760pt;}
.ws73{word-spacing:0.240000pt;}
.ws1c{word-spacing:0.267200pt;}
.ws91{word-spacing:0.288000pt;}
.wsa6{word-spacing:0.320640pt;}
.ws74{word-spacing:0.336000pt;}
.ws4a{word-spacing:0.374080pt;}
.ws4d{word-spacing:0.480960pt;}
.ws81{word-spacing:0.534400pt;}
.ws30{word-spacing:0.587840pt;}
.ws80{word-spacing:0.694720pt;}
.ws82{word-spacing:0.801600pt;}
.ws2f{word-spacing:0.908480pt;}
.ws5c{word-spacing:1.175680pt;}
.ws53{word-spacing:1.389440pt;}
.ws97{word-spacing:1.442880pt;}
.ws54{word-spacing:1.496320pt;}
.ws66{word-spacing:1.710080pt;}
.ws8e{word-spacing:1.763520pt;}
.ws7f{word-spacing:1.816960pt;}
.wsa5{word-spacing:1.870400pt;}
.ws4c{word-spacing:2.030720pt;}
.ws8d{word-spacing:2.084160pt;}
.ws20{word-spacing:2.137600pt;}
.ws21{word-spacing:2.351360pt;}
.ws4b{word-spacing:2.458240pt;}
.ws5a{word-spacing:2.511680pt;}
.ws28{word-spacing:2.672000pt;}
.ws27{word-spacing:2.725440pt;}
.ws48{word-spacing:2.778880pt;}
.ws58{word-spacing:2.992640pt;}
.ws29{word-spacing:3.046080pt;}
.ws35{word-spacing:3.099520pt;}
.ws83{word-spacing:3.313280pt;}
.ws34{word-spacing:3.366720pt;}
.ws23{word-spacing:3.420160pt;}
.ws22{word-spacing:3.633920pt;}
.ws2a{word-spacing:3.687360pt;}
.ws96{word-spacing:3.740800pt;}
.ws72{word-spacing:3.954560pt;}
.ws9f{word-spacing:4.114880pt;}
.ws69{word-spacing:4.382080pt;}
.ws6a{word-spacing:4.595840pt;}
.ws42{word-spacing:4.649280pt;}
.ws37{word-spacing:4.702720pt;}
.wsa0{word-spacing:4.756160pt;}
.ws36{word-spacing:4.969920pt;}
.ws31{word-spacing:5.023360pt;}
.ws71{word-spacing:5.076800pt;}
.ws32{word-spacing:5.237120pt;}
.ws5b{word-spacing:5.290560pt;}
.ws9c{word-spacing:5.344000pt;}
.ws9d{word-spacing:5.397440pt;}
.ws2b{word-spacing:5.557760pt;}
.ws7d{word-spacing:5.611200pt;}
.ws95{word-spacing:5.664640pt;}
.wsa4{word-spacing:5.718080pt;}
.ws3f{word-spacing:6.038720pt;}
.ws65{word-spacing:6.199040pt;}
.ws40{word-spacing:6.305920pt;}
.ws3e{word-spacing:6.359360pt;}
.ws6f{word-spacing:6.519680pt;}
.ws2c{word-spacing:6.573120pt;}
.ws55{word-spacing:6.626560pt;}
.ws9e{word-spacing:6.680000pt;}
.ws49{word-spacing:6.840320pt;}
.ws56{word-spacing:6.893760pt;}
.ws94{word-spacing:6.947200pt;}
.wsa2{word-spacing:7.000640pt;}
.ws44{word-spacing:7.160960pt;}
.ws43{word-spacing:7.214400pt;}
.ws70{word-spacing:7.267840pt;}
.ws50{word-spacing:7.321280pt;}
.ws68{word-spacing:7.481600pt;}
.ws51{word-spacing:7.535040pt;}
.ws9a{word-spacing:7.588480pt;}
.wsa1{word-spacing:7.641920pt;}
.ws6d{word-spacing:7.802240pt;}
.ws45{word-spacing:7.855680pt;}
.wsa3{word-spacing:7.909120pt;}
.wsa9{word-spacing:7.962560pt;}
.ws67{word-spacing:8.122880pt;}
.ws24{word-spacing:8.176320pt;}
.wsab{word-spacing:8.229760pt;}
.wsaa{word-spacing:8.283200pt;}
.ws7e{word-spacing:8.443520pt;}
.ws25{word-spacing:8.496960pt;}
.ws1e{word-spacing:8.550400pt;}
.ws1f{word-spacing:8.817600pt;}
.ws6e{word-spacing:8.871040pt;}
.ws62{word-spacing:9.405440pt;}
.ws99{word-spacing:9.512320pt;}
.ws98{word-spacing:9.726080pt;}
.ws61{word-spacing:9.779520pt;}
.ws52{word-spacing:9.832960pt;}
.ws1d{word-spacing:10.046720pt;}
.ws63{word-spacing:10.100160pt;}
.ws7a{word-spacing:11.115520pt;}
.ws59{word-spacing:11.329280pt;}
.ws79{word-spacing:11.382720pt;}
.wsa8{word-spacing:11.489600pt;}
.wsa7{word-spacing:11.703360pt;}
.ws5d{word-spacing:11.756800pt;}
.ws9b{word-spacing:12.291200pt;}
.ws4f{word-spacing:12.398080pt;}
.ws4e{word-spacing:12.665280pt;}
.ws5f{word-spacing:13.947840pt;}
.ws47{word-spacing:14.001280pt;}
.wsac{word-spacing:14.054720pt;}
.wsae{word-spacing:14.161600pt;}
.ws46{word-spacing:14.215040pt;}
.ws39{word-spacing:14.268480pt;}
.ws5e{word-spacing:14.321920pt;}
.wsad{word-spacing:14.375360pt;}
.ws6b{word-spacing:14.535680pt;}
.ws38{word-spacing:14.589120pt;}
.ws60{word-spacing:15.497600pt;}
.ws26{word-spacing:15.551040pt;}
.ws93{word-spacing:15.925120pt;}
.ws92{word-spacing:15.978560pt;}
.ws90{word-spacing:17.100800pt;}
.ws8f{word-spacing:17.154240pt;}
.ws2e{word-spacing:17.421440pt;}
.ws2d{word-spacing:17.474880pt;}
._15{margin-left:-7.617057pt;}
._16{margin-left:-6.345600pt;}
._4{margin-left:-4.140016pt;}
._3{margin-left:-2.393823pt;}
._0{margin-left:-0.895793pt;}
._5{width:0.894720pt;}
._1{width:2.479169pt;}
._8{width:3.795840pt;}
._6{width:6.890862pt;}
._7{width:7.820498pt;}
._b{width:8.894193pt;}
._9{width:10.100160pt;}
._23{width:11.503360pt;}
._24{width:14.642560pt;}
._a{width:15.764800pt;}
._2{width:20.258229pt;}
._c{width:45.984000pt;}
._f{width:52.704000pt;}
._14{width:72.528000pt;}
._22{width:85.936000pt;}
._13{width:91.104000pt;}
._10{width:146.784000pt;}
._d{width:161.216000pt;}
._e{width:177.744000pt;}
._1d{width:185.712000pt;}
._1e{width:194.640000pt;}
._12{width:200.160000pt;}
._1f{width:204.240000pt;}
._1c{width:212.256000pt;}
._21{width:221.348480pt;}
._1b{width:231.792000pt;}
._20{width:234.494720pt;}
._11{width:271.536000pt;}
._18{width:1677.819200pt;}
._17{width:1680.727777pt;}
._19{width:1734.181440pt;}
._1a{width:1844.855680pt;}
.fs6{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fs4{font-size:37.187518pt;}
.fse{font-size:37.333333pt;}
.fs13{font-size:37.440000pt;}
.fsa{font-size:42.560000pt;}
.fs2{font-size:43.385438pt;}
.fs12{font-size:44.862179pt;}
.fs10{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:49.583358pt;}
.fsf{font-size:53.333333pt;}
.fsb{font-size:53.440000pt;}
.fs5{font-size:55.781278pt;}
.fs11{font-size:58.560000pt;}
.fsc{font-size:64.000000pt;}
.fs14{font-size:67.461923pt;}
.fs3{font-size:74.375037pt;}
.fs8{font-size:74.560000pt;}
.fs7{font-size:96.000000pt;}
.fs0{font-size:154.947994pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.843797pt;}
.yef{bottom:1.120000pt;}
.ye4{bottom:1.200000pt;}
.y93{bottom:2.640000pt;}
.yed{bottom:2.720000pt;}
.y8d{bottom:2.880000pt;}
.yf3{bottom:3.040000pt;}
.yf6{bottom:3.120000pt;}
.ya8{bottom:3.360000pt;}
.yf5{bottom:5.440000pt;}
.ye2{bottom:16.480000pt;}
.y91{bottom:30.240000pt;}
.y3e{bottom:32.000000pt;}
.y3d{bottom:53.333333pt;}
.y3c{bottom:64.533333pt;}
.y3b{bottom:75.733333pt;}
.yee{bottom:98.640000pt;}
.y115{bottom:104.140160pt;}
.yf0{bottom:106.720000pt;}
.y3a{bottom:109.011760pt;}
.y72{bottom:109.020320pt;}
.y141{bottom:110.894213pt;}
.y114{bottom:119.504160pt;}
.y8f{bottom:119.600000pt;}
.yec{bottom:123.200000pt;}
.y39{bottom:124.295600pt;}
.y71{bottom:124.384320pt;}
.y140{bottom:126.178053pt;}
.y8c{bottom:131.840000pt;}
.yeb{bottom:132.800000pt;}
.y113{bottom:134.868160pt;}
.y38{bottom:139.659600pt;}
.y70{bottom:139.748320pt;}
.y13f{bottom:141.542053pt;}
.y8b{bottom:145.548240pt;}
.y8e{bottom:145.680000pt;}
.y112{bottom:150.152000pt;}
.yea{bottom:154.566720pt;}
.y37{bottom:155.023600pt;}
.y13e{bottom:156.906053pt;}
.y111{bottom:165.516000pt;}
.y36{bottom:170.307440pt;}
.y6f{bottom:170.396160pt;}
.y13d{bottom:172.189893pt;}
.ye9{bottom:177.920000pt;}
.y110{bottom:180.880000pt;}
.y35{bottom:185.671440pt;}
.y6e{bottom:185.674080pt;}
.y13c{bottom:187.553893pt;}
.y34{bottom:201.035440pt;}
.y6d{bottom:202.000000pt;}
.y13b{bottom:202.917893pt;}
.ye8{bottom:204.240000pt;}
.y10f{bottom:212.640000pt;}
.yae{bottom:215.660320pt;}
.y33{bottom:216.319280pt;}
.y13a{bottom:218.201733pt;}
.ye7{bottom:224.880000pt;}
.y6c{bottom:225.762400pt;}
.yad{bottom:230.944160pt;}
.y32{bottom:231.683280pt;}
.y139{bottom:233.565733pt;}
.y6b{bottom:233.840000pt;}
.ye6{bottom:245.600000pt;}
.yac{bottom:246.308160pt;}
.y10e{bottom:246.532320pt;}
.y138{bottom:248.929733pt;}
.ye3{bottom:260.800000pt;}
.yab{bottom:261.672160pt;}
.y10d{bottom:261.896320pt;}
.y31{bottom:263.440000pt;}
.y137{bottom:264.213573pt;}
.y6a{bottom:264.608613pt;}
.ye5{bottom:268.880000pt;}
.yaa{bottom:276.956000pt;}
.y10c{bottom:277.260320pt;}
.y136{bottom:279.577573pt;}
.y69{bottom:279.972613pt;}
.ye1{bottom:285.440000pt;}
.y10b{bottom:292.544160pt;}
.y135{bottom:294.941573pt;}
.ye0{bottom:294.960000pt;}
.y68{bottom:295.336613pt;}
.y30{bottom:305.386533pt;}
.y10a{bottom:307.908160pt;}
.ya9{bottom:308.240000pt;}
.y134{bottom:310.225413pt;}
.y67{bottom:310.620453pt;}
.ydf{bottom:316.771200pt;}
.y2f{bottom:320.670373pt;}
.ya6{bottom:322.960000pt;}
.y109{bottom:323.192000pt;}
.y133{bottom:325.589413pt;}
.y66{bottom:325.984453pt;}
.y2e{bottom:336.034373pt;}
.ya5{bottom:336.800000pt;}
.ya7{bottom:337.280000pt;}
.y108{bottom:338.556000pt;}
.yde{bottom:340.057680pt;}
.y132{bottom:340.953413pt;}
.y65{bottom:341.348453pt;}
.y2d{bottom:351.398373pt;}
.y107{bottom:353.920000pt;}
.ydd{bottom:355.421680pt;}
.y131{bottom:356.237253pt;}
.y64{bottom:356.632293pt;}
.y2c{bottom:366.682213pt;}
.ydc{bottom:370.705520pt;}
.y130{bottom:371.601253pt;}
.y63{bottom:371.996293pt;}
.y2b{bottom:382.046213pt;}
.y106{bottom:382.160000pt;}
.ydb{bottom:386.069520pt;}
.y12f{bottom:386.965253pt;}
.y62{bottom:387.234560pt;}
.y105{bottom:395.920000pt;}
.y2a{bottom:397.410213pt;}
.y8a{bottom:400.510480pt;}
.y12e{bottom:402.249093pt;}
.y61{bottom:403.640640pt;}
.yda{bottom:409.436160pt;}
.y29{bottom:412.694053pt;}
.y89{bottom:417.076880pt;}
.y12d{bottom:417.613093pt;}
.y60{bottom:419.004640pt;}
.yd9{bottom:424.714080pt;}
.y28{bottom:428.058053pt;}
.y12c{bottom:432.896933pt;}
.y5f{bottom:434.288480pt;}
.y88{bottom:434.591840pt;}
.yd8{bottom:441.040000pt;}
.y27{bottom:443.341893pt;}
.y12b{bottom:448.260933pt;}
.y5e{bottom:449.652480pt;}
.y87{bottom:452.106800pt;}
.yd7{bottom:458.000000pt;}
.y26{bottom:458.705893pt;}
.y12a{bottom:463.624933pt;}
.y5d{bottom:464.936320pt;}
.y86{bottom:469.621760pt;}
.yd5{bottom:472.720000pt;}
.yd4{bottom:473.520000pt;}
.y25{bottom:474.069893pt;}
.yd3{bottom:476.320133pt;}
.y129{bottom:478.908773pt;}
.yd6{bottom:480.076960pt;}
.y5c{bottom:480.300320pt;}
.ycf{bottom:480.640000pt;}
.yce{bottom:483.920000pt;}
.y85{bottom:486.188160pt;}
.y24{bottom:489.353733pt;}
.yd1{bottom:490.480000pt;}
.yd0{bottom:490.960000pt;}
.y128{bottom:494.272773pt;}
.y5b{bottom:495.664320pt;}
.yd2{bottom:497.836960pt;}
.y84{bottom:503.622960pt;}
.ycd{bottom:508.800000pt;}
.y127{bottom:509.636773pt;}
.y5a{bottom:510.948160pt;}
.y83{bottom:520.189360pt;}
.ycb{bottom:521.120000pt;}
.yc8{bottom:521.920000pt;}
.yc4{bottom:524.240133pt;}
.yc7{bottom:524.242400pt;}
.y126{bottom:524.920613pt;}
.y59{bottom:526.312160pt;}
.ycc{bottom:528.476960pt;}
.y23{bottom:528.712293pt;}
.yc5{bottom:532.320133pt;}
.y82{bottom:537.704320pt;}
.yc9{bottom:538.880000pt;}
.yc6{bottom:539.360133pt;}
.y125{bottom:540.284613pt;}
.y58{bottom:541.676160pt;}
.yc3{bottom:541.680000pt;}
.y22{bottom:544.076293pt;}
.yca{bottom:546.236960pt;}
.y81{bottom:554.270720pt;}
.ya4{bottom:554.538080pt;}
.y124{bottom:555.648613pt;}
.y57{bottom:556.960000pt;}
.yc2{bottom:565.126720pt;}
.y21{bottom:565.360133pt;}
.y80{bottom:570.516480pt;}
.y123{bottom:570.932453pt;}
.y3f{bottom:575.560000pt;}
.ya3{bottom:577.904720pt;}
.y20{bottom:580.720000pt;}
.y7f{bottom:585.880480pt;}
.y122{bottom:586.296453pt;}
.yc1{bottom:588.480000pt;}
.y56{bottom:588.720000pt;}
.ya2{bottom:593.268720pt;}
.y1f{bottom:596.080000pt;}
.yc0{bottom:600.800000pt;}
.y7e{bottom:601.244480pt;}
.y121{bottom:601.660453pt;}
.y55{bottom:607.120000pt;}
.ybc{bottom:608.240000pt;}
.ye{bottom:608.893333pt;}
.y1e{bottom:611.360133pt;}
.ybd{bottom:613.844400pt;}
.ybf{bottom:614.720000pt;}
.y7d{bottom:616.528320pt;}
.ya1{bottom:616.782320pt;}
.ybe{bottom:616.880000pt;}
.y120{bottom:616.944293pt;}
.y1d{bottom:626.720000pt;}
.ybb{bottom:629.440000pt;}
.y7c{bottom:631.892320pt;}
.ya0{bottom:632.146320pt;}
.y11f{bottom:632.308293pt;}
.y54{bottom:641.041120pt;}
.yba{bottom:641.760000pt;}
.y1c{bottom:642.080000pt;}
.y7b{bottom:647.256320pt;}
.y11e{bottom:647.672293pt;}
.yb6{bottom:649.200000pt;}
.yb7{bottom:654.804400pt;}
.yb9{bottom:655.680000pt;}
.y9f{bottom:655.740080pt;}
.y53{bottom:656.405120pt;}
.y1b{bottom:657.360133pt;}
.yb8{bottom:657.840000pt;}
.y7a{bottom:662.540160pt;}
.y11d{bottom:662.956133pt;}
.y52{bottom:671.688960pt;}
.y1a{bottom:672.720000pt;}
.y79{bottom:677.904160pt;}
.y11c{bottom:678.320133pt;}
.yb5{bottom:678.392160pt;}
.y9e{bottom:679.253680pt;}
.y51{bottom:687.052960pt;}
.y78{bottom:693.268160pt;}
.yb4{bottom:693.676000pt;}
.y9d{bottom:694.617680pt;}
.y19{bottom:697.351040pt;}
.y50{bottom:702.416960pt;}
.y104{bottom:705.366720pt;}
.y77{bottom:708.552000pt;}
.y9c{bottom:709.981680pt;}
.y11b{bottom:710.080000pt;}
.y18{bottom:712.715040pt;}
.y4f{bottom:717.700800pt;}
.y76{bottom:723.916000pt;}
.yb3{bottom:724.960000pt;}
.y9b{bottom:725.265520pt;}
.yd{bottom:726.706090pt;}
.y103{bottom:728.720000pt;}
.y4e{bottom:733.064800pt;}
.y17{bottom:735.920000pt;}
.y75{bottom:739.280000pt;}
.yb1{bottom:739.680000pt;}
.y11a{bottom:744.068320pt;}
.yc{bottom:746.849329pt;}
.y4d{bottom:748.428800pt;}
.y9a{bottom:748.632160pt;}
.y102{bottom:749.600000pt;}
.y16{bottom:754.320000pt;}
.y74{bottom:755.040000pt;}
.yb2{bottom:756.396000pt;}
.yb0{bottom:756.400000pt;}
.y119{bottom:759.352160pt;}
.y4c{bottom:763.712640pt;}
.yaf{bottom:767.280000pt;}
.y101{bottom:770.240000pt;}
.y15{bottom:772.720000pt;}
.y73{bottom:773.440000pt;}
.y118{bottom:774.716160pt;}
.y100{bottom:775.680000pt;}
.yb{bottom:776.289448pt;}
.y4b{bottom:779.076640pt;}
.y99{bottom:779.280000pt;}
.y14{bottom:783.195040pt;}
.y117{bottom:790.000000pt;}
.yff{bottom:790.960000pt;}
.y4a{bottom:794.360480pt;}
.yfe{bottom:796.400000pt;}
.y98{bottom:801.200000pt;}
.y13{bottom:806.400000pt;}
.y49{bottom:809.724480pt;}
.yfc{bottom:811.600000pt;}
.yfd{bottom:819.680000pt;}
.y116{bottom:821.760000pt;}
.y4{bottom:821.999106pt;}
.y48{bottom:825.088480pt;}
.y97{bottom:826.480000pt;}
.y3{bottom:834.394945pt;}
.yfb{bottom:836.240000pt;}
.y47{bottom:840.372320pt;}
.y90{bottom:841.280000pt;}
.y12{bottom:842.164000pt;}
.y2{bottom:846.790785pt;}
.y94{bottom:849.280000pt;}
.y96{bottom:850.876000pt;}
.yfa{bottom:853.766720pt;}
.y46{bottom:855.736320pt;}
.y92{bottom:857.760000pt;}
.y11{bottom:863.600000pt;}
.y95{bottom:864.640000pt;}
.y45{bottom:871.100320pt;}
.yf9{bottom:877.120000pt;}
.y44{bottom:886.384160pt;}
.yf8{bottom:898.000000pt;}
.y43{bottom:901.748160pt;}
.yf7{bottom:903.440000pt;}
.y10{bottom:910.080000pt;}
.ya{bottom:911.094202pt;}
.y42{bottom:917.112160pt;}
.yf4{bottom:918.640000pt;}
.y9{bottom:925.814261pt;}
.y41{bottom:932.396000pt;}
.yf{bottom:937.680000pt;}
.yf2{bottom:939.360000pt;}
.y8{bottom:943.633281pt;}
.yf1{bottom:944.720000pt;}
.y40{bottom:947.760000pt;}
.y7{bottom:965.326000pt;}
.y6{bottom:988.568199pt;}
.y5{bottom:1012.585138pt;}
.h3c{height:13.758667pt;}
.h3e{height:19.998667pt;}
.h3b{height:20.000000pt;}
.ha{height:23.312500pt;}
.h3a{height:24.560000pt;}
.h39{height:24.641333pt;}
.h29{height:24.688125pt;}
.h15{height:25.909333pt;}
.h2f{height:26.745469pt;}
.h16{height:26.805333pt;}
.h8{height:27.545637pt;}
.h38{height:27.600000pt;}
.h27{height:30.402969pt;}
.h28{height:31.149423pt;}
.h35{height:32.060937pt;}
.h4{height:32.136577pt;}
.h21{height:32.250000pt;}
.h2b{height:32.460313pt;}
.h11{height:33.918750pt;}
.h3{height:36.727517pt;}
.h17{height:38.293333pt;}
.h9{height:40.610295pt;}
.h7{height:40.673848pt;}
.h2d{height:41.340404pt;}
.h20{height:41.358667pt;}
.hf{height:41.749531pt;}
.h26{height:41.832656pt;}
.h3f{height:42.656250pt;}
.h34{height:43.260938pt;}
.h36{height:43.261471pt;}
.h31{height:46.841238pt;}
.h22{height:47.109375pt;}
.h1f{height:48.375000pt;}
.h10{height:52.422344pt;}
.h12{height:52.448437pt;}
.h3d{height:53.690000pt;}
.h13{height:53.857500pt;}
.h5{height:54.147061pt;}
.h1d{height:55.736250pt;}
.h1b{height:57.918750pt;}
.h1c{height:57.942430pt;}
.h18{height:58.101043pt;}
.h32{height:58.276250pt;}
.h24{height:62.812500pt;}
.h14{height:64.500000pt;}
.h37{height:67.820597pt;}
.h30{height:67.821131pt;}
.h6{height:69.726597pt;}
.h2c{height:69.899779pt;}
.h19{height:69.900312pt;}
.he{height:81.653375pt;}
.hd{height:81.669375pt;}
.h2a{height:82.208437pt;}
.h33{height:84.540938pt;}
.h1a{height:95.122900pt;}
.hc{height:96.750000pt;}
.h2e{height:111.500313pt;}
.h2{height:145.263744pt;}
.h25{height:220.320000pt;}
.h23{height:228.560000pt;}
.h1e{height:253.758667pt;}
.h40{height:312.078667pt;}
.hb{height:1056.000000pt;}
.h1{height:1121.822869pt;}
.h0{height:1122.666667pt;}
.w7{width:66.160000pt;}
.wc{width:75.360000pt;}
.w5{width:75.600000pt;}
.wd{width:79.998667pt;}
.we{width:81.920000pt;}
.wf{width:83.118667pt;}
.w11{width:83.120000pt;}
.w10{width:83.201333pt;}
.w4{width:94.240000pt;}
.w6{width:113.360000pt;}
.w8{width:179.200000pt;}
.wb{width:297.360000pt;}
.w2{width:302.000000pt;}
.wa{width:302.080000pt;}
.w9{width:332.400000pt;}
.w3{width:336.400000pt;}
.w12{width:623.280000pt;}
.w0{width:793.333333pt;}
.w1{width:816.000000pt;}
.x0{left:0.000000pt;}
.x61{left:4.720000pt;}
.x33{left:8.800000pt;}
.x3c{left:10.720000pt;}
.x35{left:17.600000pt;}
.x6a{left:19.440000pt;}
.x2f{left:22.720000pt;}
.x74{left:28.560000pt;}
.x41{left:33.200000pt;}
.x62{left:34.640000pt;}
.x31{left:37.120000pt;}
.x64{left:39.920000pt;}
.x68{left:40.880000pt;}
.x3a{left:46.720000pt;}
.x37{left:53.920000pt;}
.x43{left:60.240000pt;}
.x2a{left:63.200000pt;}
.x2d{left:85.200000pt;}
.x49{left:86.720000pt;}
.x29{left:88.800000pt;}
.x76{left:91.360000pt;}
.x1e{left:95.996160pt;}
.xd{left:103.280000pt;}
.xb{left:104.720000pt;}
.x2e{left:105.920000pt;}
.x5f{left:108.400000pt;}
.x53{left:113.840000pt;}
.x1c{left:115.274320pt;}
.x4c{left:116.640000pt;}
.x46{left:117.680000pt;}
.x27{left:119.996720pt;}
.x30{left:122.000000pt;}
.x47{left:124.296480pt;}
.x54{left:130.236960pt;}
.x58{left:132.880000pt;}
.x23{left:134.000000pt;}
.x69{left:140.000000pt;}
.x59{left:141.280000pt;}
.x28{left:143.991280pt;}
.x10{left:145.360000pt;}
.x5d{left:154.400000pt;}
.x4f{left:156.163840pt;}
.x6{left:159.596433pt;}
.x7{left:161.145913pt;}
.x8{left:172.767013pt;}
.x9{left:174.316493pt;}
.x50{left:182.000000pt;}
.x52{left:184.240000pt;}
.x51{left:187.920000pt;}
.xe{left:191.677440pt;}
.x5a{left:194.160000pt;}
.x32{left:200.160000pt;}
.x12{left:202.560000pt;}
.x77{left:204.960000pt;}
.x5b{left:212.640000pt;}
.x5c{left:214.717920pt;}
.x57{left:216.480000pt;}
.x6e{left:218.965440pt;}
.x34{left:225.280000pt;}
.xc{left:231.680000pt;}
.x11{left:238.480000pt;}
.x55{left:240.240000pt;}
.x56{left:242.317920pt;}
.x36{left:247.440000pt;}
.x20{left:251.457467pt;}
.xf{left:258.151280pt;}
.x1f{left:260.692400pt;}
.x38{left:275.760000pt;}
.x65{left:277.842960pt;}
.x6f{left:282.640000pt;}
.x5e{left:292.308000pt;}
.x25{left:293.280000pt;}
.x14{left:304.560000pt;}
.x39{left:306.800000pt;}
.x78{left:319.120000pt;}
.x6b{left:335.520000pt;}
.x1d{left:344.000000pt;}
.x24{left:352.400000pt;}
.x19{left:353.920000pt;}
.x70{left:365.840000pt;}
.x17{left:368.720000pt;}
.x16{left:374.560000pt;}
.x18{left:377.200000pt;}
.x15{left:379.120000pt;}
.x21{left:382.446667pt;}
.x1a{left:384.800000pt;}
.x3b{left:389.120000pt;}
.x2c{left:390.800000pt;}
.x3d{left:400.880000pt;}
.x13{left:408.018800pt;}
.x6c{left:411.120000pt;}
.x48{left:414.000000pt;}
.x26{left:417.440000pt;}
.x4e{left:419.516000pt;}
.x4b{left:421.200000pt;}
.x1b{left:431.999840pt;}
.x71{left:448.960000pt;}
.x3e{left:471.680000pt;}
.x3f{left:483.044000pt;}
.x6d{left:486.720000pt;}
.x40{left:530.880000pt;}
.x72{left:532.080000pt;}
.x60{left:561.200000pt;}
.x66{left:562.320000pt;}
.x42{left:588.800000pt;}
.x1{left:593.450815pt;}
.x3{left:594.903453pt;}
.x2{left:599.491370pt;}
.x73{left:615.200000pt;}
.x44{left:620.160000pt;}
.x63{left:636.560000pt;}
.x67{left:637.920000pt;}
.x45{left:639.200000pt;}
.x4{left:647.682613pt;}
.x5{left:649.135250pt;}
.x75{left:660.000000pt;}
.x4d{left:707.360000pt;}
.x4a{left:710.240000pt;}
.x2b{left:720.000000pt;}
.xa{left:774.000000pt;}
.x22{left:796.666667pt;}
}




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