
    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_4f216b343081d6a017cb2ef2.woff')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_17ce3d751495fdab8715c408.woff')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_b05c3bc7ee268b72a9819b60.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_a8c59f0422a55925466f34f8.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_94b77a17117827862deec752.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ba68cb3a1c5106c1af05ade4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_90bab89576291b4b3bcfca18.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5c37420cea8c940f8b75e2aa.woff')format("woff");}.ff9{font-family:ff9;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e38ab6f54c6eefbc575c771b.woff')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-1.176000px;}
.lsf{letter-spacing:-0.774000px;}
.ls11{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.206400px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.lsd{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.513600px;}
.ls12{letter-spacing:0.828000px;}
.ls1{letter-spacing:1.620000px;}
.ls9{letter-spacing:3.780000px;}
.lsb{letter-spacing:5.940000px;}
.lsa{letter-spacing:7.866720px;}
.ls15{letter-spacing:11.610720px;}
.ls2{letter-spacing:12.420000px;}
.lsc{letter-spacing:15.066720px;}
.ls3{letter-spacing:31.626720px;}
.ls13{letter-spacing:41.850720px;}
.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:-16.560000px;}
.ws9{word-spacing:-15.453600px;}
.ws0{word-spacing:-15.384000px;}
.ws8{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.680200px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._4{margin-left:-939.110400px;}
._d{margin-left:-646.626240px;}
._f{margin-left:-585.889920px;}
._c{margin-left:-551.377920px;}
._8{margin-left:-454.340160px;}
._7{margin-left:-410.317920px;}
._5{margin-left:-165.600000px;}
._e{margin-left:-148.668480px;}
._a{margin-left:-107.017920px;}
._b{margin-left:-105.534720px;}
._9{margin-left:-87.120000px;}
._6{margin-left:-37.440000px;}
._19{margin-left:-15.312480px;}
._20{margin-left:-11.546640px;}
._21{margin-left:-8.153280px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._12{width:2.477760px;}
._13{width:4.425840px;}
._14{width:5.557680px;}
._15{width:7.405680px;}
._10{width:8.714160px;}
._11{width:9.970320px;}
._1a{width:11.025840px;}
._16{width:12.071520px;}
._17{width:13.157280px;}
._18{width:15.979680px;}
._1e{width:17.209440px;}
._1c{width:18.535680px;}
._1d{width:19.638480px;}
._1f{width:21.633120px;}
._23{width:23.724720px;}
._1b{width:27.376560px;}
._26{width:36.258240px;}
._25{width:37.359840px;}
._24{width:46.612800px;}
._22{width:96.691680px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:6.120000px;}
.ya8{bottom:26.100000px;}
.ya5{bottom:30.600000px;}
.ya7{bottom:46.260000px;}
.y6{bottom:60.156000px;}
.ya6{bottom:66.054000px;}
.y39{bottom:87.156000px;}
.y7a{bottom:92.376000px;}
.ya4{bottom:99.576000px;}
.y38{bottom:104.436000px;}
.y37{bottom:109.656000px;}
.y36{bottom:121.536000px;}
.y35{bottom:126.756000px;}
.y34{bottom:138.816000px;}
.y79{bottom:144.036000px;}
.y33{bottom:156.090000px;}
.y32{bottom:161.310000px;}
.y78{bottom:173.370000px;}
.y31{bottom:174.630000px;}
.y77{bottom:178.590000px;}
.y76{bottom:190.650000px;}
.y86{bottom:195.870000px;}
.y75{bottom:207.930000px;}
.ya3{bottom:209.190000px;}
.y74{bottom:213.150000px;}
.y73{bottom:225.030000px;}
.y72{bottom:230.250000px;}
.ya2{bottom:233.310000px;}
.y30{bottom:235.290000px;}
.y85{bottom:242.310000px;}
.y71{bottom:243.570000px;}
.y9b{bottom:247.530000px;}
.ya1{bottom:253.110000px;}
.y2f{bottom:255.270000px;}
.y84{bottom:259.590000px;}
.y9a{bottom:264.810000px;}
.y70{bottom:272.910000px;}
.y2e{bottom:275.070000px;}
.y83{bottom:276.870000px;}
.y9f{bottom:278.130000px;}
.y82{bottom:282.135000px;}
.y6f{bottom:292.755000px;}
.y81{bottom:294.195000px;}
.y2d{bottom:294.915000px;}
.y99{bottom:295.455000px;}
.y80{bottom:299.415000px;}
.y6e{bottom:312.735000px;}
.y2c{bottom:314.715000px;}
.y98{bottom:323.535000px;}
.y6d{bottom:332.535000px;}
.y2a{bottom:334.515000px;}
.y2b{bottom:339.735000px;}
.y97{bottom:343.335000px;}
.y6b{bottom:352.335000px;}
.y29{bottom:354.495000px;}
.y6c{bottom:357.555000px;}
.y96{bottom:363.135000px;}
.y6a{bottom:372.135000px;}
.y27{bottom:374.295000px;}
.y28{bottom:379.515000px;}
.y95{bottom:382.935000px;}
.y69{bottom:391.935000px;}
.y26{bottom:394.095000px;}
.y9e{bottom:397.155000px;}
.y94{bottom:402.915000px;}
.y68{bottom:411.915000px;}
.y24{bottom:413.895000px;}
.y25{bottom:419.115000px;}
.y93{bottom:422.715000px;}
.y66{bottom:431.715000px;}
.y23{bottom:433.695000px;}
.y67{bottom:436.935000px;}
.y92{bottom:442.515000px;}
.y65{bottom:451.515000px;}
.y22{bottom:453.675000px;}
.y91{bottom:462.315000px;}
.y64{bottom:471.315000px;}
.y21{bottom:473.475000px;}
.y90{bottom:482.115000px;}
.y63{bottom:491.115000px;}
.y20{bottom:493.275000px;}
.y7f{bottom:496.335000px;}
.y8f{bottom:502.095000px;}
.y62{bottom:511.095000px;}
.y1f{bottom:513.075000px;}
.y8e{bottom:521.895000px;}
.y61{bottom:530.895000px;}
.y1e{bottom:532.875000px;}
.y60{bottom:550.695000px;}
.y1d{bottom:552.855000px;}
.y8d{bottom:555.915000px;}
.y5f{bottom:570.525000px;}
.y1c{bottom:572.685000px;}
.y7e{bottom:575.745000px;}
.y5e{bottom:590.325000px;}
.y1b{bottom:594.825000px;}
.y5d{bottom:610.305000px;}
.y1a{bottom:614.625000px;}
.y7d{bottom:615.525000px;}
.y5b{bottom:630.105000px;}
.y19{bottom:634.425000px;}
.y5c{bottom:635.325000px;}
.y5a{bottom:649.905000px;}
.y18{bottom:654.225000px;}
.y58{bottom:669.705000px;}
.y17{bottom:674.025000px;}
.y59{bottom:674.925000px;}
.y57{bottom:689.505000px;}
.y16{bottom:694.005000px;}
.y8c{bottom:694.725000px;}
.y56{bottom:709.485000px;}
.y15{bottom:713.805000px;}
.y55{bottom:729.285000px;}
.y14{bottom:733.605000px;}
.y8b{bottom:734.505000px;}
.y53{bottom:749.085000px;}
.y13{bottom:753.405000px;}
.y54{bottom:754.305000px;}
.y51{bottom:768.885000px;}
.y12{bottom:773.205000px;}
.y52{bottom:774.105000px;}
.y50{bottom:788.685000px;}
.y11{bottom:793.185000px;}
.y8a{bottom:793.905000px;}
.y4f{bottom:808.665000px;}
.y10{bottom:812.985000px;}
.y4e{bottom:828.465000px;}
.yf{bottom:832.785000px;}
.y4d{bottom:848.310000px;}
.ye{bottom:852.630000px;}
.y89{bottom:853.530000px;}
.y4c{bottom:868.110000px;}
.yd{bottom:874.770000px;}
.y4b{bottom:887.910000px;}
.y7c{bottom:893.130000px;}
.yc{bottom:899.790000px;}
.y4a{bottom:907.890000px;}
.yb{bottom:919.590000px;}
.y49{bottom:927.690000px;}
.ya{bottom:934.710000px;}
.y47{bottom:947.490000px;}
.y48{bottom:952.710000px;}
.y9{bottom:956.130000px;}
.y46{bottom:967.290000px;}
.y88{bottom:972.510000px;}
.y8{bottom:979.530000px;}
.y45{bottom:987.090000px;}
.y44{bottom:1007.070000px;}
.y7{bottom:1011.210000px;}
.y9d{bottom:1012.290000px;}
.y43{bottom:1026.870000px;}
.y42{bottom:1046.670000px;}
.y5{bottom:1051.170000px;}
.ya0{bottom:1051.890000px;}
.y41{bottom:1066.470000px;}
.y7b{bottom:1071.690000px;}
.y4{bottom:1081.950000px;}
.y40{bottom:1086.270000px;}
.y9c{bottom:1091.490000px;}
.y3f{bottom:1106.250000px;}
.y3{bottom:1112.730000px;}
.y3e{bottom:1126.050000px;}
.y2{bottom:1143.720000px;}
.y3c{bottom:1145.880000px;}
.y3d{bottom:1151.100000px;}
.y3b{bottom:1165.680000px;}
.y87{bottom:1170.900000px;}
.y1{bottom:1177.560000px;}
.y3a{bottom:1193.220000px;}
.hf{height:2.864531px;}
.h7{height:38.158594px;}
.hc{height:43.215117px;}
.h8{height:58.651172px;}
.h6{height:60.226875px;}
.hd{height:61.423863px;}
.h9{height:62.211094px;}
.h4{height:65.010937px;}
.ha{height:65.884219px;}
.h3{height:66.757500px;}
.hb{height:67.824844px;}
.he{height:80.100000px;}
.h5{height:82.676953px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:199.110000px;}
.w5{width:595.545000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x50{left:7.740000px;}
.x4d{left:26.999987px;}
.x4e{left:45.900000px;}
.x1{left:54.179987px;}
.xb{left:58.859987px;}
.x1d{left:63.719987px;}
.x4b{left:67.499987px;}
.x5{left:70.199987px;}
.x16{left:75.599987px;}
.x4c{left:94.535987px;}
.x3a{left:101.195973px;}
.x3b{left:110.915987px;}
.x1e{left:130.175973px;}
.x1f{left:139.895987px;}
.x40{left:142.415973px;}
.x3c{left:152.309973px;}
.x3d{left:162.029987px;}
.x4a{left:169.769973px;}
.x10{left:174.629973px;}
.x11{left:179.489987px;}
.x4f{left:190.290000px;}
.x28{left:193.529973px;}
.x29{left:203.249987px;}
.x36{left:219.989973px;}
.x37{left:229.709987px;}
.x41{left:244.829973px;}
.x42{left:254.549987px;}
.xa{left:270.029987px;}
.xe{left:285.734973px;}
.xf{left:290.594987px;}
.x17{left:344.054973px;}
.x6{left:345.494973px;}
.x18{left:348.914987px;}
.x7{left:350.354987px;}
.x2{left:370.334987px;}
.x24{left:389.414973px;}
.x25{left:399.134987px;}
.xc{left:403.634973px;}
.xd{left:408.494987px;}
.x47{left:441.974973px;}
.x48{left:451.694987px;}
.x2e{left:494.384973px;}
.x32{left:497.444973px;}
.x34{left:501.044973px;}
.x2f{left:504.104987px;}
.x33{left:507.164987px;}
.x35{left:510.764987px;}
.x8{left:519.044973px;}
.x9{left:523.904987px;}
.x43{left:534.884973px;}
.x3e{left:538.484973px;}
.x44{left:544.604987px;}
.x3f{left:548.204987px;}
.x14{left:581.504973px;}
.x15{left:586.364987px;}
.x2a{left:589.964973px;}
.x2b{left:599.684987px;}
.x1b{left:654.584973px;}
.x1c{left:664.349987px;}
.x49{left:665.969973px;}
.x12{left:670.649973px;}
.x13{left:675.509987px;}
.x19{left:688.649973px;}
.x1a{left:698.369987px;}
.x30{left:701.249973px;}
.x31{left:710.969987px;}
.x20{left:713.849973px;}
.x21{left:723.569987px;}
.x2c{left:727.349973px;}
.x2d{left:737.069987px;}
.x22{left:742.109973px;}
.x23{left:751.829987px;}
.x45{left:753.629973px;}
.x26{left:755.249973px;}
.x46{left:763.349987px;}
.x27{left:764.969987px;}
.x38{left:782.969973px;}
.x39{left:792.689987px;}
.x3{left:831.749973px;}
.x4{left:836.609987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-1.045333pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.lsd{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.456533pt;}
.ls12{letter-spacing:0.736000pt;}
.ls1{letter-spacing:1.440000pt;}
.ls9{letter-spacing:3.360000pt;}
.lsb{letter-spacing:5.280000pt;}
.lsa{letter-spacing:6.992640pt;}
.ls15{letter-spacing:10.320640pt;}
.ls2{letter-spacing:11.040000pt;}
.lsc{letter-spacing:13.392640pt;}
.ls3{letter-spacing:28.112640pt;}
.ls13{letter-spacing:37.200640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.736533pt;}
.ws0{word-spacing:-13.674667pt;}
.ws8{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.096533pt;}
.ws7{word-spacing:-13.049067pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._4{margin-left:-834.764800pt;}
._d{margin-left:-574.778880pt;}
._f{margin-left:-520.791040pt;}
._c{margin-left:-490.113707pt;}
._8{margin-left:-403.857920pt;}
._7{margin-left:-364.727040pt;}
._5{margin-left:-147.200000pt;}
._e{margin-left:-132.149760pt;}
._a{margin-left:-95.127040pt;}
._b{margin-left:-93.808640pt;}
._9{margin-left:-77.440000pt;}
._6{margin-left:-33.280000pt;}
._19{margin-left:-13.611093pt;}
._20{margin-left:-10.263680pt;}
._21{margin-left:-7.247360pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._12{width:2.202453pt;}
._13{width:3.934080pt;}
._14{width:4.940160pt;}
._15{width:6.582827pt;}
._10{width:7.745920pt;}
._11{width:8.862507pt;}
._1a{width:9.800747pt;}
._16{width:10.730240pt;}
._17{width:11.695360pt;}
._18{width:14.204160pt;}
._1e{width:15.297280pt;}
._1c{width:16.476160pt;}
._1d{width:17.456427pt;}
._1f{width:19.229440pt;}
._23{width:21.088640pt;}
._1b{width:24.334720pt;}
._26{width:32.229547pt;}
._25{width:33.208747pt;}
._24{width:41.433600pt;}
._22{width:85.948160pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:5.440000pt;}
.ya8{bottom:23.200000pt;}
.ya5{bottom:27.200000pt;}
.ya7{bottom:41.120000pt;}
.y6{bottom:53.472000pt;}
.ya6{bottom:58.714667pt;}
.y39{bottom:77.472000pt;}
.y7a{bottom:82.112000pt;}
.ya4{bottom:88.512000pt;}
.y38{bottom:92.832000pt;}
.y37{bottom:97.472000pt;}
.y36{bottom:108.032000pt;}
.y35{bottom:112.672000pt;}
.y34{bottom:123.392000pt;}
.y79{bottom:128.032000pt;}
.y33{bottom:138.746667pt;}
.y32{bottom:143.386667pt;}
.y78{bottom:154.106667pt;}
.y31{bottom:155.226667pt;}
.y77{bottom:158.746667pt;}
.y76{bottom:169.466667pt;}
.y86{bottom:174.106667pt;}
.y75{bottom:184.826667pt;}
.ya3{bottom:185.946667pt;}
.y74{bottom:189.466667pt;}
.y73{bottom:200.026667pt;}
.y72{bottom:204.666667pt;}
.ya2{bottom:207.386667pt;}
.y30{bottom:209.146667pt;}
.y85{bottom:215.386667pt;}
.y71{bottom:216.506667pt;}
.y9b{bottom:220.026667pt;}
.ya1{bottom:224.986667pt;}
.y2f{bottom:226.906667pt;}
.y84{bottom:230.746667pt;}
.y9a{bottom:235.386667pt;}
.y70{bottom:242.586667pt;}
.y2e{bottom:244.506667pt;}
.y83{bottom:246.106667pt;}
.y9f{bottom:247.226667pt;}
.y82{bottom:250.786667pt;}
.y6f{bottom:260.226667pt;}
.y81{bottom:261.506667pt;}
.y2d{bottom:262.146667pt;}
.y99{bottom:262.626667pt;}
.y80{bottom:266.146667pt;}
.y6e{bottom:277.986667pt;}
.y2c{bottom:279.746667pt;}
.y98{bottom:287.586667pt;}
.y6d{bottom:295.586667pt;}
.y2a{bottom:297.346667pt;}
.y2b{bottom:301.986667pt;}
.y97{bottom:305.186667pt;}
.y6b{bottom:313.186667pt;}
.y29{bottom:315.106667pt;}
.y6c{bottom:317.826667pt;}
.y96{bottom:322.786667pt;}
.y6a{bottom:330.786667pt;}
.y27{bottom:332.706667pt;}
.y28{bottom:337.346667pt;}
.y95{bottom:340.386667pt;}
.y69{bottom:348.386667pt;}
.y26{bottom:350.306667pt;}
.y9e{bottom:353.026667pt;}
.y94{bottom:358.146667pt;}
.y68{bottom:366.146667pt;}
.y24{bottom:367.906667pt;}
.y25{bottom:372.546667pt;}
.y93{bottom:375.746667pt;}
.y66{bottom:383.746667pt;}
.y23{bottom:385.506667pt;}
.y67{bottom:388.386667pt;}
.y92{bottom:393.346667pt;}
.y65{bottom:401.346667pt;}
.y22{bottom:403.266667pt;}
.y91{bottom:410.946667pt;}
.y64{bottom:418.946667pt;}
.y21{bottom:420.866667pt;}
.y90{bottom:428.546667pt;}
.y63{bottom:436.546667pt;}
.y20{bottom:438.466667pt;}
.y7f{bottom:441.186667pt;}
.y8f{bottom:446.306667pt;}
.y62{bottom:454.306667pt;}
.y1f{bottom:456.066667pt;}
.y8e{bottom:463.906667pt;}
.y61{bottom:471.906667pt;}
.y1e{bottom:473.666667pt;}
.y60{bottom:489.506667pt;}
.y1d{bottom:491.426667pt;}
.y8d{bottom:494.146667pt;}
.y5f{bottom:507.133333pt;}
.y1c{bottom:509.053333pt;}
.y7e{bottom:511.773333pt;}
.y5e{bottom:524.733333pt;}
.y1b{bottom:528.733333pt;}
.y5d{bottom:542.493333pt;}
.y1a{bottom:546.333333pt;}
.y7d{bottom:547.133333pt;}
.y5b{bottom:560.093333pt;}
.y19{bottom:563.933333pt;}
.y5c{bottom:564.733333pt;}
.y5a{bottom:577.693333pt;}
.y18{bottom:581.533333pt;}
.y58{bottom:595.293333pt;}
.y17{bottom:599.133333pt;}
.y59{bottom:599.933333pt;}
.y57{bottom:612.893333pt;}
.y16{bottom:616.893333pt;}
.y8c{bottom:617.533333pt;}
.y56{bottom:630.653333pt;}
.y15{bottom:634.493333pt;}
.y55{bottom:648.253333pt;}
.y14{bottom:652.093333pt;}
.y8b{bottom:652.893333pt;}
.y53{bottom:665.853333pt;}
.y13{bottom:669.693333pt;}
.y54{bottom:670.493333pt;}
.y51{bottom:683.453333pt;}
.y12{bottom:687.293333pt;}
.y52{bottom:688.093333pt;}
.y50{bottom:701.053333pt;}
.y11{bottom:705.053333pt;}
.y8a{bottom:705.693333pt;}
.y4f{bottom:718.813333pt;}
.y10{bottom:722.653333pt;}
.y4e{bottom:736.413333pt;}
.yf{bottom:740.253333pt;}
.y4d{bottom:754.053333pt;}
.ye{bottom:757.893333pt;}
.y89{bottom:758.693333pt;}
.y4c{bottom:771.653333pt;}
.yd{bottom:777.573333pt;}
.y4b{bottom:789.253333pt;}
.y7c{bottom:793.893333pt;}
.yc{bottom:799.813333pt;}
.y4a{bottom:807.013333pt;}
.yb{bottom:817.413333pt;}
.y49{bottom:824.613333pt;}
.ya{bottom:830.853333pt;}
.y47{bottom:842.213333pt;}
.y48{bottom:846.853333pt;}
.y9{bottom:849.893333pt;}
.y46{bottom:859.813333pt;}
.y88{bottom:864.453333pt;}
.y8{bottom:870.693333pt;}
.y45{bottom:877.413333pt;}
.y44{bottom:895.173333pt;}
.y7{bottom:898.853333pt;}
.y9d{bottom:899.813333pt;}
.y43{bottom:912.773333pt;}
.y42{bottom:930.373333pt;}
.y5{bottom:934.373333pt;}
.ya0{bottom:935.013333pt;}
.y41{bottom:947.973333pt;}
.y7b{bottom:952.613333pt;}
.y4{bottom:961.733333pt;}
.y40{bottom:965.573333pt;}
.y9c{bottom:970.213333pt;}
.y3f{bottom:983.333333pt;}
.y3{bottom:989.093333pt;}
.y3e{bottom:1000.933333pt;}
.y2{bottom:1016.640000pt;}
.y3c{bottom:1018.560000pt;}
.y3d{bottom:1023.200000pt;}
.y3b{bottom:1036.160000pt;}
.y87{bottom:1040.800000pt;}
.y1{bottom:1046.720000pt;}
.y3a{bottom:1060.640000pt;}
.hf{height:2.546250pt;}
.h7{height:33.918750pt;}
.hc{height:38.413438pt;}
.h8{height:52.134375pt;}
.h6{height:53.535000pt;}
.hd{height:54.598989pt;}
.h9{height:55.298750pt;}
.h4{height:57.787500pt;}
.ha{height:58.563750pt;}
.h3{height:59.340000pt;}
.hb{height:60.288750pt;}
.he{height:71.200000pt;}
.h5{height:73.490625pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:176.986667pt;}
.w5{width:529.373333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x50{left:6.880000pt;}
.x4d{left:23.999988pt;}
.x4e{left:40.800000pt;}
.x1{left:48.159988pt;}
.xb{left:52.319988pt;}
.x1d{left:56.639988pt;}
.x4b{left:59.999988pt;}
.x5{left:62.399988pt;}
.x16{left:67.199988pt;}
.x4c{left:84.031988pt;}
.x3a{left:89.951976pt;}
.x3b{left:98.591988pt;}
.x1e{left:115.711976pt;}
.x1f{left:124.351988pt;}
.x40{left:126.591976pt;}
.x3c{left:135.386643pt;}
.x3d{left:144.026655pt;}
.x4a{left:150.906643pt;}
.x10{left:155.226643pt;}
.x11{left:159.546655pt;}
.x4f{left:169.146667pt;}
.x28{left:172.026643pt;}
.x29{left:180.666655pt;}
.x36{left:195.546643pt;}
.x37{left:204.186655pt;}
.x41{left:217.626643pt;}
.x42{left:226.266655pt;}
.xa{left:240.026655pt;}
.xe{left:253.986643pt;}
.xf{left:258.306655pt;}
.x17{left:305.826643pt;}
.x6{left:307.106643pt;}
.x18{left:310.146655pt;}
.x7{left:311.426655pt;}
.x2{left:329.186655pt;}
.x24{left:346.146643pt;}
.x25{left:354.786655pt;}
.xc{left:358.786643pt;}
.xd{left:363.106655pt;}
.x47{left:392.866643pt;}
.x48{left:401.506655pt;}
.x2e{left:439.453310pt;}
.x32{left:442.173310pt;}
.x34{left:445.373310pt;}
.x2f{left:448.093322pt;}
.x33{left:450.813322pt;}
.x35{left:454.013322pt;}
.x8{left:461.373310pt;}
.x9{left:465.693322pt;}
.x43{left:475.453310pt;}
.x3e{left:478.653310pt;}
.x44{left:484.093322pt;}
.x3f{left:487.293322pt;}
.x14{left:516.893310pt;}
.x15{left:521.213322pt;}
.x2a{left:524.413310pt;}
.x2b{left:533.053322pt;}
.x1b{left:581.853310pt;}
.x1c{left:590.533322pt;}
.x49{left:591.973310pt;}
.x12{left:596.133310pt;}
.x13{left:600.453322pt;}
.x19{left:612.133310pt;}
.x1a{left:620.773322pt;}
.x30{left:623.333310pt;}
.x31{left:631.973322pt;}
.x20{left:634.533310pt;}
.x21{left:643.173322pt;}
.x2c{left:646.533310pt;}
.x2d{left:655.173322pt;}
.x22{left:659.653310pt;}
.x23{left:668.293322pt;}
.x45{left:669.893310pt;}
.x26{left:671.333310pt;}
.x46{left:678.533322pt;}
.x27{left:679.973322pt;}
.x38{left:695.973310pt;}
.x39{left:704.613322pt;}
.x3{left:739.333310pt;}
.x4{left:743.653322pt;}
}




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