
    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_601a78774ec9735dd3432ce5.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_ef4df9460006387f1207f701.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_da11f1f522ec955b5cfe3431.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_451f631cf8546ba0d07f8e21.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_74184195fa7c1f06992a23aa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.706055;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.169922px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3{word-spacing:-29.999999px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-10.800000px;}
.ws2{word-spacing:-8.138672px;}
.ws4{word-spacing:0.000000px;}
._10{margin-left:-9.549507px;}
._9{margin-left:-7.980458px;}
._0{margin-left:-6.341118px;}
._c{margin-left:-4.675783px;}
._b{margin-left:-3.643821px;}
._2{margin-left:-2.121729px;}
._1{margin-left:-1.006662px;}
._5{width:4.499986px;}
._4{width:9.000002px;}
._3{width:13.500000px;}
._8{width:22.500002px;}
._7{width:27.000002px;}
._6{width:31.500000px;}
._d{width:36.000001px;}
._a{width:40.500000px;}
._f{width:49.500000px;}
._e{width:54.000001px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs5{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.124988px;}
.y63{bottom:17.016358px;}
.y2f{bottom:17.016724px;}
.y9d{bottom:17.017090px;}
.yc2{bottom:37.157959px;}
.y62{bottom:37.158326px;}
.y2e{bottom:37.158418px;}
.y2a{bottom:109.684938px;}
.y88{bottom:111.213502px;}
.yc1{bottom:130.272952px;}
.y87{bottom:131.911743px;}
.y29{bottom:133.481323px;}
.y2c{bottom:145.244013px;}
.y60{bottom:146.404909px;}
.yc0{bottom:150.971184px;}
.y86{bottom:152.609986px;}
.y5f{bottom:167.103160px;}
.y2b{bottom:169.040497px;}
.ybf{bottom:171.669427px;}
.y85{bottom:173.308228px;}
.y5e{bottom:187.801398px;}
.ybe{bottom:192.367668px;}
.y84{bottom:194.006470px;}
.y28{bottom:198.510318px;}
.y5d{bottom:208.499635px;}
.ybd{bottom:213.065911px;}
.y83{bottom:214.704712px;}
.y27{bottom:219.208561px;}
.y5c{bottom:229.197698px;}
.ybc{bottom:233.764153px;}
.y82{bottom:235.402959px;}
.y26{bottom:239.906803px;}
.y5b{bottom:249.895942px;}
.ybb{bottom:254.462395px;}
.y81{bottom:256.101202px;}
.y25{bottom:260.605045px;}
.y5a{bottom:270.594173px;}
.yba{bottom:275.160638px;}
.y80{bottom:276.799443px;}
.y24{bottom:281.303288px;}
.y59{bottom:291.292422px;}
.yb9{bottom:295.858882px;}
.y7f{bottom:297.497686px;}
.y23{bottom:302.001519px;}
.y58{bottom:311.990664px;}
.yb8{bottom:316.557123px;}
.y7e{bottom:318.195928px;}
.ye4{bottom:322.081057px;}
.y22{bottom:322.699762px;}
.y57{bottom:332.688907px;}
.yb7{bottom:337.255366px;}
.y7d{bottom:338.894170px;}
.y21{bottom:343.398003px;}
.ye3{bottom:344.418461px;}
.y56{bottom:353.387148px;}
.yb6{bottom:357.953608px;}
.y9b{bottom:359.592038px;}
.y7c{bottom:359.592413px;}
.y20{bottom:364.096246px;}
.ye2{bottom:366.755129px;}
.y55{bottom:374.085391px;}
.yb5{bottom:378.651850px;}
.y9a{bottom:380.290282px;}
.y7b{bottom:380.290642px;}
.y1f{bottom:384.794488px;}
.ye1{bottom:389.091803px;}
.y54{bottom:394.783633px;}
.yb4{bottom:399.350092px;}
.y99{bottom:400.988528px;}
.y7a{bottom:400.988887px;}
.y1e{bottom:405.492730px;}
.y53{bottom:415.481875px;}
.yb3{bottom:420.048338px;}
.y98{bottom:421.686772px;}
.y79{bottom:421.687137px;}
.ye0{bottom:423.428468px;}
.y1d{bottom:426.190973px;}
.y52{bottom:436.180118px;}
.yb2{bottom:440.746583px;}
.y97{bottom:442.385002px;}
.ydf{bottom:445.765133px;}
.y1c{bottom:446.889224px;}
.y51{bottom:456.878352px;}
.yb1{bottom:463.083247px;}
.y96{bottom:463.083612px;}
.y1b{bottom:467.587467px;}
.yde{bottom:468.102536px;}
.y50{bottom:477.576594px;}
.yb0{bottom:483.781497px;}
.y1a{bottom:488.285709px;}
.ydd{bottom:490.439204px;}
.y4f{bottom:498.274837px;}
.yaf{bottom:504.479739px;}
.y19{bottom:508.983952px;}
.ydc{bottom:512.775877px;}
.y4e{bottom:518.973078px;}
.yae{bottom:525.177982px;}
.y18{bottom:529.682193px;}
.y4d{bottom:539.671321px;}
.yad{bottom:545.876223px;}
.ydb{bottom:547.113276px;}
.y17{bottom:550.380436px;}
.y4c{bottom:560.369563px;}
.yac{bottom:566.574466px;}
.yda{bottom:569.449939px;}
.y16{bottom:571.078678px;}
.y4b{bottom:581.067805px;}
.yab{bottom:587.272708px;}
.y15{bottom:591.776920px;}
.yd9{bottom:591.786616px;}
.y4a{bottom:601.766048px;}
.yaa{bottom:607.970950px;}
.y14{bottom:612.475163px;}
.yd8{bottom:614.124014px;}
.y49{bottom:622.464297px;}
.ya9{bottom:628.669192px;}
.y13{bottom:633.173408px;}
.yd7{bottom:636.460688px;}
.y48{bottom:643.162539px;}
.ya8{bottom:649.367427px;}
.y12{bottom:653.871638px;}
.y47{bottom:663.860782px;}
.ya7{bottom:670.065669px;}
.yd6{bottom:670.797368px;}
.y46{bottom:684.559023px;}
.y11{bottom:686.569792px;}
.ya6{bottom:690.763912px;}
.yd5{bottom:693.134041px;}
.y45{bottom:705.257266px;}
.ya5{bottom:711.462153px;}
.yd4{bottom:715.470710px;}
.y10{bottom:719.268082px;}
.y44{bottom:725.955508px;}
.y78{bottom:725.955682px;}
.ya4{bottom:732.160396px;}
.yd3{bottom:737.808112px;}
.yf{bottom:739.966328px;}
.y43{bottom:746.653750px;}
.y77{bottom:746.653928px;}
.ya3{bottom:752.858638px;}
.ye{bottom:760.664572px;}
.y42{bottom:767.351993px;}
.y76{bottom:767.352168px;}
.y95{bottom:767.352173px;}
.yd2{bottom:772.144778px;}
.ya2{bottom:773.556880px;}
.yd{bottom:781.362813px;}
.y41{bottom:788.050238px;}
.y75{bottom:788.050409px;}
.y94{bottom:788.050418px;}
.ya1{bottom:794.255122px;}
.yd1{bottom:794.481442px;}
.yc{bottom:802.061056px;}
.y40{bottom:808.748468px;}
.y74{bottom:808.748652px;}
.y93{bottom:808.748664px;}
.ya0{bottom:814.953368px;}
.yd0{bottom:816.818116px;}
.yb{bottom:822.759298px;}
.y3f{bottom:829.446712px;}
.y73{bottom:829.446894px;}
.y92{bottom:829.446907px;}
.y9f{bottom:835.651612px;}
.ycf{bottom:839.154785px;}
.ya{bottom:843.457540px;}
.y3e{bottom:850.144958px;}
.y72{bottom:850.145137px;}
.y91{bottom:850.145148px;}
.y9e{bottom:856.349850px;}
.yce{bottom:861.492188px;}
.y9{bottom:864.155782px;}
.y3d{bottom:870.843201px;}
.y71{bottom:870.843378px;}
.y90{bottom:870.843391px;}
.y8{bottom:886.492628px;}
.y3c{bottom:891.541443px;}
.y70{bottom:891.541621px;}
.y8f{bottom:891.541633px;}
.ycd{bottom:895.829591px;}
.y7{bottom:908.829487px;}
.y3b{bottom:912.239686px;}
.y6f{bottom:912.239863px;}
.y8e{bottom:912.239875px;}
.ycc{bottom:918.166259px;}
.y6{bottom:931.166332px;}
.y3a{bottom:932.937927px;}
.y6e{bottom:932.938105px;}
.y8d{bottom:932.938117px;}
.ycb{bottom:940.502933px;}
.y39{bottom:953.636170px;}
.y6d{bottom:953.636348px;}
.y8c{bottom:953.636352px;}
.y5{bottom:966.425193px;}
.y38{bottom:974.334412px;}
.y6c{bottom:974.334593px;}
.y8b{bottom:974.334595px;}
.yca{bottom:974.839598px;}
.y4{bottom:992.484879px;}
.y37{bottom:995.032654px;}
.y6b{bottom:995.032836px;}
.yc9{bottom:997.176270px;}
.y36{bottom:1015.730896px;}
.y6a{bottom:1015.731078px;}
.y8a{bottom:1015.731079px;}
.y3{bottom:1018.544540px;}
.yc8{bottom:1019.513669px;}
.y35{bottom:1036.429138px;}
.y69{bottom:1036.429321px;}
.y1{bottom:1038.150009px;}
.yc7{bottom:1041.850342px;}
.y34{bottom:1057.127379px;}
.y68{bottom:1057.127562px;}
.y89{bottom:1057.127563px;}
.yc6{bottom:1076.187008px;}
.y33{bottom:1077.825622px;}
.y67{bottom:1077.825805px;}
.yc5{bottom:1098.523682px;}
.y32{bottom:1098.523864px;}
.y66{bottom:1098.524047px;}
.yc4{bottom:1119.221924px;}
.y31{bottom:1119.222106px;}
.y65{bottom:1119.222289px;}
.yc3{bottom:1139.920165px;}
.y30{bottom:1139.920349px;}
.y64{bottom:1139.920531px;}
.y9c{bottom:1156.724853px;}
.y2d{bottom:1156.725036px;}
.y61{bottom:1156.725219px;}
.h7{height:29.619139px;}
.h2{height:43.989259px;}
.h8{height:53.789057px;}
.h9{height:53.789061px;}
.h4{height:63.949219px;}
.h6{height:64.546875px;}
.h5{height:65.691214px;}
.h3{height:74.607419px;}
.hb{height:106.274781px;}
.ha{height:106.274964px;}
.hc{height:106.275147px;}
.h1{height:224.849991px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x5{left:127.575005px;}
.x2{left:159.124109px;}
.x7{left:180.450005px;}
.x6{left:202.560213px;}
.x3{left:204.369069px;}
.x9{left:252.262361px;}
.xb{left:321.344397px;}
.x4{left:364.451166px;}
.xc{left:367.711092px;}
.x8{left:446.456716px;}
.xa{left:601.706716px;}
.x1{left:636.019216px;}
@media print{
.v2{vertical-align:-21.484375pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-26.666666pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws2{word-spacing:-7.234375pt;}
.ws4{word-spacing:0.000000pt;}
._10{margin-left:-8.488450pt;}
._9{margin-left:-7.093740pt;}
._0{margin-left:-5.636549pt;}
._c{margin-left:-4.156252pt;}
._b{margin-left:-3.238952pt;}
._2{margin-left:-1.885982pt;}
._1{margin-left:-0.894811pt;}
._5{width:3.999988pt;}
._4{width:8.000002pt;}
._3{width:12.000000pt;}
._8{width:20.000002pt;}
._7{width:24.000002pt;}
._6{width:28.000000pt;}
._d{width:32.000001pt;}
._a{width:36.000000pt;}
._f{width:44.000000pt;}
._e{width:48.000001pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs5{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.666656pt;}
.y63{bottom:15.125651pt;}
.y2f{bottom:15.125977pt;}
.y9d{bottom:15.126302pt;}
.yc2{bottom:33.029297pt;}
.y62{bottom:33.029623pt;}
.y2e{bottom:33.029705pt;}
.y2a{bottom:97.497723pt;}
.y88{bottom:98.856446pt;}
.yc1{bottom:115.798180pt;}
.y87{bottom:117.254883pt;}
.y29{bottom:118.650065pt;}
.y2c{bottom:129.105790pt;}
.y60{bottom:130.137697pt;}
.yc0{bottom:134.196608pt;}
.y86{bottom:135.653321pt;}
.y5f{bottom:148.536142pt;}
.y2b{bottom:150.258220pt;}
.ybf{bottom:152.595046pt;}
.y85{bottom:154.051758pt;}
.y5e{bottom:166.934576pt;}
.ybe{bottom:170.993483pt;}
.y84{bottom:172.450196pt;}
.y28{bottom:176.453616pt;}
.y5d{bottom:185.333009pt;}
.ybd{bottom:189.391921pt;}
.y83{bottom:190.848633pt;}
.y27{bottom:194.852054pt;}
.y5c{bottom:203.731287pt;}
.ybc{bottom:207.790358pt;}
.y82{bottom:209.247075pt;}
.y26{bottom:213.250491pt;}
.y5b{bottom:222.129727pt;}
.ybb{bottom:226.188796pt;}
.y81{bottom:227.645513pt;}
.y25{bottom:231.648929pt;}
.y5a{bottom:240.528153pt;}
.yba{bottom:244.587233pt;}
.y80{bottom:246.043950pt;}
.y24{bottom:250.047367pt;}
.y59{bottom:258.926598pt;}
.yb9{bottom:262.985672pt;}
.y7f{bottom:264.442388pt;}
.y23{bottom:268.445795pt;}
.y58{bottom:277.325035pt;}
.yb8{bottom:281.384109pt;}
.y7e{bottom:282.840825pt;}
.ye4{bottom:286.294273pt;}
.y22{bottom:286.844233pt;}
.y57{bottom:295.723473pt;}
.yb7{bottom:299.782547pt;}
.y7d{bottom:301.239263pt;}
.y21{bottom:305.242669pt;}
.ye3{bottom:306.149744pt;}
.y56{bottom:314.121910pt;}
.yb6{bottom:318.180984pt;}
.y9b{bottom:319.637367pt;}
.y7c{bottom:319.637700pt;}
.y20{bottom:323.641108pt;}
.ye2{bottom:326.004560pt;}
.y55{bottom:332.520348pt;}
.yb5{bottom:336.579422pt;}
.y9a{bottom:338.035807pt;}
.y7b{bottom:338.036127pt;}
.y1f{bottom:342.039544pt;}
.ye1{bottom:345.859380pt;}
.y54{bottom:350.918785pt;}
.yb4{bottom:354.977860pt;}
.y99{bottom:356.434247pt;}
.y7a{bottom:356.434567pt;}
.y1e{bottom:360.437983pt;}
.y53{bottom:369.317223pt;}
.yb3{bottom:373.376300pt;}
.y98{bottom:374.832687pt;}
.y79{bottom:374.833011pt;}
.ye0{bottom:376.380860pt;}
.y1d{bottom:378.836420pt;}
.y52{bottom:387.715660pt;}
.yb2{bottom:391.774740pt;}
.y97{bottom:393.231113pt;}
.ydf{bottom:396.235673pt;}
.y1c{bottom:397.234866pt;}
.y51{bottom:406.114091pt;}
.yb1{bottom:411.629553pt;}
.y96{bottom:411.629877pt;}
.y1b{bottom:415.633304pt;}
.yde{bottom:416.091143pt;}
.y50{bottom:424.512528pt;}
.yb0{bottom:430.027997pt;}
.y1a{bottom:434.031741pt;}
.ydd{bottom:435.945959pt;}
.y4f{bottom:442.910966pt;}
.yaf{bottom:448.426434pt;}
.y19{bottom:452.430179pt;}
.ydc{bottom:455.800780pt;}
.y4e{bottom:461.309403pt;}
.yae{bottom:466.824872pt;}
.y18{bottom:470.828616pt;}
.y4d{bottom:479.707841pt;}
.yad{bottom:485.223309pt;}
.ydb{bottom:486.322912pt;}
.y17{bottom:489.227054pt;}
.y4c{bottom:498.106278pt;}
.yac{bottom:503.621747pt;}
.yda{bottom:506.177724pt;}
.y16{bottom:507.625491pt;}
.y4b{bottom:516.504716pt;}
.yab{bottom:522.020184pt;}
.y15{bottom:526.023929pt;}
.yd9{bottom:526.032548pt;}
.y4a{bottom:534.903153pt;}
.yaa{bottom:540.418622pt;}
.y14{bottom:544.422367pt;}
.yd8{bottom:545.888013pt;}
.y49{bottom:553.301598pt;}
.ya9{bottom:558.817060pt;}
.y13{bottom:562.820807pt;}
.yd7{bottom:565.742833pt;}
.y48{bottom:571.700035pt;}
.ya8{bottom:577.215491pt;}
.y12{bottom:581.219233pt;}
.y47{bottom:590.098472pt;}
.ya7{bottom:595.613928pt;}
.yd6{bottom:596.264327pt;}
.y46{bottom:608.496909pt;}
.y11{bottom:610.284260pt;}
.ya6{bottom:614.012366pt;}
.yd5{bottom:616.119148pt;}
.y45{bottom:626.895347pt;}
.ya5{bottom:632.410803pt;}
.yd4{bottom:635.973965pt;}
.y10{bottom:639.349407pt;}
.y44{bottom:645.293785pt;}
.y78{bottom:645.293940pt;}
.ya4{bottom:650.809241pt;}
.yd3{bottom:655.829433pt;}
.yf{bottom:657.747847pt;}
.y43{bottom:663.692222pt;}
.y77{bottom:663.692380pt;}
.ya3{bottom:669.207678pt;}
.ye{bottom:676.146286pt;}
.y42{bottom:682.090660pt;}
.y76{bottom:682.090816pt;}
.y95{bottom:682.090820pt;}
.yd2{bottom:686.350913pt;}
.ya2{bottom:687.606116pt;}
.yd{bottom:694.544723pt;}
.y41{bottom:700.489100pt;}
.y75{bottom:700.489253pt;}
.y94{bottom:700.489260pt;}
.ya1{bottom:706.004553pt;}
.yd1{bottom:706.205727pt;}
.yc{bottom:712.943161pt;}
.y40{bottom:718.887527pt;}
.y74{bottom:718.887691pt;}
.y93{bottom:718.887701pt;}
.ya0{bottom:724.402993pt;}
.yd0{bottom:726.060548pt;}
.yb{bottom:731.341598pt;}
.y3f{bottom:737.285967pt;}
.y73{bottom:737.286128pt;}
.y92{bottom:737.286139pt;}
.y9f{bottom:742.801433pt;}
.ycf{bottom:745.915365pt;}
.ya{bottom:749.740036pt;}
.y3e{bottom:755.684407pt;}
.y72{bottom:755.684566pt;}
.y91{bottom:755.684576pt;}
.y9e{bottom:761.199867pt;}
.yce{bottom:765.770833pt;}
.y9{bottom:768.138473pt;}
.y3d{bottom:774.082845pt;}
.y71{bottom:774.083003pt;}
.y90{bottom:774.083014pt;}
.y8{bottom:787.993447pt;}
.y3c{bottom:792.481283pt;}
.y70{bottom:792.481441pt;}
.y8f{bottom:792.481451pt;}
.ycd{bottom:796.292970pt;}
.y7{bottom:807.848433pt;}
.y3b{bottom:810.879720pt;}
.y6f{bottom:810.879878pt;}
.y8e{bottom:810.879889pt;}
.ycc{bottom:816.147786pt;}
.y6{bottom:827.703407pt;}
.y3a{bottom:829.278157pt;}
.y6e{bottom:829.278316pt;}
.y8d{bottom:829.278327pt;}
.ycb{bottom:836.002607pt;}
.y39{bottom:847.676595pt;}
.y6d{bottom:847.676753pt;}
.y8c{bottom:847.676757pt;}
.y5{bottom:859.044616pt;}
.y38{bottom:866.075032pt;}
.y6c{bottom:866.075194pt;}
.y8b{bottom:866.075195pt;}
.yca{bottom:866.524087pt;}
.y4{bottom:882.208781pt;}
.y37{bottom:884.473470pt;}
.y6b{bottom:884.473632pt;}
.yc9{bottom:886.378907pt;}
.y36{bottom:902.871908pt;}
.y6a{bottom:902.872069pt;}
.y8a{bottom:902.872070pt;}
.y3{bottom:905.372924pt;}
.yc8{bottom:906.234373pt;}
.y35{bottom:921.270344pt;}
.y69{bottom:921.270507pt;}
.y1{bottom:922.800008pt;}
.yc7{bottom:926.089193pt;}
.y34{bottom:939.668782pt;}
.y68{bottom:939.668944pt;}
.y89{bottom:939.668945pt;}
.yc6{bottom:956.610674pt;}
.y33{bottom:958.067219pt;}
.y67{bottom:958.067382pt;}
.yc5{bottom:976.465495pt;}
.y32{bottom:976.465657pt;}
.y66{bottom:976.465819pt;}
.yc4{bottom:994.863932pt;}
.y31{bottom:994.864094pt;}
.y65{bottom:994.864257pt;}
.yc3{bottom:1013.262369pt;}
.y30{bottom:1013.262532pt;}
.y64{bottom:1013.262695pt;}
.y9c{bottom:1028.199869pt;}
.y2d{bottom:1028.200032pt;}
.y61{bottom:1028.200195pt;}
.h7{height:26.328124pt;}
.h2{height:39.101563pt;}
.h8{height:47.812495pt;}
.h9{height:47.812499pt;}
.h4{height:56.843750pt;}
.h6{height:57.375000pt;}
.h5{height:58.392190pt;}
.h3{height:66.317706pt;}
.hb{height:94.466472pt;}
.ha{height:94.466635pt;}
.hc{height:94.466797pt;}
.h1{height:199.866659pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x5{left:113.400004pt;}
.x2{left:141.443652pt;}
.x7{left:160.400004pt;}
.x6{left:180.053523pt;}
.x3{left:181.661395pt;}
.x9{left:224.233210pt;}
.xb{left:285.639464pt;}
.x4{left:323.956592pt;}
.xc{left:326.854304pt;}
.x8{left:396.850414pt;}
.xa{left:534.850414pt;}
.x1{left:565.350414pt;}
}




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