
    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_e4477e69e1134b731ab2e5f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_9aa1a614e69a86044b44b3ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_7ce1511c3af0f5f414c52163.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_c3b253b0cb30ca587084e313.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_135aa0014c0f91b9373f6d95.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a2eb9b4be43cf87710cdecfc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.094301px;}
.ls2{letter-spacing:1.900872px;}
.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;}
}
.ws3{word-spacing:-95.137901px;}
.ws4{word-spacing:-95.043600px;}
.ws1{word-spacing:-79.204500px;}
.ws0{word-spacing:-23.761125px;}
.ws5{word-spacing:-23.760900px;}
.ws6{word-spacing:-15.840563px;}
.ws2{word-spacing:0.000000px;}
._1c{margin-left:-24.331773px;}
._7{margin-left:-12.522617px;}
._9{margin-left:-10.915836px;}
._14{margin-left:-9.579750px;}
._5{margin-left:-8.393095px;}
._3{margin-left:-7.241832px;}
._6{margin-left:-6.123652px;}
._2{margin-left:-4.942409px;}
._8{margin-left:-3.731557px;}
._1{margin-left:-2.369907px;}
._4{margin-left:-1.065133px;}
._0{width:1.048595px;}
._b{width:2.566392px;}
._c{width:3.754384px;}
._d{width:4.832633px;}
._f{width:5.894636px;}
._e{width:7.689939px;}
._11{width:9.507366px;}
._15{width:11.423678px;}
._13{width:12.427451px;}
._12{width:13.489746px;}
._16{width:14.915400px;}
._1a{width:15.972586px;}
._1b{width:17.152093px;}
._22{width:18.210539px;}
._24{width:19.562999px;}
._25{width:20.766732px;}
._a{width:25.661920px;}
._26{width:160.258276px;}
._23{width:251.965877px;}
._21{width:261.359105px;}
._27{width:347.420921px;}
._17{width:670.282228px;}
._1f{width:978.000100px;}
._20{width:991.295971px;}
._1d{width:1133.959659px;}
._18{width:1320.442991px;}
._1e{width:1697.938895px;}
._19{width:1700.098805px;}
._10{width:1729.618796px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs7{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y1e{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y31{bottom:41.040115px;}
.y52{bottom:121.320099px;}
.y30{bottom:121.860077px;}
.y51{bottom:149.940033px;}
.y2f{bottom:150.300041px;}
.y50{bottom:178.380066px;}
.y6f{bottom:178.560036px;}
.y2e{bottom:178.920043px;}
.y4f{bottom:207.000068px;}
.y2d{bottom:207.360077px;}
.y4e{bottom:235.440033px;}
.y74{bottom:235.620072px;}
.y2c{bottom:235.980079px;}
.y1c{bottom:235.980150px;}
.y6e{bottom:264.060036px;}
.y2b{bottom:264.420043px;}
.y1b{bottom:264.420150px;}
.y4d{bottom:292.500068px;}
.y6d{bottom:292.680039px;}
.y2a{bottom:293.040047px;}
.y6c{bottom:321.120072px;}
.y29{bottom:321.480079px;}
.y1a{bottom:321.480150px;}
.y70{bottom:349.560036px;}
.y6b{bottom:349.740074px;}
.y61{bottom:350.100083px;}
.y19{bottom:350.100150px;}
.y4c{bottom:378.180039px;}
.y28{bottom:378.540047px;}
.y4b{bottom:406.620072px;}
.y6a{bottom:406.800041px;}
.y18{bottom:407.160000px;}
.y27{bottom:407.160049px;}
.y4a{bottom:435.240074px;}
.y17{bottom:435.600000px;}
.y26{bottom:435.600083px;}
.y49{bottom:463.680039px;}
.y69{bottom:463.860077px;}
.y16{bottom:464.220000px;}
.y25{bottom:464.220085px;}
.y48{bottom:492.300041px;}
.y15{bottom:492.660000px;}
.y24{bottom:492.660049px;}
.y47{bottom:520.740074px;}
.y68{bottom:520.920043px;}
.y14{bottom:521.280000px;}
.y60{bottom:521.280052px;}
.y46{bottom:549.360077px;}
.y13{bottom:549.720000px;}
.y23{bottom:549.720085px;}
.y45{bottom:577.800041px;}
.y67{bottom:577.980079px;}
.y12{bottom:578.340000px;}
.y73{bottom:578.340088px;}
.y44{bottom:606.420043px;}
.y11{bottom:606.780000px;}
.y5f{bottom:606.780052px;}
.y43{bottom:634.860077px;}
.y66{bottom:635.040047px;}
.y10{bottom:635.400000px;}
.y22{bottom:635.400055px;}
.y42{bottom:663.480079px;}
.y5e{bottom:663.840088px;}
.y41{bottom:691.920078px;}
.y65{bottom:692.100083px;}
.yf{bottom:692.460000px;}
.y5d{bottom:692.460056px;}
.y40{bottom:720.540081px;}
.ye{bottom:720.900000px;}
.y5c{bottom:720.900055px;}
.y3f{bottom:748.980079px;}
.y64{bottom:749.160049px;}
.yd{bottom:749.520000px;}
.y5b{bottom:749.520058px;}
.y63{bottom:777.600083px;}
.yc{bottom:777.960000px;}
.y5a{bottom:777.960056px;}
.y3e{bottom:806.040081px;}
.y62{bottom:806.220051px;}
.y3d{bottom:834.660049px;}
.y59{bottom:835.020058px;}
.y3c{bottom:863.280052px;}
.yb{bottom:863.640000px;}
.y58{bottom:863.640060px;}
.y3b{bottom:891.720051px;}
.ya{bottom:892.080000px;}
.y57{bottom:892.080059px;}
.y3a{bottom:920.340054px;}
.y9{bottom:920.700000px;}
.y72{bottom:920.700061px;}
.y39{bottom:948.780053px;}
.y8{bottom:949.140000px;}
.y56{bottom:949.140060px;}
.y38{bottom:977.400072px;}
.y7{bottom:977.760000px;}
.y71{bottom:977.760064px;}
.y37{bottom:1005.840070px;}
.y55{bottom:1006.200061px;}
.y36{bottom:1034.460074px;}
.y6{bottom:1034.820000px;}
.y21{bottom:1034.820065px;}
.y35{bottom:1062.900072px;}
.y5{bottom:1063.260000px;}
.y54{bottom:1063.260064px;}
.y34{bottom:1091.520058px;}
.y20{bottom:1091.880066px;}
.y1d{bottom:1097.460150px;}
.y33{bottom:1119.960065px;}
.y4{bottom:1120.320000px;}
.y53{bottom:1120.320065px;}
.y32{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y1f{bottom:1148.940067px;}
.hc{height:44.025626px;}
.h3{height:44.027189px;}
.he{height:55.032267px;}
.h6{height:55.303923px;}
.h7{height:57.534328px;}
.h2{height:57.535781px;}
.h8{height:64.414315px;}
.h9{height:65.992187px;}
.hb{height:66.038595px;}
.h5{height:66.039220px;}
.hd{height:70.346938px;}
.ha{height:84.416166px;}
.h4{height:84.416966px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x9{left:97.020000px;}
.x8{left:99.360000px;}
.x6{left:133.740000px;}
.xe{left:140.939999px;}
.x3{left:146.520000px;}
.x16{left:147.599997px;}
.x18{left:157.500000px;}
.xb{left:159.840000px;}
.x15{left:174.240006px;}
.x19{left:193.139992px;}
.x5{left:205.920000px;}
.x1b{left:215.639992px;}
.x7{left:217.260000px;}
.x11{left:224.639992px;}
.xd{left:257.940000px;}
.x4{left:268.740000px;}
.x1c{left:279.180005px;}
.x14{left:299.879998px;}
.x17{left:305.459988px;}
.xa{left:319.860000px;}
.x12{left:323.459988px;}
.xc{left:369.000000px;}
.x13{left:370.800007px;}
.x10{left:389.160015px;}
.xf{left:410.939999px;}
.x1a{left:508.860008px;}
.x1{left:533.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.083823pt;}
.ls2{letter-spacing:1.689664pt;}
.ws3{word-spacing:-84.567023pt;}
.ws4{word-spacing:-84.483200pt;}
.ws1{word-spacing:-70.404000pt;}
.ws0{word-spacing:-21.121000pt;}
.ws5{word-spacing:-21.120800pt;}
.ws6{word-spacing:-14.080500pt;}
.ws2{word-spacing:0.000000pt;}
._1c{margin-left:-21.628243pt;}
._7{margin-left:-11.131215pt;}
._9{margin-left:-9.702966pt;}
._14{margin-left:-8.515334pt;}
._5{margin-left:-7.460529pt;}
._3{margin-left:-6.437184pt;}
._6{margin-left:-5.443246pt;}
._2{margin-left:-4.393252pt;}
._8{margin-left:-3.316940pt;}
._1{margin-left:-2.106584pt;}
._4{margin-left:-0.946785pt;}
._0{width:0.932084pt;}
._b{width:2.281237pt;}
._c{width:3.337230pt;}
._d{width:4.295673pt;}
._f{width:5.239677pt;}
._e{width:6.835501pt;}
._11{width:8.450992pt;}
._15{width:10.154380pt;}
._13{width:11.046623pt;}
._12{width:11.990885pt;}
._16{width:13.258133pt;}
._1a{width:14.197854pt;}
._1b{width:15.246305pt;}
._22{width:16.187146pt;}
._24{width:17.389332pt;}
._25{width:18.459317pt;}
._a{width:22.810596pt;}
._26{width:142.451801pt;}
._23{width:223.969668pt;}
._21{width:232.319204pt;}
._27{width:308.818597pt;}
._17{width:595.806425pt;}
._1f{width:869.333422pt;}
._20{width:881.151974pt;}
._1d{width:1007.964142pt;}
._18{width:1173.727103pt;}
._1e{width:1509.279018pt;}
._19{width:1511.198938pt;}
._10{width:1537.438930pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs7{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y1e{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y31{bottom:36.480103pt;}
.y52{bottom:107.840088pt;}
.y30{bottom:108.320069pt;}
.y51{bottom:133.280030pt;}
.y2f{bottom:133.600037pt;}
.y50{bottom:158.560059pt;}
.y6f{bottom:158.720032pt;}
.y2e{bottom:159.040039pt;}
.y4f{bottom:184.000061pt;}
.y2d{bottom:184.320069pt;}
.y4e{bottom:209.280030pt;}
.y74{bottom:209.440064pt;}
.y2c{bottom:209.760071pt;}
.y1c{bottom:209.760133pt;}
.y6e{bottom:234.720032pt;}
.y2b{bottom:235.040039pt;}
.y1b{bottom:235.040133pt;}
.y4d{bottom:260.000061pt;}
.y6d{bottom:260.160035pt;}
.y2a{bottom:260.480042pt;}
.y6c{bottom:285.440064pt;}
.y29{bottom:285.760071pt;}
.y1a{bottom:285.760133pt;}
.y70{bottom:310.720032pt;}
.y6b{bottom:310.880066pt;}
.y61{bottom:311.200074pt;}
.y19{bottom:311.200133pt;}
.y4c{bottom:336.160035pt;}
.y28{bottom:336.480042pt;}
.y4b{bottom:361.440064pt;}
.y6a{bottom:361.600037pt;}
.y18{bottom:361.920000pt;}
.y27{bottom:361.920044pt;}
.y4a{bottom:386.880066pt;}
.y17{bottom:387.200000pt;}
.y26{bottom:387.200074pt;}
.y49{bottom:412.160035pt;}
.y69{bottom:412.320069pt;}
.y16{bottom:412.640000pt;}
.y25{bottom:412.640076pt;}
.y48{bottom:437.600037pt;}
.y15{bottom:437.920000pt;}
.y24{bottom:437.920044pt;}
.y47{bottom:462.880066pt;}
.y68{bottom:463.040039pt;}
.y14{bottom:463.360000pt;}
.y60{bottom:463.360047pt;}
.y46{bottom:488.320069pt;}
.y13{bottom:488.640000pt;}
.y23{bottom:488.640076pt;}
.y45{bottom:513.600037pt;}
.y67{bottom:513.760071pt;}
.y12{bottom:514.080000pt;}
.y73{bottom:514.080079pt;}
.y44{bottom:539.040039pt;}
.y11{bottom:539.360000pt;}
.y5f{bottom:539.360047pt;}
.y43{bottom:564.320069pt;}
.y66{bottom:564.480042pt;}
.y10{bottom:564.800000pt;}
.y22{bottom:564.800049pt;}
.y42{bottom:589.760071pt;}
.y5e{bottom:590.080079pt;}
.y41{bottom:615.040070pt;}
.y65{bottom:615.200074pt;}
.yf{bottom:615.520000pt;}
.y5d{bottom:615.520050pt;}
.y40{bottom:640.480072pt;}
.ye{bottom:640.800000pt;}
.y5c{bottom:640.800049pt;}
.y3f{bottom:665.760071pt;}
.y64{bottom:665.920044pt;}
.yd{bottom:666.240000pt;}
.y5b{bottom:666.240052pt;}
.y63{bottom:691.200074pt;}
.yc{bottom:691.520000pt;}
.y5a{bottom:691.520050pt;}
.y3e{bottom:716.480072pt;}
.y62{bottom:716.640046pt;}
.y3d{bottom:741.920044pt;}
.y59{bottom:742.240052pt;}
.y3c{bottom:767.360047pt;}
.yb{bottom:767.680000pt;}
.y58{bottom:767.680054pt;}
.y3b{bottom:792.640046pt;}
.ya{bottom:792.960000pt;}
.y57{bottom:792.960053pt;}
.y3a{bottom:818.080048pt;}
.y9{bottom:818.400000pt;}
.y72{bottom:818.400055pt;}
.y39{bottom:843.360047pt;}
.y8{bottom:843.680000pt;}
.y56{bottom:843.680054pt;}
.y38{bottom:868.800064pt;}
.y7{bottom:869.120000pt;}
.y71{bottom:869.120057pt;}
.y37{bottom:894.080063pt;}
.y55{bottom:894.400055pt;}
.y36{bottom:919.520066pt;}
.y6{bottom:919.840000pt;}
.y21{bottom:919.840058pt;}
.y35{bottom:944.800064pt;}
.y5{bottom:945.120000pt;}
.y54{bottom:945.120057pt;}
.y34{bottom:970.240052pt;}
.y20{bottom:970.560059pt;}
.y1d{bottom:975.520133pt;}
.y33{bottom:995.520058pt;}
.y4{bottom:995.840000pt;}
.y53{bottom:995.840058pt;}
.y32{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y1f{bottom:1021.280060pt;}
.hc{height:39.133890pt;}
.h3{height:39.135279pt;}
.he{height:48.917571pt;}
.h6{height:49.159043pt;}
.h7{height:51.141625pt;}
.h2{height:51.142916pt;}
.h8{height:57.257169pt;}
.h9{height:58.659722pt;}
.hb{height:58.700973pt;}
.h5{height:58.701529pt;}
.hd{height:62.530612pt;}
.ha{height:75.036592pt;}
.h4{height:75.037303pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x9{left:86.240000pt;}
.x8{left:88.320000pt;}
.x6{left:118.880000pt;}
.xe{left:125.279999pt;}
.x3{left:130.240000pt;}
.x16{left:131.199997pt;}
.x18{left:140.000000pt;}
.xb{left:142.080000pt;}
.x15{left:154.880005pt;}
.x19{left:171.679993pt;}
.x5{left:183.040000pt;}
.x1b{left:191.679993pt;}
.x7{left:193.120000pt;}
.x11{left:199.679993pt;}
.xd{left:229.280000pt;}
.x4{left:238.880000pt;}
.x1c{left:248.160004pt;}
.x14{left:266.559998pt;}
.x17{left:271.519989pt;}
.xa{left:284.320000pt;}
.x12{left:287.519989pt;}
.xc{left:328.000000pt;}
.x13{left:329.600006pt;}
.x10{left:345.920013pt;}
.xf{left:365.279999pt;}
.x1a{left:452.320007pt;}
.x1{left:474.080000pt;}
}




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