
    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_91bf222eba7fdab7919a5cbd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_fcf977cd3ce9ef1a4feff6b8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.926270;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_ad4193f734ccf99cbbaa0a6f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1c2a81ebdd64e6d69b9f169a.woff')format("woff");}.ff4{font-family:ff4;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);}
.v1{vertical-align:-1241.929165px;}
.v2{vertical-align:-87.600022px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001462px;}
.ls3{letter-spacing:0.001489px;}
.ls8{letter-spacing:0.056851px;}
.ls6{letter-spacing:0.093325px;}
.ls5{letter-spacing:0.102377px;}
.ls7{letter-spacing:0.116770px;}
.ls4{letter-spacing:0.123512px;}
.ls1{letter-spacing:3239.996179px;}
.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;}
}
.ws4{word-spacing:-58.668601px;}
.ws5{word-spacing:-43.212003px;}
.ws3{word-spacing:-33.240000px;}
.ws0{word-spacing:-23.268000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:67.588534px;}
.ws7{word-spacing:74.732165px;}
.ws6{word-spacing:267.905181px;}
._7{margin-left:-4239.105103px;}
._4{margin-left:-11.100000px;}
._0{margin-left:-7.920000px;}
._3{margin-left:-6.180000px;}
._2{margin-left:-4.620000px;}
._1{margin-left:-2.592000px;}
._6{width:1.597848px;}
._5{width:107.974983px;}
.fc6{color:rgb(255,0,128);}
.fc5{color:transparent;}
.fc1{color:rgb(0,151,167);}
.fc7{color:rgb(28,28,28);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(238,238,238);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fs2{font-size:84.000000px;}
.fse{font-size:90.000003px;}
.fs4{font-size:109.800004px;}
.fs8{font-size:120.000001px;}
.fsd{font-size:132.000007px;}
.fs1{font-size:144.000005px;}
.fs7{font-size:145.799996px;}
.fs5{font-size:156.000011px;}
.fs0{font-size:167.999999px;}
.fs9{font-size:211.800004px;}
.fsb{font-size:234.000007px;}
.fsc{font-size:276.000003px;}
.fs3{font-size:299.999998px;}
.fsa{font-size:624.000035px;}
.fs6{font-size:1500.000078px;}
.y0{bottom:0.000000px;}
.y8{bottom:15.156105px;}
.y5d{bottom:15.164977px;}
.y19{bottom:15.164981px;}
.y2c{bottom:15.164984px;}
.y6b{bottom:26.069989px;}
.y7{bottom:40.356106px;}
.y5c{bottom:40.364974px;}
.y1a{bottom:40.364978px;}
.y2b{bottom:40.364982px;}
.y69{bottom:47.069982px;}
.y67{bottom:64.694975px;}
.y6{bottom:65.556103px;}
.y5b{bottom:65.564973px;}
.y2a{bottom:65.564982px;}
.y6a{bottom:65.669987px;}
.y3a{bottom:71.558843px;}
.y2d{bottom:74.324975px;}
.y96{bottom:75.045061px;}
.y8b{bottom:76.245020px;}
.y18{bottom:82.802976px;}
.y68{bottom:86.669980px;}
.y5{bottom:90.756100px;}
.y5a{bottom:90.764972px;}
.y51{bottom:91.208188px;}
.y58{bottom:99.086986px;}
.y8a{bottom:103.245021px;}
.y66{bottom:104.294973px;}
.y39{bottom:112.958838px;}
.y17{bottom:115.742977px;}
.y4{bottom:115.956099px;}
.y59{bottom:115.964970px;}
.y95{bottom:120.585040px;}
.y4e{bottom:122.670789px;}
.y27{bottom:123.276135px;}
.y29{bottom:124.949977px;}
.y40{bottom:127.504701px;}
.y45{bottom:137.034182px;}
.y89{bottom:137.444999px;}
.y78{bottom:139.619978px;}
.y7c{bottom:146.219993px;}
.y16{bottom:148.682978px;}
.y94{bottom:166.125019px;}
.y3f{bottom:168.904696px;}
.y57{bottom:169.287011px;}
.y4d{bottom:169.470813px;}
.y32{bottom:170.198986px;}
.y88{bottom:171.645000px;}
.y26{bottom:173.577102px;}
.y28{bottom:175.574979px;}
.y74{bottom:177.196452px;}
.y15{bottom:181.622979px;}
.y7b{bottom:185.819994px;}
.y60{bottom:196.109998px;}
.y87{bottom:198.645001px;}
.y38{bottom:205.130694px;}
.y1e{bottom:206.085007px;}
.y3{bottom:206.475816px;}
.y44{bottom:210.105173px;}
.y93{bottom:211.664987px;}
.y4c{bottom:216.270814px;}
.y73{bottom:216.796450px;}
.y25{bottom:223.878081px;}
.y7a{bottom:225.419992px;}
.y86{bottom:225.645002px;}
.y14{bottom:229.562988px;}
.y56{bottom:239.487035px;}
.y37{bottom:246.530688px;}
.y50{bottom:246.984525px;}
.y2{bottom:249.675817px;}
.y92{bottom:257.205011px;}
.y31{bottom:258.269985px;}
.y85{bottom:259.844992px;}
.y13{bottom:262.502989px;}
.y4b{bottom:263.070816px;}
.y79{bottom:265.019990px;}
.y3e{bottom:270.794583px;}
.y24{bottom:274.179049px;}
.y1d{bottom:276.284998px;}
.y71{bottom:277.095000px;}
.y5f{bottom:278.909989px;}
.y43{bottom:283.176175px;}
.y1f{bottom:284.624990px;}
.y84{bottom:294.045004px;}
.y1{bottom:294.315823px;}
.y91{bottom:302.745012px;}
.y55{bottom:309.687071px;}
.y4a{bottom:309.870817px;}
.y12{bottom:310.442998px;}
.y3d{bottom:312.194578px;}
.y70{bottom:316.694994px;}
.y83{bottom:321.045005px;}
.y23{bottom:324.480028px;}
.y36{bottom:338.702567px;}
.y11{bottom:343.382999px;}
.y6d{bottom:345.569988px;}
.y30{bottom:346.340995px;}
.y1c{bottom:346.485000px;}
.y82{bottom:348.045006px;}
.y42{bottom:356.247178px;}
.y6f{bottom:356.294996px;}
.y49{bottom:356.670830px;}
.y90{bottom:357.285002px;}
.ya{bottom:359.249974px;}
.y5e{bottom:361.709984px;}
.y22{bottom:374.781019px;}
.y10{bottom:376.323000px;}
.y54{bottom:379.887051px;}
.y35{bottom:380.102561px;}
.y81{bottom:382.244985px;}
.y6c{bottom:385.169986px;}
.y6e{bottom:395.894992px;}
.y4f{bottom:402.760851px;}
.y8f{bottom:402.825004px;}
.y48{bottom:403.470825px;}
.yf{bottom:409.263001px;}
.y3c{bottom:414.084454px;}
.y80{bottom:416.444997px;}
.y1b{bottom:416.684991px;}
.y2f{bottom:423.702005px;}
.y21{bottom:425.082009px;}
.y41{bottom:429.318163px;}
.y7f{bottom:443.445005px;}
.y72{bottom:444.686925px;}
.y8e{bottom:448.365000px;}
.y9{bottom:449.249977px;}
.y53{bottom:450.087042px;}
.y47{bottom:450.270822px;}
.y3b{bottom:455.484449px;}
.ye{bottom:457.202988px;}
.y65{bottom:458.069994px;}
.y34{bottom:472.274411px;}
.y2e{bottom:472.292996px;}
.y7e{bottom:477.644999px;}
.y77{bottom:484.770002px;}
.yd{bottom:490.142989px;}
.y20{bottom:490.383001px;}
.y8d{bottom:493.904996px;}
.y46{bottom:497.070823px;}
.y62{bottom:505.319996px;}
.y33{bottom:513.674405px;}
.y64{bottom:519.569997px;}
.y52{bottom:520.287040px;}
.y76{bottom:524.369998px;}
.y7d{bottom:536.564997px;}
.yc{bottom:538.082998px;}
.y8c{bottom:539.444997px;}
.y61{bottom:544.919994px;}
.y63{bottom:559.169995px;}
.y75{bottom:563.969994px;}
.yb{bottom:571.022999px;}
.h3{height:61.195312px;}
.h11{height:65.566408px;}
.h5{height:79.991018px;}
.h9{height:87.363282px;}
.h10{height:87.421876px;}
.hf{height:96.164068px;}
.h2{height:104.906253px;}
.h8{height:106.217575px;}
.h6{height:113.648446px;}
.h1{height:122.390625px;}
.hb{height:154.196194px;}
.ha{height:154.299612px;}
.hd{height:170.472662px;}
.he{height:200.935549px;}
.h4{height:218.554686px;}
.hc{height:454.593775px;}
.h0{height:607.500000px;}
.h7{height:1092.773494px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xe{left:10.125000px;}
.x2a{left:15.607178px;}
.x2c{left:18.834962px;}
.x2d{left:20.477417px;}
.x39{left:23.849637px;}
.x3a{left:34.861114px;}
.x16{left:36.587427px;}
.x28{left:44.857179px;}
.x49{left:46.939963px;}
.x2b{left:48.099245px;}
.x20{left:51.431984px;}
.x1d{left:53.323820px;}
.x13{left:55.853528px;}
.x17{left:59.094463px;}
.xf{left:63.380905px;}
.x1b{left:66.823821px;}
.x31{left:73.515011px;}
.x23{left:74.805122px;}
.x29{left:88.775024px;}
.x2{left:92.109394px;}
.x21{left:96.763824px;}
.x46{left:101.243385px;}
.x48{left:103.941859px;}
.x47{left:105.794558px;}
.x1f{left:113.425611px;}
.x22{left:121.762907px;}
.x9{left:125.240342px;}
.xa{left:139.850538px;}
.x1a{left:148.553330px;}
.x18{left:151.409986px;}
.x19{left:152.948199px;}
.x1e{left:154.573835px;}
.x27{left:191.235719px;}
.x3f{left:229.832328px;}
.x24{left:232.250655px;}
.x37{left:323.614822px;}
.x30{left:342.500854px;}
.x1c{left:345.823841px;}
.x38{left:352.001391px;}
.x26{left:357.924848px;}
.x2f{left:371.270892px;}
.x1{left:392.989749px;}
.x2e{left:394.212815px;}
.x25{left:396.921916px;}
.x32{left:398.348180px;}
.x33{left:415.747442px;}
.x3{left:430.927765px;}
.x14{left:435.392606px;}
.x45{left:505.991929px;}
.xb{left:535.842805px;}
.xc{left:579.416351px;}
.x10{left:589.125056px;}
.x11{left:594.115476px;}
.x12{left:643.125058px;}
.x34{left:646.801378px;}
.x8{left:675.500827px;}
.x3d{left:742.815073px;}
.x3b{left:750.169509px;}
.x3c{left:768.511204px;}
.x36{left:773.775766px;}
.x6{left:777.121208px;}
.x35{left:786.623857px;}
.x15{left:794.959330px;}
.x7{left:805.088490px;}
.x3e{left:817.124449px;}
.xd{left:820.106277px;}
.x44{left:822.126651px;}
.x43{left:829.464944px;}
.x42{left:841.402793px;}
.x4{left:851.727976px;}
.x41{left:866.861566px;}
.x40{left:883.382816px;}
.x5{left:889.092850px;}
@media print{
.v1{vertical-align:-1103.937035pt;}
.v2{vertical-align:-77.866686pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.001299pt;}
.ls3{letter-spacing:0.001323pt;}
.ls8{letter-spacing:0.050534pt;}
.ls6{letter-spacing:0.082956pt;}
.ls5{letter-spacing:0.091002pt;}
.ls7{letter-spacing:0.103796pt;}
.ls4{letter-spacing:0.109788pt;}
.ls1{letter-spacing:2879.996603pt;}
.ws4{word-spacing:-52.149868pt;}
.ws5{word-spacing:-38.410669pt;}
.ws3{word-spacing:-29.546667pt;}
.ws0{word-spacing:-20.682667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:60.078697pt;}
.ws7{word-spacing:66.428591pt;}
.ws6{word-spacing:238.137938pt;}
._7{margin-left:-3768.093425pt;}
._4{margin-left:-9.866667pt;}
._0{margin-left:-7.040000pt;}
._3{margin-left:-5.493333pt;}
._2{margin-left:-4.106667pt;}
._1{margin-left:-2.304000pt;}
._6{width:1.420309pt;}
._5{width:95.977763pt;}
.fs2{font-size:74.666666pt;}
.fse{font-size:80.000003pt;}
.fs4{font-size:97.600003pt;}
.fs8{font-size:106.666667pt;}
.fsd{font-size:117.333340pt;}
.fs1{font-size:128.000004pt;}
.fs7{font-size:129.599996pt;}
.fs5{font-size:138.666676pt;}
.fs0{font-size:149.333333pt;}
.fs9{font-size:188.266670pt;}
.fsb{font-size:208.000007pt;}
.fsc{font-size:245.333336pt;}
.fs3{font-size:266.666665pt;}
.fsa{font-size:554.666698pt;}
.fs6{font-size:1333.333403pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:13.472093pt;}
.y5d{bottom:13.479979pt;}
.y19{bottom:13.479983pt;}
.y2c{bottom:13.479986pt;}
.y6b{bottom:23.173323pt;}
.y7{bottom:35.872094pt;}
.y5c{bottom:35.879977pt;}
.y1a{bottom:35.879981pt;}
.y2b{bottom:35.879984pt;}
.y69{bottom:41.839984pt;}
.y67{bottom:57.506645pt;}
.y6{bottom:58.272092pt;}
.y5b{bottom:58.279976pt;}
.y2a{bottom:58.279984pt;}
.y6a{bottom:58.373322pt;}
.y3a{bottom:63.607861pt;}
.y2d{bottom:66.066645pt;}
.y96{bottom:66.706721pt;}
.y8b{bottom:67.773351pt;}
.y18{bottom:73.602645pt;}
.y68{bottom:77.039982pt;}
.y5{bottom:80.672089pt;}
.y5a{bottom:80.679975pt;}
.y51{bottom:81.073945pt;}
.y58{bottom:88.077321pt;}
.y8a{bottom:91.773352pt;}
.y66{bottom:92.706643pt;}
.y39{bottom:100.407856pt;}
.y17{bottom:102.882646pt;}
.y4{bottom:103.072088pt;}
.y59{bottom:103.079973pt;}
.y95{bottom:107.186702pt;}
.y4e{bottom:109.040701pt;}
.y27{bottom:109.578786pt;}
.y29{bottom:111.066646pt;}
.y40{bottom:113.337512pt;}
.y45{bottom:121.808162pt;}
.y89{bottom:122.173333pt;}
.y78{bottom:124.106647pt;}
.y7c{bottom:129.973327pt;}
.y16{bottom:132.162647pt;}
.y94{bottom:147.666683pt;}
.y3f{bottom:150.137508pt;}
.y57{bottom:150.477343pt;}
.y4d{bottom:150.640723pt;}
.y32{bottom:151.287988pt;}
.y88{bottom:152.573334pt;}
.y26{bottom:154.290758pt;}
.y28{bottom:156.066648pt;}
.y74{bottom:157.507958pt;}
.y15{bottom:161.442648pt;}
.y7b{bottom:165.173328pt;}
.y60{bottom:174.319998pt;}
.y87{bottom:176.573334pt;}
.y38{bottom:182.338395pt;}
.y1e{bottom:183.186673pt;}
.y3{bottom:183.534059pt;}
.y44{bottom:186.760154pt;}
.y93{bottom:188.146655pt;}
.y4c{bottom:192.240724pt;}
.y73{bottom:192.707956pt;}
.y25{bottom:199.002739pt;}
.y7a{bottom:200.373326pt;}
.y86{bottom:200.573335pt;}
.y14{bottom:204.055989pt;}
.y56{bottom:212.877365pt;}
.y37{bottom:219.138390pt;}
.y50{bottom:219.541800pt;}
.y2{bottom:221.934060pt;}
.y92{bottom:228.626676pt;}
.y31{bottom:229.573320pt;}
.y85{bottom:230.973326pt;}
.y13{bottom:233.335990pt;}
.y4b{bottom:233.840725pt;}
.y79{bottom:235.573324pt;}
.y3e{bottom:240.706296pt;}
.y24{bottom:243.714711pt;}
.y1d{bottom:245.586665pt;}
.y71{bottom:246.306667pt;}
.y5f{bottom:247.919991pt;}
.y43{bottom:251.712156pt;}
.y1f{bottom:252.999991pt;}
.y84{bottom:261.373337pt;}
.y1{bottom:261.614065pt;}
.y91{bottom:269.106677pt;}
.y55{bottom:275.277397pt;}
.y4a{bottom:275.440727pt;}
.y12{bottom:275.949332pt;}
.y3d{bottom:277.506292pt;}
.y70{bottom:281.506662pt;}
.y83{bottom:285.373338pt;}
.y23{bottom:288.426692pt;}
.y36{bottom:301.068948pt;}
.y11{bottom:305.229332pt;}
.y6d{bottom:307.173323pt;}
.y30{bottom:307.858663pt;}
.y1c{bottom:307.986667pt;}
.y82{bottom:309.373339pt;}
.y42{bottom:316.664158pt;}
.y6f{bottom:316.706663pt;}
.y49{bottom:317.040738pt;}
.y90{bottom:317.586669pt;}
.ya{bottom:319.333310pt;}
.y5e{bottom:321.519986pt;}
.y22{bottom:333.138683pt;}
.y10{bottom:334.509333pt;}
.y54{bottom:337.677379pt;}
.y35{bottom:337.868944pt;}
.y81{bottom:339.773320pt;}
.y6c{bottom:342.373321pt;}
.y6e{bottom:351.906660pt;}
.y4f{bottom:358.009645pt;}
.y8f{bottom:358.066670pt;}
.y48{bottom:358.640733pt;}
.yf{bottom:363.789334pt;}
.y3c{bottom:368.075070pt;}
.y80{bottom:370.173331pt;}
.y1b{bottom:370.386659pt;}
.y2f{bottom:376.624005pt;}
.y21{bottom:377.850675pt;}
.y41{bottom:381.616145pt;}
.y7f{bottom:394.173337pt;}
.y72{bottom:395.277266pt;}
.y8e{bottom:398.546666pt;}
.y9{bottom:399.333312pt;}
.y53{bottom:400.077371pt;}
.y47{bottom:400.240731pt;}
.y3b{bottom:404.875066pt;}
.ye{bottom:406.402656pt;}
.y65{bottom:407.173328pt;}
.y34{bottom:419.799476pt;}
.y2e{bottom:419.815996pt;}
.y7e{bottom:424.573332pt;}
.y77{bottom:430.906669pt;}
.yd{bottom:435.682657pt;}
.y20{bottom:435.896001pt;}
.y8d{bottom:439.026663pt;}
.y46{bottom:441.840732pt;}
.y62{bottom:449.173330pt;}
.y33{bottom:456.599471pt;}
.y64{bottom:461.839997pt;}
.y52{bottom:462.477369pt;}
.y76{bottom:466.106665pt;}
.y7d{bottom:476.946664pt;}
.yc{bottom:478.295998pt;}
.y8c{bottom:479.506664pt;}
.y61{bottom:484.373328pt;}
.y63{bottom:497.039996pt;}
.y75{bottom:501.306662pt;}
.yb{bottom:507.575999pt;}
.h3{height:54.395833pt;}
.h11{height:58.281252pt;}
.h5{height:71.103127pt;}
.h9{height:77.656251pt;}
.h10{height:77.708334pt;}
.hf{height:85.479171pt;}
.h2{height:93.250003pt;}
.h8{height:94.415622pt;}
.h6{height:101.020840pt;}
.h1{height:108.791666pt;}
.hb{height:137.063284pt;}
.ha{height:137.155211pt;}
.hd{height:151.531255pt;}
.he{height:178.609377pt;}
.h4{height:194.270832pt;}
.hc{height:404.083356pt;}
.h0{height:540.000000pt;}
.h7{height:971.354217pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.000000pt;}
.x2a{left:13.873047pt;}
.x2c{left:16.742189pt;}
.x2d{left:18.202149pt;}
.x39{left:21.199678pt;}
.x3a{left:30.987657pt;}
.x16{left:32.522157pt;}
.x28{left:39.873048pt;}
.x49{left:41.724411pt;}
.x2b{left:42.754884pt;}
.x20{left:45.717319pt;}
.x1d{left:47.398952pt;}
.x13{left:49.647581pt;}
.x17{left:52.528412pt;}
.xf{left:56.338582pt;}
.x1b{left:59.398952pt;}
.x31{left:65.346676pt;}
.x23{left:66.493442pt;}
.x29{left:78.911133pt;}
.x2{left:81.875017pt;}
.x21{left:86.012288pt;}
.x46{left:89.994120pt;}
.x48{left:92.392764pt;}
.x47{left:94.039607pt;}
.x1f{left:100.822765pt;}
.x22{left:108.233695pt;}
.x9{left:111.324749pt;}
.xa{left:124.311589pt;}
.x1a{left:132.047404pt;}
.x18{left:134.586654pt;}
.x19{left:135.953954pt;}
.x1e{left:137.398964pt;}
.x27{left:169.987305pt;}
.x3f{left:204.295403pt;}
.x24{left:206.445027pt;}
.x37{left:287.657619pt;}
.x30{left:304.445204pt;}
.x1c{left:307.398970pt;}
.x38{left:312.890125pt;}
.x26{left:318.155420pt;}
.x2f{left:330.018571pt;}
.x1{left:349.324221pt;}
.x2e{left:350.411391pt;}
.x25{left:352.819481pt;}
.x32{left:354.087271pt;}
.x33{left:369.553282pt;}
.x3{left:383.046902pt;}
.x14{left:387.015649pt;}
.x45{left:449.770603pt;}
.xb{left:476.304715pt;}
.xc{left:515.036756pt;}
.x10{left:523.666717pt;}
.x11{left:528.102645pt;}
.x12{left:571.666718pt;}
.x34{left:574.934558pt;}
.x8{left:600.445179pt;}
.x3d{left:660.280065pt;}
.x3b{left:666.817341pt;}
.x3c{left:683.121070pt;}
.x36{left:687.800681pt;}
.x6{left:690.774407pt;}
.x35{left:699.221206pt;}
.x15{left:706.630516pt;}
.x7{left:715.634213pt;}
.x3e{left:726.332843pt;}
.xd{left:728.983357pt;}
.x44{left:730.779245pt;}
.x43{left:737.302173pt;}
.x42{left:747.913594pt;}
.x4{left:757.091534pt;}
.x41{left:770.543615pt;}
.x40{left:785.229170pt;}
.x5{left:790.304755pt;}
}




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