
    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_e97145a0c31747abafc5ece3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_2c87d70034de48282d0a8740.woff2')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_2a401e69782f600c0016dba0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_811a7ebf384e86ef562e2a0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_63ac437f452ccfd0b0c9b750.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_6d5a32fe130b4144188ea3c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_263e1251af6f9f4c88fd3479.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.728027;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_c49fea4afae9b058089b0e1c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eeb960fbb6fab9701d891332.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_05b62e0a86f46dd8db9503fd.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_568108b7f6f520d9c096838a.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.690000px;}
.ls9{letter-spacing:-0.378600px;}
.ls7{letter-spacing:-0.369600px;}
.ls8{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.360000px;}
.ls5{letter-spacing:2.700000px;}
.ls3{letter-spacing:34.380000px;}
.ls4{letter-spacing:48.780000px;}
.lsc{letter-spacing:168.821280px;}
.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:-72.000000px;}
.ws3{word-spacing:-24.480000px;}
.ws2{word-spacing:-23.040000px;}
.ws8{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.690400px;}
.ws7{word-spacing:-20.681400px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:0.000000px;}
._26{margin-left:-6.197760px;}
._11{margin-left:-4.238880px;}
._10{margin-left:-3.037920px;}
._2{margin-left:-2.004000px;}
._20{margin-left:-1.000080px;}
._0{width:1.053360px;}
._c{width:2.128800px;}
._1{width:3.249120px;}
._5{width:4.809120px;}
._b{width:5.896800px;}
._d{width:7.008480px;}
._6{width:8.592480px;}
._23{width:9.856080px;}
._24{width:10.933440px;}
._4{width:12.407040px;}
._7{width:13.689840px;}
._27{width:14.783280px;}
._1b{width:16.029600px;}
._9{width:17.882880px;}
._a{width:18.948480px;}
._28{width:19.952640px;}
._1f{width:22.662240px;}
._e{width:25.272000px;}
._f{width:26.788320px;}
._25{width:27.889680px;}
._8{width:28.894320px;}
._19{width:31.926960px;}
._1a{width:33.022080px;}
._1c{width:34.074720px;}
._22{width:36.433440px;}
._21{width:37.553280px;}
._12{width:39.476160px;}
._13{width:40.821360px;}
._1d{width:48.606480px;}
._16{width:55.833360px;}
._17{width:59.810400px;}
._18{width:60.887760px;}
._1e{width:96.876000px;}
._14{width:111.954960px;}
._15{width:113.207040px;}
._3{width:1421.407200px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.600000px;}
.y21{bottom:90.900000px;}
.y47{bottom:118.296000px;}
.y20{bottom:127.296000px;}
.y58{bottom:145.476000px;}
.y46{bottom:154.470000px;}
.y35{bottom:163.470000px;}
.y1f{bottom:172.470000px;}
.y57{bottom:181.650000px;}
.y45{bottom:190.650000px;}
.y34{bottom:199.650000px;}
.y1e{bottom:208.650000px;}
.y56{bottom:217.830000px;}
.y44{bottom:226.830000px;}
.y33{bottom:235.830000px;}
.y1d{bottom:244.830000px;}
.y55{bottom:254.010000px;}
.y43{bottom:263.010000px;}
.y32{bottom:272.010000px;}
.y1c{bottom:281.010000px;}
.y54{bottom:290.370000px;}
.y42{bottom:299.370000px;}
.y31{bottom:308.370000px;}
.y1b{bottom:326.370000px;}
.y53{bottom:326.550000px;}
.y41{bottom:335.550000px;}
.y30{bottom:344.550000px;}
.y1a{bottom:362.550000px;}
.y52{bottom:362.730000px;}
.y40{bottom:371.775000px;}
.y2f{bottom:380.775000px;}
.y19{bottom:398.775000px;}
.y51{bottom:398.955000px;}
.y3f{bottom:407.955000px;}
.y2e{bottom:416.955000px;}
.y18{bottom:434.955000px;}
.y4b{bottom:444.315000px;}
.y3e{bottom:452.955000px;}
.y2d{bottom:453.315000px;}
.y17{bottom:471.315000px;}
.y4a{bottom:480.495000px;}
.y2c{bottom:489.495000px;}
.y16{bottom:507.495000px;}
.y49{bottom:516.675000px;}
.y2b{bottom:534.675000px;}
.y5c{bottom:538.815000px;}
.y15{bottom:543.675000px;}
.y50{bottom:552.855000px;}
.y48{bottom:561.495000px;}
.y2a{bottom:570.855000px;}
.y14{bottom:579.855000px;}
.y4f{bottom:589.215000px;}
.y29{bottom:607.215000px;}
.y13{bottom:616.215000px;}
.y4e{bottom:625.425000px;}
.y28{bottom:643.425000px;}
.y12{bottom:652.425000px;}
.y4d{bottom:661.605000px;}
.y27{bottom:679.605000px;}
.y11{bottom:688.605000px;}
.y4c{bottom:706.425000px;}
.y3d{bottom:715.785000px;}
.y10{bottom:724.785000px;}
.y3c{bottom:751.965000px;}
.yf{bottom:760.965000px;}
.y3b{bottom:788.325000px;}
.ye{bottom:797.325000px;}
.y3a{bottom:824.505000px;}
.yd{bottom:833.505000px;}
.y39{bottom:860.685000px;}
.yc{bottom:869.685000px;}
.y38{bottom:896.910000px;}
.yb{bottom:905.910000px;}
.y37{bottom:933.270000px;}
.ya{bottom:942.270000px;}
.y36{bottom:969.450000px;}
.y9{bottom:978.090000px;}
.y26{bottom:978.450000px;}
.y5b{bottom:1005.630000px;}
.y8{bottom:1014.270000px;}
.y25{bottom:1014.630000px;}
.y5a{bottom:1041.810000px;}
.y7{bottom:1050.450000px;}
.y24{bottom:1050.810000px;}
.y59{bottom:1078.170000px;}
.y6{bottom:1086.810000px;}
.y23{bottom:1087.170000px;}
.y5{bottom:1122.990000px;}
.y22{bottom:1123.350000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1196.100000px;}
.y1{bottom:1232.820000px;}
.h4{height:47.512969px;}
.h5{height:55.825312px;}
.h9{height:59.066719px;}
.h6{height:59.436914px;}
.hb{height:65.010937px;}
.h2{height:68.687227px;}
.h3{height:72.562500px;}
.h8{height:82.676953px;}
.h7{height:84.898125px;}
.ha{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.656000px;}
.x1{left:158.070000px;}
.x5{left:164.010000px;}
.xe{left:170.130000px;}
.x4{left:179.490000px;}
.xc{left:264.450000px;}
.xb{left:278.490000px;}
.x9{left:301.215000px;}
.xd{left:369.075000px;}
.x8{left:370.875000px;}
.x6{left:371.955000px;}
.xa{left:378.975000px;}
.x7{left:499.785000px;}
.x2{left:614.805000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.613333pt;}
.ls9{letter-spacing:-0.336533pt;}
.ls7{letter-spacing:-0.328533pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.320000pt;}
.ls5{letter-spacing:2.400000pt;}
.ls3{letter-spacing:30.560000pt;}
.ls4{letter-spacing:43.360000pt;}
.lsc{letter-spacing:150.063360pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-21.760000pt;}
.ws2{word-spacing:-20.480000pt;}
.ws8{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.391467pt;}
.ws7{word-spacing:-18.383467pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:0.000000pt;}
._26{margin-left:-5.509120pt;}
._11{margin-left:-3.767893pt;}
._10{margin-left:-2.700373pt;}
._2{margin-left:-1.781333pt;}
._20{margin-left:-0.888960pt;}
._0{width:0.936320pt;}
._c{width:1.892267pt;}
._1{width:2.888107pt;}
._5{width:4.274773pt;}
._b{width:5.241600pt;}
._d{width:6.229760pt;}
._6{width:7.637760pt;}
._23{width:8.760960pt;}
._24{width:9.718613pt;}
._4{width:11.028480pt;}
._7{width:12.168747pt;}
._27{width:13.140693pt;}
._1b{width:14.248533pt;}
._9{width:15.895893pt;}
._a{width:16.843093pt;}
._28{width:17.735680pt;}
._1f{width:20.144213pt;}
._e{width:22.464000pt;}
._f{width:23.811840pt;}
._25{width:24.790827pt;}
._8{width:25.683840pt;}
._19{width:28.379520pt;}
._1a{width:29.352960pt;}
._1c{width:30.288640pt;}
._22{width:32.385280pt;}
._21{width:33.380693pt;}
._12{width:35.089920pt;}
._13{width:36.285653pt;}
._1d{width:43.205760pt;}
._16{width:49.629653pt;}
._17{width:53.164800pt;}
._18{width:54.122453pt;}
._1e{width:86.112000pt;}
._14{width:99.515520pt;}
._15{width:100.628480pt;}
._3{width:1263.473067pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.200000pt;}
.y21{bottom:80.800000pt;}
.y47{bottom:105.152000pt;}
.y20{bottom:113.152000pt;}
.y58{bottom:129.312000pt;}
.y46{bottom:137.306667pt;}
.y35{bottom:145.306667pt;}
.y1f{bottom:153.306667pt;}
.y57{bottom:161.466667pt;}
.y45{bottom:169.466667pt;}
.y34{bottom:177.466667pt;}
.y1e{bottom:185.466667pt;}
.y56{bottom:193.626667pt;}
.y44{bottom:201.626667pt;}
.y33{bottom:209.626667pt;}
.y1d{bottom:217.626667pt;}
.y55{bottom:225.786667pt;}
.y43{bottom:233.786667pt;}
.y32{bottom:241.786667pt;}
.y1c{bottom:249.786667pt;}
.y54{bottom:258.106667pt;}
.y42{bottom:266.106667pt;}
.y31{bottom:274.106667pt;}
.y1b{bottom:290.106667pt;}
.y53{bottom:290.266667pt;}
.y41{bottom:298.266667pt;}
.y30{bottom:306.266667pt;}
.y1a{bottom:322.266667pt;}
.y52{bottom:322.426667pt;}
.y40{bottom:330.466667pt;}
.y2f{bottom:338.466667pt;}
.y19{bottom:354.466667pt;}
.y51{bottom:354.626667pt;}
.y3f{bottom:362.626667pt;}
.y2e{bottom:370.626667pt;}
.y18{bottom:386.626667pt;}
.y4b{bottom:394.946667pt;}
.y3e{bottom:402.626667pt;}
.y2d{bottom:402.946667pt;}
.y17{bottom:418.946667pt;}
.y4a{bottom:427.106667pt;}
.y2c{bottom:435.106667pt;}
.y16{bottom:451.106667pt;}
.y49{bottom:459.266667pt;}
.y2b{bottom:475.266667pt;}
.y5c{bottom:478.946667pt;}
.y15{bottom:483.266667pt;}
.y50{bottom:491.426667pt;}
.y48{bottom:499.106667pt;}
.y2a{bottom:507.426667pt;}
.y14{bottom:515.426667pt;}
.y4f{bottom:523.746667pt;}
.y29{bottom:539.746667pt;}
.y13{bottom:547.746667pt;}
.y4e{bottom:555.933333pt;}
.y28{bottom:571.933333pt;}
.y12{bottom:579.933333pt;}
.y4d{bottom:588.093333pt;}
.y27{bottom:604.093333pt;}
.y11{bottom:612.093333pt;}
.y4c{bottom:627.933333pt;}
.y3d{bottom:636.253333pt;}
.y10{bottom:644.253333pt;}
.y3c{bottom:668.413333pt;}
.yf{bottom:676.413333pt;}
.y3b{bottom:700.733333pt;}
.ye{bottom:708.733333pt;}
.y3a{bottom:732.893333pt;}
.yd{bottom:740.893333pt;}
.y39{bottom:765.053333pt;}
.yc{bottom:773.053333pt;}
.y38{bottom:797.253333pt;}
.yb{bottom:805.253333pt;}
.y37{bottom:829.573333pt;}
.ya{bottom:837.573333pt;}
.y36{bottom:861.733333pt;}
.y9{bottom:869.413333pt;}
.y26{bottom:869.733333pt;}
.y5b{bottom:893.893333pt;}
.y8{bottom:901.573333pt;}
.y25{bottom:901.893333pt;}
.y5a{bottom:926.053333pt;}
.y7{bottom:933.733333pt;}
.y24{bottom:934.053333pt;}
.y59{bottom:958.373333pt;}
.y6{bottom:966.053333pt;}
.y23{bottom:966.373333pt;}
.y5{bottom:998.213333pt;}
.y22{bottom:998.533333pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1063.200000pt;}
.y1{bottom:1095.840000pt;}
.h4{height:42.233750pt;}
.h5{height:49.622500pt;}
.h9{height:52.503750pt;}
.h6{height:52.832812pt;}
.hb{height:57.787500pt;}
.h2{height:61.055312pt;}
.h3{height:64.500000pt;}
.h8{height:73.490625pt;}
.h7{height:75.465000pt;}
.ha{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.472000pt;}
.x1{left:140.506667pt;}
.x5{left:145.786667pt;}
.xe{left:151.226667pt;}
.x4{left:159.546667pt;}
.xc{left:235.066667pt;}
.xb{left:247.546667pt;}
.x9{left:267.746667pt;}
.xd{left:328.066667pt;}
.x8{left:329.666667pt;}
.x6{left:330.626667pt;}
.xa{left:336.866667pt;}
.x7{left:444.253333pt;}
.x2{left:546.493333pt;}
}




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