
    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_8361919a79cfd313a39b6aab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031000;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_8ff3e98a9da260f5f153bf8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_334d2920860828033a0b2953.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.991000;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_6343c82f8a8b45b4d8ac5131.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_3c2eb57eccbad1bcaf083e67.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_77b511c1d1e9d6b630aeb8c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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;}
.v1{vertical-align:74.102312px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:107.972030px;}
.ls5{letter-spacing:107.986172px;}
.ls1{letter-spacing:107.986253px;}
.ls2{letter-spacing:107.986325px;}
.ls3{letter-spacing:108.000363px;}
.ls6{letter-spacing:108.000498px;}
.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;}
}
.ws3{word-spacing:-85.680000px;}
.ws9{word-spacing:-57.960001px;}
.wsd{word-spacing:-49.140002px;}
.ws8{word-spacing:-46.620000px;}
.ws4{word-spacing:-41.580001px;}
.ws11{word-spacing:-38.400000px;}
.wse{word-spacing:-30.618001px;}
.ws6{word-spacing:-27.720002px;}
.wsb{word-spacing:-26.880002px;}
.wsa{word-spacing:-25.200000px;}
.wsc{word-spacing:-23.940001px;}
.ws2{word-spacing:-23.520000px;}
.ws12{word-spacing:-20.160001px;}
.wsf{word-spacing:-18.900001px;}
.ws10{word-spacing:-17.496001px;}
.ws13{word-spacing:-16.800000px;}
.ws0{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:1019.613539px;}
.ws7{word-spacing:1498.803416px;}
._e{margin-left:-34.776000px;}
._c{margin-left:-18.996001px;}
._7{margin-left:-16.500001px;}
._5{margin-left:-14.184000px;}
._4{margin-left:-10.572000px;}
._9{margin-left:-9.120000px;}
._2{margin-left:-7.440000px;}
._b{margin-left:-6.270001px;}
._6{margin-left:-4.716000px;}
._0{margin-left:-3.432000px;}
._d{margin-left:-2.430000px;}
._1{margin-left:-1.404000px;}
._3{width:1.680000px;}
._8{width:4.224001px;}
._a{width:5.510016px;}
.fc3{color:rgb(229,77,49);}
.fc2{color:rgb(41,41,41);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000004px;}
.fs12{font-size:72.000002px;}
.fs10{font-size:78.000005px;}
.fs5{font-size:84.000000px;}
.fsb{font-size:90.000003px;}
.fsd{font-size:96.000006px;}
.fsc{font-size:114.000007px;}
.fs3{font-size:120.000001px;}
.fs11{font-size:126.000004px;}
.fs8{font-size:132.000007px;}
.fs0{font-size:156.000011px;}
.fse{font-size:174.000012px;}
.fs4{font-size:186.000000px;}
.fs7{font-size:198.000006px;}
.fs9{font-size:222.000001px;}
.fsf{font-size:234.000007px;}
.fsa{font-size:276.000003px;}
.fs6{font-size:408.000001px;}
.y0{bottom:0.000000px;}
.y84{bottom:50.185613px;}
.y83{bottom:68.185614px;}
.y66{bottom:99.492194px;}
.y59{bottom:101.132466px;}
.yf{bottom:110.036914px;}
.y28{bottom:112.646110px;}
.y42{bottom:114.284043px;}
.y79{bottom:114.746159px;}
.y6{bottom:122.994659px;}
.y65{bottom:124.692217px;}
.yb{bottom:126.679824px;}
.y4c{bottom:126.786011px;}
.y58{bottom:128.132467px;}
.y19{bottom:129.232188px;}
.y35{bottom:130.142444px;}
.ye{bottom:135.236912px;}
.y20{bottom:141.642168px;}
.y41{bottom:142.724021px;}
.y6f{bottom:143.651820px;}
.y64{bottom:149.892252px;}
.y13{bottom:151.678335px;}
.y78{bottom:152.546172px;}
.y4b{bottom:153.786012px;}
.y57{bottom:155.132468px;}
.y16{bottom:158.625098px;}
.y34{bottom:160.022434px;}
.y8{bottom:164.079638px;}
.y9{bottom:164.079661px;}
.y1a{bottom:165.566689px;}
.y1f{bottom:168.642167px;}
.y18{bottom:168.832190px;}
.y5{bottom:174.702744px;}
.y63{bottom:175.092230px;}
.y40{bottom:175.484034px;}
.y6e{bottom:177.851821px;}
.y27{bottom:181.046090px;}
.y56{bottom:182.132503px;}
.y4a{bottom:182.225990px;}
.y37{bottom:184.049379px;}
.y12{bottom:187.678337px;}
.y30{bottom:189.542446px;}
.y77{bottom:190.346184px;}
.y4{bottom:194.502744px;}
.y82{bottom:199.017279px;}
.y62{bottom:202.092208px;}
.y3f{bottom:202.484046px;}
.y17{bottom:208.432191px;}
.y55{bottom:210.572481px;}
.y6d{bottom:212.051811px;}
.y49{bottom:214.986002px;}
.y26{bottom:215.246091px;}
.y2f{bottom:218.342458px;}
.y81{bottom:226.377275px;}
.y76{bottom:228.146185px;}
.y3e{bottom:230.924047px;}
.y61{bottom:234.492198px;}
.y54{bottom:243.332493px;}
.y48{bottom:243.426015px;}
.y6c{bottom:246.251801px;}
.y2e{bottom:247.142459px;}
.y80{bottom:247.977270px;}
.y36{bottom:251.172562px;}
.y3a{bottom:256.941360px;}
.y60{bottom:259.692188px;}
.y11{bottom:260.582974px;}
.y3{bottom:261.086164px;}
.y3d{bottom:265.124048px;}
.y75{bottom:265.946198px;}
.y7f{bottom:269.577270px;}
.y53{bottom:271.772472px;}
.y2d{bottom:275.942471px;}
.y47{bottom:277.626016px;}
.y6b{bottom:279.011802px;}
.yd{bottom:279.870587px;}
.y25{bottom:283.646082px;}
.y5f{bottom:284.892188px;}
.y7e{bottom:294.057271px;}
.y3c{bottom:299.324049px;}
.y74{bottom:303.746210px;}
.y52{bottom:304.532473px;}
.y2c{bottom:304.742472px;}
.yc{bottom:305.070585px;}
.y33{bottom:306.182461px;}
.y6a{bottom:307.451803px;}
.y39{bottom:309.141362px;}
.y5e{bottom:310.092178px;}
.y46{bottom:310.386017px;}
.y2{bottom:314.906160px;}
.y1d{bottom:317.412553px;}
.y15{bottom:322.317913px;}
.y51{bottom:331.532474px;}
.y10{bottom:332.582965px;}
.y2b{bottom:334.982473px;}
.y5d{bottom:335.292173px;}
.y45{bottom:338.826018px;}
.y69{bottom:340.211804px;}
.y1b{bottom:340.316680px;}
.y7d{bottom:340.357682px;}
.y73{bottom:341.546211px;}
.y14{bottom:343.392337px;}
.y7{bottom:347.005915px;}
.y24{bottom:352.046096px;}
.y50{bottom:359.972475px;}
.y5c{bottom:360.492168px;}
.y3b{bottom:360.591967px;}
.y38{bottom:361.341363px;}
.y7c{bottom:361.957677px;}
.y32{bottom:365.942474px;}
.y68{bottom:368.651805px;}
.y1{bottom:368.726156px;}
.y72{bottom:379.346213px;}
.y7b{bottom:383.557677px;}
.y5b{bottom:385.692169px;}
.y23{bottom:386.246097px;}
.y4f{bottom:392.732476px;}
.y44{bottom:393.505159px;}
.y2a{bottom:394.742475px;}
.y7a{bottom:411.997671px;}
.y5a{bottom:412.692170px;}
.y71{bottom:417.146221px;}
.y22{bottom:420.446098px;}
.y4e{bottom:421.172477px;}
.y67{bottom:423.084088px;}
.y29{bottom:424.982476px;}
.ya{bottom:440.438737px;}
.y1e{bottom:451.440108px;}
.y4d{bottom:460.014212px;}
.y43{bottom:463.705150px;}
.y70{bottom:496.346221px;}
.y1c{bottom:496.810278px;}
.y31{bottom:496.918583px;}
.y21{bottom:497.642480px;}
.h1b{height:46.260000px;}
.h3{height:49.560000px;}
.h2{height:50.886003px;}
.h1a{height:55.512002px;}
.h18{height:59.472002px;}
.h6{height:64.764000px;}
.he{height:69.390002px;}
.h11{height:74.016005px;}
.h17{height:74.340002px;}
.h15{height:75.981450px;}
.h10{height:87.894005px;}
.hf{height:91.314005px;}
.h9{height:92.520001px;}
.h12{height:94.164005px;}
.h19{height:96.120001px;}
.h4{height:99.120001px;}
.h16{height:104.076003px;}
.hb{height:109.032006px;}
.h1{height:124.956009px;}
.h13{height:134.154009px;}
.h5{height:153.636000px;}
.h8{height:163.548005px;}
.ha{height:183.134318px;}
.hc{height:183.372001px;}
.h14{height:193.284006px;}
.hd{height:227.976002px;}
.h7{height:337.008001px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3b{left:90.085638px;}
.x1a{left:95.164372px;}
.x3c{left:98.059514px;}
.x23{left:110.926071px;}
.x47{left:112.054139px;}
.x1b{left:118.601653px;}
.x1c{left:125.297250px;}
.x16{left:126.549930px;}
.x17{left:133.458975px;}
.x1d{left:137.946852px;}
.x3d{left:144.085640px;}
.x1e{left:150.454290px;}
.x1f{left:191.946854px;}
.x29{left:212.387433px;}
.x8{left:218.509848px;}
.x7{left:219.550698px;}
.x14{left:243.200798px;}
.x1{left:245.861633px;}
.x10{left:248.174973px;}
.x25{left:253.462261px;}
.x19{left:277.052983px;}
.x26{left:278.337159px;}
.x20{left:282.306744px;}
.x3{left:286.799372px;}
.x2{left:298.885844px;}
.x28{left:312.888824px;}
.x4{left:324.555866px;}
.x11{left:341.949813px;}
.x37{left:354.739226px;}
.x27{left:363.634229px;}
.x5{left:369.932802px;}
.x24{left:372.286821px;}
.x2a{left:383.165619px;}
.x12{left:385.117263px;}
.x2c{left:393.839637px;}
.xb{left:412.478445px;}
.x39{left:414.175266px;}
.x33{left:417.379014px;}
.x30{left:423.068983px;}
.x6{left:426.053151px;}
.x2d{left:438.050219px;}
.x38{left:452.949809px;}
.x2b{left:455.577112px;}
.x34{left:461.589596px;}
.x31{left:467.279565px;}
.x35{left:474.999506px;}
.x2e{left:512.851471px;}
.x21{left:550.125018px;}
.x22{left:562.632455px;}
.x18{left:581.849989px;}
.x36{left:587.131894px;}
.x9{left:589.155285px;}
.xf{left:606.856958px;}
.xc{left:627.636080px;}
.xa{left:643.020118px;}
.xe{left:652.547658px;}
.x32{left:670.669975px;}
.x3a{left:672.863714px;}
.x41{left:677.100745px;}
.x13{left:703.346468px;}
.x15{left:707.084685px;}
.x3e{left:725.298694px;}
.xd{left:744.393883px;}
.x40{left:749.207791px;}
.x2f{left:773.483819px;}
.x3f{left:831.007804px;}
.x46{left:835.812060px;}
.x45{left:842.228566px;}
.x43{left:854.810589px;}
.x42{left:857.962839px;}
.x44{left:859.328577px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:65.868722pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:95.975138pt;}
.ls5{letter-spacing:95.987708pt;}
.ls1{letter-spacing:95.987780pt;}
.ls2{letter-spacing:95.987844pt;}
.ls3{letter-spacing:96.000323pt;}
.ls6{letter-spacing:96.000443pt;}
.ws3{word-spacing:-76.160000pt;}
.ws9{word-spacing:-51.520001pt;}
.wsd{word-spacing:-43.680001pt;}
.ws8{word-spacing:-41.440000pt;}
.ws4{word-spacing:-36.960001pt;}
.ws11{word-spacing:-34.133334pt;}
.wse{word-spacing:-27.216001pt;}
.ws6{word-spacing:-24.640001pt;}
.wsb{word-spacing:-23.893335pt;}
.wsa{word-spacing:-22.400000pt;}
.wsc{word-spacing:-21.280001pt;}
.ws2{word-spacing:-20.906667pt;}
.ws12{word-spacing:-17.920001pt;}
.wsf{word-spacing:-16.800001pt;}
.ws10{word-spacing:-15.552000pt;}
.ws13{word-spacing:-14.933333pt;}
.ws0{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:906.323146pt;}
.ws7{word-spacing:1332.269703pt;}
._e{margin-left:-30.912000pt;}
._c{margin-left:-16.885334pt;}
._7{margin-left:-14.666667pt;}
._5{margin-left:-12.608000pt;}
._4{margin-left:-9.397333pt;}
._9{margin-left:-8.106667pt;}
._2{margin-left:-6.613334pt;}
._b{margin-left:-5.573334pt;}
._6{margin-left:-4.192000pt;}
._0{margin-left:-3.050667pt;}
._d{margin-left:-2.160000pt;}
._1{margin-left:-1.248000pt;}
._3{width:1.493333pt;}
._8{width:3.754667pt;}
._a{width:4.897792pt;}
.fs2{font-size:53.333334pt;}
.fs1{font-size:58.666670pt;}
.fs12{font-size:64.000002pt;}
.fs10{font-size:69.333338pt;}
.fs5{font-size:74.666666pt;}
.fsb{font-size:80.000003pt;}
.fsd{font-size:85.333339pt;}
.fsc{font-size:101.333339pt;}
.fs3{font-size:106.666667pt;}
.fs11{font-size:112.000004pt;}
.fs8{font-size:117.333340pt;}
.fs0{font-size:138.666676pt;}
.fse{font-size:154.666677pt;}
.fs4{font-size:165.333333pt;}
.fs7{font-size:176.000006pt;}
.fs9{font-size:197.333334pt;}
.fsf{font-size:208.000007pt;}
.fsa{font-size:245.333336pt;}
.fs6{font-size:362.666668pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:44.609434pt;}
.y83{bottom:60.609435pt;}
.y66{bottom:88.437506pt;}
.y59{bottom:89.895526pt;}
.yf{bottom:97.810590pt;}
.y28{bottom:100.129876pt;}
.y42{bottom:101.585816pt;}
.y79{bottom:101.996586pt;}
.y6{bottom:109.328586pt;}
.y65{bottom:110.837526pt;}
.yb{bottom:112.604288pt;}
.y4c{bottom:112.698676pt;}
.y58{bottom:113.895526pt;}
.y19{bottom:114.873056pt;}
.y35{bottom:115.682172pt;}
.ye{bottom:120.210589pt;}
.y20{bottom:125.904150pt;}
.y41{bottom:126.865797pt;}
.y6f{bottom:127.690507pt;}
.y64{bottom:133.237557pt;}
.y13{bottom:134.825187pt;}
.y78{bottom:135.596597pt;}
.y4b{bottom:136.698677pt;}
.y57{bottom:137.895527pt;}
.y16{bottom:141.000087pt;}
.y34{bottom:142.242163pt;}
.y8{bottom:145.848567pt;}
.y9{bottom:145.848587pt;}
.y1a{bottom:147.170390pt;}
.y1f{bottom:149.904149pt;}
.y18{bottom:150.073058pt;}
.y5{bottom:155.291328pt;}
.y63{bottom:155.637538pt;}
.y40{bottom:155.985808pt;}
.y6e{bottom:158.090508pt;}
.y27{bottom:160.929858pt;}
.y56{bottom:161.895558pt;}
.y4a{bottom:161.978658pt;}
.y37{bottom:163.599448pt;}
.y12{bottom:166.825188pt;}
.y30{bottom:168.482174pt;}
.y77{bottom:169.196608pt;}
.y4{bottom:172.891328pt;}
.y82{bottom:176.904248pt;}
.y62{bottom:179.637518pt;}
.y3f{bottom:179.985818pt;}
.y17{bottom:185.273059pt;}
.y55{bottom:187.175539pt;}
.y6d{bottom:188.490499pt;}
.y49{bottom:191.098669pt;}
.y26{bottom:191.329859pt;}
.y2f{bottom:194.082185pt;}
.y81{bottom:201.224244pt;}
.y76{bottom:202.796609pt;}
.y3e{bottom:205.265819pt;}
.y61{bottom:208.437509pt;}
.y54{bottom:216.295550pt;}
.y48{bottom:216.378680pt;}
.y6c{bottom:218.890490pt;}
.y2e{bottom:219.682186pt;}
.y80{bottom:220.424240pt;}
.y36{bottom:223.264500pt;}
.y3a{bottom:228.392320pt;}
.y60{bottom:230.837500pt;}
.y11{bottom:231.629310pt;}
.y3{bottom:232.076590pt;}
.y3d{bottom:235.665820pt;}
.y75{bottom:236.396620pt;}
.y7f{bottom:239.624240pt;}
.y53{bottom:241.575530pt;}
.y2d{bottom:245.282197pt;}
.y47{bottom:246.778681pt;}
.y6b{bottom:248.010491pt;}
.yd{bottom:248.773855pt;}
.y25{bottom:252.129851pt;}
.y5f{bottom:253.237501pt;}
.y7e{bottom:261.384241pt;}
.y3c{bottom:266.065821pt;}
.y74{bottom:269.996631pt;}
.y52{bottom:270.695531pt;}
.y2c{bottom:270.882197pt;}
.yc{bottom:271.173853pt;}
.y33{bottom:272.162187pt;}
.y6a{bottom:273.290491pt;}
.y39{bottom:274.792322pt;}
.y5e{bottom:275.637492pt;}
.y46{bottom:275.898682pt;}
.y2{bottom:279.916587pt;}
.y1d{bottom:282.144492pt;}
.y15{bottom:286.504812pt;}
.y51{bottom:294.695532pt;}
.y10{bottom:295.629302pt;}
.y2b{bottom:297.762198pt;}
.y5d{bottom:298.037487pt;}
.y45{bottom:301.178682pt;}
.y69{bottom:302.410492pt;}
.y1b{bottom:302.503715pt;}
.y7d{bottom:302.540161pt;}
.y73{bottom:303.596632pt;}
.y14{bottom:305.237632pt;}
.y7{bottom:308.449703pt;}
.y24{bottom:312.929863pt;}
.y50{bottom:319.975533pt;}
.y5c{bottom:320.437483pt;}
.y3b{bottom:320.526193pt;}
.y38{bottom:321.192323pt;}
.y7c{bottom:321.740157pt;}
.y32{bottom:325.282199pt;}
.y68{bottom:327.690493pt;}
.y1{bottom:327.756583pt;}
.y72{bottom:337.196634pt;}
.y7b{bottom:340.940158pt;}
.y5b{bottom:342.837484pt;}
.y23{bottom:343.329864pt;}
.y4f{bottom:349.095534pt;}
.y44{bottom:349.782364pt;}
.y2a{bottom:350.882200pt;}
.y7a{bottom:366.220152pt;}
.y5a{bottom:366.837484pt;}
.y71{bottom:370.796641pt;}
.y22{bottom:373.729865pt;}
.y4e{bottom:374.375535pt;}
.y67{bottom:376.074745pt;}
.y29{bottom:377.762201pt;}
.ya{bottom:391.501099pt;}
.y1e{bottom:401.280096pt;}
.y4d{bottom:408.901522pt;}
.y43{bottom:412.182356pt;}
.y70{bottom:441.196641pt;}
.y1c{bottom:441.609136pt;}
.y31{bottom:441.705407pt;}
.y21{bottom:442.348871pt;}
.h1b{height:41.120000pt;}
.h3{height:44.053334pt;}
.h2{height:45.232002pt;}
.h1a{height:49.344002pt;}
.h18{height:52.864002pt;}
.h6{height:57.568000pt;}
.he{height:61.680002pt;}
.h11{height:65.792004pt;}
.h17{height:66.080002pt;}
.h15{height:67.539066pt;}
.h10{height:78.128005pt;}
.hf{height:81.168005pt;}
.h9{height:82.240001pt;}
.h12{height:83.701338pt;}
.h19{height:85.440001pt;}
.h4{height:88.106667pt;}
.h16{height:92.512003pt;}
.hb{height:96.917339pt;}
.h1{height:111.072008pt;}
.h13{height:119.248008pt;}
.h5{height:136.565333pt;}
.h8{height:145.376005pt;}
.ha{height:162.786061pt;}
.hc{height:162.997334pt;}
.h14{height:171.808005pt;}
.hd{height:202.645335pt;}
.h7{height:299.562667pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:80.076123pt;}
.x1a{left:84.590553pt;}
.x3c{left:87.164013pt;}
.x23{left:98.600952pt;}
.x47{left:99.603679pt;}
.x1b{left:105.423691pt;}
.x1c{left:111.375334pt;}
.x16{left:112.488827pt;}
.x17{left:118.630200pt;}
.x1d{left:122.619424pt;}
.x3d{left:128.076124pt;}
.x1e{left:133.737146pt;}
.x1f{left:170.619425pt;}
.x29{left:188.788829pt;}
.x8{left:194.230976pt;}
.x7{left:195.156176pt;}
.x14{left:216.178487pt;}
.x1{left:218.543674pt;}
.x10{left:220.599976pt;}
.x25{left:225.299787pt;}
.x19{left:246.269318pt;}
.x26{left:247.410808pt;}
.x20{left:250.939328pt;}
.x3{left:254.932775pt;}
.x2{left:265.676306pt;}
.x28{left:278.123399pt;}
.x4{left:288.494103pt;}
.x11{left:303.955390pt;}
.x37{left:315.323756pt;}
.x27{left:323.230425pt;}
.x5{left:328.829158pt;}
.x24{left:330.921619pt;}
.x2a{left:340.591661pt;}
.x12{left:342.326456pt;}
.x2c{left:350.079677pt;}
.xb{left:366.647507pt;}
.x39{left:368.155792pt;}
.x33{left:371.003568pt;}
.x30{left:376.061318pt;}
.x6{left:378.713912pt;}
.x2d{left:389.377972pt;}
.x38{left:402.622053pt;}
.x2b{left:404.957433pt;}
.x34{left:410.301863pt;}
.x31{left:415.359613pt;}
.x35{left:422.221784pt;}
.x2e{left:455.867975pt;}
.x21{left:489.000016pt;}
.x22{left:500.117738pt;}
.x18{left:517.199991pt;}
.x36{left:521.895017pt;}
.x9{left:523.693587pt;}
.xf{left:539.428407pt;}
.xc{left:557.898738pt;}
.xa{left:571.573438pt;}
.xe{left:580.042363pt;}
.x32{left:596.151089pt;}
.x3a{left:598.101079pt;}
.x41{left:601.867329pt;}
.x13{left:625.196860pt;}
.x15{left:628.519720pt;}
.x3e{left:644.709951pt;}
.xd{left:661.683451pt;}
.x40{left:665.962481pt;}
.x2f{left:687.541172pt;}
.x3f{left:738.673604pt;}
.x46{left:742.944054pt;}
.x45{left:748.647614pt;}
.x43{left:759.831634pt;}
.x42{left:762.633634pt;}
.x44{left:763.847624pt;}
}




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