
    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_c9de3301d89cbac661a9e2d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_32d88ee5a558f86caa73360d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.970703;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_5df34466cf15de497d4b8b8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c422e2004db8b46d411f4394.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_9c1494ed30bd6ac8f471898e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.032107px;}
.ls1{letter-spacing:0.297702px;}
.ls2{letter-spacing:0.486934px;}
.ls7{letter-spacing:14.080813px;}
.ls6{letter-spacing:35.680894px;}
.ls5{letter-spacing:36.400777px;}
.ls0{letter-spacing:69.401583px;}
.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;}
}
.ws0{word-spacing:-14.041913px;}
.ws2{word-spacing:-11.334938px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.834537px;}
._0{width:1.081689px;}
._1b{width:2.089937px;}
._5{width:3.116832px;}
._6{width:4.474417px;}
._b{width:6.227116px;}
._16{width:7.853218px;}
._14{width:8.987702px;}
._15{width:10.060224px;}
._12{width:11.279445px;}
._13{width:12.582305px;}
._2b{width:14.126880px;}
._9{width:15.680395px;}
._a{width:17.565970px;}
._e{width:19.266567px;}
._f{width:20.632270px;}
._18{width:22.601209px;}
._7{width:23.660566px;}
._8{width:25.401071px;}
._17{width:27.250931px;}
._3{width:28.290817px;}
._4{width:29.356686px;}
._1e{width:30.452487px;}
._19{width:31.735786px;}
._1a{width:32.737369px;}
._c{width:33.831102px;}
._d{width:35.049677px;}
._22{width:36.204999px;}
._2{width:37.608095px;}
._11{width:39.036956px;}
._10{width:40.094327px;}
._1c{width:44.906754px;}
._1d{width:46.786834px;}
._21{width:49.081969px;}
._20{width:50.307219px;}
._1f{width:51.365848px;}
._23{width:52.834763px;}
._27{width:57.656000px;}
._26{width:59.200324px;}
._2a{width:60.345277px;}
._24{width:62.636550px;}
._25{width:63.911039px;}
._2c{width:107.615721px;}
._29{width:109.722195px;}
._28{width:110.841183px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:45.339750px;}
.fs3{font-size:50.753700px;}
.fs2{font-size:56.167650px;}
.fs1{font-size:62.257950px;}
.fs0{font-size:135.343350px;}
.yb0{bottom:-9.180003px;}
.y0{bottom:0.000000px;}
.y54{bottom:127.440033px;}
.y53{bottom:143.460022px;}
.y52{bottom:156.779983px;}
.y7b{bottom:179.820030px;}
.y7a{bottom:196.740006px;}
.y30{bottom:202.500000px;}
.yab{bottom:204.840019px;}
.y79{bottom:213.659981px;}
.yaa{bottom:217.620002px;}
.y2f{bottom:219.419975px;}
.y78{bottom:230.580025px;}
.y2e{bottom:236.340019px;}
.y77{bottom:247.679970px;}
.y2d{bottom:253.440033px;}
.y76{bottom:264.600013px;}
.y2c{bottom:270.360008px;}
.ya9{bottom:272.340019px;}
.y75{bottom:281.519989px;}
.y2b{bottom:287.279983px;}
.ya8{bottom:287.820030px;}
.y74{bottom:298.440033px;}
.ya7{bottom:303.120002px;}
.y2a{bottom:304.200027px;}
.y73{bottom:315.360008px;}
.y29{bottom:321.120002px;}
.ya6{bottom:324.360008px;}
.y72{bottom:332.279983px;}
.y28{bottom:338.039977px;}
.y71{bottom:349.379998px;}
.ya5{bottom:352.440033px;}
.y27{bottom:355.139992px;}
.y51{bottom:358.379998px;}
.y70{bottom:366.299973px;}
.ya4{bottom:369.360008px;}
.y26{bottom:372.059967px;}
.y50{bottom:375.299973px;}
.y6f{bottom:383.220017px;}
.ya3{bottom:386.279983px;}
.y25{bottom:388.980011px;}
.y4f{bottom:392.220017px;}
.y6e{bottom:400.139992px;}
.ya2{bottom:403.200027px;}
.y24{bottom:405.899986px;}
.y4e{bottom:409.139992px;}
.y6d{bottom:417.059967px;}
.ya1{bottom:420.120002px;}
.y23{bottom:422.820030px;}
.y4d{bottom:426.059967px;}
.y6c{bottom:433.980011px;}
.ya0{bottom:437.039977px;}
.y22{bottom:439.740006px;}
.y4c{bottom:442.980011px;}
.y6b{bottom:451.080025px;}
.y9f{bottom:454.139992px;}
.y21{bottom:456.840019px;}
.y4b{bottom:460.080025px;}
.y6a{bottom:468.000000px;}
.y9e{bottom:471.059967px;}
.y20{bottom:473.759994px;}
.y4a{bottom:477.000000px;}
.y69{bottom:484.919975px;}
.y9d{bottom:487.980011px;}
.y1f{bottom:490.679970px;}
.y49{bottom:493.919975px;}
.y68{bottom:501.840019px;}
.y9c{bottom:504.899986px;}
.y1e{bottom:507.600013px;}
.y48{bottom:510.840019px;}
.y67{bottom:518.759994px;}
.y9b{bottom:521.820030px;}
.y1d{bottom:524.519989px;}
.y47{bottom:527.759994px;}
.y66{bottom:535.679970px;}
.y9a{bottom:538.740006px;}
.y1c{bottom:541.440033px;}
.y46{bottom:544.679970px;}
.y65{bottom:552.779983px;}
.y99{bottom:555.840019px;}
.y1b{bottom:558.539977px;}
.y45{bottom:561.779983px;}
.y64{bottom:569.700027px;}
.y98{bottom:572.759994px;}
.y1a{bottom:575.460022px;}
.y44{bottom:578.700027px;}
.y63{bottom:586.620002px;}
.y97{bottom:589.679970px;}
.y19{bottom:592.379998px;}
.y43{bottom:595.620002px;}
.y62{bottom:603.539977px;}
.y96{bottom:606.600013px;}
.y18{bottom:609.299973px;}
.y42{bottom:612.540012px;}
.y61{bottom:620.459988px;}
.y95{bottom:623.519989px;}
.y17{bottom:626.220017px;}
.y41{bottom:629.459988px;}
.y60{bottom:637.379998px;}
.y94{bottom:640.439999px;}
.y16{bottom:643.139992px;}
.y40{bottom:646.379998px;}
.y5f{bottom:654.480011px;}
.y93{bottom:657.540012px;}
.y15{bottom:660.240006px;}
.y3f{bottom:663.480011px;}
.y5e{bottom:671.399986px;}
.y92{bottom:674.459988px;}
.y14{bottom:677.160015px;}
.y3e{bottom:680.399986px;}
.y5d{bottom:688.319995px;}
.y91{bottom:691.379998px;}
.y13{bottom:694.079990px;}
.y3d{bottom:697.319995px;}
.y5c{bottom:705.240006px;}
.y90{bottom:708.300007px;}
.y12{bottom:711.000000px;}
.y3c{bottom:714.240006px;}
.y5b{bottom:722.160015px;}
.y8f{bottom:725.220017px;}
.y11{bottom:727.920010px;}
.y3b{bottom:731.160015px;}
.y5a{bottom:739.079990px;}
.y8e{bottom:742.139992px;}
.y10{bottom:744.839985px;}
.y3a{bottom:748.079990px;}
.y59{bottom:756.180004px;}
.y8d{bottom:759.240006px;}
.yf{bottom:761.939999px;}
.y39{bottom:765.180004px;}
.y58{bottom:773.100013px;}
.y8c{bottom:776.160015px;}
.ye{bottom:778.860008px;}
.y38{bottom:782.100013px;}
.y8b{bottom:793.079990px;}
.yd{bottom:795.779983px;}
.yaf{bottom:796.860008px;}
.y37{bottom:799.019989px;}
.yae{bottom:803.879998px;}
.y8a{bottom:810.000000px;}
.yc{bottom:812.699993px;}
.y36{bottom:815.939999px;}
.yce{bottom:819.540012px;}
.yad{bottom:820.079990px;}
.y89{bottom:826.920010px;}
.yb{bottom:829.620002px;}
.y35{bottom:832.860008px;}
.yac{bottom:833.220017px;}
.ycd{bottom:838.800007px;}
.y88{bottom:843.839985px;}
.y34{bottom:849.779983px;}
.ya{bottom:851.939999px;}
.yc3{bottom:855.180004px;}
.y87{bottom:860.939999px;}
.y33{bottom:866.879998px;}
.yc2{bottom:867.779983px;}
.y86{bottom:877.860008px;}
.ycc{bottom:880.560001px;}
.y32{bottom:883.800007px;}
.yc1{bottom:884.160015px;}
.y9{bottom:887.579990px;}
.ycb{bottom:893.160015px;}
.y85{bottom:894.779983px;}
.yc0{bottom:896.759994px;}
.y31{bottom:900.719999px;}
.y8{bottom:902.340002px;}
.ybf{bottom:909.539995px;}
.y84{bottom:911.699993px;}
.y7{bottom:917.280001px;}
.yca{bottom:922.139992px;}
.ybe{bottom:925.560001px;}
.y83{bottom:928.620002px;}
.y6{bottom:933.479994px;}
.yc9{bottom:934.919992px;}
.ybd{bottom:938.340002px;}
.y82{bottom:945.539995px;}
.y5{bottom:949.680004px;}
.yc8{bottom:951.120002px;}
.ybc{bottom:954.539995px;}
.y81{bottom:962.639992px;}
.yc7{bottom:963.719999px;}
.y4{bottom:965.879998px;}
.ybb{bottom:967.319996px;}
.yc6{bottom:976.500000px;}
.y80{bottom:979.560001px;}
.yba{bottom:980.099997px;}
.y3{bottom:985.319996px;}
.yb9{bottom:992.699993px;}
.y7f{bottom:996.479994px;}
.yb8{bottom:1005.479994px;}
.y7e{bottom:1013.400003px;}
.yb7{bottom:1018.080008px;}
.y7d{bottom:1030.319996px;}
.yc5{bottom:1030.860008px;}
.yb6{bottom:1034.460004px;}
.y2{bottom:1041.120002px;}
.yb5{bottom:1047.060001px;}
.y7c{bottom:1047.239997px;}
.yb4{bottom:1059.840002px;}
.y57{bottom:1064.340002px;}
.yc4{bottom:1072.620002px;}
.yb3{bottom:1076.040003px;}
.y1{bottom:1080.000000px;}
.y56{bottom:1081.260003px;}
.yb2{bottom:1088.819996px;}
.y55{bottom:1098.180004px;}
.yb1{bottom:1101.599997px;}
.ha{height:3.419975px;}
.h9{height:31.658126px;}
.h8{height:33.008578px;}
.hb{height:33.141409px;}
.h4{height:36.776607px;}
.h3{height:39.218623px;}
.h7{height:39.630007px;}
.h5{height:40.891585px;}
.h6{height:41.056139px;}
.h2{height:43.471127px;}
.h1{height:94.502437px;}
.h0{height:1188.000000px;}
.w1{width:6.479994px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:90.540003px;}
.x13{left:108.000000px;}
.x8{left:109.980002px;}
.x16{left:115.920001px;}
.x1{left:159.659998px;}
.x14{left:192.240006px;}
.xa{left:196.379998px;}
.x15{left:268.560001px;}
.x5{left:297.899987px;}
.x2{left:307.620002px;}
.x4{left:311.220017px;}
.x3{left:330.839985px;}
.x6{left:355.319996px;}
.x12{left:422.459988px;}
.x7{left:459.180005px;}
.xb{left:471.959988px;}
.x10{left:492.300007px;}
.x11{left:497.339985px;}
.xd{left:519.300007px;}
.xf{left:592.379998px;}
.xe{left:613.620002px;}
.xc{left:783.539978px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.028539pt;}
.ls1{letter-spacing:0.264624pt;}
.ls2{letter-spacing:0.432830pt;}
.ls7{letter-spacing:12.516278pt;}
.ls6{letter-spacing:31.716350pt;}
.ls5{letter-spacing:32.356246pt;}
.ls0{letter-spacing:61.690296pt;}
.ws0{word-spacing:-12.481700pt;}
.ws2{word-spacing:-10.075500pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-1.630700pt;}
._0{width:0.961502pt;}
._1b{width:1.857722pt;}
._5{width:2.770518pt;}
._6{width:3.977259pt;}
._b{width:5.535214pt;}
._16{width:6.980638pt;}
._14{width:7.989068pt;}
._15{width:8.942422pt;}
._12{width:10.026173pt;}
._13{width:11.184271pt;}
._2b{width:12.557226pt;}
._9{width:13.938129pt;}
._a{width:15.614196pt;}
._e{width:17.125838pt;}
._f{width:18.339795pt;}
._18{width:20.089964pt;}
._7{width:21.031614pt;}
._8{width:22.578730pt;}
._17{width:24.223049pt;}
._3{width:25.147393pt;}
._4{width:26.094832pt;}
._1e{width:27.068877pt;}
._19{width:28.209587pt;}
._1a{width:29.099884pt;}
._c{width:30.072091pt;}
._d{width:31.155268pt;}
._22{width:32.182221pt;}
._2{width:33.429418pt;}
._11{width:34.699516pt;}
._10{width:35.639402pt;}
._1c{width:39.917114pt;}
._1d{width:41.588297pt;}
._21{width:43.628417pt;}
._20{width:44.717528pt;}
._1f{width:45.658531pt;}
._23{width:46.964234pt;}
._27{width:51.249778pt;}
._26{width:52.622510pt;}
._2a{width:53.640246pt;}
._24{width:55.676933pt;}
._25{width:56.809813pt;}
._2c{width:95.658419pt;}
._29{width:97.530840pt;}
._28{width:98.525496pt;}
.fs4{font-size:40.302000pt;}
.fs3{font-size:45.114400pt;}
.fs2{font-size:49.926800pt;}
.fs1{font-size:55.340400pt;}
.fs0{font-size:120.305200pt;}
.yb0{bottom:-8.160003pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:113.280029pt;}
.y53{bottom:127.520020pt;}
.y52{bottom:139.359985pt;}
.y7b{bottom:159.840027pt;}
.y7a{bottom:174.880005pt;}
.y30{bottom:180.000000pt;}
.yab{bottom:182.080017pt;}
.y79{bottom:189.919983pt;}
.yaa{bottom:193.440002pt;}
.y2f{bottom:195.039978pt;}
.y78{bottom:204.960022pt;}
.y2e{bottom:210.080017pt;}
.y77{bottom:220.159973pt;}
.y2d{bottom:225.280029pt;}
.y76{bottom:235.200012pt;}
.y2c{bottom:240.320007pt;}
.ya9{bottom:242.080017pt;}
.y75{bottom:250.239990pt;}
.y2b{bottom:255.359985pt;}
.ya8{bottom:255.840027pt;}
.y74{bottom:265.280029pt;}
.ya7{bottom:269.440002pt;}
.y2a{bottom:270.400024pt;}
.y73{bottom:280.320007pt;}
.y29{bottom:285.440002pt;}
.ya6{bottom:288.320007pt;}
.y72{bottom:295.359985pt;}
.y28{bottom:300.479980pt;}
.y71{bottom:310.559998pt;}
.ya5{bottom:313.280029pt;}
.y27{bottom:315.679993pt;}
.y51{bottom:318.559998pt;}
.y70{bottom:325.599976pt;}
.ya4{bottom:328.320007pt;}
.y26{bottom:330.719971pt;}
.y50{bottom:333.599976pt;}
.y6f{bottom:340.640015pt;}
.ya3{bottom:343.359985pt;}
.y25{bottom:345.760010pt;}
.y4f{bottom:348.640015pt;}
.y6e{bottom:355.679993pt;}
.ya2{bottom:358.400024pt;}
.y24{bottom:360.799988pt;}
.y4e{bottom:363.679993pt;}
.y6d{bottom:370.719971pt;}
.ya1{bottom:373.440002pt;}
.y23{bottom:375.840027pt;}
.y4d{bottom:378.719971pt;}
.y6c{bottom:385.760010pt;}
.ya0{bottom:388.479980pt;}
.y22{bottom:390.880005pt;}
.y4c{bottom:393.760010pt;}
.y6b{bottom:400.960022pt;}
.y9f{bottom:403.679993pt;}
.y21{bottom:406.080017pt;}
.y4b{bottom:408.960022pt;}
.y6a{bottom:416.000000pt;}
.y9e{bottom:418.719971pt;}
.y20{bottom:421.119995pt;}
.y4a{bottom:424.000000pt;}
.y69{bottom:431.039978pt;}
.y9d{bottom:433.760010pt;}
.y1f{bottom:436.159973pt;}
.y49{bottom:439.039978pt;}
.y68{bottom:446.080017pt;}
.y9c{bottom:448.799988pt;}
.y1e{bottom:451.200012pt;}
.y48{bottom:454.080017pt;}
.y67{bottom:461.119995pt;}
.y9b{bottom:463.840027pt;}
.y1d{bottom:466.239990pt;}
.y47{bottom:469.119995pt;}
.y66{bottom:476.159973pt;}
.y9a{bottom:478.880005pt;}
.y1c{bottom:481.280029pt;}
.y46{bottom:484.159973pt;}
.y65{bottom:491.359985pt;}
.y99{bottom:494.080017pt;}
.y1b{bottom:496.479980pt;}
.y45{bottom:499.359985pt;}
.y64{bottom:506.400024pt;}
.y98{bottom:509.119995pt;}
.y1a{bottom:511.520020pt;}
.y44{bottom:514.400024pt;}
.y63{bottom:521.440002pt;}
.y97{bottom:524.159973pt;}
.y19{bottom:526.559998pt;}
.y43{bottom:529.440002pt;}
.y62{bottom:536.479980pt;}
.y96{bottom:539.200012pt;}
.y18{bottom:541.599976pt;}
.y42{bottom:544.480011pt;}
.y61{bottom:551.519989pt;}
.y95{bottom:554.239990pt;}
.y17{bottom:556.640015pt;}
.y41{bottom:559.519989pt;}
.y60{bottom:566.559998pt;}
.y94{bottom:569.279999pt;}
.y16{bottom:571.679993pt;}
.y40{bottom:574.559998pt;}
.y5f{bottom:581.760010pt;}
.y93{bottom:584.480011pt;}
.y15{bottom:586.880005pt;}
.y3f{bottom:589.760010pt;}
.y5e{bottom:596.799988pt;}
.y92{bottom:599.519989pt;}
.y14{bottom:601.920013pt;}
.y3e{bottom:604.799988pt;}
.y5d{bottom:611.839996pt;}
.y91{bottom:614.559998pt;}
.y13{bottom:616.959991pt;}
.y3d{bottom:619.839996pt;}
.y5c{bottom:626.880005pt;}
.y90{bottom:629.600006pt;}
.y12{bottom:632.000000pt;}
.y3c{bottom:634.880005pt;}
.y5b{bottom:641.920013pt;}
.y8f{bottom:644.640015pt;}
.y11{bottom:647.040009pt;}
.y3b{bottom:649.920013pt;}
.y5a{bottom:656.959991pt;}
.y8e{bottom:659.679993pt;}
.y10{bottom:662.079987pt;}
.y3a{bottom:664.959991pt;}
.y59{bottom:672.160004pt;}
.y8d{bottom:674.880005pt;}
.yf{bottom:677.279999pt;}
.y39{bottom:680.160004pt;}
.y58{bottom:687.200012pt;}
.y8c{bottom:689.920013pt;}
.ye{bottom:692.320007pt;}
.y38{bottom:695.200012pt;}
.y8b{bottom:704.959991pt;}
.yd{bottom:707.359985pt;}
.yaf{bottom:708.320007pt;}
.y37{bottom:710.239990pt;}
.yae{bottom:714.559998pt;}
.y8a{bottom:720.000000pt;}
.yc{bottom:722.399994pt;}
.y36{bottom:725.279999pt;}
.yce{bottom:728.480011pt;}
.yad{bottom:728.959991pt;}
.y89{bottom:735.040009pt;}
.yb{bottom:737.440002pt;}
.y35{bottom:740.320007pt;}
.yac{bottom:740.640015pt;}
.ycd{bottom:745.600006pt;}
.y88{bottom:750.079987pt;}
.y34{bottom:755.359985pt;}
.ya{bottom:757.279999pt;}
.yc3{bottom:760.160004pt;}
.y87{bottom:765.279999pt;}
.y33{bottom:770.559998pt;}
.yc2{bottom:771.359985pt;}
.y86{bottom:780.320007pt;}
.ycc{bottom:782.720001pt;}
.y32{bottom:785.600006pt;}
.yc1{bottom:785.920013pt;}
.y9{bottom:788.959991pt;}
.ycb{bottom:793.920013pt;}
.y85{bottom:795.359985pt;}
.yc0{bottom:797.119995pt;}
.y31{bottom:800.639999pt;}
.y8{bottom:802.080002pt;}
.ybf{bottom:808.479996pt;}
.y84{bottom:810.399994pt;}
.y7{bottom:815.360001pt;}
.yca{bottom:819.679993pt;}
.ybe{bottom:822.720001pt;}
.y83{bottom:825.440002pt;}
.y6{bottom:829.759995pt;}
.yc9{bottom:831.039993pt;}
.ybd{bottom:834.080002pt;}
.y82{bottom:840.479996pt;}
.y5{bottom:844.160004pt;}
.yc8{bottom:845.440002pt;}
.ybc{bottom:848.479996pt;}
.y81{bottom:855.679993pt;}
.yc7{bottom:856.639999pt;}
.y4{bottom:858.559998pt;}
.ybb{bottom:859.839996pt;}
.yc6{bottom:868.000000pt;}
.y80{bottom:870.720001pt;}
.yba{bottom:871.199997pt;}
.y3{bottom:875.839996pt;}
.yb9{bottom:882.399994pt;}
.y7f{bottom:885.759995pt;}
.yb8{bottom:893.759995pt;}
.y7e{bottom:900.800003pt;}
.yb7{bottom:904.960007pt;}
.y7d{bottom:915.839996pt;}
.yc5{bottom:916.320007pt;}
.yb6{bottom:919.520004pt;}
.y2{bottom:925.440002pt;}
.yb5{bottom:930.720001pt;}
.y7c{bottom:930.879997pt;}
.yb4{bottom:942.080002pt;}
.y57{bottom:946.080002pt;}
.yc4{bottom:953.440002pt;}
.yb3{bottom:956.480003pt;}
.y1{bottom:960.000000pt;}
.y56{bottom:961.120003pt;}
.yb2{bottom:967.839996pt;}
.y55{bottom:976.160004pt;}
.yb1{bottom:979.199997pt;}
.ha{height:3.039978pt;}
.h9{height:28.140557pt;}
.h8{height:29.340958pt;}
.hb{height:29.459030pt;}
.h4{height:32.690317pt;}
.h3{height:34.860998pt;}
.h7{height:35.226673pt;}
.h5{height:36.348076pt;}
.h6{height:36.494346pt;}
.h2{height:38.641002pt;}
.h1{height:84.002166pt;}
.h0{height:1056.000000pt;}
.w1{width:5.759995pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:80.480003pt;}
.x13{left:96.000000pt;}
.x8{left:97.760002pt;}
.x16{left:103.040001pt;}
.x1{left:141.919998pt;}
.x14{left:170.880005pt;}
.xa{left:174.559998pt;}
.x15{left:238.720001pt;}
.x5{left:264.799988pt;}
.x2{left:273.440002pt;}
.x4{left:276.640015pt;}
.x3{left:294.079987pt;}
.x6{left:315.839996pt;}
.x12{left:375.519989pt;}
.x7{left:408.160004pt;}
.xb{left:419.519989pt;}
.x10{left:437.600006pt;}
.x11{left:442.079987pt;}
.xd{left:461.600006pt;}
.xf{left:526.559998pt;}
.xe{left:545.440002pt;}
.xc{left:696.479980pt;}
}




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