
    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_2eb3146ba571df04921a9e72.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7bb290c38c3d8556babb4fba.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4270fe39199f8759b063ce8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_7ebdcda7708e7e6a4520f211.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_4aab65bd5cda7f3ed9510da7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5f29ae61c959a2ee8fd5df29.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.186035;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_f35683c517f6e2450c0b8b1b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091797;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_3fc2bae332961f438d4f5b2b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-11.520000px;}
.v1{vertical-align:-9.360000px;}
.v7{vertical-align:-7.920000px;}
.v5{vertical-align:-5.760000px;}
.v3{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.600000px;}
.v6{vertical-align:5.760000px;}
.v8{vertical-align:7.920000px;}
.v2{vertical-align:9.360000px;}
.v9{vertical-align:11.520000px;}
.ls16{letter-spacing:-0.900000px;}
.ls25{letter-spacing:-0.378600px;}
.ls24{letter-spacing:-0.369600px;}
.ls23{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.341400px;}
.ls14{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.341400px;}
.ls2d{letter-spacing:0.350400px;}
.ls1d{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.748080px;}
.ls1e{letter-spacing:0.786960px;}
.ls2b{letter-spacing:0.972000px;}
.ls6{letter-spacing:1.049760px;}
.lsf{letter-spacing:1.226160px;}
.ls19{letter-spacing:1.260000px;}
.ls20{letter-spacing:1.440000px;}
.ls26{letter-spacing:1.769760px;}
.ls2a{letter-spacing:6.334560px;}
.ls1b{letter-spacing:7.740000px;}
.ls5{letter-spacing:9.180000px;}
.ls11{letter-spacing:9.408240px;}
.ls1f{letter-spacing:10.324080px;}
.ls7{letter-spacing:11.216880px;}
.lsb{letter-spacing:11.764080px;}
.ls27{letter-spacing:12.806640px;}
.ls29{letter-spacing:12.814560px;}
.ls28{letter-spacing:17.820000px;}
.ls4{letter-spacing:20.700000px;}
.ls2c{letter-spacing:21.221280px;}
.lsa{letter-spacing:25.020000px;}
.ls9{letter-spacing:36.540000px;}
.ls3{letter-spacing:50.940000px;}
.ls1a{letter-spacing:71.100000px;}
.lsd{letter-spacing:118.620000px;}
.ls18{letter-spacing:125.621280px;}
.lsc{letter-spacing:141.660000px;}
.ls12{letter-spacing:158.220000px;}
.ls10{letter-spacing:163.260000px;}
.ls17{letter-spacing:168.426720px;}
.lse{letter-spacing:191.340000px;}
.ls21{letter-spacing:267.148080px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.420000px;}
.ws9{word-spacing:-21.410400px;}
.ws8{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.718600px;}
.ws5{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.690400px;}
.ws7{word-spacing:-20.681400px;}
.ws1{word-spacing:0.000000px;}
._30{margin-left:-824.614560px;}
._36{margin-left:-803.593680px;}
._37{margin-left:-245.295360px;}
._26{margin-left:-212.020560px;}
._27{margin-left:-183.643680px;}
._1e{margin-left:-180.549360px;}
._29{margin-left:-178.962480px;}
._24{margin-left:-162.478800px;}
._46{margin-left:-156.133440px;}
._25{margin-left:-140.041440px;}
._48{margin-left:-112.291920px;}
._49{margin-left:-110.880000px;}
._47{margin-left:-48.420000px;}
._4e{margin-left:-19.657920px;}
._1a{margin-left:-12.971760px;}
._23{margin-left:-11.520000px;}
._28{margin-left:-9.360000px;}
._20{margin-left:-6.108720px;}
._16{margin-left:-4.801680px;}
._7{margin-left:-3.201120px;}
._0{margin-left:-2.140800px;}
._2{margin-left:-1.133280px;}
._1{width:1.158720px;}
._5{width:2.475600px;}
._14{width:4.296240px;}
._15{width:5.391360px;}
._18{width:6.402240px;}
._e{width:8.407440px;}
._d{width:9.759600px;}
._8{width:10.791840px;}
._9{width:12.175200px;}
._a{width:13.815360px;}
._b{width:14.818080px;}
._f{width:16.342560px;}
._11{width:17.388240px;}
._10{width:18.707280px;}
._19{width:19.812240px;}
._13{width:22.216560px;}
._6{width:23.334480px;}
._c{width:24.358080px;}
._21{width:25.664400px;}
._22{width:27.651120px;}
._1c{width:29.202480px;}
._42{width:30.831840px;}
._1f{width:35.342880px;}
._12{width:36.391680px;}
._4d{width:37.777680px;}
._1d{width:42.547440px;}
._2a{width:44.057520px;}
._38{width:48.476160px;}
._1b{width:49.553280px;}
._17{width:51.540720px;}
._2c{width:70.529760px;}
._2b{width:75.926880px;}
._3e{width:76.970880px;}
._2e{width:97.718400px;}
._3a{width:103.458240px;}
._3b{width:117.552960px;}
._41{width:122.244480px;}
._32{width:123.870960px;}
._34{width:132.506640px;}
._3{width:138.271200px;}
._3c{width:141.775920px;}
._40{width:148.465680px;}
._3f{width:157.903920px;}
._45{width:159.468480px;}
._2d{width:180.648720px;}
._31{width:183.934080px;}
._2f{width:187.032240px;}
._4{width:194.400000px;}
._4a{width:255.938400px;}
._39{width:273.330000px;}
._35{width:277.187760px;}
._33{width:292.199760px;}
._3d{width:307.981440px;}
._43{width:343.193760px;}
._4b{width:355.602240px;}
._4c{width:356.629680px;}
._44{width:499.430880px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,0);}
.fs3{font-size:5.760000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y2{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y6{bottom:6.300000px;}
.y41{bottom:8.280000px;}
.y69{bottom:8.325000px;}
.y65{bottom:8.460000px;}
.y44{bottom:8.640000px;}
.y6a{bottom:8.685000px;}
.y4a{bottom:8.820000px;}
.yc{bottom:11.700000px;}
.y4{bottom:13.140000px;}
.yb{bottom:27.720000px;}
.y40{bottom:36.000000px;}
.y64{bottom:36.180000px;}
.y5{bottom:36.360000px;}
.y49{bottom:36.540000px;}
.y4d{bottom:36.585000px;}
.ya{bottom:57.060000px;}
.y45{bottom:63.900000px;}
.y4e{bottom:63.945000px;}
.y43{bottom:64.260000px;}
.y4c{bottom:64.305000px;}
.y9{bottom:72.180000px;}
.y48{bottom:91.800000px;}
.y47{bottom:92.160000px;}
.y53{bottom:104.220000px;}
.y85{bottom:104.580000px;}
.y32{bottom:109.836000px;}
.y52{bottom:131.976000px;}
.y84{bottom:132.336000px;}
.y62{bottom:137.196000px;}
.y31{bottom:137.556000px;}
.y83{bottom:159.690000px;}
.y51{bottom:160.050000px;}
.y61{bottom:164.910000px;}
.y30{bottom:165.270000px;}
.y50{bottom:179.850000px;}
.y82{bottom:187.950000px;}
.y60{bottom:192.810000px;}
.y2f{bottom:193.170000px;}
.y81{bottom:215.670000px;}
.y5f{bottom:220.530000px;}
.y2e{bottom:220.890000px;}
.y80{bottom:243.390000px;}
.y2d{bottom:248.610000px;}
.y4f{bottom:263.910000px;}
.y7f{bottom:271.110000px;}
.y2c{bottom:276.150000px;}
.y3d{bottom:276.510000px;}
.y7e{bottom:299.010000px;}
.y2b{bottom:303.870000px;}
.y3c{bottom:304.230000px;}
.y7d{bottom:326.730000px;}
.y2a{bottom:331.590000px;}
.y3b{bottom:331.950000px;}
.y4b{bottom:347.970000px;}
.y7c{bottom:354.450000px;}
.y29{bottom:359.310000px;}
.y3a{bottom:359.670000px;}
.y7b{bottom:382.215000px;}
.y28{bottom:387.255000px;}
.y39{bottom:387.615000px;}
.y7a{bottom:410.115000px;}
.y5e{bottom:414.975000px;}
.y27{bottom:415.335000px;}
.y46{bottom:432.075000px;}
.y79{bottom:437.835000px;}
.y5d{bottom:442.695000px;}
.y26{bottom:443.055000px;}
.y78{bottom:465.555000px;}
.y5c{bottom:470.415000px;}
.y25{bottom:470.775000px;}
.y77{bottom:493.095000px;}
.y24{bottom:498.675000px;}
.y76{bottom:521.175000px;}
.y23{bottom:526.395000px;}
.y42{bottom:544.035000px;}
.y75{bottom:548.895000px;}
.y22{bottom:554.115000px;}
.y74{bottom:576.615000px;}
.y21{bottom:582.015000px;}
.y73{bottom:604.515000px;}
.y5b{bottom:609.375000px;}
.y20{bottom:609.735000px;}
.y3f{bottom:628.125000px;}
.y72{bottom:632.265000px;}
.y5a{bottom:637.125000px;}
.y1f{bottom:637.485000px;}
.y71{bottom:659.985000px;}
.y59{bottom:664.845000px;}
.y1e{bottom:665.205000px;}
.y70{bottom:687.885000px;}
.y58{bottom:692.745000px;}
.y1d{bottom:693.105000px;}
.y6f{bottom:715.245000px;}
.y3e{bottom:720.465000px;}
.y1c{bottom:720.825000px;}
.y6e{bottom:743.325000px;}
.y1b{bottom:748.545000px;}
.y6d{bottom:771.045000px;}
.y1a{bottom:776.445000px;}
.y87{bottom:783.105000px;}
.y6c{bottom:791.025000px;}
.y19{bottom:804.165000px;}
.y57{bottom:831.525000px;}
.y18{bottom:831.885000px;}
.y86{bottom:832.065000px;}
.y6b{bottom:847.185000px;}
.y56{bottom:859.245000px;}
.y17{bottom:859.605000px;}
.y68{bottom:875.805000px;}
.y55{bottom:887.190000px;}
.y16{bottom:887.550000px;}
.y67{bottom:904.290000px;}
.y54{bottom:914.910000px;}
.y15{bottom:915.270000px;}
.y66{bottom:932.910000px;}
.y14{bottom:942.630000px;}
.y38{bottom:942.990000px;}
.y13{bottom:970.710000px;}
.y63{bottom:989.070000px;}
.y12{bottom:998.250000px;}
.y37{bottom:998.610000px;}
.y11{bottom:1026.330000px;}
.y10{bottom:1053.690000px;}
.y36{bottom:1054.050000px;}
.yf{bottom:1081.590000px;}
.y35{bottom:1081.950000px;}
.ye{bottom:1109.310000px;}
.y34{bottom:1109.670000px;}
.yd{bottom:1137.030000px;}
.y33{bottom:1137.390000px;}
.y3{bottom:1180.080000px;}
.y1{bottom:1193.040000px;}
.y8{bottom:1193.760000px;}
.y7{bottom:1209.060000px;}
.h9{height:5.653125px;}
.h2{height:15.840000px;}
.h5{height:23.760000px;}
.h17{height:27.720000px;}
.h18{height:27.756000px;}
.h19{height:27.900000px;}
.ha{height:28.620000px;}
.h4{height:29.700000px;}
.h11{height:55.440000px;}
.h16{height:55.620000px;}
.h7{height:58.651172px;}
.h8{height:65.010937px;}
.h3{height:66.757500px;}
.h6{height:70.664062px;}
.he{height:72.846211px;}
.hd{height:74.121328px;}
.h13{height:82.059961px;}
.hf{height:82.635820px;}
.hc{height:82.676953px;}
.h15{height:83.340000px;}
.h12{height:83.376000px;}
.hb{height:84.898125px;}
.h10{height:86.585445px;}
.h14{height:111.240000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:102.960000px;}
.wb{width:112.860000px;}
.w6{width:121.500000px;}
.we{width:133.236000px;}
.wa{width:175.170000px;}
.w7{width:203.430000px;}
.wc{width:210.270000px;}
.w9{width:216.435000px;}
.w3{width:221.250000px;}
.wd{width:241.410000px;}
.w4{width:484.275000px;}
.w2{width:518.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x1b{left:7.740000px;}
.x1f{left:63.750000px;}
.x7{left:92.700000px;}
.x5{left:127.655987px;}
.x8{left:134.675987px;}
.x1{left:144.036000px;}
.x4{left:149.616000px;}
.x12{left:178.949987px;}
.x10{left:180.749987px;}
.x1a{left:185.969987px;}
.xc{left:200.729987px;}
.x24{left:208.649987px;}
.x11{left:210.629987px;}
.x20{left:241.950000px;}
.xe{left:277.454987px;}
.x9{left:315.614987px;}
.x1c{left:332.535000px;}
.xb{left:364.214987px;}
.xf{left:367.274987px;}
.xd{left:408.314987px;}
.x23{left:409.394987px;}
.x13{left:419.114987px;}
.x1d{left:436.215000px;}
.x21{left:452.985000px;}
.xa{left:505.004987px;}
.x14{left:539.024987px;}
.x18{left:562.604987px;}
.x15{left:573.224987px;}
.x17{left:583.484987px;}
.x3{left:593.205000px;}
.x16{left:623.084987px;}
.x1e{left:653.370000px;}
.x6{left:659.850000px;}
.x22{left:695.310000px;}
.x19{left:829.259987px;}
@media print{
.va{vertical-align:-10.240000pt;}
.v1{vertical-align:-8.320000pt;}
.v7{vertical-align:-7.040000pt;}
.v5{vertical-align:-5.120000pt;}
.v3{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.200000pt;}
.v6{vertical-align:5.120000pt;}
.v8{vertical-align:7.040000pt;}
.v2{vertical-align:8.320000pt;}
.v9{vertical-align:10.240000pt;}
.ls16{letter-spacing:-0.800000pt;}
.ls25{letter-spacing:-0.336533pt;}
.ls24{letter-spacing:-0.328533pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.303467pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.303467pt;}
.ls2d{letter-spacing:0.311467pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.664960pt;}
.ls1e{letter-spacing:0.699520pt;}
.ls2b{letter-spacing:0.864000pt;}
.ls6{letter-spacing:0.933120pt;}
.lsf{letter-spacing:1.089920pt;}
.ls19{letter-spacing:1.120000pt;}
.ls20{letter-spacing:1.280000pt;}
.ls26{letter-spacing:1.573120pt;}
.ls2a{letter-spacing:5.630720pt;}
.ls1b{letter-spacing:6.880000pt;}
.ls5{letter-spacing:8.160000pt;}
.ls11{letter-spacing:8.362880pt;}
.ls1f{letter-spacing:9.176960pt;}
.ls7{letter-spacing:9.970560pt;}
.lsb{letter-spacing:10.456960pt;}
.ls27{letter-spacing:11.383680pt;}
.ls29{letter-spacing:11.390720pt;}
.ls28{letter-spacing:15.840000pt;}
.ls4{letter-spacing:18.400000pt;}
.ls2c{letter-spacing:18.863360pt;}
.lsa{letter-spacing:22.240000pt;}
.ls9{letter-spacing:32.480000pt;}
.ls3{letter-spacing:45.280000pt;}
.ls1a{letter-spacing:63.200000pt;}
.lsd{letter-spacing:105.440000pt;}
.ls18{letter-spacing:111.663360pt;}
.lsc{letter-spacing:125.920000pt;}
.ls12{letter-spacing:140.640000pt;}
.ls10{letter-spacing:145.120000pt;}
.ls17{letter-spacing:149.712640pt;}
.lse{letter-spacing:170.080000pt;}
.ls21{letter-spacing:237.464960pt;}
.ws3{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws9{word-spacing:-19.031467pt;}
.ws8{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.416533pt;}
.ws5{word-spacing:-18.400000pt;}
.ws6{word-spacing:-18.391467pt;}
.ws7{word-spacing:-18.383467pt;}
.ws1{word-spacing:0.000000pt;}
._30{margin-left:-732.990720pt;}
._36{margin-left:-714.305493pt;}
._37{margin-left:-218.040320pt;}
._26{margin-left:-188.462720pt;}
._27{margin-left:-163.238827pt;}
._1e{margin-left:-160.488320pt;}
._29{margin-left:-159.077760pt;}
._24{margin-left:-144.425600pt;}
._46{margin-left:-138.785280pt;}
._25{margin-left:-124.481280pt;}
._48{margin-left:-99.815040pt;}
._49{margin-left:-98.560000pt;}
._47{margin-left:-43.040000pt;}
._4e{margin-left:-17.473707pt;}
._1a{margin-left:-11.530453pt;}
._23{margin-left:-10.240000pt;}
._28{margin-left:-8.320000pt;}
._20{margin-left:-5.429973pt;}
._16{margin-left:-4.268160pt;}
._7{margin-left:-2.845440pt;}
._0{margin-left:-1.902933pt;}
._2{margin-left:-1.007360pt;}
._1{width:1.029973pt;}
._5{width:2.200533pt;}
._14{width:3.818880pt;}
._15{width:4.792320pt;}
._18{width:5.690880pt;}
._e{width:7.473280pt;}
._d{width:8.675200pt;}
._8{width:9.592747pt;}
._9{width:10.822400pt;}
._a{width:12.280320pt;}
._b{width:13.171627pt;}
._f{width:14.526720pt;}
._11{width:15.456213pt;}
._10{width:16.628693pt;}
._19{width:17.610880pt;}
._13{width:19.748053pt;}
._6{width:20.741760pt;}
._c{width:21.651627pt;}
._21{width:22.812800pt;}
._22{width:24.578773pt;}
._1c{width:25.957760pt;}
._42{width:27.406080pt;}
._1f{width:31.415893pt;}
._12{width:32.348160pt;}
._4d{width:33.580160pt;}
._1d{width:37.819947pt;}
._2a{width:39.162240pt;}
._38{width:43.089920pt;}
._1b{width:44.047360pt;}
._17{width:45.813973pt;}
._2c{width:62.693120pt;}
._2b{width:67.490560pt;}
._3e{width:68.418560pt;}
._2e{width:86.860800pt;}
._3a{width:91.962880pt;}
._3b{width:104.491520pt;}
._41{width:108.661760pt;}
._32{width:110.107520pt;}
._34{width:117.783680pt;}
._3{width:122.907733pt;}
._3c{width:126.023040pt;}
._40{width:131.969493pt;}
._3f{width:140.359040pt;}
._45{width:141.749760pt;}
._2d{width:160.576640pt;}
._31{width:163.496960pt;}
._2f{width:166.250880pt;}
._4{width:172.800000pt;}
._4a{width:227.500800pt;}
._39{width:242.960000pt;}
._35{width:246.389120pt;}
._33{width:259.733120pt;}
._3d{width:273.761280pt;}
._43{width:305.061120pt;}
._4b{width:316.090880pt;}
._4c{width:317.004160pt;}
._44{width:443.938560pt;}
.fs3{font-size:5.120000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y2{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:5.600000pt;}
.y41{bottom:7.360000pt;}
.y69{bottom:7.400000pt;}
.y65{bottom:7.520000pt;}
.y44{bottom:7.680000pt;}
.y6a{bottom:7.720000pt;}
.y4a{bottom:7.840000pt;}
.yc{bottom:10.400000pt;}
.y4{bottom:11.680000pt;}
.yb{bottom:24.640000pt;}
.y40{bottom:32.000000pt;}
.y64{bottom:32.160000pt;}
.y5{bottom:32.320000pt;}
.y49{bottom:32.480000pt;}
.y4d{bottom:32.520000pt;}
.ya{bottom:50.720000pt;}
.y45{bottom:56.800000pt;}
.y4e{bottom:56.840000pt;}
.y43{bottom:57.120000pt;}
.y4c{bottom:57.160000pt;}
.y9{bottom:64.160000pt;}
.y48{bottom:81.600000pt;}
.y47{bottom:81.920000pt;}
.y53{bottom:92.640000pt;}
.y85{bottom:92.960000pt;}
.y32{bottom:97.632000pt;}
.y52{bottom:117.312000pt;}
.y84{bottom:117.632000pt;}
.y62{bottom:121.952000pt;}
.y31{bottom:122.272000pt;}
.y83{bottom:141.946667pt;}
.y51{bottom:142.266667pt;}
.y61{bottom:146.586667pt;}
.y30{bottom:146.906667pt;}
.y50{bottom:159.866667pt;}
.y82{bottom:167.066667pt;}
.y60{bottom:171.386667pt;}
.y2f{bottom:171.706667pt;}
.y81{bottom:191.706667pt;}
.y5f{bottom:196.026667pt;}
.y2e{bottom:196.346667pt;}
.y80{bottom:216.346667pt;}
.y2d{bottom:220.986667pt;}
.y4f{bottom:234.586667pt;}
.y7f{bottom:240.986667pt;}
.y2c{bottom:245.466667pt;}
.y3d{bottom:245.786667pt;}
.y7e{bottom:265.786667pt;}
.y2b{bottom:270.106667pt;}
.y3c{bottom:270.426667pt;}
.y7d{bottom:290.426667pt;}
.y2a{bottom:294.746667pt;}
.y3b{bottom:295.066667pt;}
.y4b{bottom:309.306667pt;}
.y7c{bottom:315.066667pt;}
.y29{bottom:319.386667pt;}
.y3a{bottom:319.706667pt;}
.y7b{bottom:339.746667pt;}
.y28{bottom:344.226667pt;}
.y39{bottom:344.546667pt;}
.y7a{bottom:364.546667pt;}
.y5e{bottom:368.866667pt;}
.y27{bottom:369.186667pt;}
.y46{bottom:384.066667pt;}
.y79{bottom:389.186667pt;}
.y5d{bottom:393.506667pt;}
.y26{bottom:393.826667pt;}
.y78{bottom:413.826667pt;}
.y5c{bottom:418.146667pt;}
.y25{bottom:418.466667pt;}
.y77{bottom:438.306667pt;}
.y24{bottom:443.266667pt;}
.y76{bottom:463.266667pt;}
.y23{bottom:467.906667pt;}
.y42{bottom:483.586667pt;}
.y75{bottom:487.906667pt;}
.y22{bottom:492.546667pt;}
.y74{bottom:512.546667pt;}
.y21{bottom:517.346667pt;}
.y73{bottom:537.346667pt;}
.y5b{bottom:541.666667pt;}
.y20{bottom:541.986667pt;}
.y3f{bottom:558.333333pt;}
.y72{bottom:562.013333pt;}
.y5a{bottom:566.333333pt;}
.y1f{bottom:566.653333pt;}
.y71{bottom:586.653333pt;}
.y59{bottom:590.973333pt;}
.y1e{bottom:591.293333pt;}
.y70{bottom:611.453333pt;}
.y58{bottom:615.773333pt;}
.y1d{bottom:616.093333pt;}
.y6f{bottom:635.773333pt;}
.y3e{bottom:640.413333pt;}
.y1c{bottom:640.733333pt;}
.y6e{bottom:660.733333pt;}
.y1b{bottom:665.373333pt;}
.y6d{bottom:685.373333pt;}
.y1a{bottom:690.173333pt;}
.y87{bottom:696.093333pt;}
.y6c{bottom:703.133333pt;}
.y19{bottom:714.813333pt;}
.y57{bottom:739.133333pt;}
.y18{bottom:739.453333pt;}
.y86{bottom:739.613333pt;}
.y6b{bottom:753.053333pt;}
.y56{bottom:763.773333pt;}
.y17{bottom:764.093333pt;}
.y68{bottom:778.493333pt;}
.y55{bottom:788.613333pt;}
.y16{bottom:788.933333pt;}
.y67{bottom:803.813333pt;}
.y54{bottom:813.253333pt;}
.y15{bottom:813.573333pt;}
.y66{bottom:829.253333pt;}
.y14{bottom:837.893333pt;}
.y38{bottom:838.213333pt;}
.y13{bottom:862.853333pt;}
.y63{bottom:879.173333pt;}
.y12{bottom:887.333333pt;}
.y37{bottom:887.653333pt;}
.y11{bottom:912.293333pt;}
.y10{bottom:936.613333pt;}
.y36{bottom:936.933333pt;}
.yf{bottom:961.413333pt;}
.y35{bottom:961.733333pt;}
.ye{bottom:986.053333pt;}
.y34{bottom:986.373333pt;}
.yd{bottom:1010.693333pt;}
.y33{bottom:1011.013333pt;}
.y3{bottom:1048.960000pt;}
.y1{bottom:1060.480000pt;}
.y8{bottom:1061.120000pt;}
.y7{bottom:1074.720000pt;}
.h9{height:5.025000pt;}
.h2{height:14.080000pt;}
.h5{height:21.120000pt;}
.h17{height:24.640000pt;}
.h18{height:24.672000pt;}
.h19{height:24.800000pt;}
.ha{height:25.440000pt;}
.h4{height:26.400000pt;}
.h11{height:49.280000pt;}
.h16{height:49.440000pt;}
.h7{height:52.134375pt;}
.h8{height:57.787500pt;}
.h3{height:59.340000pt;}
.h6{height:62.812500pt;}
.he{height:64.752187pt;}
.hd{height:65.885625pt;}
.h13{height:72.942187pt;}
.hf{height:73.454062pt;}
.hc{height:73.490625pt;}
.h15{height:74.080000pt;}
.h12{height:74.112000pt;}
.hb{height:75.465000pt;}
.h10{height:76.964840pt;}
.h14{height:98.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:91.520000pt;}
.wb{width:100.320000pt;}
.w6{width:108.000000pt;}
.we{width:118.432000pt;}
.wa{width:155.706667pt;}
.w7{width:180.826667pt;}
.wc{width:186.906667pt;}
.w9{width:192.386667pt;}
.w3{width:196.666667pt;}
.wd{width:214.586667pt;}
.w4{width:430.466667pt;}
.w2{width:460.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x1b{left:6.880000pt;}
.x1f{left:56.666667pt;}
.x7{left:82.400000pt;}
.x5{left:113.471988pt;}
.x8{left:119.711988pt;}
.x1{left:128.032000pt;}
.x4{left:132.992000pt;}
.x12{left:159.066655pt;}
.x10{left:160.666655pt;}
.x1a{left:165.306655pt;}
.xc{left:178.426655pt;}
.x24{left:185.466655pt;}
.x11{left:187.226655pt;}
.x20{left:215.066667pt;}
.xe{left:246.626655pt;}
.x9{left:280.546655pt;}
.x1c{left:295.586667pt;}
.xb{left:323.746655pt;}
.xf{left:326.466655pt;}
.xd{left:362.946655pt;}
.x23{left:363.906655pt;}
.x13{left:372.546655pt;}
.x1d{left:387.746667pt;}
.x21{left:402.653333pt;}
.xa{left:448.893322pt;}
.x14{left:479.133322pt;}
.x18{left:500.093322pt;}
.x15{left:509.533322pt;}
.x17{left:518.653322pt;}
.x3{left:527.293333pt;}
.x16{left:553.853322pt;}
.x1e{left:580.773333pt;}
.x6{left:586.533333pt;}
.x22{left:618.053333pt;}
.x19{left:737.119988pt;}
}




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