
    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_0c2c4f03c9472f0d5450ef0a.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_ddcc2ab3de362853dca05927.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_73a45bbb7364286f92e7ebf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_468f6d1a09fd46f597875bed.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_54a0d1ced176d5fcbabbe64e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.819824;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_7bc82c49d230fb469a0939d9.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.239870px;}
.ls0{letter-spacing:0.000000px;}
.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.203150px;}
.ws0{word-spacing:-23.760900px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-10.644883px;}
._17{margin-left:-9.544642px;}
._6{margin-left:-7.940224px;}
._4{margin-left:-6.272878px;}
._5{margin-left:-5.215982px;}
._2{margin-left:-3.979579px;}
._7{margin-left:-2.901615px;}
._3{margin-left:-1.707815px;}
._0{width:1.064507px;}
._9{width:2.198440px;}
._10{width:3.374141px;}
._e{width:4.401521px;}
._d{width:6.201595px;}
._c{width:7.559308px;}
._11{width:9.038238px;}
._12{width:10.169665px;}
._a{width:11.370240px;}
._8{width:12.922124px;}
._f{width:14.277146px;}
._15{width:16.012711px;}
._14{width:214.546522px;}
._13{width:308.891700px;}
._16{width:751.046229px;}
._18{width:1404.018270px;}
._1{width:1663.872901px;}
.fc1{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs2{font-size:95.043600px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.800110px;}
.y1d{bottom:58.860077px;}
.y1b{bottom:121.860077px;}
.y3f{bottom:149.940033px;}
.y38{bottom:154.620072px;}
.y1a{bottom:178.920043px;}
.y37{bottom:207.000068px;}
.y19{bottom:207.360077px;}
.y36{bottom:235.620072px;}
.y18{bottom:235.980079px;}
.y35{bottom:264.060036px;}
.y17{bottom:264.420043px;}
.y34{bottom:292.680039px;}
.y16{bottom:293.040047px;}
.y33{bottom:321.120072px;}
.y15{bottom:321.480079px;}
.y51{bottom:335.340088px;}
.y32{bottom:349.740074px;}
.y50{bottom:363.960091px;}
.y31{bottom:378.180039px;}
.y14{bottom:378.540047px;}
.y69{bottom:390.420043px;}
.y4f{bottom:392.400055px;}
.y30{bottom:406.800041px;}
.y68{bottom:419.040047px;}
.y2f{bottom:435.240074px;}
.y13{bottom:435.600083px;}
.y67{bottom:447.480079px;}
.y4e{bottom:449.460091px;}
.y2e{bottom:463.860077px;}
.y12{bottom:464.220085px;}
.y66{bottom:476.100083px;}
.y4d{bottom:478.080093px;}
.y2d{bottom:492.300041px;}
.y11{bottom:492.660049px;}
.y65{bottom:504.540047px;}
.y2c{bottom:520.920043px;}
.y10{bottom:521.280052px;}
.y4c{bottom:535.140060px;}
.y3e{bottom:549.360077px;}
.y64{bottom:561.600083px;}
.y2b{bottom:577.980079px;}
.yf{bottom:578.340088px;}
.y63{bottom:590.220085px;}
.y4b{bottom:592.200096px;}
.y2a{bottom:606.420043px;}
.ye{bottom:606.780052px;}
.y62{bottom:618.660049px;}
.y61{bottom:647.280052px;}
.y29{bottom:663.480079px;}
.y60{bottom:675.720085px;}
.y3d{bottom:692.100083px;}
.yd{bottom:692.460056px;}
.y5f{bottom:704.340054px;}
.y3c{bottom:720.540081px;}
.y5e{bottom:732.780052px;}
.y28{bottom:749.160049px;}
.y5d{bottom:761.400055px;}
.y4a{bottom:763.380066px;}
.y27{bottom:777.600083px;}
.yc{bottom:777.960056px;}
.y5c{bottom:789.840054px;}
.y49{bottom:791.820065px;}
.y26{bottom:806.220051px;}
.yb{bottom:806.580059px;}
.y48{bottom:820.440067px;}
.y25{bottom:834.660049px;}
.ya{bottom:835.020058px;}
.y5b{bottom:846.900055px;}
.y24{bottom:863.280052px;}
.y9{bottom:863.640060px;}
.y5a{bottom:870.660049px;}
.y47{bottom:877.500068px;}
.y8{bottom:892.080059px;}
.y59{bottom:894.420078px;}
.y46{bottom:901.260064px;}
.y58{bottom:918.180073px;}
.y23{bottom:920.340054px;}
.y7{bottom:920.700061px;}
.y45{bottom:925.020058px;}
.y57{bottom:942.120072px;}
.y22{bottom:948.780053px;}
.y56{bottom:965.880066px;}
.y44{bottom:972.540081px;}
.y3b{bottom:977.400072px;}
.y6{bottom:977.760064px;}
.y43{bottom:996.300058px;}
.y3a{bottom:1005.840070px;}
.y5{bottom:1006.200061px;}
.y55{bottom:1018.080059px;}
.y42{bottom:1020.060070px;}
.y39{bottom:1034.460074px;}
.y1c{bottom:1043.280069px;}
.y41{bottom:1044.000068px;}
.y21{bottom:1062.900072px;}
.y4{bottom:1063.260064px;}
.y40{bottom:1067.760064px;}
.y20{bottom:1091.520058px;}
.y3{bottom:1091.880066px;}
.y54{bottom:1103.760064px;}
.y1f{bottom:1119.960065px;}
.y53{bottom:1127.520066px;}
.y1e{bottom:1148.580068px;}
.y2{bottom:1148.940067px;}
.y52{bottom:1151.280069px;}
.h6{height:55.302981px;}
.h8{height:55.596662px;}
.h7{height:57.534328px;}
.h3{height:64.414315px;}
.h9{height:65.992187px;}
.h2{height:67.836531px;}
.ha{height:69.496123px;}
.h5{height:83.395190px;}
.h4{height:84.416166px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:89.819996px;}
.x1{left:140.939999px;}
.x8{left:162.000000px;}
.x11{left:172.979994px;}
.x19{left:186.840002px;}
.x4{left:207.180005px;}
.x7{left:210.240006px;}
.xc{left:223.560001px;}
.x18{left:228.599997px;}
.x3{left:257.219999px;}
.x6{left:264.780001px;}
.x5{left:301.860008px;}
.xe{left:306.360008px;}
.x17{left:313.740006px;}
.x2{left:331.560001px;}
.xa{left:350.819996px;}
.xb{left:355.139992px;}
.x15{left:360.360008px;}
.x1a{left:362.339985px;}
.x1c{left:364.319996px;}
.x9{left:367.740006px;}
.x13{left:394.920010px;}
.x16{left:396.899987px;}
.x1b{left:447.480011px;}
.xf{left:532.800007px;}
.x12{left:694.620002px;}
.xd{left:797.220017px;}
.x14{left:803.159981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.879884pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-70.402800pt;}
.ws0{word-spacing:-21.120800pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-9.462118pt;}
._17{margin-left:-8.484127pt;}
._6{margin-left:-7.057977pt;}
._4{margin-left:-5.575891pt;}
._5{margin-left:-4.636428pt;}
._2{margin-left:-3.537404pt;}
._7{margin-left:-2.579213pt;}
._3{margin-left:-1.518058pt;}
._0{width:0.946228pt;}
._9{width:1.954169pt;}
._10{width:2.999236pt;}
._e{width:3.912463pt;}
._d{width:5.512529pt;}
._c{width:6.719384pt;}
._11{width:8.033989pt;}
._12{width:9.039702pt;}
._a{width:10.106880pt;}
._8{width:11.486333pt;}
._f{width:12.690796pt;}
._15{width:14.233521pt;}
._14{width:190.708020pt;}
._13{width:274.570400pt;}
._16{width:667.596648pt;}
._18{width:1248.016240pt;}
._1{width:1478.998134pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs2{font-size:84.483200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.600098pt;}
.y1d{bottom:52.320069pt;}
.y1b{bottom:108.320069pt;}
.y3f{bottom:133.280030pt;}
.y38{bottom:137.440064pt;}
.y1a{bottom:159.040039pt;}
.y37{bottom:184.000061pt;}
.y19{bottom:184.320069pt;}
.y36{bottom:209.440064pt;}
.y18{bottom:209.760071pt;}
.y35{bottom:234.720032pt;}
.y17{bottom:235.040039pt;}
.y34{bottom:260.160035pt;}
.y16{bottom:260.480042pt;}
.y33{bottom:285.440064pt;}
.y15{bottom:285.760071pt;}
.y51{bottom:298.080079pt;}
.y32{bottom:310.880066pt;}
.y50{bottom:323.520081pt;}
.y31{bottom:336.160035pt;}
.y14{bottom:336.480042pt;}
.y69{bottom:347.040039pt;}
.y4f{bottom:348.800049pt;}
.y30{bottom:361.600037pt;}
.y68{bottom:372.480042pt;}
.y2f{bottom:386.880066pt;}
.y13{bottom:387.200074pt;}
.y67{bottom:397.760071pt;}
.y4e{bottom:399.520081pt;}
.y2e{bottom:412.320069pt;}
.y12{bottom:412.640076pt;}
.y66{bottom:423.200074pt;}
.y4d{bottom:424.960083pt;}
.y2d{bottom:437.600037pt;}
.y11{bottom:437.920044pt;}
.y65{bottom:448.480042pt;}
.y2c{bottom:463.040039pt;}
.y10{bottom:463.360047pt;}
.y4c{bottom:475.680054pt;}
.y3e{bottom:488.320069pt;}
.y64{bottom:499.200074pt;}
.y2b{bottom:513.760071pt;}
.yf{bottom:514.080079pt;}
.y63{bottom:524.640076pt;}
.y4b{bottom:526.400086pt;}
.y2a{bottom:539.040039pt;}
.ye{bottom:539.360047pt;}
.y62{bottom:549.920044pt;}
.y61{bottom:575.360047pt;}
.y29{bottom:589.760071pt;}
.y60{bottom:600.640076pt;}
.y3d{bottom:615.200074pt;}
.yd{bottom:615.520050pt;}
.y5f{bottom:626.080048pt;}
.y3c{bottom:640.480072pt;}
.y5e{bottom:651.360047pt;}
.y28{bottom:665.920044pt;}
.y5d{bottom:676.800049pt;}
.y4a{bottom:678.560059pt;}
.y27{bottom:691.200074pt;}
.yc{bottom:691.520050pt;}
.y5c{bottom:702.080048pt;}
.y49{bottom:703.840058pt;}
.y26{bottom:716.640046pt;}
.yb{bottom:716.960053pt;}
.y48{bottom:729.280060pt;}
.y25{bottom:741.920044pt;}
.ya{bottom:742.240052pt;}
.y5b{bottom:752.800049pt;}
.y24{bottom:767.360047pt;}
.y9{bottom:767.680054pt;}
.y5a{bottom:773.920044pt;}
.y47{bottom:780.000061pt;}
.y8{bottom:792.960053pt;}
.y59{bottom:795.040070pt;}
.y46{bottom:801.120057pt;}
.y58{bottom:816.160065pt;}
.y23{bottom:818.080048pt;}
.y7{bottom:818.400055pt;}
.y45{bottom:822.240052pt;}
.y57{bottom:837.440064pt;}
.y22{bottom:843.360047pt;}
.y56{bottom:858.560059pt;}
.y44{bottom:864.480072pt;}
.y3b{bottom:868.800064pt;}
.y6{bottom:869.120057pt;}
.y43{bottom:885.600052pt;}
.y3a{bottom:894.080063pt;}
.y5{bottom:894.400055pt;}
.y55{bottom:904.960053pt;}
.y42{bottom:906.720063pt;}
.y39{bottom:919.520066pt;}
.y1c{bottom:927.360062pt;}
.y41{bottom:928.000061pt;}
.y21{bottom:944.800064pt;}
.y4{bottom:945.120057pt;}
.y40{bottom:949.120057pt;}
.y20{bottom:970.240052pt;}
.y3{bottom:970.560059pt;}
.y54{bottom:981.120057pt;}
.y1f{bottom:995.520058pt;}
.y53{bottom:1002.240059pt;}
.y1e{bottom:1020.960061pt;}
.y2{bottom:1021.280060pt;}
.y52{bottom:1023.360062pt;}
.h6{height:49.158205pt;}
.h8{height:49.419255pt;}
.h7{height:51.141625pt;}
.h3{height:57.257169pt;}
.h9{height:58.659722pt;}
.h2{height:60.299139pt;}
.ha{height:61.774332pt;}
.h5{height:74.129058pt;}
.h4{height:75.036592pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:79.839996pt;}
.x1{left:125.279999pt;}
.x8{left:144.000000pt;}
.x11{left:153.759995pt;}
.x19{left:166.080002pt;}
.x4{left:184.160004pt;}
.x7{left:186.880005pt;}
.xc{left:198.720001pt;}
.x18{left:203.199997pt;}
.x3{left:228.639999pt;}
.x6{left:235.360001pt;}
.x5{left:268.320007pt;}
.xe{left:272.320007pt;}
.x17{left:278.880005pt;}
.x2{left:294.720001pt;}
.xa{left:311.839996pt;}
.xb{left:315.679993pt;}
.x15{left:320.320007pt;}
.x1a{left:322.079987pt;}
.x1c{left:323.839996pt;}
.x9{left:326.880005pt;}
.x13{left:351.040009pt;}
.x16{left:352.799988pt;}
.x1b{left:397.760010pt;}
.xf{left:473.600006pt;}
.x12{left:617.440002pt;}
.xd{left:708.640015pt;}
.x14{left:713.919983pt;}
}




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