
    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_6cc829eece39f53d6389fa9f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.859000;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_73d47ccbe34210b805ca0eeb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100586;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_1db3d76738e9933d95dd8713.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100586;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_d0491622e2b2171dd63600e7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.884277;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);}
.v2{vertical-align:-26.340000px;}
.v1{vertical-align:-4.140000px;}
.v4{vertical-align:-1.140000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.020000px;}
.ls10{letter-spacing:-0.432000px;}
.lsf{letter-spacing:0.000000px;}
.ls0{letter-spacing:35.568000px;}
.ls4{letter-spacing:135.768000px;}
.ls5{letter-spacing:159.408000px;}
.ls9{letter-spacing:187.488000px;}
.ls1{letter-spacing:244.668000px;}
.ls6{letter-spacing:367.368000px;}
.ls2{letter-spacing:559.008000px;}
.lsd{letter-spacing:794.604000px;}
.lsa{letter-spacing:799.884000px;}
.lsc{letter-spacing:801.624000px;}
.ls7{letter-spacing:805.644000px;}
.lse{letter-spacing:806.484000px;}
.ls8{letter-spacing:809.124000px;}
.lsb{letter-spacing:809.244000px;}
.ls3{letter-spacing:1159.908000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.576000px;}
.ws2{word-spacing:-48.038400px;}
.ws4{word-spacing:-36.432000px;}
.ws3{word-spacing:-36.000000px;}
.ws1{word-spacing:-2.810400px;}
.wsc{word-spacing:-0.108000px;}
.wse{word-spacing:0.000000px;}
.wsf{word-spacing:0.180000px;}
.ws5{word-spacing:89.400000px;}
.ws11{word-spacing:108.000000px;}
.ws6{word-spacing:209.676000px;}
.ws7{word-spacing:243.360000px;}
.ws10{word-spacing:288.000000px;}
.ws8{word-spacing:336.216000px;}
.wsd{word-spacing:353.520000px;}
.ws9{word-spacing:438.516000px;}
.wsa{word-spacing:465.540000px;}
.wsb{word-spacing:655.800000px;}
._3{margin-left:-2480.113200px;}
._2{margin-left:-1961.820000px;}
._4{margin-left:-1551.765600px;}
._6{margin-left:-1203.400800px;}
._14{margin-left:-54.636000px;}
._1{margin-left:-3.175200px;}
._0{margin-left:-1.360800px;}
._5{width:1.199520px;}
._27{width:175.800000px;}
._1f{width:184.860000px;}
._1e{width:220.860000px;}
._1c{width:224.640000px;}
._19{width:254.640000px;}
._25{width:275.040000px;}
._10{width:283.380000px;}
._1d{width:290.040000px;}
._23{width:295.920000px;}
._1b{width:312.480000px;}
._22{width:360.000000px;}
._20{width:361.020000px;}
._16{width:362.640000px;}
._7{width:370.656000px;}
._15{width:389.520000px;}
._26{width:391.800000px;}
._1a{width:420.480000px;}
._a{width:428.820000px;}
._13{width:431.280000px;}
._e{width:440.340000px;}
._28{width:455.040000px;}
._f{width:456.360000px;}
._12{width:467.280000px;}
._17{width:492.480000px;}
._8{width:501.696000px;}
._b{width:519.408000px;}
._18{width:528.480000px;}
._c{width:536.700000px;}
._11{width:539.280000px;}
._9{width:548.088000px;}
._21{width:691.920000px;}
._24{width:727.920000px;}
._d{width:1052.340000px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(71,63,64);}
.fc0{color:rgb(46,186,213);}
.fs6{font-size:66.240000px;}
.fs7{font-size:108.000000px;}
.fs5{font-size:300.240000px;}
.fs2{font-size:408.240000px;}
.fs3{font-size:414.000000px;}
.fs1{font-size:453.600000px;}
.fs4{font-size:599.760000px;}
.fs0{font-size:840.360000px;}
.y0{bottom:0.000000px;}
.y8{bottom:1070.610000px;}
.y3c{bottom:1085.070000px;}
.y3b{bottom:1128.885000px;}
.y3a{bottom:1172.700000px;}
.y39{bottom:1216.470000px;}
.y3{bottom:1225.440000px;}
.y4c{bottom:1279.545000px;}
.y4d{bottom:1279.590000px;}
.y38{bottom:1491.300000px;}
.y37{bottom:1535.115000px;}
.y36{bottom:1578.885000px;}
.y35{bottom:1622.700000px;}
.y34{bottom:1666.515000px;}
.y4a{bottom:1695.450000px;}
.y4b{bottom:1695.495000px;}
.y48{bottom:1746.330000px;}
.y49{bottom:1746.360000px;}
.y33{bottom:1901.595000px;}
.y32{bottom:1945.365000px;}
.y42{bottom:1985.370000px;}
.y41{bottom:1985.400000px;}
.y43{bottom:1985.475000px;}
.y3f{bottom:1985.505000px;}
.y40{bottom:1985.550000px;}
.y44{bottom:1985.580000px;}
.y31{bottom:1989.180000px;}
.y46{bottom:2045.595000px;}
.y47{bottom:2045.625000px;}
.y30{bottom:2225.520000px;}
.y2f{bottom:2269.335000px;}
.y2e{bottom:2313.150000px;}
.y2d{bottom:2356.920000px;}
.y2c{bottom:2400.735000px;}
.y2b{bottom:2444.550000px;}
.y45{bottom:2500.950000px;}
.y2a{bottom:2673.030000px;}
.y29{bottom:2692.830000px;}
.y28{bottom:2736.645000px;}
.y3d{bottom:2786.430000px;}
.y3e{bottom:2786.475000px;}
.y27{bottom:2950.275000px;}
.y26{bottom:2950.305000px;}
.y25{bottom:2951.310000px;}
.y20{bottom:2951.745000px;}
.y1a{bottom:2951.820000px;}
.y1b{bottom:2951.850000px;}
.y14{bottom:2951.895000px;}
.y15{bottom:2951.925000px;}
.y4{bottom:3017.370000px;}
.y23{bottom:3117.750000px;}
.y24{bottom:3117.780000px;}
.y21{bottom:3172.755000px;}
.y22{bottom:3172.785000px;}
.y13{bottom:3307.140000px;}
.y12{bottom:3350.955000px;}
.y11{bottom:3394.725000px;}
.y1e{bottom:3443.325000px;}
.y1f{bottom:3443.370000px;}
.y10{bottom:3563.850000px;}
.yf{bottom:3607.665000px;}
.ye{bottom:3651.480000px;}
.y1c{bottom:3698.280000px;}
.y1d{bottom:3698.310000px;}
.yd{bottom:3807.000000px;}
.yc{bottom:3826.800000px;}
.y18{bottom:3872.265000px;}
.y19{bottom:3872.310000px;}
.yb{bottom:3982.755000px;}
.ya{bottom:4002.555000px;}
.y9{bottom:4022.355000px;}
.y16{bottom:4062.930000px;}
.y17{bottom:4062.960000px;}
.y2{bottom:4195.905000px;}
.y7{bottom:4196.340000px;}
.y6{bottom:4423.140000px;}
.y5{bottom:4603.140000px;}
.y1{bottom:4763.055000px;}
.h7{height:57.668906px;}
.h8{height:81.896484px;}
.h9{height:82.196484px;}
.ha{height:82.916484px;}
.h6{height:254.903760px;}
.h4{height:351.486000px;}
.h3{height:385.106400px;}
.h5{height:509.196240px;}
.h2{height:713.465640px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1{left:140.867947px;}
.x4{left:142.703947px;}
.x3{left:143.711947px;}
.x2{left:144.863947px;}
.xd{left:1166.474947px;}
.x5{left:1277.714947px;}
.xf{left:1380.989947px;}
.x8{left:1495.619947px;}
.x1a{left:1597.064947px;}
.x11{left:1606.034947px;}
.x6{left:1744.664947px;}
.x13{left:1822.889947px;}
.xe{left:1853.849947px;}
.x7{left:1856.549947px;}
.x10{left:1859.039947px;}
.x9{left:1898.024947px;}
.xb{left:1906.814947px;}
.x1b{left:2023.559947px;}
.xa{left:2155.889947px;}
.x14{left:2254.109947px;}
.xc{left:2413.694947px;}
.x19{left:2542.064947px;}
.x12{left:2546.174947px;}
.x18{left:2591.024947px;}
.x17{left:2596.349947px;}
.x15{left:2599.844947px;}
.x16{left:2724.224947px;}
@media print{
.v2{vertical-align:-23.413333pt;}
.v1{vertical-align:-3.680000pt;}
.v4{vertical-align:-1.013333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.906667pt;}
.ls10{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls0{letter-spacing:31.616000pt;}
.ls4{letter-spacing:120.682667pt;}
.ls5{letter-spacing:141.696000pt;}
.ls9{letter-spacing:166.656000pt;}
.ls1{letter-spacing:217.482667pt;}
.ls6{letter-spacing:326.549333pt;}
.ls2{letter-spacing:496.896000pt;}
.lsd{letter-spacing:706.314667pt;}
.lsa{letter-spacing:711.008000pt;}
.lsc{letter-spacing:712.554667pt;}
.ls7{letter-spacing:716.128000pt;}
.lse{letter-spacing:716.874667pt;}
.ls8{letter-spacing:719.221333pt;}
.lsb{letter-spacing:719.328000pt;}
.ls3{letter-spacing:1031.029333pt;}
.ws0{word-spacing:-64.512000pt;}
.ws2{word-spacing:-42.700800pt;}
.ws4{word-spacing:-32.384000pt;}
.ws3{word-spacing:-32.000000pt;}
.ws1{word-spacing:-2.498133pt;}
.wsc{word-spacing:-0.096000pt;}
.wse{word-spacing:0.000000pt;}
.wsf{word-spacing:0.160000pt;}
.ws5{word-spacing:79.466667pt;}
.ws11{word-spacing:96.000000pt;}
.ws6{word-spacing:186.378667pt;}
.ws7{word-spacing:216.320000pt;}
.ws10{word-spacing:256.000000pt;}
.ws8{word-spacing:298.858667pt;}
.wsd{word-spacing:314.240000pt;}
.ws9{word-spacing:389.792000pt;}
.wsa{word-spacing:413.813333pt;}
.wsb{word-spacing:582.933333pt;}
._3{margin-left:-2204.545067pt;}
._2{margin-left:-1743.840000pt;}
._4{margin-left:-1379.347200pt;}
._6{margin-left:-1069.689600pt;}
._14{margin-left:-48.565333pt;}
._1{margin-left:-2.822400pt;}
._0{margin-left:-1.209600pt;}
._5{width:1.066240pt;}
._27{width:156.266667pt;}
._1f{width:164.320000pt;}
._1e{width:196.320000pt;}
._1c{width:199.680000pt;}
._19{width:226.346667pt;}
._25{width:244.480000pt;}
._10{width:251.893333pt;}
._1d{width:257.813333pt;}
._23{width:263.040000pt;}
._1b{width:277.760000pt;}
._22{width:320.000000pt;}
._20{width:320.906667pt;}
._16{width:322.346667pt;}
._7{width:329.472000pt;}
._15{width:346.240000pt;}
._26{width:348.266667pt;}
._1a{width:373.760000pt;}
._a{width:381.173333pt;}
._13{width:383.360000pt;}
._e{width:391.413333pt;}
._28{width:404.480000pt;}
._f{width:405.653333pt;}
._12{width:415.360000pt;}
._17{width:437.760000pt;}
._8{width:445.952000pt;}
._b{width:461.696000pt;}
._18{width:469.760000pt;}
._c{width:477.066667pt;}
._11{width:479.360000pt;}
._9{width:487.189333pt;}
._21{width:615.040000pt;}
._24{width:647.040000pt;}
._d{width:935.413333pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:96.000000pt;}
.fs5{font-size:266.880000pt;}
.fs2{font-size:362.880000pt;}
.fs3{font-size:368.000000pt;}
.fs1{font-size:403.200000pt;}
.fs4{font-size:533.120000pt;}
.fs0{font-size:746.986667pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:951.653333pt;}
.y3c{bottom:964.506667pt;}
.y3b{bottom:1003.453333pt;}
.y3a{bottom:1042.400000pt;}
.y39{bottom:1081.306667pt;}
.y3{bottom:1089.280000pt;}
.y4c{bottom:1137.373333pt;}
.y4d{bottom:1137.413333pt;}
.y38{bottom:1325.600000pt;}
.y37{bottom:1364.546667pt;}
.y36{bottom:1403.453333pt;}
.y35{bottom:1442.400000pt;}
.y34{bottom:1481.346667pt;}
.y4a{bottom:1507.066667pt;}
.y4b{bottom:1507.106667pt;}
.y48{bottom:1552.293333pt;}
.y49{bottom:1552.320000pt;}
.y33{bottom:1690.306667pt;}
.y32{bottom:1729.213333pt;}
.y42{bottom:1764.773333pt;}
.y41{bottom:1764.800000pt;}
.y43{bottom:1764.866667pt;}
.y3f{bottom:1764.893333pt;}
.y40{bottom:1764.933333pt;}
.y44{bottom:1764.960000pt;}
.y31{bottom:1768.160000pt;}
.y46{bottom:1818.306667pt;}
.y47{bottom:1818.333333pt;}
.y30{bottom:1978.240000pt;}
.y2f{bottom:2017.186667pt;}
.y2e{bottom:2056.133333pt;}
.y2d{bottom:2095.040000pt;}
.y2c{bottom:2133.986667pt;}
.y2b{bottom:2172.933333pt;}
.y45{bottom:2223.066667pt;}
.y2a{bottom:2376.026667pt;}
.y29{bottom:2393.626667pt;}
.y28{bottom:2432.573333pt;}
.y3d{bottom:2476.826667pt;}
.y3e{bottom:2476.866667pt;}
.y27{bottom:2622.466667pt;}
.y26{bottom:2622.493333pt;}
.y25{bottom:2623.386667pt;}
.y20{bottom:2623.773333pt;}
.y1a{bottom:2623.840000pt;}
.y1b{bottom:2623.866667pt;}
.y14{bottom:2623.906667pt;}
.y15{bottom:2623.933333pt;}
.y4{bottom:2682.106667pt;}
.y23{bottom:2771.333333pt;}
.y24{bottom:2771.360000pt;}
.y21{bottom:2820.226667pt;}
.y22{bottom:2820.253333pt;}
.y13{bottom:2939.680000pt;}
.y12{bottom:2978.626667pt;}
.y11{bottom:3017.533333pt;}
.y1e{bottom:3060.733333pt;}
.y1f{bottom:3060.773333pt;}
.y10{bottom:3167.866667pt;}
.yf{bottom:3206.813333pt;}
.ye{bottom:3245.760000pt;}
.y1c{bottom:3287.360000pt;}
.y1d{bottom:3287.386667pt;}
.yd{bottom:3384.000000pt;}
.yc{bottom:3401.600000pt;}
.y18{bottom:3442.013333pt;}
.y19{bottom:3442.053333pt;}
.yb{bottom:3540.226667pt;}
.ya{bottom:3557.826667pt;}
.y9{bottom:3575.426667pt;}
.y16{bottom:3611.493333pt;}
.y17{bottom:3611.520000pt;}
.y2{bottom:3729.693333pt;}
.y7{bottom:3730.080000pt;}
.y6{bottom:3931.680000pt;}
.y5{bottom:4091.680000pt;}
.y1{bottom:4233.826667pt;}
.h7{height:51.261250pt;}
.h8{height:72.796875pt;}
.h9{height:73.063542pt;}
.ha{height:73.703542pt;}
.h6{height:226.581120pt;}
.h4{height:312.432000pt;}
.h3{height:342.316800pt;}
.h5{height:452.618880pt;}
.h2{height:634.191680pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1{left:125.215953pt;}
.x4{left:126.847953pt;}
.x3{left:127.743953pt;}
.x2{left:128.767953pt;}
.xd{left:1036.866619pt;}
.x5{left:1135.746619pt;}
.xf{left:1227.546619pt;}
.x8{left:1329.439953pt;}
.x1a{left:1419.613286pt;}
.x11{left:1427.586619pt;}
.x6{left:1550.813286pt;}
.x13{left:1620.346619pt;}
.xe{left:1647.866619pt;}
.x7{left:1650.266619pt;}
.x10{left:1652.479953pt;}
.x9{left:1687.133286pt;}
.xb{left:1694.946619pt;}
.x1b{left:1798.719953pt;}
.xa{left:1916.346619pt;}
.x14{left:2003.653286pt;}
.xc{left:2145.506619pt;}
.x19{left:2259.613286pt;}
.x12{left:2263.266619pt;}
.x18{left:2303.133286pt;}
.x17{left:2307.866619pt;}
.x15{left:2310.973286pt;}
.x16{left:2421.533286pt;}
}




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