
    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_20a7143d3cbd2a37efe66d5e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_fcdcf046ccb4d1c53a515bb8.woff')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_b5386c1829ac54495454aac1.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9bedec195a6b053d644f584f.woff')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_2fc52fba2ae1ff52a26f23db.woff')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_a08142c5c4f85b2731a1590d.woff')format("woff");}.ff6{font-family:ff6;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;}
.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:20.491259px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:955.804980px;}
.ls1{letter-spacing:961.310055px;}
.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:-29.999999px;}
.ws4{word-spacing:-27.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws1{word-spacing:-8.100000px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-4.777512px;}
._15{margin-left:-3.414768px;}
._0{margin-left:-2.270986px;}
._f{margin-left:-1.004137px;}
._b{width:4.370736px;}
._12{width:5.409962px;}
._c{width:8.903167px;}
._14{width:9.933253px;}
._e{width:13.430540px;}
._11{width:17.174398px;}
._a{width:18.184935px;}
._9{width:22.374647px;}
._8{width:26.952580px;}
._d{width:31.368058px;}
._10{width:76.500000px;}
._1{width:91.678853px;}
._2{width:201.000000px;}
._3{width:381.000000px;}
._5{width:457.188105px;}
._4{width:549.671700px;}
._6{width:558.691635px;}
._7{width:643.037115px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.399999px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.999999px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:101.999997px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.055359px;}
.y38{bottom:56.920164px;}
.y6b{bottom:57.244623px;}
.y37{bottom:72.443844px;}
.y6a{bottom:74.493168px;}
.y36{bottom:117.991019px;}
.y35{bottom:133.802182px;}
.y34{bottom:149.613337px;}
.y33{bottom:165.424495px;}
.y69{bottom:169.318212px;}
.y32{bottom:181.235651px;}
.y68{bottom:183.936255px;}
.y67{bottom:198.554479px;}
.y31{bottom:205.296817px;}
.y30{bottom:221.107961px;}
.y66{bottom:222.172710px;}
.y65{bottom:236.790754px;}
.y2f{bottom:236.919127px;}
.y2e{bottom:252.730291px;}
.y64{bottom:260.408795px;}
.y2d{bottom:268.541437px;}
.y63{bottom:275.027007px;}
.y2c{bottom:284.352600px;}
.y62{bottom:289.645230px;}
.y2b{bottom:300.163763px;}
.y61{bottom:304.263274px;}
.y2a{bottom:315.974926px;}
.y60{bottom:329.025143px;}
.y29{bottom:331.786080px;}
.y28{bottom:347.597235px;}
.y27{bottom:363.408389px;}
.y5f{bottom:367.723388px;}
.y26{bottom:379.219552px;}
.y25{bottom:395.030707px;}
.y5e{bottom:405.772698px;}
.y24{bottom:410.841865px;}
.y5d{bottom:423.021239px;}
.y23{bottom:426.653021px;}
.y5c{bottom:440.269775px;}
.y22{bottom:451.633477px;}
.y5b{bottom:457.518310px;}
.y5a{bottom:474.766845px;}
.y21{bottom:489.412417px;}
.y59{bottom:492.015380px;}
.y20{bottom:505.223560px;}
.y58{bottom:509.263916px;}
.y1f{bottom:521.034727px;}
.y57{bottom:526.512448px;}
.y1e{bottom:536.845891px;}
.y56{bottom:543.760983px;}
.y1d{bottom:552.657037px;}
.y55{bottom:561.009528px;}
.y1c{bottom:568.468200px;}
.y54{bottom:578.906977px;}
.y1b{bottom:584.279362px;}
.y1a{bottom:600.090525px;}
.y19{bottom:615.901679px;}
.y53{bottom:616.685926px;}
.y18{bottom:631.712834px;}
.y52{bottom:632.497080px;}
.y17{bottom:647.523988px;}
.y51{bottom:648.308235px;}
.y16{bottom:663.335151px;}
.y50{bottom:664.119389px;}
.y15{bottom:679.146306px;}
.y4f{bottom:679.930552px;}
.y14{bottom:694.957464px;}
.y4e{bottom:695.741707px;}
.y13{bottom:710.768621px;}
.y4d{bottom:711.552865px;}
.y4c{bottom:727.364021px;}
.y12{bottom:743.674618px;}
.y4b{bottom:751.425181px;}
.y11{bottom:762.053156px;}
.y4a{bottom:767.236335px;}
.y10{bottom:777.864326px;}
.y49{bottom:783.047490px;}
.yf{bottom:793.675481px;}
.y48{bottom:798.858644px;}
.ye{bottom:809.486636px;}
.y47{bottom:814.669807px;}
.yd{bottom:825.297791px;}
.y46{bottom:830.480962px;}
.yc{bottom:841.108946px;}
.y45{bottom:846.292120px;}
.yb{bottom:856.920101px;}
.y44{bottom:862.103276px;}
.ya{bottom:872.731256px;}
.y43{bottom:887.083747px;}
.y9{bottom:888.542426px;}
.y8{bottom:904.353581px;}
.y6{bottom:917.190484px;}
.y42{bottom:924.862665px;}
.y5{bottom:936.407105px;}
.y41{bottom:940.673828px;}
.y4{bottom:952.218262px;}
.y40{bottom:956.484991px;}
.y3{bottom:968.029420px;}
.y3f{bottom:972.296145px;}
.y2{bottom:983.840576px;}
.y3e{bottom:988.107300px;}
.y3d{bottom:1003.918453px;}
.y3c{bottom:1019.729616px;}
.y1{bottom:1029.193361px;}
.y3b{bottom:1035.540771px;}
.y3a{bottom:1051.351930px;}
.y39{bottom:1067.163086px;}
.h5{height:16.242371px;}
.h8{height:37.520508px;}
.h2{height:41.074218px;}
.h4{height:41.660155px;}
.h3{height:41.689452px;}
.ha{height:43.003558px;}
.h9{height:43.003563px;}
.h6{height:49.289063px;}
.h1{height:69.826170px;}
.h7{height:108.000000px;}
.h0{height:1188.000000px;}
.w1{width:540.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:9.000000px;}
.x5{left:162.000000px;}
.xa{left:216.000000px;}
.x1{left:292.175071px;}
.x3{left:346.569471px;}
.x7{left:354.688864px;}
.x4{left:379.047026px;}
.x2{left:402.980614px;}
.x9{left:418.388389px;}
.xb{left:455.251466px;}
.x8{left:459.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.214453pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:849.604427pt;}
.ls1{letter-spacing:854.497827pt;}
.ws0{word-spacing:-26.666666pt;}
.ws4{word-spacing:-24.000000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1{word-spacing:-7.200000pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-4.246677pt;}
._15{margin-left:-3.035349pt;}
._0{margin-left:-2.018654pt;}
._f{margin-left:-0.892566pt;}
._b{width:3.885098pt;}
._12{width:4.808855pt;}
._c{width:7.913926pt;}
._14{width:8.829558pt;}
._e{width:11.938258pt;}
._11{width:15.266131pt;}
._a{width:16.164386pt;}
._9{width:19.888575pt;}
._8{width:23.957849pt;}
._d{width:27.882718pt;}
._10{width:68.000000pt;}
._1{width:81.492314pt;}
._2{width:178.666667pt;}
._3{width:338.666667pt;}
._5{width:406.389427pt;}
._4{width:488.597067pt;}
._6{width:496.614787pt;}
._7{width:571.588547pt;}
.fs4{font-size:28.799999pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333332pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:90.666664pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.715874pt;}
.y38{bottom:50.595702pt;}
.y6b{bottom:50.884110pt;}
.y37{bottom:64.394528pt;}
.y6a{bottom:66.216150pt;}
.y36{bottom:104.880906pt;}
.y35{bottom:118.935273pt;}
.y34{bottom:132.989633pt;}
.y33{bottom:147.043996pt;}
.y69{bottom:150.505077pt;}
.y32{bottom:161.098357pt;}
.y68{bottom:163.498893pt;}
.y67{bottom:176.492870pt;}
.y31{bottom:182.486060pt;}
.y30{bottom:196.540410pt;}
.y66{bottom:197.486853pt;}
.y65{bottom:210.480670pt;}
.y2f{bottom:210.594780pt;}
.y2e{bottom:224.649148pt;}
.y64{bottom:231.474484pt;}
.y2d{bottom:238.703500pt;}
.y63{bottom:244.468451pt;}
.y2c{bottom:252.757867pt;}
.y62{bottom:257.462427pt;}
.y2b{bottom:266.812234pt;}
.y61{bottom:270.456243pt;}
.y2a{bottom:280.866601pt;}
.y60{bottom:292.466793pt;}
.y29{bottom:294.920960pt;}
.y28{bottom:308.975320pt;}
.y27{bottom:323.029679pt;}
.y5f{bottom:326.865233pt;}
.y26{bottom:337.084046pt;}
.y25{bottom:351.138406pt;}
.y5e{bottom:360.686843pt;}
.y24{bottom:365.192769pt;}
.y5d{bottom:376.018879pt;}
.y23{bottom:379.247130pt;}
.y5c{bottom:391.350911pt;}
.y22{bottom:401.451979pt;}
.y5b{bottom:406.682942pt;}
.y5a{bottom:422.014973pt;}
.y21{bottom:435.033259pt;}
.y59{bottom:437.347004pt;}
.y20{bottom:449.087609pt;}
.y58{bottom:452.679036pt;}
.y1f{bottom:463.141979pt;}
.y57{bottom:468.011065pt;}
.y1e{bottom:477.196347pt;}
.y56{bottom:483.343096pt;}
.y1d{bottom:491.250699pt;}
.y55{bottom:498.675136pt;}
.y1c{bottom:505.305066pt;}
.y54{bottom:514.583980pt;}
.y1b{bottom:519.359433pt;}
.y1a{bottom:533.413800pt;}
.y19{bottom:547.468159pt;}
.y53{bottom:548.165268pt;}
.y18{bottom:561.522519pt;}
.y52{bottom:562.219627pt;}
.y17{bottom:575.576878pt;}
.y51{bottom:576.273987pt;}
.y16{bottom:589.631245pt;}
.y50{bottom:590.328346pt;}
.y15{bottom:603.685605pt;}
.y4f{bottom:604.382713pt;}
.y14{bottom:617.739968pt;}
.y4e{bottom:618.437073pt;}
.y13{bottom:631.794329pt;}
.y4d{bottom:632.491436pt;}
.y4c{bottom:646.545797pt;}
.y12{bottom:661.044105pt;}
.y4b{bottom:667.933494pt;}
.y11{bottom:677.380583pt;}
.y4a{bottom:681.987853pt;}
.y10{bottom:691.434956pt;}
.y49{bottom:696.042213pt;}
.yf{bottom:705.489316pt;}
.y48{bottom:710.096572pt;}
.ye{bottom:719.543676pt;}
.y47{bottom:724.150939pt;}
.yd{bottom:733.598036pt;}
.y46{bottom:738.205299pt;}
.yc{bottom:747.652396pt;}
.y45{bottom:752.259662pt;}
.yb{bottom:761.706756pt;}
.y44{bottom:766.314023pt;}
.ya{bottom:775.761116pt;}
.y43{bottom:788.518887pt;}
.y9{bottom:789.815490pt;}
.y8{bottom:803.869850pt;}
.y6{bottom:815.280431pt;}
.y42{bottom:822.100147pt;}
.y5{bottom:832.361871pt;}
.y41{bottom:836.154514pt;}
.y4{bottom:846.416232pt;}
.y40{bottom:850.208881pt;}
.y3{bottom:860.470595pt;}
.y3f{bottom:864.263240pt;}
.y2{bottom:874.524956pt;}
.y3e{bottom:878.317600pt;}
.y3d{bottom:892.371959pt;}
.y3c{bottom:906.426326pt;}
.y1{bottom:914.838543pt;}
.y3b{bottom:920.480686pt;}
.y3a{bottom:934.535049pt;}
.y39{bottom:948.589410pt;}
.h5{height:14.437663pt;}
.h8{height:33.351563pt;}
.h2{height:36.510416pt;}
.h4{height:37.031249pt;}
.h3{height:37.057291pt;}
.ha{height:38.225385pt;}
.h9{height:38.225390pt;}
.h6{height:43.812500pt;}
.h1{height:62.067707pt;}
.h7{height:96.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:480.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:8.000000pt;}
.x5{left:144.000000pt;}
.xa{left:192.000000pt;}
.x1{left:259.711174pt;}
.x3{left:308.061752pt;}
.x7{left:315.278990pt;}
.x4{left:336.930690pt;}
.x2{left:358.204990pt;}
.x9{left:371.900790pt;}
.xb{left:404.667970pt;}
.x8{left:408.000000pt;}
}




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