
    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_20b577481a0676ff0616868f.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_bf7720d23aeafd1310fd9fb5.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_3dddf7cdc1661b0e51577e0e.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;}
.ycb{bottom:1.837500px;}
.ya3{bottom:94.419198px;}
.y22{bottom:94.973988px;}
.y77{bottom:95.996069px;}
.yc6{bottom:105.371061px;}
.y52{bottom:109.783727px;}
.y76{bottom:114.746069px;}
.ya2{bottom:115.044195px;}
.y21{bottom:115.598986px;}
.yc5{bottom:124.121061px;}
.y51{bottom:130.408725px;}
.y75{bottom:133.496067px;}
.ya1{bottom:135.669194px;}
.y20{bottom:136.223984px;}
.yc4{bottom:142.871061px;}
.y50{bottom:151.033724px;}
.y74{bottom:152.246067px;}
.ya0{bottom:156.294192px;}
.yc3{bottom:161.621061px;}
.y73{bottom:170.996065px;}
.y4f{bottom:171.658722px;}
.y9f{bottom:176.919191px;}
.y1f{bottom:177.473980px;}
.yc2{bottom:180.371060px;}
.y72{bottom:189.746065px;}
.y4e{bottom:192.283719px;}
.y9e{bottom:197.544187px;}
.y1e{bottom:198.098979px;}
.yc1{bottom:199.121058px;}
.y71{bottom:208.496066px;}
.y4d{bottom:212.908717px;}
.yc0{bottom:217.871058px;}
.y9d{bottom:218.169186px;}
.y1d{bottom:218.723976px;}
.y70{bottom:227.246064px;}
.y56{bottom:233.533716px;}
.ybf{bottom:236.621058px;}
.y9c{bottom:238.794185px;}
.y1c{bottom:239.348974px;}
.y6f{bottom:245.996064px;}
.y4c{bottom:254.158715px;}
.ybe{bottom:255.371058px;}
.y9b{bottom:259.419183px;}
.y1b{bottom:259.973973px;}
.y6e{bottom:264.746064px;}
.ybd{bottom:274.121057px;}
.y4b{bottom:274.783711px;}
.y9a{bottom:280.044180px;}
.y1a{bottom:280.598970px;}
.y6d{bottom:283.496062px;}
.ybc{bottom:292.871057px;}
.y4a{bottom:295.408710px;}
.y99{bottom:300.669179px;}
.y19{bottom:301.223969px;}
.y6c{bottom:302.246062px;}
.ybb{bottom:311.621057px;}
.y49{bottom:316.033708px;}
.y6b{bottom:320.996061px;}
.y98{bottom:321.294177px;}
.y18{bottom:321.848967px;}
.yba{bottom:330.371055px;}
.y48{bottom:336.658707px;}
.y6a{bottom:339.746061px;}
.y97{bottom:341.919176px;}
.y17{bottom:342.473966px;}
.yb9{bottom:349.121054px;}
.y47{bottom:357.283704px;}
.y96{bottom:362.544173px;}
.y16{bottom:363.098962px;}
.y69{bottom:367.176996px;}
.yb8{bottom:367.871054px;}
.y46{bottom:377.908703px;}
.y95{bottom:383.169171px;}
.y15{bottom:383.723961px;}
.yb7{bottom:386.621054px;}
.y55{bottom:398.533701px;}
.y94{bottom:403.563169px;}
.y14{bottom:404.348959px;}
.yb6{bottom:405.371054px;}
.y45{bottom:419.158699px;}
.yb5{bottom:424.121052px;}
.y13{bottom:424.973958px;}
.y93{bottom:437.175073px;}
.y68{bottom:438.040864px;}
.y44{bottom:439.783696px;}
.yb4{bottom:442.871051px;}
.y12{bottom:445.598955px;}
.y92{bottom:458.031071px;}
.y43{bottom:460.408695px;}
.y11{bottom:466.223953px;}
.y67{bottom:469.261865px;}
.yb3{bottom:470.301987px;}
.y91{bottom:478.887069px;}
.y42{bottom:481.033693px;}
.y10{bottom:486.617952px;}
.y66{bottom:493.285865px;}
.y90{bottom:499.743068px;}
.y41{bottom:501.658692px;}
.yf{bottom:520.229856px;}
.y8f{bottom:520.599064px;}
.y40{bottom:522.283689px;}
.y65{bottom:523.540863px;}
.ye{bottom:541.085853px;}
.yb2{bottom:541.165855px;}
.y8e{bottom:541.455063px;}
.y3f{bottom:542.908687px;}
.y64{bottom:554.761862px;}
.yd{bottom:561.941851px;}
.y8d{bottom:562.311062px;}
.y3e{bottom:563.533686px;}
.yb1{bottom:572.386854px;}
.y63{bottom:578.785863px;}
.yc{bottom:582.797850px;}
.y8c{bottom:583.167060px;}
.y3d{bottom:584.158684px;}
.yb0{bottom:596.410856px;}
.yb{bottom:603.653848px;}
.y8b{bottom:604.023057px;}
.y3c{bottom:604.783682px;}
.y62{bottom:609.040860px;}
.ya{bottom:624.509845px;}
.y8a{bottom:624.879055px;}
.y3b{bottom:625.408680px;}
.yaf{bottom:626.665854px;}
.y61{bottom:640.261860px;}
.y9{bottom:645.365844px;}
.y3a{bottom:646.033678px;}
.yae{bottom:657.886852px;}
.y60{bottom:664.285860px;}
.y8{bottom:666.221843px;}
.y39{bottom:666.658675px;}
.y89{bottom:680.058055px;}
.yad{bottom:681.910854px;}
.y7{bottom:687.077841px;}
.y38{bottom:687.283674px;}
.y5f{bottom:702.790860px;}
.y54{bottom:707.908672px;}
.y6{bottom:707.933838px;}
.yac{bottom:712.165851px;}
.y88{bottom:719.244741px;}
.y37{bottom:728.533671px;}
.y5{bottom:728.789837px;}
.y5e{bottom:736.402762px;}
.yab{bottom:743.386849px;}
.y36{bottom:749.158668px;}
.y5d{bottom:757.027761px;}
.y87{bottom:763.481583px;}
.yaa{bottom:767.410851px;}
.y35{bottom:769.783666px;}
.y5c{bottom:777.652760px;}
.y4{bottom:783.968836px;}
.y34{bottom:790.408665px;}
.y5b{bottom:798.277758px;}
.ya9{bottom:805.915850px;}
.y33{bottom:811.033664px;}
.y3{bottom:816.260837px;}
.y5a{bottom:818.902755px;}
.y32{bottom:831.658660px;}
.y59{bottom:839.527754px;}
.y2{bottom:851.885835px;}
.y53{bottom:852.283659px;}
.y58{bottom:860.152752px;}
.y31{bottom:872.908657px;}
.y86{bottom:879.155796px;}
.y57{bottom:880.546750px;}
.ya8{bottom:880.777750px;}
.y30{bottom:893.533656px;}
.y1{bottom:896.122677px;}
.ya7{bottom:901.402747px;}
.y2f{bottom:914.158653px;}
.y85{bottom:919.375636px;}
.ya6{bottom:922.027746px;}
.y2e{bottom:934.783652px;}
.yca{bottom:937.147920px;}
.y84{bottom:938.125636px;}
.ya5{bottom:942.652744px;}
.y2d{bottom:955.408650px;}
.y83{bottom:956.875636px;}
.ya4{bottom:963.046743px;}
.yc9{bottom:972.905793px;}
.y82{bottom:975.625635px;}
.y2c{bottom:976.033649px;}
.y81{bottom:994.375635px;}
.y2b{bottom:996.658645px;}
.y80{bottom:1013.125633px;}
.y2a{bottom:1017.283644px;}
.y7f{bottom:1031.875633px;}
.y29{bottom:1037.908643px;}
.y7e{bottom:1050.625633px;}
.y28{bottom:1058.533641px;}
.yc8{bottom:1069.375632px;}
.y7d{bottom:1069.375633px;}
.y27{bottom:1079.158638px;}
.y7c{bottom:1088.125632px;}
.y26{bottom:1099.783637px;}
.y7b{bottom:1106.875632px;}
.y25{bottom:1120.408635px;}
.y7a{bottom:1125.625632px;}
.y24{bottom:1141.033634px;}
.yc7{bottom:1144.375630px;}
.y79{bottom:1144.375632px;}
.y23{bottom:1161.658631px;}
.y78{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;}
.ycb{bottom:1.633333pt;}
.ya3{bottom:83.928176pt;}
.y22{bottom:84.421323pt;}
.y77{bottom:85.329839pt;}
.yc6{bottom:93.663165pt;}
.y52{bottom:97.585535pt;}
.y76{bottom:101.996505pt;}
.ya2{bottom:102.261507pt;}
.y21{bottom:102.754655pt;}
.yc5{bottom:110.329832pt;}
.y51{bottom:115.918867pt;}
.y75{bottom:118.663171pt;}
.ya1{bottom:120.594839pt;}
.y20{bottom:121.087985pt;}
.yc4{bottom:126.996499pt;}
.y50{bottom:134.252199pt;}
.y74{bottom:135.329837pt;}
.ya0{bottom:138.928171pt;}
.yc3{bottom:143.663165pt;}
.y73{bottom:151.996503pt;}
.y4f{bottom:152.585531pt;}
.y9f{bottom:157.261503pt;}
.y1f{bottom:157.754649pt;}
.yc2{bottom:160.329831pt;}
.y72{bottom:168.663169pt;}
.y4e{bottom:170.918861pt;}
.y9e{bottom:175.594833pt;}
.y1e{bottom:176.087981pt;}
.yc1{bottom:176.996496pt;}
.y71{bottom:185.329836pt;}
.y4d{bottom:189.252193pt;}
.yc0{bottom:193.663163pt;}
.y9d{bottom:193.928165pt;}
.y1d{bottom:194.421312pt;}
.y70{bottom:201.996501pt;}
.y56{bottom:207.585525pt;}
.ybf{bottom:210.329829pt;}
.y9c{bottom:212.261497pt;}
.y1c{bottom:212.754644pt;}
.y6f{bottom:218.663168pt;}
.y4c{bottom:225.918857pt;}
.ybe{bottom:226.996496pt;}
.y9b{bottom:230.594829pt;}
.y1b{bottom:231.087976pt;}
.y6e{bottom:235.329835pt;}
.ybd{bottom:243.663161pt;}
.y4b{bottom:244.252188pt;}
.y9a{bottom:248.928160pt;}
.y1a{bottom:249.421307pt;}
.y6d{bottom:251.996500pt;}
.ybc{bottom:260.329828pt;}
.y4a{bottom:262.585520pt;}
.y99{bottom:267.261492pt;}
.y19{bottom:267.754639pt;}
.y6c{bottom:268.663167pt;}
.ybb{bottom:276.996495pt;}
.y49{bottom:280.918852pt;}
.y6b{bottom:285.329832pt;}
.y98{bottom:285.594824pt;}
.y18{bottom:286.087971pt;}
.yba{bottom:293.663160pt;}
.y48{bottom:299.252184pt;}
.y6a{bottom:301.996499pt;}
.y97{bottom:303.928156pt;}
.y17{bottom:304.421303pt;}
.yb9{bottom:310.329825pt;}
.y47{bottom:317.585515pt;}
.y96{bottom:322.261487pt;}
.y16{bottom:322.754633pt;}
.y69{bottom:326.379552pt;}
.yb8{bottom:326.996492pt;}
.y46{bottom:335.918847pt;}
.y95{bottom:340.594819pt;}
.y15{bottom:341.087965pt;}
.yb7{bottom:343.663159pt;}
.y55{bottom:354.252179pt;}
.y94{bottom:358.722817pt;}
.y14{bottom:359.421297pt;}
.yb6{bottom:360.329825pt;}
.y45{bottom:372.585511pt;}
.yb5{bottom:376.996491pt;}
.y13{bottom:377.754629pt;}
.y93{bottom:388.600065pt;}
.y68{bottom:389.369657pt;}
.y44{bottom:390.918841pt;}
.yb4{bottom:393.663156pt;}
.y12{bottom:396.087960pt;}
.y92{bottom:407.138729pt;}
.y43{bottom:409.252173pt;}
.y11{bottom:414.421292pt;}
.y67{bottom:417.121657pt;}
.yb3{bottom:418.046211pt;}
.y91{bottom:425.677395pt;}
.y42{bottom:427.585505pt;}
.y10{bottom:432.549291pt;}
.y66{bottom:438.476324pt;}
.y90{bottom:444.216060pt;}
.y41{bottom:445.918837pt;}
.yf{bottom:462.426539pt;}
.y8f{bottom:462.754724pt;}
.y40{bottom:464.252168pt;}
.y65{bottom:465.369656pt;}
.ye{bottom:480.965203pt;}
.yb2{bottom:481.036316pt;}
.y8e{bottom:481.293389pt;}
.y3f{bottom:482.585500pt;}
.y64{bottom:493.121655pt;}
.yd{bottom:499.503868pt;}
.y8d{bottom:499.832055pt;}
.y3e{bottom:500.918832pt;}
.yb1{bottom:508.788315pt;}
.y63{bottom:514.476323pt;}
.yc{bottom:518.042533pt;}
.y8c{bottom:518.370720pt;}
.y3d{bottom:519.252164pt;}
.yb0{bottom:530.142983pt;}
.yb{bottom:536.581199pt;}
.y8b{bottom:536.909384pt;}
.y3c{bottom:537.585495pt;}
.y62{bottom:541.369653pt;}
.ya{bottom:555.119863pt;}
.y8a{bottom:555.448049pt;}
.y3b{bottom:555.918827pt;}
.yaf{bottom:557.036315pt;}
.y61{bottom:569.121653pt;}
.y9{bottom:573.658528pt;}
.y3a{bottom:574.252159pt;}
.yae{bottom:584.788313pt;}
.y60{bottom:590.476320pt;}
.y8{bottom:592.197193pt;}
.y39{bottom:592.585489pt;}
.y89{bottom:604.496049pt;}
.yad{bottom:606.142981pt;}
.y7{bottom:610.735859pt;}
.y38{bottom:610.918821pt;}
.y5f{bottom:624.702987pt;}
.y54{bottom:629.252153pt;}
.y6{bottom:629.274523pt;}
.yac{bottom:633.036312pt;}
.y88{bottom:639.328659pt;}
.y37{bottom:647.585485pt;}
.y5{bottom:647.813188pt;}
.y5e{bottom:654.580233pt;}
.yab{bottom:660.788311pt;}
.y36{bottom:665.918816pt;}
.y5d{bottom:672.913565pt;}
.y87{bottom:678.650296pt;}
.yaa{bottom:682.142979pt;}
.y35{bottom:684.252148pt;}
.y5c{bottom:691.246897pt;}
.y4{bottom:696.861188pt;}
.y34{bottom:702.585480pt;}
.y5b{bottom:709.580229pt;}
.ya9{bottom:716.369644pt;}
.y33{bottom:720.918812pt;}
.y3{bottom:725.565188pt;}
.y5a{bottom:727.913560pt;}
.y32{bottom:739.252143pt;}
.y59{bottom:746.246892pt;}
.y2{bottom:757.231853pt;}
.y53{bottom:757.585475pt;}
.y58{bottom:764.580224pt;}
.y31{bottom:775.918807pt;}
.y86{bottom:781.471819pt;}
.y57{bottom:782.708223pt;}
.ya8{bottom:782.913556pt;}
.y30{bottom:794.252139pt;}
.y1{bottom:796.553491pt;}
.ya7{bottom:801.246887pt;}
.y2f{bottom:812.585469pt;}
.y85{bottom:817.222788pt;}
.ya6{bottom:819.580219pt;}
.y2e{bottom:830.918801pt;}
.yca{bottom:833.020373pt;}
.y84{bottom:833.889455pt;}
.ya5{bottom:837.913551pt;}
.y2d{bottom:849.252133pt;}
.y83{bottom:850.556121pt;}
.ya4{bottom:856.041549pt;}
.yc9{bottom:864.805149pt;}
.y82{bottom:867.222787pt;}
.y2c{bottom:867.585465pt;}
.y81{bottom:883.889453pt;}
.y2b{bottom:885.918796pt;}
.y80{bottom:900.556119pt;}
.y2a{bottom:904.252128pt;}
.y7f{bottom:917.222785pt;}
.y29{bottom:922.585460pt;}
.y7e{bottom:933.889452pt;}
.y28{bottom:940.918792pt;}
.yc8{bottom:950.556117pt;}
.y7d{bottom:950.556119pt;}
.y27{bottom:959.252123pt;}
.y7c{bottom:967.222784pt;}
.y26{bottom:977.585455pt;}
.y7b{bottom:983.889451pt;}
.y25{bottom:995.918787pt;}
.y7a{bottom:1000.556117pt;}
.y24{bottom:1014.252119pt;}
.yc7{bottom:1017.222783pt;}
.y79{bottom:1017.222784pt;}
.y23{bottom:1032.585449pt;}
.y78{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; }
  