
    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_0a1e1d3d27da29c611df81f7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.145000;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_7f8c8cd1d0826f392dd0aa59.woff')format("woff");}.ff2{font-family:ff2;line-height:0.980957;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_776f6b68bf0b14c8e25c1b32.woff')format("woff");}.ff3{font-family:ff3;line-height:1.145000;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_4d7fbc004754d62a1cfe33ed.woff')format("woff");}.ff4{font-family:ff4;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.492000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.198000px;}
.ls1{letter-spacing:69.780000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-134.531250px;}
.ws3{word-spacing:-134.488200px;}
.ws9{word-spacing:-113.781150px;}
.ws0{word-spacing:-93.117150px;}
.wsa{word-spacing:-76.327650px;}
.ws8{word-spacing:-76.284600px;}
.ws5{word-spacing:-73.744650px;}
.ws4{word-spacing:-73.701600px;}
.ws6{word-spacing:-71.118600px;}
.wsb{word-spacing:-10.170000px;}
.ws7{word-spacing:-0.630600px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-9.927150px;}
._4{margin-left:-5.556000px;}
._3{margin-left:-3.568950px;}
._0{margin-left:-1.946700px;}
._1{width:1.297800px;}
._2{width:3.244500px;}
._7{width:4.484400px;}
._6{width:6.315150px;}
._a{width:74.428650px;}
._8{width:75.684600px;}
._9{width:77.355300px;}
._c{width:225.910800px;}
._b{width:1313.657700px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:45.000000px;}
.fsd{font-size:108.150000px;}
.fsa{font-size:126.150000px;}
.fsc{font-size:144.150000px;}
.fs1{font-size:144.300000px;}
.fs8{font-size:238.800000px;}
.fs9{font-size:238.950000px;}
.fsb{font-size:247.800000px;}
.fs3{font-size:256.800000px;}
.fs6{font-size:256.950000px;}
.fse{font-size:265.800000px;}
.fs11{font-size:265.950000px;}
.fs5{font-size:319.950000px;}
.fs0{font-size:324.450000px;}
.fs10{font-size:396.450000px;}
.fsf{font-size:396.600000px;}
.fs4{font-size:468.600000px;}
.fs2{font-size:468.750000px;}
.y0{bottom:0.000000px;}
.y72{bottom:4.500000px;}
.y79{bottom:10.162500px;}
.y3{bottom:17.962500px;}
.y14{bottom:43.950000px;}
.y63{bottom:51.975000px;}
.y61{bottom:61.762500px;}
.y6b{bottom:88.650000px;}
.y25{bottom:91.612500px;}
.y7a{bottom:95.737500px;}
.y75{bottom:95.775000px;}
.y74{bottom:109.275000px;}
.y3b{bottom:109.537500px;}
.y31{bottom:109.612500px;}
.y37{bottom:109.987500px;}
.y17{bottom:112.650000px;}
.y4f{bottom:113.775000px;}
.y45{bottom:116.025000px;}
.y62{bottom:121.837500px;}
.y58{bottom:124.762500px;}
.y60{bottom:131.625000px;}
.y73{bottom:136.312500px;}
.y24{bottom:149.062500px;}
.y3a{bottom:179.355000px;}
.y36{bottom:179.805000px;}
.y44{bottom:185.880000px;}
.y2{bottom:187.380000px;}
.y70{bottom:192.720000px;}
.y57{bottom:195.720000px;}
.y23{bottom:207.630000px;}
.y6a{bottom:221.730000px;}
.y49{bottom:226.125000px;}
.y39{bottom:249.225000px;}
.y35{bottom:249.675000px;}
.y43{bottom:255.705000px;}
.y6f{bottom:262.545000px;}
.y56{bottom:266.700000px;}
.y65{bottom:274.470000px;}
.y71{bottom:274.800000px;}
.y1{bottom:275.280000px;}
.y48{bottom:276.780000px;}
.y78{bottom:278.280000px;}
.y1e{bottom:288.525000px;}
.y69{bottom:291.600000px;}
.y19{bottom:296.295000px;}
.y50{bottom:301.920000px;}
.y4e{bottom:301.950000px;}
.y4d{bottom:315.450000px;}
.y29{bottom:317.880000px;}
.y38{bottom:319.050000px;}
.y27{bottom:319.275000px;}
.y34{bottom:319.500000px;}
.y18{bottom:323.325000px;}
.y5d{bottom:328.875000px;}
.y6e{bottom:332.400000px;}
.y55{bottom:338.820000px;}
.y64{bottom:344.280000px;}
.y5a{bottom:358.125000px;}
.y1d{bottom:358.350000px;}
.y2f{bottom:359.880000px;}
.y22{bottom:364.950000px;}
.yc{bottom:365.250000px;}
.y28{bottom:370.845000px;}
.y2c{bottom:371.100000px;}
.y26{bottom:372.225000px;}
.y47{bottom:386.070000px;}
.y2d{bottom:393.975000px;}
.y5c{bottom:398.700000px;}
.y2a{bottom:417.000000px;}
.y2e{bottom:426.375000px;}
.yd{bottom:427.800000px;}
.y59{bottom:427.995000px;}
.y1c{bottom:428.220000px;}
.y68{bottom:431.280000px;}
.y2b{bottom:431.970000px;}
.y21{bottom:434.820000px;}
.yb{bottom:435.075000px;}
.y5{bottom:435.195000px;}
.y5b{bottom:436.125000px;}
.y16{bottom:453.975000px;}
.y15{bottom:467.505000px;}
.y46{bottom:469.455000px;}
.y6d{bottom:472.095000px;}
.y54{bottom:481.875000px;}
.y8{bottom:486.330000px;}
.y52{bottom:494.025000px;}
.y67{bottom:501.150000px;}
.y7{bottom:501.450000px;}
.y11{bottom:509.655000px;}
.y13{bottom:511.095000px;}
.y1f{bottom:533.820000px;}
.y33{bottom:539.220000px;}
.y6c{bottom:541.950000px;}
.y4a{bottom:563.550000px;}
.y4{bottom:567.375000px;}
.y66{bottom:570.975000px;}
.y5f{bottom:573.150000px;}
.y10{bottom:579.495000px;}
.y12{bottom:580.905000px;}
.y3e{bottom:593.745000px;}
.y6{bottom:597.600000px;}
.y40{bottom:603.225000px;}
.y1b{bottom:604.380000px;}
.y42{bottom:606.405000px;}
.y77{bottom:608.370000px;}
.y32{bottom:609.030000px;}
.y7c{bottom:613.470000px;}
.y4c{bottom:617.475000px;}
.yf{bottom:622.725000px;}
.y5e{bottom:642.975000px;}
.y3c{bottom:643.725000px;}
.y9{bottom:649.650000px;}
.y30{bottom:651.600000px;}
.y20{bottom:656.130000px;}
.y3d{bottom:663.570000px;}
.y4b{bottom:664.380000px;}
.ya{bottom:668.400000px;}
.y3f{bottom:673.050000px;}
.y1a{bottom:674.250000px;}
.y41{bottom:676.275000px;}
.y76{bottom:678.225000px;}
.y7b{bottom:683.325000px;}
.ye{bottom:692.595000px;}
.y51{bottom:702.720000px;}
.y53{bottom:705.225000px;}
.h9{height:44.758301px;}
.h11{height:91.409985px;}
.hd{height:103.064550px;}
.h10{height:117.770550px;}
.hf{height:117.893100px;}
.h2{height:121.964502px;}
.h18{height:146.437500px;}
.h17{height:146.475000px;}
.hb{height:195.099600px;}
.hc{height:195.222150px;}
.he{height:202.452600px;}
.h4{height:209.805600px;}
.h7{height:209.928150px;}
.h12{height:217.158600px;}
.h16{height:217.281150px;}
.h6{height:261.399150px;}
.h1{height:265.075650px;}
.h14{height:323.899650px;}
.h13{height:324.022200px;}
.h15{height:325.575000px;}
.ha{height:333.495000px;}
.h5{height:382.846200px;}
.h3{height:382.968750px;}
.h8{height:477.630000px;}
.h0{height:810.000000px;}
.w6{width:146.362500px;}
.w5{width:325.380000px;}
.w4{width:325.395000px;}
.w2{width:486.375000px;}
.w3{width:665.400000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x69{left:16.875000px;}
.x7{left:29.624979px;}
.x3f{left:38.474979px;}
.x15{left:41.662500px;}
.x6{left:42.899979px;}
.x3d{left:58.462479px;}
.x34{left:71.324979px;}
.x3e{left:81.637479px;}
.x1b{left:101.662479px;}
.x58{left:111.749979px;}
.x1{left:116.924979px;}
.x5{left:130.649979px;}
.x62{left:133.949979px;}
.x57{left:138.299979px;}
.x51{left:153.404979px;}
.x60{left:156.299979px;}
.x68{left:158.249979px;}
.x35{left:163.529979px;}
.x1c{left:167.429979px;}
.x6b{left:170.924979px;}
.x16{left:173.549979px;}
.x3c{left:177.029979px;}
.x66{left:182.729979px;}
.x29{left:185.474979px;}
.x39{left:188.954979px;}
.x4{left:195.599979px;}
.x43{left:208.275000px;}
.x41{left:210.524979px;}
.x38{left:211.724979px;}
.x40{left:217.274979px;}
.x37{left:223.154979px;}
.x45{left:224.324979px;}
.x5f{left:231.524979px;}
.xd{left:234.599979px;}
.x46{left:236.399979px;}
.x52{left:247.694979px;}
.x18{left:249.899979px;}
.x27{left:254.819979px;}
.x32{left:280.499979px;}
.x2f{left:284.444979px;}
.x6a{left:286.094979px;}
.x33{left:288.194979px;}
.x1a{left:291.749979px;}
.x2a{left:299.819979px;}
.x30{left:321.404979px;}
.x61{left:329.474979px;}
.x53{left:332.024979px;}
.x31{left:342.224979px;}
.x63{left:365.144979px;}
.x42{left:368.024979px;}
.x1d{left:387.029979px;}
.x54{left:401.999979px;}
.x26{left:422.069979px;}
.x1e{left:438.899979px;}
.x22{left:460.799979px;}
.x2{left:467.144979px;}
.x23{left:493.544979px;}
.x5d{left:504.374979px;}
.x5b{left:511.424979px;}
.x1f{left:513.119979px;}
.x25{left:520.874979px;}
.x3a{left:530.129979px;}
.x5a{left:545.549979px;}
.x17{left:551.369979px;}
.xa{left:552.974979px;}
.x67{left:560.369979px;}
.x36{left:572.624979px;}
.x3b{left:576.674979px;}
.x19{left:585.569979px;}
.x50{left:588.419979px;}
.x21{left:596.204979px;}
.x20{left:613.499979px;}
.x59{left:631.529979px;}
.x8{left:693.674979px;}
.x5e{left:706.949979px;}
.x24{left:715.319979px;}
.x3{left:759.029979px;}
.x2c{left:760.769979px;}
.x2b{left:782.624979px;}
.x2d{left:803.444979px;}
.x5c{left:821.654979px;}
.x14{left:823.005000px;}
.x2e{left:824.294979px;}
.x28{left:829.649979px;}
.x64{left:859.004979px;}
.x9{left:866.924979px;}
.x12{left:874.544979px;}
.xc{left:881.219979px;}
.x44{left:888.300000px;}
.x49{left:907.874979px;}
.x13{left:922.499979px;}
.x48{left:932.174979px;}
.x47{left:949.649979px;}
.x4d{left:952.349979px;}
.x4b{left:955.724979px;}
.xf{left:961.829979px;}
.xe{left:964.499979px;}
.x11{left:982.394979px;}
.x4a{left:988.649979px;}
.x4e{left:990.899979px;}
.xb{left:995.354979px;}
.x10{left:1024.994979px;}
.x4f{left:1044.629979px;}
.x56{left:1063.469979px;}
.x4c{left:1072.724979px;}
.x55{left:1116.674979px;}
.x65{left:1289.100000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.437333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.176000pt;}
.ls1{letter-spacing:62.026667pt;}
.ws2{word-spacing:-119.583333pt;}
.ws3{word-spacing:-119.545067pt;}
.ws9{word-spacing:-101.138800pt;}
.ws0{word-spacing:-82.770800pt;}
.wsa{word-spacing:-67.846800pt;}
.ws8{word-spacing:-67.808533pt;}
.ws5{word-spacing:-65.550800pt;}
.ws4{word-spacing:-65.512533pt;}
.ws6{word-spacing:-63.216533pt;}
.wsb{word-spacing:-9.040000pt;}
.ws7{word-spacing:-0.560533pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-8.824133pt;}
._4{margin-left:-4.938667pt;}
._3{margin-left:-3.172400pt;}
._0{margin-left:-1.730400pt;}
._1{width:1.153600pt;}
._2{width:2.884000pt;}
._7{width:3.986133pt;}
._6{width:5.613467pt;}
._a{width:66.158800pt;}
._8{width:67.275200pt;}
._9{width:68.760267pt;}
._c{width:200.809600pt;}
._b{width:1167.695733pt;}
.fs7{font-size:40.000000pt;}
.fsd{font-size:96.133333pt;}
.fsa{font-size:112.133333pt;}
.fsc{font-size:128.133333pt;}
.fs1{font-size:128.266667pt;}
.fs8{font-size:212.266667pt;}
.fs9{font-size:212.400000pt;}
.fsb{font-size:220.266667pt;}
.fs3{font-size:228.266667pt;}
.fs6{font-size:228.400000pt;}
.fse{font-size:236.266667pt;}
.fs11{font-size:236.400000pt;}
.fs5{font-size:284.400000pt;}
.fs0{font-size:288.400000pt;}
.fs10{font-size:352.400000pt;}
.fsf{font-size:352.533333pt;}
.fs4{font-size:416.533333pt;}
.fs2{font-size:416.666667pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:4.000000pt;}
.y79{bottom:9.033333pt;}
.y3{bottom:15.966667pt;}
.y14{bottom:39.066667pt;}
.y63{bottom:46.200000pt;}
.y61{bottom:54.900000pt;}
.y6b{bottom:78.800000pt;}
.y25{bottom:81.433333pt;}
.y7a{bottom:85.100000pt;}
.y75{bottom:85.133333pt;}
.y74{bottom:97.133333pt;}
.y3b{bottom:97.366667pt;}
.y31{bottom:97.433333pt;}
.y37{bottom:97.766667pt;}
.y17{bottom:100.133333pt;}
.y4f{bottom:101.133333pt;}
.y45{bottom:103.133333pt;}
.y62{bottom:108.300000pt;}
.y58{bottom:110.900000pt;}
.y60{bottom:117.000000pt;}
.y73{bottom:121.166667pt;}
.y24{bottom:132.500000pt;}
.y3a{bottom:159.426667pt;}
.y36{bottom:159.826667pt;}
.y44{bottom:165.226667pt;}
.y2{bottom:166.560000pt;}
.y70{bottom:171.306667pt;}
.y57{bottom:173.973333pt;}
.y23{bottom:184.560000pt;}
.y6a{bottom:197.093333pt;}
.y49{bottom:201.000000pt;}
.y39{bottom:221.533333pt;}
.y35{bottom:221.933333pt;}
.y43{bottom:227.293333pt;}
.y6f{bottom:233.373333pt;}
.y56{bottom:237.066667pt;}
.y65{bottom:243.973333pt;}
.y71{bottom:244.266667pt;}
.y1{bottom:244.693333pt;}
.y48{bottom:246.026667pt;}
.y78{bottom:247.360000pt;}
.y1e{bottom:256.466667pt;}
.y69{bottom:259.200000pt;}
.y19{bottom:263.373333pt;}
.y50{bottom:268.373333pt;}
.y4e{bottom:268.400000pt;}
.y4d{bottom:280.400000pt;}
.y29{bottom:282.560000pt;}
.y38{bottom:283.600000pt;}
.y27{bottom:283.800000pt;}
.y34{bottom:284.000000pt;}
.y18{bottom:287.400000pt;}
.y5d{bottom:292.333333pt;}
.y6e{bottom:295.466667pt;}
.y55{bottom:301.173333pt;}
.y64{bottom:306.026667pt;}
.y5a{bottom:318.333333pt;}
.y1d{bottom:318.533333pt;}
.y2f{bottom:319.893333pt;}
.y22{bottom:324.400000pt;}
.yc{bottom:324.666667pt;}
.y28{bottom:329.640000pt;}
.y2c{bottom:329.866667pt;}
.y26{bottom:330.866667pt;}
.y47{bottom:343.173333pt;}
.y2d{bottom:350.200000pt;}
.y5c{bottom:354.400000pt;}
.y2a{bottom:370.666667pt;}
.y2e{bottom:379.000000pt;}
.yd{bottom:380.266667pt;}
.y59{bottom:380.440000pt;}
.y1c{bottom:380.640000pt;}
.y68{bottom:383.360000pt;}
.y2b{bottom:383.973333pt;}
.y21{bottom:386.506667pt;}
.yb{bottom:386.733333pt;}
.y5{bottom:386.840000pt;}
.y5b{bottom:387.666667pt;}
.y16{bottom:403.533333pt;}
.y15{bottom:415.560000pt;}
.y46{bottom:417.293333pt;}
.y6d{bottom:419.640000pt;}
.y54{bottom:428.333333pt;}
.y8{bottom:432.293333pt;}
.y52{bottom:439.133333pt;}
.y67{bottom:445.466667pt;}
.y7{bottom:445.733333pt;}
.y11{bottom:453.026667pt;}
.y13{bottom:454.306667pt;}
.y1f{bottom:474.506667pt;}
.y33{bottom:479.306667pt;}
.y6c{bottom:481.733333pt;}
.y4a{bottom:500.933333pt;}
.y4{bottom:504.333333pt;}
.y66{bottom:507.533333pt;}
.y5f{bottom:509.466667pt;}
.y10{bottom:515.106667pt;}
.y12{bottom:516.360000pt;}
.y3e{bottom:527.773333pt;}
.y6{bottom:531.200000pt;}
.y40{bottom:536.200000pt;}
.y1b{bottom:537.226667pt;}
.y42{bottom:539.026667pt;}
.y77{bottom:540.773333pt;}
.y32{bottom:541.360000pt;}
.y7c{bottom:545.306667pt;}
.y4c{bottom:548.866667pt;}
.yf{bottom:553.533333pt;}
.y5e{bottom:571.533333pt;}
.y3c{bottom:572.200000pt;}
.y9{bottom:577.466667pt;}
.y30{bottom:579.200000pt;}
.y20{bottom:583.226667pt;}
.y3d{bottom:589.840000pt;}
.y4b{bottom:590.560000pt;}
.ya{bottom:594.133333pt;}
.y3f{bottom:598.266667pt;}
.y1a{bottom:599.333333pt;}
.y41{bottom:601.133333pt;}
.y76{bottom:602.866667pt;}
.y7b{bottom:607.400000pt;}
.ye{bottom:615.640000pt;}
.y51{bottom:624.640000pt;}
.y53{bottom:626.866667pt;}
.h9{height:39.785156pt;}
.h11{height:81.253320pt;}
.hd{height:91.612933pt;}
.h10{height:104.684933pt;}
.hf{height:104.793867pt;}
.h2{height:108.412891pt;}
.h18{height:130.166667pt;}
.h17{height:130.200000pt;}
.hb{height:173.421867pt;}
.hc{height:173.530800pt;}
.he{height:179.957867pt;}
.h4{height:186.493867pt;}
.h7{height:186.602800pt;}
.h12{height:193.029867pt;}
.h16{height:193.138800pt;}
.h6{height:232.354800pt;}
.h1{height:235.622800pt;}
.h14{height:287.910800pt;}
.h13{height:288.019733pt;}
.h15{height:289.400000pt;}
.ha{height:296.440000pt;}
.h5{height:340.307733pt;}
.h3{height:340.416667pt;}
.h8{height:424.560000pt;}
.h0{height:720.000000pt;}
.w6{width:130.100000pt;}
.w5{width:289.226667pt;}
.w4{width:289.240000pt;}
.w2{width:432.333333pt;}
.w3{width:591.466667pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x69{left:15.000000pt;}
.x7{left:26.333314pt;}
.x3f{left:34.199981pt;}
.x15{left:37.033333pt;}
.x6{left:38.133314pt;}
.x3d{left:51.966648pt;}
.x34{left:63.399981pt;}
.x3e{left:72.566648pt;}
.x1b{left:90.366648pt;}
.x58{left:99.333314pt;}
.x1{left:103.933314pt;}
.x5{left:116.133314pt;}
.x62{left:119.066648pt;}
.x57{left:122.933314pt;}
.x51{left:136.359981pt;}
.x60{left:138.933314pt;}
.x68{left:140.666648pt;}
.x35{left:145.359981pt;}
.x1c{left:148.826648pt;}
.x6b{left:151.933314pt;}
.x16{left:154.266648pt;}
.x3c{left:157.359981pt;}
.x66{left:162.426648pt;}
.x29{left:164.866648pt;}
.x39{left:167.959981pt;}
.x4{left:173.866648pt;}
.x43{left:185.133333pt;}
.x41{left:187.133314pt;}
.x38{left:188.199981pt;}
.x40{left:193.133314pt;}
.x37{left:198.359981pt;}
.x45{left:199.399981pt;}
.x5f{left:205.799981pt;}
.xd{left:208.533314pt;}
.x46{left:210.133314pt;}
.x52{left:220.173314pt;}
.x18{left:222.133314pt;}
.x27{left:226.506648pt;}
.x32{left:249.333314pt;}
.x2f{left:252.839981pt;}
.x6a{left:254.306648pt;}
.x33{left:256.173314pt;}
.x1a{left:259.333314pt;}
.x2a{left:266.506648pt;}
.x30{left:285.693314pt;}
.x61{left:292.866648pt;}
.x53{left:295.133314pt;}
.x31{left:304.199981pt;}
.x63{left:324.573314pt;}
.x42{left:327.133314pt;}
.x1d{left:344.026648pt;}
.x54{left:357.333314pt;}
.x26{left:375.173314pt;}
.x1e{left:390.133314pt;}
.x22{left:409.599981pt;}
.x2{left:415.239981pt;}
.x23{left:438.706648pt;}
.x5d{left:448.333314pt;}
.x5b{left:454.599981pt;}
.x1f{left:456.106648pt;}
.x25{left:462.999981pt;}
.x3a{left:471.226648pt;}
.x5a{left:484.933314pt;}
.x17{left:490.106648pt;}
.xa{left:491.533314pt;}
.x67{left:498.106648pt;}
.x36{left:508.999981pt;}
.x3b{left:512.599981pt;}
.x19{left:520.506648pt;}
.x50{left:523.039981pt;}
.x21{left:529.959981pt;}
.x20{left:545.333314pt;}
.x59{left:561.359981pt;}
.x8{left:616.599981pt;}
.x5e{left:628.399981pt;}
.x24{left:635.839981pt;}
.x3{left:674.693314pt;}
.x2c{left:676.239981pt;}
.x2b{left:695.666648pt;}
.x2d{left:714.173314pt;}
.x5c{left:730.359981pt;}
.x14{left:731.560000pt;}
.x2e{left:732.706648pt;}
.x28{left:737.466648pt;}
.x64{left:763.559981pt;}
.x9{left:770.599981pt;}
.x12{left:777.373314pt;}
.xc{left:783.306648pt;}
.x44{left:789.600000pt;}
.x49{left:806.999981pt;}
.x13{left:819.999981pt;}
.x48{left:828.599981pt;}
.x47{left:844.133314pt;}
.x4d{left:846.533314pt;}
.x4b{left:849.533314pt;}
.xf{left:854.959981pt;}
.xe{left:857.333314pt;}
.x11{left:873.239981pt;}
.x4a{left:878.799981pt;}
.x4e{left:880.799981pt;}
.xb{left:884.759981pt;}
.x10{left:911.106648pt;}
.x4f{left:928.559981pt;}
.x56{left:945.306648pt;}
.x4c{left:953.533314pt;}
.x55{left:992.599981pt;}
.x65{left:1145.866667pt;}
}




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