
    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_0a450f064d04e9e9aa47bcfa.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4524a45be3e8a7c80d86c2ed.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_5ca1505e69f313ab8a52fa5b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_5fef549509d1bc3168953f04.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_af0d5af6f7d648475dac23a5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_04bfe0083620ee62ffb7dc37.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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.496200px;}
.lsc{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.144720px;}
.lse{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.223800px;}
.lsd{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.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:-19.431360px;}
.wsc{word-spacing:-16.712400px;}
.wsd{word-spacing:-16.560000px;}
.wse{word-spacing:-16.254600px;}
.wsb{word-spacing:-16.102200px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.608000px;}
.ws6{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.283800px;}
.ws8{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws7{word-spacing:-11.563800px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._13{margin-left:-4.091040px;}
._a{margin-left:-2.864160px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._2{width:2.280000px;}
._e{width:3.348960px;}
._3{width:4.590000px;}
._6{width:5.940000px;}
._9{width:7.061040px;}
._11{width:9.018000px;}
._b{width:10.206000px;}
._c{width:11.232000px;}
._15{width:12.320640px;}
._16{width:13.659840px;}
._8{width:14.867280px;}
._7{width:16.254000px;}
._d{width:17.658000px;}
._14{width:19.170000px;}
._18{width:20.826960px;}
._f{width:22.194000px;}
._1c{width:23.216400px;}
._1e{width:24.233280px;}
._12{width:25.284000px;}
._4{width:26.676000px;}
._5{width:27.764640px;}
._19{width:29.052720px;}
._21{width:30.205440px;}
._20{width:32.207040px;}
._1d{width:34.776000px;}
._10{width:36.180000px;}
._1f{width:37.454400px;}
._1a{width:42.062400px;}
._1b{width:43.235280px;}
._22{width:58.887360px;}
._23{width:60.149280px;}
._27{width:113.262240px;}
._26{width:114.330240px;}
._24{width:185.008320px;}
._25{width:186.203040px;}
._17{width:199.416000px;}
._28{width:216.207360px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y44{bottom:2.880000px;}
.y4{bottom:6.480000px;}
.y47{bottom:9.900000px;}
.y48{bottom:11.340000px;}
.y43{bottom:18.540000px;}
.y7{bottom:25.560000px;}
.ya{bottom:28.980000px;}
.y42{bottom:34.020000px;}
.yd{bottom:35.460000px;}
.y6{bottom:42.660000px;}
.y9{bottom:46.260000px;}
.y41{bottom:49.500000px;}
.yc{bottom:53.280000px;}
.y5{bottom:60.660000px;}
.y8{bottom:63.360000px;}
.y40{bottom:64.980000px;}
.y3f{bottom:80.640000px;}
.y3e{bottom:96.165000px;}
.y3d{bottom:111.645000px;}
.y4c{bottom:118.476000px;}
.y7a{bottom:126.576000px;}
.y3c{bottom:127.125000px;}
.y4b{bottom:140.436000px;}
.y3b{bottom:142.605000px;}
.y79{bottom:148.356000px;}
.y3a{bottom:158.265000px;}
.y4a{bottom:162.210000px;}
.y78{bottom:170.130000px;}
.y39{bottom:173.745000px;}
.y49{bottom:177.690000px;}
.y38{bottom:189.225000px;}
.y77{bottom:192.090000px;}
.y46{bottom:199.830000px;}
.y37{bottom:204.705000px;}
.y76{bottom:213.870000px;}
.y36{bottom:220.365000px;}
.y45{bottom:231.330000px;}
.y75{bottom:235.650000px;}
.y35{bottom:235.845000px;}
.y18{bottom:246.810000px;}
.y34{bottom:251.325000px;}
.y74{bottom:257.430000px;}
.y33{bottom:266.805000px;}
.y73{bottom:279.210000px;}
.y32{bottom:282.465000px;}
.y31{bottom:297.945000px;}
.y72{bottom:301.170000px;}
.y30{bottom:313.425000px;}
.y71{bottom:322.950000px;}
.y2f{bottom:328.905000px;}
.y2e{bottom:344.565000px;}
.y70{bottom:344.775000px;}
.y2d{bottom:360.075000px;}
.y6f{bottom:366.555000px;}
.y2c{bottom:375.555000px;}
.y6e{bottom:388.515000px;}
.y2b{bottom:391.035000px;}
.y2a{bottom:406.695000px;}
.y6d{bottom:410.295000px;}
.y29{bottom:422.175000px;}
.y6c{bottom:432.075000px;}
.y28{bottom:437.655000px;}
.y27{bottom:453.135000px;}
.y6b{bottom:453.855000px;}
.y26{bottom:468.795000px;}
.y6a{bottom:475.635000px;}
.y25{bottom:484.275000px;}
.y69{bottom:497.595000px;}
.y24{bottom:499.755000px;}
.y23{bottom:515.235000px;}
.y68{bottom:519.375000px;}
.y22{bottom:530.895000px;}
.y67{bottom:541.155000px;}
.y21{bottom:546.375000px;}
.y20{bottom:561.855000px;}
.y66{bottom:562.935000px;}
.y1f{bottom:577.335000px;}
.y65{bottom:584.715000px;}
.y1e{bottom:592.995000px;}
.y64{bottom:606.705000px;}
.y1d{bottom:608.475000px;}
.y1c{bottom:624.000000px;}
.y63{bottom:628.485000px;}
.y1b{bottom:639.480000px;}
.y62{bottom:650.265000px;}
.y1a{bottom:654.960000px;}
.y19{bottom:670.620000px;}
.y61{bottom:672.045000px;}
.y60{bottom:694.005000px;}
.y5f{bottom:715.785000px;}
.y5e{bottom:737.565000px;}
.y5d{bottom:759.345000px;}
.y5c{bottom:781.125000px;}
.y5b{bottom:803.085000px;}
.y5a{bottom:824.865000px;}
.y59{bottom:846.645000px;}
.y58{bottom:868.425000px;}
.y57{bottom:890.430000px;}
.y56{bottom:912.210000px;}
.y55{bottom:933.990000px;}
.y17{bottom:935.790000px;}
.y16{bottom:953.070000px;}
.y54{bottom:955.770000px;}
.y15{bottom:975.570000px;}
.y53{bottom:977.550000px;}
.y14{bottom:987.990000px;}
.y52{bottom:999.510000px;}
.y13{bottom:1006.170000px;}
.y51{bottom:1021.290000px;}
.y12{bottom:1022.550000px;}
.y11{bottom:1041.450000px;}
.y50{bottom:1043.070000px;}
.y10{bottom:1060.890000px;}
.y4f{bottom:1064.850000px;}
.yf{bottom:1083.390000px;}
.y4e{bottom:1086.810000px;}
.ye{bottom:1105.710000px;}
.y4d{bottom:1108.590000px;}
.yb{bottom:1127.670000px;}
.y3{bottom:1147.500000px;}
.y2{bottom:1228.680000px;}
.y1{bottom:1247.580000px;}
.h11{height:15.480000px;}
.hd{height:27.147656px;}
.h12{height:31.500000px;}
.h13{height:33.683203px;}
.h10{height:37.705078px;}
.hb{height:38.100586px;}
.h8{height:39.147891px;}
.h4{height:41.726953px;}
.h6{height:42.164648px;}
.hf{height:44.507812px;}
.h2{height:46.251562px;}
.h14{height:46.736719px;}
.h7{height:49.255313px;}
.h5{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:54.596250px;}
.h9{height:54.864844px;}
.h3{height:77.400000px;}
.he{height:683.205000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:72.000000px;}
.w5{width:209.370000px;}
.w7{width:224.130000px;}
.w8{width:297.750000px;}
.w9{width:391.575000px;}
.w4{width:427.935000px;}
.w6{width:459.075000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x16{left:29.694000px;}
.x7{left:44.640000px;}
.x3{left:69.294000px;}
.x8{left:85.725000px;}
.x2{left:99.936000px;}
.x1{left:108.035987px;}
.xe{left:112.355987px;}
.xb{left:121.715987px;}
.x15{left:124.236000px;}
.x9{left:132.345000px;}
.xc{left:137.015987px;}
.x13{left:139.715987px;}
.x1c{left:144.035987px;}
.x11{left:145.835987px;}
.x1b{left:148.535987px;}
.x1a{left:150.509987px;}
.x19{left:162.029987px;}
.x4{left:171.930000px;}
.xf{left:283.214987px;}
.x12{left:367.274987px;}
.xd{left:410.294987px;}
.x17{left:421.995000px;}
.x10{left:448.274987px;}
.xa{left:500.144987px;}
.x14{left:567.105000px;}
.x6{left:599.865000px;}
.x18{left:777.929987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.441067pt;}
.lsc{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.128640pt;}
.lse{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.198933pt;}
.lsd{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ws2{word-spacing:-17.272320pt;}
.wsc{word-spacing:-14.855467pt;}
.wsd{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.448533pt;}
.wsb{word-spacing:-14.313067pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.096000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws9{word-spacing:-10.918933pt;}
.ws8{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws7{word-spacing:-10.278933pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._13{margin-left:-3.636480pt;}
._a{margin-left:-2.545920pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._2{width:2.026667pt;}
._e{width:2.976853pt;}
._3{width:4.080000pt;}
._6{width:5.280000pt;}
._9{width:6.276480pt;}
._11{width:8.016000pt;}
._b{width:9.072000pt;}
._c{width:9.984000pt;}
._15{width:10.951680pt;}
._16{width:12.142080pt;}
._8{width:13.215360pt;}
._7{width:14.448000pt;}
._d{width:15.696000pt;}
._14{width:17.040000pt;}
._18{width:18.512853pt;}
._f{width:19.728000pt;}
._1c{width:20.636800pt;}
._1e{width:21.540693pt;}
._12{width:22.474667pt;}
._4{width:23.712000pt;}
._5{width:24.679680pt;}
._19{width:25.824640pt;}
._21{width:26.849280pt;}
._20{width:28.628480pt;}
._1d{width:30.912000pt;}
._10{width:32.160000pt;}
._1f{width:33.292800pt;}
._1a{width:37.388800pt;}
._1b{width:38.431360pt;}
._22{width:52.344320pt;}
._23{width:53.466027pt;}
._27{width:100.677547pt;}
._26{width:101.626880pt;}
._24{width:164.451840pt;}
._25{width:165.513813pt;}
._17{width:177.258667pt;}
._28{width:192.184320pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.560000pt;}
.y4{bottom:5.760000pt;}
.y47{bottom:8.800000pt;}
.y48{bottom:10.080000pt;}
.y43{bottom:16.480000pt;}
.y7{bottom:22.720000pt;}
.ya{bottom:25.760000pt;}
.y42{bottom:30.240000pt;}
.yd{bottom:31.520000pt;}
.y6{bottom:37.920000pt;}
.y9{bottom:41.120000pt;}
.y41{bottom:44.000000pt;}
.yc{bottom:47.360000pt;}
.y5{bottom:53.920000pt;}
.y8{bottom:56.320000pt;}
.y40{bottom:57.760000pt;}
.y3f{bottom:71.680000pt;}
.y3e{bottom:85.480000pt;}
.y3d{bottom:99.240000pt;}
.y4c{bottom:105.312000pt;}
.y7a{bottom:112.512000pt;}
.y3c{bottom:113.000000pt;}
.y4b{bottom:124.832000pt;}
.y3b{bottom:126.760000pt;}
.y79{bottom:131.872000pt;}
.y3a{bottom:140.680000pt;}
.y4a{bottom:144.186667pt;}
.y78{bottom:151.226667pt;}
.y39{bottom:154.440000pt;}
.y49{bottom:157.946667pt;}
.y38{bottom:168.200000pt;}
.y77{bottom:170.746667pt;}
.y46{bottom:177.626667pt;}
.y37{bottom:181.960000pt;}
.y76{bottom:190.106667pt;}
.y36{bottom:195.880000pt;}
.y45{bottom:205.626667pt;}
.y75{bottom:209.466667pt;}
.y35{bottom:209.640000pt;}
.y18{bottom:219.386667pt;}
.y34{bottom:223.400000pt;}
.y74{bottom:228.826667pt;}
.y33{bottom:237.160000pt;}
.y73{bottom:248.186667pt;}
.y32{bottom:251.080000pt;}
.y31{bottom:264.840000pt;}
.y72{bottom:267.706667pt;}
.y30{bottom:278.600000pt;}
.y71{bottom:287.066667pt;}
.y2f{bottom:292.360000pt;}
.y2e{bottom:306.280000pt;}
.y70{bottom:306.466667pt;}
.y2d{bottom:320.066667pt;}
.y6f{bottom:325.826667pt;}
.y2c{bottom:333.826667pt;}
.y6e{bottom:345.346667pt;}
.y2b{bottom:347.586667pt;}
.y2a{bottom:361.506667pt;}
.y6d{bottom:364.706667pt;}
.y29{bottom:375.266667pt;}
.y6c{bottom:384.066667pt;}
.y28{bottom:389.026667pt;}
.y27{bottom:402.786667pt;}
.y6b{bottom:403.426667pt;}
.y26{bottom:416.706667pt;}
.y6a{bottom:422.786667pt;}
.y25{bottom:430.466667pt;}
.y69{bottom:442.306667pt;}
.y24{bottom:444.226667pt;}
.y23{bottom:457.986667pt;}
.y68{bottom:461.666667pt;}
.y22{bottom:471.906667pt;}
.y67{bottom:481.026667pt;}
.y21{bottom:485.666667pt;}
.y20{bottom:499.426667pt;}
.y66{bottom:500.386667pt;}
.y1f{bottom:513.186667pt;}
.y65{bottom:519.746667pt;}
.y1e{bottom:527.106667pt;}
.y64{bottom:539.293333pt;}
.y1d{bottom:540.866667pt;}
.y1c{bottom:554.666667pt;}
.y63{bottom:558.653333pt;}
.y1b{bottom:568.426667pt;}
.y62{bottom:578.013333pt;}
.y1a{bottom:582.186667pt;}
.y19{bottom:596.106667pt;}
.y61{bottom:597.373333pt;}
.y60{bottom:616.893333pt;}
.y5f{bottom:636.253333pt;}
.y5e{bottom:655.613333pt;}
.y5d{bottom:674.973333pt;}
.y5c{bottom:694.333333pt;}
.y5b{bottom:713.853333pt;}
.y5a{bottom:733.213333pt;}
.y59{bottom:752.573333pt;}
.y58{bottom:771.933333pt;}
.y57{bottom:791.493333pt;}
.y56{bottom:810.853333pt;}
.y55{bottom:830.213333pt;}
.y17{bottom:831.813333pt;}
.y16{bottom:847.173333pt;}
.y54{bottom:849.573333pt;}
.y15{bottom:867.173333pt;}
.y53{bottom:868.933333pt;}
.y14{bottom:878.213333pt;}
.y52{bottom:888.453333pt;}
.y13{bottom:894.373333pt;}
.y51{bottom:907.813333pt;}
.y12{bottom:908.933333pt;}
.y11{bottom:925.733333pt;}
.y50{bottom:927.173333pt;}
.y10{bottom:943.013333pt;}
.y4f{bottom:946.533333pt;}
.yf{bottom:963.013333pt;}
.y4e{bottom:966.053333pt;}
.ye{bottom:982.853333pt;}
.y4d{bottom:985.413333pt;}
.yb{bottom:1002.373333pt;}
.y3{bottom:1020.000000pt;}
.y2{bottom:1092.160000pt;}
.y1{bottom:1108.960000pt;}
.h11{height:13.760000pt;}
.hd{height:24.131250pt;}
.h12{height:28.000000pt;}
.h13{height:29.940625pt;}
.h10{height:33.515625pt;}
.hb{height:33.867188pt;}
.h8{height:34.798125pt;}
.h4{height:37.090625pt;}
.h6{height:37.479688pt;}
.hf{height:39.562500pt;}
.h2{height:41.112500pt;}
.h14{height:41.543750pt;}
.h7{height:43.782500pt;}
.h5{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:48.530000pt;}
.h9{height:48.768750pt;}
.h3{height:68.800000pt;}
.he{height:607.293333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.000000pt;}
.w5{width:186.106667pt;}
.w7{width:199.226667pt;}
.w8{width:264.666667pt;}
.w9{width:348.066667pt;}
.w4{width:380.386667pt;}
.w6{width:408.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x16{left:26.394667pt;}
.x7{left:39.680000pt;}
.x3{left:61.594667pt;}
.x8{left:76.200000pt;}
.x2{left:88.832000pt;}
.x1{left:96.031988pt;}
.xe{left:99.871988pt;}
.xb{left:108.191988pt;}
.x15{left:110.432000pt;}
.x9{left:117.640000pt;}
.xc{left:121.791988pt;}
.x13{left:124.191988pt;}
.x1c{left:128.031988pt;}
.x11{left:129.631988pt;}
.x1b{left:132.031988pt;}
.x1a{left:133.786655pt;}
.x19{left:144.026655pt;}
.x4{left:152.826667pt;}
.xf{left:251.746655pt;}
.x12{left:326.466655pt;}
.xd{left:364.706655pt;}
.x17{left:375.106667pt;}
.x10{left:398.466655pt;}
.xa{left:444.573322pt;}
.x14{left:504.093333pt;}
.x6{left:533.213333pt;}
.x18{left:691.493322pt;}
}




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