
    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_1baee1826a7cb4b0d7b29a2f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_b1a2d513c3d7ceaaa0f6ef51.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_44f937f771ae4550fd44c678.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_232d41ec45b1cffb45c82aa0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.087891;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_9f556477dfe7b6b85b84a321.woff')format("woff");}.ff6{font-family:ff6;line-height:0.866699;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_c8fcc35f115fbc42b87602e4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.866699;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_c74d20f28a09dd7394111fd1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_63fe805a1540800e91d14bc7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_6fbbcfbf6b6b4d5e073fd89b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_410ed98f112767cd88327157.woff')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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_6750d05ff43b960d97dc0821.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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_8d082f1df7e362038de17261.woff')format("woff");}.ffd{font-family:ffd;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000000px;}
.v3{vertical-align:-9.000000px;}
.v4{vertical-align:-5.400000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.400000px;}
.v1{vertical-align:27.000000px;}
.ls1e{letter-spacing:-0.120000px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.930000px;}
.ls12{letter-spacing:0.960000px;}
.ls14{letter-spacing:0.990000px;}
.ls16{letter-spacing:1.020000px;}
.ls18{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.110000px;}
.ls0{letter-spacing:1.164000px;}
.ls3{letter-spacing:1.308000px;}
.ls2{letter-spacing:1.452000px;}
.ls7{letter-spacing:1.609050px;}
.ls6{letter-spacing:1.701000px;}
.lsa{letter-spacing:1.710000px;}
.ls8{letter-spacing:1.798350px;}
.lsb{letter-spacing:1.800000px;}
.ls15{letter-spacing:1.860000px;}
.ls9{letter-spacing:1.890000px;}
.ls1b{letter-spacing:1.950000px;}
.ls1c{letter-spacing:49.740000px;}
.lsc{letter-spacing:49.770000px;}
.ls1d{letter-spacing:49.792500px;}
.lsd{letter-spacing:49.822500px;}
.ls5{letter-spacing:52.920000px;}
.ls4{letter-spacing:52.972500px;}
.lsf{letter-spacing:57.645000px;}
.lse{letter-spacing:57.697500px;}
.ls11{letter-spacing:62.370000px;}
.ls10{letter-spacing:62.422500px;}
.ls19{letter-spacing:65.572500px;}
.ls1a{letter-spacing:375.480000px;}
.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;}
}
.ws0{word-spacing:-69.595800px;}
.wsf{word-spacing:-64.890000px;}
.wsb{word-spacing:-58.650000px;}
.ws10{word-spacing:-58.588350px;}
.wsa{word-spacing:-58.500000px;}
.wsd{word-spacing:-58.401000px;}
.ws5{word-spacing:-58.399050px;}
.wsc{word-spacing:-56.790000px;}
.ws11{word-spacing:-46.088400px;}
.ws8{word-spacing:-33.860400px;}
.ws9{word-spacing:-33.829950px;}
.ws3{word-spacing:-32.033400px;}
.ws4{word-spacing:-32.002950px;}
.wse{word-spacing:-24.694950px;}
.ws12{word-spacing:-24.441900px;}
.ws1{word-spacing:-10.962000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:456.996000px;}
.ws7{word-spacing:726.175350px;}
.ws13{word-spacing:4474.716000px;}
._a{margin-left:-19.029300px;}
._e{margin-left:-15.427350px;}
._d{margin-left:-13.631700px;}
._b{margin-left:-12.454350px;}
._8{margin-left:-10.577250px;}
._c{margin-left:-8.999100px;}
._6{margin-left:-7.404600px;}
._5{margin-left:-5.256000px;}
._9{margin-left:-4.255950px;}
._2{margin-left:-3.244050px;}
._0{margin-left:-1.441800px;}
._1{width:1.802250px;}
._3{width:3.604500px;}
._4{width:5.048550px;}
._7{width:6.447600px;}
.fc8{color:rgb(84,129,53);}
.fc6{color:rgb(233,113,50);}
.fc5{color:rgb(21,96,130);}
.fc3{color:rgb(25,107,36);}
.fc2{color:rgb(70,120,134);}
.fc7{color:rgb(255,255,255);}
.fc4{color:rgb(160,43,147);}
.fc1{color:rgb(118,118,118);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs5{font-size:58.650000px;}
.fsb{font-size:72.000000px;}
.fs3{font-size:85.650000px;}
.fs9{font-size:94.500000px;}
.fsa{font-size:94.650000px;}
.fsc{font-size:108.150000px;}
.fs12{font-size:121.650000px;}
.fs10{font-size:130.650000px;}
.fs11{font-size:130.800000px;}
.fs2{font-size:144.150000px;}
.fsf{font-size:144.300000px;}
.fs7{font-size:157.650000px;}
.fs8{font-size:157.800000px;}
.fse{font-size:166.650000px;}
.fsd{font-size:166.800000px;}
.fs13{font-size:193.650000px;}
.fs6{font-size:238.800000px;}
.fs0{font-size:360.450000px;}
.fs1{font-size:360.600000px;}
.y0{bottom:0.000000px;}
.y99{bottom:19.462500px;}
.y2f{bottom:20.812500px;}
.y92{bottom:78.525000px;}
.y7e{bottom:84.150000px;}
.y6f{bottom:90.337500px;}
.y51{bottom:93.562500px;}
.y91{bottom:107.850000px;}
.y5f{bottom:107.925000px;}
.y7d{bottom:113.437500px;}
.y6e{bottom:119.625000px;}
.y98{bottom:122.250000px;}
.y50{bottom:122.850000px;}
.y87{bottom:127.012500px;}
.y90{bottom:137.137500px;}
.y5e{bottom:137.212500px;}
.y7c{bottom:141.600000px;}
.y2e{bottom:142.350000px;}
.y19{bottom:144.375000px;}
.y6d{bottom:147.787500px;}
.y4f{bottom:151.050000px;}
.y8f{bottom:165.300000px;}
.y39{bottom:165.930000px;}
.y5d{bottom:166.500000px;}
.y7b{bottom:170.880000px;}
.y8{bottom:172.725000px;}
.y18{bottom:177.075000px;}
.y4e{bottom:180.345000px;}
.y2d{bottom:185.175000px;}
.y8e{bottom:194.580000px;}
.y5c{bottom:194.655000px;}
.y88{bottom:197.100000px;}
.y7{bottom:200.880000px;}
.y2c{bottom:205.425000px;}
.y83{bottom:207.270000px;}
.y4d{bottom:208.500000px;}
.y17{bottom:209.730000px;}
.y38{bottom:210.975000px;}
.y86{bottom:215.205000px;}
.y8d{bottom:222.750000px;}
.y5b{bottom:223.950000px;}
.y2b{bottom:226.830000px;}
.y6{bottom:227.925000px;}
.y7a{bottom:228.375000px;}
.y6c{bottom:234.525000px;}
.y4c{bottom:237.780000px;}
.y89{bottom:239.925000px;}
.y82{bottom:241.050000px;}
.y16{bottom:243.525000px;}
.y2a{bottom:248.250000px;}
.y41{bottom:249.150000px;}
.y8c{bottom:252.030000px;}
.y5a{bottom:252.105000px;}
.y5{bottom:256.095000px;}
.y37{bottom:257.175000px;}
.y79{bottom:257.670000px;}
.y6b{bottom:263.820000px;}
.y85{bottom:265.800000px;}
.y4b{bottom:267.075000px;}
.y29{bottom:268.530000px;}
.y15{bottom:276.195000px;}
.y8b{bottom:281.325000px;}
.y59{bottom:281.400000px;}
.y4{bottom:284.250000px;}
.y28{bottom:289.950000px;}
.y40{bottom:294.225000px;}
.y6a{bottom:295.350000px;}
.y36{bottom:302.250000px;}
.y14{bottom:308.850000px;}
.y8a{bottom:309.480000px;}
.y58{bottom:310.695000px;}
.y27{bottom:311.325000px;}
.y78{bottom:315.120000px;}
.y84{bottom:316.350000px;}
.y4a{bottom:324.525000px;}
.y69{bottom:324.630000px;}
.y26{bottom:331.620000px;}
.y97{bottom:333.495000px;}
.y57{bottom:338.850000px;}
.y3f{bottom:339.300000px;}
.y13{bottom:341.550000px;}
.y77{bottom:343.275000px;}
.y35{bottom:347.280000px;}
.y3{bottom:349.275000px;}
.y49{bottom:352.695000px;}
.y25{bottom:353.025000px;}
.y56{bottom:368.130000px;}
.y76{bottom:372.570000px;}
.y24{bottom:374.445000px;}
.y12{bottom:376.470000px;}
.y96{bottom:378.570000px;}
.y68{bottom:382.125000px;}
.y34{bottom:392.370000px;}
.y23{bottom:394.695000px;}
.y55{bottom:396.300000px;}
.y3e{bottom:399.000000px;}
.y75{bottom:401.850000px;}
.y48{bottom:411.255000px;}
.y22{bottom:416.100000px;}
.y11{bottom:423.780000px;}
.y2{bottom:425.475000px;}
.y54{bottom:425.595000px;}
.y21{bottom:437.505000px;}
.y33{bottom:438.570000px;}
.y95{bottom:439.380000px;}
.y47{bottom:439.425000px;}
.y3d{bottom:445.170000px;}
.y67{bottom:448.500000px;}
.y81{bottom:453.720000px;}
.y53{bottom:454.875000px;}
.y10{bottom:456.450000px;}
.y20{bottom:457.800000px;}
.y74{bottom:459.300000px;}
.y66{bottom:474.405000px;}
.y1f{bottom:479.220000px;}
.y52{bottom:483.075000px;}
.y32{bottom:483.600000px;}
.y94{bottom:484.455000px;}
.y73{bottom:487.470000px;}
.yf{bottom:490.245000px;}
.y46{bottom:491.370000px;}
.y3c{bottom:492.495000px;}
.y1e{bottom:500.580000px;}
.y65{bottom:507.075000px;}
.y80{bottom:513.405000px;}
.y72{bottom:516.750000px;}
.y1d{bottom:520.875000px;}
.y1{bottom:522.345000px;}
.ye{bottom:522.900000px;}
.y31{bottom:528.675000px;}
.y93{bottom:530.655000px;}
.y45{bottom:530.820000px;}
.y64{bottom:531.870000px;}
.y3b{bottom:538.695000px;}
.y1c{bottom:542.295000px;}
.y71{bottom:546.030000px;}
.yd{bottom:555.600000px;}
.y7f{bottom:559.620000px;}
.y1b{bottom:563.700000px;}
.y63{bottom:564.525000px;}
.y44{bottom:570.225000px;}
.y70{bottom:574.200000px;}
.y30{bottom:574.875000px;}
.y3a{bottom:583.755000px;}
.y1a{bottom:583.950000px;}
.yc{bottom:588.255000px;}
.y62{bottom:597.195000px;}
.y43{bottom:609.630000px;}
.yb{bottom:620.925000px;}
.y61{bottom:623.100000px;}
.y42{bottom:650.220000px;}
.ya{bottom:653.595000px;}
.y60{bottom:656.925000px;}
.y9{bottom:713.370000px;}
.h5{height:50.688721px;}
.h1b{height:62.402344px;}
.ha{height:64.092041px;}
.hb{height:64.193774px;}
.h15{height:66.722168px;}
.h14{height:66.828076px;}
.hc{height:70.959814px;}
.h4{height:74.358252px;}
.h17{height:76.359814px;}
.h16{height:105.433960px;}
.h18{height:107.569116px;}
.h12{height:113.234253px;}
.h13{height:113.364258px;}
.h3{height:124.934692px;}
.h11{height:125.064697px;}
.h9{height:127.765137px;}
.h7{height:136.635132px;}
.h8{height:136.765137px;}
.he{height:144.435425px;}
.hd{height:144.565430px;}
.h10{height:144.679541px;}
.hf{height:144.809766px;}
.h19{height:192.609888px;}
.h6{height:201.837305px;}
.h1a{height:254.497412px;}
.h1{height:304.657690px;}
.h2{height:304.784473px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6{left:37.762479px;}
.x9{left:41.249979px;}
.xc{left:44.174979px;}
.xf{left:55.687479px;}
.x11{left:59.737479px;}
.x7{left:64.799979px;}
.xa{left:68.287479px;}
.xb{left:91.799979px;}
.x5{left:109.874979px;}
.xe{left:118.837479px;}
.x12{left:146.924979px;}
.x4{left:190.949979px;}
.x1{left:214.244979px;}
.x3{left:292.649979px;}
.x1d{left:317.219979px;}
.x17{left:358.049979px;}
.x18{left:413.069979px;}
.x2{left:477.224979px;}
.x8{left:625.424979px;}
.x13{left:672.149979px;}
.x1b{left:686.969979px;}
.x15{left:707.729979px;}
.x1c{left:713.999979px;}
.x14{left:715.154979px;}
.x16{left:808.724979px;}
.x10{left:879.299979px;}
.xd{left:894.674979px;}
.x19{left:1047.794979px;}
.x1a{left:1075.049979px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-8.000000pt;}
.v4{vertical-align:-4.800000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.800000pt;}
.v1{vertical-align:24.000000pt;}
.ls1e{letter-spacing:-0.106667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.826667pt;}
.ls12{letter-spacing:0.853333pt;}
.ls14{letter-spacing:0.880000pt;}
.ls16{letter-spacing:0.906667pt;}
.ls18{letter-spacing:0.960000pt;}
.ls13{letter-spacing:0.986667pt;}
.ls0{letter-spacing:1.034667pt;}
.ls3{letter-spacing:1.162667pt;}
.ls2{letter-spacing:1.290667pt;}
.ls7{letter-spacing:1.430267pt;}
.ls6{letter-spacing:1.512000pt;}
.lsa{letter-spacing:1.520000pt;}
.ls8{letter-spacing:1.598533pt;}
.lsb{letter-spacing:1.600000pt;}
.ls15{letter-spacing:1.653333pt;}
.ls9{letter-spacing:1.680000pt;}
.ls1b{letter-spacing:1.733333pt;}
.ls1c{letter-spacing:44.213333pt;}
.lsc{letter-spacing:44.240000pt;}
.ls1d{letter-spacing:44.260000pt;}
.lsd{letter-spacing:44.286667pt;}
.ls5{letter-spacing:47.040000pt;}
.ls4{letter-spacing:47.086667pt;}
.lsf{letter-spacing:51.240000pt;}
.lse{letter-spacing:51.286667pt;}
.ls11{letter-spacing:55.440000pt;}
.ls10{letter-spacing:55.486667pt;}
.ls19{letter-spacing:58.286667pt;}
.ls1a{letter-spacing:333.760000pt;}
.ws0{word-spacing:-61.862933pt;}
.wsf{word-spacing:-57.680000pt;}
.wsb{word-spacing:-52.133333pt;}
.ws10{word-spacing:-52.078533pt;}
.wsa{word-spacing:-52.000000pt;}
.wsd{word-spacing:-51.912000pt;}
.ws5{word-spacing:-51.910267pt;}
.wsc{word-spacing:-50.480000pt;}
.ws11{word-spacing:-40.967467pt;}
.ws8{word-spacing:-30.098133pt;}
.ws9{word-spacing:-30.071067pt;}
.ws3{word-spacing:-28.474133pt;}
.ws4{word-spacing:-28.447067pt;}
.wse{word-spacing:-21.951067pt;}
.ws12{word-spacing:-21.726133pt;}
.ws1{word-spacing:-9.744000pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:406.218667pt;}
.ws7{word-spacing:645.489200pt;}
.ws13{word-spacing:3977.525333pt;}
._a{margin-left:-16.914933pt;}
._e{margin-left:-13.713200pt;}
._d{margin-left:-12.117067pt;}
._b{margin-left:-11.070533pt;}
._8{margin-left:-9.402000pt;}
._c{margin-left:-7.999200pt;}
._6{margin-left:-6.581867pt;}
._5{margin-left:-4.672000pt;}
._9{margin-left:-3.783067pt;}
._2{margin-left:-2.883600pt;}
._0{margin-left:-1.281600pt;}
._1{width:1.602000pt;}
._3{width:3.204000pt;}
._4{width:4.487600pt;}
._7{width:5.731200pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:52.133333pt;}
.fsb{font-size:64.000000pt;}
.fs3{font-size:76.133333pt;}
.fs9{font-size:84.000000pt;}
.fsa{font-size:84.133333pt;}
.fsc{font-size:96.133333pt;}
.fs12{font-size:108.133333pt;}
.fs10{font-size:116.133333pt;}
.fs11{font-size:116.266667pt;}
.fs2{font-size:128.133333pt;}
.fsf{font-size:128.266667pt;}
.fs7{font-size:140.133333pt;}
.fs8{font-size:140.266667pt;}
.fse{font-size:148.133333pt;}
.fsd{font-size:148.266667pt;}
.fs13{font-size:172.133333pt;}
.fs6{font-size:212.266667pt;}
.fs0{font-size:320.400000pt;}
.fs1{font-size:320.533333pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:17.300000pt;}
.y2f{bottom:18.500000pt;}
.y92{bottom:69.800000pt;}
.y7e{bottom:74.800000pt;}
.y6f{bottom:80.300000pt;}
.y51{bottom:83.166667pt;}
.y91{bottom:95.866667pt;}
.y5f{bottom:95.933333pt;}
.y7d{bottom:100.833333pt;}
.y6e{bottom:106.333333pt;}
.y98{bottom:108.666667pt;}
.y50{bottom:109.200000pt;}
.y87{bottom:112.900000pt;}
.y90{bottom:121.900000pt;}
.y5e{bottom:121.966667pt;}
.y7c{bottom:125.866667pt;}
.y2e{bottom:126.533333pt;}
.y19{bottom:128.333333pt;}
.y6d{bottom:131.366667pt;}
.y4f{bottom:134.266667pt;}
.y8f{bottom:146.933333pt;}
.y39{bottom:147.493333pt;}
.y5d{bottom:148.000000pt;}
.y7b{bottom:151.893333pt;}
.y8{bottom:153.533333pt;}
.y18{bottom:157.400000pt;}
.y4e{bottom:160.306667pt;}
.y2d{bottom:164.600000pt;}
.y8e{bottom:172.960000pt;}
.y5c{bottom:173.026667pt;}
.y88{bottom:175.200000pt;}
.y7{bottom:178.560000pt;}
.y2c{bottom:182.600000pt;}
.y83{bottom:184.240000pt;}
.y4d{bottom:185.333333pt;}
.y17{bottom:186.426667pt;}
.y38{bottom:187.533333pt;}
.y86{bottom:191.293333pt;}
.y8d{bottom:198.000000pt;}
.y5b{bottom:199.066667pt;}
.y2b{bottom:201.626667pt;}
.y6{bottom:202.600000pt;}
.y7a{bottom:203.000000pt;}
.y6c{bottom:208.466667pt;}
.y4c{bottom:211.360000pt;}
.y89{bottom:213.266667pt;}
.y82{bottom:214.266667pt;}
.y16{bottom:216.466667pt;}
.y2a{bottom:220.666667pt;}
.y41{bottom:221.466667pt;}
.y8c{bottom:224.026667pt;}
.y5a{bottom:224.093333pt;}
.y5{bottom:227.640000pt;}
.y37{bottom:228.600000pt;}
.y79{bottom:229.040000pt;}
.y6b{bottom:234.506667pt;}
.y85{bottom:236.266667pt;}
.y4b{bottom:237.400000pt;}
.y29{bottom:238.693333pt;}
.y15{bottom:245.506667pt;}
.y8b{bottom:250.066667pt;}
.y59{bottom:250.133333pt;}
.y4{bottom:252.666667pt;}
.y28{bottom:257.733333pt;}
.y40{bottom:261.533333pt;}
.y6a{bottom:262.533333pt;}
.y36{bottom:268.666667pt;}
.y14{bottom:274.533333pt;}
.y8a{bottom:275.093333pt;}
.y58{bottom:276.173333pt;}
.y27{bottom:276.733333pt;}
.y78{bottom:280.106667pt;}
.y84{bottom:281.200000pt;}
.y4a{bottom:288.466667pt;}
.y69{bottom:288.560000pt;}
.y26{bottom:294.773333pt;}
.y97{bottom:296.440000pt;}
.y57{bottom:301.200000pt;}
.y3f{bottom:301.600000pt;}
.y13{bottom:303.600000pt;}
.y77{bottom:305.133333pt;}
.y35{bottom:308.693333pt;}
.y3{bottom:310.466667pt;}
.y49{bottom:313.506667pt;}
.y25{bottom:313.800000pt;}
.y56{bottom:327.226667pt;}
.y76{bottom:331.173333pt;}
.y24{bottom:332.840000pt;}
.y12{bottom:334.640000pt;}
.y96{bottom:336.506667pt;}
.y68{bottom:339.666667pt;}
.y34{bottom:348.773333pt;}
.y23{bottom:350.840000pt;}
.y55{bottom:352.266667pt;}
.y3e{bottom:354.666667pt;}
.y75{bottom:357.200000pt;}
.y48{bottom:365.560000pt;}
.y22{bottom:369.866667pt;}
.y11{bottom:376.693333pt;}
.y2{bottom:378.200000pt;}
.y54{bottom:378.306667pt;}
.y21{bottom:388.893333pt;}
.y33{bottom:389.840000pt;}
.y95{bottom:390.560000pt;}
.y47{bottom:390.600000pt;}
.y3d{bottom:395.706667pt;}
.y67{bottom:398.666667pt;}
.y81{bottom:403.306667pt;}
.y53{bottom:404.333333pt;}
.y10{bottom:405.733333pt;}
.y20{bottom:406.933333pt;}
.y74{bottom:408.266667pt;}
.y66{bottom:421.693333pt;}
.y1f{bottom:425.973333pt;}
.y52{bottom:429.400000pt;}
.y32{bottom:429.866667pt;}
.y94{bottom:430.626667pt;}
.y73{bottom:433.306667pt;}
.yf{bottom:435.773333pt;}
.y46{bottom:436.773333pt;}
.y3c{bottom:437.773333pt;}
.y1e{bottom:444.960000pt;}
.y65{bottom:450.733333pt;}
.y80{bottom:456.360000pt;}
.y72{bottom:459.333333pt;}
.y1d{bottom:463.000000pt;}
.y1{bottom:464.306667pt;}
.ye{bottom:464.800000pt;}
.y31{bottom:469.933333pt;}
.y93{bottom:471.693333pt;}
.y45{bottom:471.840000pt;}
.y64{bottom:472.773333pt;}
.y3b{bottom:478.840000pt;}
.y1c{bottom:482.040000pt;}
.y71{bottom:485.360000pt;}
.yd{bottom:493.866667pt;}
.y7f{bottom:497.440000pt;}
.y1b{bottom:501.066667pt;}
.y63{bottom:501.800000pt;}
.y44{bottom:506.866667pt;}
.y70{bottom:510.400000pt;}
.y30{bottom:511.000000pt;}
.y3a{bottom:518.893333pt;}
.y1a{bottom:519.066667pt;}
.yc{bottom:522.893333pt;}
.y62{bottom:530.840000pt;}
.y43{bottom:541.893333pt;}
.yb{bottom:551.933333pt;}
.y61{bottom:553.866667pt;}
.y42{bottom:577.973333pt;}
.ya{bottom:580.973333pt;}
.y60{bottom:583.933333pt;}
.y9{bottom:634.106667pt;}
.h5{height:45.056641pt;}
.h1b{height:55.468750pt;}
.ha{height:56.970703pt;}
.hb{height:57.061133pt;}
.h15{height:59.308594pt;}
.h14{height:59.402734pt;}
.hc{height:63.075391pt;}
.h4{height:66.096224pt;}
.h17{height:67.875391pt;}
.h16{height:93.719076pt;}
.h18{height:95.616992pt;}
.h12{height:100.652669pt;}
.h13{height:100.768229pt;}
.h3{height:111.053060pt;}
.h11{height:111.168620pt;}
.h9{height:113.569010pt;}
.h7{height:121.453451pt;}
.h8{height:121.569010pt;}
.he{height:128.387044pt;}
.hd{height:128.502604pt;}
.h10{height:128.604036pt;}
.hf{height:128.719792pt;}
.h19{height:171.208789pt;}
.h6{height:179.410937pt;}
.h1a{height:226.219922pt;}
.h1{height:270.806836pt;}
.h2{height:270.919531pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6{left:33.566648pt;}
.x9{left:36.666648pt;}
.xc{left:39.266648pt;}
.xf{left:49.499981pt;}
.x11{left:53.099981pt;}
.x7{left:57.599981pt;}
.xa{left:60.699981pt;}
.xb{left:81.599981pt;}
.x5{left:97.666648pt;}
.xe{left:105.633314pt;}
.x12{left:130.599981pt;}
.x4{left:169.733314pt;}
.x1{left:190.439981pt;}
.x3{left:260.133314pt;}
.x1d{left:281.973314pt;}
.x17{left:318.266648pt;}
.x18{left:367.173314pt;}
.x2{left:424.199981pt;}
.x8{left:555.933314pt;}
.x13{left:597.466648pt;}
.x1b{left:610.639981pt;}
.x15{left:629.093314pt;}
.x1c{left:634.666648pt;}
.x14{left:635.693314pt;}
.x16{left:718.866648pt;}
.x10{left:781.599981pt;}
.xd{left:795.266648pt;}
.x19{left:931.373314pt;}
.x1a{left:955.599981pt;}
}




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