
    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_14bfc8437b5a4ecf949b5eb0.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_6efa00a6c6fef42ff952ec58.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6a63087f4a6f31d313829ec8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9eeb0175b16d1169d00474d7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1ee931d1b0a6135219b36619.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_d53eea2d08b7faf02899f0e8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_523e92f65e9af3aba0e41c52.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_09ce40de6ca21484653a73d5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a75d8bfe5d83f19d867f2016.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_364565dfe335dab0ec88dfaa.woff2')format("woff");}.ffa{font-family:ffa;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;}
.v1{vertical-align:23.760131px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.001544px;}
.ls2{letter-spacing:0.001575px;}
.ls5{letter-spacing:0.001678px;}
.ls4{letter-spacing:0.001863px;}
.ls3{letter-spacing:0.001935px;}
.ls1{letter-spacing:0.001998px;}
.ls7{letter-spacing:0.002003px;}
.ls8{letter-spacing:32.053252px;}
.ls9{letter-spacing:847.441593px;}
.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;}
}
.ws2{word-spacing:-66.233700px;}
.ws0{word-spacing:-16.558425px;}
.ws3{word-spacing:-10.439033px;}
.ws1{word-spacing:0.000000px;}
._3f{margin-left:-2.263071px;}
._0{margin-left:-1.051195px;}
._2{width:1.103709px;}
._6{width:2.229696px;}
._12{width:4.087868px;}
._7{width:5.939559px;}
._10{width:7.055183px;}
._11{width:8.102523px;}
._b{width:9.636472px;}
._a{width:11.005919px;}
._d{width:12.635876px;}
._c{width:13.832494px;}
._19{width:15.529733px;}
._2b{width:17.951913px;}
._24{width:19.210360px;}
._16{width:20.437236px;}
._18{width:22.301087px;}
._17{width:23.370406px;}
._25{width:25.290917px;}
._5{width:26.545218px;}
._34{width:27.609104px;}
._22{width:29.462871px;}
._23{width:30.515366px;}
._14{width:33.632160px;}
._9{width:35.031909px;}
._8{width:36.074857px;}
._3a{width:38.260311px;}
._1f{width:39.668029px;}
._1e{width:40.712510px;}
._36{width:41.907045px;}
._35{width:43.006621px;}
._15{width:44.761821px;}
._2f{width:47.603920px;}
._29{width:48.681770px;}
._2a{width:49.809288px;}
._39{width:51.131473px;}
._1d{width:52.771959px;}
._37{width:54.641590px;}
._2c{width:55.883629px;}
._26{width:56.928383px;}
._3d{width:61.024523px;}
._3e{width:62.063557px;}
._21{width:63.956910px;}
._33{width:65.363606px;}
._2d{width:66.893191px;}
._2e{width:69.404121px;}
._38{width:70.471098px;}
._42{width:71.803023px;}
._41{width:72.918654px;}
._32{width:74.575259px;}
._31{width:76.154001px;}
._1c{width:82.352299px;}
._1b{width:83.430646px;}
._40{width:84.872590px;}
._30{width:87.680483px;}
._e{width:92.132370px;}
._20{width:96.818405px;}
._3b{width:98.636985px;}
._3c{width:99.737610px;}
._4{width:112.862225px;}
._3{width:114.307268px;}
._28{width:172.908242px;}
._27{width:173.932283px;}
._f{width:177.481213px;}
._1a{width:222.200869px;}
._1{width:897.117746px;}
._13{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);}
.fs5{font-size:41.756130px;}
.fs1{font-size:48.235500px;}
.fs2{font-size:53.995050px;}
.fs0{font-size:59.754600px;}
.fs3{font-size:66.233700px;}
.fs4{font-size:84.232350px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.980010px;}
.y5{bottom:71.100013px;}
.y4{bottom:85.860008px;}
.y4b{bottom:104.039978px;}
.y2b{bottom:114.480010px;}
.y4a{bottom:122.940033px;}
.y36{bottom:128.519988px;}
.y2a{bottom:133.379997px;}
.y49{bottom:142.019988px;}
.y35{bottom:147.420043px;}
.y29{bottom:152.460022px;}
.y48{bottom:160.920043px;}
.y34{bottom:166.499999px;}
.y28{bottom:171.360008px;}
.y47{bottom:179.999999px;}
.y33{bottom:185.399986px;}
.y27{bottom:190.259994px;}
.y46{bottom:198.899986px;}
.y32{bottom:204.300041px;}
.y4d{bottom:209.159980px;}
.y26{bottom:209.340018px;}
.y45{bottom:217.800041px;}
.y31{bottom:224.639991px;}
.y25{bottom:228.240005px;}
.y44{bottom:238.139991px;}
.y30{bottom:243.539978px;}
.y24{bottom:247.320030px;}
.y43{bottom:257.039978px;}
.y2f{bottom:263.700027px;}
.y23{bottom:266.220016px;}
.y42{bottom:276.120003px;}
.y2e{bottom:284.039978px;}
.y22{bottom:285.300041px;}
.y41{bottom:295.019988px;}
.y21{bottom:304.200027px;}
.y40{bottom:313.920043px;}
.y20{bottom:323.100013px;}
.y3f{bottom:332.999999px;}
.y1f{bottom:342.180004px;}
.y3e{bottom:351.900021px;}
.y1e{bottom:357.480010px;}
.y2d{bottom:361.080024px;}
.y3d{bottom:370.980010px;}
.y4c{bottom:376.560000px;}
.y1d{bottom:380.160015px;}
.y3c{bottom:389.879997px;}
.y1c{bottom:399.060000px;}
.y3b{bottom:408.780017px;}
.y1b{bottom:417.960022px;}
.y3a{bottom:427.860008px;}
.y1a{bottom:437.040012px;}
.y39{bottom:446.759994px;}
.y19{bottom:455.939998px;}
.y38{bottom:465.840018px;}
.y18{bottom:475.020023px;}
.y37{bottom:481.140025px;}
.y17{bottom:493.920009px;}
.y16{bottom:512.819996px;}
.y15{bottom:531.900021px;}
.y14{bottom:550.800006px;}
.y13{bottom:569.879997px;}
.y12{bottom:588.780017px;}
.y11{bottom:607.680004px;}
.y10{bottom:626.760012px;}
.yf{bottom:645.660015px;}
.ye{bottom:664.740005px;}
.yd{bottom:683.640008px;}
.y2c{bottom:698.940015px;}
.yc{bottom:702.540012px;}
.yb{bottom:721.620003px;}
.ya{bottom:740.520006px;}
.y9{bottom:759.600013px;}
.y8{bottom:778.500008px;}
.y7{bottom:797.580007px;}
.y3{bottom:815.940007px;}
.y2{bottom:833.400012px;}
.y1{bottom:848.340010px;}
.h3{height:37.895957px;}
.h4{height:40.651598px;}
.hb{height:45.988438px;}
.h6{height:46.441208px;}
.h2{height:46.945875px;}
.ha{height:48.219945px;}
.h9{height:53.038080px;}
.h8{height:53.038354px;}
.h5{height:57.275333px;}
.h7{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;}
.xe{left:73.439999px;}
.x17{left:85.140000px;}
.x8{left:93.060001px;}
.x4{left:106.739997px;}
.x14{left:112.140000px;}
.x7{left:117.000000px;}
.x16{left:122.400003px;}
.x9{left:128.519998px;}
.xf{left:146.699993px;}
.x11{left:206.819996px;}
.x18{left:209.879998px;}
.x13{left:240.300007px;}
.x2{left:251.639992px;}
.x19{left:277.919992px;}
.x5{left:297.180005px;}
.x3{left:314.639992px;}
.xa{left:318.600013px;}
.x1a{left:325.620002px;}
.x10{left:353.879998px;}
.x12{left:380.339985px;}
.xc{left:471.959988px;}
.xb{left:487.079990px;}
.xd{left:516.060001px;}
.x15{left:544.319996px;}
.x1{left:565.560001px;}
.x1b{left:571.319996px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120116pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.001372pt;}
.ls2{letter-spacing:0.001400pt;}
.ls5{letter-spacing:0.001492pt;}
.ls4{letter-spacing:0.001656pt;}
.ls3{letter-spacing:0.001720pt;}
.ls1{letter-spacing:0.001776pt;}
.ls7{letter-spacing:0.001780pt;}
.ls8{letter-spacing:28.491779pt;}
.ls9{letter-spacing:753.281416pt;}
.ws2{word-spacing:-58.874400pt;}
.ws0{word-spacing:-14.718600pt;}
.ws3{word-spacing:-9.279140pt;}
.ws1{word-spacing:0.000000pt;}
._3f{margin-left:-2.011619pt;}
._0{margin-left:-0.934395pt;}
._2{width:0.981075pt;}
._6{width:1.981952pt;}
._12{width:3.633660pt;}
._7{width:5.279608pt;}
._10{width:6.271273pt;}
._11{width:7.202243pt;}
._b{width:8.565753pt;}
._a{width:9.783039pt;}
._d{width:11.231890pt;}
._c{width:12.295550pt;}
._19{width:13.804207pt;}
._2b{width:15.957256pt;}
._24{width:17.075876pt;}
._16{width:18.166432pt;}
._18{width:19.823189pt;}
._17{width:20.773694pt;}
._25{width:22.480815pt;}
._5{width:23.595750pt;}
._34{width:24.541426pt;}
._22{width:26.189219pt;}
._23{width:27.124770pt;}
._14{width:29.895253pt;}
._9{width:31.139474pt;}
._8{width:32.066540pt;}
._3a{width:34.009165pt;}
._1f{width:35.260470pt;}
._1e{width:36.188898pt;}
._36{width:37.250707pt;}
._35{width:38.228108pt;}
._15{width:39.788285pt;}
._2f{width:42.314595pt;}
._29{width:43.272684pt;}
._2a{width:44.274923pt;}
._39{width:45.450198pt;}
._1d{width:46.908408pt;}
._37{width:48.570302pt;}
._2c{width:49.674337pt;}
._26{width:50.603007pt;}
._3d{width:54.244020pt;}
._3e{width:55.167606pt;}
._21{width:56.850587pt;}
._33{width:58.100984pt;}
._2d{width:59.460614pt;}
._2e{width:61.692552pt;}
._38{width:62.640976pt;}
._42{width:63.824909pt;}
._41{width:64.816581pt;}
._32{width:66.289119pt;}
._31{width:67.692445pt;}
._1c{width:73.202043pt;}
._1b{width:74.160574pt;}
._40{width:75.442302pt;}
._30{width:77.938207pt;}
._e{width:81.895440pt;}
._20{width:86.060804pt;}
._3b{width:87.677320pt;}
._3c{width:88.655653pt;}
._4{width:100.321978pt;}
._3{width:101.606461pt;}
._28{width:153.696215pt;}
._27{width:154.606474pt;}
._f{width:157.761078pt;}
._1a{width:197.511883pt;}
._1{width:797.437996pt;}
._13{width:836.477976pt;}
.fs5{font-size:37.116560pt;}
.fs1{font-size:42.876000pt;}
.fs2{font-size:47.995600pt;}
.fs0{font-size:53.115200pt;}
.fs3{font-size:58.874400pt;}
.fs4{font-size:74.873200pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.760009pt;}
.y5{bottom:63.200011pt;}
.y4{bottom:76.320007pt;}
.y4b{bottom:92.479980pt;}
.y2b{bottom:101.760009pt;}
.y4a{bottom:109.280029pt;}
.y36{bottom:114.239989pt;}
.y2a{bottom:118.559997pt;}
.y49{bottom:126.239989pt;}
.y35{bottom:131.040038pt;}
.y29{bottom:135.520019pt;}
.y48{bottom:143.040038pt;}
.y34{bottom:147.999999pt;}
.y28{bottom:152.320007pt;}
.y47{bottom:159.999999pt;}
.y33{bottom:164.799987pt;}
.y27{bottom:169.119994pt;}
.y46{bottom:176.799987pt;}
.y32{bottom:181.600036pt;}
.y4d{bottom:185.919982pt;}
.y26{bottom:186.080016pt;}
.y45{bottom:193.600036pt;}
.y31{bottom:199.679992pt;}
.y25{bottom:202.880004pt;}
.y44{bottom:211.679992pt;}
.y30{bottom:216.479980pt;}
.y24{bottom:219.840026pt;}
.y43{bottom:228.479980pt;}
.y2f{bottom:234.400024pt;}
.y23{bottom:236.640014pt;}
.y42{bottom:245.440002pt;}
.y2e{bottom:252.479980pt;}
.y22{bottom:253.600036pt;}
.y41{bottom:262.239989pt;}
.y21{bottom:270.400024pt;}
.y40{bottom:279.040038pt;}
.y20{bottom:287.200011pt;}
.y3f{bottom:295.999999pt;}
.y1f{bottom:304.160003pt;}
.y3e{bottom:312.800018pt;}
.y1e{bottom:317.760009pt;}
.y2d{bottom:320.960021pt;}
.y3d{bottom:329.760009pt;}
.y4c{bottom:334.720000pt;}
.y1d{bottom:337.920013pt;}
.y3c{bottom:346.559997pt;}
.y1c{bottom:354.720000pt;}
.y3b{bottom:363.360015pt;}
.y1b{bottom:371.520019pt;}
.y3a{bottom:380.320007pt;}
.y1a{bottom:388.480010pt;}
.y39{bottom:397.119994pt;}
.y19{bottom:405.279998pt;}
.y38{bottom:414.080016pt;}
.y18{bottom:422.240020pt;}
.y37{bottom:427.680022pt;}
.y17{bottom:439.040008pt;}
.y16{bottom:455.839996pt;}
.y15{bottom:472.800018pt;}
.y14{bottom:489.600005pt;}
.y13{bottom:506.559997pt;}
.y12{bottom:523.360015pt;}
.y11{bottom:540.160003pt;}
.y10{bottom:557.120010pt;}
.yf{bottom:573.920013pt;}
.ye{bottom:590.880004pt;}
.yd{bottom:607.680007pt;}
.y2c{bottom:621.280013pt;}
.yc{bottom:624.480010pt;}
.yb{bottom:641.440002pt;}
.ya{bottom:658.240005pt;}
.y9{bottom:675.200011pt;}
.y8{bottom:692.000007pt;}
.y7{bottom:708.960006pt;}
.y3{bottom:725.280006pt;}
.y2{bottom:740.800010pt;}
.y1{bottom:754.080009pt;}
.h3{height:33.685295pt;}
.h4{height:36.134754pt;}
.hb{height:40.878612pt;}
.h6{height:41.281073pt;}
.h2{height:41.729666pt;}
.ha{height:42.862173pt;}
.h9{height:47.144960pt;}
.h8{height:47.145204pt;}
.h5{height:50.911407pt;}
.h7{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;}
.xe{left:65.279999pt;}
.x17{left:75.680000pt;}
.x8{left:82.720001pt;}
.x4{left:94.879997pt;}
.x14{left:99.680000pt;}
.x7{left:104.000000pt;}
.x16{left:108.800003pt;}
.x9{left:114.239998pt;}
.xf{left:130.399994pt;}
.x11{left:183.839996pt;}
.x18{left:186.559998pt;}
.x13{left:213.600006pt;}
.x2{left:223.679993pt;}
.x19{left:247.039993pt;}
.x5{left:264.160004pt;}
.x3{left:279.679993pt;}
.xa{left:283.200012pt;}
.x1a{left:289.440002pt;}
.x10{left:314.559998pt;}
.x12{left:338.079987pt;}
.xc{left:419.519989pt;}
.xb{left:432.959991pt;}
.xd{left:458.720001pt;}
.x15{left:483.839996pt;}
.x1{left:502.720001pt;}
.x1b{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; }
  