
    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_0ba9a4ef5b4ad44f4a34857b.woff')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_c4ecbecd7659cc5eceebff6b.woff')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_90107c709c7847004995f837.woff')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;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-3.240000px;}
._0{margin-left:-1.782000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(21,21,21);}
.fs5{font-size:6.000000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:1.837500px;}
.ydc{bottom:89.246063px;}
.y88{bottom:90.288273px;}
.yb7{bottom:96.334821px;}
.y61{bottom:97.027821px;}
.y23{bottom:104.723310px;}
.ydb{bottom:107.996063px;}
.y53{bottom:109.783727px;}
.y87{bottom:111.144272px;}
.y60{bottom:117.652820px;}
.y22{bottom:125.348307px;}
.yda{bottom:126.746063px;}
.y52{bottom:130.408725px;}
.y86{bottom:132.000270px;}
.yb6{bottom:137.584818px;}
.y5f{bottom:138.277818px;}
.yd9{bottom:145.496062px;}
.y21{bottom:145.973305px;}
.y51{bottom:151.033724px;}
.y85{bottom:152.856269px;}
.yb5{bottom:158.209817px;}
.y5e{bottom:158.902817px;}
.yd8{bottom:164.246061px;}
.y20{bottom:166.598304px;}
.y50{bottom:171.658722px;}
.y84{bottom:173.712265px;}
.yb4{bottom:178.834814px;}
.y5d{bottom:179.527814px;}
.yd7{bottom:182.996061px;}
.y1f{bottom:187.223301px;}
.y4f{bottom:192.283719px;}
.y83{bottom:194.568264px;}
.yb3{bottom:199.459812px;}
.y5c{bottom:200.152812px;}
.yd6{bottom:201.746061px;}
.y4e{bottom:212.908717px;}
.y82{bottom:215.424262px;}
.yb2{bottom:220.084811px;}
.yd5{bottom:220.496061px;}
.y5b{bottom:220.777811px;}
.y1e{bottom:228.473298px;}
.y4d{bottom:233.533716px;}
.y81{bottom:236.280261px;}
.yd4{bottom:239.246060px;}
.yb1{bottom:240.709809px;}
.y5a{bottom:241.402809px;}
.y1d{bottom:249.098297px;}
.y4c{bottom:254.158715px;}
.y80{bottom:257.136258px;}
.yd3{bottom:257.996060px;}
.yb0{bottom:261.334806px;}
.y59{bottom:262.027806px;}
.y1c{bottom:269.723294px;}
.yb8{bottom:274.783711px;}
.yd2{bottom:276.746060px;}
.yaf{bottom:281.959804px;}
.y58{bottom:282.652805px;}
.y7f{bottom:287.751944px;}
.y1b{bottom:290.348292px;}
.y4b{bottom:295.408710px;}
.yd1{bottom:295.496060px;}
.yae{bottom:302.584803px;}
.y57{bottom:303.046803px;}
.y1a{bottom:310.973291px;}
.y4a{bottom:316.033708px;}
.yd0{bottom:322.926994px;}
.yad{bottom:323.209801px;}
.y19{bottom:331.598289px;}
.y7e{bottom:331.988786px;}
.y49{bottom:336.658707px;}
.yac{bottom:343.834798px;}
.y18{bottom:352.223286px;}
.y48{bottom:357.283704px;}
.yab{bottom:364.459797px;}
.y17{bottom:372.848284px;}
.y47{bottom:377.908703px;}
.yaa{bottom:385.084795px;}
.y16{bottom:393.473283px;}
.ycf{bottom:393.790863px;}
.y46{bottom:398.533701px;}
.ya9{bottom:405.709794px;}
.y15{bottom:414.098281px;}
.y56{bottom:419.158699px;}
.yce{bottom:425.011863px;}
.ya8{bottom:426.334791px;}
.y45{bottom:439.783696px;}
.ya7{bottom:446.959789px;}
.y7d{bottom:447.662997px;}
.ycd{bottom:449.035863px;}
.y14{bottom:455.348277px;}
.y44{bottom:460.408695px;}
.ya6{bottom:467.584788px;}
.y13{bottom:475.973275px;}
.ycc{bottom:479.290862px;}
.y43{bottom:481.033693px;}
.y7c{bottom:487.882839px;}
.ya5{bottom:488.209786px;}
.y12{bottom:496.598274px;}
.y42{bottom:501.658692px;}
.y7b{bottom:506.632837px;}
.ya4{bottom:508.834783px;}
.ycb{bottom:510.511860px;}
.y11{bottom:517.223271px;}
.y41{bottom:522.283689px;}
.y7a{bottom:525.382838px;}
.yca{bottom:534.535862px;}
.y10{bottom:537.848269px;}
.y40{bottom:542.908687px;}
.y79{bottom:544.132838px;}
.ya3{bottom:550.084780px;}
.yf{bottom:558.242268px;}
.y78{bottom:562.882838px;}
.y3f{bottom:563.533686px;}
.yc9{bottom:564.790858px;}
.ya2{bottom:570.709779px;}
.y77{bottom:581.632836px;}
.y3e{bottom:584.158684px;}
.ya1{bottom:591.334776px;}
.ye{bottom:591.854172px;}
.yc8{bottom:596.011859px;}
.y76{bottom:600.382836px;}
.y3d{bottom:604.783682px;}
.ya0{bottom:611.959774px;}
.yd{bottom:612.710169px;}
.y75{bottom:619.132836px;}
.yc7{bottom:620.035859px;}
.y55{bottom:625.408680px;}
.y9f{bottom:632.584773px;}
.yc{bottom:633.566168px;}
.y74{bottom:637.882836px;}
.y3c{bottom:646.033678px;}
.yc6{bottom:650.290857px;}
.y9e{bottom:653.209770px;}
.yb{bottom:654.422166px;}
.y73{bottom:656.632834px;}
.y3b{bottom:666.658675px;}
.y9d{bottom:673.834768px;}
.ya{bottom:675.278165px;}
.y72{bottom:675.382834px;}
.yc5{bottom:681.511855px;}
.y3a{bottom:687.283674px;}
.y71{bottom:694.132834px;}
.y9c{bottom:694.459767px;}
.y9{bottom:696.134162px;}
.yc4{bottom:705.535857px;}
.y39{bottom:707.908672px;}
.y70{bottom:712.882834px;}
.y9b{bottom:715.084765px;}
.y8{bottom:716.990160px;}
.y38{bottom:728.533671px;}
.y7{bottom:737.846159px;}
.y6f{bottom:740.313770px;}
.yc3{bottom:744.040855px;}
.y37{bottom:749.158668px;}
.y9a{bottom:756.334761px;}
.y6{bottom:758.702155px;}
.y36{bottom:769.783666px;}
.y99{bottom:776.959760px;}
.yc2{bottom:777.652760px;}
.y5{bottom:779.558154px;}
.y35{bottom:790.408665px;}
.y98{bottom:797.584758px;}
.yc1{bottom:798.277758px;}
.y4{bottom:800.414153px;}
.y34{bottom:811.033664px;}
.y6e{bottom:811.177640px;}
.y97{bottom:818.209755px;}
.yc0{bottom:818.902755px;}
.y3{bottom:821.270151px;}
.y33{bottom:831.658660px;}
.y96{bottom:838.834754px;}
.ybf{bottom:839.527754px;}
.y6d{bottom:842.398638px;}
.y2{bottom:851.885835px;}
.y32{bottom:852.283659px;}
.y95{bottom:859.459752px;}
.ybe{bottom:860.152752px;}
.y6c{bottom:866.422638px;}
.y31{bottom:872.908657px;}
.y94{bottom:880.084750px;}
.ybd{bottom:880.777750px;}
.y30{bottom:893.533656px;}
.y1{bottom:896.122677px;}
.y6b{bottom:896.677637px;}
.y93{bottom:900.709748px;}
.ybc{bottom:901.402747px;}
.y2f{bottom:914.158653px;}
.y92{bottom:921.334746px;}
.ybb{bottom:922.027746px;}
.y6a{bottom:927.898635px;}
.y2e{bottom:934.783652px;}
.y91{bottom:941.959744px;}
.yba{bottom:942.652744px;}
.y69{bottom:951.922636px;}
.y2d{bottom:955.408650px;}
.yb9{bottom:963.046743px;}
.y2c{bottom:976.033649px;}
.y68{bottom:982.177635px;}
.y90{bottom:983.209740px;}
.y2b{bottom:996.658645px;}
.y8f{bottom:1003.834738px;}
.y67{bottom:1013.398634px;}
.y2a{bottom:1017.283644px;}
.y8e{bottom:1024.459737px;}
.y66{bottom:1037.422634px;}
.y29{bottom:1037.908643px;}
.y8d{bottom:1045.084736px;}
.y54{bottom:1058.533641px;}
.y8c{bottom:1065.709732px;}
.y65{bottom:1067.677632px;}
.y28{bottom:1079.158638px;}
.y8b{bottom:1086.103731px;}
.y64{bottom:1098.898631px;}
.y27{bottom:1099.783637px;}
.y8a{bottom:1119.715635px;}
.y26{bottom:1120.408635px;}
.yde{bottom:1122.905789px;}
.y63{bottom:1122.922632px;}
.y89{bottom:1140.571633px;}
.y25{bottom:1141.033634px;}
.ydf{bottom:1146.117756px;}
.y62{bottom:1161.427631px;}
.y24{bottom:1161.658631px;}
.ydd{bottom:1163.125630px;}
.h7{height:6.257812px;}
.h6{height:43.804688px;}
.h5{height:56.320312px;}
.h2{height:62.578125px;}
.h4{height:68.835938px;}
.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;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-2.880000pt;}
._0{margin-left:-1.584000pt;}
.fs5{font-size:5.333333pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:1.633333pt;}
.ydc{bottom:79.329833pt;}
.y88{bottom:80.256243pt;}
.yb7{bottom:85.630952pt;}
.y61{bottom:86.246952pt;}
.y23{bottom:93.087387pt;}
.ydb{bottom:95.996500pt;}
.y53{bottom:97.585535pt;}
.y87{bottom:98.794908pt;}
.y60{bottom:104.580284pt;}
.y22{bottom:111.420717pt;}
.yda{bottom:112.663167pt;}
.y52{bottom:115.918867pt;}
.y86{bottom:117.333573pt;}
.yb6{bottom:122.297616pt;}
.y5f{bottom:122.913616pt;}
.yd9{bottom:129.329833pt;}
.y21{bottom:129.754049pt;}
.y51{bottom:134.252199pt;}
.y85{bottom:135.872239pt;}
.yb5{bottom:140.630948pt;}
.y5e{bottom:141.246948pt;}
.yd8{bottom:145.996499pt;}
.y20{bottom:148.087381pt;}
.y50{bottom:152.585531pt;}
.y84{bottom:154.410903pt;}
.yb4{bottom:158.964279pt;}
.y5d{bottom:159.580279pt;}
.yd7{bottom:162.663165pt;}
.y1f{bottom:166.420712pt;}
.y4f{bottom:170.918861pt;}
.y83{bottom:172.949568pt;}
.yb3{bottom:177.297611pt;}
.y5c{bottom:177.913611pt;}
.yd6{bottom:179.329832pt;}
.y4e{bottom:189.252193pt;}
.y82{bottom:191.488233pt;}
.yb2{bottom:195.630943pt;}
.yd5{bottom:195.996499pt;}
.y5b{bottom:196.246943pt;}
.y1e{bottom:203.087376pt;}
.y4d{bottom:207.585525pt;}
.y81{bottom:210.026899pt;}
.yd4{bottom:212.663164pt;}
.yb1{bottom:213.964275pt;}
.y5a{bottom:214.580275pt;}
.y1d{bottom:221.420708pt;}
.y4c{bottom:225.918857pt;}
.y80{bottom:228.565563pt;}
.yd3{bottom:229.329831pt;}
.yb0{bottom:232.297605pt;}
.y59{bottom:232.913605pt;}
.y1c{bottom:239.754039pt;}
.yb8{bottom:244.252188pt;}
.yd2{bottom:245.996497pt;}
.yaf{bottom:250.630937pt;}
.y58{bottom:251.246937pt;}
.y7f{bottom:255.779505pt;}
.y1b{bottom:258.087371pt;}
.y4b{bottom:262.585520pt;}
.yd1{bottom:262.663164pt;}
.yae{bottom:268.964269pt;}
.y57{bottom:269.374936pt;}
.y1a{bottom:276.420703pt;}
.y4a{bottom:280.918852pt;}
.yd0{bottom:287.046217pt;}
.yad{bottom:287.297601pt;}
.y19{bottom:294.754035pt;}
.y7e{bottom:295.101143pt;}
.y49{bottom:299.252184pt;}
.yac{bottom:305.630932pt;}
.y18{bottom:313.087365pt;}
.y48{bottom:317.585515pt;}
.yab{bottom:323.964264pt;}
.y17{bottom:331.420697pt;}
.y47{bottom:335.918847pt;}
.yaa{bottom:342.297596pt;}
.y16{bottom:349.754029pt;}
.ycf{bottom:350.036323pt;}
.y46{bottom:354.252179pt;}
.ya9{bottom:360.630928pt;}
.y15{bottom:368.087361pt;}
.y56{bottom:372.585511pt;}
.yce{bottom:377.788323pt;}
.ya8{bottom:378.964259pt;}
.y45{bottom:390.918841pt;}
.ya7{bottom:397.297591pt;}
.y7d{bottom:397.922664pt;}
.ycd{bottom:399.142989pt;}
.y14{bottom:404.754024pt;}
.y44{bottom:409.252173pt;}
.ya6{bottom:415.630923pt;}
.y13{bottom:423.087356pt;}
.ycc{bottom:426.036321pt;}
.y43{bottom:427.585505pt;}
.y7c{bottom:433.673635pt;}
.ya5{bottom:433.964255pt;}
.y12{bottom:441.420688pt;}
.y42{bottom:445.918837pt;}
.y7b{bottom:450.340300pt;}
.ya4{bottom:452.297585pt;}
.ycb{bottom:453.788320pt;}
.y11{bottom:459.754019pt;}
.y41{bottom:464.252168pt;}
.y7a{bottom:467.006967pt;}
.yca{bottom:475.142988pt;}
.y10{bottom:478.087351pt;}
.y40{bottom:482.585500pt;}
.y79{bottom:483.673633pt;}
.ya3{bottom:488.964249pt;}
.yf{bottom:496.215349pt;}
.y78{bottom:500.340300pt;}
.y3f{bottom:500.918832pt;}
.yc9{bottom:502.036319pt;}
.ya2{bottom:507.297581pt;}
.y77{bottom:517.006965pt;}
.y3e{bottom:519.252164pt;}
.ya1{bottom:525.630912pt;}
.ye{bottom:526.092597pt;}
.yc8{bottom:529.788319pt;}
.y76{bottom:533.673632pt;}
.y3d{bottom:537.585495pt;}
.ya0{bottom:543.964244pt;}
.yd{bottom:544.631261pt;}
.y75{bottom:550.340299pt;}
.yc7{bottom:551.142985pt;}
.y55{bottom:555.918827pt;}
.y9f{bottom:562.297576pt;}
.yc{bottom:563.169927pt;}
.y74{bottom:567.006965pt;}
.y3c{bottom:574.252159pt;}
.yc6{bottom:578.036317pt;}
.y9e{bottom:580.630907pt;}
.yb{bottom:581.708592pt;}
.y73{bottom:583.673631pt;}
.y3b{bottom:592.585489pt;}
.y9d{bottom:598.964239pt;}
.ya{bottom:600.247257pt;}
.y72{bottom:600.340297pt;}
.yc5{bottom:605.788316pt;}
.y3a{bottom:610.918821pt;}
.y71{bottom:617.006964pt;}
.y9c{bottom:617.297571pt;}
.y9{bottom:618.785921pt;}
.yc4{bottom:627.142984pt;}
.y39{bottom:629.252153pt;}
.y70{bottom:633.673631pt;}
.y9b{bottom:635.630903pt;}
.y8{bottom:637.324587pt;}
.y38{bottom:647.585485pt;}
.y7{bottom:655.863252pt;}
.y6f{bottom:658.056684pt;}
.yc3{bottom:661.369649pt;}
.y37{bottom:665.918816pt;}
.y9a{bottom:672.297565pt;}
.y6{bottom:674.401916pt;}
.y36{bottom:684.252148pt;}
.y99{bottom:690.630897pt;}
.yc2{bottom:691.246897pt;}
.y5{bottom:692.940581pt;}
.y35{bottom:702.585480pt;}
.y98{bottom:708.964229pt;}
.yc1{bottom:709.580229pt;}
.y4{bottom:711.479247pt;}
.y34{bottom:720.918812pt;}
.y6e{bottom:721.046791pt;}
.y97{bottom:727.297560pt;}
.yc0{bottom:727.913560pt;}
.y3{bottom:730.017912pt;}
.y33{bottom:739.252143pt;}
.y96{bottom:745.630892pt;}
.ybf{bottom:746.246892pt;}
.y6d{bottom:748.798789pt;}
.y2{bottom:757.231853pt;}
.y32{bottom:757.585475pt;}
.y95{bottom:763.964224pt;}
.ybe{bottom:764.580224pt;}
.y6c{bottom:770.153456pt;}
.y31{bottom:775.918807pt;}
.y94{bottom:782.297556pt;}
.ybd{bottom:782.913556pt;}
.y30{bottom:794.252139pt;}
.y1{bottom:796.553491pt;}
.y6b{bottom:797.046788pt;}
.y93{bottom:800.630887pt;}
.ybc{bottom:801.246887pt;}
.y2f{bottom:812.585469pt;}
.y92{bottom:818.964219pt;}
.ybb{bottom:819.580219pt;}
.y6a{bottom:824.798787pt;}
.y2e{bottom:830.918801pt;}
.y91{bottom:837.297551pt;}
.yba{bottom:837.913551pt;}
.y69{bottom:846.153455pt;}
.y2d{bottom:849.252133pt;}
.yb9{bottom:856.041549pt;}
.y2c{bottom:867.585465pt;}
.y68{bottom:873.046787pt;}
.y90{bottom:873.964213pt;}
.y2b{bottom:885.918796pt;}
.y8f{bottom:892.297545pt;}
.y67{bottom:900.798785pt;}
.y2a{bottom:904.252128pt;}
.y8e{bottom:910.630877pt;}
.y66{bottom:922.153452pt;}
.y29{bottom:922.585460pt;}
.y8d{bottom:928.964209pt;}
.y54{bottom:940.918792pt;}
.y8c{bottom:947.297540pt;}
.y65{bottom:949.046784pt;}
.y28{bottom:959.252123pt;}
.y8b{bottom:965.425539pt;}
.y64{bottom:976.798783pt;}
.y27{bottom:977.585455pt;}
.y8a{bottom:995.302787pt;}
.y26{bottom:995.918787pt;}
.yde{bottom:998.138479pt;}
.y63{bottom:998.153451pt;}
.y89{bottom:1013.841452pt;}
.y25{bottom:1014.252119pt;}
.ydf{bottom:1018.771339pt;}
.y62{bottom:1032.380116pt;}
.y24{bottom:1032.585449pt;}
.ydd{bottom:1033.889449pt;}
.h7{height:5.562500pt;}
.h6{height:38.937500pt;}
.h5{height:50.062500pt;}
.h2{height:55.625000pt;}
.h4{height:61.187500pt;}
.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; }
  