
    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_b7c4078ab26f5079bc0aee17.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_69d7016d90f033c0f58b0550.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_d8c128c9dc9f5e1e2961f1b6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_ffeb364a85307520d6a4a529.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_07a5941e9a229219e846b5e4.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6edb8fd0ffb369b4d362880d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_daa5f280574700894cd55919.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v4{vertical-align:-17.280000px;}
.v6{vertical-align:-6.480000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v7{vertical-align:6.480000px;}
.v3{vertical-align:28.080000px;}
.v2{vertical-align:96.480000px;}
.v1{vertical-align:113.760000px;}
.ls8{letter-spacing:-0.852000px;}
.ls7{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.132600px;}
.ls5{letter-spacing:-0.027360px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.022320px;}
.ls2{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.178560px;}
.ls4{letter-spacing:0.256200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.641760px;}
.ws4{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.506440px;}
.ws5{word-spacing:-13.478400px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-14.970240px;}
._13{margin-left:-4.069440px;}
._a{margin-left:-2.914560px;}
._0{margin-left:-1.296000px;}
._1{width:1.200000px;}
._5{width:2.239680px;}
._6{width:3.667680px;}
._7{width:5.600640px;}
._8{width:7.316160px;}
._9{width:9.339840px;}
._d{width:10.465920px;}
._18{width:11.923200px;}
._10{width:13.020480px;}
._c{width:18.613440px;}
._15{width:19.690560px;}
._17{width:21.312000px;}
._12{width:25.767360px;}
._b{width:32.163840px;}
._16{width:37.028160px;}
._11{width:38.112480px;}
._e{width:39.942720px;}
._f{width:41.009760px;}
._3{width:64.065600px;}
._4{width:66.624240px;}
._14{width:72.768960px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc3{color:rgb(149,79,114);}
.fc1{color:rgb(142,180,227);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:144.000000px;}
.fs3{font-size:167.760000px;}
.fs2{font-size:185.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.636000px;}
.y13{bottom:78.516000px;}
.ye{bottom:124.776000px;}
.y30{bottom:128.736000px;}
.y2f{bottom:134.676000px;}
.y79{bottom:135.036000px;}
.y68{bottom:138.276000px;}
.y2e{bottom:149.436000px;}
.y57{bottom:149.616000px;}
.y2d{bottom:170.310000px;}
.y2c{bottom:174.630000px;}
.y67{bottom:179.310000px;}
.y78{bottom:184.530000px;}
.y2b{bottom:189.570000px;}
.yf{bottom:221.250000px;}
.y10{bottom:221.430000px;}
.y77{bottom:234.030000px;}
.y66{bottom:235.290000px;}
.y56{bottom:235.650000px;}
.y2a{bottom:250.770000px;}
.y45{bottom:259.230000px;}
.y65{bottom:276.330000px;}
.y55{bottom:276.690000px;}
.y76{bottom:283.755000px;}
.y29{bottom:291.855000px;}
.y44{bottom:296.175000px;}
.y64{bottom:317.415000px;}
.yd{bottom:331.455000px;}
.y28{bottom:332.895000px;}
.y43{bottom:333.255000px;}
.yc{bottom:370.515000px;}
.y63{bottom:373.395000px;}
.y54{bottom:373.755000px;}
.y27{bottom:373.935000px;}
.y75{bottom:382.755000px;}
.y42{bottom:388.335000px;}
.y62{bottom:414.435000px;}
.y53{bottom:414.795000px;}
.yb{bottom:420.915000px;}
.y41{bottom:429.375000px;}
.y26{bottom:429.915000px;}
.y74{bottom:432.255000px;}
.y61{bottom:455.475000px;}
.y52{bottom:455.835000px;}
.y40{bottom:470.415000px;}
.y25{bottom:470.955000px;}
.y73{bottom:481.755000px;}
.ya{bottom:492.735000px;}
.y60{bottom:496.515000px;}
.y24{bottom:511.995000px;}
.y3f{bottom:526.575000px;}
.y72{bottom:531.435000px;}
.y5f{bottom:552.495000px;}
.y51{bottom:552.855000px;}
.y23{bottom:553.035000px;}
.y3e{bottom:567.465000px;}
.y9{bottom:568.185000px;}
.y71{bottom:580.965000px;}
.y5e{bottom:593.565000px;}
.y50{bottom:593.925000px;}
.y22{bottom:594.105000px;}
.y3d{bottom:608.505000px;}
.y70{bottom:630.465000px;}
.y8{bottom:634.065000px;}
.y5d{bottom:634.605000px;}
.y4f{bottom:634.965000px;}
.y21{bottom:635.145000px;}
.y3c{bottom:649.545000px;}
.y6f{bottom:679.965000px;}
.y3b{bottom:690.585000px;}
.y20{bottom:691.125000px;}
.y7{bottom:715.245000px;}
.y6e{bottom:729.645000px;}
.y3a{bottom:731.625000px;}
.y4e{bottom:731.985000px;}
.y1f{bottom:732.165000px;}
.y5c{bottom:772.665000px;}
.y4d{bottom:773.025000px;}
.y1e{bottom:773.205000px;}
.y6d{bottom:779.145000px;}
.y39{bottom:787.605000px;}
.y6{bottom:791.745000px;}
.y5b{bottom:813.705000px;}
.y38{bottom:828.645000px;}
.y1d{bottom:829.185000px;}
.y5{bottom:849.210000px;}
.y5a{bottom:854.790000px;}
.y1c{bottom:869.550000px;}
.y37{bottom:869.730000px;}
.y4c{bottom:870.270000px;}
.y6c{bottom:878.190000px;}
.y1b{bottom:909.870000px;}
.y36{bottom:910.770000px;}
.y4b{bottom:911.130000px;}
.y6b{bottom:927.690000px;}
.y19{bottom:951.450000px;}
.y35{bottom:951.810000px;}
.y1a{bottom:959.190000px;}
.y4a{bottom:967.290000px;}
.y6a{bottom:977.370000px;}
.y18{bottom:985.830000px;}
.y59{bottom:992.850000px;}
.y49{bottom:1007.430000px;}
.y34{bottom:1007.790000px;}
.y69{bottom:1026.870000px;}
.y17{bottom:1031.910000px;}
.y58{bottom:1033.890000px;}
.y48{bottom:1047.750000px;}
.y33{bottom:1048.830000px;}
.y4{bottom:1059.090000px;}
.y15{bottom:1074.390000px;}
.y16{bottom:1082.130000px;}
.y46{bottom:1089.510000px;}
.y32{bottom:1089.870000px;}
.y47{bottom:1097.250000px;}
.y3{bottom:1098.150000px;}
.y14{bottom:1123.890000px;}
.y31{bottom:1130.940000px;}
.y12{bottom:1151.820000px;}
.y11{bottom:1173.780000px;}
.y1{bottom:1193.400000px;}
.hd{height:41.535703px;}
.h9{height:48.604219px;}
.he{height:59.439023px;}
.ha{height:64.875938px;}
.h2{height:65.884219px;}
.hf{height:65.919023px;}
.hb{height:67.824844px;}
.h10{height:68.084282px;}
.hc{height:68.764219px;}
.h8{height:98.051133px;}
.h3{height:147.445312px;}
.h7{height:171.773789px;}
.h6{height:172.430844px;}
.h4{height:184.762266px;}
.h5{height:190.204453px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:14.759987px;}
.x1{left:127.475987px;}
.x12{left:132.695987px;}
.x3{left:159.869987px;}
.x8{left:167.429987px;}
.x10{left:170.129987px;}
.x13{left:181.469987px;}
.x5{left:187.949987px;}
.xb{left:264.989987px;}
.x6{left:275.429987px;}
.xe{left:281.549973px;}
.xf{left:289.649987px;}
.x14{left:335.414973px;}
.x11{left:343.514987px;}
.x9{left:416.774987px;}
.x4{left:446.474987px;}
.xc{left:619.664973px;}
.xd{left:627.764987px;}
.xa{left:757.229987px;}
.x2{left:765.509987px;}
@media print{
.v4{vertical-align:-15.360000pt;}
.v6{vertical-align:-5.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v7{vertical-align:5.760000pt;}
.v3{vertical-align:24.960000pt;}
.v2{vertical-align:85.760000pt;}
.v1{vertical-align:101.120000pt;}
.ls8{letter-spacing:-0.757333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.117867pt;}
.ls5{letter-spacing:-0.024320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.019840pt;}
.ls2{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.158720pt;}
.ls4{letter-spacing:0.227733pt;}
.ws1{word-spacing:-19.237120pt;}
.ws4{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws2{word-spacing:-12.894613pt;}
.ws5{word-spacing:-11.980800pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-13.306880pt;}
._13{margin-left:-3.617280pt;}
._a{margin-left:-2.590720pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.066667pt;}
._5{width:1.990827pt;}
._6{width:3.260160pt;}
._7{width:4.978347pt;}
._8{width:6.503253pt;}
._9{width:8.302080pt;}
._d{width:9.303040pt;}
._18{width:10.598400pt;}
._10{width:11.573760pt;}
._c{width:16.545280pt;}
._15{width:17.502720pt;}
._17{width:18.944000pt;}
._12{width:22.904320pt;}
._b{width:28.590080pt;}
._16{width:32.913920pt;}
._11{width:33.877760pt;}
._e{width:35.504640pt;}
._f{width:36.453120pt;}
._3{width:56.947200pt;}
._4{width:59.221547pt;}
._14{width:64.683520pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:128.000000pt;}
.fs3{font-size:149.120000pt;}
.fs2{font-size:165.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.232000pt;}
.y13{bottom:69.792000pt;}
.ye{bottom:110.912000pt;}
.y30{bottom:114.432000pt;}
.y2f{bottom:119.712000pt;}
.y79{bottom:120.032000pt;}
.y68{bottom:122.912000pt;}
.y2e{bottom:132.832000pt;}
.y57{bottom:132.992000pt;}
.y2d{bottom:151.386667pt;}
.y2c{bottom:155.226667pt;}
.y67{bottom:159.386667pt;}
.y78{bottom:164.026667pt;}
.y2b{bottom:168.506667pt;}
.yf{bottom:196.666667pt;}
.y10{bottom:196.826667pt;}
.y77{bottom:208.026667pt;}
.y66{bottom:209.146667pt;}
.y56{bottom:209.466667pt;}
.y2a{bottom:222.906667pt;}
.y45{bottom:230.426667pt;}
.y65{bottom:245.626667pt;}
.y55{bottom:245.946667pt;}
.y76{bottom:252.226667pt;}
.y29{bottom:259.426667pt;}
.y44{bottom:263.266667pt;}
.y64{bottom:282.146667pt;}
.yd{bottom:294.626667pt;}
.y28{bottom:295.906667pt;}
.y43{bottom:296.226667pt;}
.yc{bottom:329.346667pt;}
.y63{bottom:331.906667pt;}
.y54{bottom:332.226667pt;}
.y27{bottom:332.386667pt;}
.y75{bottom:340.226667pt;}
.y42{bottom:345.186667pt;}
.y62{bottom:368.386667pt;}
.y53{bottom:368.706667pt;}
.yb{bottom:374.146667pt;}
.y41{bottom:381.666667pt;}
.y26{bottom:382.146667pt;}
.y74{bottom:384.226667pt;}
.y61{bottom:404.866667pt;}
.y52{bottom:405.186667pt;}
.y40{bottom:418.146667pt;}
.y25{bottom:418.626667pt;}
.y73{bottom:428.226667pt;}
.ya{bottom:437.986667pt;}
.y60{bottom:441.346667pt;}
.y24{bottom:455.106667pt;}
.y3f{bottom:468.066667pt;}
.y72{bottom:472.386667pt;}
.y5f{bottom:491.106667pt;}
.y51{bottom:491.426667pt;}
.y23{bottom:491.586667pt;}
.y3e{bottom:504.413333pt;}
.y9{bottom:505.053333pt;}
.y71{bottom:516.413333pt;}
.y5e{bottom:527.613333pt;}
.y50{bottom:527.933333pt;}
.y22{bottom:528.093333pt;}
.y3d{bottom:540.893333pt;}
.y70{bottom:560.413333pt;}
.y8{bottom:563.613333pt;}
.y5d{bottom:564.093333pt;}
.y4f{bottom:564.413333pt;}
.y21{bottom:564.573333pt;}
.y3c{bottom:577.373333pt;}
.y6f{bottom:604.413333pt;}
.y3b{bottom:613.853333pt;}
.y20{bottom:614.333333pt;}
.y7{bottom:635.773333pt;}
.y6e{bottom:648.573333pt;}
.y3a{bottom:650.333333pt;}
.y4e{bottom:650.653333pt;}
.y1f{bottom:650.813333pt;}
.y5c{bottom:686.813333pt;}
.y4d{bottom:687.133333pt;}
.y1e{bottom:687.293333pt;}
.y6d{bottom:692.573333pt;}
.y39{bottom:700.093333pt;}
.y6{bottom:703.773333pt;}
.y5b{bottom:723.293333pt;}
.y38{bottom:736.573333pt;}
.y1d{bottom:737.053333pt;}
.y5{bottom:754.853333pt;}
.y5a{bottom:759.813333pt;}
.y1c{bottom:772.933333pt;}
.y37{bottom:773.093333pt;}
.y4c{bottom:773.573333pt;}
.y6c{bottom:780.613333pt;}
.y1b{bottom:808.773333pt;}
.y36{bottom:809.573333pt;}
.y4b{bottom:809.893333pt;}
.y6b{bottom:824.613333pt;}
.y19{bottom:845.733333pt;}
.y35{bottom:846.053333pt;}
.y1a{bottom:852.613333pt;}
.y4a{bottom:859.813333pt;}
.y6a{bottom:868.773333pt;}
.y18{bottom:876.293333pt;}
.y59{bottom:882.533333pt;}
.y49{bottom:895.493333pt;}
.y34{bottom:895.813333pt;}
.y69{bottom:912.773333pt;}
.y17{bottom:917.253333pt;}
.y58{bottom:919.013333pt;}
.y48{bottom:931.333333pt;}
.y33{bottom:932.293333pt;}
.y4{bottom:941.413333pt;}
.y15{bottom:955.013333pt;}
.y16{bottom:961.893333pt;}
.y46{bottom:968.453333pt;}
.y32{bottom:968.773333pt;}
.y47{bottom:975.333333pt;}
.y3{bottom:976.133333pt;}
.y14{bottom:999.013333pt;}
.y31{bottom:1005.280000pt;}
.y12{bottom:1023.840000pt;}
.y11{bottom:1043.360000pt;}
.y1{bottom:1060.800000pt;}
.hd{height:36.920625pt;}
.h9{height:43.203750pt;}
.he{height:52.834688pt;}
.ha{height:57.667500pt;}
.h2{height:58.563750pt;}
.hf{height:58.594688pt;}
.hb{height:60.288750pt;}
.h10{height:60.519362pt;}
.hc{height:61.123750pt;}
.h8{height:87.156562pt;}
.h3{height:131.062500pt;}
.h7{height:152.687812pt;}
.h6{height:153.271862pt;}
.h4{height:164.233125pt;}
.h5{height:169.070625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:13.119988pt;}
.x1{left:113.311988pt;}
.x12{left:117.951988pt;}
.x3{left:142.106655pt;}
.x8{left:148.826655pt;}
.x10{left:151.226655pt;}
.x13{left:161.306655pt;}
.x5{left:167.066655pt;}
.xb{left:235.546655pt;}
.x6{left:244.826655pt;}
.xe{left:250.266643pt;}
.xf{left:257.466655pt;}
.x14{left:298.146643pt;}
.x11{left:305.346655pt;}
.x9{left:370.466655pt;}
.x4{left:396.866655pt;}
.xc{left:550.813310pt;}
.xd{left:558.013322pt;}
.xa{left:673.093322pt;}
.x2{left:680.453322pt;}
}




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