
    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_36a05a6155e1786d24380bc7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-38.177326px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:38.177326px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006461px;}
.ls2{letter-spacing:149.185244px;}
.ls1{letter-spacing:207.919592px;}
.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;}
}
.ws6{word-spacing:0.000000px;}
.wsa{word-spacing:49.265784px;}
.ws7{word-spacing:71.636522px;}
.ws5{word-spacing:91.599740px;}
.wsb{word-spacing:126.808045px;}
.ws2{word-spacing:130.370870px;}
.ws4{word-spacing:210.223740px;}
.ws8{word-spacing:243.121436px;}
.ws3{word-spacing:248.994871px;}
.ws9{word-spacing:421.635089px;}
.ws0{word-spacing:1265.078534px;}
.ws1{word-spacing:1420.137213px;}
._12{width:33.923785px;}
._14{width:88.036914px;}
._11{width:111.466046px;}
._13{width:165.579175px;}
._10{width:243.121436px;}
._5{width:248.994871px;}
._6{width:287.766001px;}
._d{width:320.663697px;}
._8{width:324.129611px;}
._3{width:326.537132px;}
._f{width:398.205958px;}
._7{width:440.443002px;}
._2{width:468.471033px;}
._b{width:479.214133px;}
._a{width:556.756394px;}
._9{width:595.527524px;}
._4{width:634.298655px;}
._e{width:693.033003px;}
._c{width:711.840915px;}
._1{width:877.373690px;}
._0{width:1458.908343px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:64.607783px;}
.y96{bottom:-702.608903px;}
.y95{bottom:-683.520240px;}
.y94{bottom:-662.963218px;}
.y93{bottom:-643.874555px;}
.y92{bottom:-604.228870px;}
.y91{bottom:-564.583185px;}
.y90{bottom:-544.026163px;}
.y8f{bottom:-524.937500px;}
.y8e{bottom:-485.291815px;}
.y8b{bottom:-464.734793px;}
.y8d{bottom:-455.190462px;}
.y89{bottom:-445.646130px;}
.y8c{bottom:-436.101799px;}
.y8a{bottom:-426.557467px;}
.y86{bottom:-406.000445px;}
.y88{bottom:-396.456114px;}
.y84{bottom:-386.911782px;}
.y87{bottom:-377.367451px;}
.y85{bottom:-367.823119px;}
.y83{bottom:-347.266097px;}
.y82{bottom:-328.177434px;}
.y80{bottom:-318.633103px;}
.y81{bottom:-309.088771px;}
.y7f{bottom:-288.531749px;}
.y7c{bottom:-278.987418px;}
.y7e{bottom:-269.443086px;}
.y7b{bottom:-259.898755px;}
.y7d{bottom:-250.354423px;}
.y7a{bottom:-229.797401px;}
.y79{bottom:-210.708738px;}
.y77{bottom:-201.164407px;}
.y78{bottom:-191.620075px;}
.y76{bottom:-171.063053px;}
.y75{bottom:-151.974390px;}
.y73{bottom:-142.430059px;}
.y74{bottom:-132.885727px;}
.y72{bottom:-112.328705px;}
.y6f{bottom:-102.784374px;}
.y71{bottom:-93.240042px;}
.y6e{bottom:-83.695711px;}
.y70{bottom:-74.151379px;}
.y26{bottom:-55.063402px;}
.y6d{bottom:-53.594357px;}
.y6c{bottom:-34.505694px;}
.y6a{bottom:-24.961363px;}
.y25{bottom:-15.417718px;}
.y6b{bottom:-15.417031px;}
.y0{bottom:0.000000px;}
.y69{bottom:5.139991px;}
.y24{bottom:24.227967px;}
.yf2{bottom:24.228397px;}
.y68{bottom:24.228654px;}
.y66{bottom:33.772985px;}
.yf1{bottom:43.317060px;}
.y67{bottom:43.317317px;}
.y23{bottom:63.873652px;}
.yf0{bottom:63.874082px;}
.y65{bottom:63.874339px;}
.yef{bottom:82.962745px;}
.y64{bottom:82.963002px;}
.y62{bottom:92.507333px;}
.y63{bottom:102.051665px;}
.y22{bottom:103.519337px;}
.yee{bottom:122.608430px;}
.y61{bottom:122.608687px;}
.y27{bottom:136.527900px;}
.y60{bottom:141.697350px;}
.y21{bottom:143.165022px;}
.y1{bottom:145.338045px;}
.y5e{bottom:160.786013px;}
.yed{bottom:162.254115px;}
.y5f{bottom:179.874676px;}
.y20{bottom:182.810707px;}
.yec{bottom:182.811137px;}
.y5d{bottom:200.431698px;}
.yeb{bottom:201.899800px;}
.y5c{bottom:219.520361px;}
.y1f{bottom:222.456392px;}
.y5a{bottom:229.064692px;}
.y5b{bottom:238.609024px;}
.yea{bottom:241.545485px;}
.y1e{bottom:243.013414px;}
.y59{bottom:259.166046px;}
.y1d{bottom:262.102077px;}
.ye7{bottom:262.102507px;}
.ye9{bottom:271.646838px;}
.y58{bottom:278.254709px;}
.ye5{bottom:281.191170px;}
.y56{bottom:287.799040px;}
.ye8{bottom:290.735501px;}
.y57{bottom:297.343372px;}
.ye6{bottom:300.279833px;}
.y1c{bottom:301.747762px;}
.y55{bottom:317.900394px;}
.ye2{bottom:320.836855px;}
.ye4{bottom:330.381186px;}
.y54{bottom:336.989057px;}
.ye0{bottom:339.925518px;}
.y1b{bottom:341.393447px;}
.y52{bottom:346.533388px;}
.ye3{bottom:349.469849px;}
.y53{bottom:356.077720px;}
.ye1{bottom:359.014181px;}
.y51{bottom:376.634742px;}
.ydf{bottom:379.571203px;}
.y1a{bottom:381.039131px;}
.y50{bottom:395.723405px;}
.yde{bottom:398.659866px;}
.y19{bottom:401.596153px;}
.y4e{bottom:405.267736px;}
.ydc{bottom:408.204197px;}
.y4f{bottom:414.812068px;}
.ydd{bottom:417.748529px;}
.y18{bottom:422.153175px;}
.y97{bottom:427.997100px;}
.y4d{bottom:435.369090px;}
.ydb{bottom:438.305551px;}
.y17{bottom:441.241838px;}
.yd8{bottom:447.849882px;}
.y4c{bottom:454.457753px;}
.yda{bottom:457.394214px;}
.y16{bottom:460.330501px;}
.y4a{bottom:464.002084px;}
.yd7{bottom:466.938545px;}
.y4b{bottom:473.546416px;}
.yd9{bottom:476.482877px;}
.y49{bottom:494.103438px;}
.yd6{bottom:497.039899px;}
.y48{bottom:513.192101px;}
.yd5{bottom:516.128562px;}
.y15{bottom:517.596491px;}
.y46{bottom:522.736432px;}
.yd3{bottom:525.672893px;}
.y47{bottom:532.280764px;}
.yd4{bottom:535.217225px;}
.y14{bottom:536.685154px;}
.y45{bottom:552.837786px;}
.y13{bottom:555.773817px;}
.yd2{bottom:555.774247px;}
.y44{bottom:571.926449px;}
.yd1{bottom:574.862910px;}
.ycf{bottom:584.407241px;}
.y43{bottom:592.483471px;}
.y12{bottom:593.951143px;}
.yd0{bottom:593.951573px;}
.y42{bottom:611.572134px;}
.y11{bottom:613.039806px;}
.yce{bottom:614.508595px;}
.ycb{bottom:624.052926px;}
.y10{bottom:632.128469px;}
.y41{bottom:632.129156px;}
.ycd{bottom:633.597258px;}
.yca{bottom:643.141589px;}
.yf{bottom:651.217132px;}
.y40{bottom:651.217819px;}
.ycc{bottom:652.685921px;}
.ye{bottom:670.305795px;}
.y3f{bottom:671.774841px;}
.yc9{bottom:673.242943px;}
.yd{bottom:689.394458px;}
.y3e{bottom:690.863504px;}
.yc8{bottom:692.331606px;}
.yc6{bottom:701.875937px;}
.yc7{bottom:711.420269px;}
.y3d{bottom:730.509189px;}
.yc5{bottom:731.977291px;}
.yc{bottom:746.660448px;}
.yc4{bottom:751.065954px;}
.y3c{bottom:751.066210px;}
.yc2{bottom:760.610285px;}
.yb{bottom:765.749111px;}
.yc3{bottom:770.154617px;}
.y3b{bottom:771.623232px;}
.ya{bottom:784.837774px;}
.yc1{bottom:790.711639px;}
.y3a{bottom:790.711895px;}
.y9{bottom:803.926437px;}
.yc0{bottom:809.800302px;}
.y39{bottom:809.800558px;}
.ybe{bottom:819.344633px;}
.ybf{bottom:828.888965px;}
.y8{bottom:842.103763px;}
.ybd{bottom:849.445987px;}
.y7{bottom:861.192426px;}
.ybc{bottom:868.534650px;}
.y6{bottom:880.281089px;}
.y38{bottom:886.155211px;}
.yba{bottom:887.623313px;}
.y5{bottom:899.369753px;}
.y37{bottom:905.243874px;}
.ybb{bottom:906.711976px;}
.y36{bottom:924.332537px;}
.yb9{bottom:927.268998px;}
.yb8{bottom:946.357661px;}
.yb6{bottom:955.901993px;}
.y4{bottom:956.635742px;}
.y35{bottom:963.244042px;}
.yb7{bottom:965.446324px;}
.y3{bottom:975.724405px;}
.yb5{bottom:986.003346px;}
.y2{bottom:994.813068px;}
.y34{bottom:1002.889727px;}
.yb4{bottom:1005.092009px;}
.yb2{bottom:1014.636341px;}
.yb3{bottom:1024.180672px;}
.y33{bottom:1042.535412px;}
.yb1{bottom:1044.737694px;}
.yb0{bottom:1063.826357px;}
.yae{bottom:1073.370689px;}
.y32{bottom:1082.181097px;}
.yaf{bottom:1082.915020px;}
.yad{bottom:1103.472042px;}
.y31{bottom:1121.826782px;}
.yac{bottom:1122.560705px;}
.yaa{bottom:1132.105037px;}
.yab{bottom:1141.649368px;}
.y30{bottom:1161.472467px;}
.ya9{bottom:1162.206390px;}
.ya8{bottom:1181.295053px;}
.ya6{bottom:1190.839385px;}
.ya7{bottom:1200.383716px;}
.y2f{bottom:1201.118152px;}
.ya5{bottom:1220.940738px;}
.ya4{bottom:1240.029401px;}
.y2e{bottom:1240.763837px;}
.ya2{bottom:1249.573733px;}
.ya3{bottom:1259.118064px;}
.y2d{bottom:1261.320859px;}
.ya1{bottom:1279.675086px;}
.y2c{bottom:1280.409522px;}
.ya0{bottom:1298.763749px;}
.y9f{bottom:1319.320771px;}
.y2b{bottom:1320.055207px;}
.y9e{bottom:1338.409434px;}
.y9d{bottom:1358.966456px;}
.y2a{bottom:1359.700891px;}
.y9c{bottom:1378.055119px;}
.y9b{bottom:1398.612141px;}
.y29{bottom:1399.346576px;}
.y9a{bottom:1417.700804px;}
.y28{bottom:1419.903598px;}
.y99{bottom:1457.346489px;}
.y98{bottom:1477.903510px;}
.h3{height:45.553534px;}
.h5{height:83.730861px;}
.h6{height:726.837600px;}
.h2{height:1009.496550px;}
.h4{height:1018.306800px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:676.913400px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.341793px;}
.x3{left:16.151946px;}
.x8{left:63.139424px;}
.x1{left:108.000000px;}
.x6{left:182.076479px;}
.x4{left:198.228424px;}
.x7{left:403.798643px;}
.x5{left:405.267001px;}
@media print{
.v1{vertical-align:-33.935401pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:33.935401pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005743pt;}
.ls2{letter-spacing:132.609106pt;}
.ls1{letter-spacing:184.817415pt;}
.ws6{word-spacing:0.000000pt;}
.wsa{word-spacing:43.791808pt;}
.ws7{word-spacing:63.676909pt;}
.ws5{word-spacing:81.421991pt;}
.wsb{word-spacing:112.718262pt;}
.ws2{word-spacing:115.885218pt;}
.ws4{word-spacing:186.865547pt;}
.ws8{word-spacing:216.107943pt;}
.ws3{word-spacing:221.328774pt;}
.ws9{word-spacing:374.786746pt;}
.ws0{word-spacing:1124.514253pt;}
.ws1{word-spacing:1262.344189pt;}
._12{width:30.154475pt;}
._14{width:78.255035pt;}
._11{width:99.080929pt;}
._13{width:147.181489pt;}
._10{width:216.107943pt;}
._5{width:221.328774pt;}
._6{width:255.792001pt;}
._d{width:285.034397pt;}
._8{width:288.115210pt;}
._3{width:290.255228pt;}
._f{width:353.960851pt;}
._7{width:391.504891pt;}
._2{width:416.418696pt;}
._b{width:425.968118pt;}
._a{width:494.894572pt;}
._9{width:529.357799pt;}
._4{width:563.821026pt;}
._e{width:616.029336pt;}
._c{width:632.747480pt;}
._1{width:779.887725pt;}
._0{width:1296.807416pt;}
.fs0{font-size:57.429140pt;}
.y96{bottom:-624.541247pt;}
.y95{bottom:-607.573546pt;}
.y94{bottom:-589.300638pt;}
.y93{bottom:-572.332937pt;}
.y92{bottom:-537.092329pt;}
.y91{bottom:-501.851720pt;}
.y90{bottom:-483.578812pt;}
.y8f{bottom:-466.611111pt;}
.y8e{bottom:-431.370502pt;}
.y8b{bottom:-413.097594pt;}
.y8d{bottom:-404.613744pt;}
.y89{bottom:-396.129893pt;}
.y8c{bottom:-387.646043pt;}
.y8a{bottom:-379.162193pt;}
.y86{bottom:-360.889285pt;}
.y88{bottom:-352.405434pt;}
.y84{bottom:-343.921584pt;}
.y87{bottom:-335.437734pt;}
.y85{bottom:-326.953884pt;}
.y83{bottom:-308.680975pt;}
.y82{bottom:-291.713275pt;}
.y80{bottom:-283.229425pt;}
.y81{bottom:-274.745574pt;}
.y7f{bottom:-256.472666pt;}
.y7c{bottom:-247.988816pt;}
.y7e{bottom:-239.504965pt;}
.y7b{bottom:-231.021115pt;}
.y7d{bottom:-222.537265pt;}
.y7a{bottom:-204.264357pt;}
.y79{bottom:-187.296656pt;}
.y77{bottom:-178.812806pt;}
.y78{bottom:-170.328956pt;}
.y76{bottom:-152.056047pt;}
.y75{bottom:-135.088347pt;}
.y73{bottom:-126.604497pt;}
.y74{bottom:-118.120646pt;}
.y72{bottom:-99.847738pt;}
.y6f{bottom:-91.363888pt;}
.y71{bottom:-82.880037pt;}
.y6e{bottom:-74.396187pt;}
.y70{bottom:-65.912337pt;}
.y26{bottom:-48.945247pt;}
.y6d{bottom:-47.639429pt;}
.y6c{bottom:-30.671728pt;}
.y6a{bottom:-22.187878pt;}
.y25{bottom:-13.704638pt;}
.y6b{bottom:-13.704028pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:4.568881pt;}
.y24{bottom:21.535971pt;}
.yf2{bottom:21.536353pt;}
.y68{bottom:21.536581pt;}
.y66{bottom:30.020431pt;}
.yf1{bottom:38.504054pt;}
.y67{bottom:38.504282pt;}
.y23{bottom:56.776580pt;}
.yf0{bottom:56.776962pt;}
.y65{bottom:56.777190pt;}
.yef{bottom:73.744663pt;}
.y64{bottom:73.744891pt;}
.y62{bottom:82.228741pt;}
.y63{bottom:90.712591pt;}
.y22{bottom:92.017189pt;}
.yee{bottom:108.985271pt;}
.y61{bottom:108.985499pt;}
.y27{bottom:121.358133pt;}
.y60{bottom:125.953200pt;}
.y21{bottom:127.257797pt;}
.y1{bottom:129.189373pt;}
.y5e{bottom:142.920900pt;}
.yed{bottom:144.225880pt;}
.y5f{bottom:159.888601pt;}
.y20{bottom:162.498406pt;}
.yec{bottom:162.498788pt;}
.y5d{bottom:178.161509pt;}
.yeb{bottom:179.466489pt;}
.y5c{bottom:195.129210pt;}
.y1f{bottom:197.739015pt;}
.y5a{bottom:203.613060pt;}
.y5b{bottom:212.096910pt;}
.yea{bottom:214.707098pt;}
.y1e{bottom:216.011923pt;}
.y59{bottom:230.369819pt;}
.y1d{bottom:232.979624pt;}
.ye7{bottom:232.980006pt;}
.ye9{bottom:241.463856pt;}
.y58{bottom:247.337519pt;}
.ye5{bottom:249.947707pt;}
.y56{bottom:255.821369pt;}
.ye8{bottom:258.431557pt;}
.y57{bottom:264.305220pt;}
.ye6{bottom:266.915407pt;}
.y1c{bottom:268.220233pt;}
.y55{bottom:282.578128pt;}
.ye2{bottom:285.188315pt;}
.ye4{bottom:293.672166pt;}
.y54{bottom:299.545828pt;}
.ye0{bottom:302.156016pt;}
.y1b{bottom:303.460841pt;}
.y52{bottom:308.029679pt;}
.ye3{bottom:310.639866pt;}
.y53{bottom:316.513529pt;}
.ye1{bottom:319.123716pt;}
.y51{bottom:334.786437pt;}
.ydf{bottom:337.396625pt;}
.y1a{bottom:338.701450pt;}
.y50{bottom:351.754138pt;}
.yde{bottom:354.364325pt;}
.y19{bottom:356.974358pt;}
.y4e{bottom:360.237988pt;}
.ydc{bottom:362.848175pt;}
.y4f{bottom:368.721838pt;}
.ydd{bottom:371.332026pt;}
.y18{bottom:375.247267pt;}
.y97{bottom:380.441867pt;}
.y4d{bottom:386.994747pt;}
.ydb{bottom:389.604934pt;}
.y17{bottom:392.214967pt;}
.yd8{bottom:398.088784pt;}
.y4c{bottom:403.962447pt;}
.yda{bottom:406.572635pt;}
.y16{bottom:409.182668pt;}
.y4a{bottom:412.446297pt;}
.yd7{bottom:415.056485pt;}
.y4b{bottom:420.930148pt;}
.yd9{bottom:423.540335pt;}
.y49{bottom:439.203056pt;}
.yd6{bottom:441.813243pt;}
.y48{bottom:456.170756pt;}
.yd5{bottom:458.780944pt;}
.y15{bottom:460.085769pt;}
.y46{bottom:464.654607pt;}
.yd3{bottom:467.264794pt;}
.y47{bottom:473.138457pt;}
.yd4{bottom:475.748644pt;}
.y14{bottom:477.053470pt;}
.y45{bottom:491.411365pt;}
.y13{bottom:494.021170pt;}
.yd2{bottom:494.021553pt;}
.y44{bottom:508.379066pt;}
.yd1{bottom:510.989253pt;}
.ycf{bottom:519.473103pt;}
.y43{bottom:526.651974pt;}
.y12{bottom:527.956571pt;}
.yd0{bottom:527.956954pt;}
.y42{bottom:543.619675pt;}
.y11{bottom:544.924272pt;}
.yce{bottom:546.229862pt;}
.ycb{bottom:554.713712pt;}
.y10{bottom:561.891973pt;}
.y41{bottom:561.892583pt;}
.ycd{bottom:563.197563pt;}
.yca{bottom:571.681413pt;}
.yf{bottom:578.859673pt;}
.y40{bottom:578.860283pt;}
.ycc{bottom:580.165263pt;}
.ye{bottom:595.827374pt;}
.y3f{bottom:597.133192pt;}
.yc9{bottom:598.438171pt;}
.yd{bottom:612.795074pt;}
.y3e{bottom:614.100892pt;}
.yc8{bottom:615.405872pt;}
.yc6{bottom:623.889722pt;}
.yc7{bottom:632.373572pt;}
.y3d{bottom:649.341501pt;}
.yc5{bottom:650.646481pt;}
.yc{bottom:663.698176pt;}
.yc4{bottom:667.614181pt;}
.y3c{bottom:667.614409pt;}
.yc2{bottom:676.098031pt;}
.yb{bottom:680.665876pt;}
.yc3{bottom:684.581882pt;}
.y3b{bottom:685.887317pt;}
.ya{bottom:697.633577pt;}
.yc1{bottom:702.854790pt;}
.y3a{bottom:702.855018pt;}
.y9{bottom:714.601277pt;}
.yc0{bottom:719.822491pt;}
.y39{bottom:719.822719pt;}
.ybe{bottom:728.306341pt;}
.ybf{bottom:736.790191pt;}
.y8{bottom:748.536678pt;}
.ybd{bottom:755.063099pt;}
.y7{bottom:765.504379pt;}
.ybc{bottom:772.030800pt;}
.y6{bottom:782.472079pt;}
.y38{bottom:787.693521pt;}
.yba{bottom:788.998500pt;}
.y5{bottom:799.439780pt;}
.y37{bottom:804.661221pt;}
.ybb{bottom:805.966201pt;}
.y36{bottom:821.628922pt;}
.yb9{bottom:824.239109pt;}
.yb8{bottom:841.206810pt;}
.yb6{bottom:849.690660pt;}
.y4{bottom:850.342882pt;}
.y35{bottom:856.216927pt;}
.yb7{bottom:858.174510pt;}
.y3{bottom:867.310582pt;}
.yb5{bottom:876.447419pt;}
.y2{bottom:884.278283pt;}
.y34{bottom:891.457535pt;}
.yb4{bottom:893.415119pt;}
.yb2{bottom:901.898969pt;}
.yb3{bottom:910.382820pt;}
.y33{bottom:926.698144pt;}
.yb1{bottom:928.655728pt;}
.yb0{bottom:945.623428pt;}
.yae{bottom:954.107279pt;}
.y32{bottom:961.938753pt;}
.yaf{bottom:962.591129pt;}
.yad{bottom:980.864037pt;}
.y31{bottom:997.179362pt;}
.yac{bottom:997.831738pt;}
.yaa{bottom:1006.315588pt;}
.yab{bottom:1014.799438pt;}
.y30{bottom:1032.419971pt;}
.ya9{bottom:1033.072347pt;}
.ya8{bottom:1050.040047pt;}
.ya6{bottom:1058.523897pt;}
.ya7{bottom:1067.007748pt;}
.y2f{bottom:1067.660579pt;}
.ya5{bottom:1085.280656pt;}
.ya4{bottom:1102.248356pt;}
.y2e{bottom:1102.901188pt;}
.ya2{bottom:1110.732207pt;}
.ya3{bottom:1119.216057pt;}
.y2d{bottom:1121.174097pt;}
.ya1{bottom:1137.488965pt;}
.y2c{bottom:1138.141797pt;}
.ya0{bottom:1154.456666pt;}
.y9f{bottom:1172.729574pt;}
.y2b{bottom:1173.382406pt;}
.y9e{bottom:1189.697275pt;}
.y9d{bottom:1207.970183pt;}
.y2a{bottom:1208.623015pt;}
.y9c{bottom:1224.937883pt;}
.y9b{bottom:1243.210792pt;}
.y29{bottom:1243.863623pt;}
.y9a{bottom:1260.178492pt;}
.y28{bottom:1262.136532pt;}
.y99{bottom:1295.419101pt;}
.y98{bottom:1313.692009pt;}
.h3{height:40.492031pt;}
.h5{height:74.427432pt;}
.h6{height:646.077867pt;}
.h2{height:897.330267pt;}
.h4{height:905.161600pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:601.700800pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:6.526039pt;}
.x3{left:14.357285pt;}
.x8{left:56.123933pt;}
.x1{left:96.000000pt;}
.x6{left:161.845759pt;}
.x4{left:176.203044pt;}
.x7{left:358.932127pt;}
.x5{left:360.237334pt;}
}




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