
    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_4234dd6702f04253fb7d646f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_5fe8e8dce071126eeb576a91.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_1b5d5c06ac2d753068c7115c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.184000;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_acf523e496346c4fcf49a911.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166000;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_89dc3e371f6d1bc782234673.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.200900;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_f6a82ba006aeee91f04b5b3a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172000;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_484e6a9ae0c91d504dd9e135.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.196000;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_5e077456d74724ab48ffb217.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_5e077456d74724ab48ffb217.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.698000;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_1e340da80c5c10cbbe63c445.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.135000;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_7d7de85c098e2abfbefc107f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.156000;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_cc1301b6244506be70a2a325.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.156000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls43{letter-spacing:-3.120000px;}
.ls2e{letter-spacing:-2.760000px;}
.ls27{letter-spacing:-1.680000px;}
.ls2c{letter-spacing:-1.620000px;}
.ls12{letter-spacing:-1.500000px;}
.ls11{letter-spacing:-1.479000px;}
.ls31{letter-spacing:-1.260000px;}
.ls46{letter-spacing:-0.720000px;}
.ls47{letter-spacing:-0.660000px;}
.ls45{letter-spacing:-0.600000px;}
.ls49{letter-spacing:-0.510000px;}
.ls41{letter-spacing:-0.378000px;}
.ls2b{letter-spacing:-0.324000px;}
.ls24{letter-spacing:-0.300000px;}
.ls25{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.223200px;}
.ls2d{letter-spacing:-0.204000px;}
.ls26{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.167400px;}
.ls2f{letter-spacing:-0.120000px;}
.ls28{letter-spacing:-0.111600px;}
.ls3a{letter-spacing:-0.069960px;}
.ls3b{letter-spacing:-0.060000px;}
.ls10{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.006000px;}
.ls1c{letter-spacing:0.060000px;}
.ls44{letter-spacing:0.090000px;}
.ls1b{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.146400px;}
.ls34{letter-spacing:0.150000px;}
.lsd{letter-spacing:0.180000px;}
.ls33{letter-spacing:0.188280px;}
.ls3c{letter-spacing:0.209880px;}
.ls14{letter-spacing:0.222000px;}
.lse{letter-spacing:0.240000px;}
.ls1a{letter-spacing:0.300000px;}
.ls19{letter-spacing:0.330000px;}
.ls15{letter-spacing:0.333000px;}
.ls3d{letter-spacing:0.334800px;}
.ls9{letter-spacing:0.342000px;}
.ls5{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.362700px;}
.ls1f{letter-spacing:0.390600px;}
.ls2{letter-spacing:0.408000px;}
.ls3e{letter-spacing:0.414000px;}
.lsc{letter-spacing:0.420000px;}
.ls39{letter-spacing:0.432000px;}
.ls2a{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.510000px;}
.lsb{letter-spacing:0.540000px;}
.ls37{letter-spacing:0.558000px;}
.ls6{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.720000px;}
.ls40{letter-spacing:0.780000px;}
.ls22{letter-spacing:0.810000px;}
.ls0{letter-spacing:0.816000px;}
.ls18{letter-spacing:0.840000px;}
.ls3{letter-spacing:0.867000px;}
.ls38{letter-spacing:0.892800px;}
.lsa{letter-spacing:0.900000px;}
.ls4{letter-spacing:0.918000px;}
.ls3f{letter-spacing:1.020000px;}
.ls1d{letter-spacing:1.062000px;}
.ls23{letter-spacing:1.200000px;}
.ls21{letter-spacing:1.674000px;}
.ls30{letter-spacing:1.728000px;}
.ls32{letter-spacing:1.740000px;}
.ls48{letter-spacing:1.785000px;}
.ls35{letter-spacing:32.308200px;}
.ls42{letter-spacing:35.544600px;}
.ls36{letter-spacing:41.738400px;}
.ls1e{letter-spacing:52.005600px;}
.lsf{letter-spacing:57.418200px;}
.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:-15.000000px;}
.ws69{word-spacing:-14.526000px;}
.ws29{word-spacing:-14.472000px;}
.wsb2{word-spacing:-13.056000px;}
.ws84{word-spacing:-12.889800px;}
.ws97{word-spacing:-12.840000px;}
.wsaf{word-spacing:-12.660000px;}
.ws5{word-spacing:-12.540000px;}
.ws96{word-spacing:-12.420000px;}
.wsb1{word-spacing:-12.138000px;}
.ws2e{word-spacing:-11.997000px;}
.ws6a{word-spacing:-11.940000px;}
.ws2c{word-spacing:-11.773800px;}
.wsa6{word-spacing:-11.760000px;}
.ws52{word-spacing:-11.700000px;}
.ws81{word-spacing:-11.640000px;}
.wsa7{word-spacing:-11.580000px;}
.ws10{word-spacing:-11.577000px;}
.ws2d{word-spacing:-11.550600px;}
.ws4e{word-spacing:-11.520000px;}
.ws2{word-spacing:-11.460000px;}
.ws7f{word-spacing:-11.400000px;}
.ws80{word-spacing:-11.340000px;}
.ws4{word-spacing:-11.280000px;}
.ws51{word-spacing:-11.160000px;}
.ws6b{word-spacing:-11.100000px;}
.wsb0{word-spacing:-11.040000px;}
.ws6c{word-spacing:-10.965000px;}
.wsb4{word-spacing:-10.659000px;}
.ws4f{word-spacing:-10.557000px;}
.ws1{word-spacing:-10.455000px;}
.ws50{word-spacing:-10.353000px;}
.wsb3{word-spacing:-10.200000px;}
.wsa5{word-spacing:-10.140000px;}
.ws0{word-spacing:-9.792000px;}
.ws3{word-spacing:-9.780000px;}
.ws2a{word-spacing:-9.600000px;}
.ws83{word-spacing:-9.315000px;}
.ws6{word-spacing:-8.901000px;}
.ws98{word-spacing:-8.778000px;}
.ws82{word-spacing:-7.520700px;}
.ws2b{word-spacing:-7.310820px;}
.ws7e{word-spacing:-7.240860px;}
.ws54{word-spacing:-5.643000px;}
.wsa9{word-spacing:-2.520000px;}
.ws34{word-spacing:-2.160000px;}
.wsac{word-spacing:-2.100000px;}
.ws35{word-spacing:-1.980000px;}
.ws16{word-spacing:-1.920000px;}
.ws45{word-spacing:-1.897200px;}
.ws13{word-spacing:-1.860000px;}
.ws26{word-spacing:-1.841400px;}
.ws44{word-spacing:-1.729800px;}
.ws58{word-spacing:-1.680000px;}
.ws27{word-spacing:-1.674000px;}
.ws42{word-spacing:-1.620000px;}
.wsb{word-spacing:-1.581000px;}
.ws7c{word-spacing:-1.562400px;}
.ws3c{word-spacing:-1.560000px;}
.ws43{word-spacing:-1.440000px;}
.wsd{word-spacing:-1.428000px;}
.wsb6{word-spacing:-1.380000px;}
.ws9c{word-spacing:-1.320000px;}
.ws8a{word-spacing:-1.260000px;}
.ws30{word-spacing:-1.200000px;}
.ws8f{word-spacing:-1.060200px;}
.ws36{word-spacing:-1.020000px;}
.ws7a{word-spacing:-0.960000px;}
.ws90{word-spacing:-0.892800px;}
.wsa0{word-spacing:-0.840000px;}
.ws7d{word-spacing:-0.837000px;}
.ws65{word-spacing:-0.780000px;}
.ws21{word-spacing:-0.720000px;}
.ws79{word-spacing:-0.714000px;}
.ws72{word-spacing:-0.660000px;}
.wsa{word-spacing:-0.612000px;}
.ws19{word-spacing:-0.600000px;}
.ws93{word-spacing:-0.558000px;}
.ws5c{word-spacing:-0.540000px;}
.ws11{word-spacing:-0.510000px;}
.ws1b{word-spacing:-0.480000px;}
.ws91{word-spacing:-0.446400px;}
.ws5e{word-spacing:-0.420000px;}
.wsc{word-spacing:-0.408000px;}
.ws4a{word-spacing:-0.390600px;}
.ws1f{word-spacing:-0.360000px;}
.ws7{word-spacing:-0.355200px;}
.ws8d{word-spacing:-0.334800px;}
.ws3d{word-spacing:-0.300000px;}
.ws22{word-spacing:-0.240000px;}
.ws23{word-spacing:-0.223200px;}
.ws28{word-spacing:-0.222000px;}
.ws12{word-spacing:-0.204000px;}
.ws20{word-spacing:-0.180000px;}
.ws76{word-spacing:-0.120000px;}
.ws14{word-spacing:-0.060000px;}
.ws8{word-spacing:0.000000px;}
.ws3e{word-spacing:0.060000px;}
.ws48{word-spacing:0.111600px;}
.ws5b{word-spacing:0.120000px;}
.ws31{word-spacing:0.180000px;}
.ws92{word-spacing:0.223200px;}
.ws60{word-spacing:0.240000px;}
.ws18{word-spacing:0.300000px;}
.ws56{word-spacing:0.324000px;}
.ws25{word-spacing:0.390600px;}
.ws41{word-spacing:0.420000px;}
.ws3b{word-spacing:0.480000px;}
.ws61{word-spacing:0.540000px;}
.ws67{word-spacing:0.558000px;}
.ws62{word-spacing:0.600000px;}
.ws4d{word-spacing:0.725400px;}
.ws59{word-spacing:0.780000px;}
.ws9b{word-spacing:0.960000px;}
.ws68{word-spacing:1.004400px;}
.ws66{word-spacing:1.080000px;}
.ws40{word-spacing:1.140000px;}
.ws63{word-spacing:1.200000px;}
.ws3f{word-spacing:1.260000px;}
.ws38{word-spacing:1.320000px;}
.ws86{word-spacing:1.380000px;}
.ws49{word-spacing:1.395000px;}
.ws70{word-spacing:1.440000px;}
.ws75{word-spacing:1.500000px;}
.ws24{word-spacing:1.506600px;}
.ws6f{word-spacing:1.560000px;}
.ws47{word-spacing:1.674000px;}
.ws32{word-spacing:1.680000px;}
.wsa4{word-spacing:1.740000px;}
.ws46{word-spacing:1.785600px;}
.ws15{word-spacing:1.860000px;}
.ws33{word-spacing:1.920000px;}
.wsad{word-spacing:1.980000px;}
.ws5a{word-spacing:2.040000px;}
.wsa3{word-spacing:2.100000px;}
.ws74{word-spacing:2.220000px;}
.ws9{word-spacing:2.244000px;}
.ws3a{word-spacing:2.280000px;}
.ws9e{word-spacing:2.340000px;}
.ws95{word-spacing:2.399400px;}
.wsaa{word-spacing:2.400000px;}
.wsae{word-spacing:2.460000px;}
.ws17{word-spacing:2.520000px;}
.ws8b{word-spacing:2.580000px;}
.ws94{word-spacing:2.622600px;}
.ws78{word-spacing:2.640000px;}
.ws1e{word-spacing:2.700000px;}
.ws1c{word-spacing:2.760000px;}
.ws8e{word-spacing:2.790000px;}
.wsf{word-spacing:2.805000px;}
.ws4b{word-spacing:2.845800px;}
.ws37{word-spacing:2.880000px;}
.ws77{word-spacing:2.940000px;}
.ws1d{word-spacing:3.060000px;}
.ws4c{word-spacing:3.069000px;}
.wse{word-spacing:3.111000px;}
.ws9d{word-spacing:3.180000px;}
.wsa1{word-spacing:3.300000px;}
.ws7b{word-spacing:3.360000px;}
.ws1a{word-spacing:3.480000px;}
.ws5d{word-spacing:3.540000px;}
.ws5f{word-spacing:3.600000px;}
.ws64{word-spacing:3.660000px;}
.wsb5{word-spacing:3.720000px;}
.ws88{word-spacing:3.840000px;}
.wsa2{word-spacing:3.900000px;}
.ws87{word-spacing:4.020000px;}
.wsab{word-spacing:4.260000px;}
.ws73{word-spacing:5.160000px;}
.ws71{word-spacing:5.760000px;}
.ws89{word-spacing:5.820000px;}
.ws9f{word-spacing:5.940000px;}
.ws39{word-spacing:7.020000px;}
.ws8c{word-spacing:51.001200px;}
.ws53{word-spacing:77.790000px;}
.ws99{word-spacing:126.798000px;}
.ws55{word-spacing:135.780000px;}
.ws6e{word-spacing:1001.970000px;}
.ws2f{word-spacing:1002.024000px;}
.ws9a{word-spacing:1004.076000px;}
.ws85{word-spacing:1564.434000px;}
.wsa8{word-spacing:1565.352000px;}
.ws57{word-spacing:1568.538000px;}
._1e{margin-left:-1004.117400px;}
._9{margin-left:-1001.791800px;}
._1b{margin-left:-929.101800px;}
._13{margin-left:-913.096800px;}
._1d{margin-left:-47.513100px;}
._2{margin-left:-7.920000px;}
._1{margin-left:-6.480000px;}
._c{margin-left:-5.467800px;}
._6{margin-left:-4.447200px;}
._a{margin-left:-3.427800px;}
._0{margin-left:-2.400000px;}
._5{margin-left:-1.045500px;}
._7{width:1.162800px;}
._3{width:2.325600px;}
._4{width:3.391500px;}
._f{width:5.190000px;}
._1c{width:6.385500px;}
._19{width:25.623000px;}
._16{width:29.133000px;}
._18{width:31.425000px;}
._15{width:34.935000px;}
._21{width:36.604200px;}
._8{width:50.275200px;}
._b{width:51.391800px;}
._e{width:53.568000px;}
._d{width:73.265400px;}
._17{width:93.528000px;}
._14{width:97.038000px;}
._1f{width:112.392000px;}
._20{width:138.558000px;}
._10{width:232.327800px;}
._11{width:240.337800px;}
._12{width:1266.960300px;}
._1a{width:1323.705300px;}
.fc2{color:transparent;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:22.200000px;}
.fsb{font-size:27.000000px;}
.fs9{font-size:30.000000px;}
.fs4{font-size:34.980000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:41.400000px;}
.fsc{font-size:42.000000px;}
.fsd{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y63{bottom:-310.338750px;}
.y62{bottom:-302.238750px;}
.y66{bottom:-291.738750px;}
.y6a{bottom:-257.688750px;}
.y65{bottom:-235.113750px;}
.y69{bottom:-223.638750px;}
.y68{bottom:-189.588750px;}
.y60{bottom:-178.488750px;}
.y67{bottom:-155.538750px;}
.y61{bottom:-121.488750px;}
.y64{bottom:-107.613750px;}
.y0{bottom:0.000000px;}
.ya2{bottom:66.753900px;}
.yb2{bottom:66.756450px;}
.ya1{bottom:83.627400px;}
.yb1{bottom:83.629950px;}
.y6e{bottom:90.554850px;}
.y23{bottom:90.561000px;}
.y53{bottom:90.567150px;}
.y95{bottom:91.318050px;}
.y8f{bottom:107.804850px;}
.y6d{bottom:107.811000px;}
.y22{bottom:107.817150px;}
.y94{bottom:109.768050px;}
.yed{bottom:111.233550px;}
.y52{bottom:125.055000px;}
.y8e{bottom:125.061000px;}
.y21{bottom:125.067150px;}
.y93{bottom:128.218050px;}
.yec{bottom:128.484300px;}
.y44{bottom:142.292550px;}
.y20{bottom:142.311000px;}
.y51{bottom:142.311150px;}
.y8d{bottom:142.317150px;}
.y92{bottom:146.668050px;}
.y43{bottom:159.548700px;}
.y1f{bottom:159.567150px;}
.y50{bottom:159.567300px;}
.y91{bottom:165.118050px;}
.ya3{bottom:174.723900px;}
.yb8{bottom:174.725250px;}
.y42{bottom:176.804850px;}
.y1e{bottom:176.817300px;}
.y8c{bottom:176.817450px;}
.yeb{bottom:180.236550px;}
.yda{bottom:180.249300px;}
.y6c{bottom:183.568050px;}
.y41{bottom:194.061000px;}
.y8b{bottom:194.061300px;}
.yea{bottom:197.487300px;}
.yd9{bottom:197.500050px;}
.y4f{bottom:202.018050px;}
.y40{bottom:211.317150px;}
.y8a{bottom:211.317450px;}
.ye9{bottom:214.738050px;}
.yd8{bottom:214.750800px;}
.y4e{bottom:220.468050px;}
.y3f{bottom:228.561300px;}
.y89{bottom:228.567450px;}
.ye8{bottom:231.988800px;}
.yd7{bottom:232.001550px;}
.y4d{bottom:238.918050px;}
.y88{bottom:245.811450px;}
.y3e{bottom:245.817450px;}
.ye7{bottom:249.239550px;}
.yd6{bottom:249.252300px;}
.y1d{bottom:257.368050px;}
.y3d{bottom:263.067450px;}
.y87{bottom:263.067600px;}
.ye6{bottom:266.490300px;}
.yd5{bottom:266.503050px;}
.y1c{bottom:275.818050px;}
.y3c{bottom:280.317450px;}
.ye5{bottom:283.741050px;}
.yd4{bottom:283.753800px;}
.y1b{bottom:294.268050px;}
.y3b{bottom:297.561300px;}
.ye4{bottom:300.991800px;}
.yd3{bottom:301.004550px;}
.y1a{bottom:312.718050px;}
.y3a{bottom:314.817450px;}
.ye3{bottom:318.242550px;}
.yd2{bottom:318.255300px;}
.y19{bottom:331.168050px;}
.y71{bottom:331.595550px;}
.y39{bottom:332.067450px;}
.ye2{bottom:335.493300px;}
.yd1{bottom:335.506050px;}
.y76{bottom:343.595550px;}
.y18{bottom:349.618050px;}
.y6b{bottom:350.818200px;}
.ye1{bottom:352.744050px;}
.yd0{bottom:352.756800px;}
.y7a{bottom:366.245550px;}
.y17{bottom:368.068050px;}
.ye0{bottom:369.994800px;}
.ycf{bottom:370.007550px;}
.y6f{bottom:371.613000px;}
.y75{bottom:371.908050px;}
.y7e{bottom:375.421050px;}
.y7d{bottom:383.521050px;}
.y16{bottom:386.518050px;}
.ydf{bottom:387.245550px;}
.yce{bottom:387.258300px;}
.y79{bottom:388.895550px;}
.y81{bottom:394.021050px;}
.y74{bottom:400.220550px;}
.yde{bottom:404.496300px;}
.ycd{bottom:404.509050px;}
.y15{bottom:404.968050px;}
.ya4{bottom:408.005100px;}
.ybc{bottom:408.006450px;}
.y78{bottom:411.545550px;}
.ydd{bottom:421.747050px;}
.ycc{bottom:421.759800px;}
.y14{bottom:423.418050px;}
.ya6{bottom:427.650600px;}
.ybe{bottom:427.651950px;}
.y85{bottom:428.071050px;}
.y73{bottom:428.533050px;}
.y77{bottom:434.195550px;}
.ydc{bottom:438.997800px;}
.ycb{bottom:439.010550px;}
.ya5{bottom:440.250600px;}
.ybd{bottom:440.251950px;}
.y13{bottom:441.868050px;}
.y80{bottom:450.646050px;}
.ya7{bottom:452.630100px;}
.ybf{bottom:452.631450px;}
.ydb{bottom:456.248550px;}
.yca{bottom:456.261300px;}
.y70{bottom:456.845550px;}
.y12{bottom:460.318050px;}
.y84{bottom:462.121050px;}
.y72{bottom:472.595550px;}
.ya8{bottom:473.325600px;}
.yc0{bottom:473.326950px;}
.y11{bottom:478.768050px;}
.yc9{bottom:490.762800px;}
.ya9{bottom:494.021100px;}
.yc1{bottom:494.022450px;}
.y83{bottom:496.171050px;}
.y10{bottom:497.218050px;}
.y4c{bottom:497.218200px;}
.y7b{bottom:507.271050px;}
.yaa{bottom:514.716600px;}
.yc2{bottom:514.717950px;}
.yf{bottom:515.668050px;}
.y4b{bottom:515.668200px;}
.y82{bottom:530.221050px;}
.ye{bottom:534.118050px;}
.y4a{bottom:534.118200px;}
.yab{bottom:535.412100px;}
.yc3{bottom:535.413450px;}
.yc8{bottom:542.515050px;}
.yd{bottom:552.568050px;}
.y49{bottom:552.568200px;}
.yac{bottom:556.118100px;}
.yc4{bottom:556.119450px;}
.yc7{bottom:559.765800px;}
.y7c{bottom:564.271050px;}
.y38{bottom:571.018050px;}
.y86{bottom:571.018200px;}
.yc6{bottom:577.016550px;}
.y7f{bottom:578.146050px;}
.y37{bottom:589.468050px;}
.y48{bottom:589.468200px;}
.yad{bottom:590.668050px;}
.y36{bottom:607.918050px;}
.yc5{bottom:611.518050px;}
.yae{bottom:612.867000px;}
.yc{bottom:621.110550px;}
.y35{bottom:626.368050px;}
.yb{bottom:638.361300px;}
.y34{bottom:644.818050px;}
.y98{bottom:646.092600px;}
.yb0{bottom:646.093950px;}
.y47{bottom:647.217450px;}
.ya{bottom:655.612050px;}
.y97{bottom:658.692600px;}
.yaf{bottom:658.693950px;}
.y33{bottom:663.268050px;}
.y46{bottom:664.468200px;}
.y9b{bottom:671.072100px;}
.yb3{bottom:671.073450px;}
.y5f{bottom:673.972500px;}
.yba{bottom:679.622100px;}
.y32{bottom:681.718050px;}
.y90{bottom:682.918050px;}
.y9{bottom:690.113550px;}
.y55{bottom:691.421250px;}
.yb9{bottom:696.495600px;}
.y9c{bottom:698.319600px;}
.yb4{bottom:698.320950px;}
.y31{bottom:700.168050px;}
.y5a{bottom:703.421250px;}
.y8{bottom:707.364300px;}
.y96{bottom:707.799000px;}
.y30{bottom:718.618050px;}
.y7{bottom:724.615050px;}
.y9d{bottom:725.567100px;}
.yb5{bottom:725.568450px;}
.y5e{bottom:726.071250px;}
.y59{bottom:731.733750px;}
.y2f{bottom:737.068050px;}
.y6{bottom:741.865800px;}
.y5d{bottom:748.721250px;}
.y9e{bottom:752.814600px;}
.yb6{bottom:752.815950px;}
.y2e{bottom:755.518050px;}
.y5{bottom:759.116550px;}
.y58{bottom:760.046250px;}
.y5c{bottom:771.371250px;}
.y2d{bottom:773.968050px;}
.y9a{bottom:774.554100px;}
.y4{bottom:776.367300px;}
.y9f{bottom:780.062100px;}
.yb7{bottom:780.063450px;}
.ybb{bottom:787.592250px;}
.y57{bottom:788.358750px;}
.y99{bottom:791.427600px;}
.y2c{bottom:792.418050px;}
.y3{bottom:793.618050px;}
.y5b{bottom:794.021250px;}
.y2b{bottom:810.868050px;}
.y54{bottom:816.671250px;}
.y2a{bottom:829.318050px;}
.y56{bottom:832.421250px;}
.y2{bottom:845.218200px;}
.y29{bottom:847.768050px;}
.y25{bottom:857.391000px;}
.y24{bottom:864.889050px;}
.y28{bottom:866.218050px;}
.ya0{bottom:882.522900px;}
.y45{bottom:884.668050px;}
.y1{bottom:896.303700px;}
.y27{bottom:903.118050px;}
.y26{bottom:955.942350px;}
.ha{height:15.295800px;}
.h11{height:24.300000px;}
.he{height:27.000000px;}
.hf{height:32.400000px;}
.h18{height:37.800000px;}
.h19{height:43.200000px;}
.h1a{height:45.543000px;}
.hd{height:45.696000px;}
.h6{height:45.900000px;}
.h5{height:46.614000px;}
.h4{height:48.195000px;}
.h14{height:49.829400px;}
.h15{height:49.854000px;}
.h8{height:49.996800px;}
.h9{height:50.021400px;}
.h16{height:50.046000px;}
.hb{height:50.868000px;}
.h7{height:54.000000px;}
.h13{height:54.000600px;}
.hc{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h10{height:170.079000px;}
.h17{height:212.173500px;}
.h12{height:227.289000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w4{width:265.747500px;}
.w5{width:352.527000px;}
.w3{width:562.552500px;}
.w2{width:562.554000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x48{left:-337.984800px;}
.x47{left:-332.209800px;}
.x43{left:-322.340250px;}
.x44{left:-313.764900px;}
.x3e{left:-291.218250px;}
.x46{left:-227.892300px;}
.x3f{left:-209.108250px;}
.x40{left:-137.760750px;}
.x41{left:-133.287750px;}
.x42{left:-131.387250px;}
.x0{left:0.000000px;}
.x13{left:4.588950px;}
.x3c{left:6.423750px;}
.x3b{left:12.198750px;}
.x1f{left:15.464250px;}
.x19{left:16.964400px;}
.x21{left:19.589250px;}
.x36{left:22.068300px;}
.x8{left:25.966350px;}
.x1d{left:27.088950px;}
.x7{left:28.835700px;}
.x22{left:31.964250px;}
.x26{left:42.088500px;}
.x14{left:45.146850px;}
.x31{left:53.190300px;}
.x30{left:56.752500px;}
.x12{left:65.787000px;}
.x1e{left:67.500000px;}
.x5{left:72.283500px;}
.x3d{left:74.787000px;}
.x1{left:80.787450px;}
.xc{left:85.376700px;}
.x37{left:87.396150px;}
.x6{left:93.532050px;}
.x2f{left:94.588500px;}
.xd{left:97.751700px;}
.x2{left:102.040650px;}
.x11{left:107.875950px;}
.x27{left:112.646400px;}
.x3a{left:116.516250px;}
.x9{left:131.486700px;}
.x32{left:135.300300px;}
.x18{left:174.696900px;}
.x33{left:206.647800px;}
.x34{left:211.120800px;}
.x15{left:223.097100px;}
.xa{left:239.801700px;}
.x2b{left:242.196450px;}
.x35{left:269.773800px;}
.x45{left:276.222150px;}
.x1a{left:283.664400px;}
.x1b{left:287.789400px;}
.x28{left:290.596650px;}
.x1c{left:291.914400px;}
.x23{left:300.164250px;}
.x24{left:304.289250px;}
.x25{left:308.414250px;}
.x16{left:327.519600px;}
.x20{left:349.821750px;}
.x2c{left:351.163950px;}
.x49{left:353.408250px;}
.x2d{left:355.288950px;}
.x2e{left:359.413950px;}
.x39{left:363.399000px;}
.xe{left:365.951700px;}
.xf{left:370.076700px;}
.x10{left:374.201700px;}
.x29{left:395.019150px;}
.xb{left:415.609200px;}
.x17{left:502.837350px;}
.x38{left:545.843700px;}
.x2a{left:570.336900px;}
.x4{left:651.643500px;}
.x3{left:654.512850px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls43{letter-spacing:-2.773333pt;}
.ls2e{letter-spacing:-2.453333pt;}
.ls27{letter-spacing:-1.493333pt;}
.ls2c{letter-spacing:-1.440000pt;}
.ls12{letter-spacing:-1.333333pt;}
.ls11{letter-spacing:-1.314667pt;}
.ls31{letter-spacing:-1.120000pt;}
.ls46{letter-spacing:-0.640000pt;}
.ls47{letter-spacing:-0.586667pt;}
.ls45{letter-spacing:-0.533333pt;}
.ls49{letter-spacing:-0.453333pt;}
.ls41{letter-spacing:-0.336000pt;}
.ls2b{letter-spacing:-0.288000pt;}
.ls24{letter-spacing:-0.266667pt;}
.ls25{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.198400pt;}
.ls2d{letter-spacing:-0.181333pt;}
.ls26{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.148800pt;}
.ls2f{letter-spacing:-0.106667pt;}
.ls28{letter-spacing:-0.099200pt;}
.ls3a{letter-spacing:-0.062187pt;}
.ls3b{letter-spacing:-0.053333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.005333pt;}
.ls1c{letter-spacing:0.053333pt;}
.ls44{letter-spacing:0.080000pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.130133pt;}
.ls34{letter-spacing:0.133333pt;}
.lsd{letter-spacing:0.160000pt;}
.ls33{letter-spacing:0.167360pt;}
.ls3c{letter-spacing:0.186560pt;}
.ls14{letter-spacing:0.197333pt;}
.lse{letter-spacing:0.213333pt;}
.ls1a{letter-spacing:0.266667pt;}
.ls19{letter-spacing:0.293333pt;}
.ls15{letter-spacing:0.296000pt;}
.ls3d{letter-spacing:0.297600pt;}
.ls9{letter-spacing:0.304000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.322400pt;}
.ls1f{letter-spacing:0.347200pt;}
.ls2{letter-spacing:0.362667pt;}
.ls3e{letter-spacing:0.368000pt;}
.lsc{letter-spacing:0.373333pt;}
.ls39{letter-spacing:0.384000pt;}
.ls2a{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.453333pt;}
.lsb{letter-spacing:0.480000pt;}
.ls37{letter-spacing:0.496000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.640000pt;}
.ls40{letter-spacing:0.693333pt;}
.ls22{letter-spacing:0.720000pt;}
.ls0{letter-spacing:0.725333pt;}
.ls18{letter-spacing:0.746667pt;}
.ls3{letter-spacing:0.770667pt;}
.ls38{letter-spacing:0.793600pt;}
.lsa{letter-spacing:0.800000pt;}
.ls4{letter-spacing:0.816000pt;}
.ls3f{letter-spacing:0.906667pt;}
.ls1d{letter-spacing:0.944000pt;}
.ls23{letter-spacing:1.066667pt;}
.ls21{letter-spacing:1.488000pt;}
.ls30{letter-spacing:1.536000pt;}
.ls32{letter-spacing:1.546667pt;}
.ls48{letter-spacing:1.586667pt;}
.ls35{letter-spacing:28.718400pt;}
.ls42{letter-spacing:31.595200pt;}
.ls36{letter-spacing:37.100800pt;}
.ls1e{letter-spacing:46.227200pt;}
.lsf{letter-spacing:51.038400pt;}
.ws6d{word-spacing:-13.333333pt;}
.ws69{word-spacing:-12.912000pt;}
.ws29{word-spacing:-12.864000pt;}
.wsb2{word-spacing:-11.605333pt;}
.ws84{word-spacing:-11.457600pt;}
.ws97{word-spacing:-11.413333pt;}
.wsaf{word-spacing:-11.253333pt;}
.ws5{word-spacing:-11.146667pt;}
.ws96{word-spacing:-11.040000pt;}
.wsb1{word-spacing:-10.789333pt;}
.ws2e{word-spacing:-10.664000pt;}
.ws6a{word-spacing:-10.613333pt;}
.ws2c{word-spacing:-10.465600pt;}
.wsa6{word-spacing:-10.453333pt;}
.ws52{word-spacing:-10.400000pt;}
.ws81{word-spacing:-10.346667pt;}
.wsa7{word-spacing:-10.293333pt;}
.ws10{word-spacing:-10.290667pt;}
.ws2d{word-spacing:-10.267200pt;}
.ws4e{word-spacing:-10.240000pt;}
.ws2{word-spacing:-10.186667pt;}
.ws7f{word-spacing:-10.133333pt;}
.ws80{word-spacing:-10.080000pt;}
.ws4{word-spacing:-10.026667pt;}
.ws51{word-spacing:-9.920000pt;}
.ws6b{word-spacing:-9.866667pt;}
.wsb0{word-spacing:-9.813333pt;}
.ws6c{word-spacing:-9.746667pt;}
.wsb4{word-spacing:-9.474667pt;}
.ws4f{word-spacing:-9.384000pt;}
.ws1{word-spacing:-9.293333pt;}
.ws50{word-spacing:-9.202667pt;}
.wsb3{word-spacing:-9.066667pt;}
.wsa5{word-spacing:-9.013333pt;}
.ws0{word-spacing:-8.704000pt;}
.ws3{word-spacing:-8.693333pt;}
.ws2a{word-spacing:-8.533333pt;}
.ws83{word-spacing:-8.280000pt;}
.ws6{word-spacing:-7.912000pt;}
.ws98{word-spacing:-7.802667pt;}
.ws82{word-spacing:-6.685067pt;}
.ws2b{word-spacing:-6.498507pt;}
.ws7e{word-spacing:-6.436320pt;}
.ws54{word-spacing:-5.016000pt;}
.wsa9{word-spacing:-2.240000pt;}
.ws34{word-spacing:-1.920000pt;}
.wsac{word-spacing:-1.866667pt;}
.ws35{word-spacing:-1.760000pt;}
.ws16{word-spacing:-1.706667pt;}
.ws45{word-spacing:-1.686400pt;}
.ws13{word-spacing:-1.653333pt;}
.ws26{word-spacing:-1.636800pt;}
.ws44{word-spacing:-1.537600pt;}
.ws58{word-spacing:-1.493333pt;}
.ws27{word-spacing:-1.488000pt;}
.ws42{word-spacing:-1.440000pt;}
.wsb{word-spacing:-1.405333pt;}
.ws7c{word-spacing:-1.388800pt;}
.ws3c{word-spacing:-1.386667pt;}
.ws43{word-spacing:-1.280000pt;}
.wsd{word-spacing:-1.269333pt;}
.wsb6{word-spacing:-1.226667pt;}
.ws9c{word-spacing:-1.173333pt;}
.ws8a{word-spacing:-1.120000pt;}
.ws30{word-spacing:-1.066667pt;}
.ws8f{word-spacing:-0.942400pt;}
.ws36{word-spacing:-0.906667pt;}
.ws7a{word-spacing:-0.853333pt;}
.ws90{word-spacing:-0.793600pt;}
.wsa0{word-spacing:-0.746667pt;}
.ws7d{word-spacing:-0.744000pt;}
.ws65{word-spacing:-0.693333pt;}
.ws21{word-spacing:-0.640000pt;}
.ws79{word-spacing:-0.634667pt;}
.ws72{word-spacing:-0.586667pt;}
.wsa{word-spacing:-0.544000pt;}
.ws19{word-spacing:-0.533333pt;}
.ws93{word-spacing:-0.496000pt;}
.ws5c{word-spacing:-0.480000pt;}
.ws11{word-spacing:-0.453333pt;}
.ws1b{word-spacing:-0.426667pt;}
.ws91{word-spacing:-0.396800pt;}
.ws5e{word-spacing:-0.373333pt;}
.wsc{word-spacing:-0.362667pt;}
.ws4a{word-spacing:-0.347200pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws7{word-spacing:-0.315733pt;}
.ws8d{word-spacing:-0.297600pt;}
.ws3d{word-spacing:-0.266667pt;}
.ws22{word-spacing:-0.213333pt;}
.ws23{word-spacing:-0.198400pt;}
.ws28{word-spacing:-0.197333pt;}
.ws12{word-spacing:-0.181333pt;}
.ws20{word-spacing:-0.160000pt;}
.ws76{word-spacing:-0.106667pt;}
.ws14{word-spacing:-0.053333pt;}
.ws8{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.053333pt;}
.ws48{word-spacing:0.099200pt;}
.ws5b{word-spacing:0.106667pt;}
.ws31{word-spacing:0.160000pt;}
.ws92{word-spacing:0.198400pt;}
.ws60{word-spacing:0.213333pt;}
.ws18{word-spacing:0.266667pt;}
.ws56{word-spacing:0.288000pt;}
.ws25{word-spacing:0.347200pt;}
.ws41{word-spacing:0.373333pt;}
.ws3b{word-spacing:0.426667pt;}
.ws61{word-spacing:0.480000pt;}
.ws67{word-spacing:0.496000pt;}
.ws62{word-spacing:0.533333pt;}
.ws4d{word-spacing:0.644800pt;}
.ws59{word-spacing:0.693333pt;}
.ws9b{word-spacing:0.853333pt;}
.ws68{word-spacing:0.892800pt;}
.ws66{word-spacing:0.960000pt;}
.ws40{word-spacing:1.013333pt;}
.ws63{word-spacing:1.066667pt;}
.ws3f{word-spacing:1.120000pt;}
.ws38{word-spacing:1.173333pt;}
.ws86{word-spacing:1.226667pt;}
.ws49{word-spacing:1.240000pt;}
.ws70{word-spacing:1.280000pt;}
.ws75{word-spacing:1.333333pt;}
.ws24{word-spacing:1.339200pt;}
.ws6f{word-spacing:1.386667pt;}
.ws47{word-spacing:1.488000pt;}
.ws32{word-spacing:1.493333pt;}
.wsa4{word-spacing:1.546667pt;}
.ws46{word-spacing:1.587200pt;}
.ws15{word-spacing:1.653333pt;}
.ws33{word-spacing:1.706667pt;}
.wsad{word-spacing:1.760000pt;}
.ws5a{word-spacing:1.813333pt;}
.wsa3{word-spacing:1.866667pt;}
.ws74{word-spacing:1.973333pt;}
.ws9{word-spacing:1.994667pt;}
.ws3a{word-spacing:2.026667pt;}
.ws9e{word-spacing:2.080000pt;}
.ws95{word-spacing:2.132800pt;}
.wsaa{word-spacing:2.133333pt;}
.wsae{word-spacing:2.186667pt;}
.ws17{word-spacing:2.240000pt;}
.ws8b{word-spacing:2.293333pt;}
.ws94{word-spacing:2.331200pt;}
.ws78{word-spacing:2.346667pt;}
.ws1e{word-spacing:2.400000pt;}
.ws1c{word-spacing:2.453333pt;}
.ws8e{word-spacing:2.480000pt;}
.wsf{word-spacing:2.493333pt;}
.ws4b{word-spacing:2.529600pt;}
.ws37{word-spacing:2.560000pt;}
.ws77{word-spacing:2.613333pt;}
.ws1d{word-spacing:2.720000pt;}
.ws4c{word-spacing:2.728000pt;}
.wse{word-spacing:2.765333pt;}
.ws9d{word-spacing:2.826667pt;}
.wsa1{word-spacing:2.933333pt;}
.ws7b{word-spacing:2.986667pt;}
.ws1a{word-spacing:3.093333pt;}
.ws5d{word-spacing:3.146667pt;}
.ws5f{word-spacing:3.200000pt;}
.ws64{word-spacing:3.253333pt;}
.wsb5{word-spacing:3.306667pt;}
.ws88{word-spacing:3.413333pt;}
.wsa2{word-spacing:3.466667pt;}
.ws87{word-spacing:3.573333pt;}
.wsab{word-spacing:3.786667pt;}
.ws73{word-spacing:4.586667pt;}
.ws71{word-spacing:5.120000pt;}
.ws89{word-spacing:5.173333pt;}
.ws9f{word-spacing:5.280000pt;}
.ws39{word-spacing:6.240000pt;}
.ws8c{word-spacing:45.334400pt;}
.ws53{word-spacing:69.146667pt;}
.ws99{word-spacing:112.709333pt;}
.ws55{word-spacing:120.693333pt;}
.ws6e{word-spacing:890.640000pt;}
.ws2f{word-spacing:890.688000pt;}
.ws9a{word-spacing:892.512000pt;}
.ws85{word-spacing:1390.608000pt;}
.wsa8{word-spacing:1391.424000pt;}
.ws57{word-spacing:1394.256000pt;}
._1e{margin-left:-892.548800pt;}
._9{margin-left:-890.481600pt;}
._1b{margin-left:-825.868267pt;}
._13{margin-left:-811.641600pt;}
._1d{margin-left:-42.233867pt;}
._2{margin-left:-7.040000pt;}
._1{margin-left:-5.760000pt;}
._c{margin-left:-4.860267pt;}
._6{margin-left:-3.953067pt;}
._a{margin-left:-3.046933pt;}
._0{margin-left:-2.133333pt;}
._5{margin-left:-0.929333pt;}
._7{width:1.033600pt;}
._3{width:2.067200pt;}
._4{width:3.014667pt;}
._f{width:4.613333pt;}
._1c{width:5.676000pt;}
._19{width:22.776000pt;}
._16{width:25.896000pt;}
._18{width:27.933333pt;}
._15{width:31.053333pt;}
._21{width:32.537067pt;}
._8{width:44.689067pt;}
._b{width:45.681600pt;}
._e{width:47.616000pt;}
._d{width:65.124800pt;}
._17{width:83.136000pt;}
._14{width:86.256000pt;}
._1f{width:99.904000pt;}
._20{width:123.162667pt;}
._10{width:206.513600pt;}
._11{width:213.633600pt;}
._12{width:1126.186933pt;}
._1a{width:1176.626933pt;}
.fs7{font-size:19.733333pt;}
.fsb{font-size:24.000000pt;}
.fs9{font-size:26.666667pt;}
.fs4{font-size:31.093333pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:36.800000pt;}
.fsc{font-size:37.333333pt;}
.fsd{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y63{bottom:-275.856667pt;}
.y62{bottom:-268.656667pt;}
.y66{bottom:-259.323333pt;}
.y6a{bottom:-229.056667pt;}
.y65{bottom:-208.990000pt;}
.y69{bottom:-198.790000pt;}
.y68{bottom:-168.523333pt;}
.y60{bottom:-158.656667pt;}
.y67{bottom:-138.256667pt;}
.y61{bottom:-107.990000pt;}
.y64{bottom:-95.656667pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:59.336800pt;}
.yb2{bottom:59.339067pt;}
.ya1{bottom:74.335467pt;}
.yb1{bottom:74.337733pt;}
.y6e{bottom:80.493200pt;}
.y23{bottom:80.498667pt;}
.y53{bottom:80.504133pt;}
.y95{bottom:81.171600pt;}
.y8f{bottom:95.826533pt;}
.y6d{bottom:95.832000pt;}
.y22{bottom:95.837467pt;}
.y94{bottom:97.571600pt;}
.yed{bottom:98.874267pt;}
.y52{bottom:111.160000pt;}
.y8e{bottom:111.165333pt;}
.y21{bottom:111.170800pt;}
.y93{bottom:113.971600pt;}
.yec{bottom:114.208267pt;}
.y44{bottom:126.482267pt;}
.y20{bottom:126.498667pt;}
.y51{bottom:126.498800pt;}
.y8d{bottom:126.504133pt;}
.y92{bottom:130.371600pt;}
.y43{bottom:141.821067pt;}
.y1f{bottom:141.837467pt;}
.y50{bottom:141.837600pt;}
.y91{bottom:146.771600pt;}
.ya3{bottom:155.310133pt;}
.yb8{bottom:155.311333pt;}
.y42{bottom:157.159867pt;}
.y1e{bottom:157.170933pt;}
.y8c{bottom:157.171067pt;}
.yeb{bottom:160.210267pt;}
.yda{bottom:160.221600pt;}
.y6c{bottom:163.171600pt;}
.y41{bottom:172.498667pt;}
.y8b{bottom:172.498933pt;}
.yea{bottom:175.544267pt;}
.yd9{bottom:175.555600pt;}
.y4f{bottom:179.571600pt;}
.y40{bottom:187.837467pt;}
.y8a{bottom:187.837733pt;}
.ye9{bottom:190.878267pt;}
.yd8{bottom:190.889600pt;}
.y4e{bottom:195.971600pt;}
.y3f{bottom:203.165600pt;}
.y89{bottom:203.171067pt;}
.ye8{bottom:206.212267pt;}
.yd7{bottom:206.223600pt;}
.y4d{bottom:212.371600pt;}
.y88{bottom:218.499067pt;}
.y3e{bottom:218.504400pt;}
.ye7{bottom:221.546267pt;}
.yd6{bottom:221.557600pt;}
.y1d{bottom:228.771600pt;}
.y3d{bottom:233.837733pt;}
.y87{bottom:233.837867pt;}
.ye6{bottom:236.880267pt;}
.yd5{bottom:236.891600pt;}
.y1c{bottom:245.171600pt;}
.y3c{bottom:249.171067pt;}
.ye5{bottom:252.214267pt;}
.yd4{bottom:252.225600pt;}
.y1b{bottom:261.571600pt;}
.y3b{bottom:264.498933pt;}
.ye4{bottom:267.548267pt;}
.yd3{bottom:267.559600pt;}
.y1a{bottom:277.971600pt;}
.y3a{bottom:279.837733pt;}
.ye3{bottom:282.882267pt;}
.yd2{bottom:282.893600pt;}
.y19{bottom:294.371600pt;}
.y71{bottom:294.751600pt;}
.y39{bottom:295.171067pt;}
.ye2{bottom:298.216267pt;}
.yd1{bottom:298.227600pt;}
.y76{bottom:305.418267pt;}
.y18{bottom:310.771600pt;}
.y6b{bottom:311.838400pt;}
.ye1{bottom:313.550267pt;}
.yd0{bottom:313.561600pt;}
.y7a{bottom:325.551600pt;}
.y17{bottom:327.171600pt;}
.ye0{bottom:328.884267pt;}
.ycf{bottom:328.895600pt;}
.y6f{bottom:330.322667pt;}
.y75{bottom:330.584933pt;}
.y7e{bottom:333.707600pt;}
.y7d{bottom:340.907600pt;}
.y16{bottom:343.571600pt;}
.ydf{bottom:344.218267pt;}
.yce{bottom:344.229600pt;}
.y79{bottom:345.684933pt;}
.y81{bottom:350.240933pt;}
.y74{bottom:355.751600pt;}
.yde{bottom:359.552267pt;}
.ycd{bottom:359.563600pt;}
.y15{bottom:359.971600pt;}
.ya4{bottom:362.671200pt;}
.ybc{bottom:362.672400pt;}
.y78{bottom:365.818267pt;}
.ydd{bottom:374.886267pt;}
.ycc{bottom:374.897600pt;}
.y14{bottom:376.371600pt;}
.ya6{bottom:380.133867pt;}
.ybe{bottom:380.135067pt;}
.y85{bottom:380.507600pt;}
.y73{bottom:380.918267pt;}
.y77{bottom:385.951600pt;}
.ydc{bottom:390.220267pt;}
.ycb{bottom:390.231600pt;}
.ya5{bottom:391.333867pt;}
.ybd{bottom:391.335067pt;}
.y13{bottom:392.771600pt;}
.y80{bottom:400.574267pt;}
.ya7{bottom:402.337867pt;}
.ybf{bottom:402.339067pt;}
.ydb{bottom:405.554267pt;}
.yca{bottom:405.565600pt;}
.y70{bottom:406.084933pt;}
.y12{bottom:409.171600pt;}
.y84{bottom:410.774267pt;}
.y72{bottom:420.084933pt;}
.ya8{bottom:420.733867pt;}
.yc0{bottom:420.735067pt;}
.y11{bottom:425.571600pt;}
.yc9{bottom:436.233600pt;}
.ya9{bottom:439.129867pt;}
.yc1{bottom:439.131067pt;}
.y83{bottom:441.040933pt;}
.y10{bottom:441.971600pt;}
.y4c{bottom:441.971733pt;}
.y7b{bottom:450.907600pt;}
.yaa{bottom:457.525867pt;}
.yc2{bottom:457.527067pt;}
.yf{bottom:458.371600pt;}
.y4b{bottom:458.371733pt;}
.y82{bottom:471.307600pt;}
.ye{bottom:474.771600pt;}
.y4a{bottom:474.771733pt;}
.yab{bottom:475.921867pt;}
.yc3{bottom:475.923067pt;}
.yc8{bottom:482.235600pt;}
.yd{bottom:491.171600pt;}
.y49{bottom:491.171733pt;}
.yac{bottom:494.327200pt;}
.yc4{bottom:494.328400pt;}
.yc7{bottom:497.569600pt;}
.y7c{bottom:501.574267pt;}
.y38{bottom:507.571600pt;}
.y86{bottom:507.571733pt;}
.yc6{bottom:512.903600pt;}
.y7f{bottom:513.907600pt;}
.y37{bottom:523.971600pt;}
.y48{bottom:523.971733pt;}
.yad{bottom:525.038267pt;}
.y36{bottom:540.371600pt;}
.yc5{bottom:543.571600pt;}
.yae{bottom:544.770667pt;}
.yc{bottom:552.098267pt;}
.y35{bottom:556.771600pt;}
.yb{bottom:567.432267pt;}
.y34{bottom:573.171600pt;}
.y98{bottom:574.304533pt;}
.yb0{bottom:574.305733pt;}
.y47{bottom:575.304400pt;}
.ya{bottom:582.766267pt;}
.y97{bottom:585.504533pt;}
.yaf{bottom:585.505733pt;}
.y33{bottom:589.571600pt;}
.y46{bottom:590.638400pt;}
.y9b{bottom:596.508533pt;}
.yb3{bottom:596.509733pt;}
.y5f{bottom:599.086667pt;}
.yba{bottom:604.108533pt;}
.y32{bottom:605.971600pt;}
.y90{bottom:607.038267pt;}
.y9{bottom:613.434267pt;}
.y55{bottom:614.596667pt;}
.yb9{bottom:619.107200pt;}
.y9c{bottom:620.728533pt;}
.yb4{bottom:620.729733pt;}
.y31{bottom:622.371600pt;}
.y5a{bottom:625.263333pt;}
.y8{bottom:628.768267pt;}
.y96{bottom:629.154667pt;}
.y30{bottom:638.771600pt;}
.y7{bottom:644.102267pt;}
.y9d{bottom:644.948533pt;}
.yb5{bottom:644.949733pt;}
.y5e{bottom:645.396667pt;}
.y59{bottom:650.430000pt;}
.y2f{bottom:655.171600pt;}
.y6{bottom:659.436267pt;}
.y5d{bottom:665.530000pt;}
.y9e{bottom:669.168533pt;}
.yb6{bottom:669.169733pt;}
.y2e{bottom:671.571600pt;}
.y5{bottom:674.770267pt;}
.y58{bottom:675.596667pt;}
.y5c{bottom:685.663333pt;}
.y2d{bottom:687.971600pt;}
.y9a{bottom:688.492533pt;}
.y4{bottom:690.104267pt;}
.y9f{bottom:693.388533pt;}
.yb7{bottom:693.389733pt;}
.ybb{bottom:700.082000pt;}
.y57{bottom:700.763333pt;}
.y99{bottom:703.491200pt;}
.y2c{bottom:704.371600pt;}
.y3{bottom:705.438267pt;}
.y5b{bottom:705.796667pt;}
.y2b{bottom:720.771600pt;}
.y54{bottom:725.930000pt;}
.y2a{bottom:737.171600pt;}
.y56{bottom:739.930000pt;}
.y2{bottom:751.305067pt;}
.y29{bottom:753.571600pt;}
.y25{bottom:762.125333pt;}
.y24{bottom:768.790267pt;}
.y28{bottom:769.971600pt;}
.ya0{bottom:784.464800pt;}
.y45{bottom:786.371600pt;}
.y1{bottom:796.714400pt;}
.y27{bottom:802.771600pt;}
.y26{bottom:849.726533pt;}
.ha{height:13.596267pt;}
.h11{height:21.600000pt;}
.he{height:24.000000pt;}
.hf{height:28.800000pt;}
.h18{height:33.600000pt;}
.h19{height:38.400000pt;}
.h1a{height:40.482667pt;}
.hd{height:40.618667pt;}
.h6{height:40.800000pt;}
.h5{height:41.434667pt;}
.h4{height:42.840000pt;}
.h14{height:44.292800pt;}
.h15{height:44.314667pt;}
.h8{height:44.441600pt;}
.h9{height:44.463467pt;}
.h16{height:44.485333pt;}
.hb{height:45.216000pt;}
.h7{height:48.000000pt;}
.h13{height:48.000533pt;}
.hc{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h10{height:151.181333pt;}
.h17{height:188.598667pt;}
.h12{height:202.034667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w4{width:236.220000pt;}
.w5{width:313.357333pt;}
.w3{width:500.046667pt;}
.w2{width:500.048000pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x48{left:-300.430933pt;}
.x47{left:-295.297600pt;}
.x43{left:-286.524667pt;}
.x44{left:-278.902133pt;}
.x3e{left:-258.860667pt;}
.x46{left:-202.570933pt;}
.x3f{left:-185.874000pt;}
.x40{left:-122.454000pt;}
.x41{left:-118.478000pt;}
.x42{left:-116.788667pt;}
.x0{left:0.000000pt;}
.x13{left:4.079067pt;}
.x3c{left:5.710000pt;}
.x3b{left:10.843333pt;}
.x1f{left:13.746000pt;}
.x19{left:15.079467pt;}
.x21{left:17.412667pt;}
.x36{left:19.616267pt;}
.x8{left:23.081200pt;}
.x1d{left:24.079067pt;}
.x7{left:25.631733pt;}
.x22{left:28.412667pt;}
.x26{left:37.412000pt;}
.x14{left:40.130533pt;}
.x31{left:47.280267pt;}
.x30{left:50.446667pt;}
.x12{left:58.477333pt;}
.x1e{left:60.000000pt;}
.x5{left:64.252000pt;}
.x3d{left:66.477333pt;}
.x1{left:71.811067pt;}
.xc{left:75.890400pt;}
.x37{left:77.685467pt;}
.x6{left:83.139600pt;}
.x2f{left:84.078667pt;}
.xd{left:86.890400pt;}
.x2{left:90.702800pt;}
.x11{left:95.889733pt;}
.x27{left:100.130133pt;}
.x3a{left:103.570000pt;}
.x9{left:116.877067pt;}
.x32{left:120.266933pt;}
.x18{left:155.286133pt;}
.x33{left:183.686933pt;}
.x34{left:187.662933pt;}
.x15{left:198.308533pt;}
.xa{left:213.157067pt;}
.x2b{left:215.285733pt;}
.x35{left:239.798933pt;}
.x45{left:245.530800pt;}
.x1a{left:252.146133pt;}
.x1b{left:255.812800pt;}
.x28{left:258.308133pt;}
.x1c{left:259.479467pt;}
.x23{left:266.812667pt;}
.x24{left:270.479333pt;}
.x25{left:274.146000pt;}
.x16{left:291.128533pt;}
.x20{left:310.952667pt;}
.x2c{left:312.145733pt;}
.x49{left:314.140667pt;}
.x2d{left:315.812400pt;}
.x2e{left:319.479067pt;}
.x39{left:323.021333pt;}
.xe{left:325.290400pt;}
.xf{left:328.957067pt;}
.x10{left:332.623733pt;}
.x29{left:351.128133pt;}
.xb{left:369.430400pt;}
.x17{left:446.966533pt;}
.x38{left:485.194400pt;}
.x2a{left:506.966133pt;}
.x4{left:579.238667pt;}
.x3{left:581.789200pt;}
}




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