
    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_5c00941fbc9a5551b44470df.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015137;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_645395ff30ef8528d89a981d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.015137;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m3{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:-86.400000px;}
.v6{vertical-align:-53.280000px;}
.v4{vertical-align:-50.400000px;}
.v5{vertical-align:-1.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:32.400000px;}
.v1{vertical-align:86.400000px;}
.ls9{letter-spacing:-2.520000px;}
.ls8{letter-spacing:-0.406200px;}
.ls6{letter-spacing:-0.306600px;}
.ls5{letter-spacing:-0.184200px;}
.ls3{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.026640px;}
.ls4{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.112320px;}
.ls0{letter-spacing:0.504000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-87.991920px;}
.ws0{word-spacing:-64.015920px;}
.ws6{word-spacing:-55.912032px;}
.ws2{word-spacing:-47.999952px;}
.ws7{word-spacing:-47.952000px;}
.ws3{word-spacing:-40.039920px;}
.ws5{word-spacing:-37.450512px;}
.ws4{word-spacing:-37.402560px;}
.ws1{word-spacing:-35.964000px;}
.ws9{word-spacing:0.000000px;}
._3{margin-left:-4.224240px;}
._2{margin-left:-2.903760px;}
._0{margin-left:-1.620000px;}
._1{width:1.200000px;}
._5{width:2.391360px;}
._6{width:40.827974px;}
._4{width:158.900400px;}
._8{width:1119.108240px;}
._a{width:4125.851760px;}
._9{width:4307.835360px;}
._7{width:6083.514000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fsd{font-size:112.320000px;}
.fsf{font-size:112.464000px;}
.fsb{font-size:120.240000px;}
.fsc{font-size:126.742821px;}
.fs8{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fs9{font-size:151.787810px;}
.fse{font-size:167.760000px;}
.fs10{font-size:167.904000px;}
.fs2{font-size:192.240000px;}
.fs6{font-size:257.760000px;}
.fs7{font-size:257.904000px;}
.fs12{font-size:264.240000px;}
.fs1{font-size:288.000000px;}
.fs3{font-size:288.144000px;}
.fs11{font-size:311.760000px;}
.fs0{font-size:540.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:130.788000px;}
.y11{bottom:153.870000px;}
.y13{bottom:173.985000px;}
.y12{bottom:217.185000px;}
.y10{bottom:231.270000px;}
.yf{bottom:308.700000px;}
.ye{bottom:386.100000px;}
.yd{bottom:463.500000px;}
.y35{bottom:471.525000px;}
.y34{bottom:507.525000px;}
.yc{bottom:540.900000px;}
.y33{bottom:543.525000px;}
.y32{bottom:608.325000px;}
.yb{bottom:618.300000px;}
.y31{bottom:644.325000px;}
.y30{bottom:680.325000px;}
.y2f{bottom:716.325000px;}
.y2e{bottom:781.125000px;}
.y2d{bottom:817.125000px;}
.y2c{bottom:853.125000px;}
.y3d{bottom:854.610000px;}
.y3c{bottom:968.910000px;}
.y24{bottom:1017.285000px;}
.y23{bottom:1103.730000px;}
.y28{bottom:1105.380000px;}
.y2a{bottom:1106.895000px;}
.y27{bottom:1148.610000px;}
.y29{bottom:1150.095000px;}
.y3b{bottom:1509.300000px;}
.y3e{bottom:1582.740000px;}
.y26{bottom:1668.090000px;}
.y20{bottom:1688.370000px;}
.y9{bottom:1752.735000px;}
.y25{bottom:1754.490000px;}
.y1f{bottom:1774.770000px;}
.y8{bottom:1839.135000px;}
.y1e{bottom:1861.170000px;}
.y3a{bottom:1878.915000px;}
.y7{bottom:1968.765000px;}
.y1d{bottom:1990.770000px;}
.y22{bottom:2040.015000px;}
.y6{bottom:2055.165000px;}
.y3f{bottom:2063.010000px;}
.y1c{bottom:2077.170000px;}
.y21{bottom:2126.415000px;}
.y1b{bottom:2163.600000px;}
.y5{bottom:2184.765000px;}
.y1a{bottom:2250.000000px;}
.y4{bottom:2271.165000px;}
.y19{bottom:2379.600000px;}
.y2b{bottom:2380.605000px;}
.y18{bottom:2466.000000px;}
.y17{bottom:2552.400000px;}
.ya{bottom:2617.590000px;}
.y16{bottom:2682.000000px;}
.y15{bottom:2768.400000px;}
.y39{bottom:2920.605000px;}
.y40{bottom:3048.225000px;}
.y3{bottom:3075.225000px;}
.y38{bottom:3095.895000px;}
.y37{bottom:3146.295000px;}
.y2{bottom:3177.285000px;}
.y36{bottom:3196.695000px;}
.y1{bottom:3326.115000px;}
.hf{height:85.940156px;}
.h10{height:86.050336px;}
.h7{height:87.489844px;}
.hd{height:92.000039px;}
.he{height:96.975586px;}
.ha{height:110.179688px;}
.hc{height:110.289867px;}
.hb{height:116.138427px;}
.h4{height:147.089883px;}
.h8{height:197.221641px;}
.h9{height:197.331820px;}
.h12{height:202.179727px;}
.h5{height:220.359375px;}
.h6{height:220.469555px;}
.h3{height:233.489883px;}
.h11{height:238.539023px;}
.h2{height:413.173828px;}
.h0{height:3575.880000px;}
.h1{height:3576.000000px;}
.w2{width:5055.479925px;}
.w0{width:5055.480000px;}
.w1{width:5055.750000px;}
.x0{left:0.000000px;}
.xf{left:140.255925px;}
.x1{left:148.859925px;}
.x6{left:152.714925px;}
.xb{left:163.469925px;}
.x3{left:178.454925px;}
.xa{left:191.009925px;}
.x5{left:192.704925px;}
.x4{left:199.544925px;}
.x2{left:204.089925px;}
.x7{left:217.724925px;}
.x8{left:268.124925px;}
.xe{left:298.649925px;}
.xc{left:324.569925px;}
.xd{left:559.109925px;}
.x28{left:918.614925px;}
.x9{left:943.409925px;}
.x20{left:1395.284925px;}
.x21{left:1426.064925px;}
.x1f{left:1451.264925px;}
.x22{left:1558.004925px;}
.x32{left:1584.209925px;}
.x2f{left:1836.509925px;}
.x34{left:2224.949925px;}
.x24{left:2687.039925px;}
.x30{left:2704.529925px;}
.x23{left:2717.459925px;}
.x2e{left:3061.589925px;}
.x33{left:3662.204925px;}
.x17{left:3866.219925px;}
.x12{left:3881.774925px;}
.x29{left:3888.569925px;}
.x10{left:3900.314925px;}
.x19{left:3911.579925px;}
.x1c{left:3915.899925px;}
.x1d{left:3925.259925px;}
.x1a{left:3932.639925px;}
.x14{left:3947.939925px;}
.x13{left:3951.434925px;}
.x15{left:4013.459925px;}
.x25{left:4046.009925px;}
.x1e{left:4047.119925px;}
.x16{left:4077.359925px;}
.x2a{left:4133.909925px;}
.x1b{left:4155.509925px;}
.x18{left:4197.809925px;}
.x11{left:4249.154925px;}
.x26{left:4394.729925px;}
.x27{left:4415.069925px;}
.x2d{left:4428.029925px;}
.x2b{left:4527.029925px;}
.x31{left:4532.609925px;}
.x2c{left:4768.049925px;}
@media print{
.v2{vertical-align:-76.800000pt;}
.v6{vertical-align:-47.360000pt;}
.v4{vertical-align:-44.800000pt;}
.v5{vertical-align:-1.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:28.800000pt;}
.v1{vertical-align:76.800000pt;}
.ls9{letter-spacing:-2.240000pt;}
.ls8{letter-spacing:-0.361067pt;}
.ls6{letter-spacing:-0.272533pt;}
.ls5{letter-spacing:-0.163733pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.023680pt;}
.ls4{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.099840pt;}
.ls0{letter-spacing:0.448000pt;}
.ws8{word-spacing:-78.215040pt;}
.ws0{word-spacing:-56.903040pt;}
.ws6{word-spacing:-49.699584pt;}
.ws2{word-spacing:-42.666624pt;}
.ws7{word-spacing:-42.624000pt;}
.ws3{word-spacing:-35.591040pt;}
.ws5{word-spacing:-33.289344pt;}
.ws4{word-spacing:-33.246720pt;}
.ws1{word-spacing:-31.968000pt;}
.ws9{word-spacing:0.000000pt;}
._3{margin-left:-3.754880pt;}
._2{margin-left:-2.581120pt;}
._0{margin-left:-1.440000pt;}
._1{width:1.066667pt;}
._5{width:2.125653pt;}
._6{width:36.291533pt;}
._4{width:141.244800pt;}
._8{width:994.762880pt;}
._a{width:3667.423787pt;}
._9{width:3829.186987pt;}
._7{width:5407.568000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fsd{font-size:99.840000pt;}
.fsf{font-size:99.968000pt;}
.fsb{font-size:106.880000pt;}
.fsc{font-size:112.660286pt;}
.fs8{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fs9{font-size:134.922498pt;}
.fse{font-size:149.120000pt;}
.fs10{font-size:149.248000pt;}
.fs2{font-size:170.880000pt;}
.fs6{font-size:229.120000pt;}
.fs7{font-size:229.248000pt;}
.fs12{font-size:234.880000pt;}
.fs1{font-size:256.000000pt;}
.fs3{font-size:256.128000pt;}
.fs11{font-size:277.120000pt;}
.fs0{font-size:480.000000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:116.256000pt;}
.y11{bottom:136.773333pt;}
.y13{bottom:154.653333pt;}
.y12{bottom:193.053333pt;}
.y10{bottom:205.573333pt;}
.yf{bottom:274.400000pt;}
.ye{bottom:343.200000pt;}
.yd{bottom:412.000000pt;}
.y35{bottom:419.133333pt;}
.y34{bottom:451.133333pt;}
.yc{bottom:480.800000pt;}
.y33{bottom:483.133333pt;}
.y32{bottom:540.733333pt;}
.yb{bottom:549.600000pt;}
.y31{bottom:572.733333pt;}
.y30{bottom:604.733333pt;}
.y2f{bottom:636.733333pt;}
.y2e{bottom:694.333333pt;}
.y2d{bottom:726.333333pt;}
.y2c{bottom:758.333333pt;}
.y3d{bottom:759.653333pt;}
.y3c{bottom:861.253333pt;}
.y24{bottom:904.253333pt;}
.y23{bottom:981.093333pt;}
.y28{bottom:982.560000pt;}
.y2a{bottom:983.906667pt;}
.y27{bottom:1020.986667pt;}
.y29{bottom:1022.306667pt;}
.y3b{bottom:1341.600000pt;}
.y3e{bottom:1406.880000pt;}
.y26{bottom:1482.746667pt;}
.y20{bottom:1500.773333pt;}
.y9{bottom:1557.986667pt;}
.y25{bottom:1559.546667pt;}
.y1f{bottom:1577.573333pt;}
.y8{bottom:1634.786667pt;}
.y1e{bottom:1654.373333pt;}
.y3a{bottom:1670.146667pt;}
.y7{bottom:1750.013333pt;}
.y1d{bottom:1769.573333pt;}
.y22{bottom:1813.346667pt;}
.y6{bottom:1826.813333pt;}
.y3f{bottom:1833.786667pt;}
.y1c{bottom:1846.373333pt;}
.y21{bottom:1890.146667pt;}
.y1b{bottom:1923.200000pt;}
.y5{bottom:1942.013333pt;}
.y1a{bottom:2000.000000pt;}
.y4{bottom:2018.813333pt;}
.y19{bottom:2115.200000pt;}
.y2b{bottom:2116.093333pt;}
.y18{bottom:2192.000000pt;}
.y17{bottom:2268.800000pt;}
.ya{bottom:2326.746667pt;}
.y16{bottom:2384.000000pt;}
.y15{bottom:2460.800000pt;}
.y39{bottom:2596.093333pt;}
.y40{bottom:2709.533333pt;}
.y3{bottom:2733.533333pt;}
.y38{bottom:2751.906667pt;}
.y37{bottom:2796.706667pt;}
.y2{bottom:2824.253333pt;}
.y36{bottom:2841.506667pt;}
.y1{bottom:2956.546667pt;}
.hf{height:76.391250pt;}
.h10{height:76.489187pt;}
.h7{height:77.768750pt;}
.hd{height:81.777812pt;}
.he{height:86.200521pt;}
.ha{height:97.937500pt;}
.hc{height:98.035438pt;}
.hb{height:103.234157pt;}
.h4{height:130.746563pt;}
.h8{height:175.308125pt;}
.h9{height:175.406062pt;}
.h12{height:179.715313pt;}
.h5{height:195.875000pt;}
.h6{height:195.972937pt;}
.h3{height:207.546563pt;}
.h11{height:212.034687pt;}
.h2{height:367.265625pt;}
.h0{height:3178.560000pt;}
.h1{height:3178.666667pt;}
.w2{width:4493.759933pt;}
.w0{width:4493.760000pt;}
.w1{width:4494.000000pt;}
.x0{left:0.000000pt;}
.xf{left:124.671933pt;}
.x1{left:132.319933pt;}
.x6{left:135.746600pt;}
.xb{left:145.306600pt;}
.x3{left:158.626600pt;}
.xa{left:169.786600pt;}
.x5{left:171.293266pt;}
.x4{left:177.373266pt;}
.x2{left:181.413266pt;}
.x7{left:193.533266pt;}
.x8{left:238.333266pt;}
.xe{left:265.466600pt;}
.xc{left:288.506600pt;}
.xd{left:496.986600pt;}
.x28{left:816.546600pt;}
.x9{left:838.586600pt;}
.x20{left:1240.253266pt;}
.x21{left:1267.613266pt;}
.x1f{left:1290.013266pt;}
.x22{left:1384.893266pt;}
.x32{left:1408.186600pt;}
.x2f{left:1632.453266pt;}
.x34{left:1977.733266pt;}
.x24{left:2388.479933pt;}
.x30{left:2404.026600pt;}
.x23{left:2415.519933pt;}
.x2e{left:2721.413266pt;}
.x33{left:3255.293266pt;}
.x17{left:3436.639933pt;}
.x12{left:3450.466600pt;}
.x29{left:3456.506600pt;}
.x10{left:3466.946600pt;}
.x19{left:3476.959933pt;}
.x1c{left:3480.799933pt;}
.x1d{left:3489.119933pt;}
.x1a{left:3495.679933pt;}
.x14{left:3509.279933pt;}
.x13{left:3512.386600pt;}
.x15{left:3567.519933pt;}
.x25{left:3596.453266pt;}
.x1e{left:3597.439933pt;}
.x16{left:3624.319933pt;}
.x2a{left:3674.586600pt;}
.x1b{left:3693.786600pt;}
.x18{left:3731.386600pt;}
.x11{left:3777.026600pt;}
.x26{left:3906.426600pt;}
.x27{left:3924.506600pt;}
.x2d{left:3936.026600pt;}
.x2b{left:4024.026600pt;}
.x31{left:4028.986600pt;}
.x2c{left:4238.266600pt;}
}




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