
    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_6d7b5f5c3966e371b77a95bd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_6a85b4fc5ab62d501aae8f3d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9f4af511d06a4a119e567c3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_65df7ea800274b47e760aa26.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:60.488192px;}
.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:-16.887938px;}
.ws1{word-spacing:0.000000px;}
._25{margin-left:-15.020237px;}
._6{margin-left:-6.443013px;}
._1f{margin-left:-5.404140px;}
._8{margin-left:-3.872087px;}
._5{margin-left:-2.862506px;}
._1{margin-left:-1.495902px;}
._0{width:1.126214px;}
._4{width:2.495985px;}
._e{width:4.301674px;}
._f{width:5.742427px;}
._22{width:7.389265px;}
._21{width:8.772492px;}
._7{width:10.132762px;}
._d{width:11.225465px;}
._a{width:12.832194px;}
._9{width:14.242600px;}
._b{width:15.437950px;}
._10{width:18.116799px;}
._30{width:21.825509px;}
._36{width:33.799624px;}
._1a{width:51.859162px;}
._1c{width:61.565504px;}
._34{width:63.759089px;}
._23{width:68.161299px;}
._3{width:80.983202px;}
._2{width:82.683342px;}
._35{width:99.620888px;}
._1e{width:102.803472px;}
._29{width:113.543145px;}
._32{width:124.670450px;}
._31{width:126.742389px;}
._17{width:158.187200px;}
._28{width:166.627474px;}
._15{width:191.446409px;}
._11{width:196.373465px;}
._2a{width:200.327617px;}
._14{width:207.530323px;}
._20{width:215.512248px;}
._1b{width:244.513586px;}
._27{width:252.700806px;}
._24{width:258.567517px;}
._1d{width:262.553070px;}
._19{width:266.808303px;}
._16{width:288.355200px;}
._18{width:299.504405px;}
._33{width:318.455311px;}
._13{width:333.290043px;}
._2c{width:337.275597px;}
._2b{width:349.853680px;}
._12{width:351.269100px;}
._2f{width:469.028424px;}
._2e{width:482.694988px;}
._2d{width:498.625854px;}
._c{width:795.084098px;}
._26{width:816.722295px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:67.551750px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.620002px;}
.y1{bottom:76.139992px;}
.y3a{bottom:107.460022px;}
.y59{bottom:110.519989px;}
.y39{bottom:126.899986px;}
.y58{bottom:141.299973px;}
.y38{bottom:146.340019px;}
.y37{bottom:165.779983px;}
.y57{bottom:171.899986px;}
.y36{bottom:185.399986px;}
.y56{bottom:191.340019px;}
.y35{bottom:216.000000px;}
.y55{bottom:222.120002px;}
.y34{bottom:235.440033px;}
.y54{bottom:241.740006px;}
.y33{bottom:266.220017px;}
.y53{bottom:272.519989px;}
.y52{bottom:291.960022px;}
.y32{bottom:297.000000px;}
.y51{bottom:322.559967px;}
.y31{bottom:327.600013px;}
.y50{bottom:353.340019px;}
.y30{bottom:358.379998px;}
.y4f{bottom:372.779983px;}
.y2f{bottom:389.159981px;}
.y4e{bottom:392.220017px;}
.y4d{bottom:411.659981px;}
.y2e{bottom:419.759994px;}
.y4c{bottom:431.100013px;}
.y2d{bottom:450.539977px;}
.y4b{bottom:461.700027px;}
.y2c{bottom:470.159981px;}
.y4a{bottom:492.659981px;}
.y2b{bottom:500.759994px;}
.y49{bottom:512.100013px;}
.y2a{bottom:531.539977px;}
.y29{bottom:550.980011px;}
.y48{bottom:562.320030px;}
.y6a{bottom:576.539977px;}
.y28{bottom:581.759994px;}
.y16{bottom:598.139992px;}
.y47{bottom:601.200027px;}
.y69{bottom:610.379998px;}
.y27{bottom:612.360008px;}
.y46{bottom:620.639992px;}
.y15{bottom:631.800007px;}
.y68{bottom:632.879998px;}
.y45{bottom:640.079990px;}
.y26{bottom:643.139992px;}
.y14{bottom:651.240006px;}
.y67{bottom:655.379998px;}
.y13{bottom:670.680004px;}
.y25{bottom:673.920010px;}
.y66{bottom:689.220017px;}
.y44{bottom:690.120002px;}
.y12{bottom:701.459988px;}
.y24{bottom:704.519989px;}
.y65{bottom:711.720017px;}
.y43{bottom:721.079990px;}
.y11{bottom:732.420010px;}
.y23{bottom:735.300007px;}
.y64{bottom:745.560001px;}
.y10{bottom:751.860008px;}
.y22{bottom:766.259994px;}
.yf{bottom:771.300007px;}
.y63{bottom:779.399986px;}
.y42{bottom:782.459988px;}
.y21{bottom:796.860008px;}
.ye{bottom:801.899986px;}
.y41{bottom:813.240006px;}
.y20{bottom:816.300007px;}
.y62{bottom:824.399986px;}
.yd{bottom:832.680004px;}
.y1f{bottom:835.740006px;}
.y40{bottom:844.019989px;}
.y61{bottom:846.899986px;}
.yc{bottom:852.120002px;}
.y1e{bottom:855.180004px;}
.yb{bottom:871.560001px;}
.y1d{bottom:874.620002px;}
.y60{bottom:880.740006px;}
.ya{bottom:891.000000px;}
.y3f{bottom:894.060001px;}
.y1c{bottom:905.400003px;}
.y9{bottom:910.439999px;}
.y3e{bottom:913.500000px;}
.y5f{bottom:914.580008px;}
.y1b{bottom:924.840002px;}
.y3d{bottom:932.939999px;}
.y8{bottom:941.219999px;}
.y1a{bottom:944.280001px;}
.y5e{bottom:948.419992px;}
.y3c{bottom:952.379998px;}
.y7{bottom:960.840002px;}
.y19{bottom:963.719999px;}
.y5d{bottom:970.919992px;}
.y3b{bottom:972.000000px;}
.y18{bottom:983.340002px;}
.y6{bottom:991.439999px;}
.y5c{bottom:993.419992px;}
.y17{bottom:1002.780001px;}
.y5b{bottom:1016.099997px;}
.y5{bottom:1022.219999px;}
.y5a{bottom:1038.599997px;}
.y4{bottom:1041.659998px;}
.y3{bottom:1072.439999px;}
.h2{height:47.167482px;}
.h4{height:49.179521px;}
.h3{height:55.677419px;}
.h1{height:58.547049px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:118.799998px;}
.x3{left:144.180005px;}
.x4{left:302.579990px;}
.x5{left:394.560001px;}
.x1{left:789.299973px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:53.767282pt;}
.ws0{word-spacing:-15.011500pt;}
.ws1{word-spacing:0.000000pt;}
._25{margin-left:-13.351322pt;}
._6{margin-left:-5.727123pt;}
._1f{margin-left:-4.803680pt;}
._8{margin-left:-3.441856pt;}
._5{margin-left:-2.544449pt;}
._1{margin-left:-1.329691pt;}
._0{width:1.001079pt;}
._4{width:2.218653pt;}
._e{width:3.823710pt;}
._f{width:5.104379pt;}
._22{width:6.568235pt;}
._21{width:7.797771pt;}
._7{width:9.006900pt;}
._d{width:9.978191pt;}
._a{width:11.406394pt;}
._9{width:12.660089pt;}
._b{width:13.722622pt;}
._10{width:16.103821pt;}
._30{width:19.400452pt;}
._36{width:30.044110pt;}
._1a{width:46.097033pt;}
._1c{width:54.724892pt;}
._34{width:56.674746pt;}
._23{width:60.587821pt;}
._3{width:71.985068pt;}
._2{width:73.496304pt;}
._35{width:88.551900pt;}
._1e{width:91.380864pt;}
._29{width:100.927240pt;}
._32{width:110.818178pt;}
._31{width:112.659901pt;}
._17{width:140.610844pt;}
._28{width:148.113310pt;}
._15{width:170.174586pt;}
._11{width:174.554191pt;}
._2a{width:178.068993pt;}
._14{width:184.471398pt;}
._20{width:191.566443pt;}
._1b{width:217.345410pt;}
._27{width:224.622938pt;}
._24{width:229.837793pt;}
._1d{width:233.380507pt;}
._19{width:237.162936pt;}
._16{width:256.315733pt;}
._18{width:266.226138pt;}
._33{width:283.071388pt;}
._13{width:296.257816pt;}
._2c{width:299.800530pt;}
._2b{width:310.981049pt;}
._12{width:312.239200pt;}
._2f{width:416.914155pt;}
._2e{width:429.062211pt;}
._2d{width:443.222981pt;}
._c{width:706.741420pt;}
._26{width:725.975373pt;}
.fs0{font-size:60.046000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.440002pt;}
.y1{bottom:67.679993pt;}
.y3a{bottom:95.520020pt;}
.y59{bottom:98.239990pt;}
.y39{bottom:112.799988pt;}
.y58{bottom:125.599976pt;}
.y38{bottom:130.080017pt;}
.y37{bottom:147.359985pt;}
.y57{bottom:152.799988pt;}
.y36{bottom:164.799988pt;}
.y56{bottom:170.080017pt;}
.y35{bottom:192.000000pt;}
.y55{bottom:197.440002pt;}
.y34{bottom:209.280029pt;}
.y54{bottom:214.880005pt;}
.y33{bottom:236.640015pt;}
.y53{bottom:242.239990pt;}
.y52{bottom:259.520020pt;}
.y32{bottom:264.000000pt;}
.y51{bottom:286.719971pt;}
.y31{bottom:291.200012pt;}
.y50{bottom:314.080017pt;}
.y30{bottom:318.559998pt;}
.y4f{bottom:331.359985pt;}
.y2f{bottom:345.919983pt;}
.y4e{bottom:348.640015pt;}
.y4d{bottom:365.919983pt;}
.y2e{bottom:373.119995pt;}
.y4c{bottom:383.200012pt;}
.y2d{bottom:400.479980pt;}
.y4b{bottom:410.400024pt;}
.y2c{bottom:417.919983pt;}
.y4a{bottom:437.919983pt;}
.y2b{bottom:445.119995pt;}
.y49{bottom:455.200012pt;}
.y2a{bottom:472.479980pt;}
.y29{bottom:489.760010pt;}
.y48{bottom:499.840027pt;}
.y6a{bottom:512.479980pt;}
.y28{bottom:517.119995pt;}
.y16{bottom:531.679993pt;}
.y47{bottom:534.400024pt;}
.y69{bottom:542.559998pt;}
.y27{bottom:544.320007pt;}
.y46{bottom:551.679993pt;}
.y15{bottom:561.600006pt;}
.y68{bottom:562.559998pt;}
.y45{bottom:568.959991pt;}
.y26{bottom:571.679993pt;}
.y14{bottom:578.880005pt;}
.y67{bottom:582.559998pt;}
.y13{bottom:596.160004pt;}
.y25{bottom:599.040009pt;}
.y66{bottom:612.640015pt;}
.y44{bottom:613.440002pt;}
.y12{bottom:623.519989pt;}
.y24{bottom:626.239990pt;}
.y65{bottom:632.640015pt;}
.y43{bottom:640.959991pt;}
.y11{bottom:651.040009pt;}
.y23{bottom:653.600006pt;}
.y64{bottom:662.720001pt;}
.y10{bottom:668.320007pt;}
.y22{bottom:681.119995pt;}
.yf{bottom:685.600006pt;}
.y63{bottom:692.799988pt;}
.y42{bottom:695.519989pt;}
.y21{bottom:708.320007pt;}
.ye{bottom:712.799988pt;}
.y41{bottom:722.880005pt;}
.y20{bottom:725.600006pt;}
.y62{bottom:732.799988pt;}
.yd{bottom:740.160004pt;}
.y1f{bottom:742.880005pt;}
.y40{bottom:750.239990pt;}
.y61{bottom:752.799988pt;}
.yc{bottom:757.440002pt;}
.y1e{bottom:760.160004pt;}
.yb{bottom:774.720001pt;}
.y1d{bottom:777.440002pt;}
.y60{bottom:782.880005pt;}
.ya{bottom:792.000000pt;}
.y3f{bottom:794.720001pt;}
.y1c{bottom:804.800003pt;}
.y9{bottom:809.279999pt;}
.y3e{bottom:812.000000pt;}
.y5f{bottom:812.960007pt;}
.y1b{bottom:822.080002pt;}
.y3d{bottom:829.279999pt;}
.y8{bottom:836.639999pt;}
.y1a{bottom:839.360001pt;}
.y5e{bottom:843.039993pt;}
.y3c{bottom:846.559998pt;}
.y7{bottom:854.080002pt;}
.y19{bottom:856.639999pt;}
.y5d{bottom:863.039993pt;}
.y3b{bottom:864.000000pt;}
.y18{bottom:874.080002pt;}
.y6{bottom:881.279999pt;}
.y5c{bottom:883.039993pt;}
.y17{bottom:891.360001pt;}
.y5b{bottom:903.199997pt;}
.y5{bottom:908.639999pt;}
.y5a{bottom:923.199997pt;}
.y4{bottom:925.919998pt;}
.y3{bottom:953.279999pt;}
.h2{height:41.926650pt;}
.h4{height:43.715130pt;}
.h3{height:49.491039pt;}
.h1{height:52.041821pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:105.599998pt;}
.x3{left:128.160004pt;}
.x4{left:268.959991pt;}
.x5{left:350.720001pt;}
.x1{left:701.599976pt;}
}




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