
    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_ebbb327afe3cdcdc0847c833.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_5c60084d7680bdba1f9965bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.866258;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_45bfbd472a8f0f935a9f1c58.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945000;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_b12222983ec55153b67f34b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;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_cbae0c7a4b9b7ef6a83b0e59.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d0a2cd2c4af1b5963de51c14.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.180117;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_2a9342b5d9bd1cd832f4c14d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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_2a1dc9be9dd7014a633785fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971500;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_382ad23aa7c9eef1a790067f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947000;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:-32.564591px;}
.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;}
}
.ws3{word-spacing:-41.581312px;}
.ws2{word-spacing:-40.861289px;}
.ws6{word-spacing:-38.397373px;}
.ws4{word-spacing:-30.713289px;}
.ws0{word-spacing:-0.149990px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:1194.896434px;}
.ws1{word-spacing:1642.861477px;}
._4{margin-left:-12489.614385px;}
._19{margin-left:-21.871437px;}
._b{margin-left:-20.095884px;}
._6{margin-left:-16.807052px;}
._18{margin-left:-15.728955px;}
._7{margin-left:-11.627980px;}
._1a{margin-left:-10.170442px;}
._5{margin-left:-9.026693px;}
._8{margin-left:-6.911331px;}
._2{margin-left:-5.039547px;}
._1{margin-left:-3.511602px;}
._0{margin-left:-1.530120px;}
._3{width:1.980226px;}
._1d{width:3.099767px;}
._e{width:4.117471px;}
._13{width:5.537666px;}
._14{width:8.016763px;}
._12{width:9.016850px;}
._9{width:10.155206px;}
._1e{width:12.081939px;}
._f{width:13.680110px;}
._10{width:15.298559px;}
._1b{width:16.371721px;}
._22{width:18.545085px;}
._28{width:21.489852px;}
._11{width:22.678992px;}
._23{width:33.359411px;}
._24{width:34.429817px;}
._20{width:38.110430px;}
._17{width:39.231448px;}
._1c{width:40.290327px;}
._1f{width:41.790009px;}
._15{width:44.734641px;}
._16{width:51.685216px;}
._c{width:64.425799px;}
._21{width:66.258582px;}
._26{width:79.302417px;}
._25{width:81.210533px;}
._27{width:82.278057px;}
._a{width:246.828283px;}
._d{width:2784.583357px;}
.fc3{color:transparent;}
.fc1{color:rgb(255,146,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:95.988028px;}
.fs5{font-size:108.003407px;}
.fs7{font-size:119.973784px;}
.fs1{font-size:149.989740px;}
.fs0{font-size:180.005678px;}
.fs8{font-size:239.992579px;}
.fs3{font-size:299.979480px;}
.fs6{font-size:389.982319px;}
.fs2{font-size:600.003934px;}
.fs4{font-size:659.990835px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000119px;}
.y14{bottom:125.027027px;}
.y13{bottom:179.028730px;}
.y6f{bottom:412.865883px;}
.y62{bottom:413.754902px;}
.y20{bottom:416.754887px;}
.y64{bottom:425.888056px;}
.y61{bottom:446.380931px;}
.y6e{bottom:446.616947px;}
.y1f{bottom:470.756591px;}
.y60{bottom:479.006960px;}
.y6d{bottom:480.368012px;}
.y5f{bottom:511.632989px;}
.y6c{bottom:514.119077px;}
.y5e{bottom:544.259018px;}
.y6b{bottom:547.870141px;}
.y1e{bottom:548.995122px;}
.y5d{bottom:576.885047px;}
.y6a{bottom:581.621206px;}
.y1d{bottom:602.996825px;}
.y69{bottom:615.372270px;}
.y68{bottom:649.123335px;}
.y67{bottom:682.874399px;}
.y66{bottom:716.625464px;}
.y73{bottom:737.581771px;}
.y65{bottom:750.376528px;}
.y63{bottom:757.589738px;}
.y72{bottom:791.583474px;}
.y1c{bottom:839.292937px;}
.y71{bottom:845.585177px;}
.y1b{bottom:873.044002px;}
.y70{bottom:899.586881px;}
.y1a{bottom:906.795066px;}
.y19{bottom:940.546131px;}
.y18{bottom:974.297195px;}
.y17{bottom:1008.048260px;}
.y16{bottom:1041.799324px;}
.y28{bottom:1045.595468px;}
.y27{bottom:1099.597171px;}
.y26{bottom:1153.598874px;}
.y25{bottom:1299.722827px;}
.y24{bottom:1353.724531px;}
.y23{bottom:1407.726234px;}
.y22{bottom:1461.727937px;}
.y21{bottom:1589.441718px;}
.y5c{bottom:1883.070858px;}
.y39{bottom:1887.088372px;}
.y42{bottom:1908.277828px;}
.y5b{bottom:1937.072561px;}
.y38{bottom:1941.090075px;}
.y41{bottom:1944.278964px;}
.y43{bottom:1965.642484px;}
.y40{bottom:1980.280100px;}
.y5a{bottom:1991.074264px;}
.y37{bottom:1995.091779px;}
.y3f{bottom:2016.281235px;}
.y59{bottom:2045.075968px;}
.y36{bottom:2049.093482px;}
.y3e{bottom:2052.282371px;}
.y3d{bottom:2088.283506px;}
.y58{bottom:2099.077671px;}
.y35{bottom:2103.095185px;}
.y3c{bottom:2124.284642px;}
.y6{bottom:2154.204446px;}
.y34{bottom:2157.096888px;}
.y3b{bottom:2160.285777px;}
.y3a{bottom:2196.286913px;}
.y5{bottom:2198.080830px;}
.y2a{bottom:2252.724986px;}
.y4b{bottom:2293.884926px;}
.y55{bottom:2309.539275px;}
.y52{bottom:2339.915192px;}
.y4a{bottom:2347.886629px;}
.y54{bottom:2353.415659px;}
.y33{bottom:2367.230427px;}
.y51{bottom:2383.791576px;}
.y53{bottom:2397.292043px;}
.y49{bottom:2401.888333px;}
.y32{bottom:2421.232131px;}
.y50{bottom:2427.667960px;}
.y48{bottom:2455.890036px;}
.y4f{bottom:2471.544344px;}
.y31{bottom:2475.233834px;}
.y30{bottom:2529.235537px;}
.y2f{bottom:2583.237240px;}
.y47{bottom:2583.898101px;}
.y4e{bottom:2586.099615px;}
.y4d{bottom:2629.975999px;}
.y2e{bottom:2637.238944px;}
.y46{bottom:2637.899805px;}
.y4c{bottom:2673.852383px;}
.y2d{bottom:2691.240647px;}
.y45{bottom:2691.901508px;}
.y57{bottom:2699.776817px;}
.y56{bottom:2727.902704px;}
.y2c{bottom:2745.242350px;}
.y44{bottom:2745.903211px;}
.y2b{bottom:2799.244054px;}
.y4{bottom:2799.904915px;}
.y3{bottom:2853.906618px;}
.y29{bottom:2894.407895px;}
.y2{bottom:2907.908321px;}
.y12{bottom:3378.644686px;}
.yc{bottom:3408.960193px;}
.y11{bottom:3485.523057px;}
.y15{bottom:3806.038227px;}
.yf{bottom:3880.290600px;}
.y10{bottom:3899.416203px;}
.yd{bottom:3954.842241px;}
.ye{bottom:3973.967844px;}
.ya{bottom:4054.220324px;}
.yb{bottom:4086.846353px;}
.y9{bottom:4266.436347px;}
.y8{bottom:4445.316989px;}
.y7{bottom:4905.872565px;}
.h10{height:74.438715px;}
.ha{height:80.570541px;}
.hc{height:93.039670px;}
.hf{height:116.317043px;}
.h4{height:119.541383px;}
.h8{height:133.564213px;}
.h5{height:134.284236px;}
.h3{height:139.594403px;}
.hd{height:142.744502px;}
.he{height:190.314115px;}
.h7{height:222.584774px;}
.hb{height:314.362310px;}
.h6{height:444.002911px;}
.h9{height:532.014487px;}
.h2{height:5055.749789px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.w2{width:3576.374851px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x10{left:226.122377px;}
.x1b{left:283.330435px;}
.x2c{left:287.004379px;}
.x18{left:288.480986px;}
.x4f{left:291.785779px;}
.x39{left:293.262387px;}
.x2e{left:295.354251px;}
.x2f{left:297.463693px;}
.x35{left:299.256717px;}
.x30{left:300.487226px;}
.x50{left:306.446398px;}
.x2b{left:312.335256px;}
.x2d{left:313.970073px;}
.x34{left:316.940868px;}
.x38{left:324.622751px;}
.x17{left:331.179599px;}
.x19{left:333.271462px;}
.x14{left:337.191507px;}
.x1c{left:338.650539px;}
.x1a{left:349.443848px;}
.x3a{left:350.691933px;}
.x37{left:351.957598px;}
.x32{left:353.768202px;}
.x36{left:356.176481px;}
.x33{left:374.089155px;}
.x15{left:390.630693px;}
.x51{left:410.178186px;}
.x16{left:429.567468px;}
.xb{left:471.721225px;}
.xc{left:481.266448px;}
.x12{left:484.061459px;}
.xd{left:486.926782px;}
.x7{left:507.152731px;}
.x13{left:519.025452px;}
.x9{left:656.132034px;}
.x5{left:693.351455px;}
.x31{left:706.710916px;}
.x4{left:755.790924px;}
.x8{left:868.201223px;}
.x4d{left:1344.950800px;}
.x47{left:1351.109922px;}
.x4a{left:1372.450439px;}
.x48{left:1374.788403px;}
.x49{left:1381.362829px;}
.x1{left:1387.508783px;}
.x2{left:1394.874250px;}
.x3{left:1396.192651px;}
.x4b{left:1440.198669px;}
.x3e{left:1515.179179px;}
.x40{left:1520.628570px;}
.x3f{left:1558.018421px;}
.x41{left:1572.520832px;}
.x3b{left:1665.787196px;}
.xa{left:1706.827289px;}
.x4c{left:1708.492260px;}
.x3c{left:1713.794570px;}
.x3d{left:1724.183569px;}
.x42{left:1788.009189px;}
.x43{left:1867.728501px;}
.x44{left:1895.080926px;}
.xe{left:1939.246269px;}
.x45{left:2004.103439px;}
.x46{left:2017.498393px;}
.x4e{left:2025.828888px;}
.xf{left:2313.109629px;}
.x1f{left:2416.107593px;}
.x24{left:2417.672095px;}
.x23{left:2427.375526px;}
.x22{left:2437.571160px;}
.x29{left:2444.096219px;}
.x20{left:2445.622195px;}
.x25{left:2450.157495px;}
.x28{left:2457.772432px;}
.x21{left:2472.869149px;}
.x26{left:2482.730788px;}
.x2a{left:2503.301212px;}
.x1e{left:2517.282912px;}
.x1d{left:2560.375815px;}
.x6{left:2561.812645px;}
.x11{left:2662.772577px;}
.x27{left:2673.687983px;}
@media print{
.v1{vertical-align:-28.946303pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-36.961166pt;}
.ws2{word-spacing:-36.321146pt;}
.ws6{word-spacing:-34.130999pt;}
.ws4{word-spacing:-27.300701pt;}
.ws0{word-spacing:-0.133324pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:1062.130163pt;}
.ws1{word-spacing:1460.321313pt;}
._4{margin-left:-11101.879453pt;}
._19{margin-left:-19.441278pt;}
._b{margin-left:-17.863008pt;}
._6{margin-left:-14.939602pt;}
._18{margin-left:-13.981294pt;}
._7{margin-left:-10.335982pt;}
._1a{margin-left:-9.040393pt;}
._5{margin-left:-8.023727pt;}
._8{margin-left:-6.143405pt;}
._2{margin-left:-4.479597pt;}
._1{margin-left:-3.121424pt;}
._0{margin-left:-1.360107pt;}
._3{width:1.760201pt;}
._1d{width:2.755348pt;}
._e{width:3.659975pt;}
._13{width:4.922370pt;}
._14{width:7.126011pt;}
._12{width:8.014978pt;}
._9{width:9.026850pt;}
._1e{width:10.739502pt;}
._f{width:12.160098pt;}
._10{width:13.598719pt;}
._1b{width:14.552641pt;}
._22{width:16.484520pt;}
._28{width:19.102091pt;}
._11{width:20.159104pt;}
._23{width:29.652810pt;}
._24{width:30.604282pt;}
._20{width:33.875938pt;}
._17{width:34.872398pt;}
._1c{width:35.813624pt;}
._1f{width:37.146674pt;}
._15{width:39.764125pt;}
._16{width:45.942414pt;}
._c{width:57.267377pt;}
._21{width:58.896517pt;}
._26{width:70.491037pt;}
._25{width:72.187140pt;}
._27{width:73.136050pt;}
._a{width:219.402918pt;}
._d{width:2475.185207pt;}
.fs9{font-size:85.322691pt;}
.fs5{font-size:96.003028pt;}
.fs7{font-size:106.643364pt;}
.fs1{font-size:133.324213pt;}
.fs0{font-size:160.005047pt;}
.fs8{font-size:213.326737pt;}
.fs3{font-size:266.648426pt;}
.fs6{font-size:346.650950pt;}
.fs2{font-size:533.336830pt;}
.fs4{font-size:586.658520pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000106pt;}
.y14{bottom:111.135135pt;}
.y13{bottom:159.136649pt;}
.y6f{bottom:366.991896pt;}
.y62{bottom:367.782135pt;}
.y20{bottom:370.448789pt;}
.y64{bottom:378.567161pt;}
.y61{bottom:396.783050pt;}
.y6e{bottom:396.992842pt;}
.y1f{bottom:418.450303pt;}
.y60{bottom:425.783964pt;}
.y6d{bottom:426.993788pt;}
.y5f{bottom:454.784879pt;}
.y6c{bottom:456.994735pt;}
.y5e{bottom:483.785794pt;}
.y6b{bottom:486.995681pt;}
.y1e{bottom:487.995664pt;}
.y5d{bottom:512.786709pt;}
.y6a{bottom:516.996627pt;}
.y1d{bottom:535.997178pt;}
.y69{bottom:546.997574pt;}
.y68{bottom:576.998520pt;}
.y67{bottom:606.999466pt;}
.y66{bottom:637.000412pt;}
.y73{bottom:655.628241pt;}
.y65{bottom:667.001359pt;}
.y63{bottom:673.413100pt;}
.y72{bottom:703.629755pt;}
.y1c{bottom:746.038166pt;}
.y71{bottom:751.631269pt;}
.y1b{bottom:776.039112pt;}
.y70{bottom:799.632783pt;}
.y1a{bottom:806.040059pt;}
.y19{bottom:836.041005pt;}
.y18{bottom:866.041951pt;}
.y17{bottom:896.042898pt;}
.y16{bottom:926.043844pt;}
.y28{bottom:929.418193pt;}
.y27{bottom:977.419707pt;}
.y26{bottom:1025.421221pt;}
.y25{bottom:1155.309180pt;}
.y24{bottom:1203.310694pt;}
.y23{bottom:1251.312208pt;}
.y22{bottom:1299.313722pt;}
.y21{bottom:1412.837082pt;}
.y5c{bottom:1673.840762pt;}
.y39{bottom:1677.411886pt;}
.y42{bottom:1696.246959pt;}
.y5b{bottom:1721.842276pt;}
.y38{bottom:1725.413400pt;}
.y41{bottom:1728.247968pt;}
.y43{bottom:1747.237763pt;}
.y40{bottom:1760.248977pt;}
.y5a{bottom:1769.843790pt;}
.y37{bottom:1773.414914pt;}
.y3f{bottom:1792.249987pt;}
.y59{bottom:1817.845304pt;}
.y36{bottom:1821.416428pt;}
.y3e{bottom:1824.250996pt;}
.y3d{bottom:1856.252005pt;}
.y58{bottom:1865.846818pt;}
.y35{bottom:1869.417942pt;}
.y3c{bottom:1888.253015pt;}
.y6{bottom:1914.848397pt;}
.y34{bottom:1917.419456pt;}
.y3b{bottom:1920.254024pt;}
.y3a{bottom:1952.255033pt;}
.y5{bottom:1953.849627pt;}
.y2a{bottom:2002.422210pt;}
.y4b{bottom:2039.008823pt;}
.y55{bottom:2052.923800pt;}
.y52{bottom:2079.924615pt;}
.y4a{bottom:2087.010337pt;}
.y54{bottom:2091.925030pt;}
.y33{bottom:2104.204824pt;}
.y51{bottom:2118.925845pt;}
.y53{bottom:2130.926260pt;}
.y49{bottom:2135.011851pt;}
.y32{bottom:2152.206338pt;}
.y50{bottom:2157.927075pt;}
.y48{bottom:2183.013365pt;}
.y4f{bottom:2196.928305pt;}
.y31{bottom:2200.207852pt;}
.y30{bottom:2248.209366pt;}
.y2f{bottom:2296.210880pt;}
.y47{bottom:2296.798312pt;}
.y4e{bottom:2298.755214pt;}
.y4d{bottom:2337.756444pt;}
.y2e{bottom:2344.212394pt;}
.y46{bottom:2344.799826pt;}
.y4c{bottom:2376.757674pt;}
.y2d{bottom:2392.213908pt;}
.y45{bottom:2392.801340pt;}
.y57{bottom:2399.801615pt;}
.y56{bottom:2424.802403pt;}
.y2c{bottom:2440.215423pt;}
.y44{bottom:2440.802854pt;}
.y2b{bottom:2488.216937pt;}
.y4{bottom:2488.804368pt;}
.y3{bottom:2536.805882pt;}
.y29{bottom:2572.807018pt;}
.y2{bottom:2584.807397pt;}
.y12{bottom:3003.239721pt;}
.yc{bottom:3030.186838pt;}
.y11{bottom:3098.242717pt;}
.y15{bottom:3383.145090pt;}
.yf{bottom:3449.147200pt;}
.y10{bottom:3466.147736pt;}
.yd{bottom:3515.415325pt;}
.ye{bottom:3532.415861pt;}
.ya{bottom:3603.751399pt;}
.yb{bottom:3632.752314pt;}
.y9{bottom:3792.387864pt;}
.y8{bottom:3951.392879pt;}
.y7{bottom:4360.775613pt;}
.h10{height:66.167747pt;}
.ha{height:71.618259pt;}
.hc{height:82.701929pt;}
.hf{height:103.392927pt;}
.h4{height:106.259007pt;}
.h8{height:118.723745pt;}
.h5{height:119.363765pt;}
.h3{height:124.083914pt;}
.hd{height:126.884002pt;}
.he{height:169.168102pt;}
.h7{height:197.853132pt;}
.hb{height:279.433164pt;}
.h6{height:394.669254pt;}
.h9{height:472.901766pt;}
.h2{height:4493.999813pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.999868pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x10{left:200.997668pt;}
.x1b{left:251.849275pt;}
.x2c{left:255.115003pt;}
.x18{left:256.427544pt;}
.x4f{left:259.365137pt;}
.x39{left:260.677678pt;}
.x2e{left:262.537112pt;}
.x2f{left:264.412171pt;}
.x35{left:266.005971pt;}
.x30{left:267.099756pt;}
.x50{left:272.396798pt;}
.x2b{left:277.631338pt;}
.x2d{left:279.084509pt;}
.x34{left:281.725216pt;}
.x38{left:288.553557pt;}
.x17{left:294.381866pt;}
.x19{left:296.241299pt;}
.x14{left:299.725784pt;}
.x1c{left:301.022701pt;}
.x1a{left:310.616754pt;}
.x3a{left:311.726163pt;}
.x37{left:312.851198pt;}
.x32{left:314.460624pt;}
.x36{left:316.601316pt;}
.x33{left:332.523694pt;}
.x15{left:347.227282pt;}
.x51{left:364.602832pt;}
.x16{left:381.837749pt;}
.xb{left:419.307755pt;}
.xc{left:427.792398pt;}
.x12{left:430.276852pt;}
.xd{left:432.823807pt;}
.x7{left:450.802428pt;}
.x13{left:461.355958pt;}
.x9{left:583.228474pt;}
.x5{left:616.312404pt;}
.x31{left:628.187481pt;}
.x4{left:671.814155pt;}
.x8{left:771.734420pt;}
.x4d{left:1195.511822pt;}
.x47{left:1200.986597pt;}
.x4a{left:1219.955945pt;}
.x48{left:1222.034136pt;}
.x49{left:1227.878070pt;}
.x1{left:1233.341140pt;}
.x2{left:1239.888222pt;}
.x3{left:1241.060134pt;}
.x4b{left:1280.176595pt;}
.x3e{left:1346.825937pt;}
.x40{left:1351.669840pt;}
.x3f{left:1384.905263pt;}
.x41{left:1397.796295pt;}
.x3b{left:1480.699730pt;}
.xa{left:1517.179813pt;}
.x4c{left:1518.659787pt;}
.x3c{left:1523.372951pt;}
.x3d{left:1532.607617pt;}
.x42{left:1589.341502pt;}
.x43{left:1660.203112pt;}
.x44{left:1684.516379pt;}
.xe{left:1723.774461pt;}
.x45{left:1781.425279pt;}
.x46{left:1793.331905pt;}
.x4e{left:1800.736789pt;}
.xf{left:2056.097448pt;}
.x1f{left:2147.651193pt;}
.x24{left:2149.041862pt;}
.x23{left:2157.667134pt;}
.x22{left:2166.729920pt;}
.x29{left:2172.529973pt;}
.x20{left:2173.886396pt;}
.x25{left:2177.917773pt;}
.x28{left:2184.686606pt;}
.x21{left:2198.105910pt;}
.x26{left:2206.871811pt;}
.x2a{left:2225.156633pt;}
.x1e{left:2237.584811pt;}
.x1d{left:2275.889613pt;}
.x6{left:2277.166796pt;}
.x11{left:2366.908957pt;}
.x27{left:2376.611540pt;}
}




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