
    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_027dd56f2c17b6ad8c850643.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_7a3cc0260d635f29f59b430a.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_a4e611c09af19ac152d311e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727539;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_9ea61800bfa5bf5ded577ed0.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_144d94d07281815123de1cb5.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b1b3daecc9ee3c10f9915491.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.715820;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_d4883dfe5aa7bcdba33195f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.732000;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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.872130px;}
.ls1{letter-spacing:1.458000px;}
.ls5{letter-spacing:1.744260px;}
.ls3{letter-spacing:116.100018px;}
.ls4{letter-spacing:875.069000px;}
.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;}
}
.ws8{word-spacing:-48.001464px;}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-16.416000px;}
.ws5{word-spacing:-14.958000px;}
.ws6{word-spacing:-14.210587px;}
.ws7{word-spacing:-13.344407px;}
.ws0{word-spacing:-11.633594px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:101.474877px;}
.ws3{word-spacing:424.512000px;}
._14{margin-left:-9.622986px;}
._d{margin-left:-8.358357px;}
._16{margin-left:-7.007620px;}
._12{margin-left:-5.994000px;}
._3{margin-left:-4.039277px;}
._4{margin-left:-2.981162px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._6{width:4.039657px;}
._7{width:5.130079px;}
._8{width:6.490699px;}
._9{width:8.240122px;}
._c{width:9.408265px;}
._13{width:10.973798px;}
._5{width:18.786127px;}
._f{width:21.438000px;}
._e{width:23.154249px;}
._10{width:24.234012px;}
._11{width:25.338160px;}
._a{width:115.830040px;}
._15{width:195.925326px;}
._b{width:479.484000px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.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;}
.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;}
.y84{bottom:4.528301px;}
.y83{bottom:22.487289px;}
.y82{bottom:40.440416px;}
.y22{bottom:46.734370px;}
.y81{bottom:58.393544px;}
.y21{bottom:59.015622px;}
.y20{bottom:71.302734px;}
.y80{bottom:76.352532px;}
.y7f{bottom:94.305655px;}
.y4a{bottom:95.977500px;}
.y7e{bottom:112.258782px;}
.y6b{bottom:118.458982px;}
.y7d{bottom:130.217762px;}
.y6a{bottom:136.412109px;}
.y7c{bottom:148.170889px;}
.y69{bottom:154.371093px;}
.y1e{bottom:162.503891px;}
.y7b{bottom:166.124016px;}
.y68{bottom:172.324216px;}
.y23{bottom:178.963500px;}
.y1d{bottom:181.406240px;}
.y47{bottom:183.732400px;}
.y7a{bottom:184.077134px;}
.y67{bottom:190.277343px;}
.y79{bottom:202.036123px;}
.y46{bottom:202.628890px;}
.y66{bottom:208.236328px;}
.y1c{bottom:213.802730px;}
.y78{bottom:219.989250px;}
.y45{bottom:221.531240px;}
.y65{bottom:226.189451px;}
.y77{bottom:237.942375px;}
.y44{bottom:240.427729px;}
.y64{bottom:244.142578px;}
.y1b{bottom:246.205068px;}
.y76{bottom:255.901355px;}
.y43{bottom:259.330078px;}
.y63{bottom:262.101560px;}
.y1a{bottom:265.107417px;}
.y75{bottom:273.854482px;}
.y42{bottom:278.232395px;}
.y62{bottom:280.054688px;}
.y19{bottom:284.003901px;}
.y74{bottom:291.807609px;}
.y41{bottom:297.128885px;}
.y61{bottom:298.007806px;}
.y18{bottom:302.906229px;}
.y73{bottom:309.766590px;}
.y60{bottom:315.966794px;}
.y17{bottom:321.802719px;}
.y72{bottom:327.719717px;}
.y40{bottom:329.531234px;}
.y5f{bottom:333.919922px;}
.y16{bottom:340.705068px;}
.y71{bottom:345.672844px;}
.y3f{bottom:348.427724px;}
.y5e{bottom:351.873047px;}
.y15{bottom:359.607417px;}
.y70{bottom:363.631824px;}
.y5d{bottom:369.832028px;}
.y3e{bottom:380.830073px;}
.y6f{bottom:381.584951px;}
.y5c{bottom:387.785155px;}
.y14{bottom:392.003895px;}
.y6e{bottom:399.538078px;}
.y3d{bottom:399.732417px;}
.y5b{bottom:405.738282px;}
.y13{bottom:410.906244px;}
.y6d{bottom:417.497062px;}
.y5a{bottom:423.697266px;}
.y12{bottom:429.802729px;}
.y3c{bottom:432.128895px;}
.y59{bottom:441.650389px;}
.y48{bottom:448.500000px;}
.y11{bottom:448.705068px;}
.y3b{bottom:451.031244px;}
.y58{bottom:459.603516px;}
.y10{bottom:467.607417px;}
.y3a{bottom:469.927719px;}
.y57{bottom:477.562496px;}
.yf{bottom:486.503907px;}
.y39{bottom:488.830068px;}
.y56{bottom:495.515623px;}
.y6c{bottom:504.042000px;}
.y38{bottom:507.732417px;}
.y55{bottom:513.468750px;}
.ye{bottom:517.160157px;}
.y37{bottom:526.628901px;}
.y54{bottom:550.980468px;}
.y36{bottom:559.031239px;}
.y35{bottom:577.927729px;}
.yd{bottom:586.259766px;}
.yc{bottom:603.058590px;}
.y53{bottom:604.681641px;}
.y34{bottom:610.330073px;}
.yb{bottom:619.857416px;}
.y33{bottom:629.232417px;}
.y52{bottom:633.427734px;}
.ya{bottom:641.162108px;}
.y32{bottom:648.128901px;}
.y9{bottom:666.960938px;}
.y31{bottom:667.031240px;}
.y30{bottom:685.927730px;}
.y51{bottom:689.033204px;}
.y8{bottom:717.216802px;}
.y2f{bottom:718.330073px;}
.y50{bottom:719.689454px;}
.y7{bottom:730.441407px;}
.y2e{bottom:737.232417px;}
.y24{bottom:741.866579px;}
.y6{bottom:751.400391px;}
.y1f{bottom:755.900391px;}
.y2d{bottom:756.128901px;}
.y2c{bottom:775.031250px;}
.y4f{bottom:775.300782px;}
.y5{bottom:793.710931px;}
.y2b{bottom:793.927703px;}
.y4e{bottom:805.957032px;}
.y4b{bottom:815.143593px;}
.y2a{bottom:826.330052px;}
.y4{bottom:831.269532px;}
.y29{bottom:845.232401px;}
.y4d{bottom:861.568353px;}
.y28{bottom:864.128891px;}
.y4c{bottom:880.464843px;}
.y27{bottom:883.031239px;}
.y3{bottom:899.378907px;}
.y26{bottom:901.927730px;}
.y25{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y49{bottom:974.730470px;}
.h8{height:26.244141px;}
.h5{height:27.557629px;}
.h9{height:28.048904px;}
.he{height:29.524658px;}
.h1{height:30.617097px;}
.h4{height:34.993255px;}
.hf{height:35.617086px;}
.h11{height:37.399182px;}
.h2{height:39.366211px;}
.hc{height:39.366271px;}
.h7{height:39.366295px;}
.hd{height:39.366319px;}
.hb{height:39.366337px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h12{height:430.921500px;}
.ha{height:756.000000px;}
.h10{height:838.986000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.xe{left:11.584598px;}
.x9{left:45.000609px;}
.x3{left:78.662109px;}
.x6{left:83.162109px;}
.xb{left:89.912105px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x7{left:123.662109px;}
.xd{left:134.789062px;}
.x8{left:166.412109px;}
.x1{left:205.335938px;}
.x2{left:288.351562px;}
.xc{left:490.212891px;}
.xa{left:575.658325px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.775227pt;}
.ls1{letter-spacing:1.296000pt;}
.ls5{letter-spacing:1.550453pt;}
.ls3{letter-spacing:103.200016pt;}
.ls4{letter-spacing:777.839111pt;}
.ws8{word-spacing:-42.667968pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-14.592000pt;}
.ws5{word-spacing:-13.296000pt;}
.ws6{word-spacing:-12.631633pt;}
.ws7{word-spacing:-11.861695pt;}
.ws0{word-spacing:-10.340973pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:90.199891pt;}
.ws3{word-spacing:377.344000pt;}
._14{margin-left:-8.553765pt;}
._d{margin-left:-7.429650pt;}
._16{margin-left:-6.228995pt;}
._12{margin-left:-5.328000pt;}
._3{margin-left:-3.590469pt;}
._4{margin-left:-2.649922pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._6{width:3.590806pt;}
._7{width:4.560070pt;}
._8{width:5.769510pt;}
._9{width:7.324553pt;}
._c{width:8.362902pt;}
._13{width:9.754487pt;}
._5{width:16.698779pt;}
._f{width:19.056000pt;}
._e{width:20.581555pt;}
._10{width:21.541344pt;}
._11{width:22.522809pt;}
._a{width:102.960035pt;}
._15{width:174.155846pt;}
._b{width:426.208000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs7{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.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;}
.y84{bottom:4.025156pt;}
.y83{bottom:19.988702pt;}
.y82{bottom:35.947037pt;}
.y22{bottom:41.541662pt;}
.y81{bottom:51.905372pt;}
.y21{bottom:52.458331pt;}
.y20{bottom:63.380208pt;}
.y80{bottom:67.868917pt;}
.y7f{bottom:83.827249pt;}
.y4a{bottom:85.313333pt;}
.y7e{bottom:99.785584pt;}
.y6b{bottom:105.296873pt;}
.y7d{bottom:115.749121pt;}
.y6a{bottom:121.255208pt;}
.y7c{bottom:131.707457pt;}
.y69{bottom:137.218749pt;}
.y1e{bottom:144.447903pt;}
.y7b{bottom:147.665792pt;}
.y68{bottom:153.177081pt;}
.y23{bottom:159.078667pt;}
.y1d{bottom:161.249991pt;}
.y47{bottom:163.317689pt;}
.y7a{bottom:163.624120pt;}
.y67{bottom:169.135416pt;}
.y79{bottom:179.587665pt;}
.y46{bottom:180.114569pt;}
.y66{bottom:185.098959pt;}
.y1c{bottom:190.046871pt;}
.y78{bottom:195.546000pt;}
.y45{bottom:196.916657pt;}
.y65{bottom:201.057290pt;}
.y77{bottom:211.504333pt;}
.y44{bottom:213.713537pt;}
.y64{bottom:217.015625pt;}
.y1b{bottom:218.848949pt;}
.y76{bottom:227.467871pt;}
.y43{bottom:230.515625pt;}
.y63{bottom:232.979165pt;}
.y1a{bottom:235.651037pt;}
.y75{bottom:243.426206pt;}
.y42{bottom:247.317684pt;}
.y62{bottom:248.937500pt;}
.y19{bottom:252.447912pt;}
.y74{bottom:259.384541pt;}
.y41{bottom:264.114564pt;}
.y61{bottom:264.895828pt;}
.y18{bottom:269.249981pt;}
.y73{bottom:275.348080pt;}
.y60{bottom:280.859373pt;}
.y17{bottom:286.046861pt;}
.y72{bottom:291.306415pt;}
.y40{bottom:292.916652pt;}
.y5f{bottom:296.817708pt;}
.y16{bottom:302.848949pt;}
.y71{bottom:307.264751pt;}
.y3f{bottom:309.713532pt;}
.y5e{bottom:312.776041pt;}
.y15{bottom:319.651037pt;}
.y70{bottom:323.228288pt;}
.y5d{bottom:328.739580pt;}
.y3e{bottom:338.515620pt;}
.y6f{bottom:339.186623pt;}
.y5c{bottom:344.697915pt;}
.y14{bottom:348.447907pt;}
.y6e{bottom:355.144959pt;}
.y3d{bottom:355.317704pt;}
.y5b{bottom:360.656251pt;}
.y13{bottom:365.249995pt;}
.y6d{bottom:371.108500pt;}
.y5a{bottom:376.619792pt;}
.y12{bottom:382.046871pt;}
.y3c{bottom:384.114573pt;}
.y59{bottom:392.578123pt;}
.y48{bottom:398.666667pt;}
.y11{bottom:398.848949pt;}
.y3b{bottom:400.916661pt;}
.y58{bottom:408.536459pt;}
.y10{bottom:415.651037pt;}
.y3a{bottom:417.713528pt;}
.y57{bottom:424.499996pt;}
.yf{bottom:432.447917pt;}
.y39{bottom:434.515616pt;}
.y56{bottom:440.458331pt;}
.y6c{bottom:448.037333pt;}
.y38{bottom:451.317704pt;}
.y55{bottom:456.416667pt;}
.ye{bottom:459.697917pt;}
.y37{bottom:468.114579pt;}
.y54{bottom:489.760416pt;}
.y36{bottom:496.916657pt;}
.y35{bottom:513.713537pt;}
.yd{bottom:521.119792pt;}
.yc{bottom:536.052080pt;}
.y53{bottom:537.494792pt;}
.y34{bottom:542.515620pt;}
.yb{bottom:550.984370pt;}
.y33{bottom:559.317704pt;}
.y52{bottom:563.046875pt;}
.ya{bottom:569.921874pt;}
.y32{bottom:576.114579pt;}
.y9{bottom:592.854167pt;}
.y31{bottom:592.916657pt;}
.y30{bottom:609.713537pt;}
.y51{bottom:612.473959pt;}
.y8{bottom:637.526046pt;}
.y2f{bottom:638.515620pt;}
.y50{bottom:639.723959pt;}
.y7{bottom:649.281251pt;}
.y2e{bottom:655.317704pt;}
.y24{bottom:659.436959pt;}
.y6{bottom:667.911459pt;}
.y1f{bottom:671.911459pt;}
.y2d{bottom:672.114579pt;}
.y2c{bottom:688.916667pt;}
.y4f{bottom:689.156251pt;}
.y5{bottom:705.520828pt;}
.y2b{bottom:705.713513pt;}
.y4e{bottom:716.406251pt;}
.y4b{bottom:724.572083pt;}
.y2a{bottom:734.515601pt;}
.y4{bottom:738.906251pt;}
.y29{bottom:751.317689pt;}
.y4d{bottom:765.838536pt;}
.y28{bottom:768.114569pt;}
.y4c{bottom:782.635416pt;}
.y27{bottom:784.916657pt;}
.y3{bottom:799.447917pt;}
.y26{bottom:801.713537pt;}
.y25{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y49{bottom:866.427084pt;}
.h8{height:23.328125pt;}
.h5{height:24.495670pt;}
.h9{height:24.932359pt;}
.he{height:26.244141pt;}
.h1{height:27.215197pt;}
.h4{height:31.105115pt;}
.hf{height:31.659632pt;}
.h11{height:33.243717pt;}
.h2{height:34.992188pt;}
.hc{height:34.992241pt;}
.h7{height:34.992262pt;}
.hd{height:34.992283pt;}
.hb{height:34.992300pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h12{height:383.041333pt;}
.ha{height:672.000000pt;}
.h10{height:745.765333pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.xe{left:10.297421pt;}
.x9{left:40.000541pt;}
.x3{left:69.921875pt;}
.x6{left:73.921875pt;}
.xb{left:79.921871pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x7{left:109.921875pt;}
.xd{left:119.812500pt;}
.x8{left:147.921875pt;}
.x1{left:182.520833pt;}
.x2{left:256.312500pt;}
.xc{left:435.744792pt;}
.xa{left:511.696289pt;}
}




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