
    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_91c2df9f867a4b47012126d3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_2c3403f56040a8197a06e5c6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_afebb774121a136b0f267cf3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_29eba6e34b3e8bc5533c1162.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_e75af7c1f9d300d7eab96c7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.738770;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_92ee4e874e7b2c2fefc4442b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b488afe3b0f687fb0a64480e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls6{letter-spacing:-4.584000px;}
.ls8{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.540000px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.070560px;}
.ls4{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:11.466720px;}
.lsf{letter-spacing:41.682720px;}
.lsa{letter-spacing:43.842720px;}
.ls3{letter-spacing:636.840000px;}
.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:-16.669200px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-11.976000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.000000px;}
.ws6{word-spacing:-8.280000px;}
.ws8{word-spacing:0.000000px;}
._7{margin-left:-8.784000px;}
._15{margin-left:-6.846240px;}
._6{margin-left:-5.760000px;}
._5{margin-left:-4.104000px;}
._4{margin-left:-2.448000px;}
._1{margin-left:-1.186320px;}
._0{width:1.322400px;}
._8{width:2.506080px;}
._2{width:3.960960px;}
._9{width:5.131680px;}
._a{width:6.274800px;}
._10{width:7.275360px;}
._d{width:8.740320px;}
._11{width:10.517760px;}
._b{width:11.712960px;}
._17{width:12.796320px;}
._c{width:13.796880px;}
._16{width:17.800800px;}
._f{width:19.376880px;}
._e{width:20.530080px;}
._14{width:21.753840px;}
._13{width:23.117520px;}
._12{width:24.382080px;}
._3{width:136.122000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:37.080000px;}
.yb{bottom:57.060000px;}
.ya{bottom:72.576000px;}
.y41{bottom:113.436000px;}
.y76{bottom:117.936000px;}
.y40{bottom:130.536000px;}
.y75{bottom:135.036000px;}
.y3f{bottom:147.816000px;}
.y74{bottom:152.310000px;}
.y3e{bottom:165.090000px;}
.y73{bottom:169.590000px;}
.y3d{bottom:182.370000px;}
.y72{bottom:186.870000px;}
.y3c{bottom:199.650000px;}
.y71{bottom:204.150000px;}
.y3b{bottom:216.750000px;}
.y70{bottom:221.250000px;}
.y3a{bottom:234.030000px;}
.y6f{bottom:238.530000px;}
.y39{bottom:251.310000px;}
.y6e{bottom:255.810000px;}
.y38{bottom:268.590000px;}
.y6d{bottom:273.090000px;}
.y37{bottom:285.870000px;}
.y6c{bottom:290.370000px;}
.y36{bottom:303.150000px;}
.y6b{bottom:307.650000px;}
.y35{bottom:320.250000px;}
.y6a{bottom:324.750000px;}
.y34{bottom:337.575000px;}
.y69{bottom:342.075000px;}
.y33{bottom:354.855000px;}
.y68{bottom:359.355000px;}
.y32{bottom:372.135000px;}
.y67{bottom:376.635000px;}
.y31{bottom:389.415000px;}
.y66{bottom:393.915000px;}
.y30{bottom:406.695000px;}
.y65{bottom:411.195000px;}
.y2f{bottom:423.795000px;}
.y64{bottom:428.295000px;}
.y2e{bottom:441.075000px;}
.y63{bottom:445.575000px;}
.y2d{bottom:458.355000px;}
.y62{bottom:462.855000px;}
.y2c{bottom:475.635000px;}
.y61{bottom:480.135000px;}
.y2b{bottom:492.915000px;}
.y60{bottom:497.415000px;}
.y2a{bottom:510.015000px;}
.y5f{bottom:514.515000px;}
.y29{bottom:527.295000px;}
.y5e{bottom:531.795000px;}
.y28{bottom:544.575000px;}
.y5d{bottom:549.075000px;}
.y27{bottom:561.855000px;}
.y5c{bottom:566.355000px;}
.y26{bottom:581.295000px;}
.y5b{bottom:583.635000px;}
.y25{bottom:598.575000px;}
.y5a{bottom:600.915000px;}
.y24{bottom:615.885000px;}
.y59{bottom:618.045000px;}
.y23{bottom:633.165000px;}
.y58{bottom:635.325000px;}
.y22{bottom:650.445000px;}
.y57{bottom:652.605000px;}
.y21{bottom:667.545000px;}
.y56{bottom:669.885000px;}
.y20{bottom:684.825000px;}
.y55{bottom:687.165000px;}
.y1f{bottom:702.105000px;}
.y54{bottom:704.445000px;}
.y1e{bottom:719.385000px;}
.y53{bottom:721.545000px;}
.y1d{bottom:736.665000px;}
.y52{bottom:738.825000px;}
.y1c{bottom:753.945000px;}
.y51{bottom:756.105000px;}
.y1b{bottom:771.045000px;}
.y50{bottom:773.385000px;}
.y1a{bottom:788.325000px;}
.y4f{bottom:790.665000px;}
.y19{bottom:805.605000px;}
.y4e{bottom:807.945000px;}
.y18{bottom:822.885000px;}
.y4d{bottom:825.045000px;}
.y17{bottom:840.165000px;}
.y4c{bottom:842.325000px;}
.y16{bottom:857.445000px;}
.y4b{bottom:859.605000px;}
.y15{bottom:876.930000px;}
.y4a{bottom:894.210000px;}
.y14{bottom:894.570000px;}
.y49{bottom:911.310000px;}
.y13{bottom:913.470000px;}
.y48{bottom:928.590000px;}
.y12{bottom:932.550000px;}
.y47{bottom:945.870000px;}
.y11{bottom:951.450000px;}
.y46{bottom:963.150000px;}
.y10{bottom:969.990000px;}
.y45{bottom:980.430000px;}
.yf{bottom:987.990000px;}
.y44{bottom:997.710000px;}
.ye{bottom:1008.690000px;}
.y43{bottom:1014.810000px;}
.yd{bottom:1029.390000px;}
.y42{bottom:1032.090000px;}
.y9{bottom:1050.630000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1086.810000px;}
.y6{bottom:1104.810000px;}
.y5{bottom:1121.550000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.ha{height:40.472227px;}
.h5{height:42.164648px;}
.h9{height:46.736719px;}
.h7{height:48.410156px;}
.h4{height:50.800781px;}
.h2{height:53.573906px;}
.hb{height:55.735312px;}
.hc{height:55.855313px;}
.h3{height:59.383125px;}
.h6{height:65.884219px;}
.h8{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.035987px;}
.x8{left:110.555987px;}
.x9{left:120.995987px;}
.x1{left:128.015987px;}
.x11{left:135.035987px;}
.x5{left:157.169987px;}
.xc{left:159.869987px;}
.x12{left:162.029987px;}
.xe{left:186.329987px;}
.xa{left:342.974987px;}
.xd{left:349.814987px;}
.x10{left:362.234987px;}
.xb{left:375.374987px;}
.xf{left:384.014987px;}
.x7{left:386.354987px;}
.x14{left:391.754987px;}
.x13{left:393.194987px;}
.x6{left:412.274987px;}
.x3{left:446.474987px;}
.x15{left:473.504987px;}
.x4{left:518.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6{letter-spacing:-4.074667pt;}
.ls8{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.062720pt;}
.ls4{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:10.192640pt;}
.lsf{letter-spacing:37.051307pt;}
.lsa{letter-spacing:38.971307pt;}
.ls3{letter-spacing:566.080000pt;}
.ws4{word-spacing:-14.817067pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-10.645333pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.000000pt;}
.ws6{word-spacing:-7.360000pt;}
.ws8{word-spacing:0.000000pt;}
._7{margin-left:-7.808000pt;}
._15{margin-left:-6.085547pt;}
._6{margin-left:-5.120000pt;}
._5{margin-left:-3.648000pt;}
._4{margin-left:-2.176000pt;}
._1{margin-left:-1.054507pt;}
._0{width:1.175467pt;}
._8{width:2.227627pt;}
._2{width:3.520853pt;}
._9{width:4.561493pt;}
._a{width:5.577600pt;}
._10{width:6.466987pt;}
._d{width:7.769173pt;}
._11{width:9.349120pt;}
._b{width:10.411520pt;}
._17{width:11.374507pt;}
._c{width:12.263893pt;}
._16{width:15.822933pt;}
._f{width:17.223893pt;}
._e{width:18.248960pt;}
._14{width:19.336747pt;}
._13{width:20.548907pt;}
._12{width:21.672960pt;}
._3{width:120.997333pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:32.960000pt;}
.yb{bottom:50.720000pt;}
.ya{bottom:64.512000pt;}
.y41{bottom:100.832000pt;}
.y76{bottom:104.832000pt;}
.y40{bottom:116.032000pt;}
.y75{bottom:120.032000pt;}
.y3f{bottom:131.392000pt;}
.y74{bottom:135.386667pt;}
.y3e{bottom:146.746667pt;}
.y73{bottom:150.746667pt;}
.y3d{bottom:162.106667pt;}
.y72{bottom:166.106667pt;}
.y3c{bottom:177.466667pt;}
.y71{bottom:181.466667pt;}
.y3b{bottom:192.666667pt;}
.y70{bottom:196.666667pt;}
.y3a{bottom:208.026667pt;}
.y6f{bottom:212.026667pt;}
.y39{bottom:223.386667pt;}
.y6e{bottom:227.386667pt;}
.y38{bottom:238.746667pt;}
.y6d{bottom:242.746667pt;}
.y37{bottom:254.106667pt;}
.y6c{bottom:258.106667pt;}
.y36{bottom:269.466667pt;}
.y6b{bottom:273.466667pt;}
.y35{bottom:284.666667pt;}
.y6a{bottom:288.666667pt;}
.y34{bottom:300.066667pt;}
.y69{bottom:304.066667pt;}
.y33{bottom:315.426667pt;}
.y68{bottom:319.426667pt;}
.y32{bottom:330.786667pt;}
.y67{bottom:334.786667pt;}
.y31{bottom:346.146667pt;}
.y66{bottom:350.146667pt;}
.y30{bottom:361.506667pt;}
.y65{bottom:365.506667pt;}
.y2f{bottom:376.706667pt;}
.y64{bottom:380.706667pt;}
.y2e{bottom:392.066667pt;}
.y63{bottom:396.066667pt;}
.y2d{bottom:407.426667pt;}
.y62{bottom:411.426667pt;}
.y2c{bottom:422.786667pt;}
.y61{bottom:426.786667pt;}
.y2b{bottom:438.146667pt;}
.y60{bottom:442.146667pt;}
.y2a{bottom:453.346667pt;}
.y5f{bottom:457.346667pt;}
.y29{bottom:468.706667pt;}
.y5e{bottom:472.706667pt;}
.y28{bottom:484.066667pt;}
.y5d{bottom:488.066667pt;}
.y27{bottom:499.426667pt;}
.y5c{bottom:503.426667pt;}
.y26{bottom:516.706667pt;}
.y5b{bottom:518.786667pt;}
.y25{bottom:532.066667pt;}
.y5a{bottom:534.146667pt;}
.y24{bottom:547.453333pt;}
.y59{bottom:549.373333pt;}
.y23{bottom:562.813333pt;}
.y58{bottom:564.733333pt;}
.y22{bottom:578.173333pt;}
.y57{bottom:580.093333pt;}
.y21{bottom:593.373333pt;}
.y56{bottom:595.453333pt;}
.y20{bottom:608.733333pt;}
.y55{bottom:610.813333pt;}
.y1f{bottom:624.093333pt;}
.y54{bottom:626.173333pt;}
.y1e{bottom:639.453333pt;}
.y53{bottom:641.373333pt;}
.y1d{bottom:654.813333pt;}
.y52{bottom:656.733333pt;}
.y1c{bottom:670.173333pt;}
.y51{bottom:672.093333pt;}
.y1b{bottom:685.373333pt;}
.y50{bottom:687.453333pt;}
.y1a{bottom:700.733333pt;}
.y4f{bottom:702.813333pt;}
.y19{bottom:716.093333pt;}
.y4e{bottom:718.173333pt;}
.y18{bottom:731.453333pt;}
.y4d{bottom:733.373333pt;}
.y17{bottom:746.813333pt;}
.y4c{bottom:748.733333pt;}
.y16{bottom:762.173333pt;}
.y4b{bottom:764.093333pt;}
.y15{bottom:779.493333pt;}
.y4a{bottom:794.853333pt;}
.y14{bottom:795.173333pt;}
.y49{bottom:810.053333pt;}
.y13{bottom:811.973333pt;}
.y48{bottom:825.413333pt;}
.y12{bottom:828.933333pt;}
.y47{bottom:840.773333pt;}
.y11{bottom:845.733333pt;}
.y46{bottom:856.133333pt;}
.y10{bottom:862.213333pt;}
.y45{bottom:871.493333pt;}
.yf{bottom:878.213333pt;}
.y44{bottom:886.853333pt;}
.ye{bottom:896.613333pt;}
.y43{bottom:902.053333pt;}
.yd{bottom:915.013333pt;}
.y42{bottom:917.413333pt;}
.y9{bottom:933.893333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:966.053333pt;}
.y6{bottom:982.053333pt;}
.y5{bottom:996.933333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.ha{height:35.975313pt;}
.h5{height:37.479688pt;}
.h9{height:41.543750pt;}
.h7{height:43.031250pt;}
.h4{height:45.156250pt;}
.h2{height:47.621250pt;}
.hb{height:49.542500pt;}
.hc{height:49.649167pt;}
.h3{height:52.785000pt;}
.h6{height:58.563750pt;}
.h8{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x8{left:98.271988pt;}
.x9{left:107.551988pt;}
.x1{left:113.791988pt;}
.x11{left:120.031988pt;}
.x5{left:139.706655pt;}
.xc{left:142.106655pt;}
.x12{left:144.026655pt;}
.xe{left:165.626655pt;}
.xa{left:304.866655pt;}
.xd{left:310.946655pt;}
.x10{left:321.986655pt;}
.xb{left:333.666655pt;}
.xf{left:341.346655pt;}
.x7{left:343.426655pt;}
.x14{left:348.226655pt;}
.x13{left:349.506655pt;}
.x6{left:366.466655pt;}
.x3{left:396.866655pt;}
.x15{left:420.893322pt;}
.x4{left:460.893322pt;}
}




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