
    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_c48c78beb4b655d0fe509784.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_c99e6154e63383455ec3507b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_4bd29af82445703c27ded970.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d95bfa7e8ba4c02c82f646d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.179280px;}
.ls5{letter-spacing:0.287280px;}
.ls4{letter-spacing:48.490541px;}
.ls1{letter-spacing:107.315957px;}
.ls3{letter-spacing:124.199950px;}
.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:-54.185738px;}
.wsa{word-spacing:-35.310226px;}
.ws33{word-spacing:-27.174229px;}
.ws3f{word-spacing:-20.339992px;}
.ws40{word-spacing:-13.505755px;}
.ws16{word-spacing:-3.608830px;}
.ws26{word-spacing:-3.485713px;}
.ws41{word-spacing:-1.586446px;}
.ws2a{word-spacing:-1.448813px;}
.ws22{word-spacing:-0.728859px;}
.ws7{word-spacing:-0.709798px;}
.ws24{word-spacing:-0.657770px;}
.ws32{word-spacing:-0.640398px;}
.ws9{word-spacing:-0.190144px;}
.ws34{word-spacing:-0.048336px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:0.198079px;}
.ws3e{word-spacing:0.678274px;}
.ws2f{word-spacing:4.278258px;}
.ws1d{word-spacing:6.857527px;}
.wsc{word-spacing:7.162664px;}
.wsb{word-spacing:8.201659px;}
.ws1b{word-spacing:12.231244px;}
.ws1a{word-spacing:14.362669px;}
.ws35{word-spacing:15.582376px;}
.ws36{word-spacing:15.798327px;}
.ws5{word-spacing:16.622211px;}
.ws2e{word-spacing:16.679325px;}
.ws17{word-spacing:16.757704px;}
.ws18{word-spacing:16.901296px;}
.ws19{word-spacing:17.242796px;}
.ws28{word-spacing:22.406108px;}
.ws30{word-spacing:22.692766px;}
.ws29{word-spacing:22.697601px;}
.ws27{word-spacing:23.114874px;}
.ws23{word-spacing:25.982233px;}
.ws38{word-spacing:29.639268px;}
.ws14{word-spacing:30.617559px;}
.ws3b{word-spacing:31.440703px;}
.ws3a{word-spacing:31.817896px;}
.ws1c{word-spacing:32.777576px;}
.ws6{word-spacing:41.822150px;}
.ws31{word-spacing:49.638299px;}
.ws13{word-spacing:52.551147px;}
.ws37{word-spacing:53.238283px;}
.ws21{word-spacing:53.271257px;}
.ws1e{word-spacing:53.290162px;}
.ws20{word-spacing:53.439934px;}
.ws12{word-spacing:53.495461px;}
.ws11{word-spacing:53.514721px;}
.ws2b{word-spacing:53.517715px;}
.ws2c{word-spacing:53.924131px;}
.ws2d{word-spacing:53.958280px;}
.ws1f{word-spacing:54.074862px;}
.ws3{word-spacing:56.871337px;}
.ws2{word-spacing:57.161631px;}
.ws3d{word-spacing:60.438251px;}
.ws39{word-spacing:67.332810px;}
.ws3c{word-spacing:70.030273px;}
.wsf{word-spacing:73.088105px;}
.ws10{word-spacing:73.402773px;}
.ws25{word-spacing:77.822175px;}
.wse{word-spacing:104.462178px;}
.ws4{word-spacing:120.951585px;}
.wsd{word-spacing:124.217000px;}
.ws15{word-spacing:129.661962px;}
._15{margin-left:-14.931769px;}
._6{margin-left:-10.864336px;}
._7{margin-left:-8.632963px;}
._5{margin-left:-6.450818px;}
._4{margin-left:-5.238273px;}
._2{margin-left:-3.993577px;}
._1{margin-left:-2.624067px;}
._0{margin-left:-1.371095px;}
._3{width:1.142056px;}
._8{width:2.191218px;}
._20{width:26.625645px;}
._1f{width:28.224901px;}
._1e{width:29.849241px;}
._12{width:33.615018px;}
._13{width:34.725616px;}
._c{width:36.582834px;}
._d{width:43.820065px;}
._1d{width:45.174158px;}
._14{width:46.394734px;}
._a{width:50.843153px;}
._19{width:59.719197px;}
._11{width:67.172630px;}
._16{width:69.625875px;}
._b{width:75.854472px;}
._1c{width:82.266683px;}
._17{width:87.398930px;}
._18{width:89.781867px;}
._9{width:91.177248px;}
._10{width:109.478939px;}
._1a{width:114.667515px;}
._f{width:141.194854px;}
._1b{width:150.303078px;}
._e{width:157.992227px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc3{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:59.759976px;}
.fs1{font-size:84.239966px;}
.fs7{font-size:89.999964px;}
.fs3{font-size:95.759962px;}
.fs5{font-size:107.999957px;}
.fs2{font-size:120.239952px;}
.fs4{font-size:156.239938px;}
.fs9{font-size:192.239923px;}
.fs0{font-size:239.759904px;}
.fs6{font-size:264.239894px;}
.y4{bottom:-15.659815px;}
.y4a{bottom:-10.799817px;}
.y0{bottom:0.000000px;}
.ya{bottom:5.580185px;}
.y39{bottom:7.200176px;}
.y4c{bottom:8.100183px;}
.y3b{bottom:8.460176px;}
.y3d{bottom:10.440176px;}
.y19{bottom:16.020039px;}
.y55{bottom:61.500333px;}
.y33{bottom:68.520330px;}
.y43{bottom:88.860322px;}
.y54{bottom:97.500318px;}
.y25{bottom:100.920317px;}
.y32{bottom:111.000313px;}
.y64{bottom:117.660310px;}
.y53{bottom:133.500304px;}
.y42{bottom:145.020299px;}
.y24{bottom:147.720298px;}
.y63{bottom:153.660296px;}
.y17{bottom:164.640291px;}
.y52{bottom:169.500289px;}
.y62{bottom:189.660281px;}
.y23{bottom:194.520279px;}
.y41{bottom:201.180277px;}
.y51{bottom:205.500275px;}
.y16{bottom:211.440273px;}
.y8{bottom:214.320271px;}
.y61{bottom:225.660267px;}
.y22{bottom:241.320261px;}
.y50{bottom:241.500261px;}
.y40{bottom:247.980258px;}
.y6b{bottom:248.340258px;}
.y7{bottom:248.880258px;}
.y15{bottom:258.240254px;}
.y60{bottom:261.660253px;}
.y4f{bottom:277.500246px;}
.y6a{bottom:282.900244px;}
.y6{bottom:283.440244px;}
.y21{bottom:288.120242px;}
.y5f{bottom:297.660238px;}
.y14{bottom:305.040235px;}
.y4e{bottom:313.500232px;}
.y69{bottom:317.460230px;}
.y5{bottom:319.620229px;}
.y20{bottom:334.920223px;}
.y65{bottom:344.460219px;}
.y13{bottom:351.840216px;}
.y68{bottom:353.640216px;}
.y3f{bottom:360.300213px;}
.y1f{bottom:381.720204px;}
.y4d{bottom:399.900197px;}
.y3e{bottom:407.100194px;}
.y9{bottom:425.460000px;}
.y4b{bottom:427.800000px;}
.y3c{bottom:443.460000px;}
.y3a{bottom:445.440000px;}
.y3{bottom:446.700000px;}
.y12{bottom:464.160172px;}
.y67{bottom:474.960167px;}
.y1e{bottom:494.040160px;}
.y2c{bottom:499.980157px;}
.y5d{bottom:508.260154px;}
.y2{bottom:509.700153px;}
.y38{bottom:510.060153px;}
.y11{bottom:510.960153px;}
.y49{bottom:522.300148px;}
.y5c{bottom:535.260143px;}
.y2b{bottom:538.860142px;}
.y1d{bottom:540.840141px;}
.y37{bottom:556.860134px;}
.y10{bottom:557.760134px;}
.y48{bottom:558.300134px;}
.y5b{bottom:562.260132px;}
.y2a{bottom:577.740126px;}
.y30{bottom:581.340125px;}
.y1{bottom:581.700124px;}
.y1c{bottom:587.640122px;}
.y5a{bottom:589.260121px;}
.y66{bottom:590.160121px;}
.y47{bottom:594.300119px;}
.yf{bottom:604.560115px;}
.y36{bottom:613.020112px;}
.y59{bottom:616.260111px;}
.y2f{bottom:620.220109px;}
.y29{bottom:630.300105px;}
.y1b{bottom:634.440103px;}
.y58{bottom:643.260100px;}
.ye{bottom:651.360097px;}
.y35{bottom:659.820093px;}
.y46{bottom:666.300091px;}
.y28{bottom:669.180089px;}
.y57{bottom:670.260089px;}
.y2e{bottom:671.880088px;}
.y34{bottom:696.720078px;}
.y56{bottom:697.260078px;}
.y45{bottom:702.300076px;}
.y27{bottom:708.060074px;}
.y2d{bottom:710.760073px;}
.y1a{bottom:722.820068px;}
.y5e{bottom:724.980067px;}
.y44{bottom:729.660065px;}
.yc{bottom:755.760055px;}
.yb{bottom:757.740054px;}
.yd{bottom:758.820054px;}
.y31{bottom:765.300051px;}
.y26{bottom:767.280050px;}
.y18{bottom:778.800000px;}
.he{height:1.260000px;}
.hf{height:3.240000px;}
.h3{height:4.320000px;}
.h11{height:17.820000px;}
.h12{height:18.900000px;}
.h7{height:21.240000px;}
.hb{height:42.300000px;}
.hd{height:44.460000px;}
.h15{height:49.284472px;}
.h13{height:61.523413px;}
.h4{height:69.473293px;}
.h9{height:72.900000px;}
.h14{height:74.223603px;}
.h6{height:78.973914px;}
.ha{height:89.068324px;}
.h5{height:99.162734px;}
.hc{height:104.134529px;}
.h8{height:128.852175px;}
.h16{height:158.541616px;}
.h2{height:197.731679px;}
.h10{height:217.920499px;}
.h0{height:892.920000px;}
.h1{height:893.250000px;}
.w11{width:8.100000px;}
.w17{width:13.680000px;}
.w4{width:21.780000px;}
.wc{width:23.220000px;}
.w6{width:27.720000px;}
.w8{width:34.740000px;}
.w15{width:37.620000px;}
.w5{width:39.600000px;}
.we{width:42.660000px;}
.w12{width:45.360000px;}
.w10{width:63.180000px;}
.wf{width:105.120000px;}
.w13{width:109.260000px;}
.w9{width:114.480000px;}
.wd{width:135.360000px;}
.w16{width:139.860000px;}
.w14{width:155.880000px;}
.w7{width:170.100000px;}
.wb{width:187.380000px;}
.wa{width:199.980000px;}
.w2{width:274.500000px;}
.w3{width:311.940000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x16{left:122.759951px;}
.xf{left:148.319941px;}
.x13{left:155.519938px;}
.x26{left:183.599927px;}
.x32{left:186.839925px;}
.x10{left:188.819924px;}
.x14{left:196.019922px;}
.x31{left:200.879920px;}
.x1{left:205.019918px;}
.xa{left:206.819917px;}
.x1d{left:209.519916px;}
.xc{left:218.879912px;}
.xb{left:227.699909px;}
.x1e{left:243.359903px;}
.x2{left:265.859894px;}
.x12{left:274.679890px;}
.x5{left:277.559889px;}
.x1f{left:297.720000px;}
.xe{left:302.219879px;}
.x25{left:316.439873px;}
.x1a{left:326.879869px;}
.x27{left:329.040000px;}
.x33{left:331.019868px;}
.x20{left:340.200000px;}
.x6{left:355.679858px;}
.x9{left:370.079852px;}
.x1c{left:380.519848px;}
.x28{left:381.780000px;}
.x7{left:415.979834px;}
.xd{left:453.599819px;}
.x8{left:458.279817px;}
.x11{left:474.660000px;}
.x34{left:477.179809px;}
.x19{left:481.859807px;}
.x3{left:493.380000px;}
.x29{left:496.980000px;}
.x4{left:502.559799px;}
.x1b{left:512.099795px;}
.x21{left:525.060000px;}
.x15{left:531.359787px;}
.x30{left:539.639784px;}
.x2a{left:560.160000px;}
.x22{left:574.380000px;}
.x2b{left:578.340000px;}
.x2c{left:633.780000px;}
.x17{left:650.159740px;}
.x18{left:656.099738px;}
.x23{left:703.620000px;}
.x2d{left:753.120000px;}
.x24{left:918.360000px;}
.x2e{left:966.780000px;}
.x2f{left:1116.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.159360pt;}
.ls5{letter-spacing:0.255360pt;}
.ls4{letter-spacing:43.102703pt;}
.ls1{letter-spacing:95.391962pt;}
.ls3{letter-spacing:110.399956pt;}
.ws1{word-spacing:-48.165101pt;}
.wsa{word-spacing:-31.386867pt;}
.ws33{word-spacing:-24.154870pt;}
.ws3f{word-spacing:-18.079993pt;}
.ws40{word-spacing:-12.005115pt;}
.ws16{word-spacing:-3.207849pt;}
.ws26{word-spacing:-3.098412pt;}
.ws41{word-spacing:-1.410174pt;}
.ws2a{word-spacing:-1.287834pt;}
.ws22{word-spacing:-0.647875pt;}
.ws7{word-spacing:-0.630932pt;}
.ws24{word-spacing:-0.584685pt;}
.ws32{word-spacing:-0.569243pt;}
.ws9{word-spacing:-0.169017pt;}
.ws34{word-spacing:-0.042966pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:0.176070pt;}
.ws3e{word-spacing:0.602910pt;}
.ws2f{word-spacing:3.802896pt;}
.ws1d{word-spacing:6.095580pt;}
.wsc{word-spacing:6.366812pt;}
.wsb{word-spacing:7.290364pt;}
.ws1b{word-spacing:10.872216pt;}
.ws1a{word-spacing:12.766817pt;}
.ws35{word-spacing:13.851001pt;}
.ws36{word-spacing:14.042958pt;}
.ws5{word-spacing:14.775298pt;}
.ws2e{word-spacing:14.826067pt;}
.ws17{word-spacing:14.895737pt;}
.ws18{word-spacing:15.023374pt;}
.ws19{word-spacing:15.326930pt;}
.ws28{word-spacing:19.916540pt;}
.ws30{word-spacing:20.171347pt;}
.ws29{word-spacing:20.175645pt;}
.ws27{word-spacing:20.546555pt;}
.ws23{word-spacing:23.095318pt;}
.ws38{word-spacing:26.346016pt;}
.ws14{word-spacing:27.215608pt;}
.ws3b{word-spacing:27.947292pt;}
.ws3a{word-spacing:28.282574pt;}
.ws1c{word-spacing:29.135624pt;}
.ws6{word-spacing:37.175245pt;}
.ws31{word-spacing:44.122932pt;}
.ws13{word-spacing:46.712130pt;}
.ws37{word-spacing:47.322918pt;}
.ws21{word-spacing:47.352228pt;}
.ws1e{word-spacing:47.369033pt;}
.ws20{word-spacing:47.502163pt;}
.ws12{word-spacing:47.551521pt;}
.ws11{word-spacing:47.568641pt;}
.ws2b{word-spacing:47.571302pt;}
.ws2c{word-spacing:47.932561pt;}
.ws2d{word-spacing:47.962915pt;}
.ws1f{word-spacing:48.066544pt;}
.ws3{word-spacing:50.552300pt;}
.ws2{word-spacing:50.810339pt;}
.ws3d{word-spacing:53.722890pt;}
.ws39{word-spacing:59.851387pt;}
.ws3c{word-spacing:62.249132pt;}
.wsf{word-spacing:64.967205pt;}
.ws10{word-spacing:65.246909pt;}
.ws25{word-spacing:69.175267pt;}
.wse{word-spacing:92.855270pt;}
.ws4{word-spacing:107.512520pt;}
.wsd{word-spacing:110.415111pt;}
.ws15{word-spacing:115.255077pt;}
._15{margin-left:-13.272683pt;}
._6{margin-left:-9.657188pt;}
._7{margin-left:-7.673745pt;}
._5{margin-left:-5.734061pt;}
._4{margin-left:-4.656243pt;}
._2{margin-left:-3.549846pt;}
._1{margin-left:-2.332504pt;}
._0{margin-left:-1.218751pt;}
._3{width:1.015161pt;}
._8{width:1.947750pt;}
._20{width:23.667240pt;}
._1f{width:25.088801pt;}
._1e{width:26.532659pt;}
._12{width:29.880016pt;}
._13{width:30.867215pt;}
._c{width:32.518075pt;}
._d{width:38.951169pt;}
._1d{width:40.154807pt;}
._14{width:41.239764pt;}
._a{width:45.193913pt;}
._19{width:53.083731pt;}
._11{width:59.709004pt;}
._16{width:61.889667pt;}
._b{width:67.426197pt;}
._1c{width:73.125941pt;}
._17{width:77.687938pt;}
._18{width:79.806104pt;}
._9{width:81.046443pt;}
._10{width:97.314612pt;}
._1a{width:101.926680pt;}
._f{width:125.506537pt;}
._1b{width:133.602736pt;}
._e{width:140.437535pt;}
.fs8{font-size:53.119979pt;}
.fs1{font-size:74.879970pt;}
.fs7{font-size:79.999968pt;}
.fs3{font-size:85.119966pt;}
.fs5{font-size:95.999962pt;}
.fs2{font-size:106.879957pt;}
.fs4{font-size:138.879944pt;}
.fs9{font-size:170.879932pt;}
.fs0{font-size:213.119915pt;}
.fs6{font-size:234.879906pt;}
.y4{bottom:-13.919836pt;}
.y4a{bottom:-9.599838pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:4.960164pt;}
.y39{bottom:6.400156pt;}
.y4c{bottom:7.200162pt;}
.y3b{bottom:7.520156pt;}
.y3d{bottom:9.280156pt;}
.y19{bottom:14.240035pt;}
.y55{bottom:54.666962pt;}
.y33{bottom:60.906960pt;}
.y43{bottom:78.986953pt;}
.y54{bottom:86.666949pt;}
.y25{bottom:89.706948pt;}
.y32{bottom:98.666945pt;}
.y64{bottom:104.586942pt;}
.y53{bottom:118.666937pt;}
.y42{bottom:128.906933pt;}
.y24{bottom:131.306932pt;}
.y63{bottom:136.586930pt;}
.y17{bottom:146.346926pt;}
.y52{bottom:150.666924pt;}
.y62{bottom:168.586917pt;}
.y23{bottom:172.906915pt;}
.y41{bottom:178.826913pt;}
.y51{bottom:182.666911pt;}
.y16{bottom:187.946909pt;}
.y8{bottom:190.506908pt;}
.y61{bottom:200.586904pt;}
.y22{bottom:214.506898pt;}
.y50{bottom:214.666898pt;}
.y40{bottom:220.426896pt;}
.y6b{bottom:220.746896pt;}
.y7{bottom:221.226896pt;}
.y15{bottom:229.546892pt;}
.y60{bottom:232.586891pt;}
.y4f{bottom:246.666885pt;}
.y6a{bottom:251.466884pt;}
.y6{bottom:251.946883pt;}
.y21{bottom:256.106882pt;}
.y5f{bottom:264.586878pt;}
.y14{bottom:271.146876pt;}
.y4e{bottom:278.666873pt;}
.y69{bottom:282.186871pt;}
.y5{bottom:284.106871pt;}
.y20{bottom:297.706865pt;}
.y65{bottom:306.186862pt;}
.y13{bottom:312.746859pt;}
.y68{bottom:314.346858pt;}
.y3f{bottom:320.266856pt;}
.y1f{bottom:339.306848pt;}
.y4d{bottom:355.466842pt;}
.y3e{bottom:361.866839pt;}
.y9{bottom:378.186667pt;}
.y4b{bottom:380.266667pt;}
.y3c{bottom:394.186667pt;}
.y3a{bottom:395.946667pt;}
.y3{bottom:397.066667pt;}
.y12{bottom:412.586819pt;}
.y67{bottom:422.186815pt;}
.y1e{bottom:439.146808pt;}
.y2c{bottom:444.426806pt;}
.y5d{bottom:451.786803pt;}
.y2{bottom:453.066803pt;}
.y38{bottom:453.386803pt;}
.y11{bottom:454.186802pt;}
.y49{bottom:464.266798pt;}
.y5c{bottom:475.786794pt;}
.y2b{bottom:478.986793pt;}
.y1d{bottom:480.746792pt;}
.y37{bottom:494.986786pt;}
.y10{bottom:495.786786pt;}
.y48{bottom:496.266786pt;}
.y5b{bottom:499.786784pt;}
.y2a{bottom:513.546779pt;}
.y30{bottom:516.746777pt;}
.y1{bottom:517.066777pt;}
.y1c{bottom:522.346775pt;}
.y5a{bottom:523.786775pt;}
.y66{bottom:524.586774pt;}
.y47{bottom:528.266773pt;}
.yf{bottom:537.386769pt;}
.y36{bottom:544.906766pt;}
.y59{bottom:547.786765pt;}
.y2f{bottom:551.306764pt;}
.y29{bottom:560.266760pt;}
.y1b{bottom:563.946759pt;}
.y58{bottom:571.786755pt;}
.ye{bottom:578.986753pt;}
.y35{bottom:586.506750pt;}
.y46{bottom:592.266747pt;}
.y28{bottom:594.826746pt;}
.y57{bottom:595.786746pt;}
.y2e{bottom:597.226745pt;}
.y34{bottom:619.306736pt;}
.y56{bottom:619.786736pt;}
.y45{bottom:624.266734pt;}
.y27{bottom:629.386732pt;}
.y2d{bottom:631.786731pt;}
.y1a{bottom:642.506727pt;}
.y5e{bottom:644.426726pt;}
.y44{bottom:648.586725pt;}
.yc{bottom:671.786715pt;}
.yb{bottom:673.546715pt;}
.yd{bottom:674.506714pt;}
.y31{bottom:680.266712pt;}
.y26{bottom:682.026711pt;}
.y18{bottom:692.266667pt;}
.he{height:1.120000pt;}
.hf{height:2.880000pt;}
.h3{height:3.840000pt;}
.h11{height:15.840000pt;}
.h12{height:16.800000pt;}
.h7{height:18.880000pt;}
.hb{height:37.600000pt;}
.hd{height:39.520000pt;}
.h15{height:43.808420pt;}
.h13{height:54.687478pt;}
.h4{height:61.754038pt;}
.h9{height:64.800000pt;}
.h14{height:65.976536pt;}
.h6{height:70.199034pt;}
.ha{height:79.171843pt;}
.h5{height:88.144652pt;}
.hc{height:92.564025pt;}
.h8{height:114.535267pt;}
.h16{height:140.925881pt;}
.h2{height:175.761492pt;}
.h10{height:193.707110pt;}
.h0{height:793.706667pt;}
.h1{height:794.000000pt;}
.w11{width:7.200000pt;}
.w17{width:12.160000pt;}
.w4{width:19.360000pt;}
.wc{width:20.640000pt;}
.w6{width:24.640000pt;}
.w8{width:30.880000pt;}
.w15{width:33.440000pt;}
.w5{width:35.200000pt;}
.we{width:37.920000pt;}
.w12{width:40.320000pt;}
.w10{width:56.160000pt;}
.wf{width:93.440000pt;}
.w13{width:97.120000pt;}
.w9{width:101.760000pt;}
.wd{width:120.320000pt;}
.w16{width:124.320000pt;}
.w14{width:138.560000pt;}
.w7{width:151.200000pt;}
.wb{width:166.560000pt;}
.wa{width:177.760000pt;}
.w2{width:244.000000pt;}
.w3{width:277.280000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x16{left:109.119956pt;}
.xf{left:131.839947pt;}
.x13{left:138.239945pt;}
.x26{left:163.199935pt;}
.x32{left:166.079934pt;}
.x10{left:167.839933pt;}
.x14{left:174.239930pt;}
.x31{left:178.559929pt;}
.x1{left:182.239927pt;}
.xa{left:183.839926pt;}
.x1d{left:186.239926pt;}
.xc{left:194.559922pt;}
.xb{left:202.399919pt;}
.x1e{left:216.319913pt;}
.x2{left:236.319905pt;}
.x12{left:244.159902pt;}
.x5{left:246.719901pt;}
.x1f{left:264.640000pt;}
.xe{left:268.639893pt;}
.x25{left:281.279887pt;}
.x1a{left:290.559884pt;}
.x27{left:292.480000pt;}
.x33{left:294.239882pt;}
.x20{left:302.400000pt;}
.x6{left:316.159874pt;}
.x9{left:328.959868pt;}
.x1c{left:338.239865pt;}
.x28{left:339.360000pt;}
.x7{left:369.759852pt;}
.xd{left:403.199839pt;}
.x8{left:407.359837pt;}
.x11{left:421.920000pt;}
.x34{left:424.159830pt;}
.x19{left:428.319829pt;}
.x3{left:438.560000pt;}
.x29{left:441.760000pt;}
.x4{left:446.719821pt;}
.x1b{left:455.199818pt;}
.x21{left:466.720000pt;}
.x15{left:472.319811pt;}
.x30{left:479.679808pt;}
.x2a{left:497.920000pt;}
.x22{left:510.560000pt;}
.x2b{left:514.080000pt;}
.x2c{left:563.360000pt;}
.x17{left:577.919769pt;}
.x18{left:583.199767pt;}
.x23{left:625.440000pt;}
.x2d{left:669.440000pt;}
.x24{left:816.320000pt;}
.x2e{left:859.360000pt;}
.x2f{left:992.480000pt;}
}




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