
    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_5a4db42f02fd4c3aa7e4f2c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7ca16bb51b7e720a5382de72.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d32b03e4a7df8a9e798a5c9b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.348000px;}
.ws2{word-spacing:-16.680000px;}
.ws1{word-spacing:0.000000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(21,21,21);}
.fs6{font-size:6.000000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:102.000000px;}
.fs1{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.ye1{bottom:1.837500px;}
.yab{bottom:92.380815px;}
.y54{bottom:97.027821px;}
.yc5{bottom:99.052020px;}
.y22{bottom:102.848302px;}
.yaa{bottom:113.005814px;}
.y7b{bottom:114.871046px;}
.y53{bottom:117.652820px;}
.y21{bottom:123.473301px;}
.ya9{bottom:133.630812px;}
.y52{bottom:138.277818px;}
.y20{bottom:144.098299px;}
.ya8{bottom:154.255809px;}
.y51{bottom:158.902817px;}
.y7a{bottom:159.107888px;}
.y1f{bottom:164.723297px;}
.yc4{bottom:169.915890px;}
.ya7{bottom:174.880808px;}
.y50{bottom:179.527814px;}
.ya6{bottom:195.505806px;}
.y4f{bottom:200.152812px;}
.yc3{bottom:201.136888px;}
.y1e{bottom:205.973294px;}
.ya5{bottom:216.130805px;}
.y4e{bottom:220.777811px;}
.yc2{bottom:225.160890px;}
.y1d{bottom:226.598292px;}
.y4d{bottom:241.402809px;}
.y1c{bottom:247.223289px;}
.yc1{bottom:255.415887px;}
.ya4{bottom:257.380800px;}
.y4c{bottom:262.027806px;}
.y1b{bottom:267.848287px;}
.y79{bottom:274.782101px;}
.ya3{bottom:278.005799px;}
.y4b{bottom:282.652805px;}
.yc0{bottom:286.636887px;}
.y1a{bottom:288.473286px;}
.ya2{bottom:298.630796px;}
.y4a{bottom:303.277803px;}
.y19{bottom:309.098284px;}
.ybf{bottom:310.660887px;}
.y78{bottom:315.001941px;}
.ya1{bottom:319.255794px;}
.y49{bottom:323.902802px;}
.y18{bottom:329.723281px;}
.y77{bottom:333.751941px;}
.ya0{bottom:339.880792px;}
.ybe{bottom:340.915886px;}
.y48{bottom:344.296799px;}
.y17{bottom:350.348280px;}
.y76{bottom:352.501941px;}
.y9f{bottom:360.505791px;}
.y16{bottom:370.973278px;}
.y75{bottom:371.251939px;}
.ybd{bottom:372.136884px;}
.y47{bottom:377.908703px;}
.y9e{bottom:381.130788px;}
.y74{bottom:390.001938px;}
.y15{bottom:391.598275px;}
.ybc{bottom:396.160886px;}
.y46{bottom:398.533701px;}
.y9d{bottom:401.755786px;}
.y73{bottom:408.751938px;}
.y14{bottom:412.223274px;}
.y45{bottom:419.158699px;}
.y9c{bottom:422.380785px;}
.y72{bottom:427.501938px;}
.y13{bottom:432.848272px;}
.ybb{bottom:434.665884px;}
.y44{bottom:439.783696px;}
.y9b{bottom:443.005783px;}
.y71{bottom:446.251938px;}
.y12{bottom:453.473271px;}
.y43{bottom:460.408695px;}
.y9a{bottom:463.630780px;}
.y70{bottom:465.001936px;}
.yba{bottom:468.277788px;}
.y11{bottom:474.098268px;}
.y42{bottom:481.033693px;}
.y6f{bottom:483.751936px;}
.y99{bottom:484.255779px;}
.yb9{bottom:488.902786px;}
.y10{bottom:494.492266px;}
.y41{bottom:501.658692px;}
.y6e{bottom:502.501936px;}
.y98{bottom:504.880777px;}
.yb8{bottom:509.527783px;}
.y6d{bottom:521.251936px;}
.y40{bottom:522.283689px;}
.y97{bottom:525.505776px;}
.yf{bottom:528.104171px;}
.yb7{bottom:530.152782px;}
.y6c{bottom:540.001935px;}
.y3f{bottom:542.908687px;}
.ye{bottom:548.960169px;}
.yb6{bottom:550.777780px;}
.y6b{bottom:558.751935px;}
.y3e{bottom:563.533686px;}
.y96{bottom:566.755772px;}
.yd{bottom:569.816166px;}
.yb5{bottom:571.402779px;}
.y6a{bottom:577.501933px;}
.y3d{bottom:584.158684px;}
.y95{bottom:587.380770px;}
.yc{bottom:590.672165px;}
.yb4{bottom:592.027776px;}
.y69{bottom:596.251933px;}
.y3c{bottom:604.783682px;}
.y94{bottom:608.005768px;}
.yb{bottom:611.528163px;}
.yb3{bottom:612.652774px;}
.y68{bottom:615.001933px;}
.y3b{bottom:625.408680px;}
.y93{bottom:628.630765px;}
.ya{bottom:632.384162px;}
.yb2{bottom:633.277773px;}
.y67{bottom:633.751932px;}
.y3a{bottom:646.033678px;}
.y92{bottom:649.255764px;}
.y66{bottom:652.501932px;}
.y9{bottom:653.240158px;}
.yb1{bottom:653.902770px;}
.y39{bottom:666.658675px;}
.y91{bottom:669.880762px;}
.y65{bottom:671.251930px;}
.ydf{bottom:672.905802px;}
.y8{bottom:674.096157px;}
.yb0{bottom:674.527768px;}
.y38{bottom:687.283674px;}
.y64{bottom:690.001930px;}
.y90{bottom:690.505761px;}
.y7{bottom:694.952155px;}
.yaf{bottom:695.152767px;}
.y37{bottom:707.908672px;}
.y63{bottom:708.751930px;}
.y8f{bottom:711.130758px;}
.yde{bottom:713.125644px;}
.yae{bottom:715.546765px;}
.y6{bottom:715.808154px;}
.y62{bottom:727.501929px;}
.y36{bottom:728.533671px;}
.y8e{bottom:731.755756px;}
.ydd{bottom:731.875642px;}
.y5{bottom:736.664151px;}
.y61{bottom:746.251929px;}
.yad{bottom:749.158668px;}
.ydc{bottom:750.625642px;}
.y8d{bottom:752.380755px;}
.y4{bottom:757.520149px;}
.y60{bottom:765.001927px;}
.ydb{bottom:769.375641px;}
.y35{bottom:769.783666px;}
.y8c{bottom:773.005753px;}
.yda{bottom:788.125641px;}
.y34{bottom:790.408665px;}
.y5f{bottom:792.432864px;}
.y8b{bottom:793.630750px;}
.yd9{bottom:806.875641px;}
.y33{bottom:811.033664px;}
.y3{bottom:812.699150px;}
.y8a{bottom:814.255749px;}
.yd8{bottom:825.625639px;}
.y32{bottom:831.658660px;}
.y89{bottom:834.649747px;}
.yd7{bottom:844.375639px;}
.y2{bottom:851.885835px;}
.y31{bottom:852.283659px;}
.yd6{bottom:863.125639px;}
.y5e{bottom:863.296732px;}
.y88{bottom:868.261650px;}
.y30{bottom:872.908657px;}
.yd5{bottom:881.875639px;}
.y87{bottom:889.117648px;}
.y2f{bottom:893.533656px;}
.y5d{bottom:894.517732px;}
.y1{bottom:896.122677px;}
.yd4{bottom:900.625638px;}
.y86{bottom:909.973647px;}
.y2e{bottom:914.158653px;}
.y5c{bottom:918.541732px;}
.yd3{bottom:919.375638px;}
.y85{bottom:930.829645px;}
.y2d{bottom:934.783652px;}
.yd2{bottom:938.125636px;}
.y5b{bottom:948.796731px;}
.y84{bottom:951.685642px;}
.yac{bottom:955.408650px;}
.yd1{bottom:956.875636px;}
.y83{bottom:972.541641px;}
.yd0{bottom:975.625636px;}
.y2c{bottom:976.033649px;}
.y5a{bottom:980.017729px;}
.y82{bottom:993.397639px;}
.ycf{bottom:994.375635px;}
.y2b{bottom:996.658645px;}
.y59{bottom:1004.041731px;}
.yce{bottom:1013.125635px;}
.y81{bottom:1014.253638px;}
.y2a{bottom:1017.283644px;}
.ycd{bottom:1031.875633px;}
.y58{bottom:1034.296728px;}
.y80{bottom:1035.109635px;}
.y29{bottom:1037.908643px;}
.ycc{bottom:1050.625633px;}
.y7f{bottom:1055.965633px;}
.y28{bottom:1058.533641px;}
.y57{bottom:1065.517726px;}
.ycb{bottom:1069.375633px;}
.y7e{bottom:1076.821632px;}
.y27{bottom:1079.158638px;}
.yca{bottom:1088.125632px;}
.y56{bottom:1089.541728px;}
.y7d{bottom:1097.677631px;}
.y26{bottom:1099.783637px;}
.yc9{bottom:1106.875632px;}
.y25{bottom:1120.408635px;}
.yc8{bottom:1125.625632px;}
.y55{bottom:1128.046726px;}
.y24{bottom:1141.033634px;}
.yc7{bottom:1144.375632px;}
.ye0{bottom:1146.117756px;}
.y7c{bottom:1152.856629px;}
.y23{bottom:1161.658631px;}
.yc6{bottom:1163.125630px;}
.h8{height:6.257812px;}
.h7{height:43.804688px;}
.h6{height:56.320312px;}
.h2{height:62.578125px;}
.h5{height:68.835938px;}
.h4{height:106.382812px;}
.h3{height:118.898438px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:4.252500px;}
.x2{left:89.291870px;}
.x4{left:139.331870px;}
.x3{left:144.335870px;}
.x1{left:658.572130px;}
.x5{left:701.922130px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.309333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws1{word-spacing:0.000000pt;}
.fs6{font-size:5.333333pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:90.666667pt;}
.fs1{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:1.633333pt;}
.yab{bottom:82.116280pt;}
.y54{bottom:86.246952pt;}
.yc5{bottom:88.046240pt;}
.y22{bottom:91.420713pt;}
.yaa{bottom:100.449612pt;}
.y7b{bottom:102.107596pt;}
.y53{bottom:104.580284pt;}
.y21{bottom:109.754045pt;}
.ya9{bottom:118.782944pt;}
.y52{bottom:122.913616pt;}
.y20{bottom:128.087377pt;}
.ya8{bottom:137.116275pt;}
.y51{bottom:141.246948pt;}
.y7a{bottom:141.429233pt;}
.y1f{bottom:146.420708pt;}
.yc4{bottom:151.036347pt;}
.ya7{bottom:155.449607pt;}
.y50{bottom:159.580279pt;}
.ya6{bottom:173.782939pt;}
.y4f{bottom:177.913611pt;}
.yc3{bottom:178.788345pt;}
.y1e{bottom:183.087372pt;}
.ya5{bottom:192.116271pt;}
.y4e{bottom:196.246943pt;}
.yc2{bottom:200.143013pt;}
.y1d{bottom:201.420704pt;}
.y4d{bottom:214.580275pt;}
.y1c{bottom:219.754035pt;}
.yc1{bottom:227.036344pt;}
.ya4{bottom:228.782933pt;}
.y4c{bottom:232.913605pt;}
.y1b{bottom:238.087367pt;}
.y79{bottom:244.250756pt;}
.ya3{bottom:247.116265pt;}
.y4b{bottom:251.246937pt;}
.yc0{bottom:254.788344pt;}
.y1a{bottom:256.420699pt;}
.ya2{bottom:265.449596pt;}
.y4a{bottom:269.580269pt;}
.y19{bottom:274.754031pt;}
.ybf{bottom:276.143011pt;}
.y78{bottom:280.001725pt;}
.ya1{bottom:283.782928pt;}
.y49{bottom:287.913601pt;}
.y18{bottom:293.087361pt;}
.y77{bottom:296.668392pt;}
.ya0{bottom:302.116260pt;}
.ybe{bottom:303.036343pt;}
.y48{bottom:306.041599pt;}
.y17{bottom:311.420693pt;}
.y76{bottom:313.335059pt;}
.y9f{bottom:320.449592pt;}
.y16{bottom:329.754025pt;}
.y75{bottom:330.001724pt;}
.ybd{bottom:330.788341pt;}
.y47{bottom:335.918847pt;}
.y9e{bottom:338.782923pt;}
.y74{bottom:346.668389pt;}
.y15{bottom:348.087356pt;}
.ybc{bottom:352.143009pt;}
.y46{bottom:354.252179pt;}
.y9d{bottom:357.116255pt;}
.y73{bottom:363.335056pt;}
.y14{bottom:366.420688pt;}
.y45{bottom:372.585511pt;}
.y9c{bottom:375.449587pt;}
.y72{bottom:380.001723pt;}
.y13{bottom:384.754020pt;}
.ybb{bottom:386.369675pt;}
.y44{bottom:390.918841pt;}
.y9b{bottom:393.782919pt;}
.y71{bottom:396.668389pt;}
.y12{bottom:403.087352pt;}
.y43{bottom:409.252173pt;}
.y9a{bottom:412.116249pt;}
.y70{bottom:413.335055pt;}
.yba{bottom:416.246923pt;}
.y11{bottom:421.420683pt;}
.y42{bottom:427.585505pt;}
.y6f{bottom:430.001721pt;}
.y99{bottom:430.449581pt;}
.yb9{bottom:434.580255pt;}
.y10{bottom:439.548681pt;}
.y41{bottom:445.918837pt;}
.y6e{bottom:446.668388pt;}
.y98{bottom:448.782913pt;}
.yb8{bottom:452.913585pt;}
.y6d{bottom:463.335055pt;}
.y40{bottom:464.252168pt;}
.y97{bottom:467.116245pt;}
.yf{bottom:469.425929pt;}
.yb7{bottom:471.246917pt;}
.y6c{bottom:480.001720pt;}
.y3f{bottom:482.585500pt;}
.ye{bottom:487.964595pt;}
.yb6{bottom:489.580249pt;}
.y6b{bottom:496.668387pt;}
.y3e{bottom:500.918832pt;}
.y96{bottom:503.782908pt;}
.yd{bottom:506.503259pt;}
.yb5{bottom:507.913581pt;}
.y6a{bottom:513.335052pt;}
.y3d{bottom:519.252164pt;}
.y95{bottom:522.116240pt;}
.yc{bottom:525.041924pt;}
.yb4{bottom:526.246912pt;}
.y69{bottom:530.001719pt;}
.y3c{bottom:537.585495pt;}
.y94{bottom:540.449572pt;}
.yb{bottom:543.580589pt;}
.yb3{bottom:544.580244pt;}
.y68{bottom:546.668385pt;}
.y3b{bottom:555.918827pt;}
.y93{bottom:558.782903pt;}
.ya{bottom:562.119255pt;}
.yb2{bottom:562.913576pt;}
.y67{bottom:563.335051pt;}
.y3a{bottom:574.252159pt;}
.y92{bottom:577.116235pt;}
.y66{bottom:580.001717pt;}
.y9{bottom:580.657919pt;}
.yb1{bottom:581.246907pt;}
.y39{bottom:592.585489pt;}
.y91{bottom:595.449567pt;}
.y65{bottom:596.668383pt;}
.ydf{bottom:598.138491pt;}
.y8{bottom:599.196584pt;}
.yb0{bottom:599.580239pt;}
.y38{bottom:610.918821pt;}
.y64{bottom:613.335049pt;}
.y90{bottom:613.782899pt;}
.y7{bottom:617.735249pt;}
.yaf{bottom:617.913571pt;}
.y37{bottom:629.252153pt;}
.y63{bottom:630.001716pt;}
.y8f{bottom:632.116229pt;}
.yde{bottom:633.889461pt;}
.yae{bottom:636.041569pt;}
.y6{bottom:636.273915pt;}
.y62{bottom:646.668381pt;}
.y36{bottom:647.585485pt;}
.y8e{bottom:650.449561pt;}
.ydd{bottom:650.556127pt;}
.y5{bottom:654.812579pt;}
.y61{bottom:663.335048pt;}
.yad{bottom:665.918816pt;}
.ydc{bottom:667.222793pt;}
.y8d{bottom:668.782893pt;}
.y4{bottom:673.351244pt;}
.y60{bottom:680.001713pt;}
.ydb{bottom:683.889459pt;}
.y35{bottom:684.252148pt;}
.y8c{bottom:687.116225pt;}
.yda{bottom:700.556125pt;}
.y34{bottom:702.585480pt;}
.y5f{bottom:704.384768pt;}
.y8b{bottom:705.449556pt;}
.yd9{bottom:717.222792pt;}
.y33{bottom:720.918812pt;}
.y3{bottom:722.399244pt;}
.y8a{bottom:723.782888pt;}
.yd8{bottom:733.889457pt;}
.y32{bottom:739.252143pt;}
.y89{bottom:741.910887pt;}
.yd7{bottom:750.556124pt;}
.y2{bottom:757.231853pt;}
.y31{bottom:757.585475pt;}
.yd6{bottom:767.222791pt;}
.y5e{bottom:767.374873pt;}
.y88{bottom:771.788133pt;}
.y30{bottom:775.918807pt;}
.yd5{bottom:783.889457pt;}
.y87{bottom:790.326799pt;}
.y2f{bottom:794.252139pt;}
.y5d{bottom:795.126873pt;}
.y1{bottom:796.553491pt;}
.yd4{bottom:800.556123pt;}
.y86{bottom:808.865464pt;}
.y2e{bottom:812.585469pt;}
.y5c{bottom:816.481540pt;}
.yd3{bottom:817.222789pt;}
.y85{bottom:827.404129pt;}
.y2d{bottom:830.918801pt;}
.yd2{bottom:833.889455pt;}
.y5b{bottom:843.374872pt;}
.y84{bottom:845.942793pt;}
.yac{bottom:849.252133pt;}
.yd1{bottom:850.556121pt;}
.y83{bottom:864.481459pt;}
.yd0{bottom:867.222788pt;}
.y2c{bottom:867.585465pt;}
.y5a{bottom:871.126871pt;}
.y82{bottom:883.020124pt;}
.ycf{bottom:883.889453pt;}
.y2b{bottom:885.918796pt;}
.y59{bottom:892.481539pt;}
.yce{bottom:900.556120pt;}
.y81{bottom:901.558789pt;}
.y2a{bottom:904.252128pt;}
.ycd{bottom:917.222785pt;}
.y58{bottom:919.374869pt;}
.y80{bottom:920.097453pt;}
.y29{bottom:922.585460pt;}
.ycc{bottom:933.889452pt;}
.y7f{bottom:938.636119pt;}
.y28{bottom:940.918792pt;}
.y57{bottom:947.126868pt;}
.ycb{bottom:950.556119pt;}
.y7e{bottom:957.174784pt;}
.y27{bottom:959.252123pt;}
.yca{bottom:967.222784pt;}
.y56{bottom:968.481536pt;}
.y7d{bottom:975.713449pt;}
.y26{bottom:977.585455pt;}
.yc9{bottom:983.889451pt;}
.y25{bottom:995.918787pt;}
.yc8{bottom:1000.556117pt;}
.y55{bottom:1002.708201pt;}
.y24{bottom:1014.252119pt;}
.yc7{bottom:1017.222784pt;}
.ye0{bottom:1018.771339pt;}
.y7c{bottom:1024.761448pt;}
.y23{bottom:1032.585449pt;}
.yc6{bottom:1033.889449pt;}
.h8{height:5.562500pt;}
.h7{height:38.937500pt;}
.h6{height:50.062500pt;}
.h2{height:55.625000pt;}
.h5{height:61.187500pt;}
.h4{height:94.562500pt;}
.h3{height:105.687500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.780000pt;}
.x2{left:79.370551pt;}
.x4{left:123.850551pt;}
.x3{left:128.298551pt;}
.x1{left:585.397449pt;}
.x5{left:623.930783pt;}
}




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