
    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_0f8eb2c0019a574b6a827b73.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_7c06eb1d3e7e630b48604344.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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_52bf4a65bf6bc17477502df9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_c4bbef63d68b692858daffa2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973145;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_51d7f7fb31de3ce4fe5070b3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_ed27ce919b84c1bfef2fd9e0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.029776px;}
.ls2{letter-spacing:0.029821px;}
.ls0{letter-spacing:107.986537px;}
.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:-66.480000px;}
.ws1{word-spacing:-42.504000px;}
.ws2{word-spacing:-0.168000px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-21.840000px;}
._4{margin-left:-17.760000px;}
._12{margin-left:-13.200000px;}
._1b{margin-left:-8.880000px;}
._1{margin-left:-5.808000px;}
._0{margin-left:-4.320000px;}
._1d{margin-left:-2.588684px;}
._15{width:1.045479px;}
._1a{width:2.445042px;}
._9{width:3.528000px;}
._10{width:7.392000px;}
._2{width:8.448000px;}
._1e{width:9.850746px;}
._a{width:11.327999px;}
._3{width:13.200001px;}
._c{width:17.976000px;}
._11{width:24.696000px;}
._19{width:33.264000px;}
._6{width:36.624000px;}
._13{width:46.368000px;}
._14{width:47.394244px;}
._b{width:50.064000px;}
._18{width:53.760000px;}
._f{width:56.112000px;}
._7{width:73.752000px;}
._16{width:75.096000px;}
._17{width:90.216000px;}
._5{width:107.993512px;}
._e{width:158.591999px;}
._8{width:226.967999px;}
._d{width:248.807999px;}
.fc2{color:transparent;}
.fc1{color:rgb(19,31,51);}
.fc0{color:rgb(255,95,5);}
.fs8{font-size:97.794606px;}
.fs7{font-size:115.053011px;}
.fs9{font-size:120.810595px;}
.fs6{font-size:143.815802px;}
.fsa{font-size:143.821814px;}
.fsb{font-size:156.000011px;}
.fs1{font-size:167.999999px;}
.fs5{font-size:174.000012px;}
.fs4{font-size:180.000006px;}
.fs0{font-size:240.000002px;}
.fs2{font-size:299.999998px;}
.fs3{font-size:528.000029px;}
.y0{bottom:0.000000px;}
.y69{bottom:129.269805px;}
.y68{bottom:176.069806px;}
.y4d{bottom:395.435656px;}
.y4c{bottom:427.535304px;}
.y4b{bottom:498.292665px;}
.y50{bottom:499.478044px;}
.y48{bottom:526.243122px;}
.y4a{bottom:534.534328px;}
.y4f{bottom:542.624585px;}
.y49{bottom:577.679067px;}
.y47{bottom:584.203169px;}
.y4e{bottom:584.390453px;}
.y46{bottom:658.723138px;}
.y45{bottom:716.683129px;}
.y44{bottom:791.203120px;}
.y43{bottom:849.163110px;}
.y42{bottom:923.683101px;}
.y41{bottom:981.643092px;}
.y40{bottom:1086.763073px;}
.y67{bottom:1115.357930px;}
.y66{bottom:1165.757920px;}
.y65{bottom:1216.157911px;}
.y64{bottom:1266.557912px;}
.y61{bottom:1316.148443px;}
.y63{bottom:1351.277919px;}
.y60{bottom:1374.108445px;}
.y24{bottom:1405.447571px;}
.y62{bottom:1423.277921px;}
.y5f{bottom:1432.068503px;}
.y23{bottom:1463.407572px;}
.y5e{bottom:1490.028527px;}
.y22{bottom:1521.367552px;}
.y5d{bottom:1547.988563px;}
.y21{bottom:1579.327542px;}
.y5c{bottom:1605.948564px;}
.y20{bottom:1637.287533px;}
.y5b{bottom:1663.908566px;}
.y17{bottom:1689.735305px;}
.y1f{bottom:1695.247524px;}
.y5a{bottom:1721.868613px;}
.y16{bottom:1740.135306px;}
.y1e{bottom:1753.207514px;}
.y59{bottom:1779.828638px;}
.y1d{bottom:1811.167505px;}
.y15{bottom:1820.535121px;}
.y58{bottom:1837.788684px;}
.y1c{bottom:1869.127495px;}
.y14{bottom:1900.935049px;}
.y57{bottom:1938.588688px;}
.y1b{bottom:1974.247476px;}
.y13{bottom:1981.334864px;}
.y56{bottom:1988.988667px;}
.y3f{bottom:2018.655053px;}
.y12{bottom:2031.734866px;}
.y3e{bottom:2069.054942px;}
.y11{bottom:2082.134755px;}
.y55{bottom:2089.788636px;}
.y3d{bottom:2119.454943px;}
.y10{bottom:2132.534644px;}
.y54{bottom:2140.188627px;}
.y3c{bottom:2169.854833px;}
.y53{bottom:2190.588617px;}
.yf{bottom:2212.934684px;}
.y3b{bottom:2220.254879px;}
.y52{bottom:2240.988607px;}
.y3a{bottom:2270.654948px;}
.ye{bottom:2293.334724px;}
.y39{bottom:2321.414837px;}
.yd{bottom:2343.734726px;}
.y51{bottom:2346.108588px;}
.yc{bottom:2419.694773px;}
.y38{bottom:2423.654953px;}
.y37{bottom:2474.054989px;}
.y36{bottom:2524.814923px;}
.yb{bottom:2538.494889px;}
.ya{bottom:2588.894958px;}
.y35{bottom:2627.054993px;}
.y9{bottom:2639.295005px;}
.y34{bottom:2677.455074px;}
.y8{bottom:2689.695074px;}
.y33{bottom:2727.855075px;}
.y7{bottom:2740.095053px;}
.y32{bottom:2778.615043px;}
.y2c{bottom:2805.255078px;}
.y6{bottom:2840.895023px;}
.y2b{bottom:2855.655057px;}
.y31{bottom:2880.855013px;}
.y5{bottom:2891.295013px;}
.y2a{bottom:2906.055036px;}
.y30{bottom:2931.255003px;}
.y4{bottom:2941.695003px;}
.y29{bottom:2956.455026px;}
.y2f{bottom:2981.654993px;}
.y3{bottom:2992.094971px;}
.y28{bottom:3006.855017px;}
.y2e{bottom:3032.774995px;}
.y27{bottom:3057.255007px;}
.y2{bottom:3068.054974px;}
.y26{bottom:3107.654998px;}
.y2d{bottom:3140.774976px;}
.y25{bottom:3158.054977px;}
.y1{bottom:3212.774978px;}
.y19{bottom:3497.617428px;}
.y18{bottom:3555.937429px;}
.y1a{bottom:3684.779993px;}
.ha{height:71.244899px;}
.h9{height:83.817916px;}
.hb{height:88.012406px;}
.h8{height:104.772059px;}
.hc{height:104.776438px;}
.hd{height:113.648446px;}
.h5{height:122.390625px;}
.h2{height:127.066406px;}
.h7{height:131.604501px;}
.h6{height:136.142582px;}
.h1{height:174.843751px;}
.h3{height:226.904295px;}
.h4{height:384.398459px;}
.h0{height:3888.000000px;}
.w0{width:5184.000000px;}
.x0{left:0.000000px;}
.x10{left:134.994047px;}
.x4{left:145.125005px;}
.x12{left:169.875005px;}
.x5{left:176.625006px;}
.x6{left:189.640629px;}
.x7{left:230.625007px;}
.xf{left:296.994053px;}
.x11{left:724.052273px;}
.x8{left:1427.625046px;}
.xa{left:1429.260413px;}
.x9{left:1472.625047px;}
.xb{left:1481.625047px;}
.x1{left:2678.625086px;}
.x2{left:2680.260453px;}
.x3{left:2732.625087px;}
.xc{left:3929.625126px;}
.xd{left:3931.259143px;}
.xe{left:3983.623777px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.026468pt;}
.ls2{letter-spacing:0.026508pt;}
.ls0{letter-spacing:95.988033pt;}
.ws0{word-spacing:-59.093334pt;}
.ws1{word-spacing:-37.781333pt;}
.ws2{word-spacing:-0.149333pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-19.413333pt;}
._4{margin-left:-15.786667pt;}
._12{margin-left:-11.733333pt;}
._1b{margin-left:-7.893333pt;}
._1{margin-left:-5.162667pt;}
._0{margin-left:-3.840000pt;}
._1d{margin-left:-2.301053pt;}
._15{width:0.929315pt;}
._1a{width:2.173370pt;}
._9{width:3.136000pt;}
._10{width:6.570667pt;}
._2{width:7.509334pt;}
._1e{width:8.756219pt;}
._a{width:10.069333pt;}
._3{width:11.733334pt;}
._c{width:15.978667pt;}
._11{width:21.952000pt;}
._19{width:29.568000pt;}
._6{width:32.554667pt;}
._13{width:41.216000pt;}
._14{width:42.128217pt;}
._b{width:44.501333pt;}
._18{width:47.786666pt;}
._f{width:49.877333pt;}
._7{width:65.557333pt;}
._16{width:66.752000pt;}
._17{width:80.192000pt;}
._5{width:95.994233pt;}
._e{width:140.970666pt;}
._8{width:201.749333pt;}
._d{width:221.162666pt;}
.fs8{font-size:86.928539pt;}
.fs7{font-size:102.269343pt;}
.fs9{font-size:107.387195pt;}
.fs6{font-size:127.836268pt;}
.fsa{font-size:127.841612pt;}
.fsb{font-size:138.666676pt;}
.fs1{font-size:149.333333pt;}
.fs5{font-size:154.666677pt;}
.fs4{font-size:160.000005pt;}
.fs0{font-size:213.333335pt;}
.fs2{font-size:266.666665pt;}
.fs3{font-size:469.333359pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:114.906493pt;}
.y68{bottom:156.506494pt;}
.y4d{bottom:351.498361pt;}
.y4c{bottom:380.031382pt;}
.y4b{bottom:442.926814pt;}
.y50{bottom:443.980484pt;}
.y48{bottom:467.771664pt;}
.y4a{bottom:475.141625pt;}
.y4f{bottom:482.332965pt;}
.y49{bottom:513.492504pt;}
.y47{bottom:519.291706pt;}
.y4e{bottom:519.458180pt;}
.y46{bottom:585.531678pt;}
.y45{bottom:637.051670pt;}
.y44{bottom:703.291662pt;}
.y43{bottom:754.811654pt;}
.y42{bottom:821.051646pt;}
.y41{bottom:872.571637pt;}
.y40{bottom:966.011620pt;}
.y67{bottom:991.429271pt;}
.y66{bottom:1036.229263pt;}
.y65{bottom:1081.029254pt;}
.y64{bottom:1125.829255pt;}
.y61{bottom:1169.909727pt;}
.y63{bottom:1201.135928pt;}
.y60{bottom:1221.429728pt;}
.y24{bottom:1249.286729pt;}
.y62{bottom:1265.135930pt;}
.y5f{bottom:1272.949780pt;}
.y23{bottom:1300.806731pt;}
.y5e{bottom:1324.469802pt;}
.y22{bottom:1352.326713pt;}
.y5d{bottom:1375.989833pt;}
.y21{bottom:1403.846704pt;}
.y5c{bottom:1427.509835pt;}
.y20{bottom:1455.366696pt;}
.y5b{bottom:1479.029837pt;}
.y17{bottom:1501.986937pt;}
.y1f{bottom:1506.886688pt;}
.y5a{bottom:1530.549878pt;}
.y16{bottom:1546.786939pt;}
.y1e{bottom:1558.406679pt;}
.y59{bottom:1582.069900pt;}
.y1d{bottom:1609.926671pt;}
.y15{bottom:1618.253441pt;}
.y58{bottom:1633.589942pt;}
.y1c{bottom:1661.446663pt;}
.y14{bottom:1689.720043pt;}
.y57{bottom:1723.189945pt;}
.y1b{bottom:1754.886646pt;}
.y13{bottom:1761.186546pt;}
.y56{bottom:1767.989926pt;}
.y3f{bottom:1794.360047pt;}
.y12{bottom:1805.986547pt;}
.y3e{bottom:1839.159948pt;}
.y11{bottom:1850.786449pt;}
.y55{bottom:1857.589899pt;}
.y3d{bottom:1883.959950pt;}
.y10{bottom:1895.586350pt;}
.y54{bottom:1902.389890pt;}
.y3c{bottom:1928.759851pt;}
.y53{bottom:1947.189882pt;}
.yf{bottom:1967.053052pt;}
.y3b{bottom:1973.559893pt;}
.y52{bottom:1991.989873pt;}
.y3a{bottom:2018.359954pt;}
.ye{bottom:2038.519755pt;}
.y39{bottom:2063.479855pt;}
.yd{bottom:2083.319756pt;}
.y51{bottom:2085.429856pt;}
.yc{bottom:2150.839798pt;}
.y38{bottom:2154.359958pt;}
.y37{bottom:2199.159990pt;}
.y36{bottom:2244.279931pt;}
.yb{bottom:2256.439902pt;}
.ya{bottom:2301.239963pt;}
.y35{bottom:2335.159994pt;}
.y9{bottom:2346.040004pt;}
.y34{bottom:2379.960066pt;}
.y8{bottom:2390.840066pt;}
.y33{bottom:2424.760067pt;}
.y7{bottom:2435.640047pt;}
.y32{bottom:2469.880038pt;}
.y2c{bottom:2493.560069pt;}
.y6{bottom:2525.240020pt;}
.y2b{bottom:2538.360051pt;}
.y31{bottom:2560.760011pt;}
.y5{bottom:2570.040012pt;}
.y2a{bottom:2583.160032pt;}
.y30{bottom:2605.560003pt;}
.y4{bottom:2614.840003pt;}
.y29{bottom:2627.960024pt;}
.y2f{bottom:2650.359994pt;}
.y3{bottom:2659.639975pt;}
.y28{bottom:2672.760015pt;}
.y2e{bottom:2695.799996pt;}
.y27{bottom:2717.560006pt;}
.y2{bottom:2727.159977pt;}
.y26{bottom:2762.359998pt;}
.y2d{bottom:2791.799979pt;}
.y25{bottom:2807.159979pt;}
.y1{bottom:2855.799981pt;}
.y19{bottom:3108.993269pt;}
.y18{bottom:3160.833271pt;}
.y1a{bottom:3275.359994pt;}
.ha{height:63.328799pt;}
.h9{height:74.504815pt;}
.hb{height:78.233250pt;}
.h8{height:93.130719pt;}
.hc{height:93.134612pt;}
.hd{height:101.020840pt;}
.h5{height:108.791666pt;}
.h2{height:112.947916pt;}
.h7{height:116.981779pt;}
.h6{height:121.015629pt;}
.h1{height:155.416668pt;}
.h3{height:201.692707pt;}
.h4{height:341.687519pt;}
.h0{height:3456.000000pt;}
.w0{width:4608.000000pt;}
.x0{left:0.000000pt;}
.x10{left:119.994709pt;}
.x4{left:129.000004pt;}
.x12{left:151.000005pt;}
.x5{left:157.000005pt;}
.x6{left:168.569448pt;}
.x7{left:205.000007pt;}
.xf{left:263.994713pt;}
.x11{left:643.602021pt;}
.x8{left:1269.000041pt;}
.xa{left:1270.453701pt;}
.x9{left:1309.000042pt;}
.xb{left:1317.000042pt;}
.x1{left:2381.000076pt;}
.x2{left:2382.453736pt;}
.x3{left:2429.000078pt;}
.xc{left:3493.000112pt;}
.xd{left:3494.452572pt;}
.xe{left:3540.998913pt;}
}




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