
    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_0e4a42e7488979514d9cc3cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_2e539713e88fce38ff2e04b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_530c86b850083bd3210c3811.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_f5235a73f3f0d310dbe03fc5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d78044aa073ff8f59fc65e42.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_899cabea4ebf53f468fd51dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.719238;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_dbbd1135b1a6d34d44e96171.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912109;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_49ee2a1f016641d11790e65c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:31.680000px;}
.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;}
}
.ws7{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws6{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-4.371840px;}
._3{margin-left:-3.347280px;}
._4{margin-left:-2.331360px;}
._0{margin-left:-1.254240px;}
._2{width:1.374480px;}
._7{width:2.568720px;}
._a{width:3.764880px;}
._6{width:4.780800px;}
._5{width:5.796720px;}
._8{width:7.111440px;}
._9{width:8.127360px;}
._e{width:9.501120px;}
._12{width:10.677600px;}
._c{width:12.131280px;}
._b{width:13.326480px;}
._f{width:14.837760px;}
._15{width:18.547200px;}
._19{width:19.938240px;}
._18{width:21.196800px;}
._1b{width:22.231920px;}
._1d{width:23.295360px;}
._1c{width:24.327360px;}
._17{width:25.701120px;}
._16{width:26.822880px;}
._20{width:28.152000px;}
._21{width:30.801600px;}
._13{width:32.192640px;}
._10{width:34.179840px;}
._11{width:35.835840px;}
._1e{width:37.288800px;}
._22{width:38.812320px;}
._1f{width:40.207680px;}
._23{width:45.374400px;}
._d{width:46.383600px;}
._1a{width:95.405760px;}
._1{width:1209.508800px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.960000px;}
.y40{bottom:46.800000px;}
.y4{bottom:84.276000px;}
.y93{bottom:110.916000px;}
.y7c{bottom:111.276000px;}
.y86{bottom:111.456000px;}
.y8f{bottom:111.816000px;}
.y8b{bottom:114.876000px;}
.y92{bottom:115.416000px;}
.y85{bottom:115.956000px;}
.y3f{bottom:116.676000px;}
.y7b{bottom:125.676000px;}
.y8e{bottom:126.936000px;}
.y91{bottom:128.196000px;}
.y7a{bottom:130.176000px;}
.y8d{bottom:131.436000px;}
.y8a{bottom:133.776000px;}
.y3e{bottom:135.576000px;}
.y79{bottom:139.356000px;}
.y84{bottom:139.896000px;}
.y78{bottom:143.856000px;}
.y83{bottom:144.396000px;}
.y89{bottom:152.850000px;}
.y82{bottom:154.110000px;}
.y3d{bottom:154.470000px;}
.y77{bottom:154.830000px;}
.y81{bottom:158.610000px;}
.y76{bottom:159.330000px;}
.y80{bottom:171.570000px;}
.y88{bottom:171.750000px;}
.y75{bottom:172.110000px;}
.y3c{bottom:173.550000px;}
.y87{bottom:190.830000px;}
.y3b{bottom:192.450000px;}
.y74{bottom:209.730000px;}
.y3a{bottom:211.530000px;}
.y73{bottom:228.630000px;}
.y39{bottom:230.430000px;}
.y72{bottom:247.710000px;}
.y38{bottom:249.330000px;}
.y71{bottom:266.610000px;}
.y37{bottom:268.410000px;}
.y70{bottom:285.690000px;}
.y36{bottom:286.230000px;}
.y35{bottom:299.910000px;}
.y6f{bottom:304.590000px;}
.y34{bottom:314.490000px;}
.y6e{bottom:323.490000px;}
.y33{bottom:331.770000px;}
.y6d{bottom:342.615000px;}
.y32{bottom:349.095000px;}
.y6c{bottom:361.515000px;}
.y31{bottom:366.375000px;}
.y6b{bottom:380.595000px;}
.y30{bottom:383.475000px;}
.y7f{bottom:386.535000px;}
.y6a{bottom:399.495000px;}
.y2f{bottom:400.755000px;}
.y2e{bottom:418.035000px;}
.y69{bottom:418.575000px;}
.y2d{bottom:435.315000px;}
.y68{bottom:437.475000px;}
.y2c{bottom:452.595000px;}
.y67{bottom:456.375000px;}
.y2b{bottom:469.875000px;}
.y66{bottom:475.455000px;}
.y2a{bottom:486.975000px;}
.y65{bottom:494.355000px;}
.y29{bottom:504.255000px;}
.y64{bottom:513.435000px;}
.y28{bottom:521.535000px;}
.y63{bottom:532.335000px;}
.y27{bottom:538.815000px;}
.y62{bottom:551.235000px;}
.y26{bottom:556.095000px;}
.y7e{bottom:557.175000px;}
.y61{bottom:570.315000px;}
.y25{bottom:573.375000px;}
.y60{bottom:589.215000px;}
.y24{bottom:590.475000px;}
.y23{bottom:607.785000px;}
.y5f{bottom:608.325000px;}
.y22{bottom:625.065000px;}
.y5e{bottom:627.225000px;}
.y21{bottom:642.345000px;}
.y5d{bottom:646.125000px;}
.y20{bottom:659.625000px;}
.y5c{bottom:665.205000px;}
.y1f{bottom:676.725000px;}
.y5b{bottom:684.105000px;}
.y1e{bottom:694.005000px;}
.y5a{bottom:703.185000px;}
.y1d{bottom:711.285000px;}
.y59{bottom:722.085000px;}
.y7d{bottom:728.025000px;}
.y1c{bottom:728.565000px;}
.y58{bottom:740.985000px;}
.y1b{bottom:745.845000px;}
.y57{bottom:760.065000px;}
.y1a{bottom:763.125000px;}
.y8c{bottom:766.005000px;}
.y56{bottom:778.965000px;}
.y19{bottom:780.225000px;}
.y18{bottom:797.505000px;}
.y55{bottom:798.045000px;}
.y17{bottom:814.785000px;}
.y54{bottom:816.945000px;}
.y16{bottom:832.065000px;}
.y53{bottom:835.845000px;}
.y15{bottom:849.345000px;}
.y52{bottom:854.925000px;}
.y14{bottom:866.625000px;}
.y51{bottom:873.870000px;}
.y13{bottom:883.770000px;}
.y50{bottom:892.950000px;}
.y12{bottom:901.050000px;}
.y4f{bottom:911.850000px;}
.y11{bottom:918.330000px;}
.y4e{bottom:930.930000px;}
.y10{bottom:935.610000px;}
.y4d{bottom:949.830000px;}
.yf{bottom:953.250000px;}
.y4c{bottom:968.730000px;}
.ye{bottom:972.150000px;}
.y4b{bottom:987.810000px;}
.yd{bottom:991.230000px;}
.y4a{bottom:1006.710000px;}
.yc{bottom:1010.670000px;}
.y49{bottom:1025.790000px;}
.yb{bottom:1032.990000px;}
.y47{bottom:1044.690000px;}
.y48{bottom:1050.630000px;}
.ya{bottom:1054.590000px;}
.y46{bottom:1063.590000px;}
.y90{bottom:1069.530000px;}
.y9{bottom:1071.870000px;}
.y44{bottom:1082.670000px;}
.y45{bottom:1088.610000px;}
.y8{bottom:1089.150000px;}
.y43{bottom:1101.570000px;}
.y7{bottom:1106.430000px;}
.y42{bottom:1120.650000px;}
.y6{bottom:1123.530000px;}
.y41{bottom:1139.580000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1171.440000px;}
.y1{bottom:1188.180000px;}
.h2{height:20.700000px;}
.h10{height:21.114844px;}
.he{height:29.158594px;}
.h11{height:33.683203px;}
.hd{height:34.036523px;}
.h5{height:36.768867px;}
.hb{height:41.726953px;}
.h6{height:42.164648px;}
.hc{height:45.549492px;}
.h9{height:46.251562px;}
.ha{height:46.736719px;}
.h4{height:50.273438px;}
.h3{height:50.414062px;}
.h8{height:50.488594px;}
.hf{height:52.918594px;}
.h7{height:54.864844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:82.620000px;}
.w3{width:605.985000px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.036000px;}
.x13{left:111.815987px;}
.x1e{left:150.509987px;}
.x7{left:155.549987px;}
.xe{left:161.129987px;}
.x10{left:172.469973px;}
.x11{left:177.689987px;}
.x3{left:190.650000px;}
.x5{left:193.169987px;}
.xf{left:203.069987px;}
.xa{left:212.069987px;}
.x8{left:246.629987px;}
.x1c{left:269.129973px;}
.xb{left:272.369987px;}
.x1d{left:274.349987px;}
.x14{left:276.509973px;}
.x15{left:281.774987px;}
.x12{left:324.074987px;}
.x9{left:349.094987px;}
.x6{left:362.234987px;}
.xd{left:418.394987px;}
.xc{left:420.014987px;}
.x18{left:436.934973px;}
.x19{left:442.154987px;}
.x4{left:446.294987px;}
.x1a{left:523.184973px;}
.x1b{left:528.404987px;}
.x16{left:733.469973px;}
.x17{left:738.689987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:28.160000pt;}
.ws7{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-3.886080pt;}
._3{margin-left:-2.975360pt;}
._4{margin-left:-2.072320pt;}
._0{margin-left:-1.114880pt;}
._2{width:1.221760pt;}
._7{width:2.283307pt;}
._a{width:3.346560pt;}
._6{width:4.249600pt;}
._5{width:5.152640pt;}
._8{width:6.321280pt;}
._9{width:7.224320pt;}
._e{width:8.445440pt;}
._12{width:9.491200pt;}
._c{width:10.783360pt;}
._b{width:11.845760pt;}
._f{width:13.189120pt;}
._15{width:16.486400pt;}
._19{width:17.722880pt;}
._18{width:18.841600pt;}
._1b{width:19.761707pt;}
._1d{width:20.706987pt;}
._1c{width:21.624320pt;}
._17{width:22.845440pt;}
._16{width:23.842560pt;}
._20{width:25.024000pt;}
._21{width:27.379200pt;}
._13{width:28.615680pt;}
._10{width:30.382080pt;}
._11{width:31.854080pt;}
._1e{width:33.145600pt;}
._22{width:34.499840pt;}
._1f{width:35.740160pt;}
._23{width:40.332800pt;}
._d{width:41.229867pt;}
._1a{width:84.805120pt;}
._1{width:1075.118933pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.520000pt;}
.y40{bottom:41.600000pt;}
.y4{bottom:74.912000pt;}
.y93{bottom:98.592000pt;}
.y7c{bottom:98.912000pt;}
.y86{bottom:99.072000pt;}
.y8f{bottom:99.392000pt;}
.y8b{bottom:102.112000pt;}
.y92{bottom:102.592000pt;}
.y85{bottom:103.072000pt;}
.y3f{bottom:103.712000pt;}
.y7b{bottom:111.712000pt;}
.y8e{bottom:112.832000pt;}
.y91{bottom:113.952000pt;}
.y7a{bottom:115.712000pt;}
.y8d{bottom:116.832000pt;}
.y8a{bottom:118.912000pt;}
.y3e{bottom:120.512000pt;}
.y79{bottom:123.872000pt;}
.y84{bottom:124.352000pt;}
.y78{bottom:127.872000pt;}
.y83{bottom:128.352000pt;}
.y89{bottom:135.866667pt;}
.y82{bottom:136.986667pt;}
.y3d{bottom:137.306667pt;}
.y77{bottom:137.626667pt;}
.y81{bottom:140.986667pt;}
.y76{bottom:141.626667pt;}
.y80{bottom:152.506667pt;}
.y88{bottom:152.666667pt;}
.y75{bottom:152.986667pt;}
.y3c{bottom:154.266667pt;}
.y87{bottom:169.626667pt;}
.y3b{bottom:171.066667pt;}
.y74{bottom:186.426667pt;}
.y3a{bottom:188.026667pt;}
.y73{bottom:203.226667pt;}
.y39{bottom:204.826667pt;}
.y72{bottom:220.186667pt;}
.y38{bottom:221.626667pt;}
.y71{bottom:236.986667pt;}
.y37{bottom:238.586667pt;}
.y70{bottom:253.946667pt;}
.y36{bottom:254.426667pt;}
.y35{bottom:266.586667pt;}
.y6f{bottom:270.746667pt;}
.y34{bottom:279.546667pt;}
.y6e{bottom:287.546667pt;}
.y33{bottom:294.906667pt;}
.y6d{bottom:304.546667pt;}
.y32{bottom:310.306667pt;}
.y6c{bottom:321.346667pt;}
.y31{bottom:325.666667pt;}
.y6b{bottom:338.306667pt;}
.y30{bottom:340.866667pt;}
.y7f{bottom:343.586667pt;}
.y6a{bottom:355.106667pt;}
.y2f{bottom:356.226667pt;}
.y2e{bottom:371.586667pt;}
.y69{bottom:372.066667pt;}
.y2d{bottom:386.946667pt;}
.y68{bottom:388.866667pt;}
.y2c{bottom:402.306667pt;}
.y67{bottom:405.666667pt;}
.y2b{bottom:417.666667pt;}
.y66{bottom:422.626667pt;}
.y2a{bottom:432.866667pt;}
.y65{bottom:439.426667pt;}
.y29{bottom:448.226667pt;}
.y64{bottom:456.386667pt;}
.y28{bottom:463.586667pt;}
.y63{bottom:473.186667pt;}
.y27{bottom:478.946667pt;}
.y62{bottom:489.986667pt;}
.y26{bottom:494.306667pt;}
.y7e{bottom:495.266667pt;}
.y61{bottom:506.946667pt;}
.y25{bottom:509.666667pt;}
.y60{bottom:523.746667pt;}
.y24{bottom:524.866667pt;}
.y23{bottom:540.253333pt;}
.y5f{bottom:540.733333pt;}
.y22{bottom:555.613333pt;}
.y5e{bottom:557.533333pt;}
.y21{bottom:570.973333pt;}
.y5d{bottom:574.333333pt;}
.y20{bottom:586.333333pt;}
.y5c{bottom:591.293333pt;}
.y1f{bottom:601.533333pt;}
.y5b{bottom:608.093333pt;}
.y1e{bottom:616.893333pt;}
.y5a{bottom:625.053333pt;}
.y1d{bottom:632.253333pt;}
.y59{bottom:641.853333pt;}
.y7d{bottom:647.133333pt;}
.y1c{bottom:647.613333pt;}
.y58{bottom:658.653333pt;}
.y1b{bottom:662.973333pt;}
.y57{bottom:675.613333pt;}
.y1a{bottom:678.333333pt;}
.y8c{bottom:680.893333pt;}
.y56{bottom:692.413333pt;}
.y19{bottom:693.533333pt;}
.y18{bottom:708.893333pt;}
.y55{bottom:709.373333pt;}
.y17{bottom:724.253333pt;}
.y54{bottom:726.173333pt;}
.y16{bottom:739.613333pt;}
.y53{bottom:742.973333pt;}
.y15{bottom:754.973333pt;}
.y52{bottom:759.933333pt;}
.y14{bottom:770.333333pt;}
.y51{bottom:776.773333pt;}
.y13{bottom:785.573333pt;}
.y50{bottom:793.733333pt;}
.y12{bottom:800.933333pt;}
.y4f{bottom:810.533333pt;}
.y11{bottom:816.293333pt;}
.y4e{bottom:827.493333pt;}
.y10{bottom:831.653333pt;}
.y4d{bottom:844.293333pt;}
.yf{bottom:847.333333pt;}
.y4c{bottom:861.093333pt;}
.ye{bottom:864.133333pt;}
.y4b{bottom:878.053333pt;}
.yd{bottom:881.093333pt;}
.y4a{bottom:894.853333pt;}
.yc{bottom:898.373333pt;}
.y49{bottom:911.813333pt;}
.yb{bottom:918.213333pt;}
.y47{bottom:928.613333pt;}
.y48{bottom:933.893333pt;}
.ya{bottom:937.413333pt;}
.y46{bottom:945.413333pt;}
.y90{bottom:950.693333pt;}
.y9{bottom:952.773333pt;}
.y44{bottom:962.373333pt;}
.y45{bottom:967.653333pt;}
.y8{bottom:968.133333pt;}
.y43{bottom:979.173333pt;}
.y7{bottom:983.493333pt;}
.y42{bottom:996.133333pt;}
.y6{bottom:998.693333pt;}
.y41{bottom:1012.960000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1041.280000pt;}
.y1{bottom:1056.160000pt;}
.h2{height:18.400000pt;}
.h10{height:18.768750pt;}
.he{height:25.918750pt;}
.h11{height:29.940625pt;}
.hd{height:30.254687pt;}
.h5{height:32.683437pt;}
.hb{height:37.090625pt;}
.h6{height:37.479688pt;}
.hc{height:40.488438pt;}
.h9{height:41.112500pt;}
.ha{height:41.543750pt;}
.h4{height:44.687500pt;}
.h3{height:44.812500pt;}
.h8{height:44.878750pt;}
.hf{height:47.038750pt;}
.h7{height:48.768750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:73.440000pt;}
.w3{width:538.653333pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.032000pt;}
.x13{left:99.391988pt;}
.x1e{left:133.786655pt;}
.x7{left:138.266655pt;}
.xe{left:143.226655pt;}
.x10{left:153.306643pt;}
.x11{left:157.946655pt;}
.x3{left:169.466667pt;}
.x5{left:171.706655pt;}
.xf{left:180.506655pt;}
.xa{left:188.506655pt;}
.x8{left:219.226655pt;}
.x1c{left:239.226643pt;}
.xb{left:242.106655pt;}
.x1d{left:243.866655pt;}
.x14{left:245.786643pt;}
.x15{left:250.466655pt;}
.x12{left:288.066655pt;}
.x9{left:310.306655pt;}
.x6{left:321.986655pt;}
.xd{left:371.906655pt;}
.xc{left:373.346655pt;}
.x18{left:388.386643pt;}
.x19{left:393.026655pt;}
.x4{left:396.706655pt;}
.x1a{left:465.053310pt;}
.x1b{left:469.693322pt;}
.x16{left:651.973310pt;}
.x17{left:656.613322pt;}
}




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