
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_24380ec8325d97e8aba828f9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100000;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_43ada39938b764d67a2db49f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.135000;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_e3e67903384c43874987ce19.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_eb4f8c6d2b13a7b668c2f57b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.987000;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5c0cd5eadd441b19aa099c1b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.997000;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;}
.v1{vertical-align:90.188060px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.024998px;}
.ls1{letter-spacing:0.064125px;}
.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:-124.671461px;}
.ws4{word-spacing:-27.980819px;}
.ws2{word-spacing:-27.653084px;}
.ws5{word-spacing:-22.895999px;}
.ws6{word-spacing:-17.975542px;}
.ws1{word-spacing:-13.826542px;}
.ws3{word-spacing:-12.446999px;}
.ws7{word-spacing:0.000000px;}
._c{margin-left:-16.629717px;}
._12{margin-left:-14.242926px;}
._5{margin-left:-12.253738px;}
._6{margin-left:-6.423782px;}
._8{margin-left:-5.338735px;}
._2{margin-left:-4.221831px;}
._0{margin-left:-2.443302px;}
._1{margin-left:-1.152577px;}
._4{width:1.406094px;}
._7{width:2.950203px;}
._d{width:4.723945px;}
._e{width:5.961932px;}
._b{width:25.336225px;}
._9{width:26.676016px;}
._a{width:28.280806px;}
._11{width:32.749205px;}
._10{width:33.994160px;}
._f{width:35.482720px;}
._3{width:832.359036px;}
.fc4{color:transparent;}
.fc3{color:rgb(26,77,125);}
.fc2{color:rgb(255,49,49);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:53.999998px;}
.fs3{font-size:59.984997px;}
.fs4{font-size:71.999997px;}
.fsb{font-size:77.984997px;}
.fsc{font-size:82.079997px;}
.fse{font-size:83.969997px;}
.fsd{font-size:100.620000px;}
.fs8{font-size:101.969996px;}
.fs6{font-size:107.999996px;}
.fs7{font-size:119.969995px;}
.fsa{font-size:125.999995px;}
.fs1{font-size:131.984995px;}
.fs5{font-size:132.164999px;}
.fs2{font-size:161.955002px;}
.fs0{font-size:197.577592px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.000008px;}
.y57{bottom:11.196756px;}
.y56{bottom:31.446755px;}
.y55{bottom:51.696754px;}
.y54{bottom:71.946753px;}
.ya{bottom:97.371896px;}
.y2{bottom:116.714789px;}
.y9{bottom:117.621895px;}
.y8{bottom:137.871894px;}
.y7{bottom:164.780669px;}
.y5a{bottom:219.155787px;}
.y59{bottom:239.405786px;}
.y58{bottom:259.655785px;}
.y53{bottom:285.305784px;}
.y34{bottom:321.230903px;}
.y33{bottom:339.230902px;}
.y32{bottom:357.230901px;}
.y31{bottom:375.230900px;}
.y30{bottom:393.230900px;}
.y2f{bottom:411.230899px;}
.y2e{bottom:429.230898px;}
.y2d{bottom:447.230897px;}
.y2c{bottom:465.230897px;}
.y4{bottom:488.705956px;}
.yb{bottom:551.457409px;}
.y36{bottom:588.132407px;}
.y35{bottom:632.007406px;}
.y3b{bottom:694.482343px;}
.y38{bottom:758.422408px;}
.y37{bottom:800.047407px;}
.y3a{bottom:844.672465px;}
.y39{bottom:886.297463px;}
.y2b{bottom:939.124833px;}
.y47{bottom:974.899831px;}
.y1b{bottom:1068.517575px;}
.y2a{bottom:1069.349823px;}
.y1a{bottom:1105.642574px;}
.y29{bottom:1110.974822px;}
.y19{bottom:1142.767572px;}
.y28{bottom:1152.599820px;}
.y18{bottom:1179.892571px;}
.y27{bottom:1194.224818px;}
.y17{bottom:1217.017569px;}
.y26{bottom:1235.849817px;}
.y16{bottom:1254.142568px;}
.y25{bottom:1277.474815px;}
.y24{bottom:1319.099813px;}
.y15{bottom:1328.392565px;}
.y23{bottom:1360.724811px;}
.y14{bottom:1365.517563px;}
.y22{bottom:1402.349810px;}
.y13{bottom:1402.642562px;}
.y21{bottom:1443.974808px;}
.y12{bottom:1476.892558px;}
.y20{bottom:1485.599806px;}
.y11{bottom:1514.017557px;}
.y1f{bottom:1527.224804px;}
.y10{bottom:1551.142555px;}
.y1e{bottom:1568.849803px;}
.yf{bottom:1588.267554px;}
.y1d{bottom:1610.474801px;}
.ye{bottom:1625.392552px;}
.y1c{bottom:1652.099799px;}
.yd{bottom:1688.545406px;}
.yc{bottom:1734.670404px;}
.y40{bottom:1827.726440px;}
.y3f{bottom:1854.726439px;}
.y46{bottom:1886.775113px;}
.y43{bottom:1891.575173px;}
.y45{bottom:1913.775112px;}
.y42{bottom:1918.575172px;}
.y44{bottom:1940.775111px;}
.y41{bottom:1945.575171px;}
.y3e{bottom:1982.250169px;}
.y3d{bottom:2019.375168px;}
.y3c{bottom:2062.629886px;}
.y52{bottom:2169.696135px;}
.y51{bottom:2204.571134px;}
.y50{bottom:2239.446132px;}
.y4f{bottom:2274.321131px;}
.y4e{bottom:2309.196129px;}
.y4d{bottom:2378.946126px;}
.y4c{bottom:2413.821125px;}
.y4b{bottom:2448.696124px;}
.y4a{bottom:2518.753607px;}
.y49{bottom:2546.878606px;}
.y1{bottom:2557.979901px;}
.y48{bottom:2575.003605px;}
.y6{bottom:2669.624889px;}
.y5{bottom:2725.874886px;}
.hf{height:50.165998px;}
.h7{height:55.726062px;}
.h8{height:66.887997px;}
.h9{height:68.399997px;}
.h12{height:72.448062px;}
.h13{height:76.252317px;}
.h15{height:78.008127px;}
.h14{height:93.475980px;}
.he{height:94.730126px;}
.hc{height:100.331996px;}
.h11{height:109.019605px;}
.ha{height:109.168289px;}
.hd{height:111.452125px;}
.h10{height:117.053995px;}
.h5{height:122.614060px;}
.h6{height:150.456197px;}
.h3{height:163.199091px;}
.hb{height:199.207666px;}
.h2{height:228.239990px;}
.h4{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w1{width:233.999990px;}
.w2{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x3{left:7.653463px;}
.x14{left:15.056651px;}
.x13{left:16.688156px;}
.x7{left:18.412502px;}
.x6{left:20.079879px;}
.x8{left:23.719869px;}
.x12{left:25.015868px;}
.x1{left:28.079999px;}
.x1b{left:32.820025px;}
.x2{left:37.478862px;}
.x17{left:76.257210px;}
.x10{left:98.352537px;}
.x20{left:101.249996px;}
.xf{left:109.250975px;}
.x9{left:127.061661px;}
.xa{left:145.061661px;}
.x19{left:222.293090px;}
.x1f{left:266.161871px;}
.x1a{left:283.289181px;}
.x4{left:290.558265px;}
.x15{left:299.769991px;}
.x5{left:338.142247px;}
.xb{left:362.907355px;}
.xc{left:380.907354px;}
.x18{left:438.510348px;}
.xd{left:490.647589px;}
.xe{left:508.647589px;}
.x16{left:558.994596px;}
.x1c{left:564.599068px;}
.x21{left:580.085396px;}
.x11{left:628.734614px;}
.x1e{left:679.189796px;}
.x1d{left:687.767920px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:80.167165pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.022220pt;}
.ls1{letter-spacing:0.057000pt;}
.ws0{word-spacing:-110.819076pt;}
.ws4{word-spacing:-24.871839pt;}
.ws2{word-spacing:-24.580519pt;}
.ws5{word-spacing:-20.351999pt;}
.ws6{word-spacing:-15.978259pt;}
.ws1{word-spacing:-12.290259pt;}
.ws3{word-spacing:-11.064000pt;}
.ws7{word-spacing:0.000000pt;}
._c{margin-left:-14.781970pt;}
._12{margin-left:-12.660379pt;}
._5{margin-left:-10.892212pt;}
._6{margin-left:-5.710028pt;}
._8{margin-left:-4.745542pt;}
._2{margin-left:-3.752739pt;}
._0{margin-left:-2.171824pt;}
._1{margin-left:-1.024513pt;}
._4{width:1.249862pt;}
._7{width:2.622403pt;}
._d{width:4.199062pt;}
._e{width:5.299495pt;}
._b{width:22.521089pt;}
._9{width:23.712014pt;}
._a{width:25.138494pt;}
._11{width:29.110405pt;}
._10{width:30.217031pt;}
._f{width:31.540195pt;}
._3{width:739.874698pt;}
.fs9{font-size:47.999998pt;}
.fs3{font-size:53.319997pt;}
.fs4{font-size:63.999997pt;}
.fsb{font-size:69.319997pt;}
.fsc{font-size:72.959997pt;}
.fse{font-size:74.639997pt;}
.fsd{font-size:89.440000pt;}
.fs8{font-size:90.639996pt;}
.fs6{font-size:95.999996pt;}
.fs7{font-size:106.639996pt;}
.fsa{font-size:111.999995pt;}
.fs1{font-size:117.319995pt;}
.fs5{font-size:117.479999pt;}
.fs2{font-size:143.960002pt;}
.fs0{font-size:175.624526pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.000007pt;}
.y57{bottom:9.952672pt;}
.y56{bottom:27.952671pt;}
.y55{bottom:45.952670pt;}
.y54{bottom:63.952669pt;}
.ya{bottom:86.552796pt;}
.y2{bottom:103.746479pt;}
.y9{bottom:104.552796pt;}
.y8{bottom:122.552795pt;}
.y7{bottom:146.471706pt;}
.y5a{bottom:194.805144pt;}
.y59{bottom:212.805143pt;}
.y58{bottom:230.805142pt;}
.y53{bottom:253.605141pt;}
.y34{bottom:285.538580pt;}
.y33{bottom:301.538579pt;}
.y32{bottom:317.538579pt;}
.y31{bottom:333.538578pt;}
.y30{bottom:349.538577pt;}
.y2f{bottom:365.538577pt;}
.y2e{bottom:381.538576pt;}
.y2d{bottom:397.538575pt;}
.y2c{bottom:413.538575pt;}
.y4{bottom:434.405294pt;}
.yb{bottom:490.184364pt;}
.y36{bottom:522.784362pt;}
.y35{bottom:561.784361pt;}
.y3b{bottom:617.317638pt;}
.y38{bottom:674.153252pt;}
.y37{bottom:711.153250pt;}
.y3a{bottom:750.819969pt;}
.y39{bottom:787.819967pt;}
.y2b{bottom:834.777629pt;}
.y47{bottom:866.577628pt;}
.y1b{bottom:949.793400pt;}
.y2a{bottom:950.533176pt;}
.y1a{bottom:982.793399pt;}
.y29{bottom:987.533175pt;}
.y19{bottom:1015.793398pt;}
.y28{bottom:1024.533173pt;}
.y18{bottom:1048.793396pt;}
.y27{bottom:1061.533172pt;}
.y17{bottom:1081.793395pt;}
.y26{bottom:1098.533170pt;}
.y16{bottom:1114.793394pt;}
.y25{bottom:1135.533169pt;}
.y24{bottom:1172.533167pt;}
.y15{bottom:1180.793391pt;}
.y23{bottom:1209.533166pt;}
.y14{bottom:1213.793389pt;}
.y22{bottom:1246.533164pt;}
.y13{bottom:1246.793388pt;}
.y21{bottom:1283.533163pt;}
.y12{bottom:1312.793385pt;}
.y20{bottom:1320.533161pt;}
.y11{bottom:1345.793384pt;}
.y1f{bottom:1357.533159pt;}
.y10{bottom:1378.793383pt;}
.y1e{bottom:1394.533158pt;}
.yf{bottom:1411.793381pt;}
.y1d{bottom:1431.533156pt;}
.ye{bottom:1444.793380pt;}
.y1c{bottom:1468.533155pt;}
.yd{bottom:1500.929249pt;}
.yc{bottom:1541.929248pt;}
.y40{bottom:1624.645724pt;}
.y3f{bottom:1648.645723pt;}
.y46{bottom:1677.133434pt;}
.y43{bottom:1681.400154pt;}
.y45{bottom:1701.133433pt;}
.y42{bottom:1705.400153pt;}
.y44{bottom:1725.133432pt;}
.y41{bottom:1729.400152pt;}
.y3e{bottom:1762.000151pt;}
.y3d{bottom:1795.000149pt;}
.y3c{bottom:1833.448788pt;}
.y52{bottom:1928.618787pt;}
.y51{bottom:1959.618786pt;}
.y50{bottom:1990.618784pt;}
.y4f{bottom:2021.618783pt;}
.y4e{bottom:2052.618782pt;}
.y4d{bottom:2114.618779pt;}
.y4c{bottom:2145.618778pt;}
.y4b{bottom:2176.618777pt;}
.y4a{bottom:2238.892096pt;}
.y49{bottom:2263.892094pt;}
.y1{bottom:2273.759912pt;}
.y48{bottom:2288.892093pt;}
.y6{bottom:2372.999901pt;}
.y5{bottom:2422.999899pt;}
.hf{height:44.591998pt;}
.h7{height:49.534278pt;}
.h8{height:59.455998pt;}
.h9{height:60.799997pt;}
.h12{height:64.398277pt;}
.h13{height:67.779837pt;}
.h15{height:69.340557pt;}
.h14{height:83.089760pt;}
.he{height:84.204556pt;}
.hc{height:89.183996pt;}
.h11{height:96.906316pt;}
.ha{height:97.038479pt;}
.hd{height:99.068556pt;}
.h10{height:104.047996pt;}
.h5{height:108.990275pt;}
.h6{height:133.738842pt;}
.h3{height:145.065859pt;}
.hb{height:177.073481pt;}
.h2{height:202.879992pt;}
.h4{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w1{width:207.999991pt;}
.w2{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x3{left:6.803078pt;}
.x14{left:13.383690pt;}
.x13{left:14.833917pt;}
.x7{left:16.366668pt;}
.x6{left:17.848781pt;}
.x8{left:21.084328pt;}
.x12{left:22.236327pt;}
.x1{left:24.959999pt;}
.x1b{left:29.173356pt;}
.x2{left:33.314544pt;}
.x17{left:67.784187pt;}
.x10{left:87.424478pt;}
.x20{left:89.999996pt;}
.xf{left:97.111977pt;}
.x9{left:112.943699pt;}
.xa{left:128.943698pt;}
.x19{left:197.593857pt;}
.x1f{left:236.588329pt;}
.x1a{left:251.812605pt;}
.x4{left:258.274013pt;}
.x15{left:266.462214pt;}
.x5{left:300.570886pt;}
.xb{left:322.584315pt;}
.xc{left:338.584315pt;}
.x18{left:389.786976pt;}
.xd{left:436.131191pt;}
.xe{left:452.131190pt;}
.x16{left:496.884085pt;}
.x1c{left:501.865838pt;}
.x21{left:515.631463pt;}
.x11{left:558.875212pt;}
.x1e{left:603.724263pt;}
.x1d{left:611.349263pt;}
}




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