
    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_b3b8dbdb684199a8fbc0ba16.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941895;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_dbfbe1d770674c77754c01e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.799805;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_fd54f19af4a305548582038a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.237029;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_5f358986d377683a16e3b274.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.282000;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_c148303b10644ac8d9ff4117.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.763184;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_9426cf88f7235047622f2942.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.263000;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_43dd81782f8ecb81db847877.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.288000;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);}
.v2{vertical-align:-49.800000px;}
.v1{vertical-align:-47.400000px;}
.v3{vertical-align:-31.200000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.284016px;}
.ls2{letter-spacing:64.605000px;}
.ls1{letter-spacing:84.398400px;}
.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;}
}
.ws5{word-spacing:-73.118028px;}
.ws1{word-spacing:-66.475014px;}
.ws4{word-spacing:-53.876400px;}
.ws3{word-spacing:-53.682600px;}
.ws8{word-spacing:-47.704800px;}
.ws9{word-spacing:-43.642008px;}
.ws7{word-spacing:-39.124800px;}
.ws0{word-spacing:-29.916000px;}
.ws6{word-spacing:-0.365400px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-5.858400px;}
._2{margin-left:-4.450200px;}
._3{margin-left:-2.981400px;}
._0{margin-left:-1.284000px;}
._1{width:1.399956px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:12.780000px;}
.fs9{font-size:43.200000px;}
.fsd{font-size:54.840000px;}
.fs6{font-size:86.400000px;}
.fs0{font-size:108.000000px;}
.fs2{font-size:120.780000px;}
.fsa{font-size:129.000000px;}
.fs3{font-size:149.400000px;}
.fse{font-size:155.964000px;}
.fsb{font-size:171.600000px;}
.fs5{font-size:193.800000px;}
.fs7{font-size:216.000000px;}
.fs1{font-size:239.982000px;}
.fs4{font-size:263.964000px;}
.fs8{font-size:365.400000px;}
.y0{bottom:0.000000px;}
.y30{bottom:10.500000px;}
.y1{bottom:10.650000px;}
.y4c{bottom:37.350000px;}
.y93{bottom:42.900000px;}
.y6a{bottom:63.750000px;}
.y63{bottom:65.550000px;}
.y55{bottom:68.850000px;}
.y1a{bottom:70.500000px;}
.y11{bottom:80.250000px;}
.y92{bottom:91.350000px;}
.y39{bottom:91.800000px;}
.y2f{bottom:103.350000px;}
.y4b{bottom:105.600000px;}
.y24{bottom:112.800000px;}
.y54{bottom:119.550000px;}
.y2a{bottom:119.700000px;}
.y41{bottom:122.700000px;}
.y19{bottom:124.350000px;}
.y7a{bottom:131.400000px;}
.y69{bottom:132.150000px;}
.y62{bottom:133.800000px;}
.y91{bottom:139.800000px;}
.y10{bottom:151.800000px;}
.y38{bottom:152.550000px;}
.y4a{bottom:173.700000px;}
.y99{bottom:183.900000px;}
.y2e{bottom:184.350000px;}
.y53{bottom:187.950000px;}
.y90{bottom:188.250000px;}
.y18{bottom:190.500000px;}
.y40{bottom:192.000000px;}
.y85{bottom:198.900000px;}
.y68{bottom:200.100000px;}
.y61{bottom:201.900000px;}
.y79{bottom:210.600000px;}
.y7{bottom:212.400000px;}
.y7b{bottom:212.550000px;}
.ya7{bottom:213.150000px;}
.y37{bottom:213.450000px;}
.y49{bottom:214.650000px;}
.yf{bottom:221.100000px;}
.y80{bottom:234.300000px;}
.y8f{bottom:236.700000px;}
.y67{bottom:241.050000px;}
.y6{bottom:242.700000px;}
.y60{bottom:242.850000px;}
.y17{bottom:253.200000px;}
.y2d{bottom:253.650000px;}
.y52{bottom:259.050000px;}
.y3f{bottom:263.550000px;}
.y23{bottom:265.500000px;}
.y84{bottom:270.450000px;}
.y5{bottom:274.650000px;}
.y36{bottom:275.550000px;}
.y48{bottom:282.900000px;}
.y8e{bottom:285.150000px;}
.ya6{bottom:286.800000px;}
.y78{bottom:291.750000px;}
.ye{bottom:292.650000px;}
.y7f{bottom:305.850000px;}
.y29{bottom:307.950000px;}
.y51{bottom:309.000000px;}
.y66{bottom:309.300000px;}
.y5f{bottom:311.100000px;}
.y98{bottom:314.550000px;}
.y1c{bottom:314.700000px;}
.y16{bottom:319.500000px;}
.y2c{bottom:325.200000px;}
.y1d{bottom:332.400000px;}
.y8d{bottom:333.600000px;}
.y3e{bottom:344.550000px;}
.y22{bottom:346.500000px;}
.y47{bottom:351.000000px;}
.y83{bottom:351.450000px;}
.y6f{bottom:354.600000px;}
.y35{bottom:357.750000px;}
.yd{bottom:361.950000px;}
.y9e{bottom:366.000000px;}
.ya5{bottom:368.850000px;}
.y77{bottom:372.750000px;}
.y97{bottom:374.550000px;}
.y50{bottom:376.350000px;}
.y7e{bottom:376.950000px;}
.y28{bottom:377.250000px;}
.y65{bottom:377.400000px;}
.y5e{bottom:379.200000px;}
.y8c{bottom:381.900000px;}
.y15{bottom:382.200000px;}
.y1b{bottom:384.150000px;}
.y46{bottom:391.050000px;}
.y2b{bottom:406.350000px;}
.y6e{bottom:411.450000px;}
.y21{bottom:415.800000px;}
.y64{bottom:418.350000px;}
.y5d{bottom:419.100000px;}
.y3d{bottom:425.550000px;}
.y9d{bottom:427.800000px;}
.y34{bottom:428.100000px;}
.y8b{bottom:430.350000px;}
.y82{bottom:432.450000px;}
.yc{bottom:433.500000px;}
.y27{bottom:437.100000px;}
.y7d{bottom:446.100000px;}
.y4f{bottom:447.600000px;}
.y14{bottom:448.350000px;}
.ya4{bottom:449.850000px;}
.ya0{bottom:453.600000px;}
.y76{bottom:453.750000px;}
.y45{bottom:458.400000px;}
.y72{bottom:464.550000px;}
.y6d{bottom:468.450000px;}
.y33{bottom:473.250000px;}
.ya8{bottom:475.050000px;}
.y8a{bottom:478.800000px;}
.y9c{bottom:484.500000px;}
.y5c{bottom:486.600000px;}
.y20{bottom:487.350000px;}
.y3c{bottom:494.850000px;}
.y4e{bottom:498.300000px;}
.y58{bottom:499.050000px;}
.y95{bottom:501.450000px;}
.yb{bottom:502.800000px;}
.y26{bottom:508.650000px;}
.y13{bottom:511.050000px;}
.y81{bottom:513.600000px;}
.y7c{bottom:515.400000px;}
.y75{bottom:523.050000px;}
.y9f{bottom:524.550000px;}
.y6c{bottom:525.300000px;}
.y44{bottom:526.500000px;}
.y89{bottom:527.250000px;}
.ya3{bottom:531.900000px;}
.y71{bottom:538.350000px;}
.y9b{bottom:544.350000px;}
.y5b{bottom:554.700000px;}
.y32{bottom:555.300000px;}
.y3b{bottom:566.400000px;}
.y43{bottom:567.300000px;}
.y1f{bottom:568.350000px;}
.y4d{bottom:569.250000px;}
.y57{bottom:570.000000px;}
.ya{bottom:574.350000px;}
.y94{bottom:575.250000px;}
.y88{bottom:575.700000px;}
.y12{bottom:577.350000px;}
.y25{bottom:577.800000px;}
.y6b{bottom:582.300000px;}
.y74{bottom:594.600000px;}
.y5a{bottom:595.500000px;}
.ya2{bottom:602.100000px;}
.y9a{bottom:604.050000px;}
.y70{bottom:612.150000px;}
.y87{bottom:624.150000px;}
.y4{bottom:628.800000px;}
.y42{bottom:636.600000px;}
.y31{bottom:637.650000px;}
.y56{bottom:638.400000px;}
.y9{bottom:640.050000px;}
.y3a{bottom:648.450000px;}
.y1e{bottom:649.350000px;}
.y59{bottom:663.900000px;}
.y86{bottom:672.600000px;}
.ya1{bottom:674.700000px;}
.y96{bottom:675.600000px;}
.y3{bottom:702.300000px;}
.y8{bottom:759.450000px;}
.y73{bottom:759.600000px;}
.y2{bottom:769.200000px;}
.h13{height:12.179340px;}
.hf{height:41.169600px;}
.h15{height:52.262520px;}
.h1{height:79.154297px;}
.h3{height:88.520889px;}
.ha{height:92.237988px;}
.hb{height:92.837988px;}
.h4{height:109.496777px;}
.h14{height:131.734800px;}
.h16{height:132.334800px;}
.h17{height:135.510000px;}
.h12{height:136.110000px;}
.h7{height:137.291400px;}
.h9{height:137.891400px;}
.h10{height:141.555000px;}
.h6{height:142.037988px;}
.h18{height:148.633692px;}
.h19{height:163.534800px;}
.h2{height:175.885245px;}
.h8{height:184.691400px;}
.h11{height:188.955000px;}
.he{height:189.730200px;}
.h5{height:193.461896px;}
.hc{height:210.600000px;}
.hd{height:274.050000px;}
.h0{height:892.500000px;}
.w1{width:1190.700000px;}
.w0{width:1191.000000px;}
.x0{left:0.000000px;}
.x1{left:11.850000px;}
.x28{left:59.550000px;}
.x5{left:72.300000px;}
.x6{left:110.550000px;}
.x26{left:117.600000px;}
.x1b{left:127.500000px;}
.x17{left:143.400000px;}
.x16{left:148.650000px;}
.xd{left:156.450000px;}
.x2a{left:161.550000px;}
.x12{left:169.800000px;}
.x13{left:203.850000px;}
.x15{left:205.650000px;}
.x11{left:226.050000px;}
.x18{left:230.400000px;}
.xe{left:242.550000px;}
.x1d{left:244.650000px;}
.x2c{left:252.000000px;}
.x1c{left:272.100000px;}
.x1a{left:321.900000px;}
.x10{left:323.250000px;}
.x2b{left:325.350000px;}
.x1e{left:327.150000px;}
.x29{left:332.550000px;}
.x4{left:341.700000px;}
.x1f{left:358.350000px;}
.x19{left:373.200000px;}
.x27{left:392.700000px;}
.x9{left:395.850000px;}
.xa{left:417.900000px;}
.xb{left:425.250000px;}
.x2d{left:441.000000px;}
.xc{left:475.800000px;}
.xf{left:486.750000px;}
.x14{left:600.150000px;}
.x7{left:621.300000px;}
.x8{left:659.550000px;}
.x2{left:690.900000px;}
.x25{left:701.550000px;}
.x3{left:771.150000px;}
.x24{left:908.400000px;}
.x22{left:936.900000px;}
.x23{left:941.100000px;}
.x20{left:947.550000px;}
.x21{left:949.800000px;}
@media print{
.v2{vertical-align:-44.266667pt;}
.v1{vertical-align:-42.133333pt;}
.v3{vertical-align:-27.733333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.252459pt;}
.ls2{letter-spacing:57.426667pt;}
.ls1{letter-spacing:75.020800pt;}
.ws5{word-spacing:-64.993803pt;}
.ws1{word-spacing:-59.088901pt;}
.ws4{word-spacing:-47.890133pt;}
.ws3{word-spacing:-47.717867pt;}
.ws8{word-spacing:-42.404267pt;}
.ws9{word-spacing:-38.792896pt;}
.ws7{word-spacing:-34.777600pt;}
.ws0{word-spacing:-26.592000pt;}
.ws6{word-spacing:-0.324800pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-5.207467pt;}
._2{margin-left:-3.955733pt;}
._3{margin-left:-2.650133pt;}
._0{margin-left:-1.141333pt;}
._1{width:1.244405pt;}
.fsc{font-size:11.360000pt;}
.fs9{font-size:38.400000pt;}
.fsd{font-size:48.746667pt;}
.fs6{font-size:76.800000pt;}
.fs0{font-size:96.000000pt;}
.fs2{font-size:107.360000pt;}
.fsa{font-size:114.666667pt;}
.fs3{font-size:132.800000pt;}
.fse{font-size:138.634667pt;}
.fsb{font-size:152.533333pt;}
.fs5{font-size:172.266667pt;}
.fs7{font-size:192.000000pt;}
.fs1{font-size:213.317333pt;}
.fs4{font-size:234.634667pt;}
.fs8{font-size:324.800000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:9.333333pt;}
.y1{bottom:9.466667pt;}
.y4c{bottom:33.200000pt;}
.y93{bottom:38.133333pt;}
.y6a{bottom:56.666667pt;}
.y63{bottom:58.266667pt;}
.y55{bottom:61.200000pt;}
.y1a{bottom:62.666667pt;}
.y11{bottom:71.333333pt;}
.y92{bottom:81.200000pt;}
.y39{bottom:81.600000pt;}
.y2f{bottom:91.866667pt;}
.y4b{bottom:93.866667pt;}
.y24{bottom:100.266667pt;}
.y54{bottom:106.266667pt;}
.y2a{bottom:106.400000pt;}
.y41{bottom:109.066667pt;}
.y19{bottom:110.533333pt;}
.y7a{bottom:116.800000pt;}
.y69{bottom:117.466667pt;}
.y62{bottom:118.933333pt;}
.y91{bottom:124.266667pt;}
.y10{bottom:134.933333pt;}
.y38{bottom:135.600000pt;}
.y4a{bottom:154.400000pt;}
.y99{bottom:163.466667pt;}
.y2e{bottom:163.866667pt;}
.y53{bottom:167.066667pt;}
.y90{bottom:167.333333pt;}
.y18{bottom:169.333333pt;}
.y40{bottom:170.666667pt;}
.y85{bottom:176.800000pt;}
.y68{bottom:177.866667pt;}
.y61{bottom:179.466667pt;}
.y79{bottom:187.200000pt;}
.y7{bottom:188.800000pt;}
.y7b{bottom:188.933333pt;}
.ya7{bottom:189.466667pt;}
.y37{bottom:189.733333pt;}
.y49{bottom:190.800000pt;}
.yf{bottom:196.533333pt;}
.y80{bottom:208.266667pt;}
.y8f{bottom:210.400000pt;}
.y67{bottom:214.266667pt;}
.y6{bottom:215.733333pt;}
.y60{bottom:215.866667pt;}
.y17{bottom:225.066667pt;}
.y2d{bottom:225.466667pt;}
.y52{bottom:230.266667pt;}
.y3f{bottom:234.266667pt;}
.y23{bottom:236.000000pt;}
.y84{bottom:240.400000pt;}
.y5{bottom:244.133333pt;}
.y36{bottom:244.933333pt;}
.y48{bottom:251.466667pt;}
.y8e{bottom:253.466667pt;}
.ya6{bottom:254.933333pt;}
.y78{bottom:259.333333pt;}
.ye{bottom:260.133333pt;}
.y7f{bottom:271.866667pt;}
.y29{bottom:273.733333pt;}
.y51{bottom:274.666667pt;}
.y66{bottom:274.933333pt;}
.y5f{bottom:276.533333pt;}
.y98{bottom:279.600000pt;}
.y1c{bottom:279.733333pt;}
.y16{bottom:284.000000pt;}
.y2c{bottom:289.066667pt;}
.y1d{bottom:295.466667pt;}
.y8d{bottom:296.533333pt;}
.y3e{bottom:306.266667pt;}
.y22{bottom:308.000000pt;}
.y47{bottom:312.000000pt;}
.y83{bottom:312.400000pt;}
.y6f{bottom:315.200000pt;}
.y35{bottom:318.000000pt;}
.yd{bottom:321.733333pt;}
.y9e{bottom:325.333333pt;}
.ya5{bottom:327.866667pt;}
.y77{bottom:331.333333pt;}
.y97{bottom:332.933333pt;}
.y50{bottom:334.533333pt;}
.y7e{bottom:335.066667pt;}
.y28{bottom:335.333333pt;}
.y65{bottom:335.466667pt;}
.y5e{bottom:337.066667pt;}
.y8c{bottom:339.466667pt;}
.y15{bottom:339.733333pt;}
.y1b{bottom:341.466667pt;}
.y46{bottom:347.600000pt;}
.y2b{bottom:361.200000pt;}
.y6e{bottom:365.733333pt;}
.y21{bottom:369.600000pt;}
.y64{bottom:371.866667pt;}
.y5d{bottom:372.533333pt;}
.y3d{bottom:378.266667pt;}
.y9d{bottom:380.266667pt;}
.y34{bottom:380.533333pt;}
.y8b{bottom:382.533333pt;}
.y82{bottom:384.400000pt;}
.yc{bottom:385.333333pt;}
.y27{bottom:388.533333pt;}
.y7d{bottom:396.533333pt;}
.y4f{bottom:397.866667pt;}
.y14{bottom:398.533333pt;}
.ya4{bottom:399.866667pt;}
.ya0{bottom:403.200000pt;}
.y76{bottom:403.333333pt;}
.y45{bottom:407.466667pt;}
.y72{bottom:412.933333pt;}
.y6d{bottom:416.400000pt;}
.y33{bottom:420.666667pt;}
.ya8{bottom:422.266667pt;}
.y8a{bottom:425.600000pt;}
.y9c{bottom:430.666667pt;}
.y5c{bottom:432.533333pt;}
.y20{bottom:433.200000pt;}
.y3c{bottom:439.866667pt;}
.y4e{bottom:442.933333pt;}
.y58{bottom:443.600000pt;}
.y95{bottom:445.733333pt;}
.yb{bottom:446.933333pt;}
.y26{bottom:452.133333pt;}
.y13{bottom:454.266667pt;}
.y81{bottom:456.533333pt;}
.y7c{bottom:458.133333pt;}
.y75{bottom:464.933333pt;}
.y9f{bottom:466.266667pt;}
.y6c{bottom:466.933333pt;}
.y44{bottom:468.000000pt;}
.y89{bottom:468.666667pt;}
.ya3{bottom:472.800000pt;}
.y71{bottom:478.533333pt;}
.y9b{bottom:483.866667pt;}
.y5b{bottom:493.066667pt;}
.y32{bottom:493.600000pt;}
.y3b{bottom:503.466667pt;}
.y43{bottom:504.266667pt;}
.y1f{bottom:505.200000pt;}
.y4d{bottom:506.000000pt;}
.y57{bottom:506.666667pt;}
.ya{bottom:510.533333pt;}
.y94{bottom:511.333333pt;}
.y88{bottom:511.733333pt;}
.y12{bottom:513.200000pt;}
.y25{bottom:513.600000pt;}
.y6b{bottom:517.600000pt;}
.y74{bottom:528.533333pt;}
.y5a{bottom:529.333333pt;}
.ya2{bottom:535.200000pt;}
.y9a{bottom:536.933333pt;}
.y70{bottom:544.133333pt;}
.y87{bottom:554.800000pt;}
.y4{bottom:558.933333pt;}
.y42{bottom:565.866667pt;}
.y31{bottom:566.800000pt;}
.y56{bottom:567.466667pt;}
.y9{bottom:568.933333pt;}
.y3a{bottom:576.400000pt;}
.y1e{bottom:577.200000pt;}
.y59{bottom:590.133333pt;}
.y86{bottom:597.866667pt;}
.ya1{bottom:599.733333pt;}
.y96{bottom:600.533333pt;}
.y3{bottom:624.266667pt;}
.y8{bottom:675.066667pt;}
.y73{bottom:675.200000pt;}
.y2{bottom:683.733333pt;}
.h13{height:10.826080pt;}
.hf{height:36.595200pt;}
.h15{height:46.455573pt;}
.h1{height:70.359375pt;}
.h3{height:78.685234pt;}
.ha{height:81.989323pt;}
.hb{height:82.522656pt;}
.h4{height:97.330469pt;}
.h14{height:117.097600pt;}
.h16{height:117.630933pt;}
.h17{height:120.453333pt;}
.h12{height:120.986667pt;}
.h7{height:122.036800pt;}
.h9{height:122.570133pt;}
.h10{height:125.826667pt;}
.h6{height:126.255990pt;}
.h18{height:132.118837pt;}
.h19{height:145.364267pt;}
.h2{height:156.342440pt;}
.h8{height:164.170133pt;}
.h11{height:167.960000pt;}
.he{height:168.649067pt;}
.h5{height:171.966130pt;}
.hc{height:187.200000pt;}
.hd{height:243.600000pt;}
.h0{height:793.333333pt;}
.w1{width:1058.400000pt;}
.w0{width:1058.666667pt;}
.x0{left:0.000000pt;}
.x1{left:10.533333pt;}
.x28{left:52.933333pt;}
.x5{left:64.266667pt;}
.x6{left:98.266667pt;}
.x26{left:104.533333pt;}
.x1b{left:113.333333pt;}
.x17{left:127.466667pt;}
.x16{left:132.133333pt;}
.xd{left:139.066667pt;}
.x2a{left:143.600000pt;}
.x12{left:150.933333pt;}
.x13{left:181.200000pt;}
.x15{left:182.800000pt;}
.x11{left:200.933333pt;}
.x18{left:204.800000pt;}
.xe{left:215.600000pt;}
.x1d{left:217.466667pt;}
.x2c{left:224.000000pt;}
.x1c{left:241.866667pt;}
.x1a{left:286.133333pt;}
.x10{left:287.333333pt;}
.x2b{left:289.200000pt;}
.x1e{left:290.800000pt;}
.x29{left:295.600000pt;}
.x4{left:303.733333pt;}
.x1f{left:318.533333pt;}
.x19{left:331.733333pt;}
.x27{left:349.066667pt;}
.x9{left:351.866667pt;}
.xa{left:371.466667pt;}
.xb{left:378.000000pt;}
.x2d{left:392.000000pt;}
.xc{left:422.933333pt;}
.xf{left:432.666667pt;}
.x14{left:533.466667pt;}
.x7{left:552.266667pt;}
.x8{left:586.266667pt;}
.x2{left:614.133333pt;}
.x25{left:623.600000pt;}
.x3{left:685.466667pt;}
.x24{left:807.466667pt;}
.x22{left:832.800000pt;}
.x23{left:836.533333pt;}
.x20{left:842.266667pt;}
.x21{left:844.266667pt;}
}




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