
    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_3c9bfaeb912cf90dac8e9102.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.070000;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_7c6bbfa718cdb616f9796811.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.188477;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_7bc7579c4ac3c675df039227.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_46819b31de0cd257748729e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.874000;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_a73299a6b357c6e54dcb5d9d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.989746;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_d98cc2e5f2729f96ac0bd14e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_2d263b8752988b564819c668.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-29.487905px;}
.ws4{word-spacing:-16.809783px;}
.ws5{word-spacing:-16.566692px;}
.ws0{word-spacing:-16.202054px;}
.ws3{word-spacing:-15.618116px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-8.406472px;}
._0{margin-left:-6.704872px;}
._6{margin-left:-2.764774px;}
._5{margin-left:-1.008093px;}
._8{width:3.774541px;}
._4{width:17.411057px;}
._3{width:20.875395px;}
._7{width:28.185192px;}
._2{width:31.844297px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:48.019594px;}
.fs2{font-size:60.007609px;}
.fs8{font-size:61.358119px;}
.fs7{font-size:62.258457px;}
.fs6{font-size:62.798660px;}
.fs5{font-size:78.014394px;}
.fs4{font-size:80.580361px;}
.fs1{font-size:90.033923px;}
.fs0{font-size:126.047492px;}
.fs3{font-size:147.439527px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000016px;}
.y7c{bottom:3.134873px;}
.y26{bottom:16.929327px;}
.y7b{bottom:21.142221px;}
.y22{bottom:23.411117px;}
.y28{bottom:35.801035px;}
.y76{bottom:42.894361px;}
.y21{bottom:43.668749px;}
.y25{bottom:56.764389px;}
.y20{bottom:63.926382px;}
.y27{bottom:63.936636px;}
.y51{bottom:72.583548px;}
.y54{bottom:80.543399px;}
.y7a{bottom:82.170013px;}
.y50{bottom:93.966605px;}
.y24{bottom:96.599450px;}
.y1f{bottom:104.441647px;}
.y4f{bottom:115.349662px;}
.y73{bottom:121.568938px;}
.y1e{bottom:124.699280px;}
.y6f{bottom:129.016431px;}
.y4e{bottom:136.732718px;}
.y6e{bottom:150.399488px;}
.y56{bottom:155.734436px;}
.y4d{bottom:158.115775px;}
.y1d{bottom:165.214545px;}
.y6d{bottom:171.782544px;}
.y4c{bottom:179.498831px;}
.y1c{bottom:185.472177px;}
.y6c{bottom:193.165601px;}
.y72{bottom:196.759895px;}
.y4b{bottom:200.881888px;}
.y6b{bottom:214.548658px;}
.y71{bottom:219.268376px;}
.y4a{bottom:222.264945px;}
.y1b{bottom:225.987443px;}
.y6a{bottom:235.931714px;}
.y70{bottom:241.776857px;}
.y49{bottom:243.648001px;}
.y1a{bottom:246.245075px;}
.y69{bottom:257.314771px;}
.y48{bottom:265.031058px;}
.y19{bottom:266.502708px;}
.y55{bottom:273.809604px;}
.y68{bottom:278.697827px;}
.y47{bottom:286.414115px;}
.y18{bottom:286.760340px;}
.y67{bottom:300.080884px;}
.y17{bottom:307.017973px;}
.y5d{bottom:314.999500px;}
.y66{bottom:321.463941px;}
.y3f{bottom:327.300412px;}
.y5c{bottom:337.507981px;}
.y65{bottom:342.846997px;}
.y16{bottom:347.533238px;}
.y23{bottom:353.610001px;}
.y64{bottom:364.230054px;}
.y15{bottom:367.790871px;}
.y53{bottom:380.937902px;}
.y63{bottom:385.613111px;}
.y46{bottom:388.159197px;}
.y62{bottom:406.996167px;}
.y14{bottom:408.306136px;}
.y41{bottom:420.046147px;}
.y61{bottom:428.379224px;}
.y13{bottom:428.563768px;}
.y5b{bottom:431.675574px;}
.y40{bottom:440.303780px;}
.y12{bottom:448.821401px;}
.y60{bottom:449.762280px;}
.y5a{bottom:454.184055px;}
.y6{bottom:465.252208px;}
.y35{bottom:465.449699px;}
.y5f{bottom:471.145337px;}
.y59{bottom:476.692536px;}
.y34{bottom:485.707331px;}
.y11{bottom:489.336666px;}
.y5e{bottom:492.528394px;}
.y5{bottom:495.638657px;}
.y58{bottom:499.201016px;}
.y33{bottom:505.964964px;}
.y10{bottom:509.594299px;}
.y75{bottom:514.573795px;}
.y2{bottom:520.033455px;}
.y4{bottom:526.025106px;}
.y32{bottom:526.222597px;}
.y74{bottom:543.834820px;}
.y52{bottom:547.001014px;}
.yf{bottom:550.109564px;}
.y31{bottom:552.943248px;}
.ye{bottom:570.367197px;}
.y30{bottom:573.200881px;}
.y79{bottom:590.202384px;}
.yd{bottom:590.624829px;}
.y44{bottom:604.874686px;}
.y78{bottom:611.585440px;}
.y3e{bottom:626.332747px;}
.yc{bottom:631.140094px;}
.y43{bottom:634.135711px;}
.y3d{bottom:648.841227px;}
.yb{bottom:651.397727px;}
.y45{bottom:655.540325px;}
.y3c{bottom:671.349708px;}
.ya{bottom:691.912992px;}
.y3b{bottom:693.858189px;}
.y2f{bottom:694.083289px;}
.y29{bottom:703.955361px;}
.y9{bottom:712.170625px;}
.y2e{bottom:714.340921px;}
.y3a{bottom:716.366669px;}
.y8{bottom:732.428257px;}
.y2d{bottom:734.598554px;}
.y39{bottom:738.875150px;}
.y7{bottom:752.685890px;}
.y2c{bottom:754.856187px;}
.y38{bottom:761.383631px;}
.y2b{bottom:775.113819px;}
.y37{bottom:783.892111px;}
.y2a{bottom:795.371452px;}
.y3{bottom:796.047000px;}
.y36{bottom:806.400592px;}
.y42{bottom:831.199308px;}
.y57{bottom:844.254223px;}
.y77{bottom:844.653895px;}
.he{height:32.399999px;}
.hf{height:36.014695px;}
.h5{height:45.005707px;}
.hd{height:46.018589px;}
.hc{height:46.693843px;}
.hb{height:47.098995px;}
.ha{height:59.272655px;}
.h8{height:61.321655px;}
.h9{height:68.404680px;}
.h4{height:86.560934px;}
.h3{height:94.535619px;}
.h7{height:112.201480px;}
.h6{height:134.639994px;}
.h2{height:893.249963px;}
.h0{height:893.249979px;}
.h1{height:893.250000px;}
.w3{width:276.479988px;}
.w4{width:316.439987px;}
.w2{width:1263.374947px;}
.w0{width:1263.375000px;}
.w1{width:1263.750000px;}
.x0{left:0.000000px;}
.x1a{left:6.712876px;}
.x1c{left:18.636164px;}
.x20{left:24.816102px;}
.x1b{left:28.556028px;}
.x22{left:36.580300px;}
.x21{left:39.833479px;}
.x32{left:43.221412px;}
.x7{left:45.495980px;}
.x10{left:47.500642px;}
.x13{left:50.331787px;}
.xb{left:53.022253px;}
.x6{left:54.763144px;}
.x17{left:57.682212px;}
.x9{left:60.355094px;}
.xa{left:61.867383px;}
.xe{left:65.296409px;}
.x18{left:68.356156px;}
.x31{left:70.474007px;}
.x2{left:71.958037px;}
.xc{left:73.701920px;}
.x14{left:75.020776px;}
.x23{left:79.347921px;}
.xd{left:81.439210px;}
.x2e{left:90.471707px;}
.x2d{left:111.414501px;}
.x2f{left:112.593323px;}
.x12{left:118.367186px;}
.x8{left:121.919306px;}
.x2c{left:125.285675px;}
.x15{left:135.441979px;}
.x57{left:158.106620px;}
.x16{left:168.659573px;}
.xf{left:182.744958px;}
.x11{left:191.625257px;}
.x1e{left:420.790716px;}
.x1d{left:450.491360px;}
.x25{left:453.932282px;}
.x26{left:460.737581px;}
.x2a{left:462.074022px;}
.x28{left:463.938005px;}
.x3f{left:470.017472px;}
.x24{left:471.886313px;}
.x29{left:472.923813px;}
.x3e{left:478.739509px;}
.x45{left:481.394806px;}
.x41{left:483.997349px;}
.x19{left:486.359980px;}
.x4a{left:489.466206px;}
.x27{left:492.671488px;}
.x42{left:495.497776px;}
.x43{left:499.243328px;}
.x1{left:501.829114px;}
.x48{left:503.129558px;}
.x46{left:508.088457px;}
.x47{left:522.824478px;}
.x44{left:525.919394px;}
.x51{left:528.214928px;}
.x4b{left:529.383590px;}
.x52{left:533.648616px;}
.x2b{left:542.524256px;}
.x49{left:544.207535px;}
.x40{left:556.094826px;}
.x4c{left:575.350128px;}
.x4d{left:608.391874px;}
.x4e{left:872.713586px;}
.x3c{left:873.856594px;}
.x55{left:875.333765px;}
.x38{left:879.237580px;}
.x50{left:883.035810px;}
.x39{left:888.592667px;}
.x33{left:896.175611px;}
.x3a{left:902.326357px;}
.x5{left:910.440892px;}
.x3{left:919.321191px;}
.x54{left:921.251465px;}
.x1f{left:936.897447px;}
.x4{left:951.518869px;}
.x34{left:956.685697px;}
.x53{left:957.718270px;}
.x36{left:986.763367px;}
.x30{left:991.111233px;}
.x37{left:1000.454141px;}
.x35{left:1001.509226px;}
.x56{left:1008.063462px;}
.x3b{left:1013.620243px;}
.x4f{left:1017.084387px;}
.x3d{left:1032.365536px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-26.211471pt;}
.ws4{word-spacing:-14.942030pt;}
.ws5{word-spacing:-14.725948pt;}
.ws0{word-spacing:-14.401826pt;}
.ws3{word-spacing:-13.882770pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-7.472420pt;}
._0{margin-left:-5.959886pt;}
._6{margin-left:-2.457577pt;}
._5{margin-left:-0.896083pt;}
._8{width:3.355148pt;}
._4{width:15.476496pt;}
._3{width:18.555906pt;}
._7{width:25.053504pt;}
._2{width:28.306042pt;}
.fs9{font-size:42.684083pt;}
.fs2{font-size:53.340097pt;}
.fs8{font-size:54.540550pt;}
.fs7{font-size:55.340851pt;}
.fs6{font-size:55.821031pt;}
.fs5{font-size:69.346128pt;}
.fs4{font-size:71.626987pt;}
.fs1{font-size:80.030153pt;}
.fs0{font-size:112.042215pt;}
.fs3{font-size:131.057357pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000014pt;}
.y7c{bottom:2.786554pt;}
.y26{bottom:15.048291pt;}
.y7b{bottom:18.793085pt;}
.y22{bottom:20.809881pt;}
.y28{bottom:31.823142pt;}
.y76{bottom:38.128321pt;}
.y21{bottom:38.816666pt;}
.y25{bottom:50.457234pt;}
.y20{bottom:56.823450pt;}
.y27{bottom:56.832565pt;}
.y51{bottom:64.518710pt;}
.y54{bottom:71.594133pt;}
.y7a{bottom:73.040011pt;}
.y50{bottom:83.525871pt;}
.y24{bottom:85.866178pt;}
.y1f{bottom:92.837019pt;}
.y4f{bottom:102.533033pt;}
.y73{bottom:108.061278pt;}
.y1e{bottom:110.843804pt;}
.y6f{bottom:114.681272pt;}
.y4e{bottom:121.540194pt;}
.y6e{bottom:133.688433pt;}
.y56{bottom:138.430610pt;}
.y4d{bottom:140.547355pt;}
.y1d{bottom:146.857373pt;}
.y6d{bottom:152.695595pt;}
.y4c{bottom:159.554517pt;}
.y1c{bottom:164.864158pt;}
.y6c{bottom:171.702756pt;}
.y72{bottom:174.897685pt;}
.y4b{bottom:178.561678pt;}
.y6b{bottom:190.709918pt;}
.y71{bottom:194.905223pt;}
.y4a{bottom:197.568840pt;}
.y1b{bottom:200.877727pt;}
.y6a{bottom:209.717079pt;}
.y70{bottom:214.912762pt;}
.y49{bottom:216.576001pt;}
.y1a{bottom:218.884511pt;}
.y69{bottom:228.724241pt;}
.y48{bottom:235.583163pt;}
.y19{bottom:236.891296pt;}
.y55{bottom:243.386314pt;}
.y68{bottom:247.731402pt;}
.y47{bottom:254.590324pt;}
.y18{bottom:254.898080pt;}
.y67{bottom:266.738564pt;}
.y17{bottom:272.904865pt;}
.y5d{bottom:279.999556pt;}
.y66{bottom:285.745725pt;}
.y3f{bottom:290.933700pt;}
.y5c{bottom:300.007094pt;}
.y65{bottom:304.752887pt;}
.y16{bottom:308.918434pt;}
.y23{bottom:314.320001pt;}
.y64{bottom:323.760048pt;}
.y15{bottom:326.925218pt;}
.y53{bottom:338.611469pt;}
.y63{bottom:342.767209pt;}
.y46{bottom:345.030397pt;}
.y62{bottom:361.774371pt;}
.y14{bottom:362.938787pt;}
.y41{bottom:373.374353pt;}
.y61{bottom:380.781532pt;}
.y13{bottom:380.945572pt;}
.y5b{bottom:383.711622pt;}
.y40{bottom:391.381138pt;}
.y12{bottom:398.952356pt;}
.y60{bottom:399.788694pt;}
.y5a{bottom:403.719160pt;}
.y6{bottom:413.557518pt;}
.y35{bottom:413.733066pt;}
.y5f{bottom:418.795855pt;}
.y59{bottom:423.726699pt;}
.y34{bottom:431.739850pt;}
.y11{bottom:434.965926pt;}
.y5e{bottom:437.803017pt;}
.y5{bottom:440.567695pt;}
.y58{bottom:443.734237pt;}
.y33{bottom:449.746635pt;}
.y10{bottom:452.972710pt;}
.y75{bottom:457.398929pt;}
.y2{bottom:462.251960pt;}
.y4{bottom:467.577872pt;}
.y32{bottom:467.753419pt;}
.y74{bottom:483.408729pt;}
.y52{bottom:486.223123pt;}
.yf{bottom:488.986279pt;}
.y31{bottom:491.505110pt;}
.ye{bottom:506.993064pt;}
.y30{bottom:509.511894pt;}
.y79{bottom:524.624341pt;}
.yd{bottom:524.999848pt;}
.y44{bottom:537.666388pt;}
.y78{bottom:543.631502pt;}
.y3e{bottom:556.740219pt;}
.yc{bottom:561.013417pt;}
.y43{bottom:563.676188pt;}
.y3d{bottom:576.747758pt;}
.yb{bottom:579.020202pt;}
.y45{bottom:582.702511pt;}
.y3c{bottom:596.755296pt;}
.ya{bottom:615.033771pt;}
.y3b{bottom:616.762834pt;}
.y2f{bottom:616.962923pt;}
.y29{bottom:625.738099pt;}
.y9{bottom:633.040555pt;}
.y2e{bottom:634.969708pt;}
.y3a{bottom:636.770373pt;}
.y8{bottom:651.047340pt;}
.y2d{bottom:652.976492pt;}
.y39{bottom:656.777911pt;}
.y7{bottom:669.054124pt;}
.y2c{bottom:670.983277pt;}
.y38{bottom:676.785450pt;}
.y2b{bottom:688.990062pt;}
.y37{bottom:696.792988pt;}
.y2a{bottom:706.996846pt;}
.y3{bottom:707.597334pt;}
.y36{bottom:716.800526pt;}
.y42{bottom:738.843829pt;}
.y57{bottom:750.448198pt;}
.y77{bottom:750.803462pt;}
.he{height:28.799999pt;}
.hf{height:32.013063pt;}
.h5{height:40.005073pt;}
.hd{height:40.905412pt;}
.hc{height:41.505638pt;}
.hb{height:41.865773pt;}
.ha{height:52.686804pt;}
.h8{height:54.508137pt;}
.h9{height:60.804160pt;}
.h4{height:76.943053pt;}
.h3{height:84.031661pt;}
.h7{height:99.734649pt;}
.h6{height:119.679995pt;}
.h2{height:793.999967pt;}
.h0{height:793.999981pt;}
.h1{height:794.000000pt;}
.w3{width:245.759990pt;}
.w4{width:281.279988pt;}
.w2{width:1122.999953pt;}
.w0{width:1123.000000pt;}
.w1{width:1123.333333pt;}
.x0{left:0.000000pt;}
.x1a{left:5.967001pt;}
.x1c{left:16.565479pt;}
.x20{left:22.058757pt;}
.x1b{left:25.383136pt;}
.x22{left:32.515822pt;}
.x21{left:35.407537pt;}
.x32{left:38.419033pt;}
.x7{left:40.440871pt;}
.x10{left:42.222793pt;}
.x13{left:44.739366pt;}
.xb{left:47.130892pt;}
.x6{left:48.678350pt;}
.x17{left:51.273078pt;}
.x9{left:53.648973pt;}
.xa{left:54.993229pt;}
.xe{left:58.041253pt;}
.x18{left:60.761027pt;}
.x31{left:62.643562pt;}
.x2{left:63.962700pt;}
.xc{left:65.512818pt;}
.x14{left:66.685135pt;}
.x23{left:70.531485pt;}
.xd{left:72.390409pt;}
.x2e{left:80.419295pt;}
.x2d{left:99.035112pt;}
.x2f{left:100.082954pt;}
.x12{left:105.215277pt;}
.x8{left:108.372716pt;}
.x2c{left:111.365044pt;}
.x15{left:120.392870pt;}
.x57{left:140.539218pt;}
.x16{left:149.919620pt;}
.xf{left:162.439963pt;}
.x11{left:170.333562pt;}
.x1e{left:374.036192pt;}
.x1d{left:400.436764pt;}
.x25{left:403.495362pt;}
.x26{left:409.544516pt;}
.x2a{left:410.732464pt;}
.x28{left:412.389338pt;}
.x3f{left:417.793309pt;}
.x24{left:419.454500pt;}
.x29{left:420.376723pt;}
.x3e{left:425.546230pt;}
.x45{left:427.906494pt;}
.x41{left:430.219866pt;}
.x19{left:432.319982pt;}
.x4a{left:435.081072pt;}
.x27{left:437.930211pt;}
.x42{left:440.442467pt;}
.x43{left:443.771847pt;}
.x1{left:446.070324pt;}
.x48{left:447.226273pt;}
.x46{left:451.634184pt;}
.x47{left:464.732869pt;}
.x44{left:467.483906pt;}
.x51{left:469.524380pt;}
.x4b{left:470.563191pt;}
.x52{left:474.354325pt;}
.x2b{left:482.243783pt;}
.x49{left:483.740031pt;}
.x40{left:494.306512pt;}
.x4c{left:511.422336pt;}
.x4d{left:540.792777pt;}
.x4e{left:775.745409pt;}
.x3c{left:776.761417pt;}
.x55{left:778.074458pt;}
.x38{left:781.544515pt;}
.x50{left:784.920720pt;}
.x39{left:789.860149pt;}
.x33{left:796.600543pt;}
.x3a{left:802.067873pt;}
.x5{left:809.280792pt;}
.x3{left:817.174392pt;}
.x54{left:818.890191pt;}
.x1f{left:832.797731pt;}
.x4{left:845.794550pt;}
.x34{left:850.387286pt;}
.x53{left:851.305129pt;}
.x36{left:877.122993pt;}
.x30{left:880.987763pt;}
.x37{left:889.292570pt;}
.x35{left:890.230423pt;}
.x56{left:896.056411pt;}
.x3b{left:900.995772pt;}
.x4f{left:904.075011pt;}
.x3d{left:917.658254pt;}
}




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