
    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_5940a83a7271a7832cfb31dd.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_bf92f235f74010b768d7c6dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_35af638affd2a7ffc102d53b.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_5f2c063bcb7407bcc5bd5539.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9c2dee0091e57a9bbf4fcec2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d44684f7695d4ba24fcd7591.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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.240000px;}
.v2{vertical-align:23.759856px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.015964px;}
.ls1{letter-spacing:2.159140px;}
.ls2{letter-spacing:2.159145px;}
.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:-79.204500px;}
.ws4{word-spacing:-23.776864px;}
.ws0{word-spacing:-23.761125px;}
.ws3{word-spacing:-23.760900px;}
.ws2{word-spacing:0.000000px;}
._10{margin-left:-11.975987px;}
._14{margin-left:-10.360080px;}
._13{margin-left:-8.240042px;}
._4{margin-left:-6.843204px;}
._2{margin-left:-5.623688px;}
._6{margin-left:-4.514424px;}
._5{margin-left:-2.853046px;}
._3{margin-left:-1.250976px;}
._0{width:1.048595px;}
._7{width:2.464851px;}
._c{width:3.596864px;}
._f{width:4.832633px;}
._e{width:6.526421px;}
._11{width:7.603275px;}
._12{width:9.020194px;}
._15{width:10.360708px;}
._b{width:11.583068px;}
._9{width:12.953621px;}
._8{width:13.971732px;}
._a{width:15.194508px;}
._d{width:28.513160px;}
._1{width:1695.543615px;}
.fc1{color:rgb(34,30,31);}
.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;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1c{bottom:55.800110px;}
.y1{bottom:55.800150px;}
.y1d{bottom:58.860077px;}
.y5c{bottom:121.320099px;}
.y4d{bottom:121.860077px;}
.y33{bottom:149.940033px;}
.y1a{bottom:150.300000px;}
.y4c{bottom:150.300041px;}
.y32{bottom:178.560036px;}
.y4b{bottom:178.920043px;}
.y31{bottom:207.000068px;}
.y19{bottom:207.360000px;}
.y4a{bottom:207.360077px;}
.y5b{bottom:235.620072px;}
.y18{bottom:235.980000px;}
.y49{bottom:235.980079px;}
.y30{bottom:264.060036px;}
.y17{bottom:264.420000px;}
.y48{bottom:264.420043px;}
.y2f{bottom:292.680039px;}
.y16{bottom:293.040000px;}
.y47{bottom:293.040047px;}
.y2e{bottom:321.120072px;}
.y46{bottom:321.480079px;}
.y2d{bottom:349.740074px;}
.y15{bottom:350.100150px;}
.y2c{bottom:378.180039px;}
.y45{bottom:378.540047px;}
.y14{bottom:378.540150px;}
.y2b{bottom:406.800041px;}
.y44{bottom:407.160049px;}
.y13{bottom:407.160150px;}
.y5a{bottom:435.240074px;}
.y43{bottom:435.600083px;}
.y2a{bottom:463.860077px;}
.y59{bottom:492.300041px;}
.y42{bottom:492.660049px;}
.y12{bottom:492.660150px;}
.y58{bottom:520.920043px;}
.y41{bottom:521.280052px;}
.y29{bottom:549.360077px;}
.y11{bottom:549.720150px;}
.y57{bottom:577.980079px;}
.y10{bottom:578.340150px;}
.y56{bottom:606.420043px;}
.y40{bottom:606.780052px;}
.yf{bottom:606.780150px;}
.y55{bottom:635.040047px;}
.ye{bottom:635.400150px;}
.y28{bottom:663.480079px;}
.y3f{bottom:663.840088px;}
.yd{bottom:663.840150px;}
.y54{bottom:692.100083px;}
.yc{bottom:692.460150px;}
.y27{bottom:720.540081px;}
.yb{bottom:720.900150px;}
.y53{bottom:749.160049px;}
.ya{bottom:749.520150px;}
.y26{bottom:777.600083px;}
.y3e{bottom:777.960056px;}
.y52{bottom:806.220051px;}
.y51{bottom:834.660049px;}
.y50{bottom:863.280052px;}
.y3d{bottom:863.640060px;}
.y25{bottom:891.720051px;}
.y3c{bottom:892.080059px;}
.y9{bottom:892.080150px;}
.y24{bottom:920.340054px;}
.y3b{bottom:920.700061px;}
.y8{bottom:920.700150px;}
.y23{bottom:948.780053px;}
.y3a{bottom:949.140060px;}
.y7{bottom:949.140150px;}
.y22{bottom:977.400072px;}
.y39{bottom:977.760064px;}
.y6{bottom:977.760150px;}
.y21{bottom:1005.840070px;}
.y38{bottom:1006.200061px;}
.y5{bottom:1006.200150px;}
.y20{bottom:1034.460074px;}
.y37{bottom:1034.820065px;}
.y4f{bottom:1062.900072px;}
.y36{bottom:1063.260064px;}
.y4{bottom:1063.260150px;}
.y4e{bottom:1091.520058px;}
.y35{bottom:1091.880066px;}
.y1b{bottom:1099.260000px;}
.y1f{bottom:1119.960065px;}
.y3{bottom:1120.320150px;}
.y1e{bottom:1148.580068px;}
.y34{bottom:1148.940067px;}
.y2{bottom:1148.940150px;}
.h7{height:55.303923px;}
.h9{height:55.596662px;}
.h8{height:57.534328px;}
.h5{height:64.414925px;}
.h6{height:65.992812px;}
.hc{height:67.836531px;}
.h2{height:67.838636px;}
.ha{height:83.395190px;}
.h4{height:83.395980px;}
.hb{height:84.416166px;}
.h3{height:84.416966px;}
.hd{height:107.155046px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:89.819996px;}
.x1{left:140.940000px;}
.x7{left:162.000000px;}
.xf{left:172.979994px;}
.x6{left:210.240000px;}
.x11{left:223.560001px;}
.x13{left:228.599997px;}
.x3{left:255.060000px;}
.x5{left:264.780000px;}
.x2{left:288.360000px;}
.x4{left:302.040000px;}
.xc{left:306.900000px;}
.x9{left:355.140000px;}
.x8{left:367.740000px;}
.x10{left:389.160015px;}
.x12{left:395.819996px;}
.xb{left:410.940000px;}
.xa{left:419.580000px;}
.xd{left:532.800007px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880000pt;}
.v2{vertical-align:21.119872pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.014191pt;}
.ls1{letter-spacing:1.919236pt;}
.ls2{letter-spacing:1.919240pt;}
.ws1{word-spacing:-70.404000pt;}
.ws4{word-spacing:-21.134991pt;}
.ws0{word-spacing:-21.121000pt;}
.ws3{word-spacing:-21.120800pt;}
.ws2{word-spacing:0.000000pt;}
._10{margin-left:-10.645322pt;}
._14{margin-left:-9.208960pt;}
._13{margin-left:-7.324482pt;}
._4{margin-left:-6.082848pt;}
._2{margin-left:-4.998834pt;}
._6{margin-left:-4.012821pt;}
._5{margin-left:-2.536041pt;}
._3{margin-left:-1.111978pt;}
._0{width:0.932084pt;}
._7{width:2.190979pt;}
._c{width:3.197212pt;}
._f{width:4.295673pt;}
._e{width:5.801263pt;}
._11{width:6.758467pt;}
._12{width:8.017950pt;}
._15{width:9.209518pt;}
._b{width:10.296061pt;}
._9{width:11.514330pt;}
._8{width:12.419317pt;}
._a{width:13.506229pt;}
._d{width:25.345031pt;}
._1{width:1507.149880pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:49.600098pt;}
.y1{bottom:49.600133pt;}
.y1d{bottom:52.320069pt;}
.y5c{bottom:107.840088pt;}
.y4d{bottom:108.320069pt;}
.y33{bottom:133.280030pt;}
.y1a{bottom:133.600000pt;}
.y4c{bottom:133.600037pt;}
.y32{bottom:158.720032pt;}
.y4b{bottom:159.040039pt;}
.y31{bottom:184.000061pt;}
.y19{bottom:184.320000pt;}
.y4a{bottom:184.320069pt;}
.y5b{bottom:209.440064pt;}
.y18{bottom:209.760000pt;}
.y49{bottom:209.760071pt;}
.y30{bottom:234.720032pt;}
.y17{bottom:235.040000pt;}
.y48{bottom:235.040039pt;}
.y2f{bottom:260.160035pt;}
.y16{bottom:260.480000pt;}
.y47{bottom:260.480042pt;}
.y2e{bottom:285.440064pt;}
.y46{bottom:285.760071pt;}
.y2d{bottom:310.880066pt;}
.y15{bottom:311.200133pt;}
.y2c{bottom:336.160035pt;}
.y45{bottom:336.480042pt;}
.y14{bottom:336.480133pt;}
.y2b{bottom:361.600037pt;}
.y44{bottom:361.920044pt;}
.y13{bottom:361.920133pt;}
.y5a{bottom:386.880066pt;}
.y43{bottom:387.200074pt;}
.y2a{bottom:412.320069pt;}
.y59{bottom:437.600037pt;}
.y42{bottom:437.920044pt;}
.y12{bottom:437.920133pt;}
.y58{bottom:463.040039pt;}
.y41{bottom:463.360047pt;}
.y29{bottom:488.320069pt;}
.y11{bottom:488.640133pt;}
.y57{bottom:513.760071pt;}
.y10{bottom:514.080133pt;}
.y56{bottom:539.040039pt;}
.y40{bottom:539.360047pt;}
.yf{bottom:539.360133pt;}
.y55{bottom:564.480042pt;}
.ye{bottom:564.800133pt;}
.y28{bottom:589.760071pt;}
.y3f{bottom:590.080079pt;}
.yd{bottom:590.080133pt;}
.y54{bottom:615.200074pt;}
.yc{bottom:615.520133pt;}
.y27{bottom:640.480072pt;}
.yb{bottom:640.800133pt;}
.y53{bottom:665.920044pt;}
.ya{bottom:666.240133pt;}
.y26{bottom:691.200074pt;}
.y3e{bottom:691.520050pt;}
.y52{bottom:716.640046pt;}
.y51{bottom:741.920044pt;}
.y50{bottom:767.360047pt;}
.y3d{bottom:767.680054pt;}
.y25{bottom:792.640046pt;}
.y3c{bottom:792.960053pt;}
.y9{bottom:792.960133pt;}
.y24{bottom:818.080048pt;}
.y3b{bottom:818.400055pt;}
.y8{bottom:818.400133pt;}
.y23{bottom:843.360047pt;}
.y3a{bottom:843.680054pt;}
.y7{bottom:843.680133pt;}
.y22{bottom:868.800064pt;}
.y39{bottom:869.120057pt;}
.y6{bottom:869.120133pt;}
.y21{bottom:894.080063pt;}
.y38{bottom:894.400055pt;}
.y5{bottom:894.400133pt;}
.y20{bottom:919.520066pt;}
.y37{bottom:919.840058pt;}
.y4f{bottom:944.800064pt;}
.y36{bottom:945.120057pt;}
.y4{bottom:945.120133pt;}
.y4e{bottom:970.240052pt;}
.y35{bottom:970.560059pt;}
.y1b{bottom:977.120000pt;}
.y1f{bottom:995.520058pt;}
.y3{bottom:995.840133pt;}
.y1e{bottom:1020.960061pt;}
.y34{bottom:1021.280060pt;}
.y2{bottom:1021.280133pt;}
.h7{height:49.159043pt;}
.h9{height:49.419255pt;}
.h8{height:51.141625pt;}
.h5{height:57.257711pt;}
.h6{height:58.660277pt;}
.hc{height:60.299139pt;}
.h2{height:60.301010pt;}
.ha{height:74.129058pt;}
.h4{height:74.129760pt;}
.hb{height:75.036592pt;}
.h3{height:75.037303pt;}
.hd{height:95.248930pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:79.839996pt;}
.x1{left:125.280000pt;}
.x7{left:144.000000pt;}
.xf{left:153.759995pt;}
.x6{left:186.880000pt;}
.x11{left:198.720001pt;}
.x13{left:203.199997pt;}
.x3{left:226.720000pt;}
.x5{left:235.360000pt;}
.x2{left:256.320000pt;}
.x4{left:268.480000pt;}
.xc{left:272.800000pt;}
.x9{left:315.680000pt;}
.x8{left:326.880000pt;}
.x10{left:345.920013pt;}
.x12{left:351.839996pt;}
.xb{left:365.280000pt;}
.xa{left:372.960000pt;}
.xd{left:473.600006pt;}
}




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