
    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_b00283b01f1e12ddc5327c39.woff')format("woff");}.ff1{font-family:ff1;line-height:0.730469;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_328aee3ccdcb61a77df111c8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.041992;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_a1d07727ef7b6401bd474827.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3049279bcc3cd59973ec52bc.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_688a1a072ae91870dc938a83.woff')format("woff");}.ff7{font-family:ff7;line-height:0.967285;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:ff8;src:url('chunks/assets/font_72058a45c0ec3851d1d0dbfd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.953125;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:ff9;src:url('chunks/assets/font_667014ea1360471b7a7ec4ea.woff')format("woff");}.ff9{font-family:ff9;line-height:0.968262;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:ffa;src:url('chunks/assets/font_fee4a591e636fecb5b754ffd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.740000;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:26.999999px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.035157px;}
.ls0{letter-spacing:0.899986px;}
.ls2{letter-spacing:108.624019px;}
.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;}
}
.ws5{word-spacing:-108.687019px;}
.ws7{word-spacing:-20.287799px;}
.ws6{word-spacing:-17.859375px;}
.ws2{word-spacing:-16.363652px;}
.ws3{word-spacing:-13.327602px;}
.ws4{word-spacing:0.000000px;}
.ws1{word-spacing:0.140624px;}
.ws0{word-spacing:89.963153px;}
._3{margin-left:-108.623996px;}
._4{margin-left:-5.027343px;}
._1{margin-left:-3.515626px;}
._0{margin-left:-1.476563px;}
._2{width:1.153361px;}
._5{width:18.949238px;}
.fc4{color:rgb(109,111,114);}
.fc3{color:transparent;}
.fc1{color:rgb(217,48,37);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(32,33,36);}
.fs4{font-size:47.969997px;}
.fs5{font-size:53.999998px;}
.fs3{font-size:62.999997px;}
.fs2{font-size:65.969996px;}
.fs0{font-size:71.999997px;}
.fs6{font-size:99.449996px;}
.fs1{font-size:143.999994px;}
.y0{bottom:0.000000px;}
.y1a{bottom:2.250000px;}
.y74{bottom:3.375000px;}
.y76{bottom:4.815000px;}
.y1b{bottom:22.005022px;}
.y1{bottom:42.184713px;}
.y5d{bottom:106.945304px;}
.y2e{bottom:111.445303px;}
.y5e{bottom:150.820302px;}
.y2f{bottom:155.320302px;}
.y68{bottom:165.445301px;}
.y5c{bottom:202.570300px;}
.y2d{bottom:207.070299px;}
.y69{bottom:209.320299px;}
.y3e{bottom:219.445299px;}
.y5b{bottom:244.195298px;}
.y6e{bottom:246.445298px;}
.y2c{bottom:248.695298px;}
.y67{bottom:261.070297px;}
.y3f{bottom:263.320297px;}
.y6f{bottom:290.320296px;}
.y2{bottom:297.070296px;}
.y6c{bottom:302.695295px;}
.y3d{bottom:315.070295px;}
.y66{bottom:329.695294px;}
.y6d{bottom:342.070294px;}
.y59{bottom:353.320293px;}
.y41{bottom:356.695293px;}
.y2a{bottom:357.820293px;}
.y18{bottom:363.445293px;}
.y3c{bottom:383.695292px;}
.y5a{bottom:397.195291px;}
.y17{bottom:399.445291px;}
.y2b{bottom:401.695291px;}
.y4d{bottom:410.695291px;}
.y75{bottom:415.440005px;}
.y16{bottom:424.195290px;}
.y64{bottom:438.820290px;}
.y58{bottom:448.945289px;}
.y29{bottom:453.445289px;}
.y15{bottom:473.695288px;}
.y73{bottom:474.255003px;}
.y65{bottom:482.695288px;}
.y57{bottom:490.570288px;}
.y3a{bottom:492.820287px;}
.y28{bottom:495.070287px;}
.y4b{bottom:519.820286px;}
.y14{bottom:523.195286px;}
.y63{bottom:534.445286px;}
.y3b{bottom:536.695286px;}
.y13{bottom:547.945285px;}
.y4c{bottom:563.695285px;}
.y56{bottom:570.445284px;}
.y12{bottom:572.695284px;}
.y6b{bottom:576.070284px;}
.y72{bottom:582.820284px;}
.y39{bottom:588.445283px;}
.y62{bottom:603.070283px;}
.y26{bottom:604.195283px;}
.y4a{bottom:615.445282px;}
.y55{bottom:619.945282px;}
.y11{bottom:622.195282px;}
.y38{bottom:630.070282px;}
.y71{bottom:632.320282px;}
.y10{bottom:646.945281px;}
.y27{bottom:648.070281px;}
.y49{bottom:657.070281px;}
.y54{bottom:669.445280px;}
.yf{bottom:671.695280px;}
.y70{bottom:684.070279px;}
.y25{bottom:699.820279px;}
.y60{bottom:712.195278px;}
.y53{bottom:718.945278px;}
.ye{bottom:721.195278px;}
.y36{bottom:739.195277px;}
.y24{bottom:741.445277px;}
.yd{bottom:745.945277px;}
.y61{bottom:756.070276px;}
.y47{bottom:766.195276px;}
.y52{bottom:768.445276px;}
.yc{bottom:770.695276px;}
.y37{bottom:783.070275px;}
.y5f{bottom:807.820274px;}
.y48{bottom:810.070274px;}
.y51{bottom:817.945274px;}
.yb{bottom:820.195274px;}
.y23{bottom:821.320274px;}
.y35{bottom:834.820273px;}
.y50{bottom:842.695273px;}
.ya{bottom:844.945273px;}
.y6a{bottom:849.445273px;}
.y46{bottom:861.820272px;}
.y4f{bottom:867.445272px;}
.y22{bottom:870.820272px;}
.y34{bottom:876.445271px;}
.y9{bottom:894.445271px;}
.y45{bottom:903.445270px;}
.y4e{bottom:919.195270px;}
.y21{bottom:920.320270px;}
.y8{bottom:943.945269px;}
.y7{bottom:968.695268px;}
.y20{bottom:969.820268px;}
.y32{bottom:985.570267px;}
.y6{bottom:993.445267px;}
.y43{bottom:1012.570266px;}
.y5{bottom:1018.195266px;}
.y1f{bottom:1019.320266px;}
.y33{bottom:1029.445265px;}
.y44{bottom:1056.445264px;}
.y4{bottom:1067.695264px;}
.y1e{bottom:1068.820263px;}
.y31{bottom:1081.195263px;}
.y1d{bottom:1093.570262px;}
.y3{bottom:1095.820262px;}
.y42{bottom:1108.195262px;}
.y40{bottom:1122.820261px;}
.y1c{bottom:1145.320260px;}
.y30{bottom:1149.820260px;}
.y19{bottom:1226.879972px;}
.h8{height:13.499999px;}
.h9{height:34.946892px;}
.hf{height:35.279999px;}
.he{height:41.053709px;}
.hc{height:45.404295px;}
.h7{height:47.249998px;}
.hb{height:51.890623px;}
.h5{height:53.600622px;}
.ha{height:53.999998px;}
.h3{height:58.499998px;}
.hd{height:60.749997px;}
.h6{height:62.671497px;}
.h10{height:99.001796px;}
.h4{height:116.999995px;}
.h2{height:1177.945259px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w6{width:60.749997px;}
.w3{width:141.749994px;}
.w8{width:216.359991px;}
.w7{width:726.749970px;}
.w4{width:750.374969px;}
.w2{width:807.855446px;}
.w5{width:831.374965px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:8.718750px;}
.x6{left:35.999999px;}
.x1{left:42.749998px;}
.x2{left:60.749997px;}
.x5{left:62.999997px;}
.xb{left:76.499997px;}
.x15{left:78.749997px;}
.x3{left:82.124997px;}
.x18{left:84.191486px;}
.xc{left:98.103512px;}
.xd{left:103.728511px;}
.x4{left:104.769963px;}
.x11{left:108.210933px;}
.x12{left:113.835933px;}
.x7{left:141.749994px;}
.xe{left:152.068353px;}
.x13{left:162.175774px;}
.x16{left:193.710929px;}
.x8{left:276.609363px;}
.xf{left:319.728508px;}
.x14{left:329.835924px;}
.x17{left:334.079986px;}
.x10{left:743.730438px;}
.x9{left:831.374965px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.999999pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.031250pt;}
.ls0{letter-spacing:0.799988pt;}
.ls2{letter-spacing:96.554683pt;}
.ws5{word-spacing:-96.610683pt;}
.ws7{word-spacing:-18.033599pt;}
.ws6{word-spacing:-15.875000pt;}
.ws2{word-spacing:-14.545468pt;}
.ws3{word-spacing:-11.846757pt;}
.ws4{word-spacing:0.000000pt;}
.ws1{word-spacing:0.124999pt;}
.ws0{word-spacing:79.967247pt;}
._3{margin-left:-96.554663pt;}
._4{margin-left:-4.468749pt;}
._1{margin-left:-3.125001pt;}
._0{margin-left:-1.312501pt;}
._2{width:1.025210pt;}
._5{width:16.843767pt;}
.fs4{font-size:42.639997pt;}
.fs5{font-size:47.999998pt;}
.fs3{font-size:55.999998pt;}
.fs2{font-size:58.639997pt;}
.fs0{font-size:63.999997pt;}
.fs6{font-size:88.399996pt;}
.fs1{font-size:127.999995pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:2.000000pt;}
.y74{bottom:3.000000pt;}
.y76{bottom:4.280000pt;}
.y1b{bottom:19.560019pt;}
.y1{bottom:37.497523pt;}
.y5d{bottom:95.062492pt;}
.y2e{bottom:99.062492pt;}
.y5e{bottom:134.062490pt;}
.y2f{bottom:138.062490pt;}
.y68{bottom:147.062490pt;}
.y5c{bottom:180.062488pt;}
.y2d{bottom:184.062488pt;}
.y69{bottom:186.062488pt;}
.y3e{bottom:195.062488pt;}
.y5b{bottom:217.062487pt;}
.y6e{bottom:219.062487pt;}
.y2c{bottom:221.062487pt;}
.y67{bottom:232.062486pt;}
.y3f{bottom:234.062486pt;}
.y6f{bottom:258.062485pt;}
.y2{bottom:264.062485pt;}
.y6c{bottom:269.062485pt;}
.y3d{bottom:280.062484pt;}
.y66{bottom:293.062484pt;}
.y6d{bottom:304.062483pt;}
.y59{bottom:314.062483pt;}
.y41{bottom:317.062483pt;}
.y2a{bottom:318.062483pt;}
.y18{bottom:323.062483pt;}
.y3c{bottom:341.062482pt;}
.y5a{bottom:353.062481pt;}
.y17{bottom:355.062481pt;}
.y2b{bottom:357.062481pt;}
.y4d{bottom:365.062481pt;}
.y75{bottom:369.280005pt;}
.y16{bottom:377.062480pt;}
.y64{bottom:390.062480pt;}
.y58{bottom:399.062479pt;}
.y29{bottom:403.062479pt;}
.y15{bottom:421.062478pt;}
.y73{bottom:421.560003pt;}
.y65{bottom:429.062478pt;}
.y57{bottom:436.062478pt;}
.y3a{bottom:438.062478pt;}
.y28{bottom:440.062478pt;}
.y4b{bottom:462.062477pt;}
.y14{bottom:465.062477pt;}
.y63{bottom:475.062476pt;}
.y3b{bottom:477.062476pt;}
.y13{bottom:487.062476pt;}
.y4c{bottom:501.062475pt;}
.y56{bottom:507.062475pt;}
.y12{bottom:509.062475pt;}
.y6b{bottom:512.062475pt;}
.y72{bottom:518.062474pt;}
.y39{bottom:523.062474pt;}
.y62{bottom:536.062474pt;}
.y26{bottom:537.062474pt;}
.y4a{bottom:547.062473pt;}
.y55{bottom:551.062473pt;}
.y11{bottom:553.062473pt;}
.y38{bottom:560.062473pt;}
.y71{bottom:562.062473pt;}
.y10{bottom:575.062472pt;}
.y27{bottom:576.062472pt;}
.y49{bottom:584.062472pt;}
.y54{bottom:595.062471pt;}
.yf{bottom:597.062471pt;}
.y70{bottom:608.062471pt;}
.y25{bottom:622.062470pt;}
.y60{bottom:633.062470pt;}
.y53{bottom:639.062469pt;}
.ye{bottom:641.062469pt;}
.y36{bottom:657.062469pt;}
.y24{bottom:659.062469pt;}
.yd{bottom:663.062468pt;}
.y61{bottom:672.062468pt;}
.y47{bottom:681.062468pt;}
.y52{bottom:683.062468pt;}
.yc{bottom:685.062467pt;}
.y37{bottom:696.062467pt;}
.y5f{bottom:718.062466pt;}
.y48{bottom:720.062466pt;}
.y51{bottom:727.062466pt;}
.yb{bottom:729.062466pt;}
.y23{bottom:730.062466pt;}
.y35{bottom:742.062465pt;}
.y50{bottom:749.062465pt;}
.ya{bottom:751.062465pt;}
.y6a{bottom:755.062465pt;}
.y46{bottom:766.062464pt;}
.y4f{bottom:771.062464pt;}
.y22{bottom:774.062464pt;}
.y34{bottom:779.062464pt;}
.y9{bottom:795.062463pt;}
.y45{bottom:803.062463pt;}
.y4e{bottom:817.062462pt;}
.y21{bottom:818.062462pt;}
.y8{bottom:839.062461pt;}
.y7{bottom:861.062460pt;}
.y20{bottom:862.062460pt;}
.y32{bottom:876.062459pt;}
.y6{bottom:883.062459pt;}
.y43{bottom:900.062458pt;}
.y5{bottom:905.062458pt;}
.y1f{bottom:906.062458pt;}
.y33{bottom:915.062458pt;}
.y44{bottom:939.062457pt;}
.y4{bottom:949.062456pt;}
.y1e{bottom:950.062456pt;}
.y31{bottom:961.062456pt;}
.y1d{bottom:972.062455pt;}
.y3{bottom:974.062455pt;}
.y42{bottom:985.062455pt;}
.y40{bottom:998.062454pt;}
.y1c{bottom:1018.062454pt;}
.y30{bottom:1022.062453pt;}
.y19{bottom:1090.559975pt;}
.h8{height:12.000000pt;}
.h9{height:31.063904pt;}
.hf{height:31.359999pt;}
.he{height:36.492186pt;}
.hc{height:40.359373pt;}
.h7{height:41.999998pt;}
.hb{height:46.124998pt;}
.h5{height:47.644997pt;}
.ha{height:47.999998pt;}
.h3{height:51.999998pt;}
.hd{height:53.999998pt;}
.h6{height:55.707997pt;}
.h10{height:88.001596pt;}
.h4{height:103.999996pt;}
.h2{height:1047.062452pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w6{width:53.999998pt;}
.w3{width:125.999995pt;}
.w8{width:192.319992pt;}
.w7{width:645.999973pt;}
.w4{width:666.999972pt;}
.w2{width:718.093730pt;}
.w5{width:738.999969pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:7.750000pt;}
.x6{left:31.999999pt;}
.x1{left:37.999998pt;}
.x2{left:53.999998pt;}
.x5{left:55.999998pt;}
.xb{left:67.999997pt;}
.x15{left:69.999997pt;}
.x3{left:72.999997pt;}
.x18{left:74.836877pt;}
.xc{left:87.203121pt;}
.xd{left:92.203121pt;}
.x4{left:93.128856pt;}
.x11{left:96.187496pt;}
.x12{left:101.187496pt;}
.x7{left:125.999995pt;}
.xe{left:135.171869pt;}
.x13{left:144.156244pt;}
.x16{left:172.187493pt;}
.x8{left:245.874990pt;}
.xf{left:284.203118pt;}
.x14{left:293.187488pt;}
.x17{left:296.959988pt;}
.x10{left:661.093722pt;}
.x9{left:738.999969pt;}
}




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