
    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_cbc0b6c389ef7d6a0963919f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1869d600186c768fc47ae7f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_7ea802aaff2e2788d69bf86f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_2bd010b338f4965ddaa11e6a.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.ls2{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.720000px;}
.ls4{letter-spacing:15.840000px;}
.ls3{letter-spacing:64.421280px;}
.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:-72.000000px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-4.608000px;}
._14{margin-left:-3.486240px;}
._15{margin-left:-2.459520px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._11{width:2.913600px;}
._e{width:4.824000px;}
._f{width:6.048000px;}
._16{width:7.056000px;}
._c{width:8.496000px;}
._d{width:9.576000px;}
._17{width:11.424000px;}
._a{width:13.104000px;}
._b{width:14.112000px;}
._1e{width:15.552000px;}
._10{width:16.752000px;}
._12{width:19.944000px;}
._20{width:20.952000px;}
._1d{width:22.392000px;}
._18{width:24.264000px;}
._19{width:25.284000px;}
._1a{width:27.000000px;}
._1b{width:28.217760px;}
._1c{width:29.232000px;}
._1f{width:30.816000px;}
._22{width:32.256000px;}
._23{width:37.008000px;}
._24{width:38.100000px;}
._21{width:45.720000px;}
._4{width:51.831840px;}
._5{width:53.268240px;}
._2{width:59.466960px;}
._3{width:60.546000px;}
._8{width:74.048160px;}
._9{width:75.171600px;}
._6{width:151.683840px;}
._7{width:152.788560px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:82.116000px;}
.y5{bottom:102.816000px;}
.y4{bottom:129.096000px;}
.y3{bottom:154.110000px;}
.y2{bottom:173.190000px;}
.y2f{bottom:196.230000px;}
.y8e{bottom:197.850000px;}
.y5d{bottom:206.490000px;}
.y56{bottom:208.830000px;}
.y2e{bottom:216.930000px;}
.ya3{bottom:225.750000px;}
.y2d{bottom:237.630000px;}
.y55{bottom:239.790000px;}
.ya2{bottom:246.450000px;}
.y2c{bottom:258.330000px;}
.y83{bottom:258.870000px;}
.ya1{bottom:267.150000px;}
.y5c{bottom:268.590000px;}
.y54{bottom:270.930000px;}
.y2b{bottom:279.030000px;}
.ya0{bottom:287.850000px;}
.y82{bottom:290.010000px;}
.y2a{bottom:299.730000px;}
.y53{bottom:301.890000px;}
.y9f{bottom:308.550000px;}
.y29{bottom:320.430000px;}
.y81{bottom:320.970000px;}
.y9e{bottom:329.250000px;}
.y5b{bottom:330.690000px;}
.y52{bottom:333.030000px;}
.y28{bottom:341.175000px;}
.y9d{bottom:349.995000px;}
.y80{bottom:352.155000px;}
.y27{bottom:361.875000px;}
.y51{bottom:364.035000px;}
.y9c{bottom:370.695000px;}
.y26{bottom:382.575000px;}
.y7f{bottom:383.115000px;}
.y9b{bottom:391.395000px;}
.y5a{bottom:392.835000px;}
.y50{bottom:395.175000px;}
.y25{bottom:403.275000px;}
.y7e{bottom:414.255000px;}
.y9a{bottom:418.035000px;}
.y4f{bottom:422.355000px;}
.y24{bottom:423.975000px;}
.y70{bottom:426.135000px;}
.y23{bottom:444.675000px;}
.y7d{bottom:445.215000px;}
.y4e{bottom:454.935000px;}
.y6f{bottom:457.275000px;}
.y22{bottom:465.375000px;}
.y4d{bottom:475.635000px;}
.y7c{bottom:476.355000px;}
.y21{bottom:486.075000px;}
.y6e{bottom:488.235000px;}
.y8d{bottom:492.015000px;}
.y4c{bottom:496.335000px;}
.y99{bottom:498.135000px;}
.y20{bottom:506.775000px;}
.y7b{bottom:507.315000px;}
.y8c{bottom:514.695000px;}
.y4b{bottom:517.035000px;}
.y98{bottom:518.835000px;}
.y6d{bottom:519.375000px;}
.y1f{bottom:527.475000px;}
.y4a{bottom:537.735000px;}
.y7a{bottom:538.455000px;}
.y97{bottom:545.475000px;}
.y1e{bottom:548.175000px;}
.y6c{bottom:550.335000px;}
.y49{bottom:558.435000px;}
.y1d{bottom:568.875000px;}
.y79{bottom:569.415000px;}
.y96{bottom:572.835000px;}
.y48{bottom:579.135000px;}
.y6b{bottom:581.475000px;}
.y1c{bottom:589.575000px;}
.y47{bottom:599.835000px;}
.y95{bottom:605.445000px;}
.y78{bottom:606.525000px;}
.y1b{bottom:610.305000px;}
.y6a{bottom:612.465000px;}
.y46{bottom:620.565000px;}
.y1a{bottom:631.005000px;}
.y77{bottom:637.485000px;}
.y45{bottom:641.265000px;}
.y94{bottom:642.525000px;}
.y69{bottom:643.605000px;}
.y19{bottom:651.705000px;}
.y44{bottom:661.965000px;}
.y76{bottom:668.625000px;}
.y18{bottom:672.405000px;}
.y93{bottom:673.485000px;}
.y68{bottom:674.565000px;}
.y43{bottom:682.665000px;}
.y8b{bottom:691.485000px;}
.y17{bottom:693.105000px;}
.y75{bottom:699.585000px;}
.y42{bottom:703.365000px;}
.y92{bottom:704.625000px;}
.y67{bottom:705.705000px;}
.y16{bottom:713.805000px;}
.y41{bottom:724.065000px;}
.y8a{bottom:728.385000px;}
.y74{bottom:730.725000px;}
.y91{bottom:731.805000px;}
.y15{bottom:734.505000px;}
.y66{bottom:736.665000px;}
.y40{bottom:744.765000px;}
.y14{bottom:755.205000px;}
.y89{bottom:759.525000px;}
.y73{bottom:761.685000px;}
.y90{bottom:764.925000px;}
.y3f{bottom:765.465000px;}
.y65{bottom:767.805000px;}
.y13{bottom:775.905000px;}
.y3e{bottom:786.165000px;}
.y72{bottom:788.865000px;}
.y88{bottom:790.485000px;}
.y8f{bottom:790.665000px;}
.y12{bottom:796.605000px;}
.y64{bottom:798.765000px;}
.y3d{bottom:806.865000px;}
.y11{bottom:817.305000px;}
.y71{bottom:821.625000px;}
.y3c{bottom:827.565000px;}
.y63{bottom:829.905000px;}
.y10{bottom:838.005000px;}
.y3b{bottom:848.265000px;}
.yaa{bottom:850.965000px;}
.y87{bottom:852.585000px;}
.yf{bottom:858.705000px;}
.y62{bottom:860.865000px;}
.y3a{bottom:868.965000px;}
.ya9{bottom:877.650000px;}
.ye{bottom:879.990000px;}
.y86{bottom:883.770000px;}
.y39{bottom:889.710000px;}
.y61{bottom:892.050000px;}
.ya8{bottom:904.470000px;}
.yd{bottom:904.830000px;}
.y38{bottom:910.410000px;}
.y85{bottom:914.730000px;}
.y59{bottom:920.850000px;}
.y60{bottom:923.010000px;}
.ya7{bottom:925.170000px;}
.y37{bottom:931.110000px;}
.yc{bottom:932.370000px;}
.y84{bottom:945.870000px;}
.y36{bottom:951.810000px;}
.y5f{bottom:954.150000px;}
.yb{bottom:960.090000px;}
.ya6{bottom:966.570000px;}
.y35{bottom:972.510000px;}
.y5e{bottom:981.330000px;}
.y58{bottom:982.950000px;}
.ya5{bottom:987.270000px;}
.ya{bottom:987.630000px;}
.y34{bottom:993.210000px;}
.ya4{bottom:1007.970000px;}
.y33{bottom:1013.910000px;}
.y9{bottom:1015.170000px;}
.y32{bottom:1034.610000px;}
.y8{bottom:1042.890000px;}
.y57{bottom:1045.050000px;}
.y31{bottom:1055.310000px;}
.y7{bottom:1070.430000px;}
.y30{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h7{height:59.343750px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h8{height:75.519844px;}
.h4{height:85.052461px;}
.h5{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.415987px;}
.x5{left:115.775987px;}
.x7{left:148.895987px;}
.x8{left:160.409987px;}
.xb{left:264.809987px;}
.x6{left:267.329987px;}
.x9{left:311.294987px;}
.x4{left:446.474987px;}
.x1{left:467.744987px;}
.xa{left:667.049987px;}
.xc{left:761.549987px;}
.xd{left:785.489987px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls4{letter-spacing:14.080000pt;}
.ls3{letter-spacing:57.263360pt;}
.ws5{word-spacing:-64.000000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-4.096000pt;}
._14{margin-left:-3.098880pt;}
._15{margin-left:-2.186240pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._11{width:2.589867pt;}
._e{width:4.288000pt;}
._f{width:5.376000pt;}
._16{width:6.272000pt;}
._c{width:7.552000pt;}
._d{width:8.512000pt;}
._17{width:10.154667pt;}
._a{width:11.648000pt;}
._b{width:12.544000pt;}
._1e{width:13.824000pt;}
._10{width:14.890667pt;}
._12{width:17.728000pt;}
._20{width:18.624000pt;}
._1d{width:19.904000pt;}
._18{width:21.568000pt;}
._19{width:22.474667pt;}
._1a{width:24.000000pt;}
._1b{width:25.082453pt;}
._1c{width:25.984000pt;}
._1f{width:27.392000pt;}
._22{width:28.672000pt;}
._23{width:32.896000pt;}
._24{width:33.866667pt;}
._21{width:40.640000pt;}
._4{width:46.072747pt;}
._5{width:47.349547pt;}
._2{width:52.859520pt;}
._3{width:53.818667pt;}
._8{width:65.820587pt;}
._9{width:66.819200pt;}
._6{width:134.830080pt;}
._7{width:135.812053pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:72.992000pt;}
.y5{bottom:91.392000pt;}
.y4{bottom:114.752000pt;}
.y3{bottom:136.986667pt;}
.y2{bottom:153.946667pt;}
.y2f{bottom:174.426667pt;}
.y8e{bottom:175.866667pt;}
.y5d{bottom:183.546667pt;}
.y56{bottom:185.626667pt;}
.y2e{bottom:192.826667pt;}
.ya3{bottom:200.666667pt;}
.y2d{bottom:211.226667pt;}
.y55{bottom:213.146667pt;}
.ya2{bottom:219.066667pt;}
.y2c{bottom:229.626667pt;}
.y83{bottom:230.106667pt;}
.ya1{bottom:237.466667pt;}
.y5c{bottom:238.746667pt;}
.y54{bottom:240.826667pt;}
.y2b{bottom:248.026667pt;}
.ya0{bottom:255.866667pt;}
.y82{bottom:257.786667pt;}
.y2a{bottom:266.426667pt;}
.y53{bottom:268.346667pt;}
.y9f{bottom:274.266667pt;}
.y29{bottom:284.826667pt;}
.y81{bottom:285.306667pt;}
.y9e{bottom:292.666667pt;}
.y5b{bottom:293.946667pt;}
.y52{bottom:296.026667pt;}
.y28{bottom:303.266667pt;}
.y9d{bottom:311.106667pt;}
.y80{bottom:313.026667pt;}
.y27{bottom:321.666667pt;}
.y51{bottom:323.586667pt;}
.y9c{bottom:329.506667pt;}
.y26{bottom:340.066667pt;}
.y7f{bottom:340.546667pt;}
.y9b{bottom:347.906667pt;}
.y5a{bottom:349.186667pt;}
.y50{bottom:351.266667pt;}
.y25{bottom:358.466667pt;}
.y7e{bottom:368.226667pt;}
.y9a{bottom:371.586667pt;}
.y4f{bottom:375.426667pt;}
.y24{bottom:376.866667pt;}
.y70{bottom:378.786667pt;}
.y23{bottom:395.266667pt;}
.y7d{bottom:395.746667pt;}
.y4e{bottom:404.386667pt;}
.y6f{bottom:406.466667pt;}
.y22{bottom:413.666667pt;}
.y4d{bottom:422.786667pt;}
.y7c{bottom:423.426667pt;}
.y21{bottom:432.066667pt;}
.y6e{bottom:433.986667pt;}
.y8d{bottom:437.346667pt;}
.y4c{bottom:441.186667pt;}
.y99{bottom:442.786667pt;}
.y20{bottom:450.466667pt;}
.y7b{bottom:450.946667pt;}
.y8c{bottom:457.506667pt;}
.y4b{bottom:459.586667pt;}
.y98{bottom:461.186667pt;}
.y6d{bottom:461.666667pt;}
.y1f{bottom:468.866667pt;}
.y4a{bottom:477.986667pt;}
.y7a{bottom:478.626667pt;}
.y97{bottom:484.866667pt;}
.y1e{bottom:487.266667pt;}
.y6c{bottom:489.186667pt;}
.y49{bottom:496.386667pt;}
.y1d{bottom:505.666667pt;}
.y79{bottom:506.146667pt;}
.y96{bottom:509.186667pt;}
.y48{bottom:514.786667pt;}
.y6b{bottom:516.866667pt;}
.y1c{bottom:524.066667pt;}
.y47{bottom:533.186667pt;}
.y95{bottom:538.173333pt;}
.y78{bottom:539.133333pt;}
.y1b{bottom:542.493333pt;}
.y6a{bottom:544.413333pt;}
.y46{bottom:551.613333pt;}
.y1a{bottom:560.893333pt;}
.y77{bottom:566.653333pt;}
.y45{bottom:570.013333pt;}
.y94{bottom:571.133333pt;}
.y69{bottom:572.093333pt;}
.y19{bottom:579.293333pt;}
.y44{bottom:588.413333pt;}
.y76{bottom:594.333333pt;}
.y18{bottom:597.693333pt;}
.y93{bottom:598.653333pt;}
.y68{bottom:599.613333pt;}
.y43{bottom:606.813333pt;}
.y8b{bottom:614.653333pt;}
.y17{bottom:616.093333pt;}
.y75{bottom:621.853333pt;}
.y42{bottom:625.213333pt;}
.y92{bottom:626.333333pt;}
.y67{bottom:627.293333pt;}
.y16{bottom:634.493333pt;}
.y41{bottom:643.613333pt;}
.y8a{bottom:647.453333pt;}
.y74{bottom:649.533333pt;}
.y91{bottom:650.493333pt;}
.y15{bottom:652.893333pt;}
.y66{bottom:654.813333pt;}
.y40{bottom:662.013333pt;}
.y14{bottom:671.293333pt;}
.y89{bottom:675.133333pt;}
.y73{bottom:677.053333pt;}
.y90{bottom:679.933333pt;}
.y3f{bottom:680.413333pt;}
.y65{bottom:682.493333pt;}
.y13{bottom:689.693333pt;}
.y3e{bottom:698.813333pt;}
.y72{bottom:701.213333pt;}
.y88{bottom:702.653333pt;}
.y8f{bottom:702.813333pt;}
.y12{bottom:708.093333pt;}
.y64{bottom:710.013333pt;}
.y3d{bottom:717.213333pt;}
.y11{bottom:726.493333pt;}
.y71{bottom:730.333333pt;}
.y3c{bottom:735.613333pt;}
.y63{bottom:737.693333pt;}
.y10{bottom:744.893333pt;}
.y3b{bottom:754.013333pt;}
.yaa{bottom:756.413333pt;}
.y87{bottom:757.853333pt;}
.yf{bottom:763.293333pt;}
.y62{bottom:765.213333pt;}
.y3a{bottom:772.413333pt;}
.ya9{bottom:780.133333pt;}
.ye{bottom:782.213333pt;}
.y86{bottom:785.573333pt;}
.y39{bottom:790.853333pt;}
.y61{bottom:792.933333pt;}
.ya8{bottom:803.973333pt;}
.yd{bottom:804.293333pt;}
.y38{bottom:809.253333pt;}
.y85{bottom:813.093333pt;}
.y59{bottom:818.533333pt;}
.y60{bottom:820.453333pt;}
.ya7{bottom:822.373333pt;}
.y37{bottom:827.653333pt;}
.yc{bottom:828.773333pt;}
.y84{bottom:840.773333pt;}
.y36{bottom:846.053333pt;}
.y5f{bottom:848.133333pt;}
.yb{bottom:853.413333pt;}
.ya6{bottom:859.173333pt;}
.y35{bottom:864.453333pt;}
.y5e{bottom:872.293333pt;}
.y58{bottom:873.733333pt;}
.ya5{bottom:877.573333pt;}
.ya{bottom:877.893333pt;}
.y34{bottom:882.853333pt;}
.ya4{bottom:895.973333pt;}
.y33{bottom:901.253333pt;}
.y9{bottom:902.373333pt;}
.y32{bottom:919.653333pt;}
.y8{bottom:927.013333pt;}
.y57{bottom:928.933333pt;}
.y31{bottom:938.053333pt;}
.y7{bottom:951.493333pt;}
.y30{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h7{height:52.750000pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h8{height:67.128750pt;}
.h4{height:75.602187pt;}
.h5{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.591988pt;}
.x5{left:102.911988pt;}
.x7{left:132.351988pt;}
.x8{left:142.586655pt;}
.xb{left:235.386655pt;}
.x6{left:237.626655pt;}
.x9{left:276.706655pt;}
.x4{left:396.866655pt;}
.x1{left:415.773322pt;}
.xa{left:592.933322pt;}
.xc{left:676.933322pt;}
.xd{left:698.213322pt;}
.x3{left:699.333322pt;}
}




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