
    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_9ff3e0fb1e49f3fbcd6085ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.149000;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_29820272336ac670358b408a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.990000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.137809px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001002px;}
.ls3{letter-spacing:0.001998px;}
.ls2{letter-spacing:27.863629px;}
.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:-20.371492px;}
.ws9{word-spacing:-18.519593px;}
.ws2{word-spacing:-15.741594px;}
.wsd{word-spacing:-15.278694px;}
.wse{word-spacing:-14.260059px;}
.wsc{word-spacing:-13.889664px;}
.ws10{word-spacing:-1.756121px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:3.014525px;}
.wsb{word-spacing:3.025860px;}
.wsf{word-spacing:3.025910px;}
.ws8{word-spacing:4.630086px;}
.ws12{word-spacing:5.088622px;}
.ws14{word-spacing:5.091650px;}
.ws0{word-spacing:5.092850px;}
.ws13{word-spacing:5.092964px;}
.ws6{word-spacing:5.192450px;}
.ws15{word-spacing:5.310497px;}
.ws11{word-spacing:14.096790px;}
.ws4{word-spacing:15.974445px;}
.ws7{word-spacing:818.034273px;}
.wsa{word-spacing:823.956270px;}
._11{margin-left:-2215.754714px;}
._0{margin-left:-10.512097px;}
._c{margin-left:-7.508081px;}
._3{margin-left:-6.089364px;}
._2{margin-left:-4.624718px;}
._9{margin-left:-2.988331px;}
._1{margin-left:-1.622283px;}
._7{width:1.637447px;}
._5{width:2.646300px;}
._6{width:3.777365px;}
._4{width:5.544976px;}
._d{width:6.553905px;}
._13{width:7.658392px;}
._b{width:8.886534px;}
._f{width:10.837634px;}
._e{width:12.875516px;}
._12{width:14.667474px;}
._19{width:16.251113px;}
._15{width:17.498131px;}
._8{width:19.134669px;}
._16{width:21.582076px;}
._a{width:22.734748px;}
._17{width:23.814816px;}
._14{width:27.708417px;}
._18{width:33.898443px;}
._10{width:40.683336px;}
.fc1{color:rgb(2,3,5);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:55.558658px;}
.fs6{font-size:57.040237px;}
.fs1{font-size:61.114776px;}
.fs3{font-size:62.966375px;}
.fs4{font-size:74.078370px;}
.fs2{font-size:81.115768px;}
.fs0{font-size:81.485967px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.603125px;}
.yd7{bottom:96.750786px;}
.y45{bottom:118.987677px;}
.ye6{bottom:118.998177px;}
.y68{bottom:119.834651px;}
.y1a{bottom:120.037226px;}
.yd6{bottom:120.645776px;}
.y67{bottom:143.750792px;}
.y9b{bottom:144.402047px;}
.y43{bottom:144.504017px;}
.yd5{bottom:144.542117px;}
.y19{bottom:144.605867px;}
.y9a{bottom:168.297037px;}
.y42{bottom:168.400357px;}
.yd4{bottom:168.437107px;}
.y18{bottom:169.173007px;}
.y66{bottom:191.563273px;}
.y41{bottom:192.295347px;}
.yd3{bottom:192.333447px;}
.y17{bottom:193.740147px;}
.y65{bottom:215.479413px;}
.y99{bottom:216.068718px;}
.y40{bottom:216.191688px;}
.yd2{bottom:216.228438px;}
.y16{bottom:218.308787px;}
.y64{bottom:239.395554px;}
.y98{bottom:239.963708px;}
.y3f{bottom:240.086678px;}
.yd1{bottom:240.124778px;}
.y63{bottom:263.311694px;}
.y97{bottom:263.860049px;}
.y3e{bottom:263.983019px;}
.yd0{bottom:264.021119px;}
.ye5{bottom:268.473267px;}
.y62{bottom:287.227084px;}
.y15{bottom:287.541109px;}
.y96{bottom:287.755039px;}
.y3d{bottom:287.878009px;}
.ycf{bottom:287.916109px;}
.ye4{bottom:292.357907px;}
.y14{bottom:307.675751px;}
.y61{bottom:311.143225px;}
.y95{bottom:311.651380px;}
.ybb{bottom:311.723350px;}
.y3c{bottom:311.774350px;}
.yce{bottom:311.812450px;}
.ye3{bottom:316.252898px;}
.y13{bottom:327.808293px;}
.y60{bottom:335.039565px;}
.y94{bottom:335.546370px;}
.yba{bottom:335.620440px;}
.y3b{bottom:335.670690px;}
.ye2{bottom:340.143388px;}
.y12{bottom:347.942935px;}
.y5f{bottom:358.955706px;}
.y93{bottom:359.442711px;}
.yb9{bottom:359.515431px;}
.y3a{bottom:359.565681px;}
.ycd{bottom:359.583381px;}
.ye1{bottom:364.027879px;}
.y11{bottom:368.075477px;}
.y5e{bottom:382.871846px;}
.y92{bottom:383.339051px;}
.yb8{bottom:383.411771px;}
.y39{bottom:383.462021px;}
.ycc{bottom:383.479721px;}
.ye0{bottom:387.924219px;}
.y10{bottom:388.208019px;}
.y91{bottom:407.234041px;}
.ycb{bottom:407.286661px;}
.yb7{bottom:407.306761px;}
.y38{bottom:407.357011px;}
.yf{bottom:408.342661px;}
.ydf{bottom:411.819210px;}
.y5d{bottom:430.684327px;}
.y90{bottom:431.130382px;}
.yca{bottom:431.181652px;}
.yb6{bottom:431.203102px;}
.y37{bottom:431.253352px;}
.ye{bottom:448.593795px;}
.y5c{bottom:454.600468px;}
.y8f{bottom:455.025372px;}
.yc9{bottom:455.077992px;}
.y36{bottom:455.148342px;}
.yde{bottom:459.600191px;}
.y5b{bottom:478.516608px;}
.y8e{bottom:478.921713px;}
.yc8{bottom:478.972983px;}
.y35{bottom:478.988583px;}
.yb5{bottom:478.994433px;}
.y5a{bottom:502.432748px;}
.y8d{bottom:502.817453px;}
.yc7{bottom:502.869323px;}
.y34{bottom:502.884923px;}
.yb4{bottom:502.890773px;}
.yd{bottom:508.978821px;}
.y59{bottom:526.348889px;}
.y8c{bottom:526.713794px;}
.yc6{bottom:526.764314px;}
.y33{bottom:526.779164px;}
.yb3{bottom:526.785764px;}
.yc{bottom:529.111363px;}
.yb{bottom:549.243905px;}
.y58{bottom:550.265029px;}
.y8b{bottom:550.608784px;}
.yc5{bottom:550.660654px;}
.y32{bottom:550.676254px;}
.yb2{bottom:550.682104px;}
.ya{bottom:569.378547px;}
.y57{bottom:574.181170px;}
.y8a{bottom:574.505125px;}
.yc4{bottom:574.555645px;}
.y77{bottom:574.560895px;}
.ydd{bottom:574.569595px;}
.y31{bottom:574.572595px;}
.yb1{bottom:574.577095px;}
.y9{bottom:589.511089px;}
.y56{bottom:598.098660px;}
.y89{bottom:598.400115px;}
.yc3{bottom:598.451985px;}
.y76{bottom:598.457235px;}
.y30{bottom:598.467585px;}
.yb0{bottom:598.473435px;}
.ya0{bottom:598.483935px;}
.y8{bottom:609.643631px;}
.y55{bottom:622.014801px;}
.y88{bottom:622.296455px;}
.ydc{bottom:622.342025px;}
.yc2{bottom:622.348325px;}
.y75{bottom:622.352225px;}
.y2f{bottom:622.363925px;}
.yaf{bottom:622.368425px;}
.y9f{bottom:622.380275px;}
.y7{bottom:629.778272px;}
.y87{bottom:646.192796px;}
.ydb{bottom:646.237016px;}
.yc1{bottom:646.243316px;}
.y74{bottom:646.248566px;}
.y2e{bottom:646.258916px;}
.yae{bottom:646.264766px;}
.y9e{bottom:646.272116px;}
.y54{bottom:669.825931px;}
.y6{bottom:670.029406px;}
.y86{bottom:670.087786px;}
.yda{bottom:670.133356px;}
.yc0{bottom:670.139656px;}
.y73{bottom:670.143556px;}
.y2d{bottom:670.155256px;}
.yad{bottom:670.159756px;}
.y53{bottom:693.742072px;}
.y85{bottom:693.984127px;}
.yac{bottom:694.008697px;}
.yd9{bottom:694.028347px;}
.ybf{bottom:694.034647px;}
.y72{bottom:694.039897px;}
.y2c{bottom:694.050247px;}
.y52{bottom:717.659562px;}
.y2b{bottom:717.863787px;}
.y84{bottom:717.879117px;}
.yab{bottom:717.903687px;}
.yd8{bottom:717.924687px;}
.ybe{bottom:717.931737px;}
.y71{bottom:717.934887px;}
.y51{bottom:741.575703px;}
.y9d{bottom:741.758778px;}
.y2a{bottom:741.760128px;}
.y83{bottom:741.775458px;}
.yaa{bottom:741.800028px;}
.ybd{bottom:741.825978px;}
.y70{bottom:741.831228px;}
.y50{bottom:765.491843px;}
.y29{bottom:765.655118px;}
.y82{bottom:765.670448px;}
.y6f{bottom:765.676868px;}
.ya9{bottom:765.695018px;}
.ybc{bottom:765.723068px;}
.y28{bottom:789.551459px;}
.y81{bottom:789.566789px;}
.y6e{bottom:789.571109px;}
.ya8{bottom:789.591359px;}
.y4f{bottom:813.304324px;}
.y27{bottom:813.446449px;}
.y80{bottom:813.463129px;}
.y6d{bottom:813.467449px;}
.ya7{bottom:813.486349px;}
.y5{bottom:823.029345px;}
.y4e{bottom:837.220464px;}
.y26{bottom:837.342789px;}
.y7f{bottom:837.358119px;}
.y6c{bottom:837.362439px;}
.ya6{bottom:837.382689px;}
.y4{bottom:846.918036px;}
.y4d{bottom:861.074730px;}
.y25{bottom:861.237780px;}
.y7e{bottom:861.254460px;}
.y6b{bottom:861.258780px;}
.ya5{bottom:861.279780px;}
.y4c{bottom:884.990870px;}
.y24{bottom:885.134120px;}
.y7d{bottom:885.149450px;}
.y6a{bottom:885.155120px;}
.ya4{bottom:885.174770px;}
.y4b{bottom:908.907011px;}
.y9c{bottom:909.029111px;}
.y23{bottom:909.030461px;}
.y7c{bottom:909.046541px;}
.y69{bottom:909.050111px;}
.ya3{bottom:909.071111px;}
.y4a{bottom:932.823151px;}
.y22{bottom:932.925451px;}
.y7b{bottom:932.941531px;}
.ya2{bottom:932.966101px;}
.y3{bottom:941.339998px;}
.y49{bottom:956.739292px;}
.y21{bottom:956.821792px;}
.y7a{bottom:956.838622px;}
.y48{bottom:980.655432px;}
.y20{bottom:980.716782px;}
.y79{bottom:980.733612px;}
.ya1{bottom:980.737782px;}
.y47{bottom:1004.572923px;}
.y1f{bottom:1004.613123px;}
.y78{bottom:1004.632773px;}
.y1b{bottom:1018.634967px;}
.y1e{bottom:1028.508113px;}
.y46{bottom:1052.383303px;}
.y1d{bottom:1052.404453px;}
.y1c{bottom:1076.299444px;}
.y2{bottom:1122.695925px;}
.y44{bottom:1127.534923px;}
.h9{height:48.358176px;}
.h4{height:58.369829px;}
.h7{height:62.581223px;}
.hf{height:62.770823px;}
.h5{height:68.670649px;}
.hc{height:70.685931px;}
.ha{height:70.944711px;}
.h3{height:75.194317px;}
.h2{height:75.537492px;}
.he{height:75.555492px;}
.h12{height:75.560892px;}
.h13{height:75.578892px;}
.hd{height:75.584892px;}
.hb{height:75.740292px;}
.h8{height:75.761892px;}
.h10{height:75.803892px;}
.h6{height:75.868692px;}
.h11{height:75.889692px;}
.h1{height:1259.915400px;}
.h0{height:1263.000000px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:118.114753px;}
.xa{left:136.490495px;}
.x3{left:158.261937px;}
.x6{left:160.113086px;}
.x13{left:165.215769px;}
.xb{left:178.496629px;}
.x1{left:218.659413px;}
.x19{left:230.980258px;}
.x9{left:253.493899px;}
.x4{left:337.325865px;}
.x2{left:346.834811px;}
.x18{left:368.141853px;}
.x5{left:391.829993px;}
.x8{left:397.230141px;}
.x15{left:458.819666px;}
.x10{left:507.536797px;}
.x17{left:550.940330px;}
.xf{left:622.097601px;}
.x12{left:632.019647px;}
.x14{left:635.022946px;}
.xd{left:637.946745px;}
.x16{left:642.591943px;}
.x11{left:653.417589px;}
.xe{left:656.817787px;}
.xc{left:728.168709px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.122497pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000891pt;}
.ls3{letter-spacing:0.001776pt;}
.ls2{letter-spacing:24.767670pt;}
.ws1{word-spacing:-18.107993pt;}
.ws9{word-spacing:-16.461860pt;}
.ws2{word-spacing:-13.992528pt;}
.wsd{word-spacing:-13.581061pt;}
.wse{word-spacing:-12.675608pt;}
.wsc{word-spacing:-12.346368pt;}
.ws10{word-spacing:-1.560997pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:2.679578pt;}
.wsb{word-spacing:2.689653pt;}
.wsf{word-spacing:2.689697pt;}
.ws8{word-spacing:4.115632pt;}
.ws12{word-spacing:4.523220pt;}
.ws14{word-spacing:4.525911pt;}
.ws0{word-spacing:4.526977pt;}
.ws13{word-spacing:4.527079pt;}
.ws6{word-spacing:4.615511pt;}
.ws15{word-spacing:4.720442pt;}
.ws11{word-spacing:12.530480pt;}
.ws4{word-spacing:14.199507pt;}
.ws7{word-spacing:727.141576pt;}
.wsa{word-spacing:732.405574pt;}
._11{margin-left:-1969.559746pt;}
._0{margin-left:-9.344086pt;}
._c{margin-left:-6.673849pt;}
._3{margin-left:-5.412768pt;}
._2{margin-left:-4.110861pt;}
._9{margin-left:-2.656294pt;}
._1{margin-left:-1.442029pt;}
._7{width:1.455508pt;}
._5{width:2.352267pt;}
._6{width:3.357658pt;}
._4{width:4.928868pt;}
._d{width:5.825693pt;}
._13{width:6.807459pt;}
._b{width:7.899141pt;}
._f{width:9.633452pt;}
._e{width:11.444903pt;}
._12{width:13.037755pt;}
._19{width:14.445434pt;}
._15{width:15.553894pt;}
._8{width:17.008595pt;}
._16{width:19.184067pt;}
._a{width:20.208665pt;}
._17{width:21.168725pt;}
._14{width:24.629704pt;}
._18{width:30.131949pt;}
._10{width:36.162965pt;}
.fs5{font-size:49.385474pt;}
.fs6{font-size:50.702433pt;}
.fs1{font-size:54.324245pt;}
.fs3{font-size:55.970111pt;}
.fs4{font-size:65.847440pt;}
.fs2{font-size:72.102904pt;}
.fs0{font-size:72.431971pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.425000pt;}
.yd7{bottom:86.000698pt;}
.y45{bottom:105.766824pt;}
.ye6{bottom:105.776157pt;}
.y68{bottom:106.519690pt;}
.y1a{bottom:106.699757pt;}
.yd6{bottom:107.240690pt;}
.y67{bottom:127.778482pt;}
.y9b{bottom:128.357375pt;}
.y43{bottom:128.448015pt;}
.yd5{bottom:128.481881pt;}
.y19{bottom:128.538548pt;}
.y9a{bottom:149.597366pt;}
.y42{bottom:149.689206pt;}
.yd4{bottom:149.721873pt;}
.y18{bottom:150.376006pt;}
.y66{bottom:170.278465pt;}
.y41{bottom:170.929198pt;}
.yd3{bottom:170.963064pt;}
.y17{bottom:172.213464pt;}
.y65{bottom:191.537256pt;}
.y99{bottom:192.061083pt;}
.y40{bottom:192.170389pt;}
.yd2{bottom:192.203056pt;}
.y16{bottom:194.052255pt;}
.y64{bottom:212.796048pt;}
.y98{bottom:213.301074pt;}
.y3f{bottom:213.410381pt;}
.yd1{bottom:213.444247pt;}
.y63{bottom:234.054839pt;}
.y97{bottom:234.542266pt;}
.y3e{bottom:234.651572pt;}
.yd0{bottom:234.685439pt;}
.ye5{bottom:238.642904pt;}
.y62{bottom:255.312964pt;}
.y15{bottom:255.592097pt;}
.y96{bottom:255.782257pt;}
.y3d{bottom:255.891564pt;}
.ycf{bottom:255.925430pt;}
.ye4{bottom:259.873695pt;}
.y14{bottom:273.489557pt;}
.y61{bottom:276.571755pt;}
.y95{bottom:277.023449pt;}
.ybb{bottom:277.087422pt;}
.y3c{bottom:277.132755pt;}
.yce{bottom:277.166622pt;}
.ye3{bottom:281.113687pt;}
.y13{bottom:291.385150pt;}
.y60{bottom:297.812947pt;}
.y94{bottom:298.263440pt;}
.yba{bottom:298.329280pt;}
.y3b{bottom:298.373947pt;}
.ye2{bottom:302.349678pt;}
.y12{bottom:309.282609pt;}
.y5f{bottom:319.071738pt;}
.y93{bottom:319.504632pt;}
.yb9{bottom:319.569272pt;}
.y3a{bottom:319.613938pt;}
.ycd{bottom:319.629672pt;}
.ye1{bottom:323.580337pt;}
.y11{bottom:327.178202pt;}
.y5e{bottom:340.330530pt;}
.y92{bottom:340.745823pt;}
.yb8{bottom:340.810463pt;}
.y39{bottom:340.855130pt;}
.ycc{bottom:340.870863pt;}
.ye0{bottom:344.821528pt;}
.y10{bottom:345.073795pt;}
.y91{bottom:361.985815pt;}
.ycb{bottom:362.032588pt;}
.yb7{bottom:362.050455pt;}
.y38{bottom:362.095121pt;}
.yf{bottom:362.971254pt;}
.ydf{bottom:366.061520pt;}
.y5d{bottom:382.830513pt;}
.y90{bottom:383.227006pt;}
.yca{bottom:383.272579pt;}
.yb6{bottom:383.291646pt;}
.y37{bottom:383.336313pt;}
.ye{bottom:398.750040pt;}
.y5c{bottom:404.089304pt;}
.y8f{bottom:404.466998pt;}
.yc9{bottom:404.513771pt;}
.y36{bottom:404.576304pt;}
.yde{bottom:408.533503pt;}
.y5b{bottom:425.348096pt;}
.y8e{bottom:425.708189pt;}
.yc8{bottom:425.753762pt;}
.y35{bottom:425.767629pt;}
.yb5{bottom:425.772829pt;}
.y5a{bottom:446.606887pt;}
.y8d{bottom:446.948847pt;}
.yc7{bottom:446.994954pt;}
.y34{bottom:447.008821pt;}
.yb4{bottom:447.014021pt;}
.yd{bottom:452.425618pt;}
.y59{bottom:467.865679pt;}
.y8c{bottom:468.190039pt;}
.yc6{bottom:468.234945pt;}
.y33{bottom:468.248145pt;}
.yb3{bottom:468.254012pt;}
.yc{bottom:470.321211pt;}
.yb{bottom:488.216804pt;}
.y58{bottom:489.124470pt;}
.y8b{bottom:489.430030pt;}
.yc5{bottom:489.476137pt;}
.y32{bottom:489.490004pt;}
.yb2{bottom:489.495204pt;}
.ya{bottom:506.114264pt;}
.y57{bottom:510.383262pt;}
.y8a{bottom:510.671222pt;}
.yc4{bottom:510.716128pt;}
.y77{bottom:510.720795pt;}
.ydd{bottom:510.728528pt;}
.y31{bottom:510.731195pt;}
.yb1{bottom:510.735195pt;}
.y9{bottom:524.009856pt;}
.y56{bottom:531.643253pt;}
.y89{bottom:531.911213pt;}
.yc3{bottom:531.957320pt;}
.y76{bottom:531.961987pt;}
.y30{bottom:531.971187pt;}
.yb0{bottom:531.976387pt;}
.ya0{bottom:531.985720pt;}
.y8{bottom:541.905449pt;}
.y55{bottom:552.902045pt;}
.y88{bottom:553.152405pt;}
.ydc{bottom:553.192911pt;}
.yc2{bottom:553.198511pt;}
.y75{bottom:553.201978pt;}
.y2f{bottom:553.212378pt;}
.yaf{bottom:553.216378pt;}
.y9f{bottom:553.226911pt;}
.y7{bottom:559.802909pt;}
.y87{bottom:574.393596pt;}
.ydb{bottom:574.432903pt;}
.yc1{bottom:574.438503pt;}
.y74{bottom:574.443170pt;}
.y2e{bottom:574.452370pt;}
.yae{bottom:574.457570pt;}
.y9e{bottom:574.464103pt;}
.y54{bottom:595.400828pt;}
.y6{bottom:595.581695pt;}
.y86{bottom:595.633588pt;}
.yda{bottom:595.674094pt;}
.yc0{bottom:595.679694pt;}
.y73{bottom:595.683161pt;}
.y2d{bottom:595.693561pt;}
.yad{bottom:595.697561pt;}
.y53{bottom:616.659619pt;}
.y85{bottom:616.874779pt;}
.yac{bottom:616.896619pt;}
.yd9{bottom:616.914086pt;}
.ybf{bottom:616.919686pt;}
.y72{bottom:616.924353pt;}
.y2c{bottom:616.933553pt;}
.y52{bottom:637.919611pt;}
.y2b{bottom:638.101144pt;}
.y84{bottom:638.114771pt;}
.yab{bottom:638.136611pt;}
.yd8{bottom:638.155278pt;}
.ybe{bottom:638.161544pt;}
.y71{bottom:638.164344pt;}
.y51{bottom:659.178402pt;}
.y9d{bottom:659.341136pt;}
.y2a{bottom:659.342336pt;}
.y83{bottom:659.355962pt;}
.yaa{bottom:659.377802pt;}
.ybd{bottom:659.400869pt;}
.y70{bottom:659.405536pt;}
.y50{bottom:680.437194pt;}
.y29{bottom:680.582327pt;}
.y82{bottom:680.595954pt;}
.y6f{bottom:680.601661pt;}
.ya9{bottom:680.617794pt;}
.ybc{bottom:680.642727pt;}
.y28{bottom:701.823519pt;}
.y81{bottom:701.837145pt;}
.y6e{bottom:701.840985pt;}
.ya8{bottom:701.858985pt;}
.y4f{bottom:722.937177pt;}
.y27{bottom:723.063510pt;}
.y80{bottom:723.078337pt;}
.y6d{bottom:723.082177pt;}
.ya7{bottom:723.098977pt;}
.y5{bottom:731.581640pt;}
.y4e{bottom:744.195968pt;}
.y26{bottom:744.304702pt;}
.y7f{bottom:744.318328pt;}
.y6c{bottom:744.322168pt;}
.ya6{bottom:744.340168pt;}
.y4{bottom:752.816032pt;}
.y4d{bottom:765.399760pt;}
.y25{bottom:765.544693pt;}
.y7e{bottom:765.559520pt;}
.y6b{bottom:765.563360pt;}
.ya5{bottom:765.582027pt;}
.y4c{bottom:786.658551pt;}
.y24{bottom:786.785885pt;}
.y7d{bottom:786.799511pt;}
.y6a{bottom:786.804551pt;}
.ya4{bottom:786.822018pt;}
.y4b{bottom:807.917343pt;}
.y9c{bottom:808.025876pt;}
.y23{bottom:808.027076pt;}
.y7c{bottom:808.041370pt;}
.y69{bottom:808.044543pt;}
.ya3{bottom:808.063210pt;}
.y4a{bottom:829.176134pt;}
.y22{bottom:829.267068pt;}
.y7b{bottom:829.281361pt;}
.ya2{bottom:829.303201pt;}
.y3{bottom:836.746665pt;}
.y49{bottom:850.434926pt;}
.y21{bottom:850.508259pt;}
.y7a{bottom:850.523219pt;}
.y48{bottom:871.693717pt;}
.y20{bottom:871.748251pt;}
.y79{bottom:871.763211pt;}
.ya1{bottom:871.766917pt;}
.y47{bottom:892.953709pt;}
.y1f{bottom:892.989442pt;}
.y78{bottom:893.006909pt;}
.y1b{bottom:905.453304pt;}
.y1e{bottom:914.229434pt;}
.y46{bottom:935.451825pt;}
.y1d{bottom:935.470625pt;}
.y1c{bottom:956.710617pt;}
.y2{bottom:997.951934pt;}
.y44{bottom:1002.253265pt;}
.h9{height:42.985045pt;}
.h4{height:51.884293pt;}
.h7{height:55.627754pt;}
.hf{height:55.796287pt;}
.h5{height:61.040577pt;}
.hc{height:62.831939pt;}
.ha{height:63.061966pt;}
.h3{height:66.839392pt;}
.h2{height:67.144437pt;}
.he{height:67.160437pt;}
.h12{height:67.165237pt;}
.h13{height:67.181237pt;}
.hd{height:67.186570pt;}
.hb{height:67.324704pt;}
.h8{height:67.343904pt;}
.h10{height:67.381237pt;}
.h6{height:67.438837pt;}
.h11{height:67.457504pt;}
.h1{height:1119.924800pt;}
.h0{height:1122.666667pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:104.990891pt;}
.xa{left:121.324885pt;}
.x3{left:140.677277pt;}
.x6{left:142.322743pt;}
.x13{left:146.858461pt;}
.xb{left:158.663670pt;}
.x1{left:194.363922pt;}
.x19{left:205.315785pt;}
.x9{left:225.327910pt;}
.x4{left:299.845213pt;}
.x2{left:308.297610pt;}
.x18{left:327.237202pt;}
.x5{left:348.293327pt;}
.x8{left:353.093459pt;}
.x15{left:407.839704pt;}
.x10{left:451.143820pt;}
.x17{left:489.724737pt;}
.xf{left:552.975645pt;}
.x12{left:561.795242pt;}
.x14{left:564.464841pt;}
.xd{left:567.063773pt;}
.x16{left:571.192838pt;}
.x11{left:580.815634pt;}
.xe{left:583.838033pt;}
.xc{left:647.261074pt;}
}




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