
    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_82fd77943c2c655ea1f7334c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_29649ea424d326f0ab0c8b94.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_b00843304ccee3bc2347db35.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v1{vertical-align:-167.759933px;}
.v3{vertical-align:-71.279971px;}
.v5{vertical-align:-23.039991px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:100.799960px;}
.v2{vertical-align:106.559957px;}
.v6{vertical-align:129.599948px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.325370px;}
.ls2{letter-spacing:88.919964px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-191.753203px;}
.ws2{word-spacing:-120.095952px;}
.ws9{word-spacing:-110.087956px;}
.wsa{word-spacing:-90.071964px;}
.ws4{word-spacing:-80.063968px;}
.wsf{word-spacing:-66.653253px;}
.ws5{word-spacing:-60.047976px;}
.ws7{word-spacing:-53.442699px;}
.wsb{word-spacing:-46.637261px;}
.ws10{word-spacing:-40.031984px;}
.wse{word-spacing:-30.023988px;}
.ws15{word-spacing:-0.288144px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:8.408128px;}
.wsc{word-spacing:240.218803px;}
.ws3{word-spacing:245.845343px;}
.ws13{word-spacing:268.298461px;}
.ws11{word-spacing:294.219048px;}
.ws14{word-spacing:617.255684px;}
.ws8{word-spacing:881.999577px;}
.ws12{word-spacing:1320.479472px;}
.ws6{word-spacing:1457.857676px;}
._4{margin-left:-20.789294px;}
._8{margin-left:-13.080940px;}
._9{margin-left:-8.501531px;}
._0{margin-left:-5.368705px;}
._3{margin-left:-3.232286px;}
._1{margin-left:-1.723358px;}
._5{width:1.019580px;}
._2{width:2.038698px;}
._6{width:56.064444px;}
._7{width:57.152883px;}
._d{width:121.006486px;}
._e{width:145.164508px;}
._a{width:247.472100px;}
._12{width:341.168090px;}
._13{width:361.185615px;}
._c{width:375.728314px;}
._14{width:379.221607px;}
._10{width:559.199299px;}
._11{width:585.119887px;}
._b{width:613.199544px;}
._f{width:644.008602px;}
.fc6{color:rgb(255,218,28);}
.fc5{color:rgb(85,21,5);}
.fc3{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc7{color:rgb(166,166,166);}
.fc4{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:107.999957px;}
.fs1{font-size:143.999942px;}
.fs4{font-size:167.759933px;}
.fs8{font-size:192.239923px;}
.fs6{font-size:215.999914px;}
.fs0{font-size:239.759904px;}
.fsb{font-size:264.239894px;}
.fs5{font-size:287.999885px;}
.fsa{font-size:323.999870px;}
.fs9{font-size:395.999842px;}
.fs3{font-size:431.999827px;}
.fs2{font-size:689.759724px;}
.y3f{bottom:-68.939794px;}
.y6{bottom:-51.479801px;}
.y2e{bottom:-28.259810px;}
.y6d{bottom:-21.959813px;}
.y1c{bottom:-16.019815px;}
.y33{bottom:-9.719818px;}
.y26{bottom:-9.539818px;}
.y34{bottom:-7.379819px;}
.y5b{bottom:-5.039819px;}
.y4c{bottom:-3.959820px;}
.y12{bottom:-1.439821px;}
.y0{bottom:0.000000px;}
.y5d{bottom:2.340178px;}
.y62{bottom:7.920178px;}
.y5e{bottom:7.920181px;}
.y21{bottom:9.000237px;}
.y28{bottom:10.260182px;}
.y14{bottom:11.520179px;}
.y36{bottom:11.520182px;}
.y1e{bottom:11.520185px;}
.y4e{bottom:12.780180px;}
.y6f{bottom:12.780187px;}
.y30{bottom:14.040190px;}
.y8{bottom:16.020199px;}
.y41{bottom:22.860206px;}
.y67{bottom:130.200305px;}
.y18{bottom:135.600303px;}
.y72{bottom:151.980296px;}
.yc{bottom:165.300291px;}
.y23{bottom:169.080289px;}
.y66{bottom:173.400288px;}
.y17{bottom:200.400277px;}
.yb{bottom:208.500274px;}
.y65{bottom:216.600270px;}
.y55{bottom:223.800267px;}
.y76{bottom:232.080264px;}
.y58{bottom:233.340264px;}
.y22{bottom:234.600263px;}
.y60{bottom:247.560258px;}
.y42{bottom:247.740258px;}
.y7d{bottom:248.640258px;}
.ya{bottom:251.700256px;}
.y46{bottom:254.940255px;}
.y32{bottom:259.620253px;}
.y64{bottom:259.800253px;}
.y7f{bottom:264.840251px;}
.y16{bottom:265.200251px;}
.y69{bottom:271.500248px;}
.y49{bottom:274.560247px;}
.y71{bottom:275.280247px;}
.y7c{bottom:281.040245px;}
.y3e{bottom:287.700242px;}
.y5f{bottom:290.760241px;}
.y20{bottom:291.120000px;}
.y9{bottom:294.900239px;}
.y7e{bottom:297.240238px;}
.y50{bottom:298.320238px;}
.y54{bottom:303.000236px;}
.y68{bottom:303.900235px;}
.y57{bottom:305.340235px;}
.y38{bottom:306.960234px;}
.y45{bottom:316.680230px;}
.y2a{bottom:321.540228px;}
.y48{bottom:324.960227px;}
.y15{bottom:330.000225px;}
.ye{bottom:336.840222px;}
.y31{bottom:338.820221px;}
.y4a{bottom:343.500220px;}
.y70{bottom:352.320216px;}
.y40{bottom:354.480000px;}
.y78{bottom:356.640214px;}
.y1f{bottom:365.640211px;}
.y4f{bottom:370.320209px;}
.y37{bottom:371.760208px;}
.y7b{bottom:372.840208px;}
.y3d{bottom:375.000207px;}
.y47{bottom:375.360207px;}
.y56{bottom:377.340206px;}
.y7{bottom:378.780000px;}
.y29{bottom:379.140205px;}
.y3a{bottom:381.300204px;}
.y53{bottom:382.200204px;}
.y77{bottom:389.040201px;}
.y2f{bottom:403.980000px;}
.y7a{bottom:405.240195px;}
.y63{bottom:405.420195px;}
.y3c{bottom:407.400194px;}
.y6e{bottom:411.540000px;}
.y75{bottom:412.800192px;}
.y1d{bottom:418.740000px;}
.y79{bottom:421.440188px;}
.y35{bottom:425.040000px;}
.y27{bottom:426.480000px;}
.y39{bottom:428.640000px;}
.y4d{bottom:429.540000px;}
.y13{bottom:433.320000px;}
.y61{bottom:440.700000px;}
.y5{bottom:446.280000px;}
.y44{bottom:457.440174px;}
.y74{bottom:461.760172px;}
.y4{bottom:466.800170px;}
.y5a{bottom:484.440163px;}
.y3b{bottom:489.120161px;}
.y5c{bottom:491.820160px;}
.y52{bottom:492.720160px;}
.y25{bottom:494.340159px;}
.y6c{bottom:496.320158px;}
.y2b{bottom:497.400158px;}
.y73{bottom:504.960155px;}
.y43{bottom:507.840154px;}
.y11{bottom:509.640153px;}
.y51{bottom:517.920150px;}
.y59{bottom:527.640146px;}
.y3{bottom:538.800141px;}
.y1b{bottom:544.740139px;}
.y6b{bottom:565.440131px;}
.y10{bottom:574.440127px;}
.y1a{bottom:577.140126px;}
.y24{bottom:597.300118px;}
.y19{bottom:609.540113px;}
.y2{bottom:610.800113px;}
.yd{bottom:616.200111px;}
.y2d{bottom:617.460110px;}
.y4b{bottom:637.260102px;}
.y6a{bottom:638.700102px;}
.y1{bottom:682.800084px;}
.y2c{bottom:690.900081px;}
.yf{bottom:733.380064px;}
.h2{height:5.580000px;}
.ha{height:12.960000px;}
.h21{height:16.740000px;}
.h1b{height:17.640000px;}
.h12{height:19.800000px;}
.h1a{height:21.240000px;}
.h24{height:27.180000px;}
.he{height:27.540000px;}
.h1d{height:28.800000px;}
.h15{height:31.500000px;}
.h26{height:32.220000px;}
.hd{height:32.940000px;}
.h11{height:34.020000px;}
.h25{height:34.560000px;}
.h27{height:34.740000px;}
.h19{height:36.180000px;}
.h18{height:39.240000px;}
.h17{height:42.300000px;}
.hf{height:46.620000px;}
.h9{height:47.520000px;}
.h1f{height:50.220000px;}
.h3{height:67.500000px;}
.hb{height:77.308563px;}
.h1e{height:91.800000px;}
.h4{height:100.124960px;}
.h1c{height:112.640580px;}
.h23{height:150.187440px;}
.h1{height:166.708058px;}
.h7{height:174.968368px;}
.h10{height:200.500232px;}
.h8{height:225.281160px;}
.h28{height:242.240528px;}
.h20{height:250.062087px;}
.h16{height:275.593952px;}
.h22{height:275.768327px;}
.hc{height:331.841117px;}
.h14{height:337.921740px;}
.h13{height:413.015460px;}
.h6{height:450.562320px;}
.h5{height:719.397837px;}
.h0{height:892.500000px;}
.wd{width:122.040000px;}
.wa{width:215.460000px;}
.w7{width:218.700000px;}
.w4{width:223.020000px;}
.we{width:230.220000px;}
.w9{width:290.880000px;}
.wb{width:299.880000px;}
.w3{width:416.880000px;}
.w1{width:479.340000px;}
.w6{width:498.060000px;}
.w2{width:594.000000px;}
.wf{width:637.200000px;}
.w8{width:657.000000px;}
.wc{width:676.800000px;}
.w5{width:920.160000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.xc{left:102.765859px;}
.x28{left:140.385844px;}
.x35{left:217.246413px;}
.x27{left:219.766412px;}
.x1e{left:225.706410px;}
.x1a{left:226.785600px;}
.x1f{left:229.126408px;}
.x4{left:237.766405px;}
.x1b{left:251.266399px;}
.x1c{left:252.706399px;}
.x1d{left:254.146398px;}
.x19{left:256.126398px;}
.x1{left:259.906396px;}
.x18{left:264.226394px;}
.xd{left:275.566390px;}
.x44{left:279.346388px;}
.x26{left:282.766387px;}
.x15{left:284.206386px;}
.x2e{left:288.346385px;}
.x17{left:289.606384px;}
.x11{left:299.326380px;}
.x25{left:300.946380px;}
.x3{left:308.506377px;}
.x4c{left:310.306376px;}
.x23{left:317.145600px;}
.xe{left:326.146370px;}
.x29{left:328.126369px;}
.x4e{left:329.206368px;}
.x30{left:340.906364px;}
.x2f{left:342.166363px;}
.x33{left:348.465600px;}
.x14{left:350.446360px;}
.x3f{left:353.866358px;}
.x20{left:359.265600px;}
.x22{left:360.886356px;}
.x32{left:362.146355px;}
.x45{left:369.526352px;}
.x40{left:384.826346px;}
.x4d{left:386.446345px;}
.x5{left:391.845600px;}
.xb{left:399.406340px;}
.x4f{left:402.286339px;}
.x2b{left:408.226337px;}
.x41{left:412.905600px;}
.x21{left:434.506326px;}
.x2{left:436.306325px;}
.xa{left:441.346323px;}
.x8{left:444.226322px;}
.x3a{left:449.086320px;}
.x38{left:466.366313px;}
.x12{left:482.566307px;}
.x4b{left:501.106300px;}
.x37{left:508.666297px;}
.xf{left:512.445600px;}
.x3d{left:519.286292px;}
.x39{left:534.226286px;}
.x3b{left:542.326283px;}
.x2a{left:543.405600px;}
.x34{left:545.386282px;}
.x2d{left:574.726270px;}
.x3c{left:579.046268px;}
.x2c{left:596.326261px;}
.x4a{left:606.046258px;}
.x10{left:611.266255px;}
.x3e{left:612.346255px;}
.x6{left:656.626237px;}
.x51{left:662.566235px;}
.x16{left:689.565600px;}
.x7{left:715.666214px;}
.x52{left:739.066204px;}
.x31{left:776.506189px;}
.x9{left:795.046182px;}
.x50{left:806.386177px;}
.x24{left:818.625600px;}
.x47{left:824.026170px;}
.x43{left:835.365600px;}
.x48{left:838.246165px;}
.x49{left:873.166151px;}
.x42{left:884.146146px;}
.x46{left:885.406146px;}
.x13{left:890.086144px;}
.x36{left:943.726123px;}
.x53{left:968.206113px;}
@media print{
.v1{vertical-align:-149.119940pt;}
.v3{vertical-align:-63.359975pt;}
.v5{vertical-align:-20.479992pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:89.599964pt;}
.v2{vertical-align:94.719962pt;}
.v6{vertical-align:115.199954pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.289218pt;}
.ls2{letter-spacing:79.039968pt;}
.ws1{word-spacing:-170.447292pt;}
.ws2{word-spacing:-106.751957pt;}
.ws9{word-spacing:-97.855961pt;}
.wsa{word-spacing:-80.063968pt;}
.ws4{word-spacing:-71.167972pt;}
.wsf{word-spacing:-59.247336pt;}
.ws5{word-spacing:-53.375979pt;}
.ws7{word-spacing:-47.504621pt;}
.wsb{word-spacing:-41.455343pt;}
.ws10{word-spacing:-35.583986pt;}
.wse{word-spacing:-26.687989pt;}
.ws15{word-spacing:-0.256128pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:7.473891pt;}
.wsc{word-spacing:213.527825pt;}
.ws3{word-spacing:218.529194pt;}
.ws13{word-spacing:238.487521pt;}
.ws11{word-spacing:261.528043pt;}
.ws14{word-spacing:548.671719pt;}
.ws8{word-spacing:783.999624pt;}
.ws12{word-spacing:1173.759530pt;}
.ws6{word-spacing:1295.873490pt;}
._4{margin-left:-18.479372pt;}
._8{margin-left:-11.627502pt;}
._9{margin-left:-7.556917pt;}
._0{margin-left:-4.772182pt;}
._3{margin-left:-2.873143pt;}
._1{margin-left:-1.531874pt;}
._5{width:0.906293pt;}
._2{width:1.812176pt;}
._6{width:49.835061pt;}
._7{width:50.802562pt;}
._d{width:107.561321pt;}
._e{width:129.035119pt;}
._a{width:219.975200pt;}
._12{width:303.260524pt;}
._13{width:321.053880pt;}
._c{width:333.980723pt;}
._14{width:337.085873pt;}
._10{width:497.066044pt;}
._11{width:520.106566pt;}
._b{width:545.066262pt;}
._f{width:572.452091pt;}
.fs7{font-size:95.999962pt;}
.fs1{font-size:127.999949pt;}
.fs4{font-size:149.119940pt;}
.fs8{font-size:170.879932pt;}
.fs6{font-size:191.999923pt;}
.fs0{font-size:213.119915pt;}
.fsb{font-size:234.879906pt;}
.fs5{font-size:255.999898pt;}
.fsa{font-size:287.999885pt;}
.fs9{font-size:351.999859pt;}
.fs3{font-size:383.999846pt;}
.fs2{font-size:613.119755pt;}
.y3f{bottom:-61.279817pt;}
.y6{bottom:-45.759823pt;}
.y2e{bottom:-25.119831pt;}
.y6d{bottom:-19.519834pt;}
.y1c{bottom:-14.239836pt;}
.y33{bottom:-8.639838pt;}
.y26{bottom:-8.479838pt;}
.y34{bottom:-6.559839pt;}
.y5b{bottom:-4.479840pt;}
.y4c{bottom:-3.519840pt;}
.y12{bottom:-1.279841pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.080158pt;}
.y62{bottom:7.040158pt;}
.y5e{bottom:7.040160pt;}
.y21{bottom:8.000211pt;}
.y28{bottom:9.120162pt;}
.y14{bottom:10.240159pt;}
.y36{bottom:10.240162pt;}
.y1e{bottom:10.240164pt;}
.y4e{bottom:11.360160pt;}
.y6f{bottom:11.360166pt;}
.y30{bottom:12.480169pt;}
.y8{bottom:14.240177pt;}
.y41{bottom:20.320183pt;}
.y67{bottom:115.733604pt;}
.y18{bottom:120.533602pt;}
.y72{bottom:135.093597pt;}
.yc{bottom:146.933592pt;}
.y23{bottom:150.293591pt;}
.y66{bottom:154.133589pt;}
.y17{bottom:178.133579pt;}
.yb{bottom:185.333577pt;}
.y65{bottom:192.533574pt;}
.y55{bottom:198.933571pt;}
.y76{bottom:206.293568pt;}
.y58{bottom:207.413568pt;}
.y22{bottom:208.533567pt;}
.y60{bottom:220.053563pt;}
.y42{bottom:220.213563pt;}
.y7d{bottom:221.013562pt;}
.ya{bottom:223.733561pt;}
.y46{bottom:226.613560pt;}
.y32{bottom:230.773558pt;}
.y64{bottom:230.933558pt;}
.y7f{bottom:235.413557pt;}
.y16{bottom:235.733556pt;}
.y69{bottom:241.333554pt;}
.y49{bottom:244.053553pt;}
.y71{bottom:244.693553pt;}
.y7c{bottom:249.813551pt;}
.y3e{bottom:255.733548pt;}
.y5f{bottom:258.453547pt;}
.y20{bottom:258.773333pt;}
.y9{bottom:262.133546pt;}
.y7e{bottom:264.213545pt;}
.y50{bottom:265.173545pt;}
.y54{bottom:269.333543pt;}
.y68{bottom:270.133543pt;}
.y57{bottom:271.413542pt;}
.y38{bottom:272.853542pt;}
.y45{bottom:281.493538pt;}
.y2a{bottom:285.813536pt;}
.y48{bottom:288.853535pt;}
.y15{bottom:293.333533pt;}
.ye{bottom:299.413531pt;}
.y31{bottom:301.173530pt;}
.y4a{bottom:305.333529pt;}
.y70{bottom:313.173525pt;}
.y40{bottom:315.093333pt;}
.y78{bottom:317.013524pt;}
.y1f{bottom:325.013521pt;}
.y4f{bottom:329.173519pt;}
.y37{bottom:330.453518pt;}
.y7b{bottom:331.413518pt;}
.y3d{bottom:333.333517pt;}
.y47{bottom:333.653517pt;}
.y56{bottom:335.413517pt;}
.y7{bottom:336.693333pt;}
.y29{bottom:337.013516pt;}
.y3a{bottom:338.933515pt;}
.y53{bottom:339.733515pt;}
.y77{bottom:345.813512pt;}
.y2f{bottom:359.093333pt;}
.y7a{bottom:360.213507pt;}
.y63{bottom:360.373507pt;}
.y3c{bottom:362.133506pt;}
.y6e{bottom:365.813333pt;}
.y75{bottom:366.933504pt;}
.y1d{bottom:372.213333pt;}
.y79{bottom:374.613501pt;}
.y35{bottom:377.813333pt;}
.y27{bottom:379.093333pt;}
.y39{bottom:381.013333pt;}
.y4d{bottom:381.813333pt;}
.y13{bottom:385.173333pt;}
.y61{bottom:391.733333pt;}
.y5{bottom:396.693333pt;}
.y44{bottom:406.613488pt;}
.y74{bottom:410.453486pt;}
.y4{bottom:414.933485pt;}
.y5a{bottom:430.613478pt;}
.y3b{bottom:434.773477pt;}
.y5c{bottom:437.173476pt;}
.y52{bottom:437.973475pt;}
.y25{bottom:439.413475pt;}
.y6c{bottom:441.173474pt;}
.y2b{bottom:442.133474pt;}
.y73{bottom:448.853471pt;}
.y43{bottom:451.413470pt;}
.y11{bottom:453.013469pt;}
.y51{bottom:460.373467pt;}
.y59{bottom:469.013463pt;}
.y3{bottom:478.933459pt;}
.y1b{bottom:484.213457pt;}
.y6b{bottom:502.613450pt;}
.y10{bottom:510.613446pt;}
.y1a{bottom:513.013445pt;}
.y24{bottom:530.933438pt;}
.y19{bottom:541.813434pt;}
.y2{bottom:542.933433pt;}
.yd{bottom:547.733432pt;}
.y2d{bottom:548.853431pt;}
.y4b{bottom:566.453424pt;}
.y6a{bottom:567.733424pt;}
.y1{bottom:606.933408pt;}
.y2c{bottom:614.133405pt;}
.yf{bottom:651.893390pt;}
.h2{height:4.960000pt;}
.ha{height:11.520000pt;}
.h21{height:14.880000pt;}
.h1b{height:15.680000pt;}
.h12{height:17.600000pt;}
.h1a{height:18.880000pt;}
.h24{height:24.160000pt;}
.he{height:24.480000pt;}
.h1d{height:25.600000pt;}
.h15{height:28.000000pt;}
.h26{height:28.640000pt;}
.hd{height:29.280000pt;}
.h11{height:30.240000pt;}
.h25{height:30.720000pt;}
.h27{height:30.880000pt;}
.h19{height:32.160000pt;}
.h18{height:34.880000pt;}
.h17{height:37.600000pt;}
.hf{height:41.440000pt;}
.h9{height:42.240000pt;}
.h1f{height:44.640000pt;}
.h3{height:60.000000pt;}
.hb{height:68.718723pt;}
.h1e{height:81.600000pt;}
.h4{height:88.999964pt;}
.h1c{height:100.124960pt;}
.h23{height:133.499947pt;}
.h1{height:148.184941pt;}
.h7{height:155.527438pt;}
.h10{height:178.222429pt;}
.h8{height:200.249920pt;}
.h28{height:215.324914pt;}
.h20{height:222.277411pt;}
.h16{height:244.972402pt;}
.h22{height:245.127402pt;}
.hc{height:294.969882pt;}
.h14{height:300.374880pt;}
.h13{height:367.124853pt;}
.h6{height:400.499840pt;}
.h5{height:639.464744pt;}
.h0{height:793.333333pt;}
.wd{width:108.480000pt;}
.wa{width:191.520000pt;}
.w7{width:194.400000pt;}
.w4{width:198.240000pt;}
.we{width:204.640000pt;}
.w9{width:258.560000pt;}
.wb{width:266.560000pt;}
.w3{width:370.560000pt;}
.w1{width:426.080000pt;}
.w6{width:442.720000pt;}
.w2{width:528.000000pt;}
.wf{width:566.400000pt;}
.w8{width:584.000000pt;}
.wc{width:601.600000pt;}
.w5{width:817.920000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xc{left:91.347430pt;}
.x28{left:124.787417pt;}
.x35{left:193.107923pt;}
.x27{left:195.347922pt;}
.x1e{left:200.627920pt;}
.x1a{left:201.587200pt;}
.x1f{left:203.667919pt;}
.x4{left:211.347915pt;}
.x1b{left:223.347911pt;}
.x1c{left:224.627910pt;}
.x1d{left:225.907910pt;}
.x19{left:227.667909pt;}
.x1{left:231.027908pt;}
.x18{left:234.867906pt;}
.xd{left:244.947902pt;}
.x44{left:248.307901pt;}
.x26{left:251.347899pt;}
.x15{left:252.627899pt;}
.x2e{left:256.307897pt;}
.x17{left:257.427897pt;}
.x11{left:266.067894pt;}
.x25{left:267.507893pt;}
.x3{left:274.227890pt;}
.x4c{left:275.827890pt;}
.x23{left:281.907200pt;}
.xe{left:289.907884pt;}
.x29{left:291.667883pt;}
.x4e{left:292.627883pt;}
.x30{left:303.027879pt;}
.x2f{left:304.147878pt;}
.x33{left:309.747200pt;}
.x14{left:311.507875pt;}
.x3f{left:314.547874pt;}
.x20{left:319.347200pt;}
.x22{left:320.787872pt;}
.x32{left:321.907871pt;}
.x45{left:328.467869pt;}
.x40{left:342.067863pt;}
.x4d{left:343.507863pt;}
.x5{left:348.307200pt;}
.xb{left:355.027858pt;}
.x4f{left:357.587857pt;}
.x2b{left:362.867855pt;}
.x41{left:367.027200pt;}
.x21{left:386.227846pt;}
.x2{left:387.827845pt;}
.xa{left:392.307843pt;}
.x8{left:394.867842pt;}
.x3a{left:399.187840pt;}
.x38{left:414.547834pt;}
.x12{left:428.947828pt;}
.x4b{left:445.427822pt;}
.x37{left:452.147819pt;}
.xf{left:455.507200pt;}
.x3d{left:461.587815pt;}
.x39{left:474.867810pt;}
.x3b{left:482.067807pt;}
.x2a{left:483.027200pt;}
.x34{left:484.787806pt;}
.x2d{left:510.867796pt;}
.x3c{left:514.707794pt;}
.x2c{left:530.067788pt;}
.x4a{left:538.707785pt;}
.x10{left:543.347783pt;}
.x3e{left:544.307782pt;}
.x6{left:583.667767pt;}
.x51{left:588.947764pt;}
.x16{left:612.947200pt;}
.x7{left:636.147746pt;}
.x52{left:656.947737pt;}
.x31{left:690.227724pt;}
.x9{left:706.707717pt;}
.x50{left:716.787713pt;}
.x24{left:727.667200pt;}
.x47{left:732.467707pt;}
.x43{left:742.547200pt;}
.x48{left:745.107702pt;}
.x49{left:776.147690pt;}
.x42{left:785.907686pt;}
.x46{left:787.027685pt;}
.x13{left:791.187684pt;}
.x36{left:838.867664pt;}
.x53{left:860.627656pt;}
}




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