
    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_cc7d3cc032160ca09cf93560.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133000;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_bb8b9fb589d53c19e5cc42ea.woff')format("woff");}.ff2{font-family:ff2;line-height:1.218000;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_4bfcb176ad90a96523f463e6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.050812;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_3610ea4fb1ede3d9f1acffc0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_667777523c09bd0f3a29e78f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.888000;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_596b9228580bc0fd91b531cc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090820;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:ff7;src:url('chunks/assets/font_73c2bf44276b9d038551ac0a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2525eca6b032dcc168a6e757.woff')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.959671px;}
.v3{vertical-align:-7.961776px;}
.v4{vertical-align:-6.491492px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.959671px;}
.v5{vertical-align:20.891626px;}
.v6{vertical-align:49.683272px;}
.lse{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000004px;}
.ls5{letter-spacing:0.048222px;}
.ls0{letter-spacing:0.150554px;}
.ls1{letter-spacing:0.152052px;}
.lsb{letter-spacing:15.680947px;}
.ls8{letter-spacing:15.698864px;}
.ls9{letter-spacing:37.075255px;}
.lsa{letter-spacing:37.099609px;}
.lsc{letter-spacing:37.107094px;}
.ls7{letter-spacing:37.117525px;}
.lsd{letter-spacing:37.120219px;}
.ls6{letter-spacing:37.150592px;}
.ls2{letter-spacing:49.252324px;}
.ls3{letter-spacing:55.573931px;}
.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;}
}
.ws4{word-spacing:-48.240000px;}
.ws3{word-spacing:-17.354880px;}
.ws2{word-spacing:-13.651920px;}
.ws1{word-spacing:-12.638880px;}
.ws0{word-spacing:-10.563840px;}
.ws5{word-spacing:-4.150080px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-7.115040px;}
._2{margin-left:-3.425760px;}
._0{margin-left:-1.976400px;}
._1{width:1.976400px;}
._4{width:3.507784px;}
._6{width:4.819680px;}
._5{width:607.615135px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:15.840000px;}
.fs6{font-size:20.880000px;}
.fs4{font-size:40.320000px;}
.fs5{font-size:48.240000px;}
.fs8{font-size:48.240229px;}
.fs9{font-size:59.759492px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fsc{font-size:89.999768px;}
.fs2{font-size:98.640000px;}
.fsb{font-size:98.640689px;}
.fs0{font-size:108.000000px;}
.fsa{font-size:131.759306px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.241815px;}
.y8{bottom:11.157620px;}
.y7{bottom:30.061656px;}
.y6{bottom:44.458281px;}
.y2e{bottom:101.517156px;}
.y2d{bottom:117.903637px;}
.y2c{bottom:134.282683px;}
.y2b{bottom:150.661656px;}
.y2a{bottom:167.213976px;}
.y25{bottom:172.434278px;}
.y29{bottom:188.105036px;}
.y78{bottom:225.180039px;}
.y77{bottom:229.860077px;}
.y85{bottom:240.659406px;}
.y6b{bottom:243.365324px;}
.y84{bottom:257.219308px;}
.y6a{bottom:259.744370px;}
.y62{bottom:261.719137px;}
.y5a{bottom:264.057203px;}
.y52{bottom:270.906426px;}
.y83{bottom:273.779137px;}
.y69{bottom:276.115762px;}
.y61{bottom:278.098183px;}
.y59{bottom:284.934637px;}
.y82{bottom:290.339193px;}
.y68{bottom:292.676271px;}
.y60{bottom:294.476019px;}
.y58{bottom:301.321191px;}
.y81{bottom:309.054637px;}
.y51{bottom:313.379140px;}
.y67{bottom:313.562120px;}
.y5f{bottom:315.363539px;}
.y57{bottom:317.695842px;}
.y75{bottom:318.598378px;}
.y80{bottom:325.622120px;}
.y74{bottom:328.147183px;}
.y66{bottom:329.941093px;}
.y5e{bottom:331.742512px;}
.y56{bottom:336.242004px;}
.y7f{bottom:342.174489px;}
.y55{bottom:345.777351px;}
.y65{bottom:346.320066px;}
.y73{bottom:346.862781px;}
.y5d{bottom:348.294906px;}
.y50{bottom:359.109684px;}
.y54{bottom:362.155527px;}
.y64{bottom:362.696594px;}
.y72{bottom:363.233923px;}
.y7e{bottom:363.241753px;}
.y5c{bottom:364.676626px;}
.y7d{bottom:379.801656px;}
.y71{bottom:381.957351px;}
.y53{bottom:383.223637px;}
.y5b{bottom:383.404566px;}
.y63{bottom:383.751262px;}
.y7c{bottom:396.353976px;}
.y70{bottom:398.337965px;}
.y7b{bottom:412.916164px;}
.y6f{bottom:414.718128px;}
.y6e{bottom:424.075221px;}
.y7a{bottom:431.825495px;}
.y6d{bottom:440.644370px;}
.y79{bottom:448.385324px;}
.y4f{bottom:451.440066px;}
.y76{bottom:469.445517px;}
.y6c{bottom:469.805100px;}
.y4e{bottom:471.063676px;}
.y27{bottom:513.182208px;}
.y24{bottom:523.442960px;}
.y26{bottom:534.786524px;}
.y4d{bottom:578.161494px;}
.y4a{bottom:578.704209px;}
.y4c{bottom:594.719851px;}
.y49{bottom:595.262565px;}
.y23{bottom:603.540074px;}
.y4b{bottom:611.278281px;}
.y28{bottom:613.794320px;}
.y21{bottom:651.064209px;}
.y48{bottom:657.178638px;}
.y20{bottom:663.835744px;}
.y47{bottom:671.397351px;}
.y13{bottom:676.619352px;}
.y1f{bottom:688.317530px;}
.y19{bottom:689.222030px;}
.y12{bottom:692.996816px;}
.y18{bottom:703.440780px;}
.y11{bottom:709.374316px;}
.y1e{bottom:712.075744px;}
.y17{bottom:719.456459px;}
.y10{bottom:725.763852px;}
.y16{bottom:733.675209px;}
.y1d{bottom:737.100244px;}
.yf{bottom:742.141316px;}
.y15{bottom:752.223495px;}
.y1c{bottom:755.097472px;}
.ye{bottom:758.699709px;}
.y14{bottom:766.442208px;}
.y1b{bottom:768.058281px;}
.yd{bottom:784.445100px;}
.y1a{bottom:786.597930px;}
.y22{bottom:786.780066px;}
.yc{bottom:815.224923px;}
.yb{bottom:828.720058px;}
.y86{bottom:876.600083px;}
.y46{bottom:883.436280px;}
.y36{bottom:892.625994px;}
.y45{bottom:899.994673px;}
.y35{bottom:909.184388px;}
.y44{bottom:916.565102px;}
.y34{bottom:930.060244px;}
.y39{bottom:945.363983px;}
.y33{bottom:946.437708px;}
.y3c{bottom:946.799530px;}
.y43{bottom:946.980747px;}
.y3f{bottom:962.645508px;}
.y3b{bottom:963.177013px;}
.y32{bottom:965.154852px;}
.y42{bottom:966.961120px;}
.y3a{bottom:979.735388px;}
.y31{bottom:983.703119px;}
.y3d{bottom:983.705765px;}
.y41{bottom:984.597766px;}
.y30{bottom:1002.420244px;}
.y40{bottom:1002.599526px;}
.y3e{bottom:1003.139283px;}
.y38{bottom:1004.217191px;}
.y37{bottom:1020.775566px;}
.y2f{bottom:1021.499173px;}
.y1{bottom:1052.091067px;}
.ya{bottom:1054.621502px;}
.y5{bottom:1128.604379px;}
.y4{bottom:1141.925827px;}
.y3{bottom:1177.729089px;}
.y2{bottom:1213.931227px;}
.h1d{height:15.808320px;}
.h8{height:20.838240px;}
.h6{height:41.632591px;}
.hb{height:44.911440px;}
.h18{height:44.921219px;}
.hf{height:47.981127px;}
.h16{height:48.132529px;}
.h1e{height:48.134379px;}
.h1b{height:48.136956px;}
.h15{height:48.137754px;}
.h19{height:48.141093px;}
.h20{height:48.142904px;}
.h7{height:48.143520px;}
.h13{height:48.146710px;}
.h17{height:48.148067px;}
.h14{height:48.160809px;}
.h1f{height:48.173361px;}
.h1c{height:48.174840px;}
.hc{height:48.176894px;}
.h1a{height:48.180507px;}
.he{height:54.711449px;}
.h5{height:59.640480px;}
.ha{height:66.107520px;}
.h12{height:82.397248px;}
.h11{height:90.308248px;}
.h9{height:92.586224px;}
.h4{height:98.442720px;}
.h2{height:100.548000px;}
.h10{height:120.629247px;}
.hd{height:122.668560px;}
.h3{height:131.496480px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:16.931160px;}
.x3{left:18.001800px;}
.x4{left:19.795500px;}
.xa{left:26.992799px;}
.x15{left:29.514240px;}
.x14{left:31.688280px;}
.x13{left:34.020001px;}
.x8{left:36.909000px;}
.x1{left:40.149000px;}
.x2c{left:45.540000px;}
.x1c{left:49.859622px;}
.x17{left:57.777839px;}
.x16{left:61.387919px;}
.x19{left:65.341080px;}
.x7{left:66.786483px;}
.x9{left:71.274598px;}
.x18{left:90.365580px;}
.x1f{left:219.420000px;}
.x24{left:220.861581px;}
.x23{left:227.343053px;}
.x25{left:234.361982px;}
.x12{left:360.892068px;}
.x27{left:381.065131px;}
.x11{left:388.259643px;}
.xe{left:393.481607px;}
.x28{left:394.554964px;}
.x26{left:401.585928px;}
.x10{left:405.722536px;}
.xf{left:412.560536px;}
.x1a{left:466.565214px;}
.x30{left:478.800007px;}
.x1e{left:494.098215px;}
.x2a{left:541.083185px;}
.x2b{left:554.579107px;}
.x29{left:556.014250px;}
.x1b{left:574.924322px;}
.xd{left:577.447220px;}
.xb{left:611.104322px;}
.xc{left:625.323072px;}
.x6{left:627.297188px;}
.x5{left:667.798356px;}
.x2e{left:693.896214px;}
.x2d{left:694.973542px;}
.x1d{left:700.370264px;}
.x2f{left:707.403429px;}
.x20{left:825.650966px;}
.x21{left:833.402130px;}
.x22{left:837.004985px;}
@media print{
.v2{vertical-align:-15.964152pt;}
.v3{vertical-align:-7.077134pt;}
.v4{vertical-align:-5.770215pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.964152pt;}
.v5{vertical-align:18.570334pt;}
.v6{vertical-align:44.162909pt;}
.lse{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000004pt;}
.ls5{letter-spacing:0.042864pt;}
.ls0{letter-spacing:0.133826pt;}
.ls1{letter-spacing:0.135157pt;}
.lsb{letter-spacing:13.938620pt;}
.ls8{letter-spacing:13.954545pt;}
.ls9{letter-spacing:32.955782pt;}
.lsa{letter-spacing:32.977430pt;}
.lsc{letter-spacing:32.984084pt;}
.ls7{letter-spacing:32.993356pt;}
.lsd{letter-spacing:32.995750pt;}
.ls6{letter-spacing:33.022748pt;}
.ls2{letter-spacing:43.779844pt;}
.ls3{letter-spacing:49.399050pt;}
.ws4{word-spacing:-42.880000pt;}
.ws3{word-spacing:-15.426560pt;}
.ws2{word-spacing:-12.135040pt;}
.ws1{word-spacing:-11.234560pt;}
.ws0{word-spacing:-9.390080pt;}
.ws5{word-spacing:-3.688960pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-6.324480pt;}
._2{margin-left:-3.045120pt;}
._0{margin-left:-1.756800pt;}
._1{width:1.756800pt;}
._4{width:3.118030pt;}
._6{width:4.284160pt;}
._5{width:540.102343pt;}
.fsd{font-size:14.080000pt;}
.fs6{font-size:18.560000pt;}
.fs4{font-size:35.840000pt;}
.fs5{font-size:42.880000pt;}
.fs8{font-size:42.880204pt;}
.fs9{font-size:53.119548pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fsc{font-size:79.999793pt;}
.fs2{font-size:87.680000pt;}
.fsb{font-size:87.680613pt;}
.fs0{font-size:96.000000pt;}
.fsa{font-size:117.119383pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.881613pt;}
.y8{bottom:9.917885pt;}
.y7{bottom:26.721472pt;}
.y6{bottom:39.518472pt;}
.y2e{bottom:90.237472pt;}
.y2d{bottom:104.803232pt;}
.y2c{bottom:119.362385pt;}
.y2b{bottom:133.921472pt;}
.y2a{bottom:148.634646pt;}
.y25{bottom:153.274914pt;}
.y29{bottom:167.204477pt;}
.y78{bottom:200.160035pt;}
.y77{bottom:204.320069pt;}
.y85{bottom:213.919472pt;}
.y6b{bottom:216.324732pt;}
.y84{bottom:228.639385pt;}
.y6a{bottom:230.883885pt;}
.y62{bottom:232.639232pt;}
.y5a{bottom:234.717514pt;}
.y52{bottom:240.805712pt;}
.y83{bottom:243.359232pt;}
.y69{bottom:245.436232pt;}
.y61{bottom:247.198385pt;}
.y59{bottom:253.275232pt;}
.y82{bottom:258.079282pt;}
.y68{bottom:260.156685pt;}
.y60{bottom:261.756461pt;}
.y58{bottom:267.841059pt;}
.y81{bottom:274.715232pt;}
.y51{bottom:278.559236pt;}
.y67{bottom:278.721885pt;}
.y5f{bottom:280.323146pt;}
.y57{bottom:282.396304pt;}
.y75{bottom:283.198559pt;}
.y80{bottom:289.441885pt;}
.y74{bottom:291.686385pt;}
.y66{bottom:293.280972pt;}
.y5e{bottom:294.882232pt;}
.y56{bottom:298.881781pt;}
.y7f{bottom:304.155101pt;}
.y55{bottom:307.357646pt;}
.y65{bottom:307.840059pt;}
.y73{bottom:308.322472pt;}
.y5d{bottom:309.595472pt;}
.y50{bottom:319.208608pt;}
.y54{bottom:321.916024pt;}
.y64{bottom:322.396972pt;}
.y72{bottom:322.874599pt;}
.y7e{bottom:322.881559pt;}
.y5c{bottom:324.157001pt;}
.y7d{bottom:337.601472pt;}
.y71{bottom:339.517646pt;}
.y53{bottom:340.643232pt;}
.y5b{bottom:340.804059pt;}
.y63{bottom:341.112232pt;}
.y7c{bottom:352.314646pt;}
.y70{bottom:354.078191pt;}
.y7b{bottom:367.036590pt;}
.y6f{bottom:368.638336pt;}
.y6e{bottom:376.955752pt;}
.y7a{bottom:383.844885pt;}
.y6d{bottom:391.683885pt;}
.y79{bottom:398.564732pt;}
.y4f{bottom:401.280059pt;}
.y76{bottom:417.284904pt;}
.y6c{bottom:417.604533pt;}
.y4e{bottom:418.723268pt;}
.y27{bottom:456.161963pt;}
.y24{bottom:465.282631pt;}
.y26{bottom:475.365799pt;}
.y4d{bottom:513.921328pt;}
.y4a{bottom:514.403741pt;}
.y4c{bottom:528.639867pt;}
.y49{bottom:529.122280pt;}
.y23{bottom:536.480066pt;}
.y4b{bottom:543.358472pt;}
.y28{bottom:545.594951pt;}
.y21{bottom:578.723741pt;}
.y48{bottom:584.158789pt;}
.y20{bottom:590.076217pt;}
.y47{bottom:596.797646pt;}
.y13{bottom:601.439424pt;}
.y1f{bottom:611.837804pt;}
.y19{bottom:612.641804pt;}
.y12{bottom:615.997169pt;}
.y18{bottom:625.280693pt;}
.y11{bottom:630.554948pt;}
.y1e{bottom:632.956217pt;}
.y17{bottom:639.516852pt;}
.y10{bottom:645.123424pt;}
.y16{bottom:652.155741pt;}
.y1d{bottom:655.200217pt;}
.yf{bottom:659.681169pt;}
.y15{bottom:668.643107pt;}
.y1c{bottom:671.197753pt;}
.ye{bottom:674.399741pt;}
.y14{bottom:681.281963pt;}
.y1b{bottom:682.718472pt;}
.yd{bottom:697.284533pt;}
.y1a{bottom:699.198160pt;}
.y22{bottom:699.360059pt;}
.yc{bottom:724.644376pt;}
.yb{bottom:736.640051pt;}
.y86{bottom:779.200074pt;}
.y46{bottom:785.276693pt;}
.y36{bottom:793.445328pt;}
.y45{bottom:799.995265pt;}
.y35{bottom:808.163900pt;}
.y44{bottom:814.724535pt;}
.y34{bottom:826.720217pt;}
.y39{bottom:840.323540pt;}
.y33{bottom:841.277963pt;}
.y3c{bottom:841.599583pt;}
.y43{bottom:841.760664pt;}
.y3f{bottom:855.684896pt;}
.y3b{bottom:856.157345pt;}
.y32{bottom:857.915424pt;}
.y42{bottom:859.520996pt;}
.y3a{bottom:870.875900pt;}
.y31{bottom:874.402773pt;}
.y3d{bottom:874.405124pt;}
.y41{bottom:875.198014pt;}
.y30{bottom:891.040217pt;}
.y40{bottom:891.199579pt;}
.y3e{bottom:891.679362pt;}
.y38{bottom:892.637503pt;}
.y37{bottom:907.356059pt;}
.y2f{bottom:907.999265pt;}
.y1{bottom:935.192059pt;}
.ya{bottom:937.441336pt;}
.y5{bottom:1003.203893pt;}
.y4{bottom:1015.045180pt;}
.y3{bottom:1046.870301pt;}
.y2{bottom:1079.049980pt;}
.h1d{height:14.051840pt;}
.h8{height:18.522880pt;}
.h6{height:37.006747pt;}
.hb{height:39.921280pt;}
.h18{height:39.929973pt;}
.hf{height:42.649890pt;}
.h16{height:42.784470pt;}
.h1e{height:42.786115pt;}
.h1b{height:42.788405pt;}
.h15{height:42.789115pt;}
.h19{height:42.792083pt;}
.h20{height:42.793693pt;}
.h7{height:42.794240pt;}
.h13{height:42.797075pt;}
.h17{height:42.798282pt;}
.h14{height:42.809608pt;}
.h1f{height:42.820765pt;}
.h1c{height:42.822080pt;}
.hc{height:42.823906pt;}
.h1a{height:42.827117pt;}
.he{height:48.632399pt;}
.h5{height:53.013760pt;}
.ha{height:58.762240pt;}
.h12{height:73.241998pt;}
.h11{height:80.273998pt;}
.h9{height:82.298866pt;}
.h4{height:87.504640pt;}
.h2{height:89.376000pt;}
.h10{height:107.225998pt;}
.hd{height:109.038720pt;}
.h3{height:116.885760pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:15.049920pt;}
.x3{left:16.001600pt;}
.x4{left:17.596000pt;}
.xa{left:23.993599pt;}
.x15{left:26.234880pt;}
.x14{left:28.167360pt;}
.x13{left:30.240001pt;}
.x8{left:32.808000pt;}
.x1{left:35.688000pt;}
.x2c{left:40.480000pt;}
.x1c{left:44.319664pt;}
.x17{left:51.358079pt;}
.x16{left:54.567040pt;}
.x19{left:58.080960pt;}
.x7{left:59.365763pt;}
.x9{left:63.355198pt;}
.x18{left:80.324960pt;}
.x1f{left:195.040000pt;}
.x24{left:196.321405pt;}
.x23{left:202.082714pt;}
.x25{left:208.321762pt;}
.x12{left:320.792949pt;}
.x27{left:338.724561pt;}
.x11{left:345.119683pt;}
.xe{left:349.761428pt;}
.x28{left:350.715524pt;}
.x26{left:356.965270pt;}
.x10{left:360.642254pt;}
.xf{left:366.720476pt;}
.x1a{left:414.724635pt;}
.x30{left:425.600006pt;}
.x1e{left:439.198413pt;}
.x2a{left:480.962831pt;}
.x2b{left:492.959207pt;}
.x29{left:494.234889pt;}
.x1b{left:511.043841pt;}
.xd{left:513.286418pt;}
.xb{left:543.203841pt;}
.xc{left:555.842730pt;}
.x6{left:557.597500pt;}
.x5{left:593.598539pt;}
.x2e{left:616.796635pt;}
.x2d{left:617.754260pt;}
.x1d{left:622.551346pt;}
.x2f{left:628.803048pt;}
.x20{left:733.911970pt;}
.x21{left:740.801893pt;}
.x22{left:744.004431pt;}
}




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