
    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_1e42f71f547d26084a92ba4e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_95a2a9c1500dff965b4772e0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d95961a33f41c0126cc9bc19.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c2e0f5317d6c6c8d6827222f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.756348;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_383ac3ab05e0364356d8955f.woff2')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_e3900dd89733209009e807e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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:ff7;src:url('chunks/assets/font_8461963a94a45646463678ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls4{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.230400px;}
.ls9{letter-spacing:0.244800px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.lsa{letter-spacing:43.460640px;}
.ls8{letter-spacing:50.382720px;}
.ls6{letter-spacing:54.864000px;}
.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;}
}
.ws5{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws0{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-4.608000px;}
._2{margin-left:-3.235680px;}
._0{margin-left:-1.336320px;}
._1{width:1.015920px;}
._3{width:2.260080px;}
._4{width:3.504240px;}
._8{width:4.968000px;}
._7{width:6.719760px;}
._f{width:7.992000px;}
._11{width:10.656000px;}
._9{width:12.024000px;}
._10{width:13.284000px;}
._b{width:15.536640px;}
._a{width:16.632000px;}
._12{width:19.656000px;}
._c{width:21.168000px;}
._d{width:22.376160px;}
._5{width:28.800000px;}
._6{width:29.800080px;}
._16{width:42.552000px;}
._13{width:51.840000px;}
._15{width:130.500000px;}
._14{width:131.652000px;}
._17{width:846.180000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:87.120000px;}
.y0{bottom:0.000000px;}
.y20{bottom:7.020000px;}
.y8{bottom:8.460000px;}
.y6c{bottom:27.765000px;}
.y7{bottom:30.240000px;}
.y47{bottom:30.600000px;}
.y1f{bottom:30.780000px;}
.y57{bottom:30.960000px;}
.y6{bottom:46.800000px;}
.y6b{bottom:48.465000px;}
.y1e{bottom:54.540000px;}
.y56{bottom:54.720000px;}
.y46{bottom:55.800000px;}
.y3b{bottom:57.420000px;}
.y2{bottom:57.780000px;}
.y6a{bottom:69.165000px;}
.y5{bottom:73.620000px;}
.y55{bottom:75.450000px;}
.y1{bottom:78.480000px;}
.y1d{bottom:78.510000px;}
.y45{bottom:80.820000px;}
.y3a{bottom:81.030000px;}
.y69{bottom:89.865000px;}
.y54{bottom:97.410000px;}
.y4{bottom:101.340000px;}
.y1c{bottom:102.270000px;}
.y44{bottom:105.840000px;}
.y39{bottom:106.230000px;}
.y68{bottom:110.565000px;}
.y9{bottom:113.040000px;}
.y53{bottom:118.110000px;}
.y1b{bottom:126.030000px;}
.y21{bottom:129.060000px;}
.y38{bottom:129.990000px;}
.y67{bottom:131.265000px;}
.y48{bottom:131.580000px;}
.y52{bottom:140.070000px;}
.y43{bottom:144.900000px;}
.y1a{bottom:149.790000px;}
.y66{bottom:151.965000px;}
.y37{bottom:155.190000px;}
.y51{bottom:162.030000px;}
.y19{bottom:173.730000px;}
.y36{bottom:178.950000px;}
.y50{bottom:184.170000px;}
.y42{bottom:186.705000px;}
.y65{bottom:191.745000px;}
.y35{bottom:204.150000px;}
.y18{bottom:209.730000px;}
.y41{bottom:210.465000px;}
.y4f{bottom:221.250000px;}
.y34{bottom:227.910000px;}
.y40{bottom:235.665000px;}
.y64{bottom:236.595000px;}
.y33{bottom:251.535000px;}
.y17{bottom:251.670000px;}
.y3f{bottom:259.245000px;}
.y63{bottom:260.355000px;}
.y4e{bottom:263.055000px;}
.y16{bottom:275.655000px;}
.y32{bottom:276.915000px;}
.y62{bottom:284.115000px;}
.y3e{bottom:284.625000px;}
.y4d{bottom:286.815000px;}
.y15{bottom:299.415000px;}
.y31{bottom:300.495000px;}
.y61{bottom:308.055000px;}
.y3d{bottom:308.385000px;}
.y4c{bottom:310.575000px;}
.y6e{bottom:322.950000px;}
.y14{bottom:323.175000px;}
.y30{bottom:326.775000px;}
.y60{bottom:331.815000px;}
.y4b{bottom:334.515000px;}
.y6d{bottom:343.650000px;}
.y5f{bottom:355.575000px;}
.y13{bottom:359.355000px;}
.y58{bottom:360.390000px;}
.y2f{bottom:362.955000px;}
.y4a{bottom:370.155000px;}
.y5e{bottom:379.335000px;}
.y12{bottom:401.295000px;}
.y5d{bottom:403.320000px;}
.y2e{bottom:404.715000px;}
.y49{bottom:412.995000px;}
.y5c{bottom:427.080000px;}
.y11{bottom:443.055000px;}
.y2d{bottom:446.505000px;}
.y5b{bottom:450.840000px;}
.y10{bottom:467.025000px;}
.y2c{bottom:470.085000px;}
.y5a{bottom:474.600000px;}
.yf{bottom:490.785000px;}
.y2b{bottom:495.285000px;}
.y59{bottom:514.380000px;}
.ye{bottom:514.545000px;}
.y2a{bottom:519.225000px;}
.yd{bottom:538.305000px;}
.y29{bottom:542.805000px;}
.yc{bottom:562.245000px;}
.y28{bottom:568.005000px;}
.y3c{bottom:582.405000px;}
.y27{bottom:593.205000px;}
.yb{bottom:597.885000px;}
.y26{bottom:616.785000px;}
.ya{bottom:640.770000px;}
.y25{bottom:642.030000px;}
.y24{bottom:665.790000px;}
.y23{bottom:702.870000px;}
.y22{bottom:745.710000px;}
.y3{bottom:791.610000px;}
.h6{height:38.139609px;}
.h5{height:59.038594px;}
.h2{height:70.664062px;}
.h8{height:72.562500px;}
.ha{height:74.004654px;}
.hc{height:76.317188px;}
.hb{height:79.925027px;}
.h4{height:84.898125px;}
.hf{height:85.503516px;}
.he{height:89.545632px;}
.h3{height:120.960000px;}
.hd{height:330.150000px;}
.h10{height:450.825000px;}
.h11{height:552.165000px;}
.h7{height:678.570000px;}
.h9{height:783.510000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:538.125000px;}
.w1{width:807.750000px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x9{left:34.020000px;}
.xb{left:35.100000px;}
.x3{left:55.260000px;}
.x6{left:59.040000px;}
.xa{left:61.020000px;}
.xc{left:62.100000px;}
.x4{left:104.985000px;}
.x7{left:106.425000px;}
.x5{left:133.245000px;}
.x2{left:162.029988px;}
.x1{left:673.169988px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.204800pt;}
.ls9{letter-spacing:0.217600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.lsa{letter-spacing:38.631680pt;}
.ls8{letter-spacing:44.784640pt;}
.ls6{letter-spacing:48.768000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws0{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-4.096000pt;}
._2{margin-left:-2.876160pt;}
._0{margin-left:-1.187840pt;}
._1{width:0.903040pt;}
._3{width:2.008960pt;}
._4{width:3.114880pt;}
._8{width:4.416000pt;}
._7{width:5.973120pt;}
._f{width:7.104000pt;}
._11{width:9.472000pt;}
._9{width:10.688000pt;}
._10{width:11.808000pt;}
._b{width:13.810347pt;}
._a{width:14.784000pt;}
._12{width:17.472000pt;}
._c{width:18.816000pt;}
._d{width:19.889920pt;}
._5{width:25.600000pt;}
._6{width:26.488960pt;}
._16{width:37.824000pt;}
._13{width:46.080000pt;}
._15{width:116.000000pt;}
._14{width:117.024000pt;}
._17{width:752.160000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:77.440000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:6.240000pt;}
.y8{bottom:7.520000pt;}
.y6c{bottom:24.680000pt;}
.y7{bottom:26.880000pt;}
.y47{bottom:27.200000pt;}
.y1f{bottom:27.360000pt;}
.y57{bottom:27.520000pt;}
.y6{bottom:41.600000pt;}
.y6b{bottom:43.080000pt;}
.y1e{bottom:48.480000pt;}
.y56{bottom:48.640000pt;}
.y46{bottom:49.600000pt;}
.y3b{bottom:51.040000pt;}
.y2{bottom:51.360000pt;}
.y6a{bottom:61.480000pt;}
.y5{bottom:65.440000pt;}
.y55{bottom:67.066667pt;}
.y1{bottom:69.760000pt;}
.y1d{bottom:69.786667pt;}
.y45{bottom:71.840000pt;}
.y3a{bottom:72.026667pt;}
.y69{bottom:79.880000pt;}
.y54{bottom:86.586667pt;}
.y4{bottom:90.080000pt;}
.y1c{bottom:90.906667pt;}
.y44{bottom:94.080000pt;}
.y39{bottom:94.426667pt;}
.y68{bottom:98.280000pt;}
.y9{bottom:100.480000pt;}
.y53{bottom:104.986667pt;}
.y1b{bottom:112.026667pt;}
.y21{bottom:114.720000pt;}
.y38{bottom:115.546667pt;}
.y67{bottom:116.680000pt;}
.y48{bottom:116.960000pt;}
.y52{bottom:124.506667pt;}
.y43{bottom:128.800000pt;}
.y1a{bottom:133.146667pt;}
.y66{bottom:135.080000pt;}
.y37{bottom:137.946667pt;}
.y51{bottom:144.026667pt;}
.y19{bottom:154.426667pt;}
.y36{bottom:159.066667pt;}
.y50{bottom:163.706667pt;}
.y42{bottom:165.960000pt;}
.y65{bottom:170.440000pt;}
.y35{bottom:181.466667pt;}
.y18{bottom:186.426667pt;}
.y41{bottom:187.080000pt;}
.y4f{bottom:196.666667pt;}
.y34{bottom:202.586667pt;}
.y40{bottom:209.480000pt;}
.y64{bottom:210.306667pt;}
.y33{bottom:223.586667pt;}
.y17{bottom:223.706667pt;}
.y3f{bottom:230.440000pt;}
.y63{bottom:231.426667pt;}
.y4e{bottom:233.826667pt;}
.y16{bottom:245.026667pt;}
.y32{bottom:246.146667pt;}
.y62{bottom:252.546667pt;}
.y3e{bottom:253.000000pt;}
.y4d{bottom:254.946667pt;}
.y15{bottom:266.146667pt;}
.y31{bottom:267.106667pt;}
.y61{bottom:273.826667pt;}
.y3d{bottom:274.120000pt;}
.y4c{bottom:276.066667pt;}
.y6e{bottom:287.066667pt;}
.y14{bottom:287.266667pt;}
.y30{bottom:290.466667pt;}
.y60{bottom:294.946667pt;}
.y4b{bottom:297.346667pt;}
.y6d{bottom:305.466667pt;}
.y5f{bottom:316.066667pt;}
.y13{bottom:319.426667pt;}
.y58{bottom:320.346667pt;}
.y2f{bottom:322.626667pt;}
.y4a{bottom:329.026667pt;}
.y5e{bottom:337.186667pt;}
.y12{bottom:356.706667pt;}
.y5d{bottom:358.506667pt;}
.y2e{bottom:359.746667pt;}
.y49{bottom:367.106667pt;}
.y5c{bottom:379.626667pt;}
.y11{bottom:393.826667pt;}
.y2d{bottom:396.893333pt;}
.y5b{bottom:400.746667pt;}
.y10{bottom:415.133333pt;}
.y2c{bottom:417.853333pt;}
.y5a{bottom:421.866667pt;}
.yf{bottom:436.253333pt;}
.y2b{bottom:440.253333pt;}
.y59{bottom:457.226667pt;}
.ye{bottom:457.373333pt;}
.y2a{bottom:461.533333pt;}
.yd{bottom:478.493333pt;}
.y29{bottom:482.493333pt;}
.yc{bottom:499.773333pt;}
.y28{bottom:504.893333pt;}
.y3c{bottom:517.693333pt;}
.y27{bottom:527.293333pt;}
.yb{bottom:531.453333pt;}
.y26{bottom:548.253333pt;}
.ya{bottom:569.573333pt;}
.y25{bottom:570.693333pt;}
.y24{bottom:591.813333pt;}
.y23{bottom:624.773333pt;}
.y22{bottom:662.853333pt;}
.y3{bottom:703.653333pt;}
.h6{height:33.901875pt;}
.h5{height:52.478750pt;}
.h2{height:62.812500pt;}
.h8{height:64.500000pt;}
.ha{height:65.781915pt;}
.hc{height:67.837500pt;}
.hb{height:71.044468pt;}
.h4{height:75.465000pt;}
.hf{height:76.003125pt;}
.he{height:79.596117pt;}
.h3{height:107.520000pt;}
.hd{height:293.466667pt;}
.h10{height:400.733333pt;}
.h11{height:490.813333pt;}
.h7{height:603.173333pt;}
.h9{height:696.453333pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:478.333333pt;}
.w1{width:718.000000pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x9{left:30.240000pt;}
.xb{left:31.200000pt;}
.x3{left:49.120000pt;}
.x6{left:52.480000pt;}
.xa{left:54.240000pt;}
.xc{left:55.200000pt;}
.x4{left:93.320000pt;}
.x7{left:94.600000pt;}
.x5{left:118.440000pt;}
.x2{left:144.026656pt;}
.x1{left:598.373323pt;}
}




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