
    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_4ec31c50dc72f7b136051d66.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_e4d7ff5269dc066852260a71.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_f9cb448f590b0df72bbb7606.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.041000;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_09b8f801aa2b0ed5f7f84e6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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);}
.v1{vertical-align:-5.381109px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:107.966260px;}
.ls1{letter-spacing:107.966423px;}
.ls2{letter-spacing:107.983350px;}
.ls3{letter-spacing:791.934010px;}
.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;}
}
.ws1{word-spacing:-28.296001px;}
.ws2{word-spacing:-17.685001px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:162.692144px;}
.ws5{word-spacing:180.648118px;}
.ws7{word-spacing:359.545638px;}
.ws9{word-spacing:466.813637px;}
.ws6{word-spacing:499.657637px;}
.ws4{word-spacing:574.165637px;}
.ws8{word-spacing:624.061637px;}
._6{margin-left:-9.240000px;}
._17{margin-left:-7.920000px;}
._4{margin-left:-6.516600px;}
._5{margin-left:-5.000400px;}
._3{margin-left:-3.463200px;}
._2{margin-left:-2.430000px;}
._1{margin-left:-1.296000px;}
._0{width:1.620000px;}
._f{width:20.672392px;}
._e{width:28.042537px;}
._16{width:165.452842px;}
._13{width:168.854414px;}
._15{width:172.551696px;}
._11{width:176.142115px;}
._12{width:190.763930px;}
._c{width:203.270939px;}
._1e{width:209.052839px;}
._1a{width:212.594663px;}
._1c{width:216.185083px;}
._1d{width:230.795926px;}
._8{width:232.663945px;}
._7{width:241.376714px;}
._a{width:313.742989px;}
._14{width:325.424746px;}
._d{width:360.446989px;}
._1b{width:422.881826px;}
._9{width:446.030938px;}
._10{width:490.777828px;}
._b{width:501.974938px;}
._19{width:562.777830px;}
._18{width:642.769833px;}
._1f{width:890.809841px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:59.400006px;}
.fsa{font-size:63.300008px;}
.fs9{font-size:66.000004px;}
.fs6{font-size:67.500002px;}
.fs8{font-size:72.000002px;}
.fs5{font-size:83.699994px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:99.899999px;}
.fs1{font-size:108.000003px;}
.fs2{font-size:144.300002px;}
.fs3{font-size:149.999999px;}
.fs0{font-size:162.000005px;}
.y0{bottom:0.000000px;}
.y38{bottom:82.871458px;}
.y4b{bottom:99.293777px;}
.y5f{bottom:102.426779px;}
.y37{bottom:104.133961px;}
.y1c{bottom:105.577679px;}
.y2f{bottom:109.682242px;}
.y10{bottom:110.749000px;}
.y5e{bottom:121.137779px;}
.y36{bottom:125.396456px;}
.y1b{bottom:129.432146px;}
.y2e{bottom:130.944720px;}
.y5d{bottom:139.848758px;}
.y4a{bottom:144.293779px;}
.y23{bottom:148.029668px;}
.y1a{bottom:153.286624px;}
.yf{bottom:154.220498px;}
.y5c{bottom:158.559747px;}
.y3f{bottom:166.089208px;}
.y2d{bottom:167.207228px;}
.y35{bottom:174.488613px;}
.y19{bottom:177.141114px;}
.y5b{bottom:177.270736px;}
.y5{bottom:180.872885px;}
.ye{bottom:182.691988px;}
.y22{bottom:185.289669px;}
.y2c{bottom:188.469718px;}
.y49{bottom:189.293780px;}
.y3e{bottom:191.289206px;}
.y5a{bottom:195.981726px;}
.y18{bottom:200.995614px;}
.y59{bottom:214.692715px;}
.y4{bottom:219.833886px;}
.y34{bottom:221.283890px;}
.y21{bottom:222.549670px;}
.y2b{bottom:224.732204px;}
.y17{bottom:224.850104px;}
.yd{bottom:226.163485px;}
.y58{bottom:233.403704px;}
.y48{bottom:234.293782px;}
.y3d{bottom:238.988015px;}
.y2a{bottom:245.994705px;}
.y16{bottom:248.704605px;}
.y57{bottom:252.114682px;}
.yc{bottom:254.634986px;}
.y3{bottom:258.794880px;}
.y47{bottom:264.396544px;}
.y33{bottom:268.079166px;}
.y56{bottom:270.825672px;}
.y15{bottom:272.559094px;}
.y29{bottom:282.257191px;}
.yb{bottom:283.106487px;}
.y46{bottom:285.996545px;}
.y3c{bottom:286.686836px;}
.y55{bottom:289.536661px;}
.y61{bottom:296.413595px;}
.y20{bottom:297.069661px;}
.y28{bottom:303.519676px;}
.y54{bottom:308.247667px;}
.ya{bottom:311.577988px;}
.y32{bottom:314.874443px;}
.y45{bottom:316.099296px;}
.y2{bottom:316.693588px;}
.y14{bottom:320.268085px;}
.y1f{bottom:334.329663px;}
.y3b{bottom:334.385656px;}
.y44{bottom:337.699296px;}
.y27{bottom:339.782178px;}
.y9{bottom:340.049484px;}
.y13{bottom:344.122580px;}
.y53{bottom:345.669674px;}
.y1{bottom:352.333585px;}
.y26{bottom:361.044684px;}
.y31{bottom:361.669719px;}
.y52{bottom:364.380675px;}
.y60{bottom:367.977075px;}
.y8{bottom:368.520983px;}
.y1e{bottom:371.589675px;}
.y3a{bottom:382.083297px;}
.y43{bottom:382.699298px;}
.y12{bottom:391.831576px;}
.y25{bottom:397.307181px;}
.y51{bottom:401.802676px;}
.y39{bottom:407.283296px;}
.y30{bottom:408.464996px;}
.y1d{bottom:408.849676px;}
.y7{bottom:411.992477px;}
.y41{bottom:412.442634px;}
.y11{bottom:415.686076px;}
.y24{bottom:418.569676px;}
.y50{bottom:420.513677px;}
.y40{bottom:430.802634px;}
.y42{bottom:432.242634px;}
.y4f{bottom:465.549301px;}
.y4c{bottom:466.411417px;}
.y6{bottom:473.713578px;}
.y4e{bottom:487.387802px;}
.y4d{bottom:509.226300px;}
.hb{height:48.082034px;}
.he{height:50.014805px;}
.hc{height:52.453127px;}
.hd{height:53.298607px;}
.ha{height:53.842034px;}
.h8{height:56.835002px;}
.h9{height:61.195312px;}
.h6{height:70.475395px;}
.h5{height:84.115799px;}
.h2{height:84.996003px;}
.h7{height:90.936003px;}
.h3{height:113.564101px;}
.h4{height:118.049999px;}
.h1{height:127.494004px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x13{left:40.189963px;}
.x12{left:42.434059px;}
.x6{left:46.939963px;}
.x3{left:52.888064px;}
.x7{left:58.863459px;}
.x9{left:61.305428px;}
.x1d{left:62.489177px;}
.x1f{left:64.978999px;}
.x1{left:68.235553px;}
.x8{left:100.939964px;}
.x2{left:110.890286px;}
.x4{left:115.650521px;}
.xc{left:207.575793px;}
.x14{left:243.159465px;}
.x1c{left:312.860424px;}
.x5{left:316.508208px;}
.x15{left:339.631908px;}
.xd{left:351.342540px;}
.x1e{left:391.653541px;}
.x16{left:439.686048px;}
.xe{left:495.109253px;}
.x17{left:543.375017px;}
.xb{left:554.444905px;}
.xf{left:638.876045px;}
.x18{left:641.586621px;}
.xa{left:739.913424px;}
.x19{left:747.924245px;}
.x10{left:782.642759px;}
.x1a{left:847.080736px;}
.x11{left:926.409450px;}
.x1b{left:944.441996px;}
@media print{
.v1{vertical-align:-4.783208pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:95.970009pt;}
.ls1{letter-spacing:95.970153pt;}
.ls2{letter-spacing:95.985200pt;}
.ls3{letter-spacing:703.941343pt;}
.ws1{word-spacing:-25.152001pt;}
.ws2{word-spacing:-15.720001pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:144.615239pt;}
.ws5{word-spacing:160.576105pt;}
.ws7{word-spacing:319.596122pt;}
.ws9{word-spacing:414.945455pt;}
.ws6{word-spacing:444.140122pt;}
.ws4{word-spacing:510.369455pt;}
.ws8{word-spacing:554.721455pt;}
._6{margin-left:-8.213333pt;}
._17{margin-left:-7.040000pt;}
._4{margin-left:-5.792533pt;}
._5{margin-left:-4.444800pt;}
._3{margin-left:-3.078400pt;}
._2{margin-left:-2.160000pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.440000pt;}
._f{width:18.375460pt;}
._e{width:24.926700pt;}
._16{width:147.069193pt;}
._13{width:150.092813pt;}
._15{width:153.379285pt;}
._11{width:156.570769pt;}
._12{width:169.567937pt;}
._c{width:180.685279pt;}
._1e{width:185.824746pt;}
._1a{width:188.973034pt;}
._1c{width:192.164518pt;}
._1d{width:205.151935pt;}
._8{width:206.812396pt;}
._7{width:214.557079pt;}
._a{width:278.882657pt;}
._14{width:289.266441pt;}
._d{width:320.397324pt;}
._1b{width:375.894956pt;}
._9{width:396.471945pt;}
._10{width:436.246958pt;}
._b{width:446.199945pt;}
._19{width:500.246960pt;}
._18{width:571.350962pt;}
._1f{width:791.830969pt;}
.fsb{font-size:52.800006pt;}
.fsa{font-size:56.266674pt;}
.fs9{font-size:58.666670pt;}
.fs6{font-size:60.000002pt;}
.fs8{font-size:64.000002pt;}
.fs5{font-size:74.399994pt;}
.fs7{font-size:74.666666pt;}
.fs4{font-size:88.799999pt;}
.fs1{font-size:96.000003pt;}
.fs2{font-size:128.266668pt;}
.fs3{font-size:133.333332pt;}
.fs0{font-size:144.000005pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:73.663518pt;}
.y4b{bottom:88.261136pt;}
.y5f{bottom:91.046026pt;}
.y37{bottom:92.563521pt;}
.y1c{bottom:93.846826pt;}
.y2f{bottom:97.495326pt;}
.y10{bottom:98.443556pt;}
.y5e{bottom:107.678026pt;}
.y36{bottom:111.463516pt;}
.y1b{bottom:115.050796pt;}
.y2e{bottom:116.395306pt;}
.y5d{bottom:124.310007pt;}
.y4a{bottom:128.261137pt;}
.y23{bottom:131.581927pt;}
.y1a{bottom:136.254777pt;}
.yf{bottom:137.084887pt;}
.y5c{bottom:140.941997pt;}
.y3f{bottom:147.634851pt;}
.y2d{bottom:148.628647pt;}
.y35{bottom:155.100990pt;}
.y19{bottom:157.458768pt;}
.y5b{bottom:157.573988pt;}
.y5{bottom:160.775898pt;}
.ye{bottom:162.392878pt;}
.y22{bottom:164.701928pt;}
.y2c{bottom:167.528638pt;}
.y49{bottom:168.261138pt;}
.y3e{bottom:170.034850pt;}
.y5a{bottom:174.205978pt;}
.y18{bottom:178.662768pt;}
.y59{bottom:190.837969pt;}
.y4{bottom:195.407899pt;}
.y34{bottom:196.696791pt;}
.y21{bottom:197.821929pt;}
.y2b{bottom:199.761959pt;}
.y17{bottom:199.866759pt;}
.yd{bottom:201.034209pt;}
.y58{bottom:207.469959pt;}
.y48{bottom:208.261139pt;}
.y3d{bottom:212.433792pt;}
.y2a{bottom:218.661960pt;}
.y16{bottom:221.070760pt;}
.y57{bottom:224.101940pt;}
.yc{bottom:226.342210pt;}
.y3{bottom:230.039893pt;}
.y47{bottom:235.019150pt;}
.y33{bottom:238.292592pt;}
.y56{bottom:240.733930pt;}
.y15{bottom:242.274750pt;}
.y29{bottom:250.895281pt;}
.yb{bottom:251.650211pt;}
.y46{bottom:254.219151pt;}
.y3c{bottom:254.832743pt;}
.y55{bottom:257.365921pt;}
.y61{bottom:263.478751pt;}
.y20{bottom:264.061921pt;}
.y28{bottom:269.795267pt;}
.y54{bottom:273.997926pt;}
.ya{bottom:276.958212pt;}
.y32{bottom:279.888394pt;}
.y45{bottom:280.977152pt;}
.y2{bottom:281.505412pt;}
.y14{bottom:284.682742pt;}
.y1f{bottom:297.181922pt;}
.y3b{bottom:297.231694pt;}
.y44{bottom:300.177152pt;}
.y27{bottom:302.028602pt;}
.y9{bottom:302.266208pt;}
.y13{bottom:305.886738pt;}
.y53{bottom:307.261933pt;}
.y1{bottom:313.185409pt;}
.y26{bottom:320.928608pt;}
.y31{bottom:321.484195pt;}
.y52{bottom:323.893933pt;}
.y60{bottom:327.090733pt;}
.y8{bottom:327.574207pt;}
.y1e{bottom:330.301933pt;}
.y3a{bottom:339.629598pt;}
.y43{bottom:340.177154pt;}
.y12{bottom:348.294734pt;}
.y25{bottom:353.161939pt;}
.y51{bottom:357.157934pt;}
.y39{bottom:362.029596pt;}
.y30{bottom:363.079996pt;}
.y1d{bottom:363.421934pt;}
.y7{bottom:366.215535pt;}
.y41{bottom:366.615674pt;}
.y11{bottom:369.498735pt;}
.y24{bottom:372.061935pt;}
.y50{bottom:373.789935pt;}
.y40{bottom:382.935675pt;}
.y42{bottom:384.215675pt;}
.y4f{bottom:413.821601pt;}
.y4c{bottom:414.587926pt;}
.y6{bottom:421.078736pt;}
.y4e{bottom:433.233602pt;}
.y4d{bottom:452.645600pt;}
.hb{height:42.739586pt;}
.he{height:44.457605pt;}
.hc{height:46.625001pt;}
.hd{height:47.376539pt;}
.ha{height:47.859586pt;}
.h8{height:50.520002pt;}
.h9{height:54.395833pt;}
.h6{height:62.644795pt;}
.h5{height:74.769599pt;}
.h2{height:75.552002pt;}
.h7{height:80.832003pt;}
.h3{height:100.945868pt;}
.h4{height:104.933332pt;}
.h1{height:113.328004pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x13{left:35.724411pt;}
.x12{left:37.719163pt;}
.x6{left:41.724411pt;}
.x3{left:47.011613pt;}
.x7{left:52.323075pt;}
.x9{left:54.493714pt;}
.x1d{left:55.545935pt;}
.x1f{left:57.759110pt;}
.x1{left:60.653825pt;}
.x8{left:89.724413pt;}
.x2{left:98.569143pt;}
.x4{left:102.800463pt;}
.xc{left:184.511816pt;}
.x14{left:216.141747pt;}
.x1c{left:278.098155pt;}
.x5{left:281.340629pt;}
.x15{left:301.895030pt;}
.xd{left:312.304480pt;}
.x1e{left:348.136481pt;}
.x16{left:390.832043pt;}
.xe{left:440.097114pt;}
.x17{left:483.000015pt;}
.xb{left:492.839916pt;}
.xf{left:567.889818pt;}
.x18{left:570.299218pt;}
.xa{left:657.700821pt;}
.x19{left:664.821551pt;}
.x10{left:695.682452pt;}
.x1a{left:752.960654pt;}
.x11{left:823.475066pt;}
.x1b{left:839.503997pt;}
}




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