
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_cd4e08efe78da1d24edb0373.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_15ea9923221160425d75a39f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ffd59a58633a0dde30b0271.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f653a6f33c6ccb251ee1c93b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0ae3af880147118587713b69.woff2')format("woff");}.ff6{font-family:ff6;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls27{letter-spacing:-1.044000px;}
.ls25{letter-spacing:-0.960000px;}
.lse{letter-spacing:-0.786000px;}
.ls18{letter-spacing:-0.660000px;}
.ls2b{letter-spacing:-0.579600px;}
.ls39{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls22{letter-spacing:-0.414000px;}
.ls7{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.326400px;}
.ls21{letter-spacing:-0.248400px;}
.ls26{letter-spacing:-0.240600px;}
.ls34{letter-spacing:-0.228000px;}
.lsf{letter-spacing:-0.226800px;}
.ls17{letter-spacing:-0.214800px;}
.ls2a{letter-spacing:-0.208800px;}
.lsb{letter-spacing:-0.115800px;}
.ls3a{letter-spacing:-0.107400px;}
.ls28{letter-spacing:-0.069600px;}
.lsc{letter-spacing:-0.064800px;}
.ls8{letter-spacing:-0.058320px;}
.ls36{letter-spacing:-0.041040px;}
.ls4{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.060600px;}
.ls24{letter-spacing:0.067200px;}
.ls37{letter-spacing:0.100800px;}
.lsa{letter-spacing:0.140400px;}
.ls3b{letter-spacing:0.169200px;}
.ls31{letter-spacing:0.174000px;}
.ls13{letter-spacing:0.175200px;}
.ls30{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.186600px;}
.ls6{letter-spacing:0.256200px;}
.lsd{letter-spacing:0.306000px;}
.ls20{letter-spacing:0.314400px;}
.ls10{letter-spacing:0.393600px;}
.ls38{letter-spacing:0.409440px;}
.ls1a{letter-spacing:0.479400px;}
.ls2f{letter-spacing:0.479520px;}
.ls19{letter-spacing:0.493200px;}
.ls2d{letter-spacing:0.617760px;}
.ls9{letter-spacing:0.654000px;}
.ls33{letter-spacing:0.660000px;}
.ls11{letter-spacing:0.780000px;}
.ls1f{letter-spacing:0.858000px;}
.ls35{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls2c{letter-spacing:2.106720px;}
.ls15{letter-spacing:5.706720px;}
.ls29{letter-spacing:14.346720px;}
.ls16{letter-spacing:15.786720px;}
.ls1b{letter-spacing:18.666720px;}
.ls23{letter-spacing:20.826720px;}
.ls12{letter-spacing:21.546720px;}
.ls3{letter-spacing:38.106720px;}
.ls1c{letter-spacing:45.306720px;}
.ls32{letter-spacing:51.786720px;}
.ls2e{letter-spacing:82.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws16{word-spacing:-14.165760px;}
.ws10{word-spacing:-13.820160px;}
.wsc{word-spacing:-13.811760px;}
.wsf{word-spacing:-13.692360px;}
.wsd{word-spacing:-13.680960px;}
.ws1b{word-spacing:-13.674960px;}
.ws8{word-spacing:-13.646160px;}
.ws19{word-spacing:-13.606560px;}
.ws12{word-spacing:-13.572960px;}
.ws17{word-spacing:-13.566360px;}
.ws7{word-spacing:-13.505760px;}
.ws18{word-spacing:-13.464720px;}
.wsa{word-spacing:-13.447440px;}
.ws11{word-spacing:-13.440960px;}
.ws13{word-spacing:-13.436160px;}
.ws1a{word-spacing:-13.398360px;}
.ws9{word-spacing:-13.389960px;}
.ws14{word-spacing:-13.296960px;}
.wse{word-spacing:-13.290960px;}
.ws15{word-spacing:-13.179360px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.426880px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.799200px;}
._e{margin-left:-4.783680px;}
._6{margin-left:-3.312000px;}
._d{margin-left:-2.262480px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._9{width:2.672160px;}
._8{width:3.830400px;}
._7{width:4.883760px;}
._c{width:5.930160px;}
._b{width:7.928160px;}
._a{width:9.203040px;}
._15{width:10.218960px;}
._11{width:11.952000px;}
._16{width:14.581440px;}
._14{width:15.896160px;}
._17{width:16.971840px;}
._f{width:18.346320px;}
._10{width:19.999680px;}
._12{width:21.513600px;}
._18{width:22.589280px;}
._21{width:24.232320px;}
._13{width:25.380000px;}
._1a{width:26.413920px;}
._19{width:27.429840px;}
._1b{width:29.433840px;}
._1c{width:31.015440px;}
._1d{width:32.405520px;}
._1e{width:33.405840px;}
._26{width:38.963520px;}
._27{width:40.278480px;}
._23{width:57.967200px;}
._22{width:58.983120px;}
._25{width:61.372560px;}
._24{width:62.390400px;}
._29{width:67.962720px;}
._28{width:69.321600px;}
._2c{width:76.547040px;}
._2b{width:77.568480px;}
._1f{width:82.845600px;}
._20{width:84.268800px;}
._2a{width:120.732480px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:61.236000px;}
.y95{bottom:98.136000px;}
.y31{bottom:101.196000px;}
.y65{bottom:107.136000px;}
.y79{bottom:119.196000px;}
.y30{bottom:122.256000px;}
.y64{bottom:128.196000px;}
.y78{bottom:140.256000px;}
.y2f{bottom:143.316000px;}
.y63{bottom:149.256000px;}
.y77{bottom:161.310000px;}
.y2e{bottom:164.370000px;}
.y62{bottom:170.310000px;}
.y76{bottom:182.370000px;}
.y2d{bottom:185.430000px;}
.y61{bottom:191.370000px;}
.y75{bottom:203.430000px;}
.y2c{bottom:206.490000px;}
.y60{bottom:212.430000px;}
.y74{bottom:224.490000px;}
.y2b{bottom:227.550000px;}
.y5f{bottom:233.490000px;}
.y73{bottom:245.550000px;}
.y2a{bottom:248.610000px;}
.y5e{bottom:254.550000px;}
.y72{bottom:266.610000px;}
.y29{bottom:269.670000px;}
.y5d{bottom:275.610000px;}
.y71{bottom:287.715000px;}
.y28{bottom:290.775000px;}
.y5c{bottom:296.715000px;}
.y70{bottom:308.775000px;}
.y27{bottom:311.835000px;}
.y5b{bottom:317.775000px;}
.y6f{bottom:329.835000px;}
.y26{bottom:332.895000px;}
.y5a{bottom:338.835000px;}
.y6e{bottom:350.895000px;}
.y25{bottom:353.955000px;}
.y59{bottom:359.895000px;}
.y6d{bottom:371.955000px;}
.y24{bottom:375.015000px;}
.y58{bottom:380.955000px;}
.y6c{bottom:393.015000px;}
.y23{bottom:396.075000px;}
.y57{bottom:402.015000px;}
.y6b{bottom:414.075000px;}
.y22{bottom:417.135000px;}
.y56{bottom:423.075000px;}
.y6a{bottom:435.135000px;}
.y21{bottom:438.195000px;}
.y97{bottom:440.715000px;}
.y55{bottom:444.135000px;}
.y69{bottom:456.195000px;}
.y20{bottom:459.255000px;}
.y96{bottom:463.935000px;}
.y54{bottom:465.195000px;}
.y68{bottom:477.255000px;}
.y1f{bottom:480.315000px;}
.y53{bottom:486.255000px;}
.y67{bottom:498.315000px;}
.y1e{bottom:501.375000px;}
.y52{bottom:507.315000px;}
.y66{bottom:519.375000px;}
.y1d{bottom:522.435000px;}
.y51{bottom:528.375000px;}
.y94{bottom:540.435000px;}
.y1c{bottom:543.495000px;}
.y50{bottom:549.435000px;}
.y93{bottom:561.495000px;}
.y1b{bottom:566.925000px;}
.y4f{bottom:570.525000px;}
.y92{bottom:582.585000px;}
.y4e{bottom:591.585000px;}
.y1a{bottom:596.805000px;}
.y91{bottom:603.645000px;}
.y4d{bottom:612.645000px;}
.y19{bottom:617.865000px;}
.y90{bottom:624.705000px;}
.y4c{bottom:633.705000px;}
.y18{bottom:638.925000px;}
.y8f{bottom:645.765000px;}
.y4b{bottom:654.765000px;}
.y17{bottom:659.985000px;}
.y8e{bottom:666.825000px;}
.y4a{bottom:675.825000px;}
.y16{bottom:681.045000px;}
.y8d{bottom:687.885000px;}
.y49{bottom:696.885000px;}
.y15{bottom:702.105000px;}
.y8c{bottom:708.945000px;}
.y48{bottom:717.945000px;}
.y14{bottom:723.165000px;}
.y8b{bottom:730.005000px;}
.y47{bottom:739.005000px;}
.y13{bottom:744.225000px;}
.y8a{bottom:751.065000px;}
.y46{bottom:760.065000px;}
.y12{bottom:765.285000px;}
.y89{bottom:772.125000px;}
.y45{bottom:781.125000px;}
.y11{bottom:786.345000px;}
.y88{bottom:793.185000px;}
.y44{bottom:802.185000px;}
.y10{bottom:807.405000px;}
.y87{bottom:814.245000px;}
.y43{bottom:823.245000px;}
.yf{bottom:828.465000px;}
.y86{bottom:835.305000px;}
.y42{bottom:844.305000px;}
.ye{bottom:849.570000px;}
.y85{bottom:856.410000px;}
.y41{bottom:865.410000px;}
.yd{bottom:870.630000px;}
.y84{bottom:877.470000px;}
.y40{bottom:886.470000px;}
.yc{bottom:893.850000px;}
.y83{bottom:898.530000px;}
.y3f{bottom:907.530000px;}
.y82{bottom:919.590000px;}
.yb{bottom:920.130000px;}
.y3e{bottom:928.590000px;}
.ya{bottom:936.870000px;}
.y81{bottom:940.650000px;}
.y3d{bottom:949.650000px;}
.y9{bottom:960.090000px;}
.y80{bottom:961.710000px;}
.y3c{bottom:970.710000px;}
.y7f{bottom:982.770000px;}
.y8{bottom:986.550000px;}
.y3b{bottom:991.770000px;}
.y7e{bottom:1003.830000px;}
.y3a{bottom:1012.830000px;}
.y7{bottom:1020.210000px;}
.y7d{bottom:1024.890000px;}
.y39{bottom:1033.890000px;}
.y7c{bottom:1045.950000px;}
.y38{bottom:1054.950000px;}
.y5{bottom:1060.350000px;}
.y7b{bottom:1067.010000px;}
.y37{bottom:1076.010000px;}
.y7a{bottom:1088.070000px;}
.y4{bottom:1092.570000px;}
.y36{bottom:1097.070000px;}
.y35{bottom:1118.130000px;}
.y3{bottom:1124.610000px;}
.y34{bottom:1139.220000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1170.000000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h6{height:38.671172px;}
.h2{height:56.146289px;}
.h7{height:59.439023px;}
.h8{height:61.189805px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.884219px;}
.h5{height:67.824844px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.999987px;}
.x2{left:75.599987px;}
.x3{left:80.999987px;}
.x5{left:108.035987px;}
.x4{left:117.935987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls27{letter-spacing:-0.928000pt;}
.ls25{letter-spacing:-0.853333pt;}
.lse{letter-spacing:-0.698667pt;}
.ls18{letter-spacing:-0.586667pt;}
.ls2b{letter-spacing:-0.515200pt;}
.ls39{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls22{letter-spacing:-0.368000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.290133pt;}
.ls21{letter-spacing:-0.220800pt;}
.ls26{letter-spacing:-0.213867pt;}
.ls34{letter-spacing:-0.202667pt;}
.lsf{letter-spacing:-0.201600pt;}
.ls17{letter-spacing:-0.190933pt;}
.ls2a{letter-spacing:-0.185600pt;}
.lsb{letter-spacing:-0.102933pt;}
.ls3a{letter-spacing:-0.095467pt;}
.ls28{letter-spacing:-0.061867pt;}
.lsc{letter-spacing:-0.057600pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls36{letter-spacing:-0.036480pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.053867pt;}
.ls24{letter-spacing:0.059733pt;}
.ls37{letter-spacing:0.089600pt;}
.lsa{letter-spacing:0.124800pt;}
.ls3b{letter-spacing:0.150400pt;}
.ls31{letter-spacing:0.154667pt;}
.ls13{letter-spacing:0.155733pt;}
.ls30{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.165867pt;}
.ls6{letter-spacing:0.227733pt;}
.lsd{letter-spacing:0.272000pt;}
.ls20{letter-spacing:0.279467pt;}
.ls10{letter-spacing:0.349867pt;}
.ls38{letter-spacing:0.363947pt;}
.ls1a{letter-spacing:0.426133pt;}
.ls2f{letter-spacing:0.426240pt;}
.ls19{letter-spacing:0.438400pt;}
.ls2d{letter-spacing:0.549120pt;}
.ls9{letter-spacing:0.581333pt;}
.ls33{letter-spacing:0.586667pt;}
.ls11{letter-spacing:0.693333pt;}
.ls1f{letter-spacing:0.762667pt;}
.ls35{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls2c{letter-spacing:1.872640pt;}
.ls15{letter-spacing:5.072640pt;}
.ls29{letter-spacing:12.752640pt;}
.ls16{letter-spacing:14.032640pt;}
.ls1b{letter-spacing:16.592640pt;}
.ls23{letter-spacing:18.512640pt;}
.ls12{letter-spacing:19.152640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls1c{letter-spacing:40.272640pt;}
.ls32{letter-spacing:46.032640pt;}
.ls2e{letter-spacing:72.912640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.591787pt;}
.ws10{word-spacing:-12.284587pt;}
.wsc{word-spacing:-12.277120pt;}
.wsf{word-spacing:-12.170987pt;}
.wsd{word-spacing:-12.160853pt;}
.ws1b{word-spacing:-12.155520pt;}
.ws8{word-spacing:-12.129920pt;}
.ws19{word-spacing:-12.094720pt;}
.ws12{word-spacing:-12.064853pt;}
.ws17{word-spacing:-12.058987pt;}
.ws7{word-spacing:-12.005120pt;}
.ws18{word-spacing:-11.968640pt;}
.wsa{word-spacing:-11.953280pt;}
.ws11{word-spacing:-11.947520pt;}
.ws13{word-spacing:-11.943253pt;}
.ws1a{word-spacing:-11.909653pt;}
.ws9{word-spacing:-11.902187pt;}
.ws14{word-spacing:-11.819520pt;}
.wse{word-spacing:-11.814187pt;}
.ws15{word-spacing:-11.714987pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.490560pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-518.043733pt;}
._e{margin-left:-4.252160pt;}
._6{margin-left:-2.944000pt;}
._d{margin-left:-2.011093pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._9{width:2.375253pt;}
._8{width:3.404800pt;}
._7{width:4.341120pt;}
._c{width:5.271253pt;}
._b{width:7.047253pt;}
._a{width:8.180480pt;}
._15{width:9.083520pt;}
._11{width:10.624000pt;}
._16{width:12.961280pt;}
._14{width:14.129920pt;}
._17{width:15.086080pt;}
._f{width:16.307840pt;}
._10{width:17.777493pt;}
._12{width:19.123200pt;}
._18{width:20.079360pt;}
._21{width:21.539840pt;}
._13{width:22.560000pt;}
._1a{width:23.479040pt;}
._19{width:24.382080pt;}
._1b{width:26.163413pt;}
._1c{width:27.569280pt;}
._1d{width:28.804907pt;}
._1e{width:29.694080pt;}
._26{width:34.634240pt;}
._27{width:35.803093pt;}
._23{width:51.526400pt;}
._22{width:52.429440pt;}
._25{width:54.553387pt;}
._24{width:55.458133pt;}
._29{width:60.411307pt;}
._28{width:61.619200pt;}
._2c{width:68.041813pt;}
._2b{width:68.949760pt;}
._1f{width:73.640533pt;}
._20{width:74.905600pt;}
._2a{width:107.317760pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:54.432000pt;}
.y95{bottom:87.232000pt;}
.y31{bottom:89.952000pt;}
.y65{bottom:95.232000pt;}
.y79{bottom:105.952000pt;}
.y30{bottom:108.672000pt;}
.y64{bottom:113.952000pt;}
.y78{bottom:124.672000pt;}
.y2f{bottom:127.392000pt;}
.y63{bottom:132.672000pt;}
.y77{bottom:143.386667pt;}
.y2e{bottom:146.106667pt;}
.y62{bottom:151.386667pt;}
.y76{bottom:162.106667pt;}
.y2d{bottom:164.826667pt;}
.y61{bottom:170.106667pt;}
.y75{bottom:180.826667pt;}
.y2c{bottom:183.546667pt;}
.y60{bottom:188.826667pt;}
.y74{bottom:199.546667pt;}
.y2b{bottom:202.266667pt;}
.y5f{bottom:207.546667pt;}
.y73{bottom:218.266667pt;}
.y2a{bottom:220.986667pt;}
.y5e{bottom:226.266667pt;}
.y72{bottom:236.986667pt;}
.y29{bottom:239.706667pt;}
.y5d{bottom:244.986667pt;}
.y71{bottom:255.746667pt;}
.y28{bottom:258.466667pt;}
.y5c{bottom:263.746667pt;}
.y70{bottom:274.466667pt;}
.y27{bottom:277.186667pt;}
.y5b{bottom:282.466667pt;}
.y6f{bottom:293.186667pt;}
.y26{bottom:295.906667pt;}
.y5a{bottom:301.186667pt;}
.y6e{bottom:311.906667pt;}
.y25{bottom:314.626667pt;}
.y59{bottom:319.906667pt;}
.y6d{bottom:330.626667pt;}
.y24{bottom:333.346667pt;}
.y58{bottom:338.626667pt;}
.y6c{bottom:349.346667pt;}
.y23{bottom:352.066667pt;}
.y57{bottom:357.346667pt;}
.y6b{bottom:368.066667pt;}
.y22{bottom:370.786667pt;}
.y56{bottom:376.066667pt;}
.y6a{bottom:386.786667pt;}
.y21{bottom:389.506667pt;}
.y97{bottom:391.746667pt;}
.y55{bottom:394.786667pt;}
.y69{bottom:405.506667pt;}
.y20{bottom:408.226667pt;}
.y96{bottom:412.386667pt;}
.y54{bottom:413.506667pt;}
.y68{bottom:424.226667pt;}
.y1f{bottom:426.946667pt;}
.y53{bottom:432.226667pt;}
.y67{bottom:442.946667pt;}
.y1e{bottom:445.666667pt;}
.y52{bottom:450.946667pt;}
.y66{bottom:461.666667pt;}
.y1d{bottom:464.386667pt;}
.y51{bottom:469.666667pt;}
.y94{bottom:480.386667pt;}
.y1c{bottom:483.106667pt;}
.y50{bottom:488.386667pt;}
.y93{bottom:499.106667pt;}
.y1b{bottom:503.933333pt;}
.y4f{bottom:507.133333pt;}
.y92{bottom:517.853333pt;}
.y4e{bottom:525.853333pt;}
.y1a{bottom:530.493333pt;}
.y91{bottom:536.573333pt;}
.y4d{bottom:544.573333pt;}
.y19{bottom:549.213333pt;}
.y90{bottom:555.293333pt;}
.y4c{bottom:563.293333pt;}
.y18{bottom:567.933333pt;}
.y8f{bottom:574.013333pt;}
.y4b{bottom:582.013333pt;}
.y17{bottom:586.653333pt;}
.y8e{bottom:592.733333pt;}
.y4a{bottom:600.733333pt;}
.y16{bottom:605.373333pt;}
.y8d{bottom:611.453333pt;}
.y49{bottom:619.453333pt;}
.y15{bottom:624.093333pt;}
.y8c{bottom:630.173333pt;}
.y48{bottom:638.173333pt;}
.y14{bottom:642.813333pt;}
.y8b{bottom:648.893333pt;}
.y47{bottom:656.893333pt;}
.y13{bottom:661.533333pt;}
.y8a{bottom:667.613333pt;}
.y46{bottom:675.613333pt;}
.y12{bottom:680.253333pt;}
.y89{bottom:686.333333pt;}
.y45{bottom:694.333333pt;}
.y11{bottom:698.973333pt;}
.y88{bottom:705.053333pt;}
.y44{bottom:713.053333pt;}
.y10{bottom:717.693333pt;}
.y87{bottom:723.773333pt;}
.y43{bottom:731.773333pt;}
.yf{bottom:736.413333pt;}
.y86{bottom:742.493333pt;}
.y42{bottom:750.493333pt;}
.ye{bottom:755.173333pt;}
.y85{bottom:761.253333pt;}
.y41{bottom:769.253333pt;}
.yd{bottom:773.893333pt;}
.y84{bottom:779.973333pt;}
.y40{bottom:787.973333pt;}
.yc{bottom:794.533333pt;}
.y83{bottom:798.693333pt;}
.y3f{bottom:806.693333pt;}
.y82{bottom:817.413333pt;}
.yb{bottom:817.893333pt;}
.y3e{bottom:825.413333pt;}
.ya{bottom:832.773333pt;}
.y81{bottom:836.133333pt;}
.y3d{bottom:844.133333pt;}
.y9{bottom:853.413333pt;}
.y80{bottom:854.853333pt;}
.y3c{bottom:862.853333pt;}
.y7f{bottom:873.573333pt;}
.y8{bottom:876.933333pt;}
.y3b{bottom:881.573333pt;}
.y7e{bottom:892.293333pt;}
.y3a{bottom:900.293333pt;}
.y7{bottom:906.853333pt;}
.y7d{bottom:911.013333pt;}
.y39{bottom:919.013333pt;}
.y7c{bottom:929.733333pt;}
.y38{bottom:937.733333pt;}
.y5{bottom:942.533333pt;}
.y7b{bottom:948.453333pt;}
.y37{bottom:956.453333pt;}
.y7a{bottom:967.173333pt;}
.y4{bottom:971.173333pt;}
.y36{bottom:975.173333pt;}
.y35{bottom:993.893333pt;}
.y3{bottom:999.653333pt;}
.y34{bottom:1012.640000pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1040.000000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h6{height:34.374375pt;}
.h2{height:49.907812pt;}
.h7{height:52.834688pt;}
.h8{height:54.390938pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:58.563750pt;}
.h5{height:60.288750pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.999988pt;}
.x2{left:67.199988pt;}
.x3{left:71.999988pt;}
.x5{left:96.031988pt;}
.x4{left:104.831988pt;}
}




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