
    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_ae8d4959f934f47170c35129.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_9efd4543b63287aafc4958ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_a4c073933b6d25de169d74d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_8c44c22865ffdc0b48017d79.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_cdd3e46f7a196f68a573ef23.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_f2ab434d94d91b363f01f7f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_b840de126cfd55a829a5ea23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_4912e7eb1a9fd77e7a3b6b99.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692383;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:ff9;src:url('chunks/assets/font_334e661f507d6eb85f418edd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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;}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,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;}
.v1{vertical-align:2.223600px;}
.ls3{letter-spacing:-2.760000px;}
.ls6{letter-spacing:-1.242000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls1{letter-spacing:7.851000px;}
.ls4{letter-spacing:17.109000px;}
.ls5{letter-spacing:21.673800px;}
.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;}
}
.ws2{word-spacing:-21.000000px;}
.ws1{word-spacing:-17.250000px;}
.ws8{word-spacing:-16.008000px;}
.ws3{word-spacing:-15.000000px;}
.ws0{word-spacing:-14.490000px;}
.ws6{word-spacing:-3.108000px;}
.ws9{word-spacing:-2.553000px;}
.ws4{word-spacing:-0.069000px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:1512.526200px;}
._21{margin-left:-18.170700px;}
._13{margin-left:-16.905300px;}
._26{margin-left:-11.605800px;}
._2c{margin-left:-8.928600px;}
._3{margin-left:-7.807800px;}
._5{margin-left:-6.406200px;}
._a{margin-left:-5.257800px;}
._4{margin-left:-4.208400px;}
._0{margin-left:-2.501400px;}
._6{margin-left:-1.142400px;}
._1{width:1.663200px;}
._2{width:2.773800px;}
._8{width:4.644000px;}
._9{width:5.896800px;}
._b{width:7.828800px;}
._e{width:8.832000px;}
._14{width:10.225800px;}
._15{width:12.044100px;}
._f{width:13.144500px;}
._c{width:14.517600px;}
._d{width:15.721800px;}
._1a{width:18.426600px;}
._19{width:20.299800px;}
._16{width:21.969600px;}
._10{width:23.211600px;}
._1c{width:24.615600px;}
._7{width:25.656000px;}
._1b{width:26.734500px;}
._23{width:28.828200px;}
._1e{width:30.967200px;}
._1f{width:32.140200px;}
._1d{width:33.865200px;}
._22{width:35.265900px;}
._17{width:36.780300px;}
._18{width:37.844100px;}
._11{width:40.311000px;}
._12{width:41.324100px;}
._24{width:43.004400px;}
._29{width:47.230500px;}
._2a{width:49.050600px;}
._28{width:55.444800px;}
._25{width:57.028500px;}
._2b{width:58.642800px;}
._20{width:72.539700px;}
._27{width:107.056800px;}
.fc2{color:rgb(41,42,42);}
.fc1{color:rgb(20,20,20);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:69.000000px;}
.fs2{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:110.975700px;}
.y45{bottom:111.082050px;}
.y47{bottom:113.338800px;}
.y12{bottom:113.976450px;}
.y76{bottom:147.729750px;}
.y2b{bottom:148.011900px;}
.y44{bottom:148.028850px;}
.y75{bottom:168.429750px;}
.y2a{bottom:168.711900px;}
.y43{bottom:168.728850px;}
.y74{bottom:189.129750px;}
.y29{bottom:189.411900px;}
.y42{bottom:189.428850px;}
.y73{bottom:209.829750px;}
.y28{bottom:210.111900px;}
.y41{bottom:210.128850px;}
.y72{bottom:230.529750px;}
.y27{bottom:230.811900px;}
.y40{bottom:230.828850px;}
.y71{bottom:251.229750px;}
.y26{bottom:251.511900px;}
.y3f{bottom:251.528850px;}
.y70{bottom:271.929750px;}
.y25{bottom:272.211900px;}
.y3e{bottom:272.228850px;}
.y6f{bottom:292.629750px;}
.y24{bottom:292.911900px;}
.y3d{bottom:292.928850px;}
.y6e{bottom:313.329750px;}
.y23{bottom:313.611900px;}
.y3c{bottom:313.628850px;}
.y6d{bottom:334.029750px;}
.y22{bottom:334.311900px;}
.y3b{bottom:334.328850px;}
.y6c{bottom:354.729750px;}
.y21{bottom:355.011900px;}
.y3a{bottom:355.028850px;}
.y6b{bottom:375.429750px;}
.y20{bottom:375.711900px;}
.y39{bottom:375.728850px;}
.y6a{bottom:396.129750px;}
.y1f{bottom:396.411900px;}
.y38{bottom:396.428850px;}
.y69{bottom:416.829750px;}
.y1e{bottom:417.111900px;}
.y37{bottom:417.128850px;}
.y99{bottom:418.012950px;}
.y68{bottom:437.529750px;}
.y1d{bottom:437.811900px;}
.y36{bottom:437.828850px;}
.y98{bottom:438.712950px;}
.y67{bottom:458.229750px;}
.y1c{bottom:458.511900px;}
.y35{bottom:458.528850px;}
.y97{bottom:471.412950px;}
.y66{bottom:478.929750px;}
.y1b{bottom:479.211900px;}
.y34{bottom:479.228850px;}
.y65{bottom:499.629750px;}
.y1a{bottom:499.911900px;}
.y33{bottom:499.928850px;}
.y96{bottom:504.112950px;}
.y64{bottom:520.329750px;}
.y19{bottom:520.611900px;}
.y32{bottom:520.628850px;}
.y95{bottom:524.812950px;}
.y63{bottom:541.029750px;}
.y18{bottom:541.311900px;}
.y31{bottom:541.328850px;}
.y94{bottom:545.512950px;}
.y62{bottom:561.729750px;}
.y17{bottom:562.011900px;}
.y30{bottom:562.028850px;}
.y93{bottom:566.212950px;}
.y61{bottom:582.429750px;}
.y16{bottom:582.711900px;}
.y2f{bottom:582.728850px;}
.y92{bottom:586.912950px;}
.y60{bottom:603.129750px;}
.y15{bottom:603.411900px;}
.y2e{bottom:603.428850px;}
.y91{bottom:607.612950px;}
.y5f{bottom:623.829750px;}
.y14{bottom:624.111900px;}
.y2d{bottom:624.128850px;}
.y5e{bottom:644.529750px;}
.y13{bottom:644.811900px;}
.y2c{bottom:644.828850px;}
.y90{bottom:661.012950px;}
.y5d{bottom:665.229750px;}
.y5c{bottom:685.929750px;}
.y8f{bottom:702.412950px;}
.y5b{bottom:706.629750px;}
.y11{bottom:718.836300px;}
.y5a{bottom:727.329750px;}
.y10{bottom:736.836300px;}
.y8e{bottom:743.812950px;}
.y59{bottom:748.029750px;}
.y8d{bottom:764.512950px;}
.yf{bottom:766.836300px;}
.y58{bottom:768.729750px;}
.y57{bottom:789.429750px;}
.ye{bottom:796.836300px;}
.y56{bottom:810.129750px;}
.yd{bottom:814.836300px;}
.y8c{bottom:829.912950px;}
.y55{bottom:830.829750px;}
.yc{bottom:832.836300px;}
.yb{bottom:850.836300px;}
.y54{bottom:851.529750px;}
.ya{bottom:868.836300px;}
.y8b{bottom:870.341100px;}
.y53{bottom:872.229750px;}
.y9{bottom:886.836300px;}
.y52{bottom:892.929750px;}
.y82{bottom:894.330150px;}
.y8{bottom:904.836300px;}
.y51{bottom:913.629750px;}
.y81{bottom:915.030150px;}
.y50{bottom:934.329750px;}
.y80{bottom:935.730150px;}
.y7{bottom:946.441800px;}
.y8a{bottom:953.141100px;}
.y4f{bottom:955.029750px;}
.y7f{bottom:956.430150px;}
.y89{bottom:973.841100px;}
.y4e{bottom:975.729750px;}
.y7e{bottom:977.130150px;}
.y6{bottom:988.741950px;}
.y88{bottom:994.540950px;}
.y4d{bottom:996.429750px;}
.y7d{bottom:997.830150px;}
.y5{bottom:1013.941800px;}
.y87{bottom:1015.240950px;}
.y4c{bottom:1017.129750px;}
.y7c{bottom:1018.530150px;}
.y86{bottom:1035.940950px;}
.y4b{bottom:1037.829750px;}
.y7b{bottom:1039.230150px;}
.y85{bottom:1056.641100px;}
.y4a{bottom:1058.529750px;}
.y7a{bottom:1059.930150px;}
.y4{bottom:1062.541950px;}
.y84{bottom:1077.341100px;}
.y49{bottom:1079.229750px;}
.y79{bottom:1080.630150px;}
.y83{bottom:1098.040950px;}
.y48{bottom:1099.929750px;}
.y78{bottom:1101.330150px;}
.y3{bottom:1110.542400px;}
.y46{bottom:1131.897750px;}
.y77{bottom:1133.601750px;}
.y2{bottom:1140.826950px;}
.h3{height:45.826172px;}
.hc{height:46.729980px;}
.h2{height:47.437500px;}
.h8{height:47.909180px;}
.ha{height:48.049772px;}
.h9{height:52.880859px;}
.h4{height:58.168945px;}
.hb{height:59.667480px;}
.h5{height:60.812988px;}
.h6{height:67.450195px;}
.h7{height:74.033203px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:63.779550px;}
.x10{left:89.291400px;}
.x1{left:106.299150px;}
.x2{left:108.000000px;}
.x19{left:111.871200px;}
.x18{left:118.756500px;}
.xa{left:131.811000px;}
.xe{left:142.516650px;}
.x6{left:153.495750px;}
.x14{left:237.031350px;}
.x15{left:268.254900px;}
.x7{left:280.551900px;}
.x8{left:348.823650px;}
.x17{left:374.454450px;}
.x5{left:426.559800px;}
.x16{left:433.283850px;}
.x11{left:435.826800px;}
.x12{left:461.338650px;}
.x3{left:473.924550px;}
.xb{left:478.346400px;}
.x4{left:481.844550px;}
.x9{left:501.732300px;}
.xc{left:503.858250px;}
.x13{left:573.584550px;}
.xd{left:766.985550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.976533pt;}
.ls3{letter-spacing:-2.453333pt;}
.ls6{letter-spacing:-1.104000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls1{letter-spacing:6.978667pt;}
.ls4{letter-spacing:15.208000pt;}
.ls5{letter-spacing:19.265600pt;}
.ws2{word-spacing:-18.666667pt;}
.ws1{word-spacing:-15.333333pt;}
.ws8{word-spacing:-14.229333pt;}
.ws3{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.880000pt;}
.ws6{word-spacing:-2.762667pt;}
.ws9{word-spacing:-2.269333pt;}
.ws4{word-spacing:-0.061333pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:1344.467733pt;}
._21{margin-left:-16.151733pt;}
._13{margin-left:-15.026933pt;}
._26{margin-left:-10.316267pt;}
._2c{margin-left:-7.936533pt;}
._3{margin-left:-6.940267pt;}
._5{margin-left:-5.694400pt;}
._a{margin-left:-4.673600pt;}
._4{margin-left:-3.740800pt;}
._0{margin-left:-2.223467pt;}
._6{margin-left:-1.015467pt;}
._1{width:1.478400pt;}
._2{width:2.465600pt;}
._8{width:4.128000pt;}
._9{width:5.241600pt;}
._b{width:6.958933pt;}
._e{width:7.850667pt;}
._14{width:9.089600pt;}
._15{width:10.705867pt;}
._f{width:11.684000pt;}
._c{width:12.904533pt;}
._d{width:13.974933pt;}
._1a{width:16.379200pt;}
._19{width:18.044267pt;}
._16{width:19.528533pt;}
._10{width:20.632533pt;}
._1c{width:21.880533pt;}
._7{width:22.805333pt;}
._1b{width:23.764000pt;}
._23{width:25.625067pt;}
._1e{width:27.526400pt;}
._1f{width:28.569067pt;}
._1d{width:30.102400pt;}
._22{width:31.347467pt;}
._17{width:32.693600pt;}
._18{width:33.639200pt;}
._11{width:35.832000pt;}
._12{width:36.732533pt;}
._24{width:38.226133pt;}
._29{width:41.982667pt;}
._2a{width:43.600533pt;}
._28{width:49.284267pt;}
._25{width:50.692000pt;}
._2b{width:52.126933pt;}
._20{width:64.479733pt;}
._27{width:95.161600pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:61.333333pt;}
.fs2{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:98.645067pt;}
.y45{bottom:98.739600pt;}
.y47{bottom:100.745600pt;}
.y12{bottom:101.312400pt;}
.y76{bottom:131.315333pt;}
.y2b{bottom:131.566133pt;}
.y44{bottom:131.581200pt;}
.y75{bottom:149.715333pt;}
.y2a{bottom:149.966133pt;}
.y43{bottom:149.981200pt;}
.y74{bottom:168.115333pt;}
.y29{bottom:168.366133pt;}
.y42{bottom:168.381200pt;}
.y73{bottom:186.515333pt;}
.y28{bottom:186.766133pt;}
.y41{bottom:186.781200pt;}
.y72{bottom:204.915333pt;}
.y27{bottom:205.166133pt;}
.y40{bottom:205.181200pt;}
.y71{bottom:223.315333pt;}
.y26{bottom:223.566133pt;}
.y3f{bottom:223.581200pt;}
.y70{bottom:241.715333pt;}
.y25{bottom:241.966133pt;}
.y3e{bottom:241.981200pt;}
.y6f{bottom:260.115333pt;}
.y24{bottom:260.366133pt;}
.y3d{bottom:260.381200pt;}
.y6e{bottom:278.515333pt;}
.y23{bottom:278.766133pt;}
.y3c{bottom:278.781200pt;}
.y6d{bottom:296.915333pt;}
.y22{bottom:297.166133pt;}
.y3b{bottom:297.181200pt;}
.y6c{bottom:315.315333pt;}
.y21{bottom:315.566133pt;}
.y3a{bottom:315.581200pt;}
.y6b{bottom:333.715333pt;}
.y20{bottom:333.966133pt;}
.y39{bottom:333.981200pt;}
.y6a{bottom:352.115333pt;}
.y1f{bottom:352.366133pt;}
.y38{bottom:352.381200pt;}
.y69{bottom:370.515333pt;}
.y1e{bottom:370.766133pt;}
.y37{bottom:370.781200pt;}
.y99{bottom:371.567067pt;}
.y68{bottom:388.915333pt;}
.y1d{bottom:389.166133pt;}
.y36{bottom:389.181200pt;}
.y98{bottom:389.967067pt;}
.y67{bottom:407.315333pt;}
.y1c{bottom:407.566133pt;}
.y35{bottom:407.581200pt;}
.y97{bottom:419.033733pt;}
.y66{bottom:425.715333pt;}
.y1b{bottom:425.966133pt;}
.y34{bottom:425.981200pt;}
.y65{bottom:444.115333pt;}
.y1a{bottom:444.366133pt;}
.y33{bottom:444.381200pt;}
.y96{bottom:448.100400pt;}
.y64{bottom:462.515333pt;}
.y19{bottom:462.766133pt;}
.y32{bottom:462.781200pt;}
.y95{bottom:466.500400pt;}
.y63{bottom:480.915333pt;}
.y18{bottom:481.166133pt;}
.y31{bottom:481.181200pt;}
.y94{bottom:484.900400pt;}
.y62{bottom:499.315333pt;}
.y17{bottom:499.566133pt;}
.y30{bottom:499.581200pt;}
.y93{bottom:503.300400pt;}
.y61{bottom:517.715333pt;}
.y16{bottom:517.966133pt;}
.y2f{bottom:517.981200pt;}
.y92{bottom:521.700400pt;}
.y60{bottom:536.115333pt;}
.y15{bottom:536.366133pt;}
.y2e{bottom:536.381200pt;}
.y91{bottom:540.100400pt;}
.y5f{bottom:554.515333pt;}
.y14{bottom:554.766133pt;}
.y2d{bottom:554.781200pt;}
.y5e{bottom:572.915333pt;}
.y13{bottom:573.166133pt;}
.y2c{bottom:573.181200pt;}
.y90{bottom:587.567067pt;}
.y5d{bottom:591.315333pt;}
.y5c{bottom:609.715333pt;}
.y8f{bottom:624.367067pt;}
.y5b{bottom:628.115333pt;}
.y11{bottom:638.965600pt;}
.y5a{bottom:646.515333pt;}
.y10{bottom:654.965600pt;}
.y8e{bottom:661.167067pt;}
.y59{bottom:664.915333pt;}
.y8d{bottom:679.567067pt;}
.yf{bottom:681.632267pt;}
.y58{bottom:683.315333pt;}
.y57{bottom:701.715333pt;}
.ye{bottom:708.298933pt;}
.y56{bottom:720.115333pt;}
.yd{bottom:724.298933pt;}
.y8c{bottom:737.700400pt;}
.y55{bottom:738.515333pt;}
.yc{bottom:740.298933pt;}
.yb{bottom:756.298933pt;}
.y54{bottom:756.915333pt;}
.ya{bottom:772.298933pt;}
.y8b{bottom:773.636533pt;}
.y53{bottom:775.315333pt;}
.y9{bottom:788.298933pt;}
.y52{bottom:793.715333pt;}
.y82{bottom:794.960133pt;}
.y8{bottom:804.298933pt;}
.y51{bottom:812.115333pt;}
.y81{bottom:813.360133pt;}
.y50{bottom:830.515333pt;}
.y80{bottom:831.760133pt;}
.y7{bottom:841.281600pt;}
.y8a{bottom:847.236533pt;}
.y4f{bottom:848.915333pt;}
.y7f{bottom:850.160133pt;}
.y89{bottom:865.636533pt;}
.y4e{bottom:867.315333pt;}
.y7e{bottom:868.560133pt;}
.y6{bottom:878.881733pt;}
.y88{bottom:884.036400pt;}
.y4d{bottom:885.715333pt;}
.y7d{bottom:886.960133pt;}
.y5{bottom:901.281600pt;}
.y87{bottom:902.436400pt;}
.y4c{bottom:904.115333pt;}
.y7c{bottom:905.360133pt;}
.y86{bottom:920.836400pt;}
.y4b{bottom:922.515333pt;}
.y7b{bottom:923.760133pt;}
.y85{bottom:939.236533pt;}
.y4a{bottom:940.915333pt;}
.y7a{bottom:942.160133pt;}
.y4{bottom:944.481733pt;}
.y84{bottom:957.636533pt;}
.y49{bottom:959.315333pt;}
.y79{bottom:960.560133pt;}
.y83{bottom:976.036400pt;}
.y48{bottom:977.715333pt;}
.y78{bottom:978.960133pt;}
.y3{bottom:987.148800pt;}
.y46{bottom:1006.131333pt;}
.y77{bottom:1007.646000pt;}
.y2{bottom:1014.068400pt;}
.h3{height:40.734375pt;}
.hc{height:41.537760pt;}
.h2{height:42.166667pt;}
.h8{height:42.585938pt;}
.ha{height:42.710908pt;}
.h9{height:47.005208pt;}
.h4{height:51.705729pt;}
.hb{height:53.037760pt;}
.h5{height:54.055990pt;}
.h6{height:59.955729pt;}
.h7{height:65.807292pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:56.692933pt;}
.x10{left:79.370133pt;}
.x1{left:94.488133pt;}
.x2{left:96.000000pt;}
.x19{left:99.441067pt;}
.x18{left:105.561333pt;}
.xa{left:117.165333pt;}
.xe{left:126.681467pt;}
.x6{left:136.440667pt;}
.x14{left:210.694533pt;}
.x15{left:238.448800pt;}
.x7{left:249.379467pt;}
.x8{left:310.065467pt;}
.x17{left:332.848400pt;}
.x5{left:379.164267pt;}
.x16{left:385.141200pt;}
.x11{left:387.401600pt;}
.x12{left:410.078800pt;}
.x3{left:421.266267pt;}
.xb{left:425.196800pt;}
.x4{left:428.306267pt;}
.x9{left:445.984267pt;}
.xc{left:447.874000pt;}
.x13{left:509.852933pt;}
.xd{left:681.764933pt;}
}




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