
    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_fc27eb2beea8d7fd0799009f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_89823fc98cc0f251175994c3.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_a89c7efd0673f40e638de58a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d8869424a5c21a6ce61ade44.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4c9be768603b5a12cbb9d526.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_b0dbaf6055abdf190a070817.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927734;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_140bade8991d2e314e9685d8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_48bf8aa49cab7269d90c80eb.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;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017988px;}
.ls1{letter-spacing:0.018006px;}
.ls8{letter-spacing:0.288009px;}
.ls9{letter-spacing:0.923432px;}
.lsa{letter-spacing:1.385147px;}
.lsd{letter-spacing:1.392042px;}
.lsc{letter-spacing:1.440044px;}
.ls5{letter-spacing:1.458000px;}
.ls2{letter-spacing:1.474269px;}
.ls4{letter-spacing:1.476000px;}
.ls0{letter-spacing:1.512000px;}
.lsb{letter-spacing:2.103372px;}
.lse{letter-spacing:7.776237px;}
.ls7{letter-spacing:809.819000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-51.301758px;}
.ws8{word-spacing:-48.001464px;}
.ws1{word-spacing:-21.129671px;}
.wsb{word-spacing:-19.444913px;}
.wsc{word-spacing:-16.416000px;}
.ws2{word-spacing:-14.958000px;}
.ws7{word-spacing:-14.448441px;}
.ws5{word-spacing:-14.210587px;}
.wsa{word-spacing:-13.296406px;}
.ws9{word-spacing:-11.965913px;}
.ws0{word-spacing:-11.633594px;}
.ws4{word-spacing:0.000000px;}
.ws3{word-spacing:312.012000px;}
._17{margin-left:-9.050453px;}
._3{margin-left:-7.842560px;}
._e{margin-left:-6.201764px;}
._6{margin-left:-3.239935px;}
._4{margin-left:-2.203242px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._d{width:3.717843px;}
._8{width:4.752000px;}
._7{width:6.511412px;}
._9{width:8.100040px;}
._b{width:9.936000px;}
._c{width:11.772040px;}
._a{width:13.362293px;}
._15{width:17.483510px;}
._f{width:18.601184px;}
._14{width:23.083145px;}
._11{width:28.134000px;}
._13{width:29.372643px;}
._10{width:30.612067px;}
._12{width:31.621452px;}
._5{width:45.136280px;}
._16{width:115.685464px;}
._18{width:148.731151px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs8{font-size:40.500000px;}
.fs0{font-size:41.998536px;}
.fsa{font-size:43.198242px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:55.678710px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y24{bottom:46.734370px;}
.y23{bottom:59.015622px;}
.y22{bottom:71.302734px;}
.y40{bottom:104.150389px;}
.y3f{bottom:122.103516px;}
.y20{bottom:138.720681px;}
.y1f{bottom:157.623030px;}
.y3e{bottom:159.615234px;}
.y1e{bottom:176.519520px;}
.y1d{bottom:195.421869px;}
.y5e{bottom:201.854578px;}
.y3d{bottom:213.316407px;}
.y1c{bottom:214.318354px;}
.y5d{bottom:219.813560px;}
.y5c{bottom:237.766688px;}
.y3c{bottom:242.062500px;}
.y1b{bottom:246.720693px;}
.y43{bottom:252.850500px;}
.y5b{bottom:255.719808px;}
.y65{bottom:257.085938px;}
.y1a{bottom:265.623042px;}
.y5a{bottom:273.678797px;}
.y64{bottom:273.884765px;}
.y19{bottom:284.519532px;}
.y63{bottom:290.683598px;}
.y59{bottom:291.631916px;}
.y3b{bottom:297.667968px;}
.y18{bottom:303.421869px;}
.y62{bottom:307.628906px;}
.y58{bottom:309.585044px;}
.y17{bottom:322.318355px;}
.y61{bottom:324.568359px;}
.y57{bottom:327.544032px;}
.y3a{bottom:328.324218px;}
.y16{bottom:341.220698px;}
.y56{bottom:345.497144px;}
.y66{bottom:350.373047px;}
.y60{bottom:352.623047px;}
.y15{bottom:360.123026px;}
.y55{bottom:363.450271px;}
.y14{bottom:379.019516px;}
.y54{bottom:381.409260px;}
.y39{bottom:383.935546px;}
.y13{bottom:397.921865px;}
.y5f{bottom:399.333984px;}
.y53{bottom:399.362387px;}
.y38{bottom:414.591796px;}
.y12{bottom:416.818355px;}
.y52{bottom:417.315514px;}
.y51{bottom:435.268641px;}
.y11{bottom:435.720704px;}
.y50{bottom:453.227614px;}
.y10{bottom:466.376954px;}
.y37{bottom:470.203125px;}
.y4f{bottom:471.180741px;}
.y4e{bottom:489.133868px;}
.y36{bottom:500.853516px;}
.y4d{bottom:507.092857px;}
.y4c{bottom:525.045984px;}
.yf{bottom:535.476560px;}
.y4b{bottom:542.999105px;}
.ye{bottom:552.275387px;}
.y35{bottom:556.464843px;}
.y4a{bottom:560.958093px;}
.yd{bottom:569.074213px;}
.y77{bottom:575.437500px;}
.y49{bottom:578.911218px;}
.y34{bottom:587.121093px;}
.yc{bottom:590.373046px;}
.y76{bottom:594.333984px;}
.y48{bottom:596.864340px;}
.y75{bottom:613.236318px;}
.y47{bottom:614.823329px;}
.yb{bottom:616.177734px;}
.y74{bottom:632.132808px;}
.y46{bottom:632.776454px;}
.y33{bottom:642.732411px;}
.y45{bottom:650.729574px;}
.y73{bottom:651.035157px;}
.y67{bottom:653.859375px;}
.y32{bottom:661.628901px;}
.ya{bottom:666.427743px;}
.y44{bottom:668.688562px;}
.y9{bottom:679.658207px;}
.y31{bottom:680.531223px;}
.y72{bottom:681.896484px;}
.y8{bottom:692.888671px;}
.y30{bottom:699.427713px;}
.y7{bottom:713.847657px;}
.y2f{bottom:718.330062px;}
.y21{bottom:718.347657px;}
.y71{bottom:736.769532px;}
.y2e{bottom:737.232411px;}
.y70{bottom:753.568346px;}
.y2d{bottom:756.128901px;}
.y6{bottom:756.158206px;}
.y6f{bottom:770.373034px;}
.y2c{bottom:775.031240px;}
.y6e{bottom:787.171867px;}
.y5{bottom:793.710931px;}
.y2b{bottom:793.927730px;}
.y41{bottom:798.990234px;}
.y6d{bottom:803.970699px;}
.y2a{bottom:812.830072px;}
.y6c{bottom:820.769531px;}
.y4{bottom:831.269532px;}
.y29{bottom:831.732411px;}
.y6b{bottom:837.568364px;}
.y6a{bottom:854.513672px;}
.y28{bottom:864.128901px;}
.y69{bottom:871.453125px;}
.y27{bottom:883.031244px;}
.y78{bottom:897.263671px;}
.y3{bottom:899.378907px;}
.y68{bottom:899.513671px;}
.y26{bottom:901.927730px;}
.y25{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y42{bottom:974.730470px;}
.ha{height:28.048904px;}
.h12{height:31.449501px;}
.h9{height:32.167969px;}
.h5{height:33.777938px;}
.he{height:35.617086px;}
.hd{height:36.188965px;}
.h1{height:37.527989px;}
.h11{height:40.535623px;}
.h4{height:42.891933px;}
.hc{height:45.840926px;}
.h10{height:45.840979px;}
.h2{height:48.251953px;}
.h7{height:48.252037px;}
.h8{height:48.252043px;}
.hb{height:48.252061px;}
.h13{height:51.106240px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.hf{height:682.113000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.xa{left:11.584593px;}
.xb{left:45.000609px;}
.x3{left:78.662109px;}
.x7{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xc{left:101.162109px;}
.xf{left:103.412109px;}
.x10{left:106.787109px;}
.xe{left:122.414062px;}
.x8{left:123.662109px;}
.x6{left:161.912109px;}
.x1{left:205.335938px;}
.xd{left:286.787109px;}
.x2{left:288.351562px;}
.x9{left:477.861328px;}
.x11{left:554.537109px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015989pt;}
.ls1{letter-spacing:0.016005pt;}
.ls8{letter-spacing:0.256008pt;}
.ls9{letter-spacing:0.820828pt;}
.lsa{letter-spacing:1.231242pt;}
.lsd{letter-spacing:1.237371pt;}
.lsc{letter-spacing:1.280039pt;}
.ls5{letter-spacing:1.296000pt;}
.ls2{letter-spacing:1.310461pt;}
.ls4{letter-spacing:1.312000pt;}
.ls0{letter-spacing:1.344000pt;}
.lsb{letter-spacing:1.869664pt;}
.lse{letter-spacing:6.912211pt;}
.ls7{letter-spacing:719.839111pt;}
.ws6{word-spacing:-45.601563pt;}
.ws8{word-spacing:-42.667968pt;}
.ws1{word-spacing:-18.781930pt;}
.wsb{word-spacing:-17.284367pt;}
.wsc{word-spacing:-14.592000pt;}
.ws2{word-spacing:-13.296000pt;}
.ws7{word-spacing:-12.843058pt;}
.ws5{word-spacing:-12.631633pt;}
.wsa{word-spacing:-11.819027pt;}
.ws9{word-spacing:-10.636367pt;}
.ws0{word-spacing:-10.340973pt;}
.ws4{word-spacing:0.000000pt;}
.ws3{word-spacing:277.344000pt;}
._17{margin-left:-8.044847pt;}
._3{margin-left:-6.971164pt;}
._e{margin-left:-5.512679pt;}
._6{margin-left:-2.879942pt;}
._4{margin-left:-1.958438pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._d{width:3.304749pt;}
._8{width:4.224000pt;}
._7{width:5.787922pt;}
._9{width:7.200035pt;}
._b{width:8.832000pt;}
._c{width:10.464035pt;}
._a{width:11.877594pt;}
._15{width:15.540898pt;}
._f{width:16.534386pt;}
._14{width:20.518351pt;}
._11{width:25.008000pt;}
._13{width:26.109016pt;}
._10{width:27.210726pt;}
._12{width:28.107957pt;}
._5{width:40.121138pt;}
._16{width:102.831524pt;}
._18{width:132.205467pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs8{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.fsa{font-size:38.398437pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:49.492187pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:41.541662pt;}
.y23{bottom:52.458331pt;}
.y22{bottom:63.380208pt;}
.y40{bottom:92.578123pt;}
.y3f{bottom:108.536459pt;}
.y20{bottom:123.307272pt;}
.y1f{bottom:140.109360pt;}
.y3e{bottom:141.880208pt;}
.y1e{bottom:156.906240pt;}
.y1d{bottom:173.708328pt;}
.y5e{bottom:179.426292pt;}
.y3d{bottom:189.614584pt;}
.y1c{bottom:190.505204pt;}
.y5d{bottom:195.389831pt;}
.y5c{bottom:211.348167pt;}
.y3c{bottom:215.166667pt;}
.y1b{bottom:219.307283pt;}
.y43{bottom:224.756000pt;}
.y5b{bottom:227.306496pt;}
.y65{bottom:228.520833pt;}
.y1a{bottom:236.109371pt;}
.y5a{bottom:243.270041pt;}
.y64{bottom:243.453125pt;}
.y19{bottom:252.906251pt;}
.y63{bottom:258.385420pt;}
.y59{bottom:259.228370pt;}
.y3b{bottom:264.593749pt;}
.y18{bottom:269.708328pt;}
.y62{bottom:273.447917pt;}
.y58{bottom:275.186705pt;}
.y17{bottom:286.505204pt;}
.y61{bottom:288.505208pt;}
.y57{bottom:291.150251pt;}
.y3a{bottom:291.843749pt;}
.y16{bottom:303.307287pt;}
.y56{bottom:307.108572pt;}
.y66{bottom:311.442708pt;}
.y60{bottom:313.442708pt;}
.y15{bottom:320.109356pt;}
.y55{bottom:323.066908pt;}
.y14{bottom:336.906236pt;}
.y54{bottom:339.030453pt;}
.y39{bottom:341.276041pt;}
.y13{bottom:353.708324pt;}
.y5f{bottom:354.963541pt;}
.y53{bottom:354.988788pt;}
.y38{bottom:368.526041pt;}
.y12{bottom:370.505204pt;}
.y52{bottom:370.947123pt;}
.y51{bottom:386.905459pt;}
.y11{bottom:387.307292pt;}
.y50{bottom:402.868990pt;}
.y10{bottom:414.557292pt;}
.y37{bottom:417.958333pt;}
.y4f{bottom:418.827326pt;}
.y4e{bottom:434.785661pt;}
.y36{bottom:445.203125pt;}
.y4d{bottom:450.749206pt;}
.y4c{bottom:466.707541pt;}
.yf{bottom:475.979165pt;}
.y4b{bottom:482.665871pt;}
.ye{bottom:490.911455pt;}
.y35{bottom:494.635416pt;}
.y4a{bottom:498.629416pt;}
.yd{bottom:505.843745pt;}
.y77{bottom:511.500000pt;}
.y49{bottom:514.587749pt;}
.y34{bottom:521.885416pt;}
.yc{bottom:524.776041pt;}
.y76{bottom:528.296875pt;}
.y48{bottom:530.546080pt;}
.y75{bottom:545.098949pt;}
.y47{bottom:546.509625pt;}
.yb{bottom:547.713541pt;}
.y74{bottom:561.895829pt;}
.y46{bottom:562.467959pt;}
.y33{bottom:571.317699pt;}
.y45{bottom:578.426288pt;}
.y73{bottom:578.697917pt;}
.y67{bottom:581.208333pt;}
.y32{bottom:588.114579pt;}
.ya{bottom:592.380216pt;}
.y44{bottom:594.389833pt;}
.y9{bottom:604.140629pt;}
.y31{bottom:604.916643pt;}
.y72{bottom:606.130208pt;}
.y8{bottom:615.901041pt;}
.y30{bottom:621.713523pt;}
.y7{bottom:634.531251pt;}
.y2f{bottom:638.515611pt;}
.y21{bottom:638.531251pt;}
.y71{bottom:654.906251pt;}
.y2e{bottom:655.317699pt;}
.y70{bottom:669.838529pt;}
.y2d{bottom:672.114579pt;}
.y6{bottom:672.140627pt;}
.y6f{bottom:684.776030pt;}
.y2c{bottom:688.916657pt;}
.y6e{bottom:699.708326pt;}
.y5{bottom:705.520828pt;}
.y2b{bottom:705.713537pt;}
.y41{bottom:710.213541pt;}
.y6d{bottom:714.640621pt;}
.y2a{bottom:722.515620pt;}
.y6c{bottom:729.572917pt;}
.y4{bottom:738.906251pt;}
.y29{bottom:739.317699pt;}
.y6b{bottom:744.505212pt;}
.y6a{bottom:759.567709pt;}
.y28{bottom:768.114579pt;}
.y69{bottom:774.625000pt;}
.y27{bottom:784.916661pt;}
.y78{bottom:797.567708pt;}
.y3{bottom:799.447917pt;}
.y68{bottom:799.567708pt;}
.y26{bottom:801.713537pt;}
.y25{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y42{bottom:866.427084pt;}
.ha{height:24.932359pt;}
.h12{height:27.955112pt;}
.h9{height:28.593750pt;}
.h5{height:30.024834pt;}
.he{height:31.659632pt;}
.hd{height:32.167969pt;}
.h1{height:33.358212pt;}
.h11{height:36.031665pt;}
.h4{height:38.126163pt;}
.hc{height:40.747490pt;}
.h10{height:40.747536pt;}
.h2{height:42.890625pt;}
.h7{height:42.890700pt;}
.h8{height:42.890705pt;}
.hb{height:42.890721pt;}
.h13{height:45.427769pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.hf{height:606.322667pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.xa{left:10.297416pt;}
.xb{left:40.000541pt;}
.x3{left:69.921875pt;}
.x7{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xc{left:89.921875pt;}
.xf{left:91.921875pt;}
.x10{left:94.921875pt;}
.xe{left:108.812500pt;}
.x8{left:109.921874pt;}
.x6{left:143.921875pt;}
.x1{left:182.520833pt;}
.xd{left:254.921875pt;}
.x2{left:256.312500pt;}
.x9{left:424.765625pt;}
.x11{left:492.921875pt;}
}




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