
    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_a5148aac5517b006f63aa120.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.935547;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_1a96147dbdbcbb05f3dec222.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080078;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_3cfbe7d56e49f705dc179c72.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.723633;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_14aca1459c8b8f961329bbf9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936523;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_44ecabd9b6099250a6bdd8a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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_bb993759b9bbae6cc3251943.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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);}
.va{vertical-align:-71.256000px;}
.v1{vertical-align:-63.096000px;}
.v7{vertical-align:-31.296000px;}
.v6{vertical-align:-28.062000px;}
.v5{vertical-align:-18.204000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.362000px;}
.v9{vertical-align:41.844000px;}
.v2{vertical-align:71.292000px;}
.v4{vertical-align:119.568000px;}
.v8{vertical-align:121.776000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:24.603936px;}
.ls0{letter-spacing:24.609936px;}
.ls2{letter-spacing:67.660800px;}
.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:-79.761042px;}
.ws3{word-spacing:-68.472000px;}
.ws0{word-spacing:-59.832000px;}
.ws5{word-spacing:-53.188986px;}
.ws8{word-spacing:-43.202028px;}
.wse{word-spacing:-39.902958px;}
.ws13{word-spacing:-34.910310px;}
.ws6{word-spacing:-34.749096px;}
.wsc{word-spacing:-26.570394px;}
.ws14{word-spacing:-20.294682px;}
.ws15{word-spacing:0.000000px;}
.wsb{word-spacing:322.954020px;}
.wsa{word-spacing:348.844044px;}
.ws9{word-spacing:502.601904px;}
.ws7{word-spacing:1006.164000px;}
.ws2{word-spacing:1041.348000px;}
.ws4{word-spacing:1313.257038px;}
.ws10{word-spacing:1380.697674px;}
.ws12{word-spacing:2279.897016px;}
.ws11{word-spacing:2543.178966px;}
.wsf{word-spacing:2948.277264px;}
.wsd{word-spacing:3314.967264px;}
._26{margin-left:-1660.943268px;}
._2{margin-left:-18.238632px;}
._5{margin-left:-16.416000px;}
._9{margin-left:-13.176000px;}
._d{margin-left:-11.853264px;}
._24{margin-left:-10.263654px;}
._3{margin-left:-8.769744px;}
._4{margin-left:-7.104666px;}
._1c{margin-left:-4.752000px;}
._6{margin-left:-3.672000px;}
._23{margin-left:-2.277270px;}
._0{margin-left:-1.080000px;}
._1{width:1.050000px;}
._25{width:2.346408px;}
._22{width:3.709452px;}
._8{width:6.012000px;}
._17{width:12.960000px;}
._1b{width:24.840000px;}
._18{width:26.352000px;}
._1a{width:38.448000px;}
._19{width:39.528000px;}
._1f{width:41.646000px;}
._1e{width:68.688000px;}
._1d{width:69.768000px;}
._20{width:93.312000px;}
._21{width:126.792000px;}
._16{width:429.765792px;}
._14{width:455.655816px;}
._15{width:464.233836px;}
._11{width:490.123860px;}
._10{width:502.312020px;}
._e{width:514.339284px;}
._f{width:545.959896px;}
._c{width:551.569896px;}
._13{width:564.052020px;}
._12{width:644.132004px;}
._b{width:669.973920px;}
._a{width:695.863944px;}
._7{width:3781.566000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,169,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:43.200000px;}
.fsc{font-size:73.266000px;}
.fs9{font-size:95.922000px;}
.fs1{font-size:97.284000px;}
.fs2{font-size:125.448000px;}
.fsb{font-size:126.030000px;}
.fsa{font-size:144.054000px;}
.fs7{font-size:155.964000px;}
.fs5{font-size:192.018000px;}
.fs0{font-size:216.000000px;}
.fs4{font-size:239.982000px;}
.fs6{font-size:287.946000px;}
.fs3{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y25{bottom:278.716500px;}
.y29{bottom:343.006500px;}
.y24{bottom:359.292000px;}
.y28{bottom:423.580500px;}
.y23{bottom:424.092000px;}
.y22{bottom:473.116500px;}
.y27{bottom:488.380500px;}
.y26{bottom:553.180500px;}
.y21{bottom:553.692000px;}
.y2e{bottom:622.233000px;}
.yd{bottom:622.275000px;}
.y62{bottom:821.310000px;}
.y6a{bottom:825.987000px;}
.y2d{bottom:847.758000px;}
.y2c{bottom:847.800000px;}
.y2b{bottom:847.842000px;}
.y2a{bottom:847.885500px;}
.y5f{bottom:884.494500px;}
.y5e{bottom:949.294500px;}
.y5d{bottom:983.650500px;}
.y60{bottom:989.560500px;}
.y61{bottom:1090.077000px;}
.y20{bottom:1113.633000px;}
.y44{bottom:1147.692000px;}
.y3e{bottom:1183.365000px;}
.y43{bottom:1202.116500px;}
.y5c{bottom:1234.516500px;}
.y3d{bottom:1237.791000px;}
.y42{bottom:1256.541000px;}
.y6b{bottom:1263.940500px;}
.y69{bottom:1263.982500px;}
.y3c{bottom:1292.215500px;}
.y41{bottom:1310.967000px;}
.y3b{bottom:1346.641500px;}
.y40{bottom:1365.391500px;}
.y3a{bottom:1401.066000px;}
.y3f{bottom:1408.975500px;}
.y39{bottom:1444.648500px;}
.y1f{bottom:1527.094500px;}
.y38{bottom:1527.136500px;}
.y5b{bottom:1540.659000px;}
.y1e{bottom:1591.894500px;}
.y37{bottom:1607.712000px;}
.y1d{bottom:1656.694500px;}
.y36{bottom:1656.736500px;}
.y4{bottom:1656.780000px;}
.y5a{bottom:1676.721000px;}
.y1c{bottom:1737.270000px;}
.y35{bottom:1737.312000px;}
.y3{bottom:1737.354000px;}
.y1b{bottom:1786.294500px;}
.y34{bottom:1786.336500px;}
.y2{bottom:1786.380000px;}
.yc{bottom:1875.756000px;}
.y58{bottom:1995.066000px;}
.y57{bottom:2023.852500px;}
.y56{bottom:2476.899000px;}
.y59{bottom:2504.580000px;}
.y33{bottom:2596.635000px;}
.y1a{bottom:2597.145000px;}
.y32{bottom:2661.435000px;}
.y19{bottom:2661.945000px;}
.y52{bottom:2664.114000px;}
.y53{bottom:2664.538500px;}
.y18{bottom:2710.969500px;}
.y54{bottom:2720.877000px;}
.y31{bottom:2726.235000px;}
.y30{bottom:2791.035000px;}
.y17{bottom:2791.545000px;}
.y2f{bottom:2840.059500px;}
.y16{bottom:2840.569500px;}
.y55{bottom:2943.297000px;}
.y15{bottom:2971.573500px;}
.y14{bottom:3036.373500px;}
.y67{bottom:3097.176000px;}
.y13{bottom:3101.173500px;}
.y66{bottom:3161.976000px;}
.y12{bottom:3165.973500px;}
.y65{bottom:3211.002000px;}
.y11{bottom:3230.773500px;}
.y64{bottom:3291.576000px;}
.y10{bottom:3295.573500px;}
.y63{bottom:3330.141000px;}
.yf{bottom:3344.598000px;}
.y68{bottom:3363.903000px;}
.yb{bottom:3439.332000px;}
.y50{bottom:3555.198000px;}
.ye{bottom:3592.956000px;}
.y4f{bottom:3665.622000px;}
.y4e{bottom:3746.197500px;}
.y4d{bottom:3795.222000px;}
.y4c{bottom:3875.797500px;}
.y51{bottom:3917.593500px;}
.y4b{bottom:3924.822000px;}
.y4a{bottom:3989.622000px;}
.y49{bottom:4070.197500px;}
.y48{bottom:4119.222000px;}
.y47{bottom:4184.022000px;}
.y46{bottom:4248.822000px;}
.y45{bottom:4329.397500px;}
.ya{bottom:4411.290000px;}
.y9{bottom:4538.635500px;}
.y8{bottom:4596.250500px;}
.y7{bottom:4656.246000px;}
.y6{bottom:4737.841500px;}
.y5{bottom:4867.441500px;}
.he{height:55.635565px;}
.h10{height:83.697565px;}
.h14{height:109.968560px;}
.ha{height:125.370656px;}
.h4{height:125.376656px;}
.h11{height:125.695556px;}
.hd{height:136.087729px;}
.h7{height:139.138043px;}
.h9{height:157.877625px;}
.hc{height:167.546956px;}
.h6{height:173.893207px;}
.h3{height:188.472656px;}
.h8{height:208.648371px;}
.h13{height:230.316656px;}
.hf{height:244.753556px;}
.hb{height:287.114956px;}
.h12{height:310.248656px;}
.h5{height:376.945312px;}
.h2{height:5055.505500px;}
.h0{height:5055.548031px;}
.h1{height:5055.750000px;}
.w2{width:3575.776500px;}
.w0{width:3575.820472px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1f{left:85.252500px;}
.xd{left:91.630500px;}
.xe{left:117.099000px;}
.x2d{left:126.325500px;}
.x3{left:133.894500px;}
.x1a{left:335.991000px;}
.x19{left:359.844000px;}
.x33{left:396.793500px;}
.x1c{left:537.406500px;}
.x1b{left:541.701000px;}
.x34{left:676.743000px;}
.xb{left:696.472500px;}
.x1e{left:738.822000px;}
.x1d{left:743.158500px;}
.x2c{left:818.461500px;}
.x15{left:935.560500px;}
.x30{left:948.870000px;}
.x14{left:1033.356000px;}
.x35{left:1108.573500px;}
.x13{left:1126.899000px;}
.x29{left:1202.541000px;}
.x12{left:1233.114000px;}
.x6{left:1240.809000px;}
.x31{left:1268.022000px;}
.x4{left:1367.560500px;}
.x2a{left:1377.765000px;}
.x5{left:1411.441500px;}
.x2b{left:1425.855000px;}
.x7{left:1554.562500px;}
.x9{left:1563.364500px;}
.x8{left:1577.395500px;}
.x1{left:1603.077000px;}
.xf{left:1622.764500px;}
.x2{left:1628.589000px;}
.x28{left:1646.107500px;}
.xa{left:1657.332000px;}
.x36{left:1708.059000px;}
.x2e{left:1837.914000px;}
.x10{left:1841.655000px;}
.x11{left:1867.167000px;}
.x37{left:1942.767000px;}
.x38{left:1961.050500px;}
.x32{left:2077.002000px;}
.xc{left:2308.819500px;}
.x39{left:2410.696500px;}
.x16{left:2456.064000px;}
.x17{left:2540.424000px;}
.x26{left:2564.914500px;}
.x18{left:2565.936000px;}
.x27{left:2598.081000px;}
.x2f{left:2661.690000px;}
.x21{left:2855.367000px;}
.x20{left:2879.220000px;}
.x23{left:3081.444000px;}
.x22{left:3085.738500px;}
.x25{left:3287.409000px;}
.x24{left:3291.703500px;}
@media print{
.va{vertical-align:-63.338667pt;}
.v1{vertical-align:-56.085333pt;}
.v7{vertical-align:-27.818667pt;}
.v6{vertical-align:-24.944000pt;}
.v5{vertical-align:-16.181333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.210667pt;}
.v9{vertical-align:37.194667pt;}
.v2{vertical-align:63.370667pt;}
.v4{vertical-align:106.282667pt;}
.v8{vertical-align:108.245333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:21.870165pt;}
.ls0{letter-spacing:21.875499pt;}
.ls2{letter-spacing:60.142933pt;}
.ws1{word-spacing:-70.898704pt;}
.ws3{word-spacing:-60.864000pt;}
.ws0{word-spacing:-53.184000pt;}
.ws5{word-spacing:-47.279099pt;}
.ws8{word-spacing:-38.401803pt;}
.wse{word-spacing:-35.469296pt;}
.ws13{word-spacing:-31.031387pt;}
.ws6{word-spacing:-30.888085pt;}
.wsc{word-spacing:-23.618128pt;}
.ws14{word-spacing:-18.039717pt;}
.ws15{word-spacing:0.000000pt;}
.wsb{word-spacing:287.070240pt;}
.wsa{word-spacing:310.083595pt;}
.ws9{word-spacing:446.757248pt;}
.ws7{word-spacing:894.368000pt;}
.ws2{word-spacing:925.642667pt;}
.ws4{word-spacing:1167.339589pt;}
.ws10{word-spacing:1227.286821pt;}
.ws12{word-spacing:2026.575125pt;}
.ws11{word-spacing:2260.603525pt;}
.wsf{word-spacing:2620.690901pt;}
.wsd{word-spacing:2946.637568pt;}
._26{margin-left:-1476.394016pt;}
._2{margin-left:-16.212117pt;}
._5{margin-left:-14.592000pt;}
._9{margin-left:-11.712000pt;}
._d{margin-left:-10.536235pt;}
._24{margin-left:-9.123248pt;}
._3{margin-left:-7.795328pt;}
._4{margin-left:-6.315259pt;}
._1c{margin-left:-4.224000pt;}
._6{margin-left:-3.264000pt;}
._23{margin-left:-2.024240pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.933333pt;}
._25{width:2.085696pt;}
._22{width:3.297291pt;}
._8{width:5.344000pt;}
._17{width:11.520000pt;}
._1b{width:22.080000pt;}
._18{width:23.424000pt;}
._1a{width:34.176000pt;}
._19{width:35.136000pt;}
._1f{width:37.018667pt;}
._1e{width:61.056000pt;}
._1d{width:62.016000pt;}
._20{width:82.944000pt;}
._21{width:112.704000pt;}
._16{width:382.014037pt;}
._14{width:405.027392pt;}
._15{width:412.652299pt;}
._11{width:435.665653pt;}
._10{width:446.499573pt;}
._e{width:457.190475pt;}
._f{width:485.297685pt;}
._c{width:490.284352pt;}
._13{width:501.379573pt;}
._12{width:572.561781pt;}
._b{width:595.532373pt;}
._a{width:618.545728pt;}
._7{width:3361.392000pt;}
.fs8{font-size:38.400000pt;}
.fsc{font-size:65.125333pt;}
.fs9{font-size:85.264000pt;}
.fs1{font-size:86.474667pt;}
.fs2{font-size:111.509333pt;}
.fsb{font-size:112.026667pt;}
.fsa{font-size:128.048000pt;}
.fs7{font-size:138.634667pt;}
.fs5{font-size:170.682667pt;}
.fs0{font-size:192.000000pt;}
.fs4{font-size:213.317333pt;}
.fs6{font-size:255.952000pt;}
.fs3{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y25{bottom:247.748000pt;}
.y29{bottom:304.894667pt;}
.y24{bottom:319.370667pt;}
.y28{bottom:376.516000pt;}
.y23{bottom:376.970667pt;}
.y22{bottom:420.548000pt;}
.y27{bottom:434.116000pt;}
.y26{bottom:491.716000pt;}
.y21{bottom:492.170667pt;}
.y2e{bottom:553.096000pt;}
.yd{bottom:553.133333pt;}
.y62{bottom:730.053333pt;}
.y6a{bottom:734.210667pt;}
.y2d{bottom:753.562667pt;}
.y2c{bottom:753.600000pt;}
.y2b{bottom:753.637333pt;}
.y2a{bottom:753.676000pt;}
.y5f{bottom:786.217333pt;}
.y5e{bottom:843.817333pt;}
.y5d{bottom:874.356000pt;}
.y60{bottom:879.609333pt;}
.y61{bottom:968.957333pt;}
.y20{bottom:989.896000pt;}
.y44{bottom:1020.170667pt;}
.y3e{bottom:1051.880000pt;}
.y43{bottom:1068.548000pt;}
.y5c{bottom:1097.348000pt;}
.y3d{bottom:1100.258667pt;}
.y42{bottom:1116.925333pt;}
.y6b{bottom:1123.502667pt;}
.y69{bottom:1123.540000pt;}
.y3c{bottom:1148.636000pt;}
.y41{bottom:1165.304000pt;}
.y3b{bottom:1197.014667pt;}
.y40{bottom:1213.681333pt;}
.y3a{bottom:1245.392000pt;}
.y3f{bottom:1252.422667pt;}
.y39{bottom:1284.132000pt;}
.y1f{bottom:1357.417333pt;}
.y38{bottom:1357.454667pt;}
.y5b{bottom:1369.474667pt;}
.y1e{bottom:1415.017333pt;}
.y37{bottom:1429.077333pt;}
.y1d{bottom:1472.617333pt;}
.y36{bottom:1472.654667pt;}
.y4{bottom:1472.693333pt;}
.y5a{bottom:1490.418667pt;}
.y1c{bottom:1544.240000pt;}
.y35{bottom:1544.277333pt;}
.y3{bottom:1544.314667pt;}
.y1b{bottom:1587.817333pt;}
.y34{bottom:1587.854667pt;}
.y2{bottom:1587.893333pt;}
.yc{bottom:1667.338667pt;}
.y58{bottom:1773.392000pt;}
.y57{bottom:1798.980000pt;}
.y56{bottom:2201.688000pt;}
.y59{bottom:2226.293333pt;}
.y33{bottom:2308.120000pt;}
.y1a{bottom:2308.573333pt;}
.y32{bottom:2365.720000pt;}
.y19{bottom:2366.173333pt;}
.y52{bottom:2368.101333pt;}
.y53{bottom:2368.478667pt;}
.y18{bottom:2409.750667pt;}
.y54{bottom:2418.557333pt;}
.y31{bottom:2423.320000pt;}
.y30{bottom:2480.920000pt;}
.y17{bottom:2481.373333pt;}
.y2f{bottom:2524.497333pt;}
.y16{bottom:2524.950667pt;}
.y55{bottom:2616.264000pt;}
.y15{bottom:2641.398667pt;}
.y14{bottom:2698.998667pt;}
.y67{bottom:2753.045333pt;}
.y13{bottom:2756.598667pt;}
.y66{bottom:2810.645333pt;}
.y12{bottom:2814.198667pt;}
.y65{bottom:2854.224000pt;}
.y11{bottom:2871.798667pt;}
.y64{bottom:2925.845333pt;}
.y10{bottom:2929.398667pt;}
.y63{bottom:2960.125333pt;}
.yf{bottom:2972.976000pt;}
.y68{bottom:2990.136000pt;}
.yb{bottom:3057.184000pt;}
.y50{bottom:3160.176000pt;}
.ye{bottom:3193.738667pt;}
.y4f{bottom:3258.330667pt;}
.y4e{bottom:3329.953333pt;}
.y4d{bottom:3373.530667pt;}
.y4c{bottom:3445.153333pt;}
.y51{bottom:3482.305333pt;}
.y4b{bottom:3488.730667pt;}
.y4a{bottom:3546.330667pt;}
.y49{bottom:3617.953333pt;}
.y48{bottom:3661.530667pt;}
.y47{bottom:3719.130667pt;}
.y46{bottom:3776.730667pt;}
.y45{bottom:3848.353333pt;}
.ya{bottom:3921.146667pt;}
.y9{bottom:4034.342667pt;}
.y8{bottom:4085.556000pt;}
.y7{bottom:4138.885333pt;}
.y6{bottom:4211.414667pt;}
.y5{bottom:4326.614667pt;}
.he{height:49.453836pt;}
.h10{height:74.397836pt;}
.h14{height:97.749831pt;}
.ha{height:111.440583pt;}
.h4{height:111.445917pt;}
.h11{height:111.729383pt;}
.hd{height:120.966870pt;}
.h7{height:123.678260pt;}
.h9{height:140.335667pt;}
.hc{height:148.930628pt;}
.h6{height:154.571740pt;}
.h3{height:167.531250pt;}
.h8{height:185.465219pt;}
.h13{height:204.725917pt;}
.hf{height:217.558716pt;}
.hb{height:255.213294pt;}
.h12{height:275.776583pt;}
.h5{height:335.062500pt;}
.h2{height:4493.782667pt;}
.h0{height:4493.820472pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.468000pt;}
.w0{width:3178.507087pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1f{left:75.780000pt;}
.xd{left:81.449333pt;}
.xe{left:104.088000pt;}
.x2d{left:112.289333pt;}
.x3{left:119.017333pt;}
.x1a{left:298.658667pt;}
.x19{left:319.861333pt;}
.x33{left:352.705333pt;}
.x1c{left:477.694667pt;}
.x1b{left:481.512000pt;}
.x34{left:601.549333pt;}
.xb{left:619.086667pt;}
.x1e{left:656.730667pt;}
.x1d{left:660.585333pt;}
.x2c{left:727.521333pt;}
.x15{left:831.609333pt;}
.x30{left:843.440000pt;}
.x14{left:918.538667pt;}
.x35{left:985.398667pt;}
.x13{left:1001.688000pt;}
.x29{left:1068.925333pt;}
.x12{left:1096.101333pt;}
.x6{left:1102.941333pt;}
.x31{left:1127.130667pt;}
.x4{left:1215.609333pt;}
.x2a{left:1224.680000pt;}
.x5{left:1254.614667pt;}
.x2b{left:1267.426667pt;}
.x7{left:1381.833333pt;}
.x9{left:1389.657333pt;}
.x8{left:1402.129333pt;}
.x1{left:1424.957333pt;}
.xf{left:1442.457333pt;}
.x2{left:1447.634667pt;}
.x28{left:1463.206667pt;}
.xa{left:1473.184000pt;}
.x36{left:1518.274667pt;}
.x2e{left:1633.701333pt;}
.x10{left:1637.026667pt;}
.x11{left:1659.704000pt;}
.x37{left:1726.904000pt;}
.x38{left:1743.156000pt;}
.x32{left:1846.224000pt;}
.xc{left:2052.284000pt;}
.x39{left:2142.841333pt;}
.x16{left:2183.168000pt;}
.x17{left:2258.154667pt;}
.x26{left:2279.924000pt;}
.x18{left:2280.832000pt;}
.x27{left:2309.405333pt;}
.x2f{left:2365.946667pt;}
.x21{left:2538.104000pt;}
.x20{left:2559.306667pt;}
.x23{left:2739.061333pt;}
.x22{left:2742.878667pt;}
.x25{left:2922.141333pt;}
.x24{left:2925.958667pt;}
}




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