
    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_954a841179818df3c3ee7cde.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991699;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_a2d770c43927ca57ca60bea8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_6efa00a6c6fef42ff952ec58.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_fa59147ff6e6815a599e0fda.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.725586;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_10d9f5c40eb06973e10df627.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_7f8e27657c3184f1a2a85ef2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ec1e336db75d4fa11848de75.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_57897532ddb36cf3371e723d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fa6e2ecd20d2d137e9d15705.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.891113;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:16.933247px;}
.ls2{letter-spacing:32.053252px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0{word-spacing:-16.558425px;}
.ws1{word-spacing:0.000000px;}
._44{margin-left:-2.158984px;}
._0{margin-left:-1.078704px;}
._2{width:1.025906px;}
._c{width:2.327770px;}
._12{width:3.391078px;}
._8{width:4.412381px;}
._17{width:5.627614px;}
._13{width:6.757648px;}
._1a{width:8.079994px;}
._19{width:9.263663px;}
._1e{width:10.409299px;}
._4{width:11.634105px;}
._5{width:13.048375px;}
._9{width:14.836349px;}
._10{width:18.401843px;}
._30{width:19.407690px;}
._1d{width:20.463962px;}
._23{width:21.915119px;}
._7{width:23.266217px;}
._6{width:24.771404px;}
._28{width:26.235031px;}
._d{width:27.318038px;}
._18{width:29.468201px;}
._14{width:31.197366px;}
._16{width:32.366546px;}
._2a{width:34.171415px;}
._a{width:35.699188px;}
._b{width:37.271860px;}
._31{width:39.598697px;}
._2d{width:41.063057px;}
._24{width:42.190867px;}
._1b{width:43.427574px;}
._1c{width:44.585888px;}
._2c{width:46.013095px;}
._35{width:47.570803px;}
._42{width:49.277873px;}
._3b{width:50.409098px;}
._3a{width:51.624072px;}
._3{width:53.048537px;}
._37{width:55.520218px;}
._33{width:56.560993px;}
._e{width:58.005974px;}
._f{width:59.649631px;}
._29{width:60.808229px;}
._34{width:64.699976px;}
._3d{width:66.106925px;}
._43{width:67.818910px;}
._39{width:69.481221px;}
._41{width:78.076933px;}
._40{width:79.159879px;}
._2e{width:80.469288px;}
._2f{width:81.801026px;}
._32{width:83.109659px;}
._36{width:84.438956px;}
._26{width:87.106190px;}
._27{width:88.113969px;}
._2b{width:92.007406px;}
._21{width:96.463692px;}
._22{width:97.557919px;}
._38{width:100.110168px;}
._3e{width:105.711572px;}
._3f{width:107.404353px;}
._25{width:109.327519px;}
._20{width:113.551806px;}
._1f{width:114.656822px;}
._3c{width:116.637287px;}
._11{width:131.055794px;}
._15{width:897.117746px;}
._1{width:941.037723px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,102,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.235500px;}
.fs2{font-size:53.995050px;}
.fs0{font-size:59.754600px;}
.fs4{font-size:66.233700px;}
.fs3{font-size:84.232350px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.980010px;}
.y5{bottom:71.100013px;}
.y4{bottom:85.860008px;}
.y43{bottom:111.420043px;}
.y6a{bottom:113.220016px;}
.y32{bottom:114.480010px;}
.y2a{bottom:115.560035px;}
.y42{bottom:129.420043px;}
.y69{bottom:131.220016px;}
.y31{bottom:133.379997px;}
.y29{bottom:134.639991px;}
.y41{bottom:147.420043px;}
.y68{bottom:149.399986px;}
.y30{bottom:152.460022px;}
.y28{bottom:153.539978px;}
.y40{bottom:165.420043px;}
.y67{bottom:167.399986px;}
.y2f{bottom:171.360008px;}
.y27{bottom:172.440033px;}
.y3f{bottom:183.420043px;}
.y66{bottom:185.399986px;}
.y2e{bottom:190.259994px;}
.y3e{bottom:201.420043px;}
.y65{bottom:203.399986px;}
.y26{bottom:209.159980px;}
.y2d{bottom:209.340018px;}
.y6b{bottom:217.980010px;}
.y3d{bottom:219.600013px;}
.y64{bottom:221.399986px;}
.y25{bottom:224.639991px;}
.y2c{bottom:228.240005px;}
.y3c{bottom:237.600013px;}
.y63{bottom:239.399986px;}
.y24{bottom:247.320030px;}
.y3b{bottom:255.600013px;}
.y62{bottom:257.399986px;}
.y23{bottom:266.220016px;}
.y3a{bottom:273.600013px;}
.y61{bottom:275.580024px;}
.y22{bottom:285.300041px;}
.y39{bottom:291.600013px;}
.y60{bottom:293.580024px;}
.y21{bottom:304.200027px;}
.y38{bottom:309.600013px;}
.y5f{bottom:311.580024px;}
.y20{bottom:323.100013px;}
.y37{bottom:327.600013px;}
.y5e{bottom:329.580024px;}
.y1f{bottom:342.180004px;}
.y36{bottom:345.780017px;}
.y5d{bottom:347.580024px;}
.y1e{bottom:361.080024px;}
.y35{bottom:363.780017px;}
.y5c{bottom:365.580024px;}
.y2b{bottom:376.560000px;}
.y1d{bottom:380.160015px;}
.y34{bottom:381.780017px;}
.y5b{bottom:383.580024px;}
.y1c{bottom:399.060000px;}
.y33{bottom:399.780017px;}
.y5a{bottom:401.580024px;}
.y1b{bottom:417.960022px;}
.y59{bottom:419.759994px;}
.y1a{bottom:437.040012px;}
.y58{bottom:437.759994px;}
.y57{bottom:455.759994px;}
.y19{bottom:455.939998px;}
.y56{bottom:473.759994px;}
.y18{bottom:475.020023px;}
.y55{bottom:491.759994px;}
.y17{bottom:493.920009px;}
.y54{bottom:509.759994px;}
.y16{bottom:512.819996px;}
.y53{bottom:527.759994px;}
.y15{bottom:531.900021px;}
.y52{bottom:545.939998px;}
.y14{bottom:550.800006px;}
.y51{bottom:563.939998px;}
.y13{bottom:569.879997px;}
.y50{bottom:581.939998px;}
.y12{bottom:588.780017px;}
.y4f{bottom:599.939998px;}
.y11{bottom:607.680004px;}
.y4e{bottom:617.940015px;}
.y10{bottom:626.760012px;}
.y4d{bottom:635.940015px;}
.yf{bottom:645.660015px;}
.y4c{bottom:653.940015px;}
.ye{bottom:664.740005px;}
.y4b{bottom:672.120003px;}
.yd{bottom:683.640008px;}
.y4a{bottom:690.120003px;}
.yc{bottom:702.540012px;}
.y49{bottom:708.120003px;}
.yb{bottom:721.620003px;}
.y48{bottom:726.120003px;}
.ya{bottom:740.520006px;}
.y47{bottom:744.120003px;}
.y9{bottom:759.600013px;}
.y46{bottom:762.120010px;}
.y8{bottom:778.500008px;}
.y45{bottom:780.120010px;}
.y7{bottom:797.580007px;}
.y44{bottom:798.300006px;}
.y3{bottom:815.940007px;}
.y2{bottom:833.400012px;}
.y1{bottom:848.340010px;}
.h3{height:37.895957px;}
.h4{height:40.651598px;}
.h9{height:45.988438px;}
.h7{height:46.441208px;}
.h6{height:46.732274px;}
.h2{height:46.945875px;}
.h8{height:48.219945px;}
.h5{height:70.988787px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.279985px;}
.x0{left:0.000000px;}
.x6{left:63.899999px;}
.x18{left:85.140000px;}
.x11{left:98.640000px;}
.x8{left:104.939999px;}
.x13{left:106.739997px;}
.x16{left:108.540003px;}
.x4{left:112.140000px;}
.x7{left:117.000000px;}
.x10{left:130.319996px;}
.xa{left:135.900003px;}
.x9{left:138.420001px;}
.xf{left:175.139992px;}
.xd{left:188.639992px;}
.x19{left:209.879998px;}
.x2{left:240.300007px;}
.x12{left:251.639992px;}
.x5{left:293.939999px;}
.x3{left:314.639992px;}
.x1c{left:326.519989px;}
.x1b{left:333.899987px;}
.x1a{left:408.060001px;}
.x17{left:443.160015px;}
.xb{left:453.060001px;}
.x14{left:465.660015px;}
.x15{left:499.139992px;}
.xe{left:516.060001px;}
.xc{left:524.160015px;}
.x1{left:565.560001px;}
.x1d{left:571.319996px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:15.051775pt;}
.ls2{letter-spacing:28.491779pt;}
.ws0{word-spacing:-14.718600pt;}
.ws1{word-spacing:0.000000pt;}
._44{margin-left:-1.919097pt;}
._0{margin-left:-0.958848pt;}
._2{width:0.911916pt;}
._c{width:2.069129pt;}
._12{width:3.014291pt;}
._8{width:3.922116pt;}
._17{width:5.002323pt;}
._13{width:6.006799pt;}
._1a{width:7.182217pt;}
._19{width:8.234367pt;}
._1e{width:9.252710pt;}
._4{width:10.341426pt;}
._5{width:11.598556pt;}
._9{width:13.187866pt;}
._10{width:16.357194pt;}
._30{width:17.251280pt;}
._1d{width:18.190189pt;}
._23{width:19.480106pt;}
._7{width:20.681082pt;}
._6{width:22.019026pt;}
._28{width:23.320028pt;}
._d{width:24.282700pt;}
._18{width:26.193957pt;}
._14{width:27.730992pt;}
._16{width:28.770263pt;}
._2a{width:30.374591pt;}
._a{width:31.732612pt;}
._b{width:33.130542pt;}
._31{width:35.198842pt;}
._2d{width:36.500495pt;}
._24{width:37.502993pt;}
._1b{width:38.602288pt;}
._1c{width:39.631900pt;}
._2c{width:40.900529pt;}
._35{width:42.285158pt;}
._42{width:43.802554pt;}
._3b{width:44.808087pt;}
._3a{width:45.888064pt;}
._3{width:47.154255pt;}
._37{width:49.351305pt;}
._33{width:50.276438pt;}
._e{width:51.560866pt;}
._f{width:53.021894pt;}
._29{width:54.051759pt;}
._34{width:57.511090pt;}
._3d{width:58.761711pt;}
._43{width:60.283476pt;}
._39{width:61.761085pt;}
._41{width:69.401718pt;}
._40{width:70.364337pt;}
._2e{width:71.528256pt;}
._2f{width:72.712023pt;}
._32{width:73.875252pt;}
._36{width:75.056850pt;}
._26{width:77.427724pt;}
._27{width:78.323528pt;}
._2b{width:81.784361pt;}
._21{width:85.745504pt;}
._22{width:86.718151pt;}
._38{width:88.986816pt;}
._3e{width:93.965842pt;}
._3f{width:95.470536pt;}
._25{width:97.180016pt;}
._20{width:100.934938pt;}
._1f{width:101.917175pt;}
._3c{width:103.677588pt;}
._11{width:116.494039pt;}
._15{width:797.437996pt;}
._1{width:836.477976pt;}
.fs1{font-size:42.876000pt;}
.fs2{font-size:47.995600pt;}
.fs0{font-size:53.115200pt;}
.fs4{font-size:58.874400pt;}
.fs3{font-size:74.873200pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.760009pt;}
.y5{bottom:63.200011pt;}
.y4{bottom:76.320007pt;}
.y43{bottom:99.040038pt;}
.y6a{bottom:100.640014pt;}
.y32{bottom:101.760009pt;}
.y2a{bottom:102.720031pt;}
.y42{bottom:115.040038pt;}
.y69{bottom:116.640014pt;}
.y31{bottom:118.559997pt;}
.y29{bottom:119.679992pt;}
.y41{bottom:131.040038pt;}
.y68{bottom:132.799987pt;}
.y30{bottom:135.520019pt;}
.y28{bottom:136.479980pt;}
.y40{bottom:147.040038pt;}
.y67{bottom:148.799987pt;}
.y2f{bottom:152.320007pt;}
.y27{bottom:153.280029pt;}
.y3f{bottom:163.040038pt;}
.y66{bottom:164.799987pt;}
.y2e{bottom:169.119994pt;}
.y3e{bottom:179.040038pt;}
.y65{bottom:180.799987pt;}
.y26{bottom:185.919982pt;}
.y2d{bottom:186.080016pt;}
.y6b{bottom:193.760009pt;}
.y3d{bottom:195.200011pt;}
.y64{bottom:196.799987pt;}
.y25{bottom:199.679992pt;}
.y2c{bottom:202.880004pt;}
.y3c{bottom:211.200011pt;}
.y63{bottom:212.799987pt;}
.y24{bottom:219.840026pt;}
.y3b{bottom:227.200011pt;}
.y62{bottom:228.799987pt;}
.y23{bottom:236.640014pt;}
.y3a{bottom:243.200011pt;}
.y61{bottom:244.960021pt;}
.y22{bottom:253.600036pt;}
.y39{bottom:259.200011pt;}
.y60{bottom:260.960021pt;}
.y21{bottom:270.400024pt;}
.y38{bottom:275.200011pt;}
.y5f{bottom:276.960021pt;}
.y20{bottom:287.200011pt;}
.y37{bottom:291.200011pt;}
.y5e{bottom:292.960021pt;}
.y1f{bottom:304.160003pt;}
.y36{bottom:307.360015pt;}
.y5d{bottom:308.960021pt;}
.y1e{bottom:320.960021pt;}
.y35{bottom:323.360015pt;}
.y5c{bottom:324.960021pt;}
.y2b{bottom:334.720000pt;}
.y1d{bottom:337.920013pt;}
.y34{bottom:339.360015pt;}
.y5b{bottom:340.960021pt;}
.y1c{bottom:354.720000pt;}
.y33{bottom:355.360015pt;}
.y5a{bottom:356.960021pt;}
.y1b{bottom:371.520019pt;}
.y59{bottom:373.119994pt;}
.y1a{bottom:388.480010pt;}
.y58{bottom:389.119994pt;}
.y57{bottom:405.119994pt;}
.y19{bottom:405.279998pt;}
.y56{bottom:421.119994pt;}
.y18{bottom:422.240020pt;}
.y55{bottom:437.119994pt;}
.y17{bottom:439.040008pt;}
.y54{bottom:453.119994pt;}
.y16{bottom:455.839996pt;}
.y53{bottom:469.119994pt;}
.y15{bottom:472.800018pt;}
.y52{bottom:485.279998pt;}
.y14{bottom:489.600005pt;}
.y51{bottom:501.279998pt;}
.y13{bottom:506.559997pt;}
.y50{bottom:517.279998pt;}
.y12{bottom:523.360015pt;}
.y4f{bottom:533.279998pt;}
.y11{bottom:540.160003pt;}
.y4e{bottom:549.280013pt;}
.y10{bottom:557.120010pt;}
.y4d{bottom:565.280013pt;}
.yf{bottom:573.920013pt;}
.y4c{bottom:581.280013pt;}
.ye{bottom:590.880004pt;}
.y4b{bottom:597.440002pt;}
.yd{bottom:607.680007pt;}
.y4a{bottom:613.440002pt;}
.yc{bottom:624.480010pt;}
.y49{bottom:629.440002pt;}
.yb{bottom:641.440002pt;}
.y48{bottom:645.440002pt;}
.ya{bottom:658.240005pt;}
.y47{bottom:661.440002pt;}
.y9{bottom:675.200011pt;}
.y46{bottom:677.440009pt;}
.y8{bottom:692.000007pt;}
.y45{bottom:693.440009pt;}
.y7{bottom:708.960006pt;}
.y44{bottom:709.600005pt;}
.y3{bottom:725.280006pt;}
.y2{bottom:740.800010pt;}
.y1{bottom:754.080009pt;}
.h3{height:33.685295pt;}
.h4{height:36.134754pt;}
.h9{height:40.878612pt;}
.h7{height:41.281073pt;}
.h6{height:41.539799pt;}
.h2{height:41.729666pt;}
.h8{height:42.862173pt;}
.h5{height:63.101144pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.359987pt;}
.x0{left:0.000000pt;}
.x6{left:56.799999pt;}
.x18{left:75.680000pt;}
.x11{left:87.680000pt;}
.x8{left:93.279999pt;}
.x13{left:94.879997pt;}
.x16{left:96.480003pt;}
.x4{left:99.680000pt;}
.x7{left:104.000000pt;}
.x10{left:115.839996pt;}
.xa{left:120.800003pt;}
.x9{left:123.040001pt;}
.xf{left:155.679993pt;}
.xd{left:167.679993pt;}
.x19{left:186.559998pt;}
.x2{left:213.600006pt;}
.x12{left:223.679993pt;}
.x5{left:261.279999pt;}
.x3{left:279.679993pt;}
.x1c{left:290.239990pt;}
.x1b{left:296.799988pt;}
.x1a{left:362.720001pt;}
.x17{left:393.920013pt;}
.xb{left:402.720001pt;}
.x14{left:413.920013pt;}
.x15{left:443.679993pt;}
.xe{left:458.720001pt;}
.xc{left:465.920013pt;}
.x1{left:502.720001pt;}
.x1d{left:507.839996pt;}
}




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