
    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_6932f6e3c1f14dff4a89168f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_e26b7e23d2ce8996bb2d36b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_15b8045d54b0cd23904b58c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_df2b44fd8ed4db7ca8ea6c11.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_01ed8b05eec50118144e93c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_e4601a94601712130c1ba516.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_00dae1ede20b63c05d5cb996.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861328;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.094301px;}
.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;}
}
.ws1{word-spacing:-79.203150px;}
.ws3{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.760900px;}
.ws4{word-spacing:-15.840563px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-12.470481px;}
._8{margin-left:-10.732130px;}
._1f{margin-left:-9.518839px;}
._4{margin-left:-7.812603px;}
._6{margin-left:-5.892703px;}
._2{margin-left:-3.897530px;}
._7{margin-left:-2.501577px;}
._3{margin-left:-1.124559px;}
._0{width:1.064507px;}
._17{width:3.055039px;}
._19{width:4.311118px;}
._15{width:5.321699px;}
._16{width:6.417949px;}
._1e{width:7.516427px;}
._18{width:8.746981px;}
._20{width:10.454796px;}
._21{width:11.474473px;}
._d{width:12.496284px;}
._1d{width:13.607660px;}
._1c{width:14.611377px;}
._1b{width:15.730923px;}
._23{width:17.055686px;}
._f{width:18.217835px;}
._e{width:19.959156px;}
._12{width:21.574897px;}
._13{width:22.642281px;}
._27{width:26.171009px;}
._11{width:27.520042px;}
._10{width:28.526724px;}
._14{width:30.178942px;}
._2d{width:34.716717px;}
._c{width:43.433347px;}
._b{width:44.655270px;}
._9{width:46.602550px;}
._a{width:47.889537px;}
._1a{width:61.778340px;}
._2e{width:83.638368px;}
._25{width:131.067781px;}
._26{width:135.342086px;}
._24{width:136.485266px;}
._28{width:140.665271px;}
._2a{width:203.393304px;}
._2b{width:204.533085px;}
._2f{width:1122.781176px;}
._22{width:1632.191776px;}
._2c{width:1636.511875px;}
._1{width:1663.871951px;}
._29{width:1776.215821px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs2{font-size:95.043600px;}
.fs4{font-size:102.964046px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980011px;}
.y20{bottom:41.040115px;}
.y4b{bottom:99.900055px;}
.y91{bottom:102.420043px;}
.yaa{bottom:115.740074px;}
.y55{bottom:121.320099px;}
.y1e{bottom:121.860077px;}
.y63{bottom:124.200096px;}
.y73{bottom:124.560036px;}
.y90{bottom:126.180039px;}
.y4a{bottom:128.520058px;}
.ya9{bottom:144.360077px;}
.y54{bottom:149.940033px;}
.y1d{bottom:150.300041px;}
.y62{bottom:152.640060px;}
.y72{bottom:153.000068px;}
.y49{bottom:156.960091px;}
.y8f{bottom:173.700096px;}
.y57{bottom:178.560036px;}
.y28{bottom:178.920043px;}
.y71{bottom:181.620072px;}
.y8e{bottom:197.460091px;}
.ya8{bottom:200.520058px;}
.y53{bottom:207.000068px;}
.y1c{bottom:207.360077px;}
.y48{bottom:213.300041px;}
.y8d{bottom:221.220085px;}
.ya7{bottom:228.240074px;}
.y52{bottom:235.620072px;}
.y27{bottom:235.980079px;}
.y47{bottom:241.020058px;}
.y8c{bottom:244.980079px;}
.ya6{bottom:256.140060px;}
.y51{bottom:264.060036px;}
.y1b{bottom:264.420043px;}
.y70{bottom:267.120072px;}
.ya5{bottom:283.860077px;}
.y50{bottom:292.680039px;}
.y1a{bottom:293.040047px;}
.y6f{bottom:295.740074px;}
.y46{bottom:296.460091px;}
.y8b{bottom:316.440033px;}
.y4f{bottom:321.120072px;}
.y19{bottom:321.480079px;}
.y61{bottom:323.820099px;}
.y45{bottom:324.180039px;}
.ya4{bottom:339.300041px;}
.y8a{bottom:340.200096px;}
.y4e{bottom:349.740074px;}
.y18{bottom:350.100083px;}
.y44{bottom:352.080093px;}
.y6e{bottom:352.800041px;}
.y89{bottom:363.960091px;}
.ya3{bottom:367.020058px;}
.y56{bottom:378.180039px;}
.y17{bottom:378.540047px;}
.y43{bottom:379.800041px;}
.y60{bottom:380.880066px;}
.y6d{bottom:381.240074px;}
.y88{bottom:387.720085px;}
.ya2{bottom:394.740074px;}
.y4d{bottom:406.800041px;}
.y16{bottom:407.160049px;}
.y42{bottom:407.520058px;}
.y6c{bottom:409.860077px;}
.y87{bottom:411.480079px;}
.ya1{bottom:422.460091px;}
.y41{bottom:435.240074px;}
.y15{bottom:435.600083px;}
.y5f{bottom:437.940033px;}
.y6b{bottom:438.300041px;}
.y86{bottom:459.000068px;}
.y40{bottom:463.860077px;}
.y14{bottom:464.220085px;}
.y5e{bottom:466.560036px;}
.y6a{bottom:466.920043px;}
.ya0{bottom:477.900055px;}
.y85{bottom:482.760064px;}
.y3f{bottom:492.300041px;}
.y13{bottom:492.660049px;}
.y5d{bottom:495.000068px;}
.y69{bottom:495.360077px;}
.y9f{bottom:505.800041px;}
.y3e{bottom:520.920043px;}
.y12{bottom:521.280052px;}
.y5c{bottom:523.620072px;}
.y68{bottom:523.980079px;}
.y84{bottom:530.280052px;}
.y9e{bottom:533.520058px;}
.y3d{bottom:549.360077px;}
.y11{bottom:549.720085px;}
.y5b{bottom:552.060036px;}
.y83{bottom:554.040047px;}
.y3c{bottom:577.980079px;}
.y10{bottom:578.340088px;}
.y5a{bottom:580.680039px;}
.y67{bottom:581.040047px;}
.y9d{bottom:588.960091px;}
.y82{bottom:601.740074px;}
.y3b{bottom:606.420043px;}
.y26{bottom:606.780052px;}
.y66{bottom:609.480079px;}
.y9c{bottom:616.680039px;}
.y81{bottom:625.500068px;}
.y3a{bottom:635.040047px;}
.yf{bottom:635.400055px;}
.y59{bottom:637.740074px;}
.y9b{bottom:644.400055px;}
.y39{bottom:663.480079px;}
.ye{bottom:663.840088px;}
.y9a{bottom:672.120072px;}
.y80{bottom:673.020058px;}
.y38{bottom:692.100083px;}
.yd{bottom:692.460056px;}
.y65{bottom:695.160049px;}
.y7f{bottom:696.780052px;}
.y37{bottom:720.540081px;}
.yc{bottom:720.900055px;}
.y58{bottom:723.240074px;}
.y99{bottom:727.560070px;}
.y7e{bottom:744.300076px;}
.y4c{bottom:749.160049px;}
.y25{bottom:749.520058px;}
.y98{bottom:755.460056px;}
.y36{bottom:777.600083px;}
.y24{bottom:777.960056px;}
.y97{bottom:783.180073px;}
.y7d{bottom:791.820065px;}
.y35{bottom:806.220051px;}
.yb{bottom:806.580059px;}
.y96{bottom:810.900055px;}
.y7c{bottom:815.580059px;}
.y34{bottom:834.660049px;}
.ya{bottom:835.020058px;}
.y95{bottom:838.620072px;}
.y7b{bottom:839.520058px;}
.y33{bottom:863.280052px;}
.y9{bottom:863.640060px;}
.y7a{bottom:887.040081px;}
.y32{bottom:891.720051px;}
.y8{bottom:892.080059px;}
.y94{bottom:894.060070px;}
.y31{bottom:920.340054px;}
.y7{bottom:920.700061px;}
.y93{bottom:921.780052px;}
.y79{bottom:934.560070px;}
.y30{bottom:948.780053px;}
.y6{bottom:949.140060px;}
.y78{bottom:958.320065px;}
.y2f{bottom:977.400072px;}
.y5{bottom:977.760064px;}
.y2e{bottom:1005.840070px;}
.y23{bottom:1006.200061px;}
.y77{bottom:1029.600065px;}
.y2d{bottom:1034.460074px;}
.y22{bottom:1034.820065px;}
.y92{bottom:1053.360060px;}
.y2c{bottom:1062.900072px;}
.y4{bottom:1063.260064px;}
.y76{bottom:1077.120072px;}
.y2b{bottom:1091.520058px;}
.y21{bottom:1091.880066px;}
.y1f{bottom:1095.300058px;}
.y75{bottom:1101.060070px;}
.y2a{bottom:1119.960065px;}
.y3{bottom:1120.320065px;}
.y74{bottom:1124.820065px;}
.y29{bottom:1148.580068px;}
.y2{bottom:1148.940067px;}
.y64{bottom:1151.640069px;}
.h5{height:55.302981px;}
.h7{height:55.596662px;}
.h6{height:57.534328px;}
.h8{height:64.414315px;}
.h9{height:65.992187px;}
.h2{height:67.837080px;}
.hb{height:69.496123px;}
.ha{height:70.346938px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.hc{height:91.450976px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:89.819996px;}
.x1{left:140.939999px;}
.x6{left:144.539996px;}
.x13{left:174.060001px;}
.x20{left:180.900003px;}
.x2{left:202.860008px;}
.x17{left:210.960005px;}
.x14{left:224.639992px;}
.x16{left:257.039996px;}
.x1a{left:259.919992px;}
.x3{left:263.159998px;}
.x5{left:267.840002px;}
.x4{left:294.660015px;}
.xd{left:305.100013px;}
.xa{left:308.339985px;}
.x1c{left:324.720017px;}
.x9{left:330.839985px;}
.x19{left:332.639992px;}
.x1b{left:336.959988px;}
.x12{left:338.759994px;}
.x1f{left:350.279983px;}
.x8{left:353.879998px;}
.x10{left:360.360008px;}
.xc{left:363.600014px;}
.x22{left:369.180005px;}
.x7{left:370.800007px;}
.x1d{left:386.639992px;}
.x15{left:395.279983px;}
.x11{left:418.319996px;}
.xb{left:419.579990px;}
.x18{left:469.259994px;}
.x1e{left:489.420010px;}
.xe{left:524.879998px;}
.x21{left:803.159981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.083823pt;}
.ws1{word-spacing:-70.402800pt;}
.ws3{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.120800pt;}
.ws4{word-spacing:-14.080500pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-11.084872pt;}
._8{margin-left:-9.539671pt;}
._1f{margin-left:-8.461191pt;}
._4{margin-left:-6.944536pt;}
._6{margin-left:-5.237958pt;}
._2{margin-left:-3.464471pt;}
._7{margin-left:-2.223624pt;}
._3{margin-left:-0.999608pt;}
._0{width:0.946228pt;}
._17{width:2.715590pt;}
._19{width:3.832105pt;}
._15{width:4.730399pt;}
._16{width:5.704844pt;}
._1e{width:6.681268pt;}
._18{width:7.775095pt;}
._20{width:9.293152pt;}
._21{width:10.199531pt;}
._d{width:11.107808pt;}
._1d{width:12.095698pt;}
._1c{width:12.987891pt;}
._1b{width:13.983042pt;}
._23{width:15.160610pt;}
._f{width:16.193631pt;}
._e{width:17.741472pt;}
._12{width:19.177686pt;}
._13{width:20.126472pt;}
._27{width:23.263119pt;}
._11{width:24.462259pt;}
._10{width:25.357088pt;}
._14{width:26.825727pt;}
._2d{width:30.859304pt;}
._c{width:38.607420pt;}
._b{width:39.693573pt;}
._9{width:41.424489pt;}
._a{width:42.568477pt;}
._1a{width:54.914080pt;}
._2e{width:74.345216pt;}
._25{width:116.504694pt;}
._26{width:120.304077pt;}
._24{width:121.320237pt;}
._28{width:125.035796pt;}
._2a{width:180.794048pt;}
._2b{width:181.807186pt;}
._2f{width:998.027712pt;}
._22{width:1450.837134pt;}
._2c{width:1454.677222pt;}
._1{width:1478.997290pt;}
._29{width:1578.858507pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs2{font-size:84.483200pt;}
.fs4{font-size:91.523596pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760010pt;}
.y20{bottom:36.480103pt;}
.y4b{bottom:88.800049pt;}
.y91{bottom:91.040039pt;}
.yaa{bottom:102.880066pt;}
.y55{bottom:107.840088pt;}
.y1e{bottom:108.320069pt;}
.y63{bottom:110.400086pt;}
.y73{bottom:110.720032pt;}
.y90{bottom:112.160035pt;}
.y4a{bottom:114.240052pt;}
.ya9{bottom:128.320069pt;}
.y54{bottom:133.280030pt;}
.y1d{bottom:133.600037pt;}
.y62{bottom:135.680054pt;}
.y72{bottom:136.000061pt;}
.y49{bottom:139.520081pt;}
.y8f{bottom:154.400086pt;}
.y57{bottom:158.720032pt;}
.y28{bottom:159.040039pt;}
.y71{bottom:161.440064pt;}
.y8e{bottom:175.520081pt;}
.ya8{bottom:178.240052pt;}
.y53{bottom:184.000061pt;}
.y1c{bottom:184.320069pt;}
.y48{bottom:189.600037pt;}
.y8d{bottom:196.640076pt;}
.ya7{bottom:202.880066pt;}
.y52{bottom:209.440064pt;}
.y27{bottom:209.760071pt;}
.y47{bottom:214.240052pt;}
.y8c{bottom:217.760071pt;}
.ya6{bottom:227.680054pt;}
.y51{bottom:234.720032pt;}
.y1b{bottom:235.040039pt;}
.y70{bottom:237.440064pt;}
.ya5{bottom:252.320069pt;}
.y50{bottom:260.160035pt;}
.y1a{bottom:260.480042pt;}
.y6f{bottom:262.880066pt;}
.y46{bottom:263.520081pt;}
.y8b{bottom:281.280030pt;}
.y4f{bottom:285.440064pt;}
.y19{bottom:285.760071pt;}
.y61{bottom:287.840088pt;}
.y45{bottom:288.160035pt;}
.ya4{bottom:301.600037pt;}
.y8a{bottom:302.400086pt;}
.y4e{bottom:310.880066pt;}
.y18{bottom:311.200074pt;}
.y44{bottom:312.960083pt;}
.y6e{bottom:313.600037pt;}
.y89{bottom:323.520081pt;}
.ya3{bottom:326.240052pt;}
.y56{bottom:336.160035pt;}
.y17{bottom:336.480042pt;}
.y43{bottom:337.600037pt;}
.y60{bottom:338.560059pt;}
.y6d{bottom:338.880066pt;}
.y88{bottom:344.640076pt;}
.ya2{bottom:350.880066pt;}
.y4d{bottom:361.600037pt;}
.y16{bottom:361.920044pt;}
.y42{bottom:362.240052pt;}
.y6c{bottom:364.320069pt;}
.y87{bottom:365.760071pt;}
.ya1{bottom:375.520081pt;}
.y41{bottom:386.880066pt;}
.y15{bottom:387.200074pt;}
.y5f{bottom:389.280030pt;}
.y6b{bottom:389.600037pt;}
.y86{bottom:408.000061pt;}
.y40{bottom:412.320069pt;}
.y14{bottom:412.640076pt;}
.y5e{bottom:414.720032pt;}
.y6a{bottom:415.040039pt;}
.ya0{bottom:424.800049pt;}
.y85{bottom:429.120057pt;}
.y3f{bottom:437.600037pt;}
.y13{bottom:437.920044pt;}
.y5d{bottom:440.000061pt;}
.y69{bottom:440.320069pt;}
.y9f{bottom:449.600037pt;}
.y3e{bottom:463.040039pt;}
.y12{bottom:463.360047pt;}
.y5c{bottom:465.440064pt;}
.y68{bottom:465.760071pt;}
.y84{bottom:471.360047pt;}
.y9e{bottom:474.240052pt;}
.y3d{bottom:488.320069pt;}
.y11{bottom:488.640076pt;}
.y5b{bottom:490.720032pt;}
.y83{bottom:492.480042pt;}
.y3c{bottom:513.760071pt;}
.y10{bottom:514.080079pt;}
.y5a{bottom:516.160035pt;}
.y67{bottom:516.480042pt;}
.y9d{bottom:523.520081pt;}
.y82{bottom:534.880066pt;}
.y3b{bottom:539.040039pt;}
.y26{bottom:539.360047pt;}
.y66{bottom:541.760071pt;}
.y9c{bottom:548.160035pt;}
.y81{bottom:556.000061pt;}
.y3a{bottom:564.480042pt;}
.yf{bottom:564.800049pt;}
.y59{bottom:566.880066pt;}
.y9b{bottom:572.800049pt;}
.y39{bottom:589.760071pt;}
.ye{bottom:590.080079pt;}
.y9a{bottom:597.440064pt;}
.y80{bottom:598.240052pt;}
.y38{bottom:615.200074pt;}
.yd{bottom:615.520050pt;}
.y65{bottom:617.920044pt;}
.y7f{bottom:619.360047pt;}
.y37{bottom:640.480072pt;}
.yc{bottom:640.800049pt;}
.y58{bottom:642.880066pt;}
.y99{bottom:646.720063pt;}
.y7e{bottom:661.600068pt;}
.y4c{bottom:665.920044pt;}
.y25{bottom:666.240052pt;}
.y98{bottom:671.520050pt;}
.y36{bottom:691.200074pt;}
.y24{bottom:691.520050pt;}
.y97{bottom:696.160065pt;}
.y7d{bottom:703.840058pt;}
.y35{bottom:716.640046pt;}
.yb{bottom:716.960053pt;}
.y96{bottom:720.800049pt;}
.y7c{bottom:724.960053pt;}
.y34{bottom:741.920044pt;}
.ya{bottom:742.240052pt;}
.y95{bottom:745.440064pt;}
.y7b{bottom:746.240052pt;}
.y33{bottom:767.360047pt;}
.y9{bottom:767.680054pt;}
.y7a{bottom:788.480072pt;}
.y32{bottom:792.640046pt;}
.y8{bottom:792.960053pt;}
.y94{bottom:794.720063pt;}
.y31{bottom:818.080048pt;}
.y7{bottom:818.400055pt;}
.y93{bottom:819.360047pt;}
.y79{bottom:830.720063pt;}
.y30{bottom:843.360047pt;}
.y6{bottom:843.680054pt;}
.y78{bottom:851.840058pt;}
.y2f{bottom:868.800064pt;}
.y5{bottom:869.120057pt;}
.y2e{bottom:894.080063pt;}
.y23{bottom:894.400055pt;}
.y77{bottom:915.200058pt;}
.y2d{bottom:919.520066pt;}
.y22{bottom:919.840058pt;}
.y92{bottom:936.320054pt;}
.y2c{bottom:944.800064pt;}
.y4{bottom:945.120057pt;}
.y76{bottom:957.440064pt;}
.y2b{bottom:970.240052pt;}
.y21{bottom:970.560059pt;}
.y1f{bottom:973.600052pt;}
.y75{bottom:978.720063pt;}
.y2a{bottom:995.520058pt;}
.y3{bottom:995.840058pt;}
.y74{bottom:999.840058pt;}
.y29{bottom:1020.960061pt;}
.y2{bottom:1021.280060pt;}
.y64{bottom:1023.680062pt;}
.h5{height:49.158205pt;}
.h7{height:49.419255pt;}
.h6{height:51.141625pt;}
.h8{height:57.257169pt;}
.h9{height:58.659722pt;}
.h2{height:60.299627pt;}
.hb{height:61.774332pt;}
.ha{height:62.530612pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.hc{height:81.289756pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:79.839996pt;}
.x1{left:125.279999pt;}
.x6{left:128.479996pt;}
.x13{left:154.720001pt;}
.x20{left:160.800003pt;}
.x2{left:180.320007pt;}
.x17{left:187.520004pt;}
.x14{left:199.679993pt;}
.x16{left:228.479996pt;}
.x1a{left:231.039993pt;}
.x3{left:233.919998pt;}
.x5{left:238.080002pt;}
.x4{left:261.920013pt;}
.xd{left:271.200012pt;}
.xa{left:274.079987pt;}
.x1c{left:288.640015pt;}
.x9{left:294.079987pt;}
.x19{left:295.679993pt;}
.x1b{left:299.519989pt;}
.x12{left:301.119995pt;}
.x1f{left:311.359985pt;}
.x8{left:314.559998pt;}
.x10{left:320.320007pt;}
.xc{left:323.200012pt;}
.x22{left:328.160004pt;}
.x7{left:329.600006pt;}
.x1d{left:343.679993pt;}
.x15{left:351.359985pt;}
.x11{left:371.839996pt;}
.xb{left:372.959991pt;}
.x18{left:417.119995pt;}
.x1e{left:435.040009pt;}
.xe{left:466.559998pt;}
.x21{left:713.919983pt;}
}




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