
    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_ed6e107dc27fbe15073e85c5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a502ff54d14a86190812f447.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bbce1b45794f908678d43eb1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916016;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_0c43fce4d128105615186b64.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_4368f24ba49872f8c2b94a11.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2c1022a379ac3aedf209da2b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_028fef5f1ac514e9057b3cf2.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_685ea8c4193285d26342a542.woff')format("woff");}.ff9{font-family:ff9;line-height:0.916016;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_3174ae87c35aaacddec9a9c0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.870117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.057600px;}
.lsf{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.144000px;}
.lse{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.262200px;}
.ls7{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.lsa{letter-spacing:198.144000px;}
.ls2{letter-spacing:1027.637760px;}
.ls0{letter-spacing:1491.342240px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws6{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-11.700000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-8.196000px;}
._13{margin-left:-5.712000px;}
._f{margin-left:-4.680000px;}
._d{margin-left:-2.736000px;}
._0{margin-left:-1.296000px;}
._7{width:1.038000px;}
._a{width:2.649600px;}
._b{width:3.673680px;}
._16{width:5.112000px;}
._1b{width:6.120000px;}
._14{width:7.272000px;}
._15{width:8.637360px;}
._8{width:9.722640px;}
._9{width:10.967040px;}
._c{width:12.528000px;}
._e{width:13.752000px;}
._1c{width:14.892000px;}
._11{width:16.056000px;}
._17{width:19.050000px;}
._18{width:20.736000px;}
._10{width:22.176000px;}
._6{width:42.432000px;}
._5{width:43.464000px;}
._3{width:256.608000px;}
._4{width:258.612000px;}
._2{width:1157.367600px;}
._1a{width:1486.920000px;}
._19{width:1948.107600px;}
._1{width:2552.700480px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:55.980000px;}
.y2f{bottom:57.600000px;}
.y2e{bottom:76.176000px;}
.y2c{bottom:114.516000px;}
.y2b{bottom:135.216000px;}
.y2a{bottom:155.910000px;}
.y48{bottom:167.430000px;}
.y29{bottom:176.610000px;}
.y47{bottom:188.130000px;}
.y28{bottom:197.310000px;}
.y5d{bottom:205.050000px;}
.y46{bottom:208.830000px;}
.y27{bottom:218.010000px;}
.y45{bottom:229.530000px;}
.y26{bottom:238.710000px;}
.y5c{bottom:239.250000px;}
.y44{bottom:250.230000px;}
.y25{bottom:259.410000px;}
.y5b{bottom:261.570000px;}
.y43{bottom:270.930000px;}
.y24{bottom:280.110000px;}
.y42{bottom:292.170000px;}
.y5a{bottom:295.950000px;}
.y23{bottom:300.810000px;}
.y59{bottom:318.270000px;}
.y22{bottom:321.510000px;}
.y41{bottom:335.550000px;}
.y21{bottom:342.255000px;}
.y58{bottom:352.695000px;}
.y40{bottom:357.915000px;}
.y20{bottom:362.955000px;}
.y57{bottom:375.015000px;}
.y3f{bottom:380.775000px;}
.y1f{bottom:383.655000px;}
.y1e{bottom:404.355000px;}
.y56{bottom:409.395000px;}
.y3e{bottom:424.335000px;}
.y1d{bottom:425.055000px;}
.y55{bottom:431.715000px;}
.y1c{bottom:445.755000px;}
.y54{bottom:452.415000px;}
.y1b{bottom:466.455000px;}
.y3d{bottom:467.535000px;}
.y53{bottom:473.115000px;}
.y1a{bottom:487.155000px;}
.y3c{bottom:490.035000px;}
.y52{bottom:493.815000px;}
.y3b{bottom:512.355000px;}
.y51{bottom:514.515000px;}
.y19{bottom:518.475000px;}
.y3a{bottom:534.495000px;}
.y50{bottom:535.215000px;}
.y4f{bottom:555.915000px;}
.y18{bottom:560.055000px;}
.y39{bottom:576.255000px;}
.y4e{bottom:576.615000px;}
.y17{bottom:597.135000px;}
.y4d{bottom:597.315000px;}
.y4c{bottom:618.045000px;}
.y38{bottom:619.665000px;}
.y16{bottom:634.245000px;}
.y4b{bottom:638.745000px;}
.y37{bottom:641.985000px;}
.y15{bottom:653.145000px;}
.y4a{bottom:659.445000px;}
.y49{bottom:676.185000px;}
.y36{bottom:679.785000px;}
.y14{bottom:682.485000px;}
.y13{bottom:703.005000px;}
.y12{bottom:723.525000px;}
.y11{bottom:744.045000px;}
.y6b{bottom:759.885000px;}
.y10{bottom:778.605000px;}
.y6a{bottom:782.205000px;}
.yf{bottom:795.345000px;}
.y69{bottom:802.905000px;}
.ye{bottom:812.085000px;}
.y68{bottom:823.605000px;}
.yd{bottom:828.825000px;}
.y67{bottom:844.305000px;}
.yc{bottom:845.565000px;}
.yb{bottom:862.305000px;}
.y66{bottom:878.730000px;}
.ya{bottom:879.090000px;}
.y9{bottom:900.330000px;}
.y65{bottom:913.110000px;}
.y8{bottom:929.130000px;}
.y64{bottom:947.490000px;}
.y7{bottom:965.850000px;}
.y63{bottom:969.810000px;}
.y6{bottom:989.070000px;}
.y62{bottom:1004.010000px;}
.y61{bottom:1026.330000px;}
.y5{bottom:1030.470000px;}
.y35{bottom:1036.230000px;}
.y34{bottom:1056.930000px;}
.y60{bottom:1060.710000px;}
.y4{bottom:1071.870000px;}
.y33{bottom:1077.630000px;}
.y5f{bottom:1095.090000px;}
.y32{bottom:1098.330000px;}
.y5e{bottom:1117.410000px;}
.y31{bottom:1119.030000px;}
.y30{bottom:1139.760000px;}
.y2{bottom:1152.540000px;}
.y1{bottom:1173.780000px;}
.y2d{bottom:1194.300000px;}
.h7{height:26.033203px;}
.h8{height:39.049805px;}
.he{height:41.535703px;}
.ha{height:43.215117px;}
.h5{height:46.736719px;}
.h3{height:47.901094px;}
.h9{height:48.418594px;}
.hb{height:50.800781px;}
.hc{height:52.066406px;}
.hd{height:52.628906px;}
.h6{height:57.796523px;}
.hf{height:62.015625px;}
.h2{height:65.884219px;}
.h10{height:71.613281px;}
.h4{height:101.601562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.039987px;}
.x3{left:122.075987px;}
.x2{left:160.589987px;}
.x4{left:710.609987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.051200pt;}
.lsf{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.233067pt;}
.ls7{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsa{letter-spacing:176.128000pt;}
.ls2{letter-spacing:913.455787pt;}
.ls0{letter-spacing:1325.637547pt;}
.ws5{word-spacing:-64.000000pt;}
.ws6{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-7.285333pt;}
._13{margin-left:-5.077333pt;}
._f{margin-left:-4.160000pt;}
._d{margin-left:-2.432000pt;}
._0{margin-left:-1.152000pt;}
._7{width:0.922667pt;}
._a{width:2.355200pt;}
._b{width:3.265493pt;}
._16{width:4.544000pt;}
._1b{width:5.440000pt;}
._14{width:6.464000pt;}
._15{width:7.677653pt;}
._8{width:8.642347pt;}
._9{width:9.748480pt;}
._c{width:11.136000pt;}
._e{width:12.224000pt;}
._1c{width:13.237333pt;}
._11{width:14.272000pt;}
._17{width:16.933333pt;}
._18{width:18.432000pt;}
._10{width:19.712000pt;}
._6{width:37.717333pt;}
._5{width:38.634667pt;}
._3{width:228.096000pt;}
._4{width:229.877333pt;}
._2{width:1028.771200pt;}
._1a{width:1321.706667pt;}
._19{width:1731.651200pt;}
._1{width:2269.067093pt;}
.fs6{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:49.760000pt;}
.y2f{bottom:51.200000pt;}
.y2e{bottom:67.712000pt;}
.y2c{bottom:101.792000pt;}
.y2b{bottom:120.192000pt;}
.y2a{bottom:138.586667pt;}
.y48{bottom:148.826667pt;}
.y29{bottom:156.986667pt;}
.y47{bottom:167.226667pt;}
.y28{bottom:175.386667pt;}
.y5d{bottom:182.266667pt;}
.y46{bottom:185.626667pt;}
.y27{bottom:193.786667pt;}
.y45{bottom:204.026667pt;}
.y26{bottom:212.186667pt;}
.y5c{bottom:212.666667pt;}
.y44{bottom:222.426667pt;}
.y25{bottom:230.586667pt;}
.y5b{bottom:232.506667pt;}
.y43{bottom:240.826667pt;}
.y24{bottom:248.986667pt;}
.y42{bottom:259.706667pt;}
.y5a{bottom:263.066667pt;}
.y23{bottom:267.386667pt;}
.y59{bottom:282.906667pt;}
.y22{bottom:285.786667pt;}
.y41{bottom:298.266667pt;}
.y21{bottom:304.226667pt;}
.y58{bottom:313.506667pt;}
.y40{bottom:318.146667pt;}
.y20{bottom:322.626667pt;}
.y57{bottom:333.346667pt;}
.y3f{bottom:338.466667pt;}
.y1f{bottom:341.026667pt;}
.y1e{bottom:359.426667pt;}
.y56{bottom:363.906667pt;}
.y3e{bottom:377.186667pt;}
.y1d{bottom:377.826667pt;}
.y55{bottom:383.746667pt;}
.y1c{bottom:396.226667pt;}
.y54{bottom:402.146667pt;}
.y1b{bottom:414.626667pt;}
.y3d{bottom:415.586667pt;}
.y53{bottom:420.546667pt;}
.y1a{bottom:433.026667pt;}
.y3c{bottom:435.586667pt;}
.y52{bottom:438.946667pt;}
.y3b{bottom:455.426667pt;}
.y51{bottom:457.346667pt;}
.y19{bottom:460.866667pt;}
.y3a{bottom:475.106667pt;}
.y50{bottom:475.746667pt;}
.y4f{bottom:494.146667pt;}
.y18{bottom:497.826667pt;}
.y39{bottom:512.226667pt;}
.y4e{bottom:512.546667pt;}
.y17{bottom:530.786667pt;}
.y4d{bottom:530.946667pt;}
.y4c{bottom:549.373333pt;}
.y38{bottom:550.813333pt;}
.y16{bottom:563.773333pt;}
.y4b{bottom:567.773333pt;}
.y37{bottom:570.653333pt;}
.y15{bottom:580.573333pt;}
.y4a{bottom:586.173333pt;}
.y49{bottom:601.053333pt;}
.y36{bottom:604.253333pt;}
.y14{bottom:606.653333pt;}
.y13{bottom:624.893333pt;}
.y12{bottom:643.133333pt;}
.y11{bottom:661.373333pt;}
.y6b{bottom:675.453333pt;}
.y10{bottom:692.093333pt;}
.y6a{bottom:695.293333pt;}
.yf{bottom:706.973333pt;}
.y69{bottom:713.693333pt;}
.ye{bottom:721.853333pt;}
.y68{bottom:732.093333pt;}
.yd{bottom:736.733333pt;}
.y67{bottom:750.493333pt;}
.yc{bottom:751.613333pt;}
.yb{bottom:766.493333pt;}
.y66{bottom:781.093333pt;}
.ya{bottom:781.413333pt;}
.y9{bottom:800.293333pt;}
.y65{bottom:811.653333pt;}
.y8{bottom:825.893333pt;}
.y64{bottom:842.213333pt;}
.y7{bottom:858.533333pt;}
.y63{bottom:862.053333pt;}
.y6{bottom:879.173333pt;}
.y62{bottom:892.453333pt;}
.y61{bottom:912.293333pt;}
.y5{bottom:915.973333pt;}
.y35{bottom:921.093333pt;}
.y34{bottom:939.493333pt;}
.y60{bottom:942.853333pt;}
.y4{bottom:952.773333pt;}
.y33{bottom:957.893333pt;}
.y5f{bottom:973.413333pt;}
.y32{bottom:976.293333pt;}
.y5e{bottom:993.253333pt;}
.y31{bottom:994.693333pt;}
.y30{bottom:1013.120000pt;}
.y2{bottom:1024.480000pt;}
.y1{bottom:1043.360000pt;}
.y2d{bottom:1061.600000pt;}
.h7{height:23.140625pt;}
.h8{height:34.710938pt;}
.he{height:36.920625pt;}
.ha{height:38.413438pt;}
.h5{height:41.543750pt;}
.h3{height:42.578750pt;}
.h9{height:43.038750pt;}
.hb{height:45.156250pt;}
.hc{height:46.281250pt;}
.hd{height:46.781250pt;}
.h6{height:51.374688pt;}
.hf{height:55.125000pt;}
.h2{height:58.563750pt;}
.h10{height:63.656250pt;}
.h4{height:90.312500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.479988pt;}
.x3{left:108.511988pt;}
.x2{left:142.746655pt;}
.x4{left:631.653322pt;}
}




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