
    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_abd5ff671dece1e25a26c0c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.v1{vertical-align:69.000000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:48.300000px;}
.ws3{word-spacing:66.480000px;}
.ws4{word-spacing:78.300000px;}
.ws6{word-spacing:83.160000px;}
.ws8{word-spacing:98.340000px;}
.ws5{word-spacing:109.980000px;}
.ws2{word-spacing:163.320000px;}
.ws9{word-spacing:451.560000px;}
.ws1{word-spacing:529.980000px;}
._1b{width:83.160000px;}
._10{width:93.180000px;}
._2c{width:99.840000px;}
._18{width:115.020000px;}
._1c{width:116.460000px;}
._16{width:126.660000px;}
._4c{width:129.960000px;}
._4f{width:149.940000px;}
._4a{width:163.260000px;}
._7{width:169.980000px;}
._8{width:171.600000px;}
._14{width:173.160000px;}
._a{width:183.300000px;}
._12{width:189.900000px;}
._23{width:206.580000px;}
._9{width:208.260000px;}
._43{width:218.640000px;}
._2d{width:223.200000px;}
._3a{width:226.620000px;}
._31{width:233.280000px;}
._4d{width:235.320000px;}
._e{width:236.700000px;}
._41{width:246.660000px;}
._46{width:259.980000px;}
._38{width:263.340000px;}
._39{width:267.660000px;}
._3e{width:273.300000px;}
._3c{width:279.900000px;}
._b{width:286.620000px;}
._48{width:293.280000px;}
._32{width:303.240000px;}
._c{width:308.340000px;}
._3b{width:340.980000px;}
._44{width:353.340000px;}
._36{width:359.880000px;}
._35{width:369.900000px;}
._40{width:374.280000px;}
._33{width:389.880000px;}
._30{width:453.300000px;}
._3d{width:457.740000px;}
._34{width:459.900000px;}
._4b{width:467.760000px;}
._2f{width:496.560000px;}
._22{width:498.240000px;}
._1a{width:499.920000px;}
._28{width:501.600000px;}
._13{width:513.300000px;}
._f{width:529.920000px;}
._2a{width:543.300000px;}
._1e{width:544.980000px;}
._11{width:546.660000px;}
._21{width:548.280000px;}
._19{width:549.960000px;}
._27{width:551.640000px;}
._3{width:556.500000px;}
._2e{width:563.280000px;}
._20{width:564.960000px;}
._17{width:566.640000px;}
._26{width:568.260000px;}
._37{width:569.880000px;}
._2b{width:574.980000px;}
._1f{width:576.660000px;}
._15{width:578.340000px;}
._25{width:579.960000px;}
._29{width:588.300000px;}
._1d{width:589.980000px;}
._d{width:591.660000px;}
._24{width:593.280000px;}
._45{width:607.860000px;}
._3f{width:644.520000px;}
._4{width:663.240000px;}
._49{width:677.820000px;}
._47{width:684.540000px;}
._42{width:697.800000px;}
._6{width:761.100000px;}
._4e{width:771.240000px;}
._1{width:777.780000px;}
._2{width:783.060000px;}
._5{width:1488.300000px;}
._0{width:1504.980000px;}
.fc1{color:rgb(51,102,153);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:47.940000px;}
.y15{bottom:90.000000px;}
.y16{bottom:106.365000px;}
.y57{bottom:117.315000px;}
.y36{bottom:132.315000px;}
.y56{bottom:147.315000px;}
.y17{bottom:151.365000px;}
.y35{bottom:162.315000px;}
.y55{bottom:177.315000px;}
.y34{bottom:192.315000px;}
.y54{bottom:207.315000px;}
.y33{bottom:222.315000px;}
.y53{bottom:237.315000px;}
.y32{bottom:252.315000px;}
.y52{bottom:267.315000px;}
.y31{bottom:282.315000px;}
.y51{bottom:297.315000px;}
.y30{bottom:312.315000px;}
.y50{bottom:327.315000px;}
.y2f{bottom:342.315000px;}
.y4f{bottom:357.315000px;}
.y2e{bottom:372.315000px;}
.y4e{bottom:387.315000px;}
.y2d{bottom:402.315000px;}
.y4d{bottom:417.315000px;}
.y2c{bottom:432.315000px;}
.y4c{bottom:447.315000px;}
.y2b{bottom:462.315000px;}
.y4b{bottom:477.315000px;}
.y71{bottom:480.690000px;}
.y2a{bottom:492.315000px;}
.y70{bottom:503.190000px;}
.y4a{bottom:507.315000px;}
.y29{bottom:522.315000px;}
.y6f{bottom:525.690000px;}
.y49{bottom:537.315000px;}
.y6e{bottom:548.190000px;}
.y28{bottom:552.315000px;}
.y48{bottom:567.315000px;}
.y6d{bottom:570.690000px;}
.y27{bottom:582.315000px;}
.y6c{bottom:593.190000px;}
.y47{bottom:597.315000px;}
.y26{bottom:612.315000px;}
.y6b{bottom:615.690000px;}
.y46{bottom:627.315000px;}
.y6a{bottom:638.190000px;}
.y25{bottom:642.315000px;}
.y69{bottom:655.440000px;}
.y45{bottom:657.315000px;}
.y24{bottom:672.315000px;}
.y68{bottom:672.690000px;}
.y44{bottom:687.315000px;}
.y67{bottom:689.940000px;}
.y23{bottom:702.315000px;}
.y66{bottom:707.190000px;}
.y43{bottom:717.315000px;}
.y10{bottom:721.065000px;}
.y65{bottom:729.690000px;}
.y22{bottom:732.315000px;}
.yf{bottom:743.565000px;}
.y64{bottom:746.940000px;}
.y42{bottom:747.315000px;}
.y21{bottom:762.315000px;}
.y63{bottom:764.190000px;}
.ye{bottom:766.065000px;}
.y41{bottom:777.315000px;}
.y62{bottom:781.440000px;}
.yd{bottom:788.565000px;}
.y20{bottom:792.315000px;}
.y61{bottom:798.690000px;}
.y40{bottom:807.315000px;}
.yc{bottom:811.065000px;}
.y60{bottom:815.940000px;}
.y1f{bottom:822.315000px;}
.y5f{bottom:833.190000px;}
.yb{bottom:833.565000px;}
.y3f{bottom:837.315000px;}
.y1e{bottom:852.315000px;}
.y5e{bottom:855.690000px;}
.ya{bottom:856.065000px;}
.y3e{bottom:867.315000px;}
.y5d{bottom:878.190000px;}
.y9{bottom:878.565000px;}
.y1d{bottom:882.315000px;}
.y3d{bottom:897.315000px;}
.y5c{bottom:900.690000px;}
.y8{bottom:901.065000px;}
.y1c{bottom:912.315000px;}
.y5b{bottom:923.190000px;}
.y7{bottom:923.565000px;}
.y3c{bottom:927.315000px;}
.y1b{bottom:942.315000px;}
.y5a{bottom:945.690000px;}
.y6{bottom:946.065000px;}
.y3b{bottom:957.315000px;}
.y5{bottom:968.565000px;}
.y1a{bottom:972.315000px;}
.y3a{bottom:987.315000px;}
.y4{bottom:991.065000px;}
.y19{bottom:1002.315000px;}
.y59{bottom:1007.430000px;}
.y39{bottom:1017.315000px;}
.y3{bottom:1019.115000px;}
.y18{bottom:1032.315000px;}
.y58{bottom:1037.430000px;}
.y38{bottom:1047.315000px;}
.y14{bottom:1064.115000px;}
.y2{bottom:1069.365000px;}
.y37{bottom:1077.315000px;}
.y1{bottom:1108.650000px;}
.y13{bottom:1111.440000px;}
.y12{bottom:1128.690000px;}
.h3{height:62.578125px;}
.h2{height:125.156250px;}
.h4{height:131.578125px;}
.h1{height:150.187500px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:45.000000px;}
.x9{left:64.980000px;}
.x4{left:75.000000px;}
.x8{left:78.885000px;}
.xa{left:97.920000px;}
.xc{left:99.150000px;}
.xb{left:103.320000px;}
.xd{left:120.420000px;}
.xe{left:198.000000px;}
.x1{left:246.180000px;}
.x5{left:294.165000px;}
.x6{left:300.000000px;}
.x2{left:410.400000px;}
.xf{left:543.000000px;}
.x7{left:699.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:61.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:42.933333pt;}
.ws3{word-spacing:59.093333pt;}
.ws4{word-spacing:69.600000pt;}
.ws6{word-spacing:73.920000pt;}
.ws8{word-spacing:87.413333pt;}
.ws5{word-spacing:97.760000pt;}
.ws2{word-spacing:145.173333pt;}
.ws9{word-spacing:401.386667pt;}
.ws1{word-spacing:471.093333pt;}
._1b{width:73.920000pt;}
._10{width:82.826667pt;}
._2c{width:88.746667pt;}
._18{width:102.240000pt;}
._1c{width:103.520000pt;}
._16{width:112.586667pt;}
._4c{width:115.520000pt;}
._4f{width:133.280000pt;}
._4a{width:145.120000pt;}
._7{width:151.093333pt;}
._8{width:152.533333pt;}
._14{width:153.920000pt;}
._a{width:162.933333pt;}
._12{width:168.800000pt;}
._23{width:183.626667pt;}
._9{width:185.120000pt;}
._43{width:194.346667pt;}
._2d{width:198.400000pt;}
._3a{width:201.440000pt;}
._31{width:207.360000pt;}
._4d{width:209.173333pt;}
._e{width:210.400000pt;}
._41{width:219.253333pt;}
._46{width:231.093333pt;}
._38{width:234.080000pt;}
._39{width:237.920000pt;}
._3e{width:242.933333pt;}
._3c{width:248.800000pt;}
._b{width:254.773333pt;}
._48{width:260.693333pt;}
._32{width:269.546667pt;}
._c{width:274.080000pt;}
._3b{width:303.093333pt;}
._44{width:314.080000pt;}
._36{width:319.893333pt;}
._35{width:328.800000pt;}
._40{width:332.693333pt;}
._33{width:346.560000pt;}
._30{width:402.933333pt;}
._3d{width:406.880000pt;}
._34{width:408.800000pt;}
._4b{width:415.786667pt;}
._2f{width:441.386667pt;}
._22{width:442.880000pt;}
._1a{width:444.373333pt;}
._28{width:445.866667pt;}
._13{width:456.266667pt;}
._f{width:471.040000pt;}
._2a{width:482.933333pt;}
._1e{width:484.426667pt;}
._11{width:485.920000pt;}
._21{width:487.360000pt;}
._19{width:488.853333pt;}
._27{width:490.346667pt;}
._3{width:494.666667pt;}
._2e{width:500.693333pt;}
._20{width:502.186667pt;}
._17{width:503.680000pt;}
._26{width:505.120000pt;}
._37{width:506.560000pt;}
._2b{width:511.093333pt;}
._1f{width:512.586667pt;}
._15{width:514.080000pt;}
._25{width:515.520000pt;}
._29{width:522.933333pt;}
._1d{width:524.426667pt;}
._d{width:525.920000pt;}
._24{width:527.360000pt;}
._45{width:540.320000pt;}
._3f{width:572.906667pt;}
._4{width:589.546667pt;}
._49{width:602.506667pt;}
._47{width:608.480000pt;}
._42{width:620.266667pt;}
._6{width:676.533333pt;}
._4e{width:685.546667pt;}
._1{width:691.360000pt;}
._2{width:696.053333pt;}
._5{width:1322.933333pt;}
._0{width:1337.760000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:42.613333pt;}
.y15{bottom:80.000000pt;}
.y16{bottom:94.546667pt;}
.y57{bottom:104.280000pt;}
.y36{bottom:117.613333pt;}
.y56{bottom:130.946667pt;}
.y17{bottom:134.546667pt;}
.y35{bottom:144.280000pt;}
.y55{bottom:157.613333pt;}
.y34{bottom:170.946667pt;}
.y54{bottom:184.280000pt;}
.y33{bottom:197.613333pt;}
.y53{bottom:210.946667pt;}
.y32{bottom:224.280000pt;}
.y52{bottom:237.613333pt;}
.y31{bottom:250.946667pt;}
.y51{bottom:264.280000pt;}
.y30{bottom:277.613333pt;}
.y50{bottom:290.946667pt;}
.y2f{bottom:304.280000pt;}
.y4f{bottom:317.613333pt;}
.y2e{bottom:330.946667pt;}
.y4e{bottom:344.280000pt;}
.y2d{bottom:357.613333pt;}
.y4d{bottom:370.946667pt;}
.y2c{bottom:384.280000pt;}
.y4c{bottom:397.613333pt;}
.y2b{bottom:410.946667pt;}
.y4b{bottom:424.280000pt;}
.y71{bottom:427.280000pt;}
.y2a{bottom:437.613333pt;}
.y70{bottom:447.280000pt;}
.y4a{bottom:450.946667pt;}
.y29{bottom:464.280000pt;}
.y6f{bottom:467.280000pt;}
.y49{bottom:477.613333pt;}
.y6e{bottom:487.280000pt;}
.y28{bottom:490.946667pt;}
.y48{bottom:504.280000pt;}
.y6d{bottom:507.280000pt;}
.y27{bottom:517.613333pt;}
.y6c{bottom:527.280000pt;}
.y47{bottom:530.946667pt;}
.y26{bottom:544.280000pt;}
.y6b{bottom:547.280000pt;}
.y46{bottom:557.613333pt;}
.y6a{bottom:567.280000pt;}
.y25{bottom:570.946667pt;}
.y69{bottom:582.613333pt;}
.y45{bottom:584.280000pt;}
.y24{bottom:597.613333pt;}
.y68{bottom:597.946667pt;}
.y44{bottom:610.946667pt;}
.y67{bottom:613.280000pt;}
.y23{bottom:624.280000pt;}
.y66{bottom:628.613333pt;}
.y43{bottom:637.613333pt;}
.y10{bottom:640.946667pt;}
.y65{bottom:648.613333pt;}
.y22{bottom:650.946667pt;}
.yf{bottom:660.946667pt;}
.y64{bottom:663.946667pt;}
.y42{bottom:664.280000pt;}
.y21{bottom:677.613333pt;}
.y63{bottom:679.280000pt;}
.ye{bottom:680.946667pt;}
.y41{bottom:690.946667pt;}
.y62{bottom:694.613333pt;}
.yd{bottom:700.946667pt;}
.y20{bottom:704.280000pt;}
.y61{bottom:709.946667pt;}
.y40{bottom:717.613333pt;}
.yc{bottom:720.946667pt;}
.y60{bottom:725.280000pt;}
.y1f{bottom:730.946667pt;}
.y5f{bottom:740.613333pt;}
.yb{bottom:740.946667pt;}
.y3f{bottom:744.280000pt;}
.y1e{bottom:757.613333pt;}
.y5e{bottom:760.613333pt;}
.ya{bottom:760.946667pt;}
.y3e{bottom:770.946667pt;}
.y5d{bottom:780.613333pt;}
.y9{bottom:780.946667pt;}
.y1d{bottom:784.280000pt;}
.y3d{bottom:797.613333pt;}
.y5c{bottom:800.613333pt;}
.y8{bottom:800.946667pt;}
.y1c{bottom:810.946667pt;}
.y5b{bottom:820.613333pt;}
.y7{bottom:820.946667pt;}
.y3c{bottom:824.280000pt;}
.y1b{bottom:837.613333pt;}
.y5a{bottom:840.613333pt;}
.y6{bottom:840.946667pt;}
.y3b{bottom:850.946667pt;}
.y5{bottom:860.946667pt;}
.y1a{bottom:864.280000pt;}
.y3a{bottom:877.613333pt;}
.y4{bottom:880.946667pt;}
.y19{bottom:890.946667pt;}
.y59{bottom:895.493333pt;}
.y39{bottom:904.280000pt;}
.y3{bottom:905.880000pt;}
.y18{bottom:917.613333pt;}
.y58{bottom:922.160000pt;}
.y38{bottom:930.946667pt;}
.y14{bottom:945.880000pt;}
.y2{bottom:950.546667pt;}
.y37{bottom:957.613333pt;}
.y1{bottom:985.466667pt;}
.y13{bottom:987.946667pt;}
.y12{bottom:1003.280000pt;}
.h3{height:55.625000pt;}
.h2{height:111.250000pt;}
.h4{height:116.958333pt;}
.h1{height:133.500000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:40.000000pt;}
.x9{left:57.760000pt;}
.x4{left:66.666667pt;}
.x8{left:70.120000pt;}
.xa{left:87.040000pt;}
.xc{left:88.133333pt;}
.xb{left:91.840000pt;}
.xd{left:107.040000pt;}
.xe{left:176.000000pt;}
.x1{left:218.826667pt;}
.x5{left:261.480000pt;}
.x6{left:266.666667pt;}
.x2{left:364.800000pt;}
.xf{left:482.666667pt;}
.x7{left:621.413333pt;}
}




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