
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_420a0a033162f714a858de46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_f8ba6e9c522bb4542ae479eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.998000;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:ff6;src:url('chunks/assets/font_afb8549e39bd97d8d5fd3afa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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:ff7;src:url('chunks/assets/font_a8f951b4d530fddcce733bf1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.007000;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.432336px;}
.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:-115.444419px;}
.ws1{word-spacing:-0.432336px;}
.ws2{word-spacing:0.000000px;}
._0{width:1.321586px;}
._1{width:3.022641px;}
._13{width:4.380204px;}
._f{width:6.062528px;}
._b{width:8.241997px;}
._15{width:9.723525px;}
._12{width:10.945373px;}
._5{width:12.111324px;}
._16{width:13.217184px;}
._19{width:15.703250px;}
._1c{width:17.692404px;}
._e{width:20.522952px;}
._8{width:22.374852px;}
._17{width:25.029116px;}
._1b{width:26.983164px;}
._3{width:29.745995px;}
._2{width:30.755784px;}
._14{width:32.754847px;}
._d{width:35.506246px;}
._c{width:36.946656px;}
._11{width:38.860933px;}
._10{width:40.013430px;}
._a{width:47.157257px;}
._9{width:48.458476px;}
._7{width:49.833919px;}
._6{width:50.837569px;}
._4{width:55.104553px;}
._1d{width:58.650365px;}
._1e{width:68.153798px;}
._18{width:76.739918px;}
._1a{width:117.739565px;}
.fc4{color:transparent;}
.fc3{color:rgb(93,201,225);}
.fc2{color:rgb(14,94,146);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(12,94,146);}
.fs1{font-size:36.013568px;}
.fs4{font-size:42.000824px;}
.fs8{font-size:52.129641px;}
.fs9{font-size:52.167457px;}
.fs5{font-size:54.020354px;}
.fsb{font-size:65.994864px;}
.fs6{font-size:70.586597px;}
.fs7{font-size:72.027138px;}
.fsa{font-size:78.014394px;}
.fs0{font-size:84.001650px;}
.fs3{font-size:109.976437px;}
.fs2{font-size:205.052254px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000016px;}
.y7{bottom:38.529427px;}
.y48{bottom:43.793440px;}
.y6{bottom:49.033384px;}
.y15{bottom:56.773505px;}
.y5{bottom:59.537342px;}
.y47{bottom:65.176497px;}
.y5c{bottom:69.674769px;}
.y4{bottom:70.041299px;}
.y3{bottom:80.545256px;}
.y46{bottom:86.559553px;}
.y5b{bottom:92.183250px;}
.ye{bottom:98.318615px;}
.y45{bottom:107.942610px;}
.y2b{bottom:124.166273px;}
.y44{bottom:129.325667px;}
.y5a{bottom:137.200211px;}
.y2a{bottom:141.047633px;}
.y43{bottom:150.708723px;}
.y59{bottom:159.708692px;}
.y42{bottom:172.091780px;}
.y58{bottom:182.217173px;}
.y20{bottom:186.735635px;}
.y37{bottom:201.633294px;}
.y36{bottom:223.016350px;}
.y57{bottom:227.234134px;}
.y1f{bottom:233.113209px;}
.y35{bottom:244.399407px;}
.y56{bottom:249.742615px;}
.y34{bottom:265.782464px;}
.y55{bottom:272.251095px;}
.y1e{bottom:279.489736px;}
.y33{bottom:287.165520px;}
.y54{bottom:317.268057px;}
.y41{bottom:318.957912px;}
.y1c{bottom:328.626789px;}
.y53{bottom:339.776537px;}
.y40{bottom:340.340968px;}
.y3f{bottom:361.724025px;}
.y52{bottom:362.285018px;}
.y2e{bottom:375.444990px;}
.y3e{bottom:383.107082px;}
.y51{bottom:384.793499px;}
.y2d{bottom:391.747320px;}
.y2c{bottom:408.049650px;}
.y2f{bottom:419.809565px;}
.y50{bottom:429.810460px;}
.y69{bottom:446.913544px;}
.y4f{bottom:452.318941px;}
.y28{bottom:453.390209px;}
.y4d{bottom:473.809882px;}
.y68{bottom:473.923721px;}
.y1b{bottom:474.732929px;}
.y4e{bottom:474.827421px;}
.y4c{bottom:494.067515px;}
.y1a{bottom:499.492258px;}
.y67{bottom:500.933898px;}
.y27{bottom:501.462428px;}
.y4b{bottom:514.325147px;}
.y26{bottom:518.343789px;}
.y19{bottom:524.251587px;}
.y66{bottom:527.944075px;}
.y31{bottom:533.642662px;}
.y4a{bottom:534.582780px;}
.y25{bottom:535.225149px;}
.y18{bottom:549.010915px;}
.y49{bottom:554.840412px;}
.y65{bottom:554.954252px;}
.y17{bottom:573.770244px;}
.yd{bottom:577.284920px;}
.y22{bottom:580.913083px;}
.y64{bottom:581.964428px;}
.y3d{bottom:586.119299px;}
.y16{bottom:598.529573px;}
.y3c{bottom:606.376932px;}
.y63{bottom:608.974605px;}
.yc{bottom:609.922217px;}
.y3b{bottom:626.634564px;}
.y24{bottom:627.290700px;}
.y62{bottom:635.984782px;}
.yb{bottom:642.559514px;}
.y3a{bottom:646.892197px;}
.y61{bottom:662.994959px;}
.y39{bottom:667.149829px;}
.y29{bottom:673.667176px;}
.ya{bottom:675.196811px;}
.y38{bottom:687.407462px;}
.y60{bottom:690.005136px;}
.y5f{bottom:717.015312px;}
.y21{bottom:720.043652px;}
.y14{bottom:721.411040px;}
.y13{bottom:738.292400px;}
.y5e{bottom:744.025489px;}
.y12{bottom:755.173761px;}
.y1d{bottom:766.421259px;}
.y5d{bottom:771.035666px;}
.y11{bottom:772.055121px;}
.y30{bottom:783.035309px;}
.y9{bottom:784.181621px;}
.y10{bottom:788.936482px;}
.yf{bottom:805.817842px;}
.y23{bottom:812.797724px;}
.y32{bottom:830.938987px;}
.y2{bottom:853.660035px;}
.y8{bottom:853.660040px;}
.h4{height:34.212890px;}
.h7{height:39.900783px;}
.hb{height:49.523159px;}
.hc{height:49.559084px;}
.h8{height:51.319336px;}
.he{height:62.695121px;}
.h9{height:67.057267px;}
.ha{height:68.425781px;}
.hd{height:74.113674px;}
.h3{height:79.801567px;}
.h6{height:88.421055px;}
.h5{height:144.561839px;}
.h2{height:893.249963px;}
.h0{height:893.249979px;}
.h1{height:893.250000px;}
.w2{width:1263.374947px;}
.w0{width:1263.375000px;}
.w1{width:1263.750000px;}
.x0{left:0.000000px;}
.x1f{left:21.727261px;}
.x1a{left:84.992015px;}
.x26{left:102.487859px;}
.x1{left:103.556674px;}
.x24{left:106.389708px;}
.x1b{left:142.844452px;}
.x18{left:163.192108px;}
.x1e{left:196.454157px;}
.x20{left:208.108031px;}
.x19{left:238.648272px;}
.x21{left:248.025421px;}
.x23{left:295.556996px;}
.x22{left:341.804889px;}
.x25{left:361.632368px;}
.x27{left:366.733911px;}
.x28{left:460.811317px;}
.x2{left:504.040074px;}
.x8{left:505.047943px;}
.x3{left:508.471431px;}
.x4{left:510.804342px;}
.x14{left:520.147769px;}
.x5{left:521.320022px;}
.x15{left:525.792474px;}
.x13{left:537.029130px;}
.x1c{left:539.169630px;}
.x29{left:543.617907px;}
.x12{left:550.252862px;}
.xe{left:558.329737px;}
.x2b{left:574.707746px;}
.x2a{left:577.239950px;}
.x17{left:578.617065px;}
.x9{left:585.128896px;}
.x16{left:613.733812px;}
.x10{left:636.775309px;}
.xa{left:644.881879px;}
.xf{left:675.971718px;}
.xb{left:716.803508px;}
.xc{left:750.687949px;}
.xd{left:758.356279px;}
.x7{left:871.400880px;}
.x2c{left:882.276191px;}
.x11{left:945.278205px;}
.x6{left:977.354239px;}
.x35{left:979.185751px;}
.x2e{left:997.174951px;}
.x2f{left:1023.006950px;}
.x1d{left:1028.824409px;}
.x39{left:1031.693816px;}
.x37{left:1083.164381px;}
.x31{left:1091.886417px;}
.x33{left:1101.206335px;}
.x36{left:1108.908456px;}
.x2d{left:1176.082203px;}
.x3a{left:1183.344710px;}
.x34{left:1197.430090px;}
.x38{left:1208.754669px;}
.x32{left:1217.388787px;}
.x30{left:1224.000654px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.384299pt;}
.ws0{word-spacing:-102.617262pt;}
.ws1{word-spacing:-0.384299pt;}
.ws2{word-spacing:0.000000pt;}
._0{width:1.174743pt;}
._1{width:2.686792pt;}
._13{width:3.893515pt;}
._f{width:5.388914pt;}
._b{width:7.326220pt;}
._15{width:8.643134pt;}
._12{width:9.729220pt;}
._5{width:10.765621pt;}
._16{width:11.748608pt;}
._19{width:13.958444pt;}
._1c{width:15.726581pt;}
._e{width:18.242624pt;}
._8{width:19.888757pt;}
._17{width:22.248103pt;}
._1b{width:23.985035pt;}
._3{width:26.440884pt;}
._2{width:27.338475pt;}
._14{width:29.115420pt;}
._d{width:31.561108pt;}
._c{width:32.841472pt;}
._11{width:34.543051pt;}
._10{width:35.567493pt;}
._a{width:41.917562pt;}
._9{width:43.074201pt;}
._7{width:44.296817pt;}
._6{width:45.188951pt;}
._4{width:48.981825pt;}
._1d{width:52.133657pt;}
._1e{width:60.581154pt;}
._18{width:68.213260pt;}
._1a{width:104.657391pt;}
.fs1{font-size:32.012060pt;}
.fs4{font-size:37.334066pt;}
.fs8{font-size:46.337458pt;}
.fs9{font-size:46.371073pt;}
.fs5{font-size:48.018092pt;}
.fsb{font-size:58.662102pt;}
.fs6{font-size:62.743642pt;}
.fs7{font-size:64.024123pt;}
.fsa{font-size:69.346128pt;}
.fs0{font-size:74.668133pt;}
.fs3{font-size:97.756832pt;}
.fs2{font-size:182.268671pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000014pt;}
.y7{bottom:34.248380pt;}
.y48{bottom:38.927502pt;}
.y6{bottom:43.585231pt;}
.y15{bottom:50.465337pt;}
.y5{bottom:52.922082pt;}
.y47{bottom:57.934664pt;}
.y5c{bottom:61.933128pt;}
.y4{bottom:62.258933pt;}
.y3{bottom:71.595783pt;}
.y46{bottom:76.941825pt;}
.y5b{bottom:81.940667pt;}
.ye{bottom:87.394325pt;}
.y45{bottom:95.948987pt;}
.y2b{bottom:110.370020pt;}
.y44{bottom:114.956148pt;}
.y5a{bottom:121.955743pt;}
.y2a{bottom:125.375674pt;}
.y43{bottom:133.963310pt;}
.y59{bottom:141.963282pt;}
.y42{bottom:152.970471pt;}
.y58{bottom:161.970820pt;}
.y20{bottom:165.987231pt;}
.y37{bottom:179.229594pt;}
.y36{bottom:198.236756pt;}
.y57{bottom:201.985897pt;}
.y1f{bottom:207.211742pt;}
.y35{bottom:217.243917pt;}
.y56{bottom:221.993435pt;}
.y34{bottom:236.251079pt;}
.y55{bottom:242.000974pt;}
.y1e{bottom:248.435321pt;}
.y33{bottom:255.258240pt;}
.y54{bottom:282.016050pt;}
.y41{bottom:283.518144pt;}
.y1c{bottom:292.112701pt;}
.y53{bottom:302.023589pt;}
.y40{bottom:302.525305pt;}
.y3f{bottom:321.532467pt;}
.y52{bottom:322.031127pt;}
.y2e{bottom:333.728880pt;}
.y3e{bottom:340.539628pt;}
.y51{bottom:342.038665pt;}
.y2d{bottom:348.219840pt;}
.y2c{bottom:362.710800pt;}
.y2f{bottom:373.164058pt;}
.y50{bottom:382.053742pt;}
.y69{bottom:397.256484pt;}
.y4f{bottom:402.061281pt;}
.y28{bottom:403.013519pt;}
.y4d{bottom:421.164340pt;}
.y68{bottom:421.265530pt;}
.y1b{bottom:421.984826pt;}
.y4e{bottom:422.068819pt;}
.y4c{bottom:439.171124pt;}
.y1a{bottom:443.993118pt;}
.y67{bottom:445.274576pt;}
.y27{bottom:445.744381pt;}
.y4b{bottom:457.177909pt;}
.y26{bottom:460.750035pt;}
.y19{bottom:466.001410pt;}
.y66{bottom:469.283622pt;}
.y31{bottom:474.349033pt;}
.y4a{bottom:475.184693pt;}
.y25{bottom:475.755688pt;}
.y18{bottom:488.009703pt;}
.y49{bottom:493.191478pt;}
.y65{bottom:493.292668pt;}
.y17{bottom:510.017995pt;}
.yd{bottom:513.142151pt;}
.y22{bottom:516.367185pt;}
.y64{bottom:517.301714pt;}
.y3d{bottom:520.994933pt;}
.y16{bottom:532.026287pt;}
.y3c{bottom:539.001717pt;}
.y63{bottom:541.310760pt;}
.yc{bottom:542.153081pt;}
.y3b{bottom:557.008502pt;}
.y24{bottom:557.591734pt;}
.y62{bottom:565.319806pt;}
.yb{bottom:571.164012pt;}
.y3a{bottom:575.015286pt;}
.y61{bottom:589.328852pt;}
.y39{bottom:593.022071pt;}
.y29{bottom:598.815268pt;}
.ya{bottom:600.174943pt;}
.y38{bottom:611.028855pt;}
.y60{bottom:613.337898pt;}
.y5f{bottom:637.346944pt;}
.y21{bottom:640.038802pt;}
.y14{bottom:641.254257pt;}
.y13{bottom:656.259911pt;}
.y5e{bottom:661.355990pt;}
.y12{bottom:671.265565pt;}
.y1d{bottom:681.263341pt;}
.y5d{bottom:685.365036pt;}
.y11{bottom:686.271219pt;}
.y30{bottom:696.031385pt;}
.y9{bottom:697.050330pt;}
.y10{bottom:701.276873pt;}
.yf{bottom:716.282526pt;}
.y23{bottom:722.486866pt;}
.y32{bottom:738.612433pt;}
.y2{bottom:758.808920pt;}
.y8{bottom:758.808925pt;}
.h4{height:30.411457pt;}
.h7{height:35.467363pt;}
.hb{height:44.020586pt;}
.hc{height:44.052519pt;}
.h8{height:45.617187pt;}
.he{height:55.728997pt;}
.h9{height:59.606459pt;}
.ha{height:60.822917pt;}
.hd{height:65.878822pt;}
.h3{height:70.934727pt;}
.h6{height:78.596493pt;}
.h5{height:128.499413pt;}
.h2{height:793.999967pt;}
.h0{height:793.999981pt;}
.h1{height:794.000000pt;}
.w2{width:1122.999953pt;}
.w0{width:1123.000000pt;}
.w1{width:1123.333333pt;}
.x0{left:0.000000pt;}
.x1f{left:19.313120pt;}
.x1a{left:75.548458pt;}
.x26{left:91.100319pt;}
.x1{left:92.050377pt;}
.x24{left:94.568630pt;}
.x1b{left:126.972846pt;}
.x18{left:145.059652pt;}
.x1e{left:174.625918pt;}
.x20{left:184.984917pt;}
.x19{left:212.131798pt;}
.x21{left:220.467041pt;}
.x23{left:262.717329pt;}
.x22{left:303.826568pt;}
.x25{left:321.450994pt;}
.x27{left:325.985699pt;}
.x28{left:409.610060pt;}
.x2{left:448.035622pt;}
.x8{left:448.931504pt;}
.x3{left:451.974606pt;}
.x4{left:454.048304pt;}
.x14{left:462.353573pt;}
.x5{left:463.395575pt;}
.x15{left:467.371088pt;}
.x13{left:477.359227pt;}
.x1c{left:479.261894pt;}
.x29{left:483.215918pt;}
.x12{left:489.113655pt;}
.xe{left:496.293099pt;}
.x2b{left:510.851330pt;}
.x2a{left:513.102178pt;}
.x17{left:514.326280pt;}
.x9{left:520.114575pt;}
.x16{left:545.541166pt;}
.x10{left:566.022497pt;}
.xa{left:573.228337pt;}
.xf{left:600.863749pt;}
.xb{left:637.158674pt;}
.xc{left:667.278177pt;}
.xd{left:674.094471pt;}
.x7{left:774.578560pt;}
.x2c{left:784.245503pt;}
.x11{left:840.247293pt;}
.x6{left:868.759324pt;}
.x35{left:870.387335pt;}
.x2e{left:886.377734pt;}
.x2f{left:909.339511pt;}
.x1d{left:914.510586pt;}
.x39{left:917.061170pt;}
.x37{left:962.812783pt;}
.x31{left:970.565704pt;}
.x33{left:978.850076pt;}
.x36{left:985.696405pt;}
.x2d{left:1045.406403pt;}
.x3a{left:1051.861965pt;}
.x34{left:1064.382302pt;}
.x38{left:1074.448595pt;}
.x32{left:1082.123367pt;}
.x30{left:1088.000581pt;}
}




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