
    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_0fe4375be4bab9d8b8104a7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_f2d8c0cd4cd497059bf0a5d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_f17755448773edc490907805.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_516e4ac78d074e0760711f46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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_5122160959f99187c587bd9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.923432px;}
.ls2{letter-spacing:1.512000px;}
.ls3{letter-spacing:944.819000px;}
.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:-21.129671px;}
.wsa{word-spacing:-19.444913px;}
.ws6{word-spacing:-16.470000px;}
.ws2{word-spacing:-14.958000px;}
.ws8{word-spacing:-14.210587px;}
.ws9{word-spacing:-11.965913px;}
.ws0{word-spacing:-11.633594px;}
.ws4{word-spacing:-10.508889px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:213.012000px;}
.ws7{word-spacing:1783.771308px;}
._1a{margin-left:-7.562469px;}
._e{margin-left:-5.302209px;}
._13{margin-left:-3.798299px;}
._3{margin-left:-2.795317px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._b{width:3.756041px;}
._8{width:5.243787px;}
._9{width:6.582252px;}
._c{width:7.830124px;}
._a{width:9.342079px;}
._5{width:11.177543px;}
._7{width:12.258040px;}
._6{width:13.260797px;}
._d{width:16.092536px;}
._16{width:17.190088px;}
._4{width:18.320828px;}
._14{width:23.508475px;}
._15{width:24.694943px;}
._18{width:26.249827px;}
._17{width:46.571645px;}
._f{width:116.100000px;}
._19{width:207.369845px;}
._10{width:290.484000px;}
._11{width:317.484000px;}
._12{width:362.484000px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs7{font-size:40.500000px;}
.fs0{font-size:41.998536px;}
.fs9{font-size:43.198242px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y22{bottom:46.734370px;}
.y21{bottom:59.015622px;}
.y20{bottom:71.302734px;}
.y53{bottom:80.449500px;}
.y73{bottom:84.978516px;}
.y72{bottom:102.937500px;}
.y1e{bottom:130.353477px;}
.y71{bottom:140.443359px;}
.y23{bottom:146.560500px;}
.y1d{bottom:149.249967px;}
.y47{bottom:151.330056px;}
.y51{bottom:156.392589px;}
.y1c{bottom:168.152316px;}
.y46{bottom:170.232405px;}
.y50{bottom:175.294931px;}
.y45{bottom:189.128895px;}
.y70{bottom:194.144532px;}
.y4f{bottom:194.191411px;}
.y1b{bottom:200.548806px;}
.y44{bottom:208.031244px;}
.y4e{bottom:213.093753px;}
.y6f{bottom:222.890625px;}
.y43{bottom:226.927729px;}
.y4d{bottom:231.990233px;}
.y1a{bottom:232.951155px;}
.y42{bottom:245.830035px;}
.y41{bottom:264.732384px;}
.y19{bottom:265.353504px;}
.y4c{bottom:269.794918px;}
.y6e{bottom:278.501954px;}
.y40{bottom:283.628874px;}
.y18{bottom:284.249994px;}
.y17{bottom:303.152338px;}
.y6d{bottom:309.158204px;}
.y3f{bottom:316.031223px;}
.y16{bottom:322.048818px;}
.y15{bottom:340.951167px;}
.y3e{bottom:348.427713px;}
.y14{bottom:359.853499px;}
.y6c{bottom:364.763667px;}
.y3d{bottom:367.330062px;}
.y13{bottom:378.749989px;}
.y6b{bottom:383.666016px;}
.y3c{bottom:386.232411px;}
.y99{bottom:387.580078px;}
.y4b{bottom:391.294918px;}
.y12{bottom:397.652338px;}
.y3b{bottom:405.128901px;}
.y98{bottom:406.482422px;}
.y7e{bottom:409.306642px;}
.y6a{bottom:414.322266px;}
.y11{bottom:416.548823px;}
.y3a{bottom:424.031239px;}
.y97{bottom:425.378901px;}
.y39{bottom:442.927729px;}
.y96{bottom:444.281250px;}
.y7d{bottom:447.105471px;}
.y10{bottom:448.951172px;}
.y38{bottom:461.829987px;}
.y95{bottom:463.177734px;}
.y69{bottom:469.927626px;}
.yf{bottom:479.607422px;}
.y37{bottom:480.732336px;}
.y94{bottom:482.080078px;}
.y7c{bottom:484.904300px;}
.y68{bottom:488.829975px;}
.y36{bottom:499.628826px;}
.y93{bottom:500.982422px;}
.y67{bottom:507.732324px;}
.y92{bottom:519.878907px;}
.y7b{bottom:522.708982px;}
.y66{bottom:526.628814px;}
.y35{bottom:532.031175px;}
.y91{bottom:538.781250px;}
.y65{bottom:545.531163px;}
.ye{bottom:548.707030px;}
.y90{bottom:557.677734px;}
.y7a{bottom:560.507811px;}
.y64{bottom:564.427653px;}
.y34{bottom:564.427665px;}
.yd{bottom:565.505856px;}
.y8f{bottom:576.580078px;}
.yc{bottom:582.304682px;}
.y63{bottom:583.330002px;}
.y33{bottom:583.330014px;}
.y8e{bottom:595.482422px;}
.y79{bottom:598.306640px;}
.y62{bottom:602.232351px;}
.y32{bottom:602.232363px;}
.yb{bottom:603.603516px;}
.y8d{bottom:614.378901px;}
.y61{bottom:621.128841px;}
.ya{bottom:629.408204px;}
.y8c{bottom:633.281250px;}
.y31{bottom:634.628853px;}
.y78{bottom:636.105469px;}
.y60{bottom:640.031190px;}
.y8b{bottom:652.177734px;}
.y30{bottom:653.531202px;}
.y8a{bottom:671.080079px;}
.y5f{bottom:672.427680px;}
.y2f{bottom:672.427692px;}
.y77{bottom:673.904298px;}
.y9{bottom:679.658207px;}
.y89{bottom:689.982421px;}
.y2e{bottom:691.330041px;}
.y76{bottom:692.806639px;}
.y8{bottom:692.888671px;}
.y5e{bottom:704.830029px;}
.y88{bottom:708.878907px;}
.y2d{bottom:710.232390px;}
.y75{bottom:711.708980px;}
.y7{bottom:713.847657px;}
.y1f{bottom:718.347657px;}
.y26{bottom:722.970739px;}
.y5d{bottom:723.732378px;}
.y87{bottom:727.781250px;}
.y2c{bottom:729.128880px;}
.y74{bottom:730.605468px;}
.y5c{bottom:742.628868px;}
.y2b{bottom:748.031229px;}
.y4a{bottom:753.093750px;}
.y25{bottom:755.367230px;}
.y6{bottom:756.158206px;}
.y86{bottom:758.642579px;}
.y5b{bottom:761.531217px;}
.y2a{bottom:766.927719px;}
.y24{bottom:774.269578px;}
.y5a{bottom:780.427707px;}
.y5{bottom:793.710931px;}
.y29{bottom:799.330068px;}
.y59{bottom:812.830056px;}
.y85{bottom:813.808584px;}
.y4{bottom:831.269532px;}
.y58{bottom:831.732405px;}
.y28{bottom:831.732417px;}
.y84{bottom:831.761711px;}
.y54{bottom:840.380579px;}
.y83{bottom:849.714838px;}
.y57{bottom:850.628895px;}
.y27{bottom:850.628907px;}
.y49{bottom:855.691408px;}
.y82{bottom:867.673826px;}
.y56{bottom:869.531244px;}
.y48{bottom:874.593750px;}
.y81{bottom:885.626954px;}
.y55{bottom:888.427734px;}
.y3{bottom:899.378907px;}
.y80{bottom:903.580079px;}
.y7f{bottom:921.539062px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y52{bottom:974.730470px;}
.h8{height:26.244141px;}
.h5{height:27.557629px;}
.h9{height:28.048904px;}
.hd{height:29.524658px;}
.h1{height:30.617097px;}
.h11{height:31.449501px;}
.h4{height:34.993255px;}
.he{height:35.617086px;}
.h10{height:37.399182px;}
.h2{height:39.366211px;}
.h7{height:39.366277px;}
.hc{height:39.366385px;}
.hb{height:39.366577px;}
.h12{height:51.106240px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.ha{height:788.403000px;}
.hf{height:854.514000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x8{left:11.250609px;}
.x3{left:78.662109px;}
.x6{left:89.912103px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x14{left:103.412109px;}
.x15{left:106.787109px;}
.x16{left:109.037109px;}
.x12{left:123.662109px;}
.x13{left:137.039062px;}
.xa{left:141.662109px;}
.x7{left:152.912109px;}
.x1{left:205.335938px;}
.x11{left:273.287130px;}
.x2{left:288.351562px;}
.x10{left:293.191422px;}
.xb{left:327.410155px;}
.xd{left:335.039069px;}
.xf{left:343.611340px;}
.xc{left:463.353518px;}
.xe{left:487.693370px;}
.x9{left:598.494141px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.820828pt;}
.ls2{letter-spacing:1.344000pt;}
.ls3{letter-spacing:839.839111pt;}
.ws1{word-spacing:-18.781930pt;}
.wsa{word-spacing:-17.284367pt;}
.ws6{word-spacing:-14.640000pt;}
.ws2{word-spacing:-13.296000pt;}
.ws8{word-spacing:-12.631633pt;}
.ws9{word-spacing:-10.636367pt;}
.ws0{word-spacing:-10.340973pt;}
.ws4{word-spacing:-9.341234pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:189.344000pt;}
.ws7{word-spacing:1585.574496pt;}
._1a{margin-left:-6.722195pt;}
._e{margin-left:-4.713074pt;}
._13{margin-left:-3.376266pt;}
._3{margin-left:-2.484727pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._b{width:3.338703pt;}
._8{width:4.661144pt;}
._9{width:5.850891pt;}
._c{width:6.960110pt;}
._a{width:8.304070pt;}
._5{width:9.935594pt;}
._7{width:10.896035pt;}
._6{width:11.787375pt;}
._d{width:14.304477pt;}
._16{width:15.280078pt;}
._4{width:16.285180pt;}
._14{width:20.896422pt;}
._15{width:21.951060pt;}
._18{width:23.333179pt;}
._17{width:41.397018pt;}
._f{width:103.200000pt;}
._19{width:184.328751pt;}
._10{width:258.208000pt;}
._11{width:282.208000pt;}
._12{width:322.208000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs7{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.fs9{font-size:38.398437pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:41.541662pt;}
.y21{bottom:52.458331pt;}
.y20{bottom:63.380208pt;}
.y53{bottom:71.510667pt;}
.y73{bottom:75.536459pt;}
.y72{bottom:91.500000pt;}
.y1e{bottom:115.869757pt;}
.y71{bottom:124.838541pt;}
.y23{bottom:130.276000pt;}
.y1d{bottom:132.666637pt;}
.y47{bottom:134.515605pt;}
.y51{bottom:139.015635pt;}
.y1c{bottom:149.468725pt;}
.y46{bottom:151.317693pt;}
.y50{bottom:155.817717pt;}
.y45{bottom:168.114573pt;}
.y70{bottom:172.572917pt;}
.y4f{bottom:172.614588pt;}
.y1b{bottom:178.265605pt;}
.y44{bottom:184.916661pt;}
.y4e{bottom:189.416670pt;}
.y6f{bottom:198.125000pt;}
.y43{bottom:201.713537pt;}
.y4d{bottom:206.213541pt;}
.y1a{bottom:207.067693pt;}
.y42{bottom:218.515587pt;}
.y41{bottom:235.317675pt;}
.y19{bottom:235.869781pt;}
.y4c{bottom:239.817705pt;}
.y6e{bottom:247.557292pt;}
.y40{bottom:252.114555pt;}
.y18{bottom:252.666661pt;}
.y17{bottom:269.468745pt;}
.y6d{bottom:274.807292pt;}
.y3f{bottom:280.916643pt;}
.y16{bottom:286.265616pt;}
.y15{bottom:303.067704pt;}
.y3e{bottom:309.713523pt;}
.y14{bottom:319.869777pt;}
.y6c{bottom:324.234371pt;}
.y3d{bottom:326.515611pt;}
.y13{bottom:336.666657pt;}
.y6b{bottom:341.036459pt;}
.y3c{bottom:343.317699pt;}
.y99{bottom:344.515625pt;}
.y4b{bottom:347.817705pt;}
.y12{bottom:353.468745pt;}
.y3b{bottom:360.114579pt;}
.y98{bottom:361.317708pt;}
.y7e{bottom:363.828126pt;}
.y6a{bottom:368.286459pt;}
.y11{bottom:370.265620pt;}
.y3a{bottom:376.916657pt;}
.y97{bottom:378.114579pt;}
.y39{bottom:393.713537pt;}
.y96{bottom:394.916667pt;}
.y7d{bottom:397.427085pt;}
.y10{bottom:399.067708pt;}
.y38{bottom:410.515544pt;}
.y95{bottom:411.713541pt;}
.y69{bottom:417.713445pt;}
.yf{bottom:426.317708pt;}
.y37{bottom:427.317632pt;}
.y94{bottom:428.515625pt;}
.y7c{bottom:431.026044pt;}
.y68{bottom:434.515533pt;}
.y36{bottom:444.114512pt;}
.y93{bottom:445.317708pt;}
.y67{bottom:451.317621pt;}
.y92{bottom:462.114584pt;}
.y7b{bottom:464.630206pt;}
.y66{bottom:468.114501pt;}
.y35{bottom:472.916600pt;}
.y91{bottom:478.916667pt;}
.y65{bottom:484.916589pt;}
.ye{bottom:487.739582pt;}
.y90{bottom:495.713541pt;}
.y7a{bottom:498.229165pt;}
.y64{bottom:501.713469pt;}
.y34{bottom:501.713480pt;}
.yd{bottom:502.671872pt;}
.y8f{bottom:512.515625pt;}
.yc{bottom:517.604162pt;}
.y63{bottom:518.515557pt;}
.y33{bottom:518.515568pt;}
.y8e{bottom:529.317708pt;}
.y79{bottom:531.828124pt;}
.y62{bottom:535.317645pt;}
.y32{bottom:535.317656pt;}
.yb{bottom:536.536458pt;}
.y8d{bottom:546.114579pt;}
.y61{bottom:552.114525pt;}
.ya{bottom:559.473959pt;}
.y8c{bottom:562.916667pt;}
.y31{bottom:564.114536pt;}
.y78{bottom:565.427084pt;}
.y60{bottom:568.916613pt;}
.y8b{bottom:579.713541pt;}
.y30{bottom:580.916624pt;}
.y8a{bottom:596.515625pt;}
.y5f{bottom:597.713493pt;}
.y2f{bottom:597.713504pt;}
.y77{bottom:599.026043pt;}
.y9{bottom:604.140629pt;}
.y89{bottom:613.317708pt;}
.y2e{bottom:614.515592pt;}
.y76{bottom:615.828124pt;}
.y8{bottom:615.901041pt;}
.y5e{bottom:626.515581pt;}
.y88{bottom:630.114584pt;}
.y2d{bottom:631.317680pt;}
.y75{bottom:632.630205pt;}
.y7{bottom:634.531251pt;}
.y1f{bottom:638.531251pt;}
.y26{bottom:642.640657pt;}
.y5d{bottom:643.317669pt;}
.y87{bottom:646.916667pt;}
.y2c{bottom:648.114560pt;}
.y74{bottom:649.427083pt;}
.y5c{bottom:660.114549pt;}
.y2b{bottom:664.916648pt;}
.y4a{bottom:669.416667pt;}
.y25{bottom:671.437537pt;}
.y6{bottom:672.140627pt;}
.y86{bottom:674.348959pt;}
.y5b{bottom:676.916637pt;}
.y2a{bottom:681.713528pt;}
.y24{bottom:688.239625pt;}
.y5a{bottom:693.713517pt;}
.y5{bottom:705.520828pt;}
.y29{bottom:710.515616pt;}
.y59{bottom:722.515605pt;}
.y85{bottom:723.385408pt;}
.y4{bottom:738.906251pt;}
.y58{bottom:739.317693pt;}
.y28{bottom:739.317704pt;}
.y84{bottom:739.343743pt;}
.y54{bottom:747.004959pt;}
.y83{bottom:755.302078pt;}
.y57{bottom:756.114573pt;}
.y27{bottom:756.114584pt;}
.y49{bottom:760.614585pt;}
.y82{bottom:771.265623pt;}
.y56{bottom:772.916661pt;}
.y48{bottom:777.416667pt;}
.y81{bottom:787.223959pt;}
.y55{bottom:789.713541pt;}
.y3{bottom:799.447917pt;}
.y80{bottom:803.182292pt;}
.y7f{bottom:819.145833pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y52{bottom:866.427084pt;}
.h8{height:23.328125pt;}
.h5{height:24.495670pt;}
.h9{height:24.932359pt;}
.hd{height:26.244141pt;}
.h1{height:27.215197pt;}
.h11{height:27.955112pt;}
.h4{height:31.105115pt;}
.he{height:31.659632pt;}
.h10{height:33.243717pt;}
.h2{height:34.992188pt;}
.h7{height:34.992246pt;}
.hc{height:34.992342pt;}
.hb{height:34.992513pt;}
.h12{height:45.427769pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.ha{height:700.802667pt;}
.hf{height:759.568000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x8{left:10.000541pt;}
.x3{left:69.921875pt;}
.x6{left:79.921869pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x14{left:91.921875pt;}
.x15{left:94.921875pt;}
.x16{left:96.921875pt;}
.x12{left:109.921875pt;}
.x13{left:121.812500pt;}
.xa{left:125.921875pt;}
.x7{left:135.921875pt;}
.x1{left:182.520833pt;}
.x11{left:242.921893pt;}
.x2{left:256.312500pt;}
.x10{left:260.614597pt;}
.xb{left:291.031249pt;}
.xd{left:297.812506pt;}
.xf{left:305.432302pt;}
.xc{left:411.869794pt;}
.xe{left:433.505218pt;}
.x9{left:531.994792pt;}
}




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