
    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_0bc8f1f656adc44700681516.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_645076757b9753c4cf2ae787.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_93efe79586486b10bb9dee28.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.121094;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_5a124b93589a1bd340b8f348.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_e9e41c0ed61f28993c0099ad.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b31de8b6b0f15c86702c5b9b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_aabf5bde6f38e0716d89824b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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:ffa;src:url('chunks/assets/font_6c15d308248daf8f5c62796f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_44a32056fc28bd7a62fdd950.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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;}
.ls5{letter-spacing:-0.480000px;}
.ls7{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.396000px;}
.lsc{letter-spacing:-0.384000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.lsb{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.780000px;}
.ls9{letter-spacing:25.800000px;}
.lsf{letter-spacing:87.048000px;}
.ls8{letter-spacing:129.048000px;}
.lsd{letter-spacing:171.720000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,102,153),0 0.015em rgb(0,102,153),0.015em 0 rgb(0,102,153),0 -0.015em  rgb(0,102,153);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,102,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-60.000000px;}
.ws1{word-spacing:-21.000000px;}
.ws4{word-spacing:-19.392000px;}
.ws0{word-spacing:-19.296000px;}
.ws2{word-spacing:-18.984000px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-4.536000px;}
._4{margin-left:-2.694000px;}
._0{margin-left:-1.536000px;}
._1{width:1.152000px;}
._5{width:2.220000px;}
._2{width:3.240000px;}
._b{width:5.004000px;}
._7{width:8.916000px;}
._6{width:10.500000px;}
._e{width:12.018000px;}
._f{width:13.206000px;}
._a{width:15.168000px;}
._9{width:16.548000px;}
._3{width:17.556000px;}
._c{width:24.108000px;}
._d{width:25.164000px;}
._10{width:26.382000px;}
._11{width:32.352000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,102,153);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:7.800000px;}
.y44{bottom:8.100000px;}
.y46{bottom:21.900000px;}
.y6{bottom:23.437500px;}
.y43{bottom:35.700000px;}
.y5{bottom:44.437500px;}
.y40{bottom:49.830000px;}
.y42{bottom:63.630000px;}
.y45{bottom:77.445000px;}
.y41{bottom:91.530000px;}
.y4d{bottom:99.337500px;}
.y4c{bottom:123.937500px;}
.y2a{bottom:137.437500px;}
.y4b{bottom:157.830000px;}
.y29{bottom:165.330000px;}
.y4a{bottom:191.775000px;}
.y28{bottom:192.975000px;}
.y27{bottom:220.875000px;}
.y49{bottom:225.375000px;}
.y26{bottom:248.475000px;}
.y47{bottom:259.275000px;}
.y25{bottom:276.375000px;}
.y3f{bottom:292.875000px;}
.y24{bottom:303.975000px;}
.y51{bottom:305.775000px;}
.y23{bottom:331.875000px;}
.y50{bottom:333.675000px;}
.y22{bottom:359.820000px;}
.y4f{bottom:361.305000px;}
.y21{bottom:387.405000px;}
.y4e{bottom:389.220000px;}
.y20{bottom:415.320000px;}
.y3e{bottom:416.820000px;}
.y1f{bottom:442.920000px;}
.y3d{bottom:444.705000px;}
.y1e{bottom:470.820000px;}
.y3c{bottom:472.605000px;}
.y1d{bottom:498.405000px;}
.y3b{bottom:500.205000px;}
.y1c{bottom:526.350000px;}
.y3a{bottom:528.150000px;}
.y1b{bottom:554.250000px;}
.y39{bottom:555.750000px;}
.y1a{bottom:581.850000px;}
.y38{bottom:583.650000px;}
.y19{bottom:609.750000px;}
.y37{bottom:611.250000px;}
.y18{bottom:637.350000px;}
.y36{bottom:639.150000px;}
.y17{bottom:665.250000px;}
.y35{bottom:666.750000px;}
.y16{bottom:692.880000px;}
.y34{bottom:694.680000px;}
.y15{bottom:720.780000px;}
.y33{bottom:722.580000px;}
.y14{bottom:748.380000px;}
.y32{bottom:750.180000px;}
.y13{bottom:776.295000px;}
.y31{bottom:778.080000px;}
.y12{bottom:804.195000px;}
.y30{bottom:805.695000px;}
.y11{bottom:831.795000px;}
.y2f{bottom:833.580000px;}
.y10{bottom:859.725000px;}
.y2e{bottom:861.225000px;}
.yf{bottom:887.325000px;}
.y2d{bottom:889.125000px;}
.ye{bottom:915.225000px;}
.y2c{bottom:917.025000px;}
.yd{bottom:944.325000px;}
.y2b{bottom:944.625000px;}
.yc{bottom:972.525000px;}
.yb{bottom:1000.125000px;}
.ya{bottom:1028.070000px;}
.y9{bottom:1055.670000px;}
.y8{bottom:1083.570000px;}
.y7{bottom:1111.455000px;}
.y4{bottom:1135.755000px;}
.y3{bottom:1155.570000px;}
.y2{bottom:1179.870000px;}
.y1{bottom:1207.800000px;}
.hc{height:27.600000px;}
.hd{height:27.900000px;}
.he{height:27.937500px;}
.h4{height:50.047852px;}
.h9{height:58.898438px;}
.hf{height:61.670545px;}
.h5{height:65.645508px;}
.h3{height:66.978516px;}
.h8{height:72.638672px;}
.h2{height:76.546875px;}
.h7{height:82.441406px;}
.h6{height:84.656250px;}
.ha{height:86.338763px;}
.hb{height:111.337500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:63.000000px;}
.w8{width:93.937500px;}
.w9{width:95.437500px;}
.w5{width:96.937500px;}
.w4{width:102.637500px;}
.w6{width:105.037500px;}
.w7{width:136.837500px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:1.200000px;}
.x18{left:2.700000px;}
.x1e{left:13.185000px;}
.x15{left:21.600000px;}
.x1c{left:24.000000px;}
.x16{left:25.500000px;}
.x17{left:26.700000px;}
.x1f{left:29.385000px;}
.x19{left:30.885000px;}
.x24{left:36.300000px;}
.x22{left:37.845000px;}
.x21{left:40.830000px;}
.x5{left:42.299987px;}
.x1b{left:46.200000px;}
.x23{left:57.900000px;}
.x25{left:63.000000px;}
.x4{left:84.937487px;}
.x11{left:88.537500px;}
.xd{left:107.737487px;}
.xc{left:112.837487px;}
.xf{left:116.737487px;}
.xa{left:118.237487px;}
.x7{left:123.037487px;}
.x12{left:155.145000px;}
.x6{left:163.529987px;}
.xe{left:212.474987px;}
.x14{left:261.675000px;}
.x8{left:287.474987px;}
.xb{left:362.204987px;}
.x10{left:408.404987px;}
.x9{left:446.249987px;}
.x1a{left:471.150000px;}
.x2{left:508.649987px;}
.x1{left:544.079987px;}
.x1d{left:611.895000px;}
.x3{left:635.894987px;}
.x20{left:709.425000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.352000pt;}
.lsc{letter-spacing:-0.341333pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.lsb{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.693333pt;}
.ls9{letter-spacing:22.933333pt;}
.lsf{letter-spacing:77.376000pt;}
.ls8{letter-spacing:114.709333pt;}
.lsd{letter-spacing:152.640000pt;}
.ws5{word-spacing:-53.333333pt;}
.ws1{word-spacing:-18.666667pt;}
.ws4{word-spacing:-17.237333pt;}
.ws0{word-spacing:-17.152000pt;}
.ws2{word-spacing:-16.874667pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-4.032000pt;}
._4{margin-left:-2.394667pt;}
._0{margin-left:-1.365333pt;}
._1{width:1.024000pt;}
._5{width:1.973333pt;}
._2{width:2.880000pt;}
._b{width:4.448000pt;}
._7{width:7.925333pt;}
._6{width:9.333333pt;}
._e{width:10.682667pt;}
._f{width:11.738667pt;}
._a{width:13.482667pt;}
._9{width:14.709333pt;}
._3{width:15.605333pt;}
._c{width:21.429333pt;}
._d{width:22.368000pt;}
._10{width:23.450667pt;}
._11{width:28.757333pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:6.933333pt;}
.y44{bottom:7.200000pt;}
.y46{bottom:19.466667pt;}
.y6{bottom:20.833333pt;}
.y43{bottom:31.733333pt;}
.y5{bottom:39.500000pt;}
.y40{bottom:44.293333pt;}
.y42{bottom:56.560000pt;}
.y45{bottom:68.840000pt;}
.y41{bottom:81.360000pt;}
.y4d{bottom:88.300000pt;}
.y4c{bottom:110.166667pt;}
.y2a{bottom:122.166667pt;}
.y4b{bottom:140.293333pt;}
.y29{bottom:146.960000pt;}
.y4a{bottom:170.466667pt;}
.y28{bottom:171.533333pt;}
.y27{bottom:196.333333pt;}
.y49{bottom:200.333333pt;}
.y26{bottom:220.866667pt;}
.y47{bottom:230.466667pt;}
.y25{bottom:245.666667pt;}
.y3f{bottom:260.333333pt;}
.y24{bottom:270.200000pt;}
.y51{bottom:271.800000pt;}
.y23{bottom:295.000000pt;}
.y50{bottom:296.600000pt;}
.y22{bottom:319.840000pt;}
.y4f{bottom:321.160000pt;}
.y21{bottom:344.360000pt;}
.y4e{bottom:345.973333pt;}
.y20{bottom:369.173333pt;}
.y3e{bottom:370.506667pt;}
.y1f{bottom:393.706667pt;}
.y3d{bottom:395.293333pt;}
.y1e{bottom:418.506667pt;}
.y3c{bottom:420.093333pt;}
.y1d{bottom:443.026667pt;}
.y3b{bottom:444.626667pt;}
.y1c{bottom:467.866667pt;}
.y3a{bottom:469.466667pt;}
.y1b{bottom:492.666667pt;}
.y39{bottom:494.000000pt;}
.y1a{bottom:517.200000pt;}
.y38{bottom:518.800000pt;}
.y19{bottom:542.000000pt;}
.y37{bottom:543.333333pt;}
.y18{bottom:566.533333pt;}
.y36{bottom:568.133333pt;}
.y17{bottom:591.333333pt;}
.y35{bottom:592.666667pt;}
.y16{bottom:615.893333pt;}
.y34{bottom:617.493333pt;}
.y15{bottom:640.693333pt;}
.y33{bottom:642.293333pt;}
.y14{bottom:665.226667pt;}
.y32{bottom:666.826667pt;}
.y13{bottom:690.040000pt;}
.y31{bottom:691.626667pt;}
.y12{bottom:714.840000pt;}
.y30{bottom:716.173333pt;}
.y11{bottom:739.373333pt;}
.y2f{bottom:740.960000pt;}
.y10{bottom:764.200000pt;}
.y2e{bottom:765.533333pt;}
.yf{bottom:788.733333pt;}
.y2d{bottom:790.333333pt;}
.ye{bottom:813.533333pt;}
.y2c{bottom:815.133333pt;}
.yd{bottom:839.400000pt;}
.y2b{bottom:839.666667pt;}
.yc{bottom:864.466667pt;}
.yb{bottom:889.000000pt;}
.ya{bottom:913.840000pt;}
.y9{bottom:938.373333pt;}
.y8{bottom:963.173333pt;}
.y7{bottom:987.960000pt;}
.y4{bottom:1009.560000pt;}
.y3{bottom:1027.173333pt;}
.y2{bottom:1048.773333pt;}
.y1{bottom:1073.600000pt;}
.hc{height:24.533333pt;}
.hd{height:24.800000pt;}
.he{height:24.833333pt;}
.h4{height:44.486979pt;}
.h9{height:52.354167pt;}
.hf{height:54.818262pt;}
.h5{height:58.351562pt;}
.h3{height:59.536458pt;}
.h8{height:64.567708pt;}
.h2{height:68.041667pt;}
.h7{height:73.281250pt;}
.h6{height:75.250000pt;}
.ha{height:76.745567pt;}
.hb{height:98.966667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:56.000000pt;}
.w8{width:83.500000pt;}
.w9{width:84.833333pt;}
.w5{width:86.166667pt;}
.w4{width:91.233333pt;}
.w6{width:93.366667pt;}
.w7{width:121.633333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:1.066667pt;}
.x18{left:2.400000pt;}
.x1e{left:11.720000pt;}
.x15{left:19.200000pt;}
.x1c{left:21.333333pt;}
.x16{left:22.666667pt;}
.x17{left:23.733333pt;}
.x1f{left:26.120000pt;}
.x19{left:27.453333pt;}
.x24{left:32.266667pt;}
.x22{left:33.640000pt;}
.x21{left:36.293333pt;}
.x5{left:37.599988pt;}
.x1b{left:41.066667pt;}
.x23{left:51.466667pt;}
.x25{left:56.000000pt;}
.x4{left:75.499988pt;}
.x11{left:78.700000pt;}
.xd{left:95.766655pt;}
.xc{left:100.299988pt;}
.xf{left:103.766655pt;}
.xa{left:105.099988pt;}
.x7{left:109.366655pt;}
.x12{left:137.906667pt;}
.x6{left:145.359988pt;}
.xe{left:188.866655pt;}
.x14{left:232.600000pt;}
.x8{left:255.533322pt;}
.xb{left:321.959988pt;}
.x10{left:363.026655pt;}
.x9{left:396.666655pt;}
.x1a{left:418.800000pt;}
.x2{left:452.133322pt;}
.x1{left:483.626655pt;}
.x1d{left:543.906667pt;}
.x3{left:565.239988pt;}
.x20{left:630.600000pt;}
}




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