
    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_486fead9f238385ed6212fe2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dab6543c6422be4e9ed10e55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_5aebb1ca44faac0ca94a36fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_e91c36b12bd9c2af804cceb7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.360000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws0{word-spacing:-19.457280px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.300000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.457280px;}
._0{width:1.015920px;}
._2{width:2.148000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:88.416000px;}
.yec{bottom:116.316000px;}
.yfb{bottom:119.196000px;}
.y18{bottom:119.916000px;}
.ydf{bottom:120.816000px;}
.y84{bottom:123.336000px;}
.yae{bottom:126.756000px;}
.yc0{bottom:128.736000px;}
.y73{bottom:132.876000px;}
.y2f{bottom:142.776000px;}
.yd1{bottom:145.296000px;}
.y8a{bottom:153.750000px;}
.yfa{bottom:160.590000px;}
.y17{bottom:161.310000px;}
.y59{bottom:166.350000px;}
.yad{bottom:168.150000px;}
.yde{bottom:183.090000px;}
.y2e{bottom:184.170000px;}
.y83{bottom:185.790000px;}
.yeb{bottom:186.150000px;}
.ybf{bottom:191.190000px;}
.y72{bottom:195.150000px;}
.y9e{bottom:200.550000px;}
.yf9{bottom:201.990000px;}
.y16{bottom:202.710000px;}
.y68{bottom:204.690000px;}
.yd0{bottom:207.570000px;}
.y58{bottom:207.750000px;}
.yac{bottom:209.550000px;}
.y42{bottom:223.590000px;}
.ydd{bottom:224.490000px;}
.y2d{bottom:225.570000px;}
.y82{bottom:227.190000px;}
.yea{bottom:227.550000px;}
.ybe{bottom:232.590000px;}
.y71{bottom:236.550000px;}
.y15{bottom:244.110000px;}
.ycf{bottom:248.970000px;}
.y57{bottom:249.150000px;}
.yab{bottom:250.950000px;}
.yf8{bottom:252.390000px;}
.y41{bottom:264.990000px;}
.ydc{bottom:265.890000px;}
.y2c{bottom:266.970000px;}
.y81{bottom:268.590000px;}
.y9d{bottom:270.390000px;}
.ybd{bottom:273.990000px;}
.y70{bottom:277.950000px;}
.ye9{bottom:279.930000px;}
.y14{bottom:285.510000px;}
.yce{bottom:290.370000px;}
.yf7{bottom:293.790000px;}
.yaa{bottom:299.910000px;}
.y56{bottom:305.490000px;}
.y40{bottom:306.390000px;}
.ydb{bottom:307.290000px;}
.y67{bottom:308.370000px;}
.y9c{bottom:311.790000px;}
.ybc{bottom:315.390000px;}
.y6f{bottom:319.350000px;}
.y80{bottom:320.790000px;}
.y2b{bottom:323.490000px;}
.ye6{bottom:324.930000px;}
.y13{bottom:326.910000px;}
.ycd{bottom:331.770000px;}
.y89{bottom:334.290000px;}
.yf6{bottom:344.235000px;}
.y55{bottom:346.935000px;}
.y3f{bottom:347.835000px;}
.yda{bottom:348.735000px;}
.y66{bottom:349.815000px;}
.y9b{bottom:353.235000px;}
.y6e{bottom:360.795000px;}
.ya9{bottom:362.235000px;}
.ybb{bottom:364.215000px;}
.y2a{bottom:364.935000px;}
.ye5{bottom:366.375000px;}
.y12{bottom:368.355000px;}
.y88{bottom:375.735000px;}
.ycc{bottom:388.155000px;}
.y54{bottom:388.335000px;}
.y3e{bottom:389.235000px;}
.y7f{bottom:390.855000px;}
.y65{bottom:391.215000px;}
.y9a{bottom:394.635000px;}
.yd9{bottom:397.695000px;}
.ya8{bottom:403.635000px;}
.y29{bottom:406.155000px;}
.ye4{bottom:407.775000px;}
.y11{bottom:409.755000px;}
.y6d{bottom:417.135000px;}
.yba{bottom:426.675000px;}
.ycb{bottom:429.555000px;}
.y53{bottom:429.735000px;}
.y3d{bottom:430.635000px;}
.y7e{bottom:432.255000px;}
.ye8{bottom:432.615000px;}
.y99{bottom:436.035000px;}
.y64{bottom:443.595000px;}
.ya7{bottom:445.035000px;}
.y28{bottom:447.555000px;}
.ye3{bottom:449.175000px;}
.y10{bottom:451.155000px;}
.y6c{bottom:458.535000px;}
.yd8{bottom:460.155000px;}
.yb9{bottom:468.075000px;}
.yca{bottom:470.955000px;}
.y52{bottom:471.135000px;}
.y7d{bottom:473.655000px;}
.y98{bottom:484.995000px;}
.ya6{bottom:486.435000px;}
.y3c{bottom:487.155000px;}
.y27{bottom:488.955000px;}
.ye2{bottom:490.575000px;}
.yf{bottom:492.555000px;}
.y6b{bottom:499.935000px;}
.yd7{bottom:501.555000px;}
.yb8{bottom:509.475000px;}
.yc9{bottom:512.355000px;}
.y51{bottom:512.535000px;}
.y63{bottom:513.435000px;}
.y7c{bottom:515.055000px;}
.y3b{bottom:528.555000px;}
.ye1{bottom:531.975000px;}
.ye{bottom:533.955000px;}
.ya5{bottom:535.395000px;}
.yf5{bottom:536.835000px;}
.y6a{bottom:541.335000px;}
.yd6{bottom:542.955000px;}
.y26{bottom:545.475000px;}
.y97{bottom:547.455000px;}
.yb7{bottom:550.875000px;}
.yc8{bottom:553.755000px;}
.y50{bottom:553.935000px;}
.y62{bottom:554.835000px;}
.y7b{bottom:556.455000px;}
.y3a{bottom:569.955000px;}
.yd{bottom:575.355000px;}
.ye0{bottom:584.355000px;}
.y25{bottom:586.875000px;}
.yf4{bottom:587.235000px;}
.y96{bottom:588.855000px;}
.y69{bottom:590.295000px;}
.yd5{bottom:591.915000px;}
.y61{bottom:596.235000px;}
.y87{bottom:597.855000px;}
.yc7{bottom:602.715000px;}
.y7a{bottom:605.445000px;}
.yb6{bottom:607.245000px;}
.y4f{bottom:610.485000px;}
.y39{bottom:611.385000px;}
.yc{bottom:616.785000px;}
.y24{bottom:628.305000px;}
.y95{bottom:630.285000px;}
.y60{bottom:637.665000px;}
.y86{bottom:639.285000px;}
.yb5{bottom:648.645000px;}
.y4e{bottom:651.885000px;}
.y38{bottom:652.785000px;}
.yd4{bottom:654.225000px;}
.yb{bottom:658.005000px;}
.yc6{bottom:665.205000px;}
.y79{bottom:667.725000px;}
.y23{bottom:669.705000px;}
.y94{bottom:671.685000px;}
.y5f{bottom:679.065000px;}
.ya4{bottom:680.685000px;}
.y85{bottom:688.245000px;}
.yb4{bottom:690.045000px;}
.y4d{bottom:693.285000px;}
.y37{bottom:694.185000px;}
.yd3{bottom:695.625000px;}
.ya{bottom:699.405000px;}
.yc5{bottom:706.605000px;}
.y78{bottom:709.125000px;}
.y22{bottom:711.105000px;}
.y93{bottom:728.025000px;}
.yf3{bottom:729.465000px;}
.yb3{bottom:731.445000px;}
.y4c{bottom:734.685000px;}
.y5e{bottom:735.585000px;}
.ya3{bottom:737.025000px;}
.y9{bottom:740.805000px;}
.yc4{bottom:748.005000px;}
.y36{bottom:750.525000px;}
.y21{bottom:752.505000px;}
.y92{bottom:769.425000px;}
.yf2{bottom:770.865000px;}
.y4b{bottom:775.905000px;}
.y5d{bottom:776.805000px;}
.ya2{bottom:778.425000px;}
.yb2{bottom:780.405000px;}
.yc3{bottom:789.405000px;}
.y35{bottom:791.925000px;}
.y8{bottom:793.365000px;}
.y20{bottom:808.845000px;}
.y5c{bottom:818.205000px;}
.ya1{bottom:819.825000px;}
.yf1{bottom:821.265000px;}
.y91{bottom:825.765000px;}
.yc2{bottom:830.805000px;}
.y4a{bottom:832.425000px;}
.y34{bottom:833.325000px;}
.yb1{bottom:842.685000px;}
.y1f{bottom:850.245000px;}
.y5b{bottom:859.605000px;}
.ya0{bottom:861.225000px;}
.yf0{bottom:862.665000px;}
.y90{bottom:867.165000px;}
.yd2{bottom:868.785000px;}
.y7{bottom:872.250000px;}
.y49{bottom:873.870000px;}
.y33{bottom:874.770000px;}
.yb0{bottom:884.130000px;}
.y77{bottom:889.710000px;}
.y1e{bottom:891.690000px;}
.ye7{bottom:901.050000px;}
.y8f{bottom:908.610000px;}
.y9f{bottom:910.230000px;}
.yef{bottom:913.110000px;}
.y48{bottom:915.270000px;}
.y32{bottom:916.170000px;}
.yc1{bottom:921.030000px;}
.y76{bottom:931.110000px;}
.y1d{bottom:933.090000px;}
.yaf{bottom:936.510000px;}
.y6{bottom:947.310000px;}
.y8e{bottom:950.010000px;}
.y47{bottom:956.670000px;}
.y31{bottom:957.570000px;}
.yee{bottom:963.510000px;}
.y75{bottom:972.510000px;}
.y1c{bottom:985.470000px;}
.y5{bottom:996.450000px;}
.y46{bottom:998.070000px;}
.y30{bottom:998.970000px;}
.yed{bottom:1004.910000px;}
.y8d{bottom:1006.350000px;}
.y74{bottom:1013.910000px;}
.y45{bottom:1039.470000px;}
.y5a{bottom:1040.370000px;}
.y8c{bottom:1047.750000px;}
.y1b{bottom:1055.310000px;}
.y4{bottom:1073.850000px;}
.y8b{bottom:1089.150000px;}
.y44{bottom:1091.850000px;}
.y1a{bottom:1096.710000px;}
.y3{bottom:1132.350000px;}
.y43{bottom:1136.670000px;}
.y19{bottom:1138.140000px;}
.y1{bottom:1195.740000px;}
.h5{height:47.545312px;}
.h7{height:50.800781px;}
.h2{height:51.679688px;}
.h6{height:54.864844px;}
.h4{height:59.343750px;}
.h3{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:108.035987px;}
.x4{left:129.275987px;}
.x3{left:275.609987px;}
.x7{left:297.254987px;}
.x6{left:345.494987px;}
.x5{left:401.294987px;}
.x9{left:439.094987px;}
.x2{left:442.694987px;}
.x1{left:584.564987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.320000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-17.295360pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.295360pt;}
._0{width:0.903040pt;}
._2{width:1.909333pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:78.592000pt;}
.yec{bottom:103.392000pt;}
.yfb{bottom:105.952000pt;}
.y18{bottom:106.592000pt;}
.ydf{bottom:107.392000pt;}
.y84{bottom:109.632000pt;}
.yae{bottom:112.672000pt;}
.yc0{bottom:114.432000pt;}
.y73{bottom:118.112000pt;}
.y2f{bottom:126.912000pt;}
.yd1{bottom:129.152000pt;}
.y8a{bottom:136.666667pt;}
.yfa{bottom:142.746667pt;}
.y17{bottom:143.386667pt;}
.y59{bottom:147.866667pt;}
.yad{bottom:149.466667pt;}
.yde{bottom:162.746667pt;}
.y2e{bottom:163.706667pt;}
.y83{bottom:165.146667pt;}
.yeb{bottom:165.466667pt;}
.ybf{bottom:169.946667pt;}
.y72{bottom:173.466667pt;}
.y9e{bottom:178.266667pt;}
.yf9{bottom:179.546667pt;}
.y16{bottom:180.186667pt;}
.y68{bottom:181.946667pt;}
.yd0{bottom:184.506667pt;}
.y58{bottom:184.666667pt;}
.yac{bottom:186.266667pt;}
.y42{bottom:198.746667pt;}
.ydd{bottom:199.546667pt;}
.y2d{bottom:200.506667pt;}
.y82{bottom:201.946667pt;}
.yea{bottom:202.266667pt;}
.ybe{bottom:206.746667pt;}
.y71{bottom:210.266667pt;}
.y15{bottom:216.986667pt;}
.ycf{bottom:221.306667pt;}
.y57{bottom:221.466667pt;}
.yab{bottom:223.066667pt;}
.yf8{bottom:224.346667pt;}
.y41{bottom:235.546667pt;}
.ydc{bottom:236.346667pt;}
.y2c{bottom:237.306667pt;}
.y81{bottom:238.746667pt;}
.y9d{bottom:240.346667pt;}
.ybd{bottom:243.546667pt;}
.y70{bottom:247.066667pt;}
.ye9{bottom:248.826667pt;}
.y14{bottom:253.786667pt;}
.yce{bottom:258.106667pt;}
.yf7{bottom:261.146667pt;}
.yaa{bottom:266.586667pt;}
.y56{bottom:271.546667pt;}
.y40{bottom:272.346667pt;}
.ydb{bottom:273.146667pt;}
.y67{bottom:274.106667pt;}
.y9c{bottom:277.146667pt;}
.ybc{bottom:280.346667pt;}
.y6f{bottom:283.866667pt;}
.y80{bottom:285.146667pt;}
.y2b{bottom:287.546667pt;}
.ye6{bottom:288.826667pt;}
.y13{bottom:290.586667pt;}
.ycd{bottom:294.906667pt;}
.y89{bottom:297.146667pt;}
.yf6{bottom:305.986667pt;}
.y55{bottom:308.386667pt;}
.y3f{bottom:309.186667pt;}
.yda{bottom:309.986667pt;}
.y66{bottom:310.946667pt;}
.y9b{bottom:313.986667pt;}
.y6e{bottom:320.706667pt;}
.ya9{bottom:321.986667pt;}
.ybb{bottom:323.746667pt;}
.y2a{bottom:324.386667pt;}
.ye5{bottom:325.666667pt;}
.y12{bottom:327.426667pt;}
.y88{bottom:333.986667pt;}
.ycc{bottom:345.026667pt;}
.y54{bottom:345.186667pt;}
.y3e{bottom:345.986667pt;}
.y7f{bottom:347.426667pt;}
.y65{bottom:347.746667pt;}
.y9a{bottom:350.786667pt;}
.yd9{bottom:353.506667pt;}
.ya8{bottom:358.786667pt;}
.y29{bottom:361.026667pt;}
.ye4{bottom:362.466667pt;}
.y11{bottom:364.226667pt;}
.y6d{bottom:370.786667pt;}
.yba{bottom:379.266667pt;}
.ycb{bottom:381.826667pt;}
.y53{bottom:381.986667pt;}
.y3d{bottom:382.786667pt;}
.y7e{bottom:384.226667pt;}
.ye8{bottom:384.546667pt;}
.y99{bottom:387.586667pt;}
.y64{bottom:394.306667pt;}
.ya7{bottom:395.586667pt;}
.y28{bottom:397.826667pt;}
.ye3{bottom:399.266667pt;}
.y10{bottom:401.026667pt;}
.y6c{bottom:407.586667pt;}
.yd8{bottom:409.026667pt;}
.yb9{bottom:416.066667pt;}
.yca{bottom:418.626667pt;}
.y52{bottom:418.786667pt;}
.y7d{bottom:421.026667pt;}
.y98{bottom:431.106667pt;}
.ya6{bottom:432.386667pt;}
.y3c{bottom:433.026667pt;}
.y27{bottom:434.626667pt;}
.ye2{bottom:436.066667pt;}
.yf{bottom:437.826667pt;}
.y6b{bottom:444.386667pt;}
.yd7{bottom:445.826667pt;}
.yb8{bottom:452.866667pt;}
.yc9{bottom:455.426667pt;}
.y51{bottom:455.586667pt;}
.y63{bottom:456.386667pt;}
.y7c{bottom:457.826667pt;}
.y3b{bottom:469.826667pt;}
.ye1{bottom:472.866667pt;}
.ye{bottom:474.626667pt;}
.ya5{bottom:475.906667pt;}
.yf5{bottom:477.186667pt;}
.y6a{bottom:481.186667pt;}
.yd6{bottom:482.626667pt;}
.y26{bottom:484.866667pt;}
.y97{bottom:486.626667pt;}
.yb7{bottom:489.666667pt;}
.yc8{bottom:492.226667pt;}
.y50{bottom:492.386667pt;}
.y62{bottom:493.186667pt;}
.y7b{bottom:494.626667pt;}
.y3a{bottom:506.626667pt;}
.yd{bottom:511.426667pt;}
.ye0{bottom:519.426667pt;}
.y25{bottom:521.666667pt;}
.yf4{bottom:521.986667pt;}
.y96{bottom:523.426667pt;}
.y69{bottom:524.706667pt;}
.yd5{bottom:526.146667pt;}
.y61{bottom:529.986667pt;}
.y87{bottom:531.426667pt;}
.yc7{bottom:535.746667pt;}
.y7a{bottom:538.173333pt;}
.yb6{bottom:539.773333pt;}
.y4f{bottom:542.653333pt;}
.y39{bottom:543.453333pt;}
.yc{bottom:548.253333pt;}
.y24{bottom:558.493333pt;}
.y95{bottom:560.253333pt;}
.y60{bottom:566.813333pt;}
.y86{bottom:568.253333pt;}
.yb5{bottom:576.573333pt;}
.y4e{bottom:579.453333pt;}
.y38{bottom:580.253333pt;}
.yd4{bottom:581.533333pt;}
.yb{bottom:584.893333pt;}
.yc6{bottom:591.293333pt;}
.y79{bottom:593.533333pt;}
.y23{bottom:595.293333pt;}
.y94{bottom:597.053333pt;}
.y5f{bottom:603.613333pt;}
.ya4{bottom:605.053333pt;}
.y85{bottom:611.773333pt;}
.yb4{bottom:613.373333pt;}
.y4d{bottom:616.253333pt;}
.y37{bottom:617.053333pt;}
.yd3{bottom:618.333333pt;}
.ya{bottom:621.693333pt;}
.yc5{bottom:628.093333pt;}
.y78{bottom:630.333333pt;}
.y22{bottom:632.093333pt;}
.y93{bottom:647.133333pt;}
.yf3{bottom:648.413333pt;}
.yb3{bottom:650.173333pt;}
.y4c{bottom:653.053333pt;}
.y5e{bottom:653.853333pt;}
.ya3{bottom:655.133333pt;}
.y9{bottom:658.493333pt;}
.yc4{bottom:664.893333pt;}
.y36{bottom:667.133333pt;}
.y21{bottom:668.893333pt;}
.y92{bottom:683.933333pt;}
.yf2{bottom:685.213333pt;}
.y4b{bottom:689.693333pt;}
.y5d{bottom:690.493333pt;}
.ya2{bottom:691.933333pt;}
.yb2{bottom:693.693333pt;}
.yc3{bottom:701.693333pt;}
.y35{bottom:703.933333pt;}
.y8{bottom:705.213333pt;}
.y20{bottom:718.973333pt;}
.y5c{bottom:727.293333pt;}
.ya1{bottom:728.733333pt;}
.yf1{bottom:730.013333pt;}
.y91{bottom:734.013333pt;}
.yc2{bottom:738.493333pt;}
.y4a{bottom:739.933333pt;}
.y34{bottom:740.733333pt;}
.yb1{bottom:749.053333pt;}
.y1f{bottom:755.773333pt;}
.y5b{bottom:764.093333pt;}
.ya0{bottom:765.533333pt;}
.yf0{bottom:766.813333pt;}
.y90{bottom:770.813333pt;}
.yd2{bottom:772.253333pt;}
.y7{bottom:775.333333pt;}
.y49{bottom:776.773333pt;}
.y33{bottom:777.573333pt;}
.yb0{bottom:785.893333pt;}
.y77{bottom:790.853333pt;}
.y1e{bottom:792.613333pt;}
.ye7{bottom:800.933333pt;}
.y8f{bottom:807.653333pt;}
.y9f{bottom:809.093333pt;}
.yef{bottom:811.653333pt;}
.y48{bottom:813.573333pt;}
.y32{bottom:814.373333pt;}
.yc1{bottom:818.693333pt;}
.y76{bottom:827.653333pt;}
.y1d{bottom:829.413333pt;}
.yaf{bottom:832.453333pt;}
.y6{bottom:842.053333pt;}
.y8e{bottom:844.453333pt;}
.y47{bottom:850.373333pt;}
.y31{bottom:851.173333pt;}
.yee{bottom:856.453333pt;}
.y75{bottom:864.453333pt;}
.y1c{bottom:875.973333pt;}
.y5{bottom:885.733333pt;}
.y46{bottom:887.173333pt;}
.y30{bottom:887.973333pt;}
.yed{bottom:893.253333pt;}
.y8d{bottom:894.533333pt;}
.y74{bottom:901.253333pt;}
.y45{bottom:923.973333pt;}
.y5a{bottom:924.773333pt;}
.y8c{bottom:931.333333pt;}
.y1b{bottom:938.053333pt;}
.y4{bottom:954.533333pt;}
.y8b{bottom:968.133333pt;}
.y44{bottom:970.533333pt;}
.y1a{bottom:974.853333pt;}
.y3{bottom:1006.533333pt;}
.y43{bottom:1010.373333pt;}
.y19{bottom:1011.680000pt;}
.y1{bottom:1062.880000pt;}
.h5{height:42.262500pt;}
.h7{height:45.156250pt;}
.h2{height:45.937500pt;}
.h6{height:48.768750pt;}
.h4{height:52.750000pt;}
.h3{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.031988pt;}
.x4{left:114.911988pt;}
.x3{left:244.986655pt;}
.x7{left:264.226655pt;}
.x6{left:307.106655pt;}
.x5{left:356.706655pt;}
.x9{left:390.306655pt;}
.x2{left:393.506655pt;}
.x1{left:519.613322pt;}
}




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