
    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_0bc4a0a2313526e90b6bd1f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.863770;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_2a2f8acd5d4d6c260e36639e.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_499a4b0f28fae58e69369d16.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_631ade88c0f4d9181101a142.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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_89f595805ccca8d5e3f2aae8.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v2{vertical-align:-30.239988px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:75.599970px;}
.v3{vertical-align:129.599948px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.037441px;}
.ls1{letter-spacing:0.037617px;}
.ls3{letter-spacing:0.051680px;}
.ls2{letter-spacing:0.106523px;}
.ls5{letter-spacing:1032.479587px;}
.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;}
}
.ws8{word-spacing:-203.562639px;}
.ws1{word-spacing:-33.426707px;}
.ws10{word-spacing:-30.023988px;}
.ws12{word-spacing:-26.621269px;}
.ws18{word-spacing:-21.016792px;}
.wse{word-spacing:-20.015992px;}
.wsa{word-spacing:-1.727999px;}
.ws9{word-spacing:-1.722278px;}
.ws3{word-spacing:-1.640059px;}
.wsb{word-spacing:-1.440045px;}
.wsd{word-spacing:-1.104845px;}
.ws5{word-spacing:-0.920039px;}
.ws2{word-spacing:-0.663843px;}
.ws19{word-spacing:-0.661443px;}
.wsc{word-spacing:-0.288000px;}
.ws16{word-spacing:-0.072036px;}
.ws6{word-spacing:-0.019742px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.359820px;}
.ws17{word-spacing:78.206372px;}
.wsf{word-spacing:462.170188px;}
.ws15{word-spacing:972.647611px;}
.ws14{word-spacing:1054.727578px;}
.ws11{word-spacing:1458.215417px;}
.ws13{word-spacing:1525.285053px;}
.ws7{word-spacing:2620.852228px;}
._0{margin-left:-22.798829px;}
._4{margin-left:-14.518824px;}
._9{margin-left:-9.162763px;}
._b{margin-left:-6.457642px;}
._2{margin-left:-5.250235px;}
._1{margin-left:-3.517908px;}
._3{margin-left:-2.332792px;}
._5{margin-left:-1.216583px;}
._6{width:1.024101px;}
._8{width:2.821107px;}
._e{width:4.001536px;}
._c{width:6.474174px;}
._a{width:7.639803px;}
._11{width:25.178944px;}
._10{width:31.621909px;}
._d{width:41.903983px;}
._7{width:49.868851px;}
._f{width:124.199950px;}
._13{width:467.733883px;}
._12{width:1357.222403px;}
.fc8{color:rgb(221,217,195);}
.fc7{color:rgb(101,83,52);}
.fc6{color:rgb(163,135,85);}
.fc5{color:transparent;}
.fc1{color:rgb(255,209,132);}
.fc4{color:rgb(191,191,191);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:63.359975px;}
.fs5{font-size:66.239974px;}
.fs9{font-size:71.999971px;}
.fsd{font-size:75.599970px;}
.fsc{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fsa{font-size:107.999957px;}
.fsb{font-size:113.759954px;}
.fs3{font-size:120.239952px;}
.fs7{font-size:143.999942px;}
.fs2{font-size:167.759933px;}
.fs1{font-size:192.239923px;}
.fs0{font-size:264.239894px;}
.fs6{font-size:732.239707px;}
.y11{bottom:-23.939812px;}
.y65{bottom:-23.039677px;}
.y0{bottom:0.000000px;}
.y55{bottom:2.340178px;}
.y57{bottom:4.320178px;}
.y21{bottom:4.500177px;}
.y4d{bottom:4.680177px;}
.y59{bottom:5.940178px;}
.y4f{bottom:6.120177px;}
.y5e{bottom:6.120214px;}
.y23{bottom:6.660177px;}
.y13{bottom:7.920188px;}
.y64{bottom:108.780000px;}
.y17{bottom:117.240310px;}
.y2e{bottom:124.800307px;}
.y6{bottom:127.140306px;}
.y63{bottom:131.100305px;}
.y35{bottom:135.420303px;}
.y45{bottom:136.140303px;}
.y3f{bottom:142.800300px;}
.y1d{bottom:150.360297px;}
.y2d{bottom:160.440293px;}
.y44{bottom:168.540290px;}
.y3e{bottom:174.120287px;}
.y34{bottom:174.300287px;}
.y62{bottom:176.460286px;}
.y9{bottom:177.720286px;}
.y16{bottom:184.740283px;}
.y2c{bottom:196.080279px;}
.y3d{bottom:202.920276px;}
.y5{bottom:206.880274px;}
.y49{bottom:211.380272px;}
.y43{bottom:211.740272px;}
.y33{bottom:213.180272px;}
.y61{bottom:221.820268px;}
.y1c{bottom:225.960267px;}
.y2b{bottom:231.720264px;}
.y48{bottom:243.780259px;}
.y4{bottom:250.080257px;}
.y32{bottom:252.060256px;}
.y15{bottom:260.340253px;}
.y3c{bottom:260.520253px;}
.y60{bottom:267.180250px;}
.y2a{bottom:267.360250px;}
.y40{bottom:271.860248px;}
.y42{bottom:277.980246px;}
.y3b{bottom:289.320241px;}
.y31{bottom:290.940241px;}
.y1b{bottom:301.560236px;}
.y29{bottom:303.000236px;}
.y47{bottom:308.580234px;}
.y5f{bottom:312.540232px;}
.y41{bottom:321.720228px;}
.y25{bottom:329.820225px;}
.y3a{bottom:330.180225px;}
.y14{bottom:335.940223px;}
.y28{bottom:338.640222px;}
.y46{bottom:340.980221px;}
.y52{bottom:342.960220px;}
.yb{bottom:346.920218px;}
.y2{bottom:350.880217px;}
.y5d{bottom:351.780000px;}
.y5c{bottom:357.900214px;}
.y24{bottom:365.640211px;}
.y30{bottom:368.700210px;}
.y39{bottom:373.380208px;}
.y27{bottom:374.280207px;}
.y51{bottom:375.360207px;}
.y1a{bottom:379.140205px;}
.ya{bottom:382.920204px;}
.yc{bottom:401.820196px;}
.y5b{bottom:403.260196px;}
.y38{bottom:406.500194px;}
.y2f{bottom:407.580194px;}
.y26{bottom:409.920193px;}
.y12{bottom:414.420000px;}
.y50{bottom:418.560190px;}
.y5a{bottom:442.500000px;}
.y58{bottom:442.680000px;}
.y22{bottom:444.120000px;}
.y56{bottom:444.300000px;}
.y4e{bottom:444.840000px;}
.y10{bottom:446.280000px;}
.y19{bottom:463.560172px;}
.y8{bottom:469.320169px;}
.y1{bottom:479.580165px;}
.y37{bottom:479.760165px;}
.y4c{bottom:483.360164px;}
.y20{bottom:488.040162px;}
.y54{bottom:493.980159px;}
.yf{bottom:497.940158px;}
.y7{bottom:505.320155px;}
.y4b{bottom:515.760151px;}
.ye{bottom:541.140141px;}
.y36{bottom:566.160131px;}
.y53{bottom:566.520130px;}
.y1f{bottom:574.440127px;}
.y4a{bottom:576.060127px;}
.y18{bottom:582.360124px;}
.yd{bottom:616.740110px;}
.y1e{bottom:648.060098px;}
.y3{bottom:711.780072px;}
.h1e{height:1.260000px;}
.h14{height:1.440000px;}
.h1a{height:1.980000px;}
.he{height:2.160000px;}
.h1b{height:3.600000px;}
.h1c{height:3.780000px;}
.h9{height:8.280000px;}
.h16{height:19.260000px;}
.h18{height:26.640000px;}
.h19{height:27.360000px;}
.h13{height:29.700000px;}
.h1d{height:31.140000px;}
.hd{height:31.500000px;}
.ha{height:31.860000px;}
.h11{height:57.668180px;}
.h5{height:69.086222px;}
.h12{height:74.039033px;}
.hb{height:75.093720px;}
.h17{height:78.848406px;}
.h10{height:99.874648px;}
.hc{height:112.640580px;}
.hf{height:118.648078px;}
.h4{height:125.406512px;}
.h2{height:131.789479px;}
.h8{height:150.187440px;}
.h3{height:174.968368px;}
.h1{height:181.148834px;}
.h6{height:201.006482px;}
.h15{height:242.240528px;}
.h7{height:763.703132px;}
.h0{height:892.500000px;}
.we{width:15.300000px;}
.w8{width:15.660000px;}
.w4{width:38.880000px;}
.w7{width:68.760000px;}
.wd{width:79.560000px;}
.w3{width:85.500000px;}
.w6{width:128.880000px;}
.wb{width:130.140000px;}
.wa{width:142.560000px;}
.wc{width:159.840000px;}
.w5{width:161.460000px;}
.w1{width:358.020000px;}
.w9{width:578.880000px;}
.w2{width:633.240000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x35{left:97.905861px;}
.xe{left:102.225859px;}
.x7{left:115.005854px;}
.x39{left:121.306451px;}
.x5{left:136.966445px;}
.x36{left:138.405960px;}
.xf{left:142.725843px;}
.xa{left:169.726432px;}
.x32{left:171.886431px;}
.x10{left:181.246428px;}
.x22{left:187.546425px;}
.x16{left:195.106422px;}
.x24{left:201.045600px;}
.x3{left:203.026419px;}
.x23{left:206.986417px;}
.xb{left:210.226416px;}
.x14{left:211.846415px;}
.x20{left:220.306412px;}
.x1c{left:228.766408px;}
.x33{left:237.046405px;}
.x3a{left:298.245600px;}
.x34{left:314.086374px;}
.xc{left:322.726371px;}
.x6{left:331.006368px;}
.x2{left:346.846361px;}
.x1b{left:348.826360px;}
.x1e{left:351.166360px;}
.x30{left:352.606359px;}
.x25{left:357.106357px;}
.x12{left:358.546357px;}
.x11{left:370.606352px;}
.x3b{left:377.445600px;}
.x1a{left:381.406347px;}
.x26{left:388.605600px;}
.x3c{left:392.745600px;}
.x13{left:399.226340px;}
.x18{left:413.086335px;}
.x19{left:420.826332px;}
.x17{left:426.766329px;}
.x1{left:435.946326px;}
.x21{left:437.026325px;}
.x1f{left:439.546324px;}
.xd{left:465.466314px;}
.x8{left:527.566289px;}
.x29{left:531.165600px;}
.x27{left:555.826278px;}
.x28{left:562.126275px;}
.x4{left:579.406268px;}
.x1d{left:642.226243px;}
.x15{left:663.286235px;}
.x37{left:717.285600px;}
.x2c{left:803.505600px;}
.x2a{left:808.006177px;}
.x31{left:809.446176px;}
.x2b{left:826.366169px;}
.x9{left:855.346158px;}
.x2e{left:1001.866099px;}
.x2d{left:1004.206098px;}
.x2f{left:1029.585600px;}
.x38{left:1041.285600px;}
@media print{
.v2{vertical-align:-26.879989pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:67.199973pt;}
.v3{vertical-align:115.199954pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.033281pt;}
.ls1{letter-spacing:0.033438pt;}
.ls3{letter-spacing:0.045938pt;}
.ls2{letter-spacing:0.094688pt;}
.ls5{letter-spacing:917.759633pt;}
.ws8{word-spacing:-180.944568pt;}
.ws1{word-spacing:-29.712628pt;}
.ws10{word-spacing:-26.687989pt;}
.ws12{word-spacing:-23.663351pt;}
.ws18{word-spacing:-18.681593pt;}
.wse{word-spacing:-17.791993pt;}
.wsa{word-spacing:-1.535999pt;}
.ws9{word-spacing:-1.530914pt;}
.ws3{word-spacing:-1.457830pt;}
.wsb{word-spacing:-1.280040pt;}
.wsd{word-spacing:-0.982085pt;}
.ws5{word-spacing:-0.817812pt;}
.ws2{word-spacing:-0.590083pt;}
.ws19{word-spacing:-0.587949pt;}
.wsc{word-spacing:-0.256000pt;}
.ws16{word-spacing:-0.064032pt;}
.ws6{word-spacing:-0.017548pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.319840pt;}
.ws17{word-spacing:69.516775pt;}
.wsf{word-spacing:410.817945pt;}
.ws15{word-spacing:864.575654pt;}
.ws14{word-spacing:937.535625pt;}
.ws11{word-spacing:1296.191482pt;}
.ws13{word-spacing:1355.808936pt;}
.ws7{word-spacing:2329.646424pt;}
._0{margin-left:-20.265626pt;}
._4{margin-left:-12.905621pt;}
._9{margin-left:-8.144678pt;}
._b{margin-left:-5.740126pt;}
._2{margin-left:-4.666876pt;}
._1{margin-left:-3.127029pt;}
._3{margin-left:-2.073593pt;}
._5{margin-left:-1.081407pt;}
._6{width:0.910312pt;}
._8{width:2.507651pt;}
._e{width:3.556921pt;}
._c{width:5.754821pt;}
._a{width:6.790936pt;}
._11{width:22.381283pt;}
._10{width:28.108363pt;}
._d{width:37.247985pt;}
._7{width:44.327867pt;}
._f{width:110.399956pt;}
._13{width:415.763451pt;}
._12{width:1206.419914pt;}
.fs8{font-size:56.319977pt;}
.fs5{font-size:58.879976pt;}
.fs9{font-size:63.999974pt;}
.fsd{font-size:67.199973pt;}
.fsc{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fsa{font-size:95.999962pt;}
.fsb{font-size:101.119960pt;}
.fs3{font-size:106.879957pt;}
.fs7{font-size:127.999949pt;}
.fs2{font-size:149.119940pt;}
.fs1{font-size:170.879932pt;}
.fs0{font-size:234.879906pt;}
.fs6{font-size:650.879740pt;}
.y11{bottom:-21.279833pt;}
.y65{bottom:-20.479713pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:2.080158pt;}
.y57{bottom:3.840158pt;}
.y21{bottom:4.000157pt;}
.y4d{bottom:4.160157pt;}
.y59{bottom:5.280158pt;}
.y4f{bottom:5.440157pt;}
.y5e{bottom:5.440190pt;}
.y23{bottom:5.920157pt;}
.y13{bottom:7.040167pt;}
.y64{bottom:96.693333pt;}
.y17{bottom:104.213609pt;}
.y2e{bottom:110.933606pt;}
.y6{bottom:113.013605pt;}
.y63{bottom:116.533604pt;}
.y35{bottom:120.373603pt;}
.y45{bottom:121.013602pt;}
.y3f{bottom:126.933600pt;}
.y1d{bottom:133.653597pt;}
.y2d{bottom:142.613594pt;}
.y44{bottom:149.813591pt;}
.y3e{bottom:154.773589pt;}
.y34{bottom:154.933589pt;}
.y62{bottom:156.853588pt;}
.y9{bottom:157.973587pt;}
.y16{bottom:164.213585pt;}
.y2c{bottom:174.293581pt;}
.y3d{bottom:180.373579pt;}
.y5{bottom:183.893577pt;}
.y49{bottom:187.893576pt;}
.y43{bottom:188.213575pt;}
.y33{bottom:189.493575pt;}
.y61{bottom:197.173572pt;}
.y1c{bottom:200.853570pt;}
.y2b{bottom:205.973568pt;}
.y48{bottom:216.693564pt;}
.y4{bottom:222.293562pt;}
.y32{bottom:224.053561pt;}
.y15{bottom:231.413558pt;}
.y3c{bottom:231.573558pt;}
.y60{bottom:237.493556pt;}
.y2a{bottom:237.653556pt;}
.y40{bottom:241.653554pt;}
.y42{bottom:247.093552pt;}
.y3b{bottom:257.173548pt;}
.y31{bottom:258.613547pt;}
.y1b{bottom:268.053543pt;}
.y29{bottom:269.333543pt;}
.y47{bottom:274.293541pt;}
.y5f{bottom:277.813540pt;}
.y41{bottom:285.973536pt;}
.y25{bottom:293.173533pt;}
.y3a{bottom:293.493533pt;}
.y14{bottom:298.613531pt;}
.y28{bottom:301.013530pt;}
.y46{bottom:303.093529pt;}
.y52{bottom:304.853529pt;}
.yb{bottom:308.373527pt;}
.y2{bottom:311.893526pt;}
.y5d{bottom:312.693333pt;}
.y5c{bottom:318.133523pt;}
.y24{bottom:325.013521pt;}
.y30{bottom:327.733520pt;}
.y39{bottom:331.893518pt;}
.y27{bottom:332.693518pt;}
.y51{bottom:333.653517pt;}
.y1a{bottom:337.013516pt;}
.ya{bottom:340.373515pt;}
.yc{bottom:357.173508pt;}
.y5b{bottom:358.453507pt;}
.y38{bottom:361.333506pt;}
.y2f{bottom:362.293506pt;}
.y26{bottom:364.373505pt;}
.y12{bottom:368.373333pt;}
.y50{bottom:372.053502pt;}
.y5a{bottom:393.333333pt;}
.y58{bottom:393.493333pt;}
.y22{bottom:394.773333pt;}
.y56{bottom:394.933333pt;}
.y4e{bottom:395.413333pt;}
.y10{bottom:396.693333pt;}
.y19{bottom:412.053486pt;}
.y8{bottom:417.173484pt;}
.y1{bottom:426.293480pt;}
.y37{bottom:426.453480pt;}
.y4c{bottom:429.653479pt;}
.y20{bottom:433.813477pt;}
.y54{bottom:439.093475pt;}
.yf{bottom:442.613474pt;}
.y7{bottom:449.173471pt;}
.y4b{bottom:458.453467pt;}
.ye{bottom:481.013458pt;}
.y36{bottom:503.253449pt;}
.y53{bottom:503.573449pt;}
.y1f{bottom:510.613446pt;}
.y4a{bottom:512.053446pt;}
.y18{bottom:517.653444pt;}
.yd{bottom:548.213431pt;}
.y1e{bottom:576.053420pt;}
.y3{bottom:632.693398pt;}
.h1e{height:1.120000pt;}
.h14{height:1.280000pt;}
.h1a{height:1.760000pt;}
.he{height:1.920000pt;}
.h1b{height:3.200000pt;}
.h1c{height:3.360000pt;}
.h9{height:7.360000pt;}
.h16{height:17.120000pt;}
.h18{height:23.680000pt;}
.h19{height:24.320000pt;}
.h13{height:26.400000pt;}
.h1d{height:27.680000pt;}
.hd{height:28.000000pt;}
.ha{height:28.320000pt;}
.h11{height:51.260604pt;}
.h5{height:61.409975pt;}
.h12{height:65.812474pt;}
.hb{height:66.749973pt;}
.h17{height:70.087472pt;}
.h10{height:88.777464pt;}
.hc{height:100.124960pt;}
.hf{height:105.464958pt;}
.h4{height:111.472455pt;}
.h2{height:117.146203pt;}
.h8{height:133.499947pt;}
.h3{height:155.527438pt;}
.h1{height:161.021186pt;}
.h6{height:178.672429pt;}
.h15{height:215.324914pt;}
.h7{height:678.847228pt;}
.h0{height:793.333333pt;}
.we{width:13.600000pt;}
.w8{width:13.920000pt;}
.w4{width:34.560000pt;}
.w7{width:61.120000pt;}
.wd{width:70.720000pt;}
.w3{width:76.000000pt;}
.w6{width:114.560000pt;}
.wb{width:115.680000pt;}
.wa{width:126.720000pt;}
.wc{width:142.080000pt;}
.w5{width:143.520000pt;}
.w1{width:318.240000pt;}
.w9{width:514.560000pt;}
.w2{width:562.880000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x35{left:87.027432pt;}
.xe{left:90.867430pt;}
.x7{left:102.227426pt;}
.x39{left:107.827957pt;}
.x5{left:121.747951pt;}
.x36{left:123.027520pt;}
.xf{left:126.867416pt;}
.xa{left:150.867940pt;}
.x32{left:152.787939pt;}
.x10{left:161.107936pt;}
.x22{left:166.707933pt;}
.x16{left:173.427931pt;}
.x24{left:178.707200pt;}
.x3{left:180.467928pt;}
.x23{left:183.987926pt;}
.xb{left:186.867925pt;}
.x14{left:188.307925pt;}
.x20{left:195.827922pt;}
.x1c{left:203.347919pt;}
.x33{left:210.707916pt;}
.x3a{left:265.107200pt;}
.x34{left:279.187888pt;}
.xc{left:286.867885pt;}
.x6{left:294.227882pt;}
.x2{left:308.307877pt;}
.x1b{left:310.067876pt;}
.x1e{left:312.147875pt;}
.x30{left:313.427875pt;}
.x25{left:317.427873pt;}
.x12{left:318.707873pt;}
.x11{left:329.427868pt;}
.x3b{left:335.507200pt;}
.x1a{left:339.027864pt;}
.x26{left:345.427200pt;}
.x3c{left:349.107200pt;}
.x13{left:354.867858pt;}
.x18{left:367.187853pt;}
.x19{left:374.067850pt;}
.x17{left:379.347848pt;}
.x1{left:387.507845pt;}
.x21{left:388.467845pt;}
.x1f{left:390.707844pt;}
.xd{left:413.747835pt;}
.x8{left:468.947812pt;}
.x29{left:472.147200pt;}
.x27{left:494.067802pt;}
.x28{left:499.667800pt;}
.x4{left:515.027794pt;}
.x1d{left:570.867772pt;}
.x15{left:589.587764pt;}
.x37{left:637.587200pt;}
.x2c{left:714.227200pt;}
.x2a{left:718.227713pt;}
.x31{left:719.507712pt;}
.x2b{left:734.547706pt;}
.x9{left:760.307696pt;}
.x2e{left:890.547644pt;}
.x2d{left:892.627643pt;}
.x2f{left:915.187200pt;}
.x38{left:925.587200pt;}
}




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