
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_5ec16b1484914109e8770714.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_4eef03f7b4a7894860d62219.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_acd15efee2036d7b3076496a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a11e67c2bb8da63120d7f597.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_52d84a07a02f7f843e47e42a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_cd6f57e5297f77963ecb02b0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6ffdf57404eb846f96838878.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_811ab10e98f67897bc159ef8.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-94.320000px;}
.v1{vertical-align:-84.240000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.180000px;}
.ls2{letter-spacing:8.640000px;}
.ls0{letter-spacing:14.400000px;}
.ls1{letter-spacing:21.600000px;}
.ls3{letter-spacing:24.480000px;}
.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;}
}
.ws3{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.010880px;}
._1{width:1.278240px;}
._9{width:2.982240px;}
._a{width:4.608000px;}
._e{width:5.618880px;}
._c{width:6.984000px;}
._b{width:8.136000px;}
._d{width:9.281760px;}
._10{width:11.088000px;}
._f{width:12.312000px;}
._11{width:13.680000px;}
._15{width:15.419280px;}
._12{width:16.704000px;}
._14{width:18.617040px;}
._6{width:19.944000px;}
._3{width:22.200000px;}
._2{width:23.808000px;}
._7{width:24.984000px;}
._8{width:26.009760px;}
._13{width:27.630720px;}
._16{width:29.399760px;}
._17{width:30.494880px;}
._5{width:33.026880px;}
._4{width:34.272000px;}
._1b{width:38.329200px;}
._19{width:39.424320px;}
._18{width:40.519440px;}
._1a{width:59.304960px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.960000px;}
.y5d{bottom:4.005000px;}
.y5f{bottom:24.660000px;}
.y5c{bottom:24.705000px;}
.y3{bottom:35.856000px;}
.y2{bottom:55.476000px;}
.y57{bottom:75.456000px;}
.y7a{bottom:80.676000px;}
.y2f{bottom:87.516000px;}
.y56{bottom:92.736000px;}
.y79{bottom:93.996000px;}
.y7d{bottom:94.536000px;}
.y55{bottom:97.956000px;}
.y54{bottom:110.016000px;}
.y2e{bottom:115.236000px;}
.y7c{bottom:122.256000px;}
.y78{bottom:126.216000px;}
.y53{bottom:127.296000px;}
.y52{bottom:132.516000px;}
.y2d{bottom:143.136000px;}
.y51{bottom:145.656000px;}
.y7b{bottom:149.976000px;}
.y77{bottom:153.930000px;}
.y2c{bottom:170.850000px;}
.y50{bottom:177.870000px;}
.y75{bottom:181.650000px;}
.y76{bottom:189.210000px;}
.y2b{bottom:198.570000px;}
.y4f{bottom:205.590000px;}
.y74{bottom:209.370000px;}
.y2a{bottom:226.470000px;}
.y4e{bottom:233.310000px;}
.y73{bottom:237.270000px;}
.y29{bottom:254.190000px;}
.y4d{bottom:261.210000px;}
.y72{bottom:264.990000px;}
.y28{bottom:281.955000px;}
.y4c{bottom:288.975000px;}
.y71{bottom:292.755000px;}
.y27{bottom:309.675000px;}
.y4a{bottom:316.695000px;}
.y70{bottom:320.655000px;}
.y4b{bottom:324.255000px;}
.y49{bottom:344.415000px;}
.y6f{bottom:348.375000px;}
.y26{bottom:361.155000px;}
.y48{bottom:372.315000px;}
.y6e{bottom:376.095000px;}
.y25{bottom:381.855000px;}
.y47{bottom:400.035000px;}
.y24{bottom:402.555000px;}
.y6d{bottom:403.815000px;}
.y23{bottom:423.255000px;}
.y46{bottom:427.755000px;}
.y6c{bottom:431.715000px;}
.y22{bottom:443.955000px;}
.y45{bottom:455.655000px;}
.y6b{bottom:459.435000px;}
.y21{bottom:464.655000px;}
.y44{bottom:483.375000px;}
.y20{bottom:485.355000px;}
.y6a{bottom:487.155000px;}
.y1f{bottom:506.055000px;}
.y43{bottom:511.095000px;}
.y69{bottom:514.875000px;}
.y1e{bottom:526.755000px;}
.y42{bottom:538.815000px;}
.y68{bottom:542.775000px;}
.y1d{bottom:547.455000px;}
.y41{bottom:566.745000px;}
.y1c{bottom:568.185000px;}
.y67{bottom:570.525000px;}
.y1b{bottom:588.885000px;}
.y40{bottom:594.465000px;}
.y66{bottom:598.245000px;}
.y1a{bottom:609.585000px;}
.y3f{bottom:622.185000px;}
.y65{bottom:622.365000px;}
.y19{bottom:630.285000px;}
.y64{bottom:634.605000px;}
.y3e{bottom:649.905000px;}
.y18{bottom:650.985000px;}
.y17{bottom:671.685000px;}
.y63{bottom:676.725000px;}
.y3d{bottom:677.805000px;}
.y16{bottom:692.385000px;}
.y3c{bottom:705.525000px;}
.y15{bottom:713.085000px;}
.y62{bottom:718.845000px;}
.y3b{bottom:733.245000px;}
.y14{bottom:733.785000px;}
.y61{bottom:740.265000px;}
.y13{bottom:754.485000px;}
.y3a{bottom:761.145000px;}
.y7e{bottom:765.105000px;}
.y12{bottom:775.005000px;}
.y60{bottom:782.385000px;}
.y39{bottom:788.865000px;}
.y11{bottom:795.705000px;}
.y5e{bottom:803.805000px;}
.y10{bottom:816.405000px;}
.y38{bottom:816.585000px;}
.yf{bottom:837.105000px;}
.y37{bottom:844.305000px;}
.y5b{bottom:846.105000px;}
.ye{bottom:857.850000px;}
.y36{bottom:872.250000px;}
.yd{bottom:878.550000px;}
.y59{bottom:888.270000px;}
.y35{bottom:899.970000px;}
.y58{bottom:912.570000px;}
.yc{bottom:921.390000px;}
.y34{bottom:927.690000px;}
.yb{bottom:941.910000px;}
.y33{bottom:955.590000px;}
.ya{bottom:962.610000px;}
.y9{bottom:983.310000px;}
.y8{bottom:1004.010000px;}
.y32{bottom:1011.030000px;}
.y7{bottom:1024.710000px;}
.y31{bottom:1038.750000px;}
.y6{bottom:1046.130000px;}
.y30{bottom:1066.650000px;}
.y5{bottom:1070.250000px;}
.y4{bottom:1094.370000px;}
.y1{bottom:1194.120000px;}
.hd{height:20.700000px;}
.hc{height:29.678906px;}
.ha{height:38.158594px;}
.h10{height:41.400000px;}
.he{height:41.436000px;}
.h11{height:47.344922px;}
.h9{height:52.998047px;}
.h6{height:54.773438px;}
.hb{height:58.651172px;}
.h8{height:58.819922px;}
.h2{height:65.884219px;}
.h5{height:70.628906px;}
.hf{height:70.664062px;}
.h3{height:72.562500px;}
.h12{height:82.635820px;}
.h7{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:232.995000px;}
.w5{width:260.670000px;}
.w6{width:265.170000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x1{left:42.479987px;}
.x15{left:54.396000px;}
.x19{left:60.840000px;}
.x14{left:68.760000px;}
.xc{left:84.959987px;}
.x13{left:89.855987px;}
.x16{left:96.300000px;}
.x4{left:99.215987px;}
.x5{left:101.735987px;}
.xb{left:127.475987px;}
.xd{left:138.095987px;}
.xe{left:282.134973px;}
.xf{left:288.974987px;}
.x12{left:301.034987px;}
.xa{left:303.374987px;}
.x7{left:310.574987px;}
.x9{left:353.054987px;}
.x2{left:375.554987px;}
.x8{left:382.214987px;}
.x6{left:412.814987px;}
.x3{left:457.094987px;}
.x17{left:563.865000px;}
.x1a{left:710.429973px;}
.x1b{left:717.269987px;}
.x10{left:817.529973px;}
.x11{left:824.369987px;}
@media print{
.v2{vertical-align:-83.840000pt;}
.v1{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls2{letter-spacing:7.680000pt;}
.ls0{letter-spacing:12.800000pt;}
.ls1{letter-spacing:19.200000pt;}
.ls3{letter-spacing:21.760000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.136213pt;}
._9{width:2.650880pt;}
._a{width:4.096000pt;}
._e{width:4.994560pt;}
._c{width:6.208000pt;}
._b{width:7.232000pt;}
._d{width:8.250453pt;}
._10{width:9.856000pt;}
._f{width:10.944000pt;}
._11{width:12.160000pt;}
._15{width:13.706027pt;}
._12{width:14.848000pt;}
._14{width:16.548480pt;}
._6{width:17.728000pt;}
._3{width:19.733333pt;}
._2{width:21.162667pt;}
._7{width:22.208000pt;}
._8{width:23.119787pt;}
._13{width:24.560640pt;}
._16{width:26.133120pt;}
._17{width:27.106560pt;}
._5{width:29.357227pt;}
._4{width:30.464000pt;}
._1b{width:34.070400pt;}
._19{width:35.043840pt;}
._18{width:36.017280pt;}
._1a{width:52.715520pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:3.520000pt;}
.y5d{bottom:3.560000pt;}
.y5f{bottom:21.920000pt;}
.y5c{bottom:21.960000pt;}
.y3{bottom:31.872000pt;}
.y2{bottom:49.312000pt;}
.y57{bottom:67.072000pt;}
.y7a{bottom:71.712000pt;}
.y2f{bottom:77.792000pt;}
.y56{bottom:82.432000pt;}
.y79{bottom:83.552000pt;}
.y7d{bottom:84.032000pt;}
.y55{bottom:87.072000pt;}
.y54{bottom:97.792000pt;}
.y2e{bottom:102.432000pt;}
.y7c{bottom:108.672000pt;}
.y78{bottom:112.192000pt;}
.y53{bottom:113.152000pt;}
.y52{bottom:117.792000pt;}
.y2d{bottom:127.232000pt;}
.y51{bottom:129.472000pt;}
.y7b{bottom:133.312000pt;}
.y77{bottom:136.826667pt;}
.y2c{bottom:151.866667pt;}
.y50{bottom:158.106667pt;}
.y75{bottom:161.466667pt;}
.y76{bottom:168.186667pt;}
.y2b{bottom:176.506667pt;}
.y4f{bottom:182.746667pt;}
.y74{bottom:186.106667pt;}
.y2a{bottom:201.306667pt;}
.y4e{bottom:207.386667pt;}
.y73{bottom:210.906667pt;}
.y29{bottom:225.946667pt;}
.y4d{bottom:232.186667pt;}
.y72{bottom:235.546667pt;}
.y28{bottom:250.626667pt;}
.y4c{bottom:256.866667pt;}
.y71{bottom:260.226667pt;}
.y27{bottom:275.266667pt;}
.y4a{bottom:281.506667pt;}
.y70{bottom:285.026667pt;}
.y4b{bottom:288.226667pt;}
.y49{bottom:306.146667pt;}
.y6f{bottom:309.666667pt;}
.y26{bottom:321.026667pt;}
.y48{bottom:330.946667pt;}
.y6e{bottom:334.306667pt;}
.y25{bottom:339.426667pt;}
.y47{bottom:355.586667pt;}
.y24{bottom:357.826667pt;}
.y6d{bottom:358.946667pt;}
.y23{bottom:376.226667pt;}
.y46{bottom:380.226667pt;}
.y6c{bottom:383.746667pt;}
.y22{bottom:394.626667pt;}
.y45{bottom:405.026667pt;}
.y6b{bottom:408.386667pt;}
.y21{bottom:413.026667pt;}
.y44{bottom:429.666667pt;}
.y20{bottom:431.426667pt;}
.y6a{bottom:433.026667pt;}
.y1f{bottom:449.826667pt;}
.y43{bottom:454.306667pt;}
.y69{bottom:457.666667pt;}
.y1e{bottom:468.226667pt;}
.y42{bottom:478.946667pt;}
.y68{bottom:482.466667pt;}
.y1d{bottom:486.626667pt;}
.y41{bottom:503.773333pt;}
.y1c{bottom:505.053333pt;}
.y67{bottom:507.133333pt;}
.y1b{bottom:523.453333pt;}
.y40{bottom:528.413333pt;}
.y66{bottom:531.773333pt;}
.y1a{bottom:541.853333pt;}
.y3f{bottom:553.053333pt;}
.y65{bottom:553.213333pt;}
.y19{bottom:560.253333pt;}
.y64{bottom:564.093333pt;}
.y3e{bottom:577.693333pt;}
.y18{bottom:578.653333pt;}
.y17{bottom:597.053333pt;}
.y63{bottom:601.533333pt;}
.y3d{bottom:602.493333pt;}
.y16{bottom:615.453333pt;}
.y3c{bottom:627.133333pt;}
.y15{bottom:633.853333pt;}
.y62{bottom:638.973333pt;}
.y3b{bottom:651.773333pt;}
.y14{bottom:652.253333pt;}
.y61{bottom:658.013333pt;}
.y13{bottom:670.653333pt;}
.y3a{bottom:676.573333pt;}
.y7e{bottom:680.093333pt;}
.y12{bottom:688.893333pt;}
.y60{bottom:695.453333pt;}
.y39{bottom:701.213333pt;}
.y11{bottom:707.293333pt;}
.y5e{bottom:714.493333pt;}
.y10{bottom:725.693333pt;}
.y38{bottom:725.853333pt;}
.yf{bottom:744.093333pt;}
.y37{bottom:750.493333pt;}
.y5b{bottom:752.093333pt;}
.ye{bottom:762.533333pt;}
.y36{bottom:775.333333pt;}
.yd{bottom:780.933333pt;}
.y59{bottom:789.573333pt;}
.y35{bottom:799.973333pt;}
.y58{bottom:811.173333pt;}
.yc{bottom:819.013333pt;}
.y34{bottom:824.613333pt;}
.yb{bottom:837.253333pt;}
.y33{bottom:849.413333pt;}
.ya{bottom:855.653333pt;}
.y9{bottom:874.053333pt;}
.y8{bottom:892.453333pt;}
.y32{bottom:898.693333pt;}
.y7{bottom:910.853333pt;}
.y31{bottom:923.333333pt;}
.y6{bottom:929.893333pt;}
.y30{bottom:948.133333pt;}
.y5{bottom:951.333333pt;}
.y4{bottom:972.773333pt;}
.y1{bottom:1061.440000pt;}
.hd{height:18.400000pt;}
.hc{height:26.381250pt;}
.ha{height:33.918750pt;}
.h10{height:36.800000pt;}
.he{height:36.832000pt;}
.h11{height:42.084375pt;}
.h9{height:47.109375pt;}
.h6{height:48.687500pt;}
.hb{height:52.134375pt;}
.h8{height:52.284375pt;}
.h2{height:58.563750pt;}
.h5{height:62.781250pt;}
.hf{height:62.812500pt;}
.h3{height:64.500000pt;}
.h12{height:73.454062pt;}
.h7{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:207.106667pt;}
.w5{width:231.706667pt;}
.w6{width:235.706667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x1{left:37.759988pt;}
.x15{left:48.352000pt;}
.x19{left:54.080000pt;}
.x14{left:61.120000pt;}
.xc{left:75.519988pt;}
.x13{left:79.871988pt;}
.x16{left:85.600000pt;}
.x4{left:88.191988pt;}
.x5{left:90.431988pt;}
.xb{left:113.311988pt;}
.xd{left:122.751988pt;}
.xe{left:250.786643pt;}
.xf{left:256.866655pt;}
.x12{left:267.586655pt;}
.xa{left:269.666655pt;}
.x7{left:276.066655pt;}
.x9{left:313.826655pt;}
.x2{left:333.826655pt;}
.x8{left:339.746655pt;}
.x6{left:366.946655pt;}
.x3{left:406.306655pt;}
.x17{left:501.213333pt;}
.x1a{left:631.493310pt;}
.x1b{left:637.573322pt;}
.x10{left:726.693310pt;}
.x11{left:732.773322pt;}
}




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