
    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_04adecd983ff59070c3daef1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_822b6c4903da563f5989236e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_876be5513463237bea19b7ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_ff251234489fe99d0d93f8ae.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fb2a378bf7fb1439b236ba34.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_9c4b1e2bc7a34162c9ded86c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_0ab9817c193d84def54720a2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_77cba79e8cfabe22e12df222.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.109200px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018720px;}
.ls13{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.262200px;}
.ls15{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.305400px;}
.lsa{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.511800px;}
.ls17{letter-spacing:0.612000px;}
.ls2{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.512000px;}
.lsd{letter-spacing:8.586720px;}
.ls1a{letter-spacing:11.466720px;}
.lse{letter-spacing:33.066720px;}
.ls19{letter-spacing:41.706720px;}
.ls14{letter-spacing:117.450720px;}
.ls18{letter-spacing:121.050720px;}
.lsb{letter-spacing:140.490720px;}
.lsf{letter-spacing:157.050720px;}
.ls3{letter-spacing:164.250720px;}
.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;}
}
.ws1{word-spacing:-23.958720px;}
.ws5{word-spacing:-16.865400px;}
.ws0{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.552000px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.733600px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-2770.483440px;}
._9{margin-left:-1575.624240px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-993.965760px;}
._d{margin-left:-687.924720px;}
._18{margin-left:-661.860000px;}
._e{margin-left:-659.954160px;}
._19{margin-left:-645.400800px;}
._a{margin-left:-574.927920px;}
._15{margin-left:-538.679640px;}
._1c{margin-left:-490.134240px;}
._1b{margin-left:-475.320000px;}
._16{margin-left:-428.114160px;}
._f{margin-left:-215.460000px;}
._13{margin-left:-174.240000px;}
._14{margin-left:-159.687360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-144.120000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._28{margin-left:-12.060000px;}
._7{margin-left:-8.213760px;}
._4{margin-left:-4.891200px;}
._2b{margin-left:-3.648960px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._23{width:4.003920px;}
._24{width:5.045040px;}
._25{width:6.069840px;}
._21{width:7.111440px;}
._22{width:8.306640px;}
._26{width:9.456480px;}
._27{width:10.758240px;}
._29{width:12.129840px;}
._20{width:13.625280px;}
._1d{width:17.403840px;}
._1f{width:18.868320px;}
._1e{width:20.276400px;}
._2a{width:100.721760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:3.240000px;}
.y55{bottom:3.420000px;}
.y83{bottom:3.600000px;}
.y56{bottom:3.780000px;}
.y93{bottom:8.535000px;}
.y91{bottom:8.715000px;}
.y5d{bottom:20.880000px;}
.y60{bottom:21.060000px;}
.y5c{bottom:38.160000px;}
.y5f{bottom:38.340000px;}
.y5b{bottom:55.440000px;}
.y6{bottom:59.220000px;}
.y5a{bottom:72.720000px;}
.y35{bottom:86.400000px;}
.y8f{bottom:87.660000px;}
.y6a{bottom:88.200000px;}
.y59{bottom:90.000000px;}
.ycd{bottom:98.460000px;}
.y34{bottom:106.380000px;}
.y58{bottom:107.145000px;}
.y8e{bottom:107.460000px;}
.y69{bottom:108.180000px;}
.ycc{bottom:118.260000px;}
.y33{bottom:126.180000px;}
.y8d{bottom:127.440000px;}
.y68{bottom:127.980000px;}
.ycb{bottom:138.240000px;}
.y32{bottom:145.980000px;}
.y8c{bottom:147.240000px;}
.y67{bottom:147.420000px;}
.yca{bottom:158.040000px;}
.y31{bottom:165.780000px;}
.y8b{bottom:167.040000px;}
.y66{bottom:167.220000px;}
.yc9{bottom:177.840000px;}
.y30{bottom:185.580000px;}
.y8a{bottom:186.840000px;}
.y65{bottom:187.380000px;}
.yc8{bottom:197.640000px;}
.y2f{bottom:205.410000px;}
.y89{bottom:206.670000px;}
.y64{bottom:207.390000px;}
.yc7{bottom:217.470000px;}
.y2e{bottom:225.390000px;}
.y88{bottom:226.650000px;}
.y63{bottom:226.830000px;}
.yc6{bottom:237.450000px;}
.y2d{bottom:245.190000px;}
.y87{bottom:246.450000px;}
.y62{bottom:246.990000px;}
.yc5{bottom:257.250000px;}
.y86{bottom:260.850000px;}
.y61{bottom:261.390000px;}
.y2c{bottom:264.990000px;}
.yc4{bottom:277.050000px;}
.y85{bottom:279.030000px;}
.y5e{bottom:279.390000px;}
.y2b{bottom:284.790000px;}
.yc3{bottom:296.850000px;}
.y84{bottom:297.210000px;}
.y2a{bottom:304.590000px;}
.y82{bottom:315.570000px;}
.yc2{bottom:316.650000px;}
.y29{bottom:324.570000px;}
.y57{bottom:332.850000px;}
.y81{bottom:333.750000px;}
.yc1{bottom:336.630000px;}
.y28{bottom:344.370000px;}
.y80{bottom:352.650000px;}
.yc0{bottom:356.430000px;}
.y27{bottom:364.170000px;}
.ybf{bottom:376.230000px;}
.y7f{bottom:377.490000px;}
.y26{bottom:383.970000px;}
.ybe{bottom:396.030000px;}
.y7e{bottom:397.650000px;}
.y25{bottom:403.770000px;}
.ybd{bottom:415.830000px;}
.y7d{bottom:417.090000px;}
.y24{bottom:423.750000px;}
.y7c{bottom:433.830000px;}
.ybc{bottom:435.810000px;}
.y97{bottom:436.320000px;}
.y23{bottom:443.595000px;}
.y54{bottom:455.115000px;}
.ybb{bottom:455.655000px;}
.y22{bottom:463.395000px;}
.y96{bottom:471.240000px;}
.yba{bottom:475.455000px;}
.y53{bottom:479.775000px;}
.y21{bottom:483.195000px;}
.yb9{bottom:495.255000px;}
.y52{bottom:499.935000px;}
.y20{bottom:502.995000px;}
.y95{bottom:505.980000px;}
.yb8{bottom:515.055000px;}
.y51{bottom:519.735000px;}
.y1f{bottom:522.975000px;}
.yb7{bottom:535.035000px;}
.y50{bottom:539.715000px;}
.y94{bottom:540.900000px;}
.y1e{bottom:542.775000px;}
.yb6{bottom:554.835000px;}
.y4f{bottom:559.155000px;}
.y1d{bottom:562.575000px;}
.yb5{bottom:574.635000px;}
.y92{bottom:575.640000px;}
.y1c{bottom:582.375000px;}
.y4e{bottom:588.315000px;}
.yb4{bottom:594.435000px;}
.y1b{bottom:602.175000px;}
.y4d{bottom:608.115000px;}
.y90{bottom:610.560000px;}
.yb3{bottom:613.875000px;}
.y1a{bottom:622.155000px;}
.y4c{bottom:624.495000px;}
.yb2{bottom:634.215000px;}
.y19{bottom:641.595000px;}
.y7b{bottom:648.435000px;}
.yb1{bottom:654.015000px;}
.y18{bottom:661.755000px;}
.y7a{bottom:667.875000px;}
.yb0{bottom:673.845000px;}
.y17{bottom:683.925000px;}
.y79{bottom:688.065000px;}
.yaf{bottom:693.645000px;}
.y16{bottom:703.725000px;}
.y78{bottom:707.865000px;}
.yae{bottom:713.445000px;}
.y77{bottom:727.845000px;}
.y15{bottom:732.525000px;}
.yad{bottom:733.425000px;}
.y4b{bottom:747.285000px;}
.y76{bottom:747.645000px;}
.y14{bottom:752.325000px;}
.yac{bottom:753.225000px;}
.y4a{bottom:767.445000px;}
.y13{bottom:772.305000px;}
.yab{bottom:773.025000px;}
.y49{bottom:787.245000px;}
.y12{bottom:792.105000px;}
.yaa{bottom:792.825000px;}
.y75{bottom:806.685000px;}
.y48{bottom:807.045000px;}
.y11{bottom:811.905000px;}
.ya9{bottom:812.265000px;}
.y47{bottom:826.665000px;}
.y10{bottom:831.705000px;}
.ya8{bottom:832.605000px;}
.y74{bottom:836.025000px;}
.yf{bottom:851.505000px;}
.ya7{bottom:852.405000px;}
.y46{bottom:855.825000px;}
.ye{bottom:871.485000px;}
.ya6{bottom:872.205000px;}
.y45{bottom:875.625000px;}
.yd{bottom:891.285000px;}
.ya5{bottom:892.005000px;}
.y44{bottom:895.425000px;}
.ya4{bottom:911.850000px;}
.yc{bottom:913.290000px;}
.y43{bottom:914.910000px;}
.y73{bottom:915.270000px;}
.ya3{bottom:931.830000px;}
.yb{bottom:933.270000px;}
.y72{bottom:935.250000px;}
.y42{bottom:944.250000px;}
.ya2{bottom:951.630000px;}
.ya{bottom:953.430000px;}
.y71{bottom:955.050000px;}
.y41{bottom:964.050000px;}
.ya1{bottom:971.430000px;}
.y9{bottom:974.490000px;}
.y70{bottom:974.850000px;}
.y40{bottom:983.850000px;}
.ya0{bottom:991.230000px;}
.y6f{bottom:994.650000px;}
.y8{bottom:997.890000px;}
.y3f{bottom:1003.650000px;}
.y9f{bottom:1011.030000px;}
.y6e{bottom:1014.450000px;}
.y3e{bottom:1023.090000px;}
.y9d{bottom:1025.610000px;}
.y7{bottom:1029.750000px;}
.y6d{bottom:1034.430000px;}
.y3d{bottom:1043.430000px;}
.y9c{bottom:1043.790000px;}
.y6c{bottom:1053.870000px;}
.y9b{bottom:1061.970000px;}
.y3c{bottom:1062.870000px;}
.y5{bottom:1068.630000px;}
.y9a{bottom:1080.150000px;}
.y3b{bottom:1083.030000px;}
.y99{bottom:1098.510000px;}
.y4{bottom:1099.410000px;}
.y3a{bottom:1102.830000px;}
.y98{bottom:1117.410000px;}
.y39{bottom:1122.630000px;}
.y3{bottom:1130.370000px;}
.y38{bottom:1142.250000px;}
.y6b{bottom:1142.610000px;}
.y2{bottom:1161.180000px;}
.y37{bottom:1171.800000px;}
.y1{bottom:1192.140000px;}
.y36{bottom:1193.580000px;}
.hf{height:17.100000px;}
.hb{height:17.280000px;}
.h11{height:22.140000px;}
.h10{height:22.320000px;}
.h8{height:41.726953px;}
.he{height:51.840000px;}
.ha{height:58.621992px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.h12{height:60.372000px;}
.hd{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.h2{height:72.562500px;}
.h4{height:96.508125px;}
.hc{height:120.636000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:5.040000px;}
.w4{width:20.520000px;}
.w7{width:33.840000px;}
.wb{width:93.636000px;}
.we{width:122.580000px;}
.wa{width:126.540000px;}
.wf{width:153.750000px;}
.w8{width:178.050000px;}
.w9{width:210.495000px;}
.w3{width:211.890000px;}
.w6{width:216.255000px;}
.w5{width:238.530000px;}
.wd{width:247.575000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:2.160000px;}
.x1{left:54.179987px;}
.xf{left:57.960000px;}
.x13{left:80.279987px;}
.x4{left:102.816000px;}
.x14{left:107.315987px;}
.x9{left:136.296000px;}
.x10{left:184.710000px;}
.xc{left:231.330000px;}
.x5{left:315.075000px;}
.xb{left:323.534987px;}
.x6{left:335.235000px;}
.x11{left:432.285000px;}
.xd{left:441.825000px;}
.x12{left:554.865000px;}
.xe{left:568.365000px;}
.x7{left:574.485000px;}
.x3{left:663.989987px;}
.xa{left:796.679987px;}
.x2{left:804.239987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016640pt;}
.ls13{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.233067pt;}
.ls15{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.271467pt;}
.lsa{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.454933pt;}
.ls17{letter-spacing:0.544000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.344000pt;}
.lsd{letter-spacing:7.632640pt;}
.ls1a{letter-spacing:10.192640pt;}
.lse{letter-spacing:29.392640pt;}
.ls19{letter-spacing:37.072640pt;}
.ls14{letter-spacing:104.400640pt;}
.ls18{letter-spacing:107.600640pt;}
.lsb{letter-spacing:124.880640pt;}
.lsf{letter-spacing:139.600640pt;}
.ls3{letter-spacing:146.000640pt;}
.ws1{word-spacing:-21.296640pt;}
.ws5{word-spacing:-14.991467pt;}
.ws0{word-spacing:-14.448533pt;}
.ws8{word-spacing:-13.824000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.096533pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-2462.651947pt;}
._9{margin-left:-1400.554880pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-883.525120pt;}
._d{margin-left:-611.488640pt;}
._18{margin-left:-588.320000pt;}
._e{margin-left:-586.625920pt;}
._19{margin-left:-573.689600pt;}
._a{margin-left:-511.047040pt;}
._15{margin-left:-478.826347pt;}
._1c{margin-left:-435.674880pt;}
._1b{margin-left:-422.506667pt;}
._16{margin-left:-380.545920pt;}
._f{margin-left:-191.520000pt;}
._13{margin-left:-154.880000pt;}
._14{margin-left:-141.944320pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-128.106667pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._28{margin-left:-10.720000pt;}
._7{margin-left:-7.301120pt;}
._4{margin-left:-4.347733pt;}
._2b{margin-left:-3.243520pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._23{width:3.559040pt;}
._24{width:4.484480pt;}
._25{width:5.395413pt;}
._21{width:6.321280pt;}
._22{width:7.383680pt;}
._26{width:8.405760pt;}
._27{width:9.562880pt;}
._29{width:10.782080pt;}
._20{width:12.111360pt;}
._1d{width:15.470080pt;}
._1f{width:16.771840pt;}
._1e{width:18.023467pt;}
._2a{width:89.530453pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:2.880000pt;}
.y55{bottom:3.040000pt;}
.y83{bottom:3.200000pt;}
.y56{bottom:3.360000pt;}
.y93{bottom:7.586667pt;}
.y91{bottom:7.746667pt;}
.y5d{bottom:18.560000pt;}
.y60{bottom:18.720000pt;}
.y5c{bottom:33.920000pt;}
.y5f{bottom:34.080000pt;}
.y5b{bottom:49.280000pt;}
.y6{bottom:52.640000pt;}
.y5a{bottom:64.640000pt;}
.y35{bottom:76.800000pt;}
.y8f{bottom:77.920000pt;}
.y6a{bottom:78.400000pt;}
.y59{bottom:80.000000pt;}
.ycd{bottom:87.520000pt;}
.y34{bottom:94.560000pt;}
.y58{bottom:95.240000pt;}
.y8e{bottom:95.520000pt;}
.y69{bottom:96.160000pt;}
.ycc{bottom:105.120000pt;}
.y33{bottom:112.160000pt;}
.y8d{bottom:113.280000pt;}
.y68{bottom:113.760000pt;}
.ycb{bottom:122.880000pt;}
.y32{bottom:129.760000pt;}
.y8c{bottom:130.880000pt;}
.y67{bottom:131.040000pt;}
.yca{bottom:140.480000pt;}
.y31{bottom:147.360000pt;}
.y8b{bottom:148.480000pt;}
.y66{bottom:148.640000pt;}
.yc9{bottom:158.080000pt;}
.y30{bottom:164.960000pt;}
.y8a{bottom:166.080000pt;}
.y65{bottom:166.560000pt;}
.yc8{bottom:175.680000pt;}
.y2f{bottom:182.586667pt;}
.y89{bottom:183.706667pt;}
.y64{bottom:184.346667pt;}
.yc7{bottom:193.306667pt;}
.y2e{bottom:200.346667pt;}
.y88{bottom:201.466667pt;}
.y63{bottom:201.626667pt;}
.yc6{bottom:211.066667pt;}
.y2d{bottom:217.946667pt;}
.y87{bottom:219.066667pt;}
.y62{bottom:219.546667pt;}
.yc5{bottom:228.666667pt;}
.y86{bottom:231.866667pt;}
.y61{bottom:232.346667pt;}
.y2c{bottom:235.546667pt;}
.yc4{bottom:246.266667pt;}
.y85{bottom:248.026667pt;}
.y5e{bottom:248.346667pt;}
.y2b{bottom:253.146667pt;}
.yc3{bottom:263.866667pt;}
.y84{bottom:264.186667pt;}
.y2a{bottom:270.746667pt;}
.y82{bottom:280.506667pt;}
.yc2{bottom:281.466667pt;}
.y29{bottom:288.506667pt;}
.y57{bottom:295.866667pt;}
.y81{bottom:296.666667pt;}
.yc1{bottom:299.226667pt;}
.y28{bottom:306.106667pt;}
.y80{bottom:313.466667pt;}
.yc0{bottom:316.826667pt;}
.y27{bottom:323.706667pt;}
.ybf{bottom:334.426667pt;}
.y7f{bottom:335.546667pt;}
.y26{bottom:341.306667pt;}
.ybe{bottom:352.026667pt;}
.y7e{bottom:353.466667pt;}
.y25{bottom:358.906667pt;}
.ybd{bottom:369.626667pt;}
.y7d{bottom:370.746667pt;}
.y24{bottom:376.666667pt;}
.y7c{bottom:385.626667pt;}
.ybc{bottom:387.386667pt;}
.y97{bottom:387.840000pt;}
.y23{bottom:394.306667pt;}
.y54{bottom:404.546667pt;}
.ybb{bottom:405.026667pt;}
.y22{bottom:411.906667pt;}
.y96{bottom:418.880000pt;}
.yba{bottom:422.626667pt;}
.y53{bottom:426.466667pt;}
.y21{bottom:429.506667pt;}
.yb9{bottom:440.226667pt;}
.y52{bottom:444.386667pt;}
.y20{bottom:447.106667pt;}
.y95{bottom:449.760000pt;}
.yb8{bottom:457.826667pt;}
.y51{bottom:461.986667pt;}
.y1f{bottom:464.866667pt;}
.yb7{bottom:475.586667pt;}
.y50{bottom:479.746667pt;}
.y94{bottom:480.800000pt;}
.y1e{bottom:482.466667pt;}
.yb6{bottom:493.186667pt;}
.y4f{bottom:497.026667pt;}
.y1d{bottom:500.066667pt;}
.yb5{bottom:510.786667pt;}
.y92{bottom:511.680000pt;}
.y1c{bottom:517.666667pt;}
.y4e{bottom:522.946667pt;}
.yb4{bottom:528.386667pt;}
.y1b{bottom:535.266667pt;}
.y4d{bottom:540.546667pt;}
.y90{bottom:542.720000pt;}
.yb3{bottom:545.666667pt;}
.y1a{bottom:553.026667pt;}
.y4c{bottom:555.106667pt;}
.yb2{bottom:563.746667pt;}
.y19{bottom:570.306667pt;}
.y7b{bottom:576.386667pt;}
.yb1{bottom:581.346667pt;}
.y18{bottom:588.226667pt;}
.y7a{bottom:593.666667pt;}
.yb0{bottom:598.973333pt;}
.y17{bottom:607.933333pt;}
.y79{bottom:611.613333pt;}
.yaf{bottom:616.573333pt;}
.y16{bottom:625.533333pt;}
.y78{bottom:629.213333pt;}
.yae{bottom:634.173333pt;}
.y77{bottom:646.973333pt;}
.y15{bottom:651.133333pt;}
.yad{bottom:651.933333pt;}
.y4b{bottom:664.253333pt;}
.y76{bottom:664.573333pt;}
.y14{bottom:668.733333pt;}
.yac{bottom:669.533333pt;}
.y4a{bottom:682.173333pt;}
.y13{bottom:686.493333pt;}
.yab{bottom:687.133333pt;}
.y49{bottom:699.773333pt;}
.y12{bottom:704.093333pt;}
.yaa{bottom:704.733333pt;}
.y75{bottom:717.053333pt;}
.y48{bottom:717.373333pt;}
.y11{bottom:721.693333pt;}
.ya9{bottom:722.013333pt;}
.y47{bottom:734.813333pt;}
.y10{bottom:739.293333pt;}
.ya8{bottom:740.093333pt;}
.y74{bottom:743.133333pt;}
.yf{bottom:756.893333pt;}
.ya7{bottom:757.693333pt;}
.y46{bottom:760.733333pt;}
.ye{bottom:774.653333pt;}
.ya6{bottom:775.293333pt;}
.y45{bottom:778.333333pt;}
.yd{bottom:792.253333pt;}
.ya5{bottom:792.893333pt;}
.y44{bottom:795.933333pt;}
.ya4{bottom:810.533333pt;}
.yc{bottom:811.813333pt;}
.y43{bottom:813.253333pt;}
.y73{bottom:813.573333pt;}
.ya3{bottom:828.293333pt;}
.yb{bottom:829.573333pt;}
.y72{bottom:831.333333pt;}
.y42{bottom:839.333333pt;}
.ya2{bottom:845.893333pt;}
.ya{bottom:847.493333pt;}
.y71{bottom:848.933333pt;}
.y41{bottom:856.933333pt;}
.ya1{bottom:863.493333pt;}
.y9{bottom:866.213333pt;}
.y70{bottom:866.533333pt;}
.y40{bottom:874.533333pt;}
.ya0{bottom:881.093333pt;}
.y6f{bottom:884.133333pt;}
.y8{bottom:887.013333pt;}
.y3f{bottom:892.133333pt;}
.y9f{bottom:898.693333pt;}
.y6e{bottom:901.733333pt;}
.y3e{bottom:909.413333pt;}
.y9d{bottom:911.653333pt;}
.y7{bottom:915.333333pt;}
.y6d{bottom:919.493333pt;}
.y3d{bottom:927.493333pt;}
.y9c{bottom:927.813333pt;}
.y6c{bottom:936.773333pt;}
.y9b{bottom:943.973333pt;}
.y3c{bottom:944.773333pt;}
.y5{bottom:949.893333pt;}
.y9a{bottom:960.133333pt;}
.y3b{bottom:962.693333pt;}
.y99{bottom:976.453333pt;}
.y4{bottom:977.253333pt;}
.y3a{bottom:980.293333pt;}
.y98{bottom:993.253333pt;}
.y39{bottom:997.893333pt;}
.y3{bottom:1004.773333pt;}
.y38{bottom:1015.333333pt;}
.y6b{bottom:1015.653333pt;}
.y2{bottom:1032.160000pt;}
.y37{bottom:1041.600000pt;}
.y1{bottom:1059.680000pt;}
.y36{bottom:1060.960000pt;}
.hf{height:15.200000pt;}
.hb{height:15.360000pt;}
.h11{height:19.680000pt;}
.h10{height:19.840000pt;}
.h8{height:37.090625pt;}
.he{height:46.080000pt;}
.ha{height:52.108438pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.h12{height:53.664000pt;}
.hd{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.h2{height:64.500000pt;}
.h4{height:85.785000pt;}
.hc{height:107.232000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:4.480000pt;}
.w4{width:18.240000pt;}
.w7{width:30.080000pt;}
.wb{width:83.232000pt;}
.we{width:108.960000pt;}
.wa{width:112.480000pt;}
.wf{width:136.666667pt;}
.w8{width:158.266667pt;}
.w9{width:187.106667pt;}
.w3{width:188.346667pt;}
.w6{width:192.226667pt;}
.w5{width:212.026667pt;}
.wd{width:220.066667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:1.920000pt;}
.x1{left:48.159988pt;}
.xf{left:51.520000pt;}
.x13{left:71.359988pt;}
.x4{left:91.392000pt;}
.x14{left:95.391988pt;}
.x9{left:121.152000pt;}
.x10{left:164.186667pt;}
.xc{left:205.626667pt;}
.x5{left:280.066667pt;}
.xb{left:287.586655pt;}
.x6{left:297.986667pt;}
.x11{left:384.253333pt;}
.xd{left:392.733333pt;}
.x12{left:493.213333pt;}
.xe{left:505.213333pt;}
.x7{left:510.653333pt;}
.x3{left:590.213322pt;}
.xa{left:708.159988pt;}
.x2{left:714.879988pt;}
}




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