
    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_db2aa2ffce7bf5249f230a05.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4925457a2e56661f0668d71d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_c5139f5348d12c72cef7ef00.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_b73823b48d0bb4d738d7c837.woff')format("woff");}.ff4{font-family:ff4;line-height:0.925781;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_55904f697e2ebcfa4253abb7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.044434;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_b7ccd6619bc03d4adc6753b8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.678711;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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:3.000000px;}
.v2{vertical-align:23.976000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.720000px;}
.ls6{letter-spacing:4.196667px;}
.ls3{letter-spacing:4.200000px;}
.ls7{letter-spacing:4.210667px;}
.ls9{letter-spacing:4.248144px;}
.ls8{letter-spacing:4.248744px;}
.ls5{letter-spacing:5.400000px;}
.ls4{letter-spacing:5.414000px;}
.ls1{letter-spacing:8.400000px;}
.lsc{letter-spacing:9.192744px;}
.lsd{letter-spacing:9.193344px;}
.ls0{letter-spacing:10.800000px;}
.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:-41.148000px;}
.ws5{word-spacing:-20.232000px;}
.ws4{word-spacing:-17.784000px;}
.ws3{word-spacing:-16.860000px;}
.ws6{word-spacing:-0.072000px;}
.ws0{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-20.232000px;}
._13{margin-left:-14.238000px;}
._14{margin-left:-12.516667px;}
._6{margin-left:-11.124000px;}
._9{margin-left:-9.312000px;}
._e{margin-left:-8.046000px;}
._3{margin-left:-6.480000px;}
._7{margin-left:-4.428000px;}
._8{margin-left:-2.436000px;}
._1{margin-left:-1.134000px;}
._4{width:1.350000px;}
._a{width:2.508000px;}
._b{width:4.176000px;}
._c{width:5.184000px;}
._11{width:6.264000px;}
._10{width:7.728000px;}
._f{width:8.772000px;}
._12{width:10.452000px;}
._15{width:11.580000px;}
._16{width:13.176000px;}
._18{width:14.418000px;}
._d{width:15.486000px;}
._0{width:198.000000px;}
._2{width:369.208200px;}
._5{width:738.306000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(73,19,22);}
.fs7{font-size:41.976000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:61.673850px;}
.y27{bottom:61.674000px;}
.y1{bottom:77.873850px;}
.y26{bottom:77.874000px;}
.y7a{bottom:133.304850px;}
.ya1{bottom:144.600900px;}
.y25{bottom:151.307700px;}
.y79{bottom:155.804850px;}
.ya0{bottom:167.100900px;}
.y24{bottom:173.807700px;}
.y4c{bottom:175.697100px;}
.y78{bottom:178.304850px;}
.y9f{bottom:189.600900px;}
.y23{bottom:196.307700px;}
.y4b{bottom:198.197100px;}
.y77{bottom:200.804850px;}
.y9e{bottom:212.100900px;}
.y4a{bottom:220.697100px;}
.y76{bottom:223.304850px;}
.y9d{bottom:234.600900px;}
.y49{bottom:243.197100px;}
.y75{bottom:245.804850px;}
.y22{bottom:249.811650px;}
.y9c{bottom:257.100900px;}
.y48{bottom:265.697100px;}
.y74{bottom:268.304850px;}
.ya6{bottom:273.704700px;}
.y9b{bottom:279.600900px;}
.y47{bottom:288.197100px;}
.y73{bottom:290.804850px;}
.ya5{bottom:296.204700px;}
.y9a{bottom:302.100900px;}
.y46{bottom:310.697100px;}
.y72{bottom:313.304850px;}
.ya4{bottom:318.704700px;}
.y21{bottom:320.011650px;}
.y99{bottom:324.600900px;}
.y45{bottom:333.197100px;}
.y71{bottom:335.804850px;}
.ya3{bottom:341.204700px;}
.y20{bottom:342.511650px;}
.y98{bottom:347.100900px;}
.y44{bottom:355.697100px;}
.y70{bottom:358.304850px;}
.y1f{bottom:365.011650px;}
.y97{bottom:369.600900px;}
.y43{bottom:378.197100px;}
.y6f{bottom:380.804850px;}
.ya2{bottom:386.204850px;}
.y1e{bottom:387.511650px;}
.y96{bottom:392.100900px;}
.y42{bottom:400.697100px;}
.y6e{bottom:403.304850px;}
.y1d{bottom:410.011650px;}
.y95{bottom:414.600900px;}
.y41{bottom:423.197100px;}
.y6d{bottom:425.804850px;}
.y1c{bottom:432.511650px;}
.y94{bottom:437.100900px;}
.y40{bottom:445.697100px;}
.y6c{bottom:448.304850px;}
.y1b{bottom:455.011650px;}
.y93{bottom:459.600900px;}
.y3f{bottom:468.197100px;}
.y6b{bottom:470.804850px;}
.y1a{bottom:477.511650px;}
.y92{bottom:482.100900px;}
.y3e{bottom:490.697100px;}
.y6a{bottom:493.304850px;}
.y19{bottom:500.011650px;}
.y91{bottom:504.600900px;}
.y69{bottom:515.804850px;}
.y18{bottom:522.511650px;}
.y90{bottom:527.100900px;}
.y68{bottom:538.304850px;}
.y3d{bottom:544.201050px;}
.y17{bottom:545.011650px;}
.y8f{bottom:549.600900px;}
.y67{bottom:560.804850px;}
.y16{bottom:567.511650px;}
.y8e{bottom:572.100900px;}
.y66{bottom:583.304850px;}
.y15{bottom:590.011650px;}
.y8d{bottom:594.600900px;}
.y65{bottom:605.804850px;}
.y14{bottom:612.511650px;}
.y3c{bottom:614.401050px;}
.y8c{bottom:617.100900px;}
.y64{bottom:628.304850px;}
.y13{bottom:635.011650px;}
.y3b{bottom:636.901050px;}
.y8b{bottom:639.600900px;}
.y63{bottom:650.804850px;}
.y12{bottom:657.511650px;}
.y3a{bottom:659.401050px;}
.y8a{bottom:662.100900px;}
.y62{bottom:673.304850px;}
.y11{bottom:680.011650px;}
.y39{bottom:681.901050px;}
.y89{bottom:684.600900px;}
.y61{bottom:695.804850px;}
.y10{bottom:702.511650px;}
.y38{bottom:704.401050px;}
.y88{bottom:707.100900px;}
.y60{bottom:718.304850px;}
.yf{bottom:725.011650px;}
.y37{bottom:726.901050px;}
.y87{bottom:729.600900px;}
.y5f{bottom:740.804850px;}
.ye{bottom:747.511650px;}
.y36{bottom:749.401050px;}
.y86{bottom:752.100900px;}
.y5e{bottom:763.304850px;}
.yd{bottom:770.011650px;}
.y85{bottom:774.600900px;}
.y5d{bottom:785.804850px;}
.yc{bottom:792.511650px;}
.y84{bottom:797.100900px;}
.y35{bottom:802.905000px;}
.y5c{bottom:808.304850px;}
.yb{bottom:815.011650px;}
.y83{bottom:819.600900px;}
.y34{bottom:828.105000px;}
.y5b{bottom:830.804850px;}
.ya{bottom:837.511650px;}
.y82{bottom:842.100900px;}
.y5a{bottom:853.304850px;}
.y9{bottom:860.011650px;}
.y81{bottom:864.600900px;}
.y59{bottom:875.804850px;}
.y8{bottom:882.511650px;}
.y80{bottom:887.100900px;}
.y58{bottom:898.304850px;}
.y33{bottom:898.305000px;}
.y7{bottom:905.011650px;}
.y7f{bottom:909.600900px;}
.y57{bottom:920.804850px;}
.y32{bottom:920.805000px;}
.y7e{bottom:932.100900px;}
.y56{bottom:943.304850px;}
.y31{bottom:943.305000px;}
.y7d{bottom:954.600900px;}
.y6{bottom:958.515600px;}
.y55{bottom:965.804850px;}
.y30{bottom:965.805000px;}
.y7c{bottom:977.100900px;}
.y54{bottom:988.304850px;}
.y2f{bottom:988.305000px;}
.y53{bottom:1010.804850px;}
.y2e{bottom:1010.805000px;}
.y7b{bottom:1030.604850px;}
.y52{bottom:1033.304850px;}
.y2d{bottom:1033.305000px;}
.y51{bottom:1055.804850px;}
.y2c{bottom:1055.805000px;}
.y5{bottom:1059.719550px;}
.y50{bottom:1078.304850px;}
.y2b{bottom:1078.305000px;}
.y4{bottom:1084.919550px;}
.y4f{bottom:1100.804850px;}
.y2a{bottom:1100.805000px;}
.y3{bottom:1117.319550px;}
.y4e{bottom:1123.304850px;}
.y29{bottom:1123.305000px;}
.y4d{bottom:1176.323550px;}
.y28{bottom:1176.323700px;}
.h9{height:41.396484px;}
.h3{height:45.852539px;}
.h2{height:47.988281px;}
.h8{height:48.399902px;}
.h7{height:50.947266px;}
.h6{height:61.136719px;}
.h5{height:71.326172px;}
.h4{height:91.705078px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x2{left:127.558950px;}
.x3{left:350.443050px;}
.x7{left:528.831000px;}
.x6{left:532.337700px;}
.x5{left:615.209850px;}
.x8{left:645.337350px;}
.x4{left:683.524350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v2{vertical-align:21.312000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls6{letter-spacing:3.730370pt;}
.ls3{letter-spacing:3.733333pt;}
.ls7{letter-spacing:3.742815pt;}
.ls9{letter-spacing:3.776128pt;}
.ls8{letter-spacing:3.776661pt;}
.ls5{letter-spacing:4.800000pt;}
.ls4{letter-spacing:4.812444pt;}
.ls1{letter-spacing:7.466667pt;}
.lsc{letter-spacing:8.171328pt;}
.lsd{letter-spacing:8.171861pt;}
.ls0{letter-spacing:9.600000pt;}
.ws1{word-spacing:-36.576000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws3{word-spacing:-14.986667pt;}
.ws6{word-spacing:-0.064000pt;}
.ws0{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-17.984000pt;}
._13{margin-left:-12.656000pt;}
._14{margin-left:-11.125926pt;}
._6{margin-left:-9.888000pt;}
._9{margin-left:-8.277333pt;}
._e{margin-left:-7.152000pt;}
._3{margin-left:-5.760000pt;}
._7{margin-left:-3.936000pt;}
._8{margin-left:-2.165333pt;}
._1{margin-left:-1.008000pt;}
._4{width:1.200000pt;}
._a{width:2.229333pt;}
._b{width:3.712000pt;}
._c{width:4.608000pt;}
._11{width:5.568000pt;}
._10{width:6.869333pt;}
._f{width:7.797333pt;}
._12{width:9.290667pt;}
._15{width:10.293333pt;}
._16{width:11.712000pt;}
._18{width:12.816000pt;}
._d{width:13.765333pt;}
._0{width:176.000000pt;}
._2{width:328.185067pt;}
._5{width:656.272000pt;}
.fs7{font-size:37.312000pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:54.821200pt;}
.y27{bottom:54.821333pt;}
.y1{bottom:69.221200pt;}
.y26{bottom:69.221333pt;}
.y7a{bottom:118.493200pt;}
.ya1{bottom:128.534133pt;}
.y25{bottom:134.495733pt;}
.y79{bottom:138.493200pt;}
.ya0{bottom:148.534133pt;}
.y24{bottom:154.495733pt;}
.y4c{bottom:156.175200pt;}
.y78{bottom:158.493200pt;}
.y9f{bottom:168.534133pt;}
.y23{bottom:174.495733pt;}
.y4b{bottom:176.175200pt;}
.y77{bottom:178.493200pt;}
.y9e{bottom:188.534133pt;}
.y4a{bottom:196.175200pt;}
.y76{bottom:198.493200pt;}
.y9d{bottom:208.534133pt;}
.y49{bottom:216.175200pt;}
.y75{bottom:218.493200pt;}
.y22{bottom:222.054800pt;}
.y9c{bottom:228.534133pt;}
.y48{bottom:236.175200pt;}
.y74{bottom:238.493200pt;}
.ya6{bottom:243.293067pt;}
.y9b{bottom:248.534133pt;}
.y47{bottom:256.175200pt;}
.y73{bottom:258.493200pt;}
.ya5{bottom:263.293067pt;}
.y9a{bottom:268.534133pt;}
.y46{bottom:276.175200pt;}
.y72{bottom:278.493200pt;}
.ya4{bottom:283.293067pt;}
.y21{bottom:284.454800pt;}
.y99{bottom:288.534133pt;}
.y45{bottom:296.175200pt;}
.y71{bottom:298.493200pt;}
.ya3{bottom:303.293067pt;}
.y20{bottom:304.454800pt;}
.y98{bottom:308.534133pt;}
.y44{bottom:316.175200pt;}
.y70{bottom:318.493200pt;}
.y1f{bottom:324.454800pt;}
.y97{bottom:328.534133pt;}
.y43{bottom:336.175200pt;}
.y6f{bottom:338.493200pt;}
.ya2{bottom:343.293200pt;}
.y1e{bottom:344.454800pt;}
.y96{bottom:348.534133pt;}
.y42{bottom:356.175200pt;}
.y6e{bottom:358.493200pt;}
.y1d{bottom:364.454800pt;}
.y95{bottom:368.534133pt;}
.y41{bottom:376.175200pt;}
.y6d{bottom:378.493200pt;}
.y1c{bottom:384.454800pt;}
.y94{bottom:388.534133pt;}
.y40{bottom:396.175200pt;}
.y6c{bottom:398.493200pt;}
.y1b{bottom:404.454800pt;}
.y93{bottom:408.534133pt;}
.y3f{bottom:416.175200pt;}
.y6b{bottom:418.493200pt;}
.y1a{bottom:424.454800pt;}
.y92{bottom:428.534133pt;}
.y3e{bottom:436.175200pt;}
.y6a{bottom:438.493200pt;}
.y19{bottom:444.454800pt;}
.y91{bottom:448.534133pt;}
.y69{bottom:458.493200pt;}
.y18{bottom:464.454800pt;}
.y90{bottom:468.534133pt;}
.y68{bottom:478.493200pt;}
.y3d{bottom:483.734267pt;}
.y17{bottom:484.454800pt;}
.y8f{bottom:488.534133pt;}
.y67{bottom:498.493200pt;}
.y16{bottom:504.454800pt;}
.y8e{bottom:508.534133pt;}
.y66{bottom:518.493200pt;}
.y15{bottom:524.454800pt;}
.y8d{bottom:528.534133pt;}
.y65{bottom:538.493200pt;}
.y14{bottom:544.454800pt;}
.y3c{bottom:546.134267pt;}
.y8c{bottom:548.534133pt;}
.y64{bottom:558.493200pt;}
.y13{bottom:564.454800pt;}
.y3b{bottom:566.134267pt;}
.y8b{bottom:568.534133pt;}
.y63{bottom:578.493200pt;}
.y12{bottom:584.454800pt;}
.y3a{bottom:586.134267pt;}
.y8a{bottom:588.534133pt;}
.y62{bottom:598.493200pt;}
.y11{bottom:604.454800pt;}
.y39{bottom:606.134267pt;}
.y89{bottom:608.534133pt;}
.y61{bottom:618.493200pt;}
.y10{bottom:624.454800pt;}
.y38{bottom:626.134267pt;}
.y88{bottom:628.534133pt;}
.y60{bottom:638.493200pt;}
.yf{bottom:644.454800pt;}
.y37{bottom:646.134267pt;}
.y87{bottom:648.534133pt;}
.y5f{bottom:658.493200pt;}
.ye{bottom:664.454800pt;}
.y36{bottom:666.134267pt;}
.y86{bottom:668.534133pt;}
.y5e{bottom:678.493200pt;}
.yd{bottom:684.454800pt;}
.y85{bottom:688.534133pt;}
.y5d{bottom:698.493200pt;}
.yc{bottom:704.454800pt;}
.y84{bottom:708.534133pt;}
.y35{bottom:713.693333pt;}
.y5c{bottom:718.493200pt;}
.yb{bottom:724.454800pt;}
.y83{bottom:728.534133pt;}
.y34{bottom:736.093333pt;}
.y5b{bottom:738.493200pt;}
.ya{bottom:744.454800pt;}
.y82{bottom:748.534133pt;}
.y5a{bottom:758.493200pt;}
.y9{bottom:764.454800pt;}
.y81{bottom:768.534133pt;}
.y59{bottom:778.493200pt;}
.y8{bottom:784.454800pt;}
.y80{bottom:788.534133pt;}
.y58{bottom:798.493200pt;}
.y33{bottom:798.493333pt;}
.y7{bottom:804.454800pt;}
.y7f{bottom:808.534133pt;}
.y57{bottom:818.493200pt;}
.y32{bottom:818.493333pt;}
.y7e{bottom:828.534133pt;}
.y56{bottom:838.493200pt;}
.y31{bottom:838.493333pt;}
.y7d{bottom:848.534133pt;}
.y6{bottom:852.013867pt;}
.y55{bottom:858.493200pt;}
.y30{bottom:858.493333pt;}
.y7c{bottom:868.534133pt;}
.y54{bottom:878.493200pt;}
.y2f{bottom:878.493333pt;}
.y53{bottom:898.493200pt;}
.y2e{bottom:898.493333pt;}
.y7b{bottom:916.093200pt;}
.y52{bottom:918.493200pt;}
.y2d{bottom:918.493333pt;}
.y51{bottom:938.493200pt;}
.y2c{bottom:938.493333pt;}
.y5{bottom:941.972933pt;}
.y50{bottom:958.493200pt;}
.y2b{bottom:958.493333pt;}
.y4{bottom:964.372933pt;}
.y4f{bottom:978.493200pt;}
.y2a{bottom:978.493333pt;}
.y3{bottom:993.172933pt;}
.y4e{bottom:998.493200pt;}
.y29{bottom:998.493333pt;}
.y4d{bottom:1045.620933pt;}
.y28{bottom:1045.621067pt;}
.h9{height:36.796875pt;}
.h3{height:40.757812pt;}
.h2{height:42.656250pt;}
.h8{height:43.022135pt;}
.h7{height:45.286458pt;}
.h6{height:54.343750pt;}
.h5{height:63.401042pt;}
.h4{height:81.515625pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x2{left:113.385733pt;}
.x3{left:311.504933pt;}
.x7{left:470.072000pt;}
.x6{left:473.189067pt;}
.x5{left:546.853200pt;}
.x8{left:573.633200pt;}
.x4{left:607.577200pt;}
}




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