
    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_1b510a27099d90e436924971.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_255b525cc518d751f64f4183.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_856960af801668ab41a73eb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.062000;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_a91da8aeaa020ccf20808a01.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.028000;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_e313adc9ffc29589524db6ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061000;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_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005000;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-46.601558px;}
.ws0{word-spacing:-16.498716px;}
.ws4{word-spacing:-15.001902px;}
.ws6{word-spacing:-10.504682px;}
.ws3{word-spacing:-6.996050px;}
.ws5{word-spacing:-5.901460px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-1.006804px;}
._2{width:1.729872px;}
._2a{width:3.238290px;}
._10{width:4.319941px;}
._d{width:5.412939px;}
._9{width:7.586441px;}
._26{width:9.356362px;}
._22{width:10.663916px;}
._1f{width:11.741472px;}
._a{width:12.867710px;}
._c{width:13.874440px;}
._18{width:15.302030px;}
._13{width:17.561583px;}
._2f{width:18.678007px;}
._7{width:19.890608px;}
._1{width:21.708373px;}
._b{width:23.466902px;}
._1d{width:25.030969px;}
._f{width:26.341716px;}
._5{width:27.382615px;}
._11{width:29.105898px;}
._16{width:31.061663px;}
._12{width:32.724045px;}
._24{width:33.926363px;}
._19{width:35.195914px;}
._1c{width:37.077613px;}
._0{width:39.503857px;}
._15{width:41.111124px;}
._29{width:42.894782px;}
._4{width:44.214478px;}
._6{width:46.725380px;}
._25{width:51.358884px;}
._3{width:53.944199px;}
._14{width:55.273329px;}
._2b{width:57.586265px;}
._8{width:58.874478px;}
._17{width:60.269690px;}
._2d{width:68.201652px;}
._27{width:75.886344px;}
._1a{width:79.027785px;}
._30{width:84.478619px;}
._1b{width:86.543813px;}
._31{width:110.825681px;}
._20{width:120.735583px;}
._23{width:129.041251px;}
._21{width:133.944011px;}
._2e{width:139.356918px;}
._1e{width:153.873710px;}
._2c{width:163.463652px;}
._28{width:169.540292px;}
.fc3{color:rgb(1,52,44);}
.fc2{color:transparent;}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.675507px;}
.fs3{font-size:27.984200px;}
.fs6{font-size:29.750527px;}
.fs8{font-size:42.016355px;}
.fs7{font-size:42.018727px;}
.fs4{font-size:60.007609px;}
.fs0{font-size:65.994864px;}
.fs2{font-size:72.027138px;}
.fs1{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y7f{bottom:3.849181px;}
.y77{bottom:4.994094px;}
.y79{bottom:5.135862px;}
.y7b{bottom:5.139904px;}
.y85{bottom:5.617678px;}
.y8b{bottom:7.888858px;}
.y89{bottom:8.006983px;}
.y87{bottom:8.020639px;}
.y84{bottom:15.534520px;}
.y83{bottom:25.451363px;}
.y80{bottom:29.655019px;}
.y7a{bottom:30.375019px;}
.y82{bottom:35.368205px;}
.y81{bottom:45.285048px;}
.y78{bottom:48.735019px;}
.y7e{bottom:50.895019px;}
.y76{bottom:66.015018px;}
.y24{bottom:118.125145px;}
.y4f{bottom:119.496183px;}
.y86{bottom:135.855015px;}
.y23{bottom:140.633626px;}
.y4e{bottom:142.004664px;}
.y22{bottom:163.142106px;}
.y4d{bottom:164.513145px;}
.y21{bottom:185.650587px;}
.y4c{bottom:187.021625px;}
.y88{bottom:197.775012px;}
.y20{bottom:208.159067px;}
.y4b{bottom:209.530106px;}
.y7c{bottom:226.611554px;}
.y1f{bottom:230.667548px;}
.y4a{bottom:232.038586px;}
.y1e{bottom:253.176029px;}
.y49{bottom:254.547067px;}
.y1d{bottom:275.684509px;}
.y48{bottom:277.055548px;}
.y8a{bottom:277.695009px;}
.y1c{bottom:298.192990px;}
.y47{bottom:299.564028px;}
.y7d{bottom:306.827398px;}
.y1b{bottom:320.701471px;}
.y46{bottom:322.072509px;}
.y1a{bottom:343.209951px;}
.y45{bottom:344.580990px;}
.y60{bottom:346.629825px;}
.y19{bottom:365.718432px;}
.y44{bottom:367.089470px;}
.y5f{bottom:369.138306px;}
.y18{bottom:388.226913px;}
.y43{bottom:389.597951px;}
.y5e{bottom:391.646787px;}
.y17{bottom:410.735393px;}
.y42{bottom:412.106432px;}
.y5d{bottom:414.155267px;}
.y16{bottom:433.243874px;}
.y41{bottom:434.614912px;}
.y5c{bottom:436.663748px;}
.y15{bottom:455.752355px;}
.y40{bottom:457.123393px;}
.y5b{bottom:459.172229px;}
.y14{bottom:478.260835px;}
.y3f{bottom:479.631874px;}
.y5a{bottom:481.680709px;}
.y13{bottom:500.769316px;}
.y3e{bottom:502.140354px;}
.y59{bottom:504.189190px;}
.y12{bottom:523.277797px;}
.y3d{bottom:524.648835px;}
.y58{bottom:526.697671px;}
.y11{bottom:545.786277px;}
.y3c{bottom:547.157316px;}
.y57{bottom:549.206151px;}
.y10{bottom:568.294758px;}
.y3b{bottom:569.665796px;}
.y56{bottom:571.714632px;}
.yf{bottom:590.803239px;}
.y3a{bottom:592.174277px;}
.y55{bottom:594.223113px;}
.ye{bottom:613.311719px;}
.y39{bottom:614.682758px;}
.y54{bottom:616.731593px;}
.yd{bottom:635.820200px;}
.y38{bottom:637.191238px;}
.y75{bottom:656.929084px;}
.yc{bottom:658.328681px;}
.y37{bottom:659.699719px;}
.yb{bottom:680.837161px;}
.y36{bottom:682.208200px;}
.y74{bottom:703.141022px;}
.ya{bottom:703.345642px;}
.y35{bottom:704.716680px;}
.y73{bottom:725.649502px;}
.y9{bottom:725.854123px;}
.y34{bottom:727.225161px;}
.y72{bottom:748.157983px;}
.y8{bottom:748.362603px;}
.y33{bottom:749.733642px;}
.y71{bottom:770.666464px;}
.y7{bottom:770.871084px;}
.y32{bottom:772.242122px;}
.y70{bottom:793.174944px;}
.y6{bottom:793.379565px;}
.y31{bottom:794.750603px;}
.y6f{bottom:815.683425px;}
.y5{bottom:815.888045px;}
.y30{bottom:817.259084px;}
.y6e{bottom:838.191906px;}
.y4{bottom:838.396526px;}
.y2f{bottom:839.767564px;}
.y6d{bottom:860.700386px;}
.y3{bottom:860.905007px;}
.y2e{bottom:862.276045px;}
.y6c{bottom:883.208867px;}
.y2{bottom:883.413487px;}
.y2d{bottom:884.784526px;}
.y6b{bottom:905.717348px;}
.y2c{bottom:907.293006px;}
.y53{bottom:927.990538px;}
.y6a{bottom:928.225828px;}
.y2b{bottom:929.801487px;}
.y69{bottom:950.734309px;}
.y2a{bottom:952.309968px;}
.y52{bottom:952.749867px;}
.y68{bottom:973.242790px;}
.y29{bottom:974.818448px;}
.y67{bottom:995.751270px;}
.y28{bottom:997.326929px;}
.y66{bottom:1018.259751px;}
.y27{bottom:1019.835410px;}
.y65{bottom:1040.768232px;}
.y26{bottom:1042.343890px;}
.y64{bottom:1063.276712px;}
.y25{bottom:1064.852371px;}
.y63{bottom:1085.785193px;}
.y62{bottom:1108.293674px;}
.y61{bottom:1130.802154px;}
.y51{bottom:1147.902269px;}
.y50{bottom:1177.163294px;}
.ha{height:9.000000px;}
.h6{height:12.959999px;}
.h8{height:13.319999px;}
.hb{height:15.033783px;}
.he{height:19.439999px;}
.h7{height:22.751155px;}
.hd{height:24.187179px;}
.hf{height:34.161225px;}
.h10{height:34.201313px;}
.h9{height:48.786186px;}
.hc{height:53.639998px;}
.h3{height:53.719820px;}
.h5{height:59.638470px;}
.h4{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w5{width:30.959999px;}
.w7{width:46.079998px;}
.w4{width:62.279997px;}
.w3{width:65.879997px;}
.w2{width:66.239997px;}
.w6{width:200.519992px;}
.w8{width:221.039991px;}
.w9{width:276.839988px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:43.552352px;}
.x5{left:45.943812px;}
.x8{left:49.025416px;}
.x9{left:50.900892px;}
.xb{left:119.519995px;}
.xc{left:127.079995px;}
.x4{left:218.133755px;}
.x3{left:227.172317px;}
.x1{left:469.235590px;}
.xa{left:496.079979px;}
.x7{left:618.479974px;}
.x6{left:620.279974px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-41.423607pt;}
.ws0{word-spacing:-14.665525pt;}
.ws4{word-spacing:-13.335024pt;}
.ws6{word-spacing:-9.337495pt;}
.ws3{word-spacing:-6.218711pt;}
.ws5{word-spacing:-5.245742pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-0.894937pt;}
._2{width:1.537664pt;}
._2a{width:2.878480pt;}
._10{width:3.839948pt;}
._d{width:4.811501pt;}
._9{width:6.743503pt;}
._26{width:8.316766pt;}
._22{width:9.479037pt;}
._1f{width:10.436864pt;}
._a{width:11.437964pt;}
._c{width:12.332836pt;}
._18{width:13.601805pt;}
._13{width:15.610296pt;}
._2f{width:16.602673pt;}
._7{width:17.680541pt;}
._1{width:19.296332pt;}
._b{width:20.859469pt;}
._1d{width:22.249750pt;}
._f{width:23.414859pt;}
._5{width:24.340102pt;}
._11{width:25.871909pt;}
._16{width:27.610367pt;}
._12{width:29.088040pt;}
._24{width:30.156767pt;}
._19{width:31.285256pt;}
._1c{width:32.957878pt;}
._0{width:35.114540pt;}
._15{width:36.543221pt;}
._29{width:38.128695pt;}
._4{width:39.301758pt;}
._6{width:41.533671pt;}
._25{width:45.652341pt;}
._3{width:47.950399pt;}
._14{width:49.131848pt;}
._2b{width:51.187791pt;}
._8{width:52.332869pt;}
._17{width:53.573058pt;}
._2d{width:60.623690pt;}
._27{width:67.454528pt;}
._1a{width:70.246920pt;}
._30{width:75.092106pt;}
._1b{width:76.927834pt;}
._31{width:98.511717pt;}
._20{width:107.320518pt;}
._23{width:114.703334pt;}
._21{width:119.061343pt;}
._2e{width:123.872816pt;}
._1e{width:136.776631pt;}
._2c{width:145.301024pt;}
._28{width:150.702482pt;}
.fs5{font-size:16.600451pt;}
.fs3{font-size:24.874844pt;}
.fs6{font-size:26.444913pt;}
.fs8{font-size:37.347871pt;}
.fs7{font-size:37.349980pt;}
.fs4{font-size:53.340097pt;}
.fs0{font-size:58.662102pt;}
.fs2{font-size:64.024123pt;}
.fs1{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y7f{bottom:3.421494pt;}
.y77{bottom:4.439195pt;}
.y79{bottom:4.565210pt;}
.y7b{bottom:4.568804pt;}
.y85{bottom:4.993491pt;}
.y8b{bottom:7.012318pt;}
.y89{bottom:7.117318pt;}
.y87{bottom:7.129457pt;}
.y84{bottom:13.808462pt;}
.y83{bottom:22.623434pt;}
.y80{bottom:26.360017pt;}
.y7a{bottom:27.000017pt;}
.y82{bottom:31.438405pt;}
.y81{bottom:40.253376pt;}
.y78{bottom:43.320017pt;}
.y7e{bottom:45.240017pt;}
.y76{bottom:58.680016pt;}
.y24{bottom:105.000129pt;}
.y4f{bottom:106.218829pt;}
.y86{bottom:120.760013pt;}
.y23{bottom:125.007667pt;}
.y4e{bottom:126.226368pt;}
.y22{bottom:145.015205pt;}
.y4d{bottom:146.233906pt;}
.y21{bottom:165.022744pt;}
.y4c{bottom:166.241445pt;}
.y88{bottom:175.800011pt;}
.y20{bottom:185.030282pt;}
.y4b{bottom:186.248983pt;}
.y7c{bottom:201.432492pt;}
.y1f{bottom:205.037821pt;}
.y4a{bottom:206.256521pt;}
.y1e{bottom:225.045359pt;}
.y49{bottom:226.264060pt;}
.y1d{bottom:245.052897pt;}
.y48{bottom:246.271598pt;}
.y8a{bottom:246.840008pt;}
.y1c{bottom:265.060436pt;}
.y47{bottom:266.279136pt;}
.y7d{bottom:272.735465pt;}
.y1b{bottom:285.067974pt;}
.y46{bottom:286.286675pt;}
.y1a{bottom:305.075512pt;}
.y45{bottom:306.294213pt;}
.y60{bottom:308.115400pt;}
.y19{bottom:325.083051pt;}
.y44{bottom:326.301752pt;}
.y5f{bottom:328.122939pt;}
.y18{bottom:345.090589pt;}
.y43{bottom:346.309290pt;}
.y5e{bottom:348.130477pt;}
.y17{bottom:365.098128pt;}
.y42{bottom:366.316828pt;}
.y5d{bottom:368.138015pt;}
.y16{bottom:385.105666pt;}
.y41{bottom:386.324367pt;}
.y5c{bottom:388.145554pt;}
.y15{bottom:405.113204pt;}
.y40{bottom:406.331905pt;}
.y5b{bottom:408.153092pt;}
.y14{bottom:425.120743pt;}
.y3f{bottom:426.339443pt;}
.y5a{bottom:428.160630pt;}
.y13{bottom:445.128281pt;}
.y3e{bottom:446.346982pt;}
.y59{bottom:448.168169pt;}
.y12{bottom:465.135819pt;}
.y3d{bottom:466.354520pt;}
.y58{bottom:468.175707pt;}
.y11{bottom:485.143358pt;}
.y3c{bottom:486.362058pt;}
.y57{bottom:488.183246pt;}
.y10{bottom:505.150896pt;}
.y3b{bottom:506.369597pt;}
.y56{bottom:508.190784pt;}
.yf{bottom:525.158434pt;}
.y3a{bottom:526.377135pt;}
.y55{bottom:528.198322pt;}
.ye{bottom:545.165973pt;}
.y39{bottom:546.384674pt;}
.y54{bottom:548.205861pt;}
.yd{bottom:565.173511pt;}
.y38{bottom:566.392212pt;}
.y75{bottom:583.936964pt;}
.yc{bottom:585.181050pt;}
.y37{bottom:586.399750pt;}
.yb{bottom:605.188588pt;}
.y36{bottom:606.407289pt;}
.y74{bottom:625.014241pt;}
.ya{bottom:625.196126pt;}
.y35{bottom:626.414827pt;}
.y73{bottom:645.021780pt;}
.y9{bottom:645.203665pt;}
.y34{bottom:646.422365pt;}
.y72{bottom:665.029318pt;}
.y8{bottom:665.211203pt;}
.y33{bottom:666.429904pt;}
.y71{bottom:685.036857pt;}
.y7{bottom:685.218741pt;}
.y32{bottom:686.437442pt;}
.y70{bottom:705.044395pt;}
.y6{bottom:705.226280pt;}
.y31{bottom:706.444980pt;}
.y6f{bottom:725.051933pt;}
.y5{bottom:725.233818pt;}
.y30{bottom:726.452519pt;}
.y6e{bottom:745.059472pt;}
.y4{bottom:745.241356pt;}
.y2f{bottom:746.460057pt;}
.y6d{bottom:765.067010pt;}
.y3{bottom:765.248895pt;}
.y2e{bottom:766.467596pt;}
.y6c{bottom:785.074548pt;}
.y2{bottom:785.256433pt;}
.y2d{bottom:786.475134pt;}
.y6b{bottom:805.082087pt;}
.y2c{bottom:806.482672pt;}
.y53{bottom:824.880478pt;}
.y6a{bottom:825.089625pt;}
.y2b{bottom:826.490211pt;}
.y69{bottom:845.097164pt;}
.y2a{bottom:846.497749pt;}
.y52{bottom:846.888770pt;}
.y68{bottom:865.104702pt;}
.y29{bottom:866.505287pt;}
.y67{bottom:885.112240pt;}
.y28{bottom:886.512826pt;}
.y66{bottom:905.119779pt;}
.y27{bottom:906.520364pt;}
.y65{bottom:925.127317pt;}
.y26{bottom:926.527903pt;}
.y64{bottom:945.134855pt;}
.y25{bottom:946.535441pt;}
.y63{bottom:965.142394pt;}
.y62{bottom:985.149932pt;}
.y61{bottom:1005.157470pt;}
.y51{bottom:1020.357572pt;}
.y50{bottom:1046.367372pt;}
.ha{height:8.000000pt;}
.h6{height:11.520000pt;}
.h8{height:11.840000pt;}
.hb{height:13.363363pt;}
.he{height:17.279999pt;}
.h7{height:20.223249pt;}
.hd{height:21.499714pt;}
.hf{height:30.365533pt;}
.h10{height:30.401167pt;}
.h9{height:43.365499pt;}
.hc{height:47.679998pt;}
.h3{height:47.750951pt;}
.h5{height:53.011974pt;}
.h4{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w5{width:27.519999pt;}
.w7{width:40.959998pt;}
.w4{width:55.359998pt;}
.w3{width:58.559998pt;}
.w2{width:58.879998pt;}
.w6{width:178.239993pt;}
.w8{width:196.479992pt;}
.w9{width:246.079990pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:38.713202pt;}
.x5{left:40.838944pt;}
.x8{left:43.578148pt;}
.x9{left:45.245237pt;}
.xb{left:106.239996pt;}
.xc{left:112.959995pt;}
.x4{left:193.896671pt;}
.x3{left:201.930948pt;}
.x1{left:417.098303pt;}
.xa{left:440.959982pt;}
.x7{left:549.759977pt;}
.x6{left:551.359977pt;}
}




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