
    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_b430f987f9c966cef47b71d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_9269ccbcce2999f3a69121d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_2359d0e27ecfefbb8b3862c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_9d43720dcee022e93f40cdf2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8a3300998832c6c1f33fddcb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.157676px;}
.ls0{letter-spacing:0.215860px;}
.lsb{letter-spacing:0.270000px;}
.ls9{letter-spacing:10.684076px;}
.lsf{letter-spacing:16.038714px;}
.ls7{letter-spacing:20.842552px;}
.ls10{letter-spacing:24.445430px;}
.ls8{letter-spacing:39.562544px;}
.lsd{letter-spacing:45.575982px;}
.ls3{letter-spacing:46.583981px;}
.ls4{letter-spacing:47.843981px;}
.lse{letter-spacing:48.851980px;}
.lsa{letter-spacing:49.859980px;}
.ls1{letter-spacing:60.443976px;}
.ls6{letter-spacing:68.723973px;}
.lsc{letter-spacing:69.299972px;}
.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;}
}
.wse{word-spacing:-32.543987px;}
.wsb{word-spacing:-29.935424px;}
.wsf{word-spacing:-24.407990px;}
.ws3{word-spacing:-21.641751px;}
.ws19{word-spacing:-20.990872px;}
.wsd{word-spacing:-19.038232px;}
.ws0{word-spacing:-16.487853px;}
.ws1{word-spacing:-16.271993px;}
.ws8{word-spacing:-14.970234px;}
.wsa{word-spacing:-13.505755px;}
.ws10{word-spacing:-1.423403px;}
.ws17{word-spacing:-0.990000px;}
.ws1a{word-spacing:-0.497553px;}
.ws4{word-spacing:-0.210193px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.161023px;}
.ws6{word-spacing:0.215268px;}
.ws11{word-spacing:0.374875px;}
.wsc{word-spacing:0.375125px;}
.ws18{word-spacing:0.779598px;}
.ws9{word-spacing:13.194872px;}
.ws7{word-spacing:22.230005px;}
.ws12{word-spacing:230.994088px;}
.ws14{word-spacing:238.337957px;}
.ws13{word-spacing:238.338085px;}
.ws16{word-spacing:241.829723px;}
.ws15{word-spacing:698.419521px;}
._4{margin-left:-10.504162px;}
._e{margin-left:-8.475111px;}
._3{margin-left:-6.825879px;}
._6{margin-left:-5.343133px;}
._b{margin-left:-4.155120px;}
._1{margin-left:-2.860415px;}
._0{margin-left:-1.615689px;}
._2{width:1.034735px;}
._5{width:2.698150px;}
._14{width:4.974090px;}
._7{width:12.435192px;}
._11{width:14.292096px;}
._10{width:15.533992px;}
._12{width:16.567600px;}
._13{width:17.596772px;}
._17{width:18.805682px;}
._a{width:20.191643px;}
._8{width:21.444403px;}
._c{width:22.689334px;}
._d{width:23.802309px;}
._f{width:25.675179px;}
._16{width:31.648999px;}
._9{width:42.884574px;}
._15{width:710.551445px;}
.fc3{color:rgb(192,0,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fse{font-size:77.759969px;}
.fs1{font-size:84.239966px;}
.fsa{font-size:89.999964px;}
.fsd{font-size:92.879963px;}
.fs6{font-size:95.759962px;}
.fs5{font-size:99.359960px;}
.fsb{font-size:102.239959px;}
.fs9{font-size:107.999957px;}
.fs2{font-size:120.239952px;}
.fs7{font-size:131.759947px;}
.fs8{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y56{bottom:5.579179px;}
.y53{bottom:7.198979px;}
.y2{bottom:37.560285px;}
.yab{bottom:181.379927px;}
.y91{bottom:204.419918px;}
.y6d{bottom:206.399917px;}
.yaa{bottom:211.079916px;}
.y10{bottom:225.299910px;}
.y39{bottom:228.899908px;}
.y90{bottom:231.419907px;}
.y6c{bottom:233.939906px;}
.y1e{bottom:234.839906px;}
.ya9{bottom:235.379906px;}
.yf{bottom:242.759903px;}
.y38{bottom:251.579899px;}
.y8f{bottom:258.419897px;}
.y6b{bottom:261.479895px;}
.ye{bottom:262.559895px;}
.ya8{bottom:265.079894px;}
.y1d{bottom:269.399892px;}
.y4a{bottom:272.819891px;}
.yd{bottom:278.759888px;}
.y37{bottom:279.299888px;}
.y8e{bottom:285.419886px;}
.y6a{bottom:289.019884px;}
.ya7{bottom:289.379884px;}
.y7f{bottom:290.099884px;}
.y49{bottom:301.619879px;}
.y1c{bottom:303.959878px;}
.y36{bottom:307.739877px;}
.y8d{bottom:312.419875px;}
.ya6{bottom:319.079872px;}
.y7e{bottom:320.699872px;}
.y69{bottom:322.679871px;}
.y48{bottom:330.419868px;}
.y1b{bottom:332.759867px;}
.yae{bottom:337.619865px;}
.y35{bottom:338.699865px;}
.y8c{bottom:339.419864px;}
.ya5{bottom:348.779860px;}
.y68{bottom:350.219860px;}
.y7d{bottom:351.119860px;}
.y47{bottom:364.979854px;}
.yc{bottom:365.879854px;}
.y34{bottom:366.419853px;}
.y1a{bottom:367.319853px;}
.y8b{bottom:371.819851px;}
.ya4{bottom:373.079851px;}
.y67{bottom:377.759849px;}
.y7c{bottom:381.539847px;}
.yad{bottom:385.139846px;}
.y46{bottom:393.779842px;}
.y33{bottom:394.139842px;}
.yb{bottom:398.279841px;}
.y8a{bottom:398.819840px;}
.ya3{bottom:410.519836px;}
.y66{bottom:411.419835px;}
.y7b{bottom:417.899833px;}
.y32{bottom:422.579831px;}
.y89{bottom:425.819830px;}
.ya{bottom:430.679828px;}
.yac{bottom:432.659827px;}
.y7a{bottom:434.099826px;}
.y19{bottom:436.439825px;}
.y65{bottom:438.959824px;}
.ya2{bottom:439.319824px;}
.y45{bottom:451.379819px;}
.y88{bottom:452.819819px;}
.y31{bottom:454.259818px;}
.ya1{bottom:468.119813px;}
.y58{bottom:502.499799px;}
.y44{bottom:508.979796px;}
.y30{bottom:509.879796px;}
.y51{bottom:510.059796px;}
.y79{bottom:510.959796px;}
.y18{bottom:520.859792px;}
.y57{bottom:527.699789px;}
.ya0{bottom:534.539786px;}
.y50{bottom:534.899786px;}
.y55{bottom:547.320600px;}
.y64{bottom:707.159717px;}
.y9f{bottom:715.439714px;}
.y2f{bottom:729.119708px;}
.y63{bottom:731.459707px;}
.y9e{bottom:736.499705px;}
.y2e{bottom:747.119701px;}
.y17{bottom:751.979699px;}
.y9d{bottom:757.559697px;}
.y62{bottom:761.159696px;}
.y78{bottom:764.399694px;}
.y43{bottom:767.459693px;}
.y2d{bottom:768.719693px;}
.y16{bottom:778.799688px;}
.y9c{bottom:783.299687px;}
.y42{bottom:785.459686px;}
.y87{bottom:786.539685px;}
.y2c{bottom:786.719685px;}
.y77{bottom:796.079682px;}
.y9{bottom:802.379679px;}
.y41{bottom:803.459679px;}
.y9b{bottom:804.359678px;}
.y2b{bottom:804.719678px;}
.y61{bottom:809.759676px;}
.y86{bottom:821.099672px;}
.y40{bottom:821.459671px;}
.y76{bottom:821.999671px;}
.y2a{bottom:822.719671px;}
.y9a{bottom:825.419670px;}
.y8{bottom:829.199668px;}
.y60{bottom:834.059666px;}
.y3f{bottom:839.819664px;}
.y29{bottom:840.719664px;}
.y15{bottom:844.139662px;}
.y85{bottom:849.899660px;}
.y99{bottom:852.059659px;}
.y75{bottom:853.679659px;}
.y5f{bottom:858.359657px;}
.y28{bottom:858.719657px;}
.y7{bottom:859.439656px;}
.y3e{bottom:859.619656px;}
.y14{bottom:876.719649px;}
.y84{bottom:878.699649px;}
.y3d{bottom:879.419648px;}
.y74{bottom:879.599648px;}
.y98{bottom:882.839647px;}
.y5e{bottom:888.059645px;}
.y27{bottom:894.719642px;}
.y3c{bottom:899.219640px;}
.y83{bottom:907.499637px;}
.y13{bottom:909.479636px;}
.y73{bottom:911.279635px;}
.y5d{bottom:912.359635px;}
.y26{bottom:912.719635px;}
.y6{bottom:912.899635px;}
.y97{bottom:913.439635px;}
.y3b{bottom:918.659633px;}
.y25{bottom:930.719628px;}
.y5c{bottom:936.659625px;}
.y72{bottom:937.199625px;}
.y82{bottom:942.059623px;}
.y96{bottom:944.219622px;}
.y24{bottom:948.719621px;}
.y5{bottom:948.899620px;}
.y5b{bottom:960.959616px;}
.y71{bottom:963.119615px;}
.y23{bottom:966.719613px;}
.y95{bottom:974.819610px;}
.y81{bottom:976.619609px;}
.y70{bottom:989.039604px;}
.y5a{bottom:990.659604px;}
.y12{bottom:993.539603px;}
.y4f{bottom:998.939600px;}
.y22{bottom:999.299600px;}
.y80{bottom:1005.419598px;}
.y94{bottom:1005.599598px;}
.y4{bottom:1014.959594px;}
.y4e{bottom:1016.939593px;}
.y21{bottom:1019.099592px;}
.y6f{bottom:1020.719592px;}
.y11{bottom:1029.539588px;}
.y93{bottom:1030.619588px;}
.y4d{bottom:1034.939586px;}
.y20{bottom:1038.899584px;}
.y59{bottom:1039.259584px;}
.y3{bottom:1040.159584px;}
.y3a{bottom:1041.599583px;}
.y52{bottom:1046.100600px;}
.y6e{bottom:1046.639581px;}
.y4c{bottom:1052.939579px;}
.y54{bottom:1053.299579px;}
.y92{bottom:1055.819578px;}
.y1f{bottom:1058.699577px;}
.y4b{bottom:1070.939572px;}
.y1{bottom:1213.499515px;}
.h16{height:23.760000px;}
.h14{height:32.940000px;}
.h1d{height:37.546860px;}
.h1e{height:38.759750px;}
.hf{height:40.909906px;}
.h12{height:41.551858px;}
.h7{height:42.894123px;}
.he{height:46.057482px;}
.h8{height:47.545293px;}
.h1{height:51.679667px;}
.h22{height:55.814040px;}
.h5{height:57.668180px;}
.h2{height:58.573102px;}
.h4{height:60.465210px;}
.h6{height:62.327788px;}
.h19{height:62.578100px;}
.h18{height:64.599584px;}
.h23{height:66.583098px;}
.h20{height:66.666770px;}
.hd{height:68.733957px;}
.h9{height:71.317940px;}
.h1c{height:73.385127px;}
.h15{height:77.519500px;}
.h21{height:81.101218px;}
.h3{height:83.604342px;}
.hb{height:86.305044px;}
.h11{height:87.859652px;}
.h1a{height:91.614338px;}
.h17{height:93.867150px;}
.h10{height:94.573790px;}
.h1f{height:96.870899px;}
.hc{height:99.874648px;}
.h13{height:100.124960px;}
.ha{height:103.629334px;}
.h1b{height:106.633082px;}
.h0{height:1263.000000px;}
.w2{width:59.400000px;}
.w3{width:103.500000px;}
.w1{width:103.680000px;}
.w0{width:892.500000px;}
.x18{left:-1.080070px;}
.x0{left:0.000000px;}
.x17{left:176.220000px;}
.x13{left:192.239923px;}
.xe{left:196.559921px;}
.x5{left:200.699920px;}
.x3{left:202.859919px;}
.x20{left:205.019918px;}
.xc{left:208.619917px;}
.x1e{left:212.579915px;}
.xf{left:216.899913px;}
.xa{left:222.119911px;}
.x21{left:225.359910px;}
.xb{left:228.959908px;}
.x11{left:235.619906px;}
.x12{left:252.539899px;}
.x4{left:259.199896px;}
.xd{left:267.299893px;}
.x6{left:269.279892px;}
.x16{left:272.339891px;}
.x23{left:273.599891px;}
.x19{left:285.479886px;}
.x26{left:296.459881px;}
.x1d{left:299.339880px;}
.x15{left:308.339877px;}
.x10{left:339.299864px;}
.x1c{left:343.799862px;}
.x1a{left:358.920000px;}
.x24{left:364.319854px;}
.x25{left:366.659853px;}
.x14{left:399.419840px;}
.x1b{left:422.820000px;}
.x8{left:481.679807px;}
.x22{left:489.959804px;}
.x7{left:507.959797px;}
.x9{left:525.239790px;}
.x1{left:766.799693px;}
.x1f{left:835.919666px;}
.x2{left:845.099662px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.140156pt;}
.ls0{letter-spacing:0.191875pt;}
.lsb{letter-spacing:0.240000pt;}
.ls9{letter-spacing:9.496956pt;}
.lsf{letter-spacing:14.256634pt;}
.ls7{letter-spacing:18.526713pt;}
.ls10{letter-spacing:21.729271pt;}
.ls8{letter-spacing:35.166706pt;}
.lsd{letter-spacing:40.511984pt;}
.ls3{letter-spacing:41.407983pt;}
.ls4{letter-spacing:42.527983pt;}
.lse{letter-spacing:43.423983pt;}
.lsa{letter-spacing:44.319982pt;}
.ls1{letter-spacing:53.727979pt;}
.ls6{letter-spacing:61.087976pt;}
.lsc{letter-spacing:61.599975pt;}
.wse{word-spacing:-28.927988pt;}
.wsb{word-spacing:-26.609266pt;}
.wsf{word-spacing:-21.695991pt;}
.ws3{word-spacing:-19.237112pt;}
.ws19{word-spacing:-18.658553pt;}
.wsd{word-spacing:-16.922873pt;}
.ws0{word-spacing:-14.655869pt;}
.ws1{word-spacing:-14.463994pt;}
.ws8{word-spacing:-13.306875pt;}
.wsa{word-spacing:-12.005115pt;}
.ws10{word-spacing:-1.265247pt;}
.ws17{word-spacing:-0.880000pt;}
.ws1a{word-spacing:-0.442269pt;}
.ws4{word-spacing:-0.186838pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.143131pt;}
.ws6{word-spacing:0.191350pt;}
.ws11{word-spacing:0.333222pt;}
.wsc{word-spacing:0.333444pt;}
.ws18{word-spacing:0.692976pt;}
.ws9{word-spacing:11.728775pt;}
.ws7{word-spacing:19.760004pt;}
.ws12{word-spacing:205.328078pt;}
.ws14{word-spacing:211.855962pt;}
.ws13{word-spacing:211.856075pt;}
.ws16{word-spacing:214.959754pt;}
.ws15{word-spacing:620.817352pt;}
._4{margin-left:-9.337033pt;}
._e{margin-left:-7.533432pt;}
._3{margin-left:-6.067448pt;}
._6{margin-left:-4.749452pt;}
._b{margin-left:-3.693440pt;}
._1{margin-left:-2.542591pt;}
._0{margin-left:-1.436168pt;}
._2{width:0.919764pt;}
._5{width:2.398356pt;}
._14{width:4.421413pt;}
._7{width:11.053504pt;}
._11{width:12.704085pt;}
._10{width:13.807993pt;}
._12{width:14.726755pt;}
._13{width:15.641575pt;}
._17{width:16.716162pt;}
._a{width:17.948127pt;}
._8{width:19.061692pt;}
._c{width:20.168297pt;}
._d{width:21.157608pt;}
._f{width:22.822381pt;}
._16{width:28.132443pt;}
._9{width:38.119621pt;}
._15{width:631.601285pt;}
.fsc{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fse{font-size:69.119972pt;}
.fs1{font-size:74.879970pt;}
.fsa{font-size:79.999968pt;}
.fsd{font-size:82.559967pt;}
.fs6{font-size:85.119966pt;}
.fs5{font-size:88.319965pt;}
.fsb{font-size:90.879964pt;}
.fs9{font-size:95.999962pt;}
.fs2{font-size:106.879957pt;}
.fs7{font-size:117.119953pt;}
.fs8{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:4.959270pt;}
.y53{bottom:6.399092pt;}
.y2{bottom:33.386920pt;}
.yab{bottom:161.226602pt;}
.y91{bottom:181.706594pt;}
.y6d{bottom:183.466593pt;}
.yaa{bottom:187.626592pt;}
.y10{bottom:200.266587pt;}
.y39{bottom:203.466585pt;}
.y90{bottom:205.706584pt;}
.y6c{bottom:207.946583pt;}
.y1e{bottom:208.746583pt;}
.ya9{bottom:209.226583pt;}
.yf{bottom:215.786580pt;}
.y38{bottom:223.626577pt;}
.y8f{bottom:229.706575pt;}
.y6b{bottom:232.426574pt;}
.ye{bottom:233.386573pt;}
.ya8{bottom:235.626572pt;}
.y1d{bottom:239.466571pt;}
.y4a{bottom:242.506570pt;}
.yd{bottom:247.786568pt;}
.y37{bottom:248.266567pt;}
.y8e{bottom:253.706565pt;}
.y6a{bottom:256.906564pt;}
.ya7{bottom:257.226564pt;}
.y7f{bottom:257.866564pt;}
.y49{bottom:268.106559pt;}
.y1c{bottom:270.186559pt;}
.y36{bottom:273.546557pt;}
.y8d{bottom:277.706556pt;}
.ya6{bottom:283.626553pt;}
.y7e{bottom:285.066553pt;}
.y69{bottom:286.826552pt;}
.y48{bottom:293.706549pt;}
.y1b{bottom:295.786548pt;}
.yae{bottom:300.106547pt;}
.y35{bottom:301.066546pt;}
.y8c{bottom:301.706546pt;}
.ya5{bottom:310.026543pt;}
.y68{bottom:311.306542pt;}
.y7d{bottom:312.106542pt;}
.y47{bottom:324.426537pt;}
.yc{bottom:325.226537pt;}
.y34{bottom:325.706536pt;}
.y1a{bottom:326.506536pt;}
.y8b{bottom:330.506534pt;}
.ya4{bottom:331.626534pt;}
.y67{bottom:335.786532pt;}
.y7c{bottom:339.146531pt;}
.yad{bottom:342.346530pt;}
.y46{bottom:350.026527pt;}
.y33{bottom:350.346527pt;}
.yb{bottom:354.026525pt;}
.y8a{bottom:354.506525pt;}
.ya3{bottom:364.906521pt;}
.y66{bottom:365.706520pt;}
.y7b{bottom:371.466518pt;}
.y32{bottom:375.626516pt;}
.y89{bottom:378.506515pt;}
.ya{bottom:382.826514pt;}
.yac{bottom:384.586513pt;}
.y7a{bottom:385.866512pt;}
.y19{bottom:387.946511pt;}
.y65{bottom:390.186511pt;}
.ya2{bottom:390.506510pt;}
.y45{bottom:401.226506pt;}
.y88{bottom:402.506506pt;}
.y31{bottom:403.786505pt;}
.ya1{bottom:416.106500pt;}
.y58{bottom:446.666488pt;}
.y44{bottom:452.426486pt;}
.y30{bottom:453.226485pt;}
.y51{bottom:453.386485pt;}
.y79{bottom:454.186485pt;}
.y18{bottom:462.986481pt;}
.y57{bottom:469.066479pt;}
.ya0{bottom:475.146477pt;}
.y50{bottom:475.466476pt;}
.y55{bottom:486.507200pt;}
.y64{bottom:628.586415pt;}
.y9f{bottom:635.946412pt;}
.y2f{bottom:648.106407pt;}
.y63{bottom:650.186407pt;}
.y9e{bottom:654.666405pt;}
.y2e{bottom:664.106401pt;}
.y17{bottom:668.426399pt;}
.y9d{bottom:673.386397pt;}
.y62{bottom:676.586396pt;}
.y78{bottom:679.466395pt;}
.y43{bottom:682.186394pt;}
.y2d{bottom:683.306393pt;}
.y16{bottom:692.266390pt;}
.y9c{bottom:696.266388pt;}
.y42{bottom:698.186387pt;}
.y87{bottom:699.146387pt;}
.y2c{bottom:699.306387pt;}
.y77{bottom:707.626384pt;}
.y9{bottom:713.226381pt;}
.y41{bottom:714.186381pt;}
.y9b{bottom:714.986381pt;}
.y2b{bottom:715.306381pt;}
.y61{bottom:719.786379pt;}
.y86{bottom:729.866375pt;}
.y40{bottom:730.186375pt;}
.y76{bottom:730.666374pt;}
.y2a{bottom:731.306374pt;}
.y9a{bottom:733.706373pt;}
.y8{bottom:737.066372pt;}
.y60{bottom:741.386370pt;}
.y3f{bottom:746.506368pt;}
.y29{bottom:747.306368pt;}
.y15{bottom:750.346367pt;}
.y85{bottom:755.466364pt;}
.y99{bottom:757.386364pt;}
.y75{bottom:758.826363pt;}
.y5f{bottom:762.986361pt;}
.y28{bottom:763.306361pt;}
.y7{bottom:763.946361pt;}
.y3e{bottom:764.106361pt;}
.y14{bottom:779.306355pt;}
.y84{bottom:781.066354pt;}
.y3d{bottom:781.706354pt;}
.y74{bottom:781.866354pt;}
.y98{bottom:784.746353pt;}
.y5e{bottom:789.386351pt;}
.y27{bottom:795.306349pt;}
.y3c{bottom:799.306347pt;}
.y83{bottom:806.666344pt;}
.y13{bottom:808.426343pt;}
.y73{bottom:810.026343pt;}
.y5d{bottom:810.986342pt;}
.y26{bottom:811.306342pt;}
.y6{bottom:811.466342pt;}
.y97{bottom:811.946342pt;}
.y3b{bottom:816.586340pt;}
.y25{bottom:827.306336pt;}
.y5c{bottom:832.586334pt;}
.y72{bottom:833.066333pt;}
.y82{bottom:837.386332pt;}
.y96{bottom:839.306331pt;}
.y24{bottom:843.306329pt;}
.y5{bottom:843.466329pt;}
.y5b{bottom:854.186325pt;}
.y71{bottom:856.106324pt;}
.y23{bottom:859.306323pt;}
.y95{bottom:866.506320pt;}
.y81{bottom:868.106319pt;}
.y70{bottom:879.146315pt;}
.y5a{bottom:880.586314pt;}
.y12{bottom:883.146313pt;}
.y4f{bottom:887.946311pt;}
.y22{bottom:888.266311pt;}
.y80{bottom:893.706309pt;}
.y94{bottom:893.866309pt;}
.y4{bottom:902.186306pt;}
.y4e{bottom:903.946305pt;}
.y21{bottom:905.866304pt;}
.y6f{bottom:907.306304pt;}
.y11{bottom:915.146301pt;}
.y93{bottom:916.106300pt;}
.y4d{bottom:919.946299pt;}
.y20{bottom:923.466297pt;}
.y59{bottom:923.786297pt;}
.y3{bottom:924.586297pt;}
.y3a{bottom:925.866296pt;}
.y52{bottom:929.867200pt;}
.y6e{bottom:930.346295pt;}
.y4c{bottom:935.946292pt;}
.y54{bottom:936.266292pt;}
.y92{bottom:938.506291pt;}
.y1f{bottom:941.066290pt;}
.y4b{bottom:951.946286pt;}
.y1{bottom:1078.666235pt;}
.h16{height:21.120000pt;}
.h14{height:29.280000pt;}
.h1d{height:33.374987pt;}
.h1e{height:34.453111pt;}
.hf{height:36.364360pt;}
.h12{height:36.934985pt;}
.h7{height:38.128110pt;}
.he{height:40.939984pt;}
.h8{height:42.262483pt;}
.h1{height:45.937482pt;}
.h22{height:49.612480pt;}
.h5{height:51.260604pt;}
.h2{height:52.064979pt;}
.h4{height:53.746854pt;}
.h6{height:55.402478pt;}
.h19{height:55.624978pt;}
.h18{height:57.421852pt;}
.h23{height:59.184976pt;}
.h20{height:59.259351pt;}
.hd{height:61.096851pt;}
.h9{height:63.393725pt;}
.h1c{height:65.231224pt;}
.h15{height:68.906222pt;}
.h21{height:72.089971pt;}
.h3{height:74.314970pt;}
.hb{height:76.715594pt;}
.h11{height:78.097469pt;}
.h1a{height:81.434967pt;}
.h17{height:83.437467pt;}
.h10{height:84.065591pt;}
.h1f{height:86.107466pt;}
.hc{height:88.777464pt;}
.h13{height:88.999964pt;}
.ha{height:92.114963pt;}
.h1b{height:94.784962pt;}
.h0{height:1122.666667pt;}
.w2{width:52.800000pt;}
.w3{width:92.000000pt;}
.w1{width:92.160000pt;}
.w0{width:793.333333pt;}
.x18{left:-0.960062pt;}
.x0{left:0.000000pt;}
.x17{left:156.640000pt;}
.x13{left:170.879932pt;}
.xe{left:174.719930pt;}
.x5{left:178.399929pt;}
.x3{left:180.319928pt;}
.x20{left:182.239927pt;}
.xc{left:185.439926pt;}
.x1e{left:188.959924pt;}
.xf{left:192.799923pt;}
.xa{left:197.439921pt;}
.x21{left:200.319920pt;}
.xb{left:203.519919pt;}
.x11{left:209.439916pt;}
.x12{left:224.479910pt;}
.x4{left:230.399908pt;}
.xd{left:237.599905pt;}
.x6{left:239.359904pt;}
.x16{left:242.079903pt;}
.x23{left:243.199903pt;}
.x19{left:253.759898pt;}
.x26{left:263.519895pt;}
.x1d{left:266.079894pt;}
.x15{left:274.079890pt;}
.x10{left:301.599879pt;}
.x1c{left:305.599878pt;}
.x1a{left:319.040000pt;}
.x24{left:323.839870pt;}
.x25{left:325.919870pt;}
.x14{left:355.039858pt;}
.x1b{left:375.840000pt;}
.x8{left:428.159829pt;}
.x22{left:435.519826pt;}
.x7{left:451.519819pt;}
.x9{left:466.879813pt;}
.x1{left:681.599727pt;}
.x1f{left:743.039703pt;}
.x2{left:751.199700pt;}
}




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