
    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_391901a65ef3ebf211e887f0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_46d8b88ccf43557f1e98465a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_12354a7d532b5c1afa0d544c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.762207;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_f7a89aeed5bfd2c036ae0524.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_74631930042e989a7d38c7d8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_abeb03611baa3a7225523d2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_e92b2d02525925e6b205436b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_f9d79ba6182ce89a5e835539.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_c9443255768098fe7d73e057.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944824;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_6ca070eef69136e4ff3e8538.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.152000px;}
.ls9{letter-spacing:1.440000px;}
.lsb{letter-spacing:1.944000px;}
.ls4{letter-spacing:2.160000px;}
.ls8{letter-spacing:5.040000px;}
.lsf{letter-spacing:17.424000px;}
.ls1{letter-spacing:30.960000px;}
.ls6{letter-spacing:33.408000px;}
.ls2{letter-spacing:35.280000px;}
.lse{letter-spacing:41.040000px;}
.lsd{letter-spacing:53.424000px;}
.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;}
}
.ws2{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-5.670240px;}
._2{margin-left:-4.268160px;}
._5{margin-left:-3.215040px;}
._4{margin-left:-2.188800px;}
._0{margin-left:-1.149120px;}
._3{width:1.094400px;}
._7{width:2.116800px;}
._8{width:3.381120px;}
._1f{width:4.593600px;}
._1e{width:5.659200px;}
._1d{width:6.782400px;}
._12{width:7.862400px;}
._31{width:9.233760px;}
._9{width:10.368000px;}
._a{width:11.632800px;}
._10{width:13.464000px;}
._11{width:14.552160px;}
._2e{width:15.591840px;}
._27{width:16.968960px;}
._26{width:19.365120px;}
._30{width:20.868480px;}
._17{width:21.933600px;}
._19{width:23.112000px;}
._18{width:24.264000px;}
._28{width:25.804800px;}
._13{width:26.985600px;}
._33{width:28.008000px;}
._14{width:29.030400px;}
._2b{width:30.380160px;}
._1c{width:31.464000px;}
._15{width:33.177120px;}
._16{width:34.553280px;}
._f{width:35.928000px;}
._e{width:36.950400px;}
._d{width:38.226240px;}
._1b{width:40.248000px;}
._1a{width:41.342400px;}
._32{width:43.216800px;}
._29{width:44.291520px;}
._2a{width:45.479040px;}
._2f{width:46.833120px;}
._24{width:48.614400px;}
._25{width:50.342400px;}
._23{width:51.455040px;}
._22{width:52.992000px;}
._21{width:54.000000px;}
._b{width:55.008000px;}
._c{width:56.185920px;}
._20{width:57.720960px;}
._38{width:62.769600px;}
._39{width:63.845760px;}
._37{width:65.505600px;}
._2c{width:71.884800px;}
._2d{width:73.559040px;}
._35{width:179.152800px;}
._36{width:180.292800px;}
._34{width:501.422400px;}
._6{width:1242.456000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,94,0);}
.fc0{color:rgb(0,32,79);}
.fs5{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.040000px;}
.y7{bottom:7.920000px;}
.y9{bottom:26.676000px;}
.y8{bottom:48.276000px;}
.y5{bottom:68.076000px;}
.y75{bottom:103.716000px;}
.y34{bottom:113.436000px;}
.y74{bottom:127.512000px;}
.y33{bottom:137.232000px;}
.y73{bottom:151.635000px;}
.y32{bottom:160.995000px;}
.y72{bottom:175.395000px;}
.y58{bottom:184.035000px;}
.y31{bottom:184.755000px;}
.y71{bottom:199.515000px;}
.y57{bottom:207.795000px;}
.y30{bottom:208.515000px;}
.y70{bottom:223.275000px;}
.y56{bottom:231.555000px;}
.y3d{bottom:231.915000px;}
.y2f{bottom:232.275000px;}
.y6f{bottom:247.035000px;}
.y55{bottom:255.315000px;}
.y2e{bottom:256.395000px;}
.y6e{bottom:270.825000px;}
.y54{bottom:279.105000px;}
.y2d{bottom:280.185000px;}
.y6d{bottom:294.585000px;}
.y53{bottom:302.865000px;}
.y2c{bottom:303.945000px;}
.y6c{bottom:318.345000px;}
.y52{bottom:326.985000px;}
.y2b{bottom:327.705000px;}
.y6b{bottom:342.105000px;}
.y51{bottom:350.745000px;}
.y2a{bottom:351.465000px;}
.y6a{bottom:365.865000px;}
.y50{bottom:374.505000px;}
.y29{bottom:375.225000px;}
.y69{bottom:389.985000px;}
.y4f{bottom:398.310000px;}
.y28{bottom:399.030000px;}
.y68{bottom:413.790000px;}
.y4e{bottom:422.070000px;}
.y27{bottom:422.790000px;}
.y67{bottom:437.550000px;}
.y4d{bottom:445.830000px;}
.y26{bottom:446.550000px;}
.y66{bottom:461.310000px;}
.y4c{bottom:469.590000px;}
.y25{bottom:470.670000px;}
.y65{bottom:485.070000px;}
.y4b{bottom:493.350000px;}
.y24{bottom:494.430000px;}
.y64{bottom:508.830000px;}
.y4a{bottom:517.110000px;}
.y23{bottom:518.190000px;}
.y63{bottom:532.260000px;}
.y49{bottom:541.260000px;}
.y22{bottom:541.980000px;}
.y62{bottom:556.380000px;}
.y48{bottom:565.020000px;}
.y21{bottom:565.740000px;}
.y61{bottom:580.140000px;}
.y47{bottom:588.780000px;}
.y20{bottom:589.500000px;}
.y60{bottom:604.260000px;}
.y46{bottom:612.540000px;}
.y1f{bottom:613.260000px;}
.y5f{bottom:628.020000px;}
.y45{bottom:636.300000px;}
.y40{bottom:636.660000px;}
.y1e{bottom:637.020000px;}
.y5e{bottom:651.780000px;}
.y44{bottom:660.060000px;}
.y1d{bottom:661.140000px;}
.y5d{bottom:675.570000px;}
.y43{bottom:683.850000px;}
.y1c{bottom:684.930000px;}
.y5c{bottom:699.330000px;}
.y42{bottom:703.650000px;}
.y1b{bottom:708.690000px;}
.y5b{bottom:723.090000px;}
.y1a{bottom:732.450000px;}
.y5a{bottom:746.850000px;}
.y19{bottom:756.210000px;}
.y59{bottom:766.650000px;}
.y18{bottom:779.970000px;}
.y17{bottom:803.775000px;}
.y16{bottom:827.535000px;}
.y15{bottom:851.295000px;}
.y14{bottom:875.415000px;}
.y13{bottom:899.175000px;}
.y41{bottom:922.575000px;}
.y12{bottom:922.935000px;}
.y11{bottom:946.365000px;}
.y3c{bottom:946.725000px;}
.y3b{bottom:970.485000px;}
.y10{bottom:977.325000px;}
.y3a{bottom:994.245000px;}
.yf{bottom:1001.085000px;}
.ye{bottom:1017.645000px;}
.y39{bottom:1018.005000px;}
.yd{bottom:1041.765000px;}
.y38{bottom:1065.570000px;}
.y3f{bottom:1065.930000px;}
.yc{bottom:1067.730000px;}
.y37{bottom:1089.330000px;}
.y3e{bottom:1089.690000px;}
.yb{bottom:1099.410000px;}
.y36{bottom:1113.450000px;}
.ya{bottom:1131.090000px;}
.y76{bottom:1136.850000px;}
.y35{bottom:1137.210000px;}
.y4{bottom:1157.730000px;}
.y3{bottom:1176.810000px;}
.y2{bottom:1192.290000px;}
.y1{bottom:1207.800000px;}
.h5{height:24.120000px;}
.ha{height:33.180469px;}
.h2{height:38.608594px;}
.h3{height:42.672656px;}
.h7{height:50.273438px;}
.hd{height:50.800781px;}
.hb{height:52.171875px;}
.he{height:52.417969px;}
.h4{height:54.000000px;}
.h6{height:58.317187px;}
.hc{height:59.343750px;}
.h9{height:60.888516px;}
.h8{height:68.073047px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:133.632000px;}
.w3{width:287.025000px;}
.w5{width:301.065000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7{left:88.230000px;}
.x4{left:95.795987px;}
.x9{left:102.635987px;}
.x1{left:117.755987px;}
.xa{left:123.155987px;}
.x14{left:127.835987px;}
.x5{left:143.709000px;}
.x11{left:148.751987px;}
.x2{left:150.194987px;}
.xd{left:200.594987px;}
.xb{left:215.354987px;}
.xf{left:246.704987px;}
.xe{left:272.264987px;}
.x10{left:296.024987px;}
.x6{left:383.190000px;}
.x3{left:402.629987px;}
.xc{left:446.579987px;}
.x8{left:517.890000px;}
.x12{left:773.204987px;}
.x13{left:791.249987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.024000pt;}
.ls9{letter-spacing:1.280000pt;}
.lsb{letter-spacing:1.728000pt;}
.ls4{letter-spacing:1.920000pt;}
.ls8{letter-spacing:4.480000pt;}
.lsf{letter-spacing:15.488000pt;}
.ls1{letter-spacing:27.520000pt;}
.ls6{letter-spacing:29.696000pt;}
.ls2{letter-spacing:31.360000pt;}
.lse{letter-spacing:36.480000pt;}
.lsd{letter-spacing:47.488000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-5.040213pt;}
._2{margin-left:-3.793920pt;}
._5{margin-left:-2.857813pt;}
._4{margin-left:-1.945600pt;}
._0{margin-left:-1.021440pt;}
._3{width:0.972800pt;}
._7{width:1.881600pt;}
._8{width:3.005440pt;}
._1f{width:4.083200pt;}
._1e{width:5.030400pt;}
._1d{width:6.028800pt;}
._12{width:6.988800pt;}
._31{width:8.207787pt;}
._9{width:9.216000pt;}
._a{width:10.340267pt;}
._10{width:11.968000pt;}
._11{width:12.935253pt;}
._2e{width:13.859413pt;}
._27{width:15.083520pt;}
._26{width:17.213440pt;}
._30{width:18.549760pt;}
._17{width:19.496533pt;}
._19{width:20.544000pt;}
._18{width:21.568000pt;}
._28{width:22.937600pt;}
._13{width:23.987200pt;}
._33{width:24.896000pt;}
._14{width:25.804800pt;}
._2b{width:27.004587pt;}
._1c{width:27.968000pt;}
._15{width:29.490773pt;}
._16{width:30.714027pt;}
._f{width:31.936000pt;}
._e{width:32.844800pt;}
._d{width:33.978880pt;}
._1b{width:35.776000pt;}
._1a{width:36.748800pt;}
._32{width:38.414933pt;}
._29{width:39.370240pt;}
._2a{width:40.425813pt;}
._2f{width:41.629440pt;}
._24{width:43.212800pt;}
._25{width:44.748800pt;}
._23{width:45.737813pt;}
._22{width:47.104000pt;}
._21{width:48.000000pt;}
._b{width:48.896000pt;}
._c{width:49.943040pt;}
._20{width:51.307520pt;}
._38{width:55.795200pt;}
._39{width:56.751787pt;}
._37{width:58.227200pt;}
._2c{width:63.897600pt;}
._2d{width:65.385813pt;}
._35{width:159.246933pt;}
._36{width:160.260267pt;}
._34{width:445.708800pt;}
._6{width:1104.405333pt;}
.fs5{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.480000pt;}
.y7{bottom:7.040000pt;}
.y9{bottom:23.712000pt;}
.y8{bottom:42.912000pt;}
.y5{bottom:60.512000pt;}
.y75{bottom:92.192000pt;}
.y34{bottom:100.832000pt;}
.y74{bottom:113.344000pt;}
.y33{bottom:121.984000pt;}
.y73{bottom:134.786667pt;}
.y32{bottom:143.106667pt;}
.y72{bottom:155.906667pt;}
.y58{bottom:163.586667pt;}
.y31{bottom:164.226667pt;}
.y71{bottom:177.346667pt;}
.y57{bottom:184.706667pt;}
.y30{bottom:185.346667pt;}
.y70{bottom:198.466667pt;}
.y56{bottom:205.826667pt;}
.y3d{bottom:206.146667pt;}
.y2f{bottom:206.466667pt;}
.y6f{bottom:219.586667pt;}
.y55{bottom:226.946667pt;}
.y2e{bottom:227.906667pt;}
.y6e{bottom:240.733333pt;}
.y54{bottom:248.093333pt;}
.y2d{bottom:249.053333pt;}
.y6d{bottom:261.853333pt;}
.y53{bottom:269.213333pt;}
.y2c{bottom:270.173333pt;}
.y6c{bottom:282.973333pt;}
.y52{bottom:290.653333pt;}
.y2b{bottom:291.293333pt;}
.y6b{bottom:304.093333pt;}
.y51{bottom:311.773333pt;}
.y2a{bottom:312.413333pt;}
.y6a{bottom:325.213333pt;}
.y50{bottom:332.893333pt;}
.y29{bottom:333.533333pt;}
.y69{bottom:346.653333pt;}
.y4f{bottom:354.053333pt;}
.y28{bottom:354.693333pt;}
.y68{bottom:367.813333pt;}
.y4e{bottom:375.173333pt;}
.y27{bottom:375.813333pt;}
.y67{bottom:388.933333pt;}
.y4d{bottom:396.293333pt;}
.y26{bottom:396.933333pt;}
.y66{bottom:410.053333pt;}
.y4c{bottom:417.413333pt;}
.y25{bottom:418.373333pt;}
.y65{bottom:431.173333pt;}
.y4b{bottom:438.533333pt;}
.y24{bottom:439.493333pt;}
.y64{bottom:452.293333pt;}
.y4a{bottom:459.653333pt;}
.y23{bottom:460.613333pt;}
.y63{bottom:473.120000pt;}
.y49{bottom:481.120000pt;}
.y22{bottom:481.760000pt;}
.y62{bottom:494.560000pt;}
.y48{bottom:502.240000pt;}
.y21{bottom:502.880000pt;}
.y61{bottom:515.680000pt;}
.y47{bottom:523.360000pt;}
.y20{bottom:524.000000pt;}
.y60{bottom:537.120000pt;}
.y46{bottom:544.480000pt;}
.y1f{bottom:545.120000pt;}
.y5f{bottom:558.240000pt;}
.y45{bottom:565.600000pt;}
.y40{bottom:565.920000pt;}
.y1e{bottom:566.240000pt;}
.y5e{bottom:579.360000pt;}
.y44{bottom:586.720000pt;}
.y1d{bottom:587.680000pt;}
.y5d{bottom:600.506667pt;}
.y43{bottom:607.866667pt;}
.y1c{bottom:608.826667pt;}
.y5c{bottom:621.626667pt;}
.y42{bottom:625.466667pt;}
.y1b{bottom:629.946667pt;}
.y5b{bottom:642.746667pt;}
.y1a{bottom:651.066667pt;}
.y5a{bottom:663.866667pt;}
.y19{bottom:672.186667pt;}
.y59{bottom:681.466667pt;}
.y18{bottom:693.306667pt;}
.y17{bottom:714.466667pt;}
.y16{bottom:735.586667pt;}
.y15{bottom:756.706667pt;}
.y14{bottom:778.146667pt;}
.y13{bottom:799.266667pt;}
.y41{bottom:820.066667pt;}
.y12{bottom:820.386667pt;}
.y11{bottom:841.213333pt;}
.y3c{bottom:841.533333pt;}
.y3b{bottom:862.653333pt;}
.y10{bottom:868.733333pt;}
.y3a{bottom:883.773333pt;}
.yf{bottom:889.853333pt;}
.ye{bottom:904.573333pt;}
.y39{bottom:904.893333pt;}
.yd{bottom:926.013333pt;}
.y38{bottom:947.173333pt;}
.y3f{bottom:947.493333pt;}
.yc{bottom:949.093333pt;}
.y37{bottom:968.293333pt;}
.y3e{bottom:968.613333pt;}
.yb{bottom:977.253333pt;}
.y36{bottom:989.733333pt;}
.ya{bottom:1005.413333pt;}
.y76{bottom:1010.533333pt;}
.y35{bottom:1010.853333pt;}
.y4{bottom:1029.093333pt;}
.y3{bottom:1046.053333pt;}
.y2{bottom:1059.813333pt;}
.y1{bottom:1073.600000pt;}
.h5{height:21.440000pt;}
.ha{height:29.493750pt;}
.h2{height:34.318750pt;}
.h3{height:37.931250pt;}
.h7{height:44.687500pt;}
.hd{height:45.156250pt;}
.hb{height:46.375000pt;}
.he{height:46.593750pt;}
.h4{height:48.000000pt;}
.h6{height:51.837500pt;}
.hc{height:52.750000pt;}
.h9{height:54.123125pt;}
.h8{height:60.509375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:118.784000pt;}
.w3{width:255.133333pt;}
.w5{width:267.613333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7{left:78.426667pt;}
.x4{left:85.151988pt;}
.x9{left:91.231988pt;}
.x1{left:104.671988pt;}
.xa{left:109.471988pt;}
.x14{left:113.631988pt;}
.x5{left:127.741333pt;}
.x11{left:132.223988pt;}
.x2{left:133.506655pt;}
.xd{left:178.306655pt;}
.xb{left:191.426655pt;}
.xf{left:219.293322pt;}
.xe{left:242.013322pt;}
.x10{left:263.133322pt;}
.x6{left:340.613333pt;}
.x3{left:357.893322pt;}
.xc{left:396.959988pt;}
.x8{left:460.346667pt;}
.x12{left:687.293322pt;}
.x13{left:703.333322pt;}
}




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