
    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_e517203bb31ef47657ee25f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.446000;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_faed07f128ef177a49ca727e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.855000;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_fa081d2e1a8111180411db1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130000;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_efec1bd7429e75c0434e193c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128000;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;}
}
.ws0{word-spacing:-700.974120px;}
.ws1{word-spacing:-191.365935px;}
.ws3{word-spacing:-52.487482px;}
.ws2{word-spacing:-52.402800px;}
.ws4{word-spacing:-47.987912px;}
.ws5{word-spacing:-29.989633px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.002639px;}
._16{width:1.395992px;}
._7{width:2.568174px;}
._1e{width:3.712505px;}
._c{width:4.985343px;}
._1f{width:6.852305px;}
._1a{width:8.213245px;}
._2e{width:9.499312px;}
._12{width:10.874470px;}
._f{width:12.576568px;}
._18{width:13.671673px;}
._23{width:16.908708px;}
._17{width:18.258039px;}
._26{width:19.308554px;}
._13{width:20.421388px;}
._2b{width:21.904536px;}
._5{width:23.366446px;}
._14{width:24.653143px;}
._3{width:26.267229px;}
._24{width:31.048471px;}
._8{width:32.202386px;}
._19{width:34.059359px;}
._33{width:35.621609px;}
._6{width:37.536131px;}
._27{width:42.590723px;}
._1c{width:44.231356px;}
._28{width:48.035247px;}
._34{width:49.577700px;}
._2d{width:50.805857px;}
._2a{width:56.054921px;}
._b{width:57.120059px;}
._32{width:60.319703px;}
._10{width:64.761588px;}
._31{width:66.055754px;}
._11{width:74.972057px;}
._36{width:76.015327px;}
._30{width:77.735378px;}
._9{width:78.817074px;}
._21{width:80.532130px;}
._e{width:84.864046px;}
._d{width:87.198603px;}
._1{width:91.828210px;}
._22{width:103.501309px;}
._25{width:108.540783px;}
._a{width:115.419725px;}
._15{width:120.114846px;}
._2c{width:125.341366px;}
._20{width:129.131984px;}
._2f{width:142.947553px;}
._29{width:149.081816px;}
._4{width:153.097053px;}
._2{width:155.180983px;}
._1d{width:168.382811px;}
._35{width:220.165570px;}
._1b{width:2447.722505px;}
.fc3{color:transparent;}
.fc1{color:rgb(81,208,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:119.958531px;}
.fs0{font-size:191.951648px;}
.fs5{font-size:209.949927px;}
.fs4{font-size:215.979350px;}
.fs3{font-size:287.972467px;}
.fs2{font-size:317.939602px;}
.fs1{font-size:700.974120px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000119px;}
.y4{bottom:69.074155px;}
.y60{bottom:284.332285px;}
.y5f{bottom:325.953306px;}
.y71{bottom:361.239659px;}
.y5e{bottom:367.574327px;}
.y5d{bottom:409.195347px;}
.y70{bottom:427.608313px;}
.y5c{bottom:450.816368px;}
.y5b{bottom:492.437389px;}
.y6f{bottom:493.976968px;}
.y5a{bottom:534.058409px;}
.y6e{bottom:560.345623px;}
.y59{bottom:575.679430px;}
.y58{bottom:617.300451px;}
.y6d{bottom:626.714277px;}
.y57{bottom:658.921471px;}
.y6c{bottom:693.082932px;}
.y56{bottom:700.542492px;}
.y55{bottom:742.163512px;}
.y6b{bottom:759.451586px;}
.y54{bottom:783.784533px;}
.y53{bottom:825.405554px;}
.y6a{bottom:825.820241px;}
.y52{bottom:867.026574px;}
.y69{bottom:892.188895px;}
.y51{bottom:908.647595px;}
.y50{bottom:950.268616px;}
.y68{bottom:958.557550px;}
.y4f{bottom:991.889636px;}
.y67{bottom:1024.926204px;}
.y4e{bottom:1033.510657px;}
.y4d{bottom:1075.131678px;}
.y66{bottom:1091.294859px;}
.y4c{bottom:1116.752698px;}
.y65{bottom:1157.663514px;}
.y4b{bottom:1158.373719px;}
.y4a{bottom:1199.994740px;}
.y64{bottom:1224.032168px;}
.y49{bottom:1241.615760px;}
.y48{bottom:1283.236781px;}
.y47{bottom:1324.857802px;}
.y72{bottom:1335.679291px;}
.y46{bottom:1366.478822px;}
.y45{bottom:1408.099843px;}
.y44{bottom:1449.720864px;}
.y22{bottom:1467.263923px;}
.y43{bottom:1491.341884px;}
.y42{bottom:1532.962905px;}
.y21{bottom:1533.632577px;}
.y41{bottom:1574.583925px;}
.y20{bottom:1600.001232px;}
.y40{bottom:1616.204946px;}
.y3f{bottom:1657.825967px;}
.y1f{bottom:1666.369886px;}
.y3e{bottom:1699.446987px;}
.y1e{bottom:1732.738541px;}
.y3d{bottom:1741.068008px;}
.y3c{bottom:1782.689029px;}
.y1d{bottom:1799.107195px;}
.y3b{bottom:1824.310049px;}
.y1c{bottom:1865.475850px;}
.y3a{bottom:1865.931070px;}
.y39{bottom:1907.552091px;}
.y1b{bottom:1931.844504px;}
.y38{bottom:1949.173111px;}
.y37{bottom:1990.794132px;}
.y1a{bottom:1998.213159px;}
.y36{bottom:2032.415153px;}
.y19{bottom:2064.581814px;}
.y35{bottom:2074.036173px;}
.y34{bottom:2115.657194px;}
.y18{bottom:2130.950468px;}
.y33{bottom:2157.278215px;}
.y32{bottom:2198.899235px;}
.y9{bottom:2234.089291px;}
.y31{bottom:2240.520256px;}
.y30{bottom:2282.141277px;}
.y2f{bottom:2323.762297px;}
.y17{bottom:2344.578159px;}
.y2e{bottom:2365.383318px;}
.y2d{bottom:2407.004338px;}
.y16{bottom:2410.946814px;}
.y2c{bottom:2448.625359px;}
.y15{bottom:2477.315468px;}
.y2b{bottom:2490.246380px;}
.y2a{bottom:2531.867400px;}
.y29{bottom:2573.488421px;}
.ya{bottom:2584.705291px;}
.y28{bottom:2615.109442px;}
.y27{bottom:2656.730462px;}
.y63{bottom:2716.234659px;}
.y7{bottom:2736.077791px;}
.y62{bottom:2782.603314px;}
.y61{bottom:2848.971968px;}
.y26{bottom:2862.591504px;}
.y25{bottom:2928.960159px;}
.y24{bottom:2995.328814px;}
.y23{bottom:3061.697468px;}
.y8{bottom:3164.455291px;}
.y74{bottom:3308.363814px;}
.y73{bottom:3374.732468px;}
.y14{bottom:3687.641350px;}
.y13{bottom:3754.010004px;}
.y12{bottom:3820.378659px;}
.y11{bottom:3886.747314px;}
.y10{bottom:3953.115968px;}
.y2{bottom:4063.576291px;}
.yf{bottom:4240.704272px;}
.ye{bottom:4313.822281px;}
.yd{bottom:4386.940291px;}
.yc{bottom:4487.056506px;}
.yb{bottom:4581.471012px;}
.y3{bottom:4784.715000px;}
.y6{bottom:4833.751234px;}
.y5{bottom:4943.990695px;}
.hb{height:109.882014px;}
.ha{height:175.827709px;}
.h9{height:192.314133px;}
.h8{height:197.837085px;}
.h3{height:221.128298px;}
.h4{height:270.000000px;}
.h7{height:270.694119px;}
.h6{height:366.266422px;}
.h5{height:807.522186px;}
.h2{height:5101.874881px;}
.h0{height:5101.875000px;}
.h1{height:5102.250000px;}
.w1{width:756.360000px;}
.w0{width:3402.000000px;}
.x0{left:0.000000px;}
.x3{left:55.193082px;}
.xf{left:105.753645px;}
.x10{left:123.751935px;}
.x12{left:155.983800px;}
.xc{left:180.970559px;}
.xd{left:279.047119px;}
.xb{left:312.430200px;}
.xa{left:316.982550px;}
.x1{left:671.657468px;}
.x9{left:727.682407px;}
.x8{left:758.696072px;}
.x5{left:893.377237px;}
.x4{left:1104.523121px;}
.xe{left:1400.740656px;}
.x13{left:1803.030000px;}
.x11{left:1819.207500px;}
.x6{left:2225.383531px;}
.x7{left:2442.127463px;}
.x2{left:2570.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-623.088106pt;}
.ws1{word-spacing:-170.103053pt;}
.ws3{word-spacing:-46.655539pt;}
.ws2{word-spacing:-46.580267pt;}
.ws4{word-spacing:-42.655922pt;}
.ws5{word-spacing:-26.657451pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-0.891235pt;}
._16{width:1.240881pt;}
._7{width:2.282822pt;}
._1e{width:3.300004pt;}
._c{width:4.431416pt;}
._1f{width:6.090938pt;}
._1a{width:7.300662pt;}
._2e{width:8.443833pt;}
._12{width:9.666196pt;}
._f{width:11.179171pt;}
._18{width:12.152598pt;}
._23{width:15.029963pt;}
._17{width:16.229368pt;}
._26{width:17.163159pt;}
._13{width:18.152344pt;}
._2b{width:19.470698pt;}
._5{width:20.770174pt;}
._14{width:21.913905pt;}
._3{width:23.348648pt;}
._24{width:27.598641pt;}
._8{width:28.624343pt;}
._19{width:30.274985pt;}
._33{width:31.663653pt;}
._6{width:33.365450pt;}
._27{width:37.858420pt;}
._1c{width:39.316761pt;}
._28{width:42.697998pt;}
._34{width:44.069067pt;}
._2d{width:45.160762pt;}
._2a{width:49.826596pt;}
._b{width:50.773386pt;}
._32{width:53.617514pt;}
._10{width:57.565856pt;}
._31{width:58.716226pt;}
._11{width:66.641828pt;}
._36{width:67.569180pt;}
._30{width:69.098114pt;}
._9{width:70.059622pt;}
._21{width:71.584116pt;}
._e{width:75.434708pt;}
._d{width:77.509869pt;}
._1{width:81.625076pt;}
._22{width:92.001164pt;}
._25{width:96.480696pt;}
._a{width:102.595311pt;}
._15{width:106.768752pt;}
._2c{width:111.414548pt;}
._20{width:114.783986pt;}
._2f{width:127.064491pt;}
._29{width:132.517170pt;}
._4{width:136.086269pt;}
._2{width:137.938652pt;}
._1d{width:149.673610pt;}
._35{width:195.702729pt;}
._1b{width:2175.753338pt;}
.fs6{font-size:106.629805pt;}
.fs0{font-size:170.623687pt;}
.fs5{font-size:186.622157pt;}
.fs4{font-size:191.981645pt;}
.fs3{font-size:255.975526pt;}
.fs2{font-size:282.612980pt;}
.fs1{font-size:623.088106pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000106pt;}
.y4{bottom:61.399249pt;}
.y60{bottom:252.739809pt;}
.y5f{bottom:289.736272pt;}
.y71{bottom:321.101919pt;}
.y5e{bottom:326.732735pt;}
.y5d{bottom:363.729198pt;}
.y70{bottom:380.096279pt;}
.y5c{bottom:400.725660pt;}
.y5b{bottom:437.722123pt;}
.y6f{bottom:439.090638pt;}
.y5a{bottom:474.718586pt;}
.y6e{bottom:498.084998pt;}
.y59{bottom:511.715049pt;}
.y58{bottom:548.711512pt;}
.y6d{bottom:557.079357pt;}
.y57{bottom:585.707974pt;}
.y6c{bottom:616.073717pt;}
.y56{bottom:622.704437pt;}
.y55{bottom:659.700900pt;}
.y6b{bottom:675.068077pt;}
.y54{bottom:696.697363pt;}
.y53{bottom:733.693826pt;}
.y6a{bottom:734.062436pt;}
.y52{bottom:770.690288pt;}
.y69{bottom:793.056796pt;}
.y51{bottom:807.686751pt;}
.y50{bottom:844.683214pt;}
.y68{bottom:852.051155pt;}
.y4f{bottom:881.679677pt;}
.y67{bottom:911.045515pt;}
.y4e{bottom:918.676140pt;}
.y4d{bottom:955.672602pt;}
.y66{bottom:970.039875pt;}
.y4c{bottom:992.669065pt;}
.y65{bottom:1029.034234pt;}
.y4b{bottom:1029.665528pt;}
.y4a{bottom:1066.661991pt;}
.y64{bottom:1088.028594pt;}
.y49{bottom:1103.658454pt;}
.y48{bottom:1140.654916pt;}
.y47{bottom:1177.651379pt;}
.y72{bottom:1187.270481pt;}
.y46{bottom:1214.647842pt;}
.y45{bottom:1251.644305pt;}
.y44{bottom:1288.640768pt;}
.y22{bottom:1304.234598pt;}
.y43{bottom:1325.637230pt;}
.y42{bottom:1362.633693pt;}
.y21{bottom:1363.228957pt;}
.y41{bottom:1399.630156pt;}
.y20{bottom:1422.223317pt;}
.y40{bottom:1436.626619pt;}
.y3f{bottom:1473.623082pt;}
.y1f{bottom:1481.217677pt;}
.y3e{bottom:1510.619544pt;}
.y1e{bottom:1540.212036pt;}
.y3d{bottom:1547.616007pt;}
.y3c{bottom:1584.612470pt;}
.y1d{bottom:1599.206396pt;}
.y3b{bottom:1621.608933pt;}
.y1c{bottom:1658.200755pt;}
.y3a{bottom:1658.605396pt;}
.y39{bottom:1695.601858pt;}
.y1b{bottom:1717.195115pt;}
.y38{bottom:1732.598321pt;}
.y37{bottom:1769.594784pt;}
.y1a{bottom:1776.189475pt;}
.y36{bottom:1806.591247pt;}
.y19{bottom:1835.183834pt;}
.y35{bottom:1843.587710pt;}
.y34{bottom:1880.584172pt;}
.y18{bottom:1894.178194pt;}
.y33{bottom:1917.580635pt;}
.y32{bottom:1954.577098pt;}
.y9{bottom:1985.857147pt;}
.y31{bottom:1991.573561pt;}
.y30{bottom:2028.570024pt;}
.y2f{bottom:2065.566486pt;}
.y17{bottom:2084.069475pt;}
.y2e{bottom:2102.562949pt;}
.y2d{bottom:2139.559412pt;}
.y16{bottom:2143.063834pt;}
.y2c{bottom:2176.555875pt;}
.y15{bottom:2202.058194pt;}
.y2b{bottom:2213.552338pt;}
.y2a{bottom:2250.548800pt;}
.y29{bottom:2287.545263pt;}
.ya{bottom:2297.515814pt;}
.y28{bottom:2324.541726pt;}
.y27{bottom:2361.538189pt;}
.y63{bottom:2414.430808pt;}
.y7{bottom:2432.069147pt;}
.y62{bottom:2473.425168pt;}
.y61{bottom:2532.419527pt;}
.y26{bottom:2544.525782pt;}
.y25{bottom:2603.520141pt;}
.y24{bottom:2662.514501pt;}
.y23{bottom:2721.508861pt;}
.y8{bottom:2812.849147pt;}
.y74{bottom:2940.767834pt;}
.y73{bottom:2999.762194pt;}
.y14{bottom:3277.903422pt;}
.y13{bottom:3336.897782pt;}
.y12{bottom:3395.892141pt;}
.y11{bottom:3454.886501pt;}
.y10{bottom:3513.880861pt;}
.y2{bottom:3612.067814pt;}
.yf{bottom:3769.514909pt;}
.ye{bottom:3834.508695pt;}
.yd{bottom:3899.502481pt;}
.yc{bottom:3988.494672pt;}
.yb{bottom:4072.418677pt;}
.y3{bottom:4253.080000pt;}
.y6{bottom:4296.667764pt;}
.y5{bottom:4394.658395pt;}
.hb{height:97.672902pt;}
.ha{height:156.291297pt;}
.h9{height:170.945896pt;}
.h8{height:175.855187pt;}
.h3{height:196.558487pt;}
.h4{height:240.000000pt;}
.h7{height:240.616995pt;}
.h6{height:325.570153pt;}
.h5{height:717.797499pt;}
.h2{height:4534.999894pt;}
.h0{height:4535.000000pt;}
.h1{height:4535.333333pt;}
.w1{width:672.320000pt;}
.w0{width:3024.000000pt;}
.x0{left:0.000000pt;}
.x3{left:49.060517pt;}
.xf{left:94.003240pt;}
.x10{left:110.001720pt;}
.x12{left:138.652267pt;}
.xc{left:160.862719pt;}
.xd{left:248.041884pt;}
.xb{left:277.715733pt;}
.xa{left:281.762267pt;}
.x1{left:597.028861pt;}
.x9{left:646.828807pt;}
.x8{left:674.396509pt;}
.x5{left:794.113099pt;}
.x4{left:981.798330pt;}
.xe{left:1245.102805pt;}
.x13{left:1602.693333pt;}
.x11{left:1617.073333pt;}
.x6{left:1978.118694pt;}
.x7{left:2170.779967pt;}
.x2{left:2285.120000pt;}
}




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