
    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_5daa534461802c0413612ce1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c69fdbc27fcd3f1b4cfb610d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.942383;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_f8496671e066d54a386508cf.woff')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_1f265affa6b5adfc582d6190.woff')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_3e411f6477822f7d75b0bc4c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.909180;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);}
.v9{vertical-align:-82.057244px;}
.v8{vertical-align:-69.805917px;}
.v7{vertical-align:-18.045067px;}
.v2{vertical-align:-14.401100px;}
.v3{vertical-align:-8.678227px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:19.396905px;}
.v1{vertical-align:24.506741px;}
.v5{vertical-align:28.075132px;}
.v4{vertical-align:31.694228px;}
.ls16{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.026475px;}
.ls6{letter-spacing:0.565302px;}
.lsd{letter-spacing:0.566576px;}
.lsb{letter-spacing:2.274578px;}
.lsf{letter-spacing:7.753319px;}
.ls8{letter-spacing:7.758483px;}
.ls4{letter-spacing:10.886380px;}
.ls2{letter-spacing:11.324847px;}
.ls3{letter-spacing:11.335324px;}
.ls1{letter-spacing:11.337067px;}
.lsa{letter-spacing:11.529960px;}
.ls11{letter-spacing:11.538448px;}
.ls9{letter-spacing:11.652315px;}
.ls7{letter-spacing:12.706154px;}
.lse{letter-spacing:12.721399px;}
.ls12{letter-spacing:24.593666px;}
.ls14{letter-spacing:33.318827px;}
.lsc{letter-spacing:33.327310px;}
.ls13{letter-spacing:33.342671px;}
.ls10{letter-spacing:33.960236px;}
.ls15{letter-spacing:80.841895px;}
.ls5{letter-spacing:80.855978px;}
.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:-59.759492px;}
.ws9{word-spacing:-43.919769px;}
.ws4{word-spacing:-41.759538px;}
.ws6{word-spacing:-41.234049px;}
.ws1a{word-spacing:-30.240000px;}
.ws7{word-spacing:-27.125602px;}
.ws18{word-spacing:-19.680185px;}
.ws17{word-spacing:-15.083642px;}
.ws3{word-spacing:-15.024110px;}
.ws2{word-spacing:-12.854807px;}
.ws0{word-spacing:-12.203968px;}
.ws19{word-spacing:-10.317153px;}
.ws1{word-spacing:-9.437656px;}
.ws1b{word-spacing:-6.834240px;}
.ws1c{word-spacing:-1.149120px;}
.ws5{word-spacing:-0.823923px;}
.ws1f{word-spacing:0.000000px;}
.wsb{word-spacing:18.833552px;}
.wse{word-spacing:51.432671px;}
.ws10{word-spacing:51.554248px;}
.wsc{word-spacing:55.879419px;}
.ws13{word-spacing:72.312440px;}
.ws15{word-spacing:73.147631px;}
.ws12{word-spacing:76.759188px;}
.wsa{word-spacing:81.224792px;}
.wsd{word-spacing:83.853153px;}
.ws11{word-spacing:93.875442px;}
.ws16{word-spacing:103.897731px;}
.wsf{word-spacing:104.732922px;}
.ws14{word-spacing:114.755211px;}
.ws1d{word-spacing:369.488395px;}
.ws1e{word-spacing:391.150060px;}
._2{margin-left:-9.287976px;}
._4{margin-left:-6.120372px;}
._6{margin-left:-4.090360px;}
._0{margin-left:-2.807993px;}
._3{margin-left:-1.727996px;}
._1{width:1.403996px;}
._7{width:2.967099px;}
._8{width:7.307923px;}
._9{width:9.432420px;}
._5{width:11.165529px;}
._c{width:12.239150px;}
._b{width:14.357916px;}
._a{width:17.413060px;}
._d{width:126.756053px;}
._e{width:412.500719px;}
._f{width:433.631046px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,103,140);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:30.240000px;}
.fs3{font-size:31.680000px;}
.fs6{font-size:41.759538px;}
.fsa{font-size:43.919769px;}
.fs4{font-size:48.240229px;}
.fs2{font-size:53.999861px;}
.fs7{font-size:56.879676px;}
.fs5{font-size:59.039907px;}
.fs9{font-size:59.759492px;}
.fs1{font-size:80.640736px;}
.fs0{font-size:107.999721px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.238785px;}
.y17{bottom:12.432439px;}
.y16{bottom:25.036180px;}
.y15{bottom:37.630463px;}
.y14{bottom:50.231093px;}
.y13{bottom:62.834959px;}
.y12{bottom:75.435589px;}
.y24{bottom:91.984585px;}
.y29{bottom:110.354149px;}
.y28{bottom:122.954779px;}
.y38{bottom:133.380066px;}
.y1d{bottom:135.540047px;}
.y27{bottom:135.552173px;}
.y35{bottom:139.690862px;}
.y1a{bottom:141.850870px;}
.y34{bottom:146.715992px;}
.y26{bottom:148.152803px;}
.y19{bottom:148.869653px;}
.y36{bottom:149.054466px;}
.y1b{bottom:151.211363px;}
.y41{bottom:160.016857px;}
.y37{bottom:162.360077px;}
.y1c{bottom:164.520058px;}
.y25{bottom:165.427569px;}
.y18{bottom:184.144190px;}
.y22{bottom:187.926024px;}
.y21{bottom:200.530643px;}
.y20{bottom:213.119011px;}
.y33{bottom:216.731453px;}
.y1f{bottom:225.731903px;}
.y1e{bottom:238.321059px;}
.y32{bottom:244.449653px;}
.y23{bottom:256.862414px;}
.y31{bottom:271.992623px;}
.y30{bottom:299.707650px;}
.y2f{bottom:327.429023px;}
.y2e{bottom:354.971993px;}
.y2d{bottom:381.970170px;}
.y2b{bottom:388.810549px;}
.y2a{bottom:395.109246px;}
.y2c{bottom:408.248322px;}
.y11{bottom:438.126462px;}
.y3f{bottom:489.966049px;}
.y3e{bottom:504.908389px;}
.y40{bottom:520.025959px;}
.y43{bottom:540.727068px;}
.y3d{bottom:770.044104px;}
.y42{bottom:787.861499px;}
.y10{bottom:838.983430px;}
.y4c{bottom:862.202328px;}
.y4b{bottom:874.806162px;}
.y4a{bottom:887.406792px;}
.y49{bottom:899.999395px;}
.y48{bottom:913.143294px;}
.y47{bottom:925.743924px;}
.y46{bottom:938.341350px;}
.y45{bottom:950.942633px;}
.y44{bottom:963.543700px;}
.y3b{bottom:973.080059px;}
.ye{bottom:975.421318px;}
.y3a{bottom:981.900072px;}
.yd{bottom:988.022570px;}
.y39{bottom:991.440067px;}
.yc{bottom:1000.623854px;}
.yb{bottom:1013.221684px;}
.y3c{bottom:1014.484214px;}
.yf{bottom:1032.479888px;}
.ya{bottom:1093.860060px;}
.y9{bottom:1113.660067px;}
.y7{bottom:1121.221500px;}
.y6{bottom:1128.060070px;}
.y5{bottom:1142.460065px;}
.y4{bottom:1153.261919px;}
.y3{bottom:1171.260064px;}
.y2{bottom:1193.215214px;}
.y1{bottom:1228.325956px;}
.h6{height:14.757081px;}
.h4{height:24.193125px;}
.h11{height:30.077578px;}
.h5{height:36.839706px;}
.hd{height:37.504688px;}
.h8{height:41.535244px;}
.h7{height:42.982666px;}
.hc{height:51.791615px;}
.h9{height:58.240567px;}
.he{height:66.742975px;}
.hb{height:79.866747px;}
.h10{height:79.892135px;}
.h3{height:80.207607px;}
.hf{height:83.447512px;}
.ha{height:83.485843px;}
.h2{height:107.419645px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:233.633303px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:9.181743px;}
.x2a{left:13.138397px;}
.xa{left:34.561730px;}
.x1{left:80.103308px;}
.x10{left:93.776478px;}
.xd{left:101.879331px;}
.x7{left:108.000000px;}
.x11{left:110.159139px;}
.x12{left:139.857746px;}
.x3{left:145.439999px;}
.x15{left:148.139992px;}
.x14{left:152.099997px;}
.xc{left:184.136855px;}
.x13{left:188.998623px;}
.xb{left:192.961809px;}
.x5{left:200.699993px;}
.x4{left:205.919992px;}
.x2{left:215.826192px;}
.x1f{left:292.316776px;}
.x1e{left:293.397464px;}
.x21{left:295.018497px;}
.x20{left:296.099186px;}
.x1a{left:300.238435px;}
.x22{left:314.098811px;}
.x1b{left:342.896424px;}
.x25{left:350.459988px;}
.x24{left:354.420010px;}
.x8{left:372.779983px;}
.x1d{left:375.473274px;}
.x1c{left:382.676838px;}
.x23{left:408.056502px;}
.xe{left:471.416490px;}
.x16{left:484.017120px;}
.x29{left:506.156646px;}
.x27{left:527.034467px;}
.x28{left:529.554643px;}
.x2b{left:531.359261px;}
.x26{left:534.060001px;}
.x2c{left:588.954109px;}
.x18{left:609.298028px;}
.xf{left:613.073458px;}
.x17{left:635.756425px;}
.x19{left:641.154831px;}
.x6{left:659.346712px;}
@media print{
.v9{vertical-align:-72.939772pt;}
.v8{vertical-align:-62.049704pt;}
.v7{vertical-align:-16.040060pt;}
.v2{vertical-align:-12.800978pt;}
.v3{vertical-align:-7.713980pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.241693pt;}
.v1{vertical-align:21.783770pt;}
.v5{vertical-align:24.955673pt;}
.v4{vertical-align:28.172647pt;}
.ls16{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023534pt;}
.ls6{letter-spacing:0.502491pt;}
.lsd{letter-spacing:0.503623pt;}
.lsb{letter-spacing:2.021847pt;}
.lsf{letter-spacing:6.891839pt;}
.ls8{letter-spacing:6.896430pt;}
.ls4{letter-spacing:9.676782pt;}
.ls2{letter-spacing:10.066530pt;}
.ls3{letter-spacing:10.075844pt;}
.ls1{letter-spacing:10.077393pt;}
.lsa{letter-spacing:10.248854pt;}
.ls11{letter-spacing:10.256398pt;}
.ls9{letter-spacing:10.357613pt;}
.ls7{letter-spacing:11.294359pt;}
.lse{letter-spacing:11.307910pt;}
.ls12{letter-spacing:21.861036pt;}
.ls14{letter-spacing:29.616735pt;}
.lsc{letter-spacing:29.624275pt;}
.ls13{letter-spacing:29.637930pt;}
.ls10{letter-spacing:30.186876pt;}
.ls15{letter-spacing:71.859463pt;}
.ls5{letter-spacing:71.871980pt;}
.ws8{word-spacing:-53.119548pt;}
.ws9{word-spacing:-39.039794pt;}
.ws4{word-spacing:-37.119590pt;}
.ws6{word-spacing:-36.652488pt;}
.ws1a{word-spacing:-26.880000pt;}
.ws7{word-spacing:-24.111647pt;}
.ws18{word-spacing:-17.493498pt;}
.ws17{word-spacing:-13.407682pt;}
.ws3{word-spacing:-13.354765pt;}
.ws2{word-spacing:-11.426495pt;}
.ws0{word-spacing:-10.847972pt;}
.ws19{word-spacing:-9.170803pt;}
.ws1{word-spacing:-8.389027pt;}
.ws1b{word-spacing:-6.074880pt;}
.ws1c{word-spacing:-1.021440pt;}
.ws5{word-spacing:-0.732376pt;}
.ws1f{word-spacing:0.000000pt;}
.wsb{word-spacing:16.740935pt;}
.wse{word-spacing:45.717930pt;}
.ws10{word-spacing:45.825998pt;}
.wsc{word-spacing:49.670595pt;}
.ws13{word-spacing:64.277724pt;}
.ws15{word-spacing:65.020116pt;}
.ws12{word-spacing:68.230389pt;}
.wsa{word-spacing:72.199816pt;}
.wsd{word-spacing:74.536136pt;}
.ws11{word-spacing:83.444837pt;}
.ws16{word-spacing:92.353539pt;}
.wsf{word-spacing:93.095931pt;}
.ws14{word-spacing:102.004632pt;}
.ws1d{word-spacing:328.434129pt;}
.ws1e{word-spacing:347.688942pt;}
._2{margin-left:-8.255979pt;}
._4{margin-left:-5.440331pt;}
._6{margin-left:-3.635876pt;}
._0{margin-left:-2.495994pt;}
._3{margin-left:-1.535996pt;}
._1{width:1.247997pt;}
._7{width:2.637422pt;}
._8{width:6.495932pt;}
._9{width:8.384374pt;}
._5{width:9.924914pt;}
._c{width:10.879244pt;}
._b{width:12.762592pt;}
._a{width:15.478275pt;}
._d{width:112.672047pt;}
._e{width:366.667306pt;}
._f{width:385.449818pt;}
.fs8{font-size:26.880000pt;}
.fs3{font-size:28.160000pt;}
.fs6{font-size:37.119590pt;}
.fsa{font-size:39.039794pt;}
.fs4{font-size:42.880204pt;}
.fs2{font-size:47.999876pt;}
.fs7{font-size:50.559712pt;}
.fs5{font-size:52.479917pt;}
.fs9{font-size:53.119548pt;}
.fs1{font-size:71.680654pt;}
.fs0{font-size:95.999752pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.878920pt;}
.y17{bottom:11.051057pt;}
.y16{bottom:22.254382pt;}
.y15{bottom:33.449301pt;}
.y14{bottom:44.649861pt;}
.y13{bottom:55.853297pt;}
.y12{bottom:67.053857pt;}
.y24{bottom:81.764075pt;}
.y29{bottom:98.092577pt;}
.y28{bottom:109.293137pt;}
.y38{bottom:118.560059pt;}
.y1d{bottom:120.480042pt;}
.y27{bottom:120.490821pt;}
.y35{bottom:124.169655pt;}
.y1a{bottom:126.089662pt;}
.y34{bottom:130.414215pt;}
.y26{bottom:131.691381pt;}
.y19{bottom:132.328581pt;}
.y36{bottom:132.492859pt;}
.y1b{bottom:134.410101pt;}
.y41{bottom:142.237206pt;}
.y37{bottom:144.320069pt;}
.y1c{bottom:146.240052pt;}
.y25{bottom:147.046728pt;}
.y18{bottom:163.683724pt;}
.y22{bottom:167.045355pt;}
.y21{bottom:178.249461pt;}
.y20{bottom:189.439121pt;}
.y33{bottom:192.650181pt;}
.y1f{bottom:200.650581pt;}
.y1e{bottom:211.840941pt;}
.y32{bottom:217.288581pt;}
.y23{bottom:228.322146pt;}
.y31{bottom:241.771221pt;}
.y30{bottom:266.406800pt;}
.y2f{bottom:291.048021pt;}
.y2e{bottom:315.530661pt;}
.y2d{bottom:339.529040pt;}
.y2b{bottom:345.609377pt;}
.y2a{bottom:351.208219pt;}
.y2c{bottom:362.887398pt;}
.y11{bottom:389.445744pt;}
.y3f{bottom:435.525377pt;}
.y3e{bottom:448.807457pt;}
.y40{bottom:462.245297pt;}
.y43{bottom:480.646282pt;}
.y3d{bottom:684.483648pt;}
.y42{bottom:700.321332pt;}
.y10{bottom:745.763049pt;}
.y4c{bottom:766.402069pt;}
.y4b{bottom:777.605478pt;}
.y4a{bottom:788.806038pt;}
.y49{bottom:799.999462pt;}
.y48{bottom:811.682928pt;}
.y47{bottom:822.883488pt;}
.y46{bottom:834.081200pt;}
.y45{bottom:845.282340pt;}
.y44{bottom:856.483289pt;}
.y3b{bottom:864.960053pt;}
.ye{bottom:867.041172pt;}
.y3a{bottom:872.800064pt;}
.yd{bottom:878.242285pt;}
.y39{bottom:881.280060pt;}
.yc{bottom:889.443426pt;}
.yb{bottom:900.641496pt;}
.y3c{bottom:901.763746pt;}
.yf{bottom:917.759900pt;}
.ya{bottom:972.320054pt;}
.y9{bottom:989.920060pt;}
.y7{bottom:996.641334pt;}
.y6{bottom:1002.720063pt;}
.y5{bottom:1015.520058pt;}
.y4{bottom:1025.121706pt;}
.y3{bottom:1041.120057pt;}
.y2{bottom:1060.635745pt;}
.y1{bottom:1091.845295pt;}
.h6{height:13.117405pt;}
.h4{height:21.505000pt;}
.h11{height:26.735625pt;}
.h5{height:32.746406pt;}
.hd{height:33.337500pt;}
.h8{height:36.920217pt;}
.h7{height:38.206815pt;}
.hc{height:46.036991pt;}
.h9{height:51.769393pt;}
.he{height:59.327089pt;}
.hb{height:70.992664pt;}
.h10{height:71.015231pt;}
.h3{height:71.295650pt;}
.hf{height:74.175566pt;}
.ha{height:74.209638pt;}
.h2{height:95.484129pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:207.674047pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:8.161550pt;}
.x2a{left:11.678575pt;}
.xa{left:30.721537pt;}
.x1{left:71.202941pt;}
.x10{left:83.356870pt;}
.xd{left:90.559406pt;}
.x7{left:96.000000pt;}
.x11{left:97.919235pt;}
.x12{left:124.317997pt;}
.x3{left:129.279999pt;}
.x15{left:131.679993pt;}
.x14{left:135.199997pt;}
.xc{left:163.677204pt;}
.x13{left:167.998776pt;}
.xb{left:171.521608pt;}
.x5{left:178.399994pt;}
.x4{left:183.039993pt;}
.x2{left:191.845504pt;}
.x1f{left:259.837134pt;}
.x1e{left:260.797746pt;}
.x21{left:262.238664pt;}
.x20{left:263.199277pt;}
.x1a{left:266.878609pt;}
.x22{left:279.198943pt;}
.x1b{left:304.796821pt;}
.x25{left:311.519989pt;}
.x24{left:315.040009pt;}
.x8{left:331.359985pt;}
.x1d{left:333.754021pt;}
.x1c{left:340.157190pt;}
.x23{left:362.716890pt;}
.xe{left:419.036880pt;}
.x16{left:430.237440pt;}
.x29{left:449.917019pt;}
.x27{left:468.475082pt;}
.x28{left:470.715238pt;}
.x2b{left:472.319343pt;}
.x26{left:474.720001pt;}
.x2c{left:523.514763pt;}
.x18{left:541.598247pt;}
.xf{left:544.954185pt;}
.x17{left:565.116822pt;}
.x19{left:569.915405pt;}
.x6{left:586.085966pt;}
}




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