
    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_4ff0a1fd2a1563f2ee37548d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079590;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_ed4e2f3bef3bce7cf34fa7d7.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_caed8b48be269c4dc5a2c673.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972168;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_ddf04449114f00e61e83248a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_73a547e0509909a4f8320a32.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_42d58dfcf8edd2c98afa3b85.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_53dc959b66f55fee3a83f333.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933105;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_9999a1b6537a246d42d2e5cf.woff2')format("woff");}.ff8{font-family:ff8;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.702000px;}
.ls5{letter-spacing:0.923432px;}
.ls3{letter-spacing:1.344041px;}
.ls2{letter-spacing:1.476000px;}
.ls4{letter-spacing:920.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;}
}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-14.958000px;}
.ws6{word-spacing:-14.640447px;}
.ws8{word-spacing:-14.210587px;}
.ws7{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws3{word-spacing:-10.508889px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:100.548000px;}
._3{margin-left:-11.199814px;}
._5{margin-left:-7.706945px;}
._16{margin-left:-6.372036px;}
._7{margin-left:-3.450502px;}
._4{margin-left:-2.386846px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._6{width:3.653873px;}
._b{width:4.989216px;}
._9{width:6.642000px;}
._17{width:7.658178px;}
._8{width:8.691992px;}
._a{width:9.924091px;}
._c{width:11.005330px;}
._10{width:12.420079px;}
._14{width:13.432025px;}
._15{width:16.349146px;}
._f{width:17.604294px;}
._e{width:20.237893px;}
._11{width:21.738419px;}
._d{width:22.878551px;}
._13{width:24.074644px;}
._12{width:25.781660px;}
._18{width:99.509700px;}
._19{width:115.685464px;}
.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;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y23{bottom:46.734370px;}
.y22{bottom:59.015622px;}
.y21{bottom:71.302734px;}
.y24{bottom:101.953500px;}
.y3c{bottom:106.722640px;}
.y4f{bottom:119.988282px;}
.y3b{bottom:125.619130px;}
.y1f{bottom:132.779286px;}
.y3a{bottom:144.521479px;}
.y4e{bottom:150.644532px;}
.y1e{bottom:151.681635px;}
.y39{bottom:163.423823px;}
.y54{bottom:167.796000px;}
.y72{bottom:172.324211px;}
.y38{bottom:182.320308px;}
.y1d{bottom:184.078115px;}
.y71{bottom:190.277338px;}
.y37{bottom:201.222657px;}
.y1c{bottom:202.980463px;}
.y70{bottom:208.236326px;}
.y52{bottom:218.097652px;}
.y36{bottom:220.119135px;}
.y1b{bottom:221.882807px;}
.y6f{bottom:226.189453px;}
.y51{bottom:234.896484px;}
.y35{bottom:239.021469px;}
.y1a{bottom:240.779292px;}
.y6e{bottom:244.142570px;}
.y50{bottom:256.201172px;}
.y34{bottom:257.923818px;}
.y19{bottom:259.681641px;}
.y6d{bottom:262.101558px;}
.y33{bottom:276.820308px;}
.y18{bottom:278.578082px;}
.y6c{bottom:280.054685px;}
.y32{bottom:295.722651px;}
.y17{bottom:297.480431px;}
.y6b{bottom:298.007813px;}
.y31{bottom:314.619106px;}
.y6a{bottom:315.966792px;}
.y16{bottom:316.382780px;}
.y30{bottom:333.521456px;}
.y69{bottom:333.919919px;}
.y15{bottom:348.779270px;}
.y68{bottom:351.873047px;}
.y2f{bottom:352.423804px;}
.y14{bottom:367.681619px;}
.y67{bottom:369.832032px;}
.y2e{bottom:371.320294px;}
.y13{bottom:386.578109px;}
.y66{bottom:387.785155px;}
.y2d{bottom:390.222644px;}
.y12{bottom:405.480458px;}
.y65{bottom:405.738282px;}
.y2c{bottom:409.119133px;}
.y64{bottom:423.697257px;}
.y11{bottom:424.382807px;}
.y2b{bottom:428.021482px;}
.y63{bottom:441.650384px;}
.y10{bottom:443.279292px;}
.y62{bottom:459.603512px;}
.yf{bottom:462.181641px;}
.y3f{bottom:472.265625px;}
.y61{bottom:477.562500px;}
.y3e{bottom:489.064459px;}
.ye{bottom:492.837891px;}
.y60{bottom:495.515623px;}
.y3d{bottom:510.369141px;}
.y5f{bottom:513.468750px;}
.y5e{bottom:550.980468px;}
.yd{bottom:561.937497px;}
.y4d{bottom:572.531234px;}
.yc{bottom:578.736324px;}
.y4c{bottom:591.427724px;}
.yb{bottom:595.535150px;}
.y5d{bottom:604.681641px;}
.y4b{bottom:610.330073px;}
.ya{bottom:616.833983px;}
.y4a{bottom:629.232390px;}
.y5c{bottom:633.427734px;}
.y9{bottom:642.632812px;}
.y49{bottom:661.628880px;}
.y48{bottom:680.531229px;}
.y5b{bottom:689.033198px;}
.y8{bottom:692.888671px;}
.y47{bottom:699.427719px;}
.y5a{bottom:707.935546px;}
.y7{bottom:713.847657px;}
.y46{bottom:718.330068px;}
.y20{bottom:718.347657px;}
.y45{bottom:737.232417px;}
.y59{bottom:738.591796px;}
.y55{bottom:743.325093px;}
.y44{bottom:756.128895px;}
.y6{bottom:756.158206px;}
.y43{bottom:775.031244px;}
.y5{bottom:793.710931px;}
.y42{bottom:793.927734px;}
.y58{bottom:794.203125px;}
.y41{bottom:812.830052px;}
.y25{bottom:818.876578px;}
.y57{bottom:824.853516px;}
.y4{bottom:831.269532px;}
.y2a{bottom:831.732401px;}
.y29{bottom:864.128891px;}
.y56{bottom:880.464843px;}
.y28{bottom:883.031239px;}
.y3{bottom:899.378907px;}
.y27{bottom:901.927730px;}
.y26{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y40{bottom:974.730466px;}
.y53{bottom:974.730470px;}
.h9{height:28.048904px;}
.h8{height:31.289062px;}
.h6{height:32.855044px;}
.he{height:34.946378px;}
.hf{height:35.617086px;}
.h1{height:36.502634px;}
.h5{height:41.720022px;}
.h13{height:44.588442px;}
.h2{height:46.933594px;}
.hd{height:46.933654px;}
.hb{height:46.933678px;}
.h10{height:46.933702px;}
.h11{height:46.933720px;}
.hc{height:46.933732px;}
.h7{height:52.443023px;}
.h3{height:68.582368px;}
.h4{height:70.420196px;}
.h12{height:767.167500px;}
.ha{height:833.010000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x3{left:78.662109px;}
.x8{left:83.162109px;}
.xa{left:86.537109px;}
.xc{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xb{left:110.039062px;}
.x9{left:123.662109px;}
.x6{left:182.162109px;}
.x1{left:205.335938px;}
.x2{left:288.351562px;}
.x7{left:588.038818px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.624000pt;}
.ls5{letter-spacing:0.820828pt;}
.ls3{letter-spacing:1.194703pt;}
.ls2{letter-spacing:1.312000pt;}
.ls4{letter-spacing:817.839111pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-13.296000pt;}
.ws6{word-spacing:-13.013730pt;}
.ws8{word-spacing:-12.631633pt;}
.ws7{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws3{word-spacing:-9.341234pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:89.376000pt;}
._3{margin-left:-9.955391pt;}
._5{margin-left:-6.850617pt;}
._16{margin-left:-5.664032pt;}
._7{margin-left:-3.067113pt;}
._4{margin-left:-2.121641pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._6{width:3.247887pt;}
._b{width:4.434859pt;}
._9{width:5.904000pt;}
._17{width:6.807270pt;}
._8{width:7.726215pt;}
._a{width:8.821414pt;}
._c{width:9.782516pt;}
._10{width:11.040070pt;}
._14{width:11.939578pt;}
._15{width:14.532574pt;}
._f{width:15.648261pt;}
._e{width:17.989238pt;}
._11{width:19.323039pt;}
._d{width:20.336490pt;}
._13{width:21.399684pt;}
._12{width:22.917031pt;}
._18{width:88.453066pt;}
._19{width:102.831524pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:41.541662pt;}
.y22{bottom:52.458331pt;}
.y21{bottom:63.380208pt;}
.y24{bottom:90.625333pt;}
.y3c{bottom:94.864569pt;}
.y4f{bottom:106.656251pt;}
.y3b{bottom:111.661449pt;}
.y1f{bottom:118.026032pt;}
.y3a{bottom:128.463537pt;}
.y4e{bottom:133.906251pt;}
.y1e{bottom:134.828120pt;}
.y39{bottom:145.265620pt;}
.y54{bottom:149.152000pt;}
.y72{bottom:153.177076pt;}
.y38{bottom:162.062496pt;}
.y1d{bottom:163.624991pt;}
.y71{bottom:169.135412pt;}
.y37{bottom:178.864584pt;}
.y1c{bottom:180.427079pt;}
.y70{bottom:185.098957pt;}
.y52{bottom:193.864579pt;}
.y36{bottom:195.661453pt;}
.y1b{bottom:197.229161pt;}
.y6f{bottom:201.057292pt;}
.y51{bottom:208.796875pt;}
.y35{bottom:212.463528pt;}
.y1a{bottom:214.026037pt;}
.y6e{bottom:217.015618pt;}
.y50{bottom:227.734375pt;}
.y34{bottom:229.265616pt;}
.y19{bottom:230.828125pt;}
.y6d{bottom:232.979163pt;}
.y33{bottom:246.062496pt;}
.y18{bottom:247.624961pt;}
.y6c{bottom:248.937498pt;}
.y32{bottom:262.864579pt;}
.y17{bottom:264.427049pt;}
.y6b{bottom:264.895833pt;}
.y31{bottom:279.661428pt;}
.y6a{bottom:280.859371pt;}
.y16{bottom:281.229137pt;}
.y30{bottom:296.463516pt;}
.y69{bottom:296.817706pt;}
.y15{bottom:310.026017pt;}
.y68{bottom:312.776041pt;}
.y2f{bottom:313.265604pt;}
.y14{bottom:326.828105pt;}
.y67{bottom:328.739584pt;}
.y2e{bottom:330.062484pt;}
.y13{bottom:343.624985pt;}
.y66{bottom:344.697915pt;}
.y2d{bottom:346.864572pt;}
.y12{bottom:360.427073pt;}
.y65{bottom:360.656251pt;}
.y2c{bottom:363.661452pt;}
.y64{bottom:376.619784pt;}
.y11{bottom:377.229161pt;}
.y2b{bottom:380.463540pt;}
.y63{bottom:392.578120pt;}
.y10{bottom:394.026037pt;}
.y62{bottom:408.536455pt;}
.yf{bottom:410.828125pt;}
.y3f{bottom:419.791667pt;}
.y61{bottom:424.500000pt;}
.y3e{bottom:434.723964pt;}
.ye{bottom:438.078125pt;}
.y60{bottom:440.458331pt;}
.y3d{bottom:453.661459pt;}
.y5f{bottom:456.416667pt;}
.y5e{bottom:489.760416pt;}
.yd{bottom:499.499998pt;}
.y4d{bottom:508.916652pt;}
.yc{bottom:514.432288pt;}
.y4c{bottom:525.713532pt;}
.yb{bottom:529.364578pt;}
.y5d{bottom:537.494792pt;}
.y4b{bottom:542.515620pt;}
.ya{bottom:548.296874pt;}
.y4a{bottom:559.317680pt;}
.y5c{bottom:563.046875pt;}
.y9{bottom:571.229167pt;}
.y49{bottom:588.114560pt;}
.y48{bottom:604.916648pt;}
.y5b{bottom:612.473953pt;}
.y8{bottom:615.901041pt;}
.y47{bottom:621.713528pt;}
.y5a{bottom:629.276041pt;}
.y7{bottom:634.531251pt;}
.y46{bottom:638.515616pt;}
.y20{bottom:638.531251pt;}
.y45{bottom:655.317704pt;}
.y59{bottom:656.526041pt;}
.y55{bottom:660.733416pt;}
.y44{bottom:672.114573pt;}
.y6{bottom:672.140627pt;}
.y43{bottom:688.916661pt;}
.y5{bottom:705.520828pt;}
.y42{bottom:705.713541pt;}
.y58{bottom:705.958333pt;}
.y41{bottom:722.515601pt;}
.y25{bottom:727.890292pt;}
.y57{bottom:733.203125pt;}
.y4{bottom:738.906251pt;}
.y2a{bottom:739.317689pt;}
.y29{bottom:768.114569pt;}
.y56{bottom:782.635416pt;}
.y28{bottom:784.916657pt;}
.y3{bottom:799.447917pt;}
.y27{bottom:801.713537pt;}
.y26{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y40{bottom:866.427081pt;}
.y53{bottom:866.427084pt;}
.h9{height:24.932359pt;}
.h8{height:27.812500pt;}
.h6{height:29.204483pt;}
.he{height:31.063447pt;}
.hf{height:31.659632pt;}
.h1{height:32.446786pt;}
.h5{height:37.084464pt;}
.h13{height:39.634171pt;}
.h2{height:41.718750pt;}
.hd{height:41.718803pt;}
.hb{height:41.718825pt;}
.h10{height:41.718846pt;}
.h11{height:41.718862pt;}
.hc{height:41.718873pt;}
.h7{height:46.616020pt;}
.h3{height:60.962105pt;}
.h4{height:62.595730pt;}
.h12{height:681.926667pt;}
.ha{height:740.453333pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x3{left:69.921875pt;}
.x8{left:73.921875pt;}
.xa{left:76.921875pt;}
.xc{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xb{left:97.812500pt;}
.x9{left:109.921875pt;}
.x6{left:161.921875pt;}
.x1{left:182.520833pt;}
.x2{left:256.312500pt;}
.x7{left:522.701172pt;}
}




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