
    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_bcae3621086b17598ffd30ef.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_b57f76142d59ddd8c4e91ebf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_d8364394dc0636b8ad3c1730.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_1e26d0116de036cffe51e3d5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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.880000px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.828000px;}
.ls8{letter-spacing:2.309760px;}
.lsa{letter-spacing:10.925760px;}
.ls3{letter-spacing:12.389760px;}
.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:-18.144000px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-3.685680px;}
._3{margin-left:-2.202720px;}
._0{margin-left:-1.080000px;}
._1{width:1.416000px;}
._2{width:2.818560px;}
._5{width:3.935760px;}
._a{width:5.677200px;}
._9{width:6.804240px;}
._4{width:8.246880px;}
._14{width:9.979920px;}
._1a{width:11.117040px;}
._b{width:12.187440px;}
._19{width:13.446000px;}
._8{width:16.014240px;}
._1c{width:17.025360px;}
._c{width:18.047520px;}
._16{width:19.678560px;}
._15{width:20.700000px;}
._12{width:22.433040px;}
._10{width:24.280800px;}
._11{width:25.324320px;}
._1d{width:30.579840px;}
._1b{width:33.547920px;}
._18{width:35.019360px;}
._17{width:36.632880px;}
._d{width:37.768320px;}
._13{width:48.525120px;}
._f{width:53.664480px;}
._e{width:54.740160px;}
._6{width:197.436000px;}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y68{bottom:18.360000px;}
.y6b{bottom:18.390000px;}
.y6a{bottom:35.670000px;}
.y33{bottom:116.496000px;}
.y32{bottom:135.216000px;}
.y31{bottom:153.750000px;}
.y66{bottom:160.050000px;}
.y30{bottom:172.470000px;}
.y65{bottom:177.330000px;}
.y2f{bottom:191.010000px;}
.y64{bottom:194.430000px;}
.y2e{bottom:209.730000px;}
.y63{bottom:220.710000px;}
.y2d{bottom:228.270000px;}
.y62{bottom:237.990000px;}
.y2c{bottom:246.810000px;}
.y61{bottom:255.270000px;}
.y2b{bottom:271.290000px;}
.y60{bottom:272.550000px;}
.y5f{bottom:289.875000px;}
.y2a{bottom:295.815000px;}
.y5e{bottom:306.975000px;}
.y29{bottom:320.295000px;}
.y5d{bottom:324.255000px;}
.y28{bottom:337.575000px;}
.y5c{bottom:341.535000px;}
.y27{bottom:354.855000px;}
.y5b{bottom:358.815000px;}
.y26{bottom:371.955000px;}
.y5a{bottom:376.095000px;}
.y25{bottom:389.235000px;}
.y59{bottom:406.695000px;}
.y24{bottom:413.715000px;}
.y58{bottom:423.975000px;}
.y23{bottom:430.995000px;}
.y57{bottom:445.575000px;}
.y22{bottom:448.275000px;}
.y56{bottom:462.855000px;}
.y21{bottom:472.575000px;}
.y55{bottom:480.135000px;}
.y20{bottom:489.855000px;}
.y1f{bottom:507.135000px;}
.y54{bottom:510.735000px;}
.y1e{bottom:524.415000px;}
.y53{bottom:541.335000px;}
.y1d{bottom:548.895000px;}
.y52{bottom:559.875000px;}
.y69{bottom:562.935000px;}
.y51{bottom:578.625000px;}
.y1c{bottom:579.525000px;}
.y50{bottom:597.165000px;}
.y1b{bottom:598.065000px;}
.y4f{bottom:615.885000px;}
.y1a{bottom:616.785000px;}
.y4e{bottom:634.425000px;}
.y19{bottom:647.385000px;}
.y4d{bottom:653.145000px;}
.y18{bottom:665.925000px;}
.y4c{bottom:671.685000px;}
.y17{bottom:684.645000px;}
.y4b{bottom:690.225000px;}
.y16{bottom:703.185000px;}
.y4a{bottom:708.945000px;}
.y15{bottom:721.725000px;}
.y49{bottom:727.485000px;}
.y14{bottom:740.445000px;}
.y48{bottom:746.205000px;}
.y13{bottom:758.985000px;}
.y47{bottom:764.745000px;}
.y12{bottom:777.705000px;}
.y46{bottom:783.285000px;}
.y11{bottom:796.245000px;}
.y45{bottom:802.005000px;}
.y10{bottom:814.785000px;}
.y44{bottom:820.545000px;}
.yf{bottom:833.505000px;}
.y43{bottom:851.190000px;}
.ye{bottom:852.090000px;}
.y67{bottom:872.610000px;}
.y42{bottom:881.790000px;}
.yd{bottom:882.690000px;}
.y41{bottom:900.510000px;}
.yc{bottom:901.410000px;}
.y40{bottom:919.050000px;}
.yb{bottom:919.950000px;}
.y3f{bottom:937.770000px;}
.ya{bottom:938.670000px;}
.y3e{bottom:956.310000px;}
.y9{bottom:957.210000px;}
.y3d{bottom:974.850000px;}
.y8{bottom:987.810000px;}
.y3c{bottom:993.570000px;}
.y7{bottom:1005.090000px;}
.y3b{bottom:1012.110000px;}
.y6{bottom:1026.870000px;}
.y3a{bottom:1030.830000px;}
.y5{bottom:1048.650000px;}
.y39{bottom:1049.370000px;}
.y38{bottom:1068.090000px;}
.y4{bottom:1070.250000px;}
.y37{bottom:1086.630000px;}
.y3{bottom:1092.030000px;}
.y36{bottom:1105.170000px;}
.y2{bottom:1119.030000px;}
.y35{bottom:1123.890000px;}
.y1{bottom:1139.760000px;}
.y34{bottom:1142.460000px;}
.h6{height:32.400000px;}
.h7{height:49.536000px;}
.h4{height:58.651172px;}
.h3{height:60.226875px;}
.h5{height:65.884219px;}
.h2{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:300.315000px;}
.w3{width:363.495000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:9.180000px;}
.xf{left:15.300000px;}
.x10{left:84.630000px;}
.x8{left:106.415987px;}
.x3{left:109.835987px;}
.x4{left:115.235987px;}
.xa{left:135.215987px;}
.x1{left:144.935987px;}
.x9{left:159.509987px;}
.x5{left:164.369987px;}
.x2{left:171.749987px;}
.xb{left:257.429987px;}
.x6{left:300.494987px;}
.xc{left:425.415000px;}
.x7{left:446.474987px;}
.xe{left:475.995000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.736000pt;}
.ls8{letter-spacing:2.053120pt;}
.lsa{letter-spacing:9.711787pt;}
.ls3{letter-spacing:11.013120pt;}
.ws0{word-spacing:-16.128000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-3.276160pt;}
._3{margin-left:-1.957973pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.258667pt;}
._2{width:2.505387pt;}
._5{width:3.498453pt;}
._a{width:5.046400pt;}
._9{width:6.048213pt;}
._4{width:7.330560pt;}
._14{width:8.871040pt;}
._1a{width:9.881813pt;}
._b{width:10.833280pt;}
._19{width:11.952000pt;}
._8{width:14.234880pt;}
._1c{width:15.133653pt;}
._c{width:16.042240pt;}
._16{width:17.492053pt;}
._15{width:18.400000pt;}
._12{width:19.940480pt;}
._10{width:21.582933pt;}
._11{width:22.510507pt;}
._1d{width:27.182080pt;}
._1b{width:29.820373pt;}
._18{width:31.128320pt;}
._17{width:32.562560pt;}
._d{width:33.571840pt;}
._13{width:43.133440pt;}
._f{width:47.701760pt;}
._e{width:48.657920pt;}
._6{width:175.498667pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:16.320000pt;}
.y6b{bottom:16.346667pt;}
.y6a{bottom:31.706667pt;}
.y33{bottom:103.552000pt;}
.y32{bottom:120.192000pt;}
.y31{bottom:136.666667pt;}
.y66{bottom:142.266667pt;}
.y30{bottom:153.306667pt;}
.y65{bottom:157.626667pt;}
.y2f{bottom:169.786667pt;}
.y64{bottom:172.826667pt;}
.y2e{bottom:186.426667pt;}
.y63{bottom:196.186667pt;}
.y2d{bottom:202.906667pt;}
.y62{bottom:211.546667pt;}
.y2c{bottom:219.386667pt;}
.y61{bottom:226.906667pt;}
.y2b{bottom:241.146667pt;}
.y60{bottom:242.266667pt;}
.y5f{bottom:257.666667pt;}
.y2a{bottom:262.946667pt;}
.y5e{bottom:272.866667pt;}
.y29{bottom:284.706667pt;}
.y5d{bottom:288.226667pt;}
.y28{bottom:300.066667pt;}
.y5c{bottom:303.586667pt;}
.y27{bottom:315.426667pt;}
.y5b{bottom:318.946667pt;}
.y26{bottom:330.626667pt;}
.y5a{bottom:334.306667pt;}
.y25{bottom:345.986667pt;}
.y59{bottom:361.506667pt;}
.y24{bottom:367.746667pt;}
.y58{bottom:376.866667pt;}
.y23{bottom:383.106667pt;}
.y57{bottom:396.066667pt;}
.y22{bottom:398.466667pt;}
.y56{bottom:411.426667pt;}
.y21{bottom:420.066667pt;}
.y55{bottom:426.786667pt;}
.y20{bottom:435.426667pt;}
.y1f{bottom:450.786667pt;}
.y54{bottom:453.986667pt;}
.y1e{bottom:466.146667pt;}
.y53{bottom:481.186667pt;}
.y1d{bottom:487.906667pt;}
.y52{bottom:497.666667pt;}
.y69{bottom:500.386667pt;}
.y51{bottom:514.333333pt;}
.y1c{bottom:515.133333pt;}
.y50{bottom:530.813333pt;}
.y1b{bottom:531.613333pt;}
.y4f{bottom:547.453333pt;}
.y1a{bottom:548.253333pt;}
.y4e{bottom:563.933333pt;}
.y19{bottom:575.453333pt;}
.y4d{bottom:580.573333pt;}
.y18{bottom:591.933333pt;}
.y4c{bottom:597.053333pt;}
.y17{bottom:608.573333pt;}
.y4b{bottom:613.533333pt;}
.y16{bottom:625.053333pt;}
.y4a{bottom:630.173333pt;}
.y15{bottom:641.533333pt;}
.y49{bottom:646.653333pt;}
.y14{bottom:658.173333pt;}
.y48{bottom:663.293333pt;}
.y13{bottom:674.653333pt;}
.y47{bottom:679.773333pt;}
.y12{bottom:691.293333pt;}
.y46{bottom:696.253333pt;}
.y11{bottom:707.773333pt;}
.y45{bottom:712.893333pt;}
.y10{bottom:724.253333pt;}
.y44{bottom:729.373333pt;}
.yf{bottom:740.893333pt;}
.y43{bottom:756.613333pt;}
.ye{bottom:757.413333pt;}
.y67{bottom:775.653333pt;}
.y42{bottom:783.813333pt;}
.yd{bottom:784.613333pt;}
.y41{bottom:800.453333pt;}
.yc{bottom:801.253333pt;}
.y40{bottom:816.933333pt;}
.yb{bottom:817.733333pt;}
.y3f{bottom:833.573333pt;}
.ya{bottom:834.373333pt;}
.y3e{bottom:850.053333pt;}
.y9{bottom:850.853333pt;}
.y3d{bottom:866.533333pt;}
.y8{bottom:878.053333pt;}
.y3c{bottom:883.173333pt;}
.y7{bottom:893.413333pt;}
.y3b{bottom:899.653333pt;}
.y6{bottom:912.773333pt;}
.y3a{bottom:916.293333pt;}
.y5{bottom:932.133333pt;}
.y39{bottom:932.773333pt;}
.y38{bottom:949.413333pt;}
.y4{bottom:951.333333pt;}
.y37{bottom:965.893333pt;}
.y3{bottom:970.693333pt;}
.y36{bottom:982.373333pt;}
.y2{bottom:994.693333pt;}
.y35{bottom:999.013333pt;}
.y1{bottom:1013.120000pt;}
.y34{bottom:1015.520000pt;}
.h6{height:28.800000pt;}
.h7{height:44.032000pt;}
.h4{height:52.134375pt;}
.h3{height:53.535000pt;}
.h5{height:58.563750pt;}
.h2{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:266.946667pt;}
.w3{width:323.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:8.160000pt;}
.xf{left:13.600000pt;}
.x10{left:75.226667pt;}
.x8{left:94.591988pt;}
.x3{left:97.631988pt;}
.x4{left:102.431988pt;}
.xa{left:120.191988pt;}
.x1{left:128.831988pt;}
.x9{left:141.786655pt;}
.x5{left:146.106655pt;}
.x2{left:152.666655pt;}
.xb{left:228.826655pt;}
.x6{left:267.106655pt;}
.xc{left:378.146667pt;}
.x7{left:396.866655pt;}
.xe{left:423.106667pt;}
}




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