
    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_2b3ab3fb5f579f76b5588d71.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.097168;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_4540bbee8dc3425486477c5a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_351b9460efde3ae21635025d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_da9cd92231081469ea9d3171.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_798455ebbb741515b24a5e1a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_8e66745ca49cdda697dbd384.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-1.440031px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759996px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.055375px;}
.ls1{letter-spacing:0.179690px;}
.ls0{letter-spacing:0.719202px;}
.ls6{letter-spacing:6.130750px;}
.ls4{letter-spacing:34.055251px;}
.ls2{letter-spacing:194.399342px;}
.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:-18.000676px;}
.ws3{word-spacing:-15.026225px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._27{margin-left:-4.985906px;}
._8{margin-left:-3.528695px;}
._10{margin-left:-2.398590px;}
._1{margin-left:-1.380099px;}
._0{width:1.151997px;}
._7{width:3.136618px;}
._16{width:4.517888px;}
._12{width:6.204936px;}
._11{width:7.334150px;}
._13{width:8.632449px;}
._b{width:10.439830px;}
._a{width:11.628437px;}
._f{width:13.205511px;}
._42{width:14.272051px;}
._18{width:15.309856px;}
._6{width:16.798850px;}
._e{width:19.574723px;}
._5{width:21.010727px;}
._4{width:22.422374px;}
._14{width:23.847802px;}
._15{width:25.474659px;}
._25{width:26.912698px;}
._c{width:28.183434px;}
._28{width:29.186971px;}
._26{width:30.805391px;}
._45{width:32.028454px;}
._1a{width:33.133338px;}
._3{width:34.344165px;}
._1f{width:35.546928px;}
._44{width:36.938982px;}
._24{width:38.343972px;}
._23{width:39.382385px;}
._2{width:41.850447px;}
._1b{width:46.369742px;}
._1c{width:47.520097px;}
._43{width:48.560527px;}
._9{width:49.685287px;}
._19{width:51.924919px;}
._20{width:55.546010px;}
._17{width:56.905011px;}
._1d{width:65.338517px;}
._21{width:68.690580px;}
._22{width:70.009503px;}
._3d{width:78.482948px;}
._1e{width:80.184058px;}
._41{width:84.243164px;}
._3e{width:91.443435px;}
._3b{width:95.273360px;}
._36{width:96.483624px;}
._46{width:97.626617px;}
._40{width:101.784261px;}
._3c{width:102.963867px;}
._35{width:113.764273px;}
._37{width:118.084435px;}
._38{width:120.244517px;}
._34{width:131.764949px;}
._39{width:133.859351px;}
._2f{width:146.885517px;}
._31{width:153.366323px;}
._32{width:161.286621px;}
._33{width:164.166166px;}
._30{width:169.927508px;}
._29{width:172.093777px;}
._3a{width:188.647648px;}
._d{width:194.407302px;}
._2e{width:219.811600px;}
._3f{width:237.490795px;}
._2d{width:253.521523px;}
._2c{width:266.471040px;}
._2a{width:302.352857px;}
._2b{width:314.523001px;}
._47{width:848.691922px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y7e{bottom:4.319961px;}
.y78{bottom:4.320030px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y93{bottom:121.500068px;}
.y6f{bottom:126.720085px;}
.y3c{bottom:133.560036px;}
.y92{bottom:142.200096px;}
.y6e{bottom:147.420043px;}
.y3b{bottom:154.260064px;}
.y91{bottom:162.900055px;}
.y6d{bottom:168.120072px;}
.y3a{bottom:174.960091px;}
.y98{bottom:181.980079px;}
.y90{bottom:183.600083px;}
.y6c{bottom:188.820099px;}
.y39{bottom:195.660049px;}
.y8f{bottom:204.300041px;}
.y97{bottom:206.280052px;}
.y6b{bottom:209.520058px;}
.y38{bottom:216.360077px;}
.y8e{bottom:225.000068px;}
.y96{bottom:230.040047px;}
.y6a{bottom:230.220085px;}
.y37{bottom:237.060036px;}
.y8d{bottom:245.700096px;}
.y69{bottom:250.920043px;}
.y36{bottom:257.760064px;}
.y8c{bottom:266.400055px;}
.y68{bottom:271.620072px;}
.y35{bottom:278.460091px;}
.y8b{bottom:287.100083px;}
.y67{bottom:292.320099px;}
.y34{bottom:299.160049px;}
.y8a{bottom:307.800041px;}
.y66{bottom:313.020058px;}
.y33{bottom:319.860077px;}
.y89{bottom:328.500068px;}
.y65{bottom:333.720085px;}
.y32{bottom:340.560036px;}
.y88{bottom:349.200096px;}
.y64{bottom:354.420043px;}
.y31{bottom:361.260064px;}
.y87{bottom:369.900055px;}
.y63{bottom:375.120072px;}
.y30{bottom:381.960091px;}
.y86{bottom:390.600083px;}
.y62{bottom:395.820099px;}
.y2f{bottom:402.660049px;}
.y85{bottom:411.300041px;}
.y61{bottom:416.520058px;}
.y2e{bottom:423.360077px;}
.y84{bottom:432.000068px;}
.y60{bottom:437.220085px;}
.y2d{bottom:444.060036px;}
.y83{bottom:452.700096px;}
.y5f{bottom:457.920043px;}
.y2c{bottom:464.760064px;}
.y82{bottom:473.400055px;}
.y5e{bottom:478.620072px;}
.y2b{bottom:485.460091px;}
.y81{bottom:494.100083px;}
.y5d{bottom:499.320099px;}
.y2a{bottom:506.160049px;}
.y80{bottom:514.800041px;}
.y5c{bottom:520.020058px;}
.y29{bottom:526.860077px;}
.y7f{bottom:535.500068px;}
.y5b{bottom:540.720085px;}
.y28{bottom:547.560036px;}
.y7d{bottom:552.600083px;}
.y7c{bottom:556.920043px;}
.y5a{bottom:561.420043px;}
.y27{bottom:568.260064px;}
.y7b{bottom:574.020058px;}
.y7a{bottom:578.340088px;}
.y59{bottom:582.120072px;}
.y26{bottom:588.960091px;}
.y79{bottom:599.760064px;}
.y58{bottom:602.820099px;}
.y25{bottom:609.660049px;}
.y77{bottom:616.140060px;}
.y76{bottom:620.460091px;}
.y57{bottom:623.520058px;}
.y24{bottom:630.360077px;}
.y75{bottom:641.880066px;}
.y56{bottom:644.220085px;}
.y23{bottom:651.060036px;}
.y74{bottom:663.300041px;}
.y55{bottom:664.920043px;}
.y22{bottom:671.760064px;}
.y73{bottom:684.900055px;}
.y54{bottom:685.620072px;}
.y21{bottom:692.460056px;}
.y72{bottom:705.960056px;}
.y53{bottom:706.320065px;}
.y20{bottom:713.160049px;}
.y71{bottom:726.660049px;}
.y52{bottom:727.020058px;}
.y1f{bottom:733.140060px;}
.y70{bottom:747.360077px;}
.y51{bottom:747.720051px;}
.y1e{bottom:750.420078px;}
.y1d{bottom:767.700061px;}
.y50{bottom:768.420078px;}
.y1c{bottom:785.700061px;}
.y4f{bottom:789.120072px;}
.y1b{bottom:806.400055px;}
.y95{bottom:809.460056px;}
.y4e{bottom:809.820065px;}
.y1a{bottom:827.100083px;}
.y94{bottom:830.160049px;}
.y4d{bottom:830.520058px;}
.y19{bottom:847.800076px;}
.y4c{bottom:851.220051px;}
.y18{bottom:868.140060px;}
.y4b{bottom:871.920078px;}
.y17{bottom:889.200061px;}
.y4a{bottom:892.620072px;}
.y16{bottom:909.540081px;}
.y49{bottom:913.320065px;}
.y15{bottom:930.600083px;}
.y48{bottom:934.020058px;}
.y14{bottom:950.940067px;}
.y47{bottom:954.720051px;}
.y13{bottom:972.000068px;}
.y46{bottom:975.420061px;}
.y12{bottom:992.340070px;}
.y45{bottom:996.120072px;}
.y11{bottom:1013.400072px;}
.y44{bottom:1016.820065px;}
.y10{bottom:1033.740074px;}
.y43{bottom:1037.520058px;}
.yf{bottom:1054.440067px;}
.y42{bottom:1058.220068px;}
.ye{bottom:1075.140060px;}
.y41{bottom:1078.920061px;}
.yd{bottom:1095.840070px;}
.y40{bottom:1099.620072px;}
.yc{bottom:1116.540064px;}
.y3f{bottom:1120.320065px;}
.yb{bottom:1137.060070px;}
.y3e{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y3d{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.hd{height:20.519989px;}
.h6{height:42.517797px;}
.h4{height:47.982689px;}
.ha{height:52.630883px;}
.hc{height:52.671319px;}
.h9{height:58.431882px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.hb{height:62.909347px;}
.h2{height:63.459415px;}
.he{height:65.886904px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w5{width:7.739997px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x12{left:94.140000px;}
.x18{left:102.780001px;}
.xa{left:106.379998px;}
.x1b{left:109.260003px;}
.xb{left:110.519998px;}
.x21{left:111.959997px;}
.x16{left:120.239997px;}
.x1c{left:122.760003px;}
.x8{left:126.896164px;}
.x1d{left:136.439999px;}
.x14{left:138.060001px;}
.x1e{left:281.699993px;}
.x1a{left:285.659998px;}
.x19{left:299.339985px;}
.x17{left:369.180005px;}
.x20{left:390.959988px;}
.x2{left:432.899987px;}
.x9{left:446.399987px;}
.x1f{left:472.860008px;}
.xd{left:522.360008px;}
.x10{left:623.700027px;}
.x11{left:626.759994px;}
.xf{left:638.639992px;}
.xc{left:645.840019px;}
.xe{left:652.500000px;}
.x15{left:729.000000px;}
.x6{left:746.279983px;}
.x13{left:749.340019px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x4{left:812.879998px;}
@media print{
.v2{vertical-align:-1.280028pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119996pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.049222pt;}
.ls1{letter-spacing:0.159724pt;}
.ls0{letter-spacing:0.639291pt;}
.ls6{letter-spacing:5.449555pt;}
.ls4{letter-spacing:30.271334pt;}
.ls2{letter-spacing:172.799415pt;}
.ws1{word-spacing:-16.000601pt;}
.ws3{word-spacing:-13.356644pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._27{margin-left:-4.431917pt;}
._8{margin-left:-3.136618pt;}
._10{margin-left:-2.132080pt;}
._1{margin-left:-1.226755pt;}
._0{width:1.023997pt;}
._7{width:2.788105pt;}
._16{width:4.015901pt;}
._12{width:5.515498pt;}
._11{width:6.519245pt;}
._13{width:7.673288pt;}
._b{width:9.279849pt;}
._a{width:10.336388pt;}
._f{width:11.738232pt;}
._42{width:12.686268pt;}
._18{width:13.608761pt;}
._6{width:14.932311pt;}
._e{width:17.399754pt;}
._5{width:18.676202pt;}
._4{width:19.930999pt;}
._14{width:21.198046pt;}
._15{width:22.644142pt;}
._25{width:23.922399pt;}
._c{width:25.051941pt;}
._28{width:25.943974pt;}
._26{width:27.382570pt;}
._45{width:28.469737pt;}
._1a{width:29.451856pt;}
._3{width:30.528147pt;}
._1f{width:31.597269pt;}
._44{width:32.834651pt;}
._24{width:34.083530pt;}
._23{width:35.006565pt;}
._2{width:37.200397pt;}
._1b{width:41.217548pt;}
._1c{width:42.240087pt;}
._43{width:43.164912pt;}
._9{width:44.164700pt;}
._19{width:46.155484pt;}
._20{width:49.374231pt;}
._17{width:50.582232pt;}
._1d{width:58.078682pt;}
._21{width:61.058293pt;}
._22{width:62.230670pt;}
._3d{width:69.762620pt;}
._1e{width:71.274718pt;}
._41{width:74.882813pt;}
._3e{width:81.283053pt;}
._3b{width:84.687431pt;}
._36{width:85.763221pt;}
._46{width:86.779215pt;}
._40{width:90.474898pt;}
._3c{width:91.523438pt;}
._35{width:101.123798pt;}
._37{width:104.963943pt;}
._38{width:106.884015pt;}
._34{width:117.124399pt;}
._39{width:118.986090pt;}
._2f{width:130.564904pt;}
._31{width:136.325621pt;}
._32{width:143.365885pt;}
._33{width:145.925481pt;}
._30{width:151.046674pt;}
._29{width:152.972246pt;}
._3a{width:167.686799pt;}
._d{width:172.806491pt;}
._2e{width:195.388089pt;}
._3f{width:211.102929pt;}
._2d{width:225.352465pt;}
._2c{width:236.863147pt;}
._2a{width:268.758095pt;}
._2b{width:279.576001pt;}
._47{width:754.392820pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y7e{bottom:3.839965pt;}
.y78{bottom:3.840027pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y93{bottom:108.000061pt;}
.y6f{bottom:112.640076pt;}
.y3c{bottom:118.720032pt;}
.y92{bottom:126.400086pt;}
.y6e{bottom:131.040039pt;}
.y3b{bottom:137.120057pt;}
.y91{bottom:144.800049pt;}
.y6d{bottom:149.440064pt;}
.y3a{bottom:155.520081pt;}
.y98{bottom:161.760071pt;}
.y90{bottom:163.200074pt;}
.y6c{bottom:167.840088pt;}
.y39{bottom:173.920044pt;}
.y8f{bottom:181.600037pt;}
.y97{bottom:183.360047pt;}
.y6b{bottom:186.240052pt;}
.y38{bottom:192.320069pt;}
.y8e{bottom:200.000061pt;}
.y96{bottom:204.480042pt;}
.y6a{bottom:204.640076pt;}
.y37{bottom:210.720032pt;}
.y8d{bottom:218.400086pt;}
.y69{bottom:223.040039pt;}
.y36{bottom:229.120057pt;}
.y8c{bottom:236.800049pt;}
.y68{bottom:241.440064pt;}
.y35{bottom:247.520081pt;}
.y8b{bottom:255.200074pt;}
.y67{bottom:259.840088pt;}
.y34{bottom:265.920044pt;}
.y8a{bottom:273.600037pt;}
.y66{bottom:278.240052pt;}
.y33{bottom:284.320069pt;}
.y89{bottom:292.000061pt;}
.y65{bottom:296.640076pt;}
.y32{bottom:302.720032pt;}
.y88{bottom:310.400086pt;}
.y64{bottom:315.040039pt;}
.y31{bottom:321.120057pt;}
.y87{bottom:328.800049pt;}
.y63{bottom:333.440064pt;}
.y30{bottom:339.520081pt;}
.y86{bottom:347.200074pt;}
.y62{bottom:351.840088pt;}
.y2f{bottom:357.920044pt;}
.y85{bottom:365.600037pt;}
.y61{bottom:370.240052pt;}
.y2e{bottom:376.320069pt;}
.y84{bottom:384.000061pt;}
.y60{bottom:388.640076pt;}
.y2d{bottom:394.720032pt;}
.y83{bottom:402.400086pt;}
.y5f{bottom:407.040039pt;}
.y2c{bottom:413.120057pt;}
.y82{bottom:420.800049pt;}
.y5e{bottom:425.440064pt;}
.y2b{bottom:431.520081pt;}
.y81{bottom:439.200074pt;}
.y5d{bottom:443.840088pt;}
.y2a{bottom:449.920044pt;}
.y80{bottom:457.600037pt;}
.y5c{bottom:462.240052pt;}
.y29{bottom:468.320069pt;}
.y7f{bottom:476.000061pt;}
.y5b{bottom:480.640076pt;}
.y28{bottom:486.720032pt;}
.y7d{bottom:491.200074pt;}
.y7c{bottom:495.040039pt;}
.y5a{bottom:499.040039pt;}
.y27{bottom:505.120057pt;}
.y7b{bottom:510.240052pt;}
.y7a{bottom:514.080079pt;}
.y59{bottom:517.440064pt;}
.y26{bottom:523.520081pt;}
.y79{bottom:533.120057pt;}
.y58{bottom:535.840088pt;}
.y25{bottom:541.920044pt;}
.y77{bottom:547.680054pt;}
.y76{bottom:551.520081pt;}
.y57{bottom:554.240052pt;}
.y24{bottom:560.320069pt;}
.y75{bottom:570.560059pt;}
.y56{bottom:572.640076pt;}
.y23{bottom:578.720032pt;}
.y74{bottom:589.600037pt;}
.y55{bottom:591.040039pt;}
.y22{bottom:597.120057pt;}
.y73{bottom:608.800049pt;}
.y54{bottom:609.440064pt;}
.y21{bottom:615.520050pt;}
.y72{bottom:627.520050pt;}
.y53{bottom:627.840058pt;}
.y20{bottom:633.920044pt;}
.y71{bottom:645.920044pt;}
.y52{bottom:646.240052pt;}
.y1f{bottom:651.680054pt;}
.y70{bottom:664.320069pt;}
.y51{bottom:664.640046pt;}
.y1e{bottom:667.040070pt;}
.y1d{bottom:682.400055pt;}
.y50{bottom:683.040070pt;}
.y1c{bottom:698.400055pt;}
.y4f{bottom:701.440064pt;}
.y1b{bottom:716.800049pt;}
.y95{bottom:719.520050pt;}
.y4e{bottom:719.840058pt;}
.y1a{bottom:735.200074pt;}
.y94{bottom:737.920044pt;}
.y4d{bottom:738.240052pt;}
.y19{bottom:753.600068pt;}
.y4c{bottom:756.640046pt;}
.y18{bottom:771.680054pt;}
.y4b{bottom:775.040070pt;}
.y17{bottom:790.400055pt;}
.y4a{bottom:793.440064pt;}
.y16{bottom:808.480072pt;}
.y49{bottom:811.840058pt;}
.y15{bottom:827.200074pt;}
.y48{bottom:830.240052pt;}
.y14{bottom:845.280060pt;}
.y47{bottom:848.640046pt;}
.y13{bottom:864.000061pt;}
.y46{bottom:867.040055pt;}
.y12{bottom:882.080063pt;}
.y45{bottom:885.440064pt;}
.y11{bottom:900.800064pt;}
.y44{bottom:903.840058pt;}
.y10{bottom:918.880066pt;}
.y43{bottom:922.240052pt;}
.yf{bottom:937.280060pt;}
.y42{bottom:940.640061pt;}
.ye{bottom:955.680054pt;}
.y41{bottom:959.040055pt;}
.yd{bottom:974.080063pt;}
.y40{bottom:977.440064pt;}
.yc{bottom:992.480057pt;}
.y3f{bottom:995.840058pt;}
.yb{bottom:1010.720063pt;}
.y3e{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y3d{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.hd{height:18.239990pt;}
.h6{height:37.793598pt;}
.h4{height:42.651279pt;}
.ha{height:46.783007pt;}
.hc{height:46.818950pt;}
.h9{height:51.939451pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.hb{height:55.919419pt;}
.h2{height:56.408369pt;}
.he{height:58.566137pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w5{width:6.879997pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x12{left:83.680000pt;}
.x18{left:91.360001pt;}
.xa{left:94.559998pt;}
.x1b{left:97.120003pt;}
.xb{left:98.239998pt;}
.x21{left:99.519997pt;}
.x16{left:106.879997pt;}
.x1c{left:109.120003pt;}
.x8{left:112.796590pt;}
.x1d{left:121.279999pt;}
.x14{left:122.720001pt;}
.x1e{left:250.399994pt;}
.x1a{left:253.919998pt;}
.x19{left:266.079987pt;}
.x17{left:328.160004pt;}
.x20{left:347.519989pt;}
.x2{left:384.799988pt;}
.x9{left:396.799988pt;}
.x1f{left:420.320007pt;}
.xd{left:464.320007pt;}
.x10{left:554.400024pt;}
.x11{left:557.119995pt;}
.xf{left:567.679993pt;}
.xc{left:574.080017pt;}
.xe{left:580.000000pt;}
.x15{left:648.000000pt;}
.x6{left:663.359985pt;}
.x13{left:666.080017pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x4{left:722.559998pt;}
}




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