
    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_c47078593a8c0ec1be1aa250.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_24fcc27e3e940b827821db5f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_9a63616e07a906e994a1c279.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_729ce5224eb4482dde0e1d8f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_5b3b9a76720c2810764f8679.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935547;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);}
.v1{vertical-align:-41.940034px;}
.v2{vertical-align:-38.880031px;}
.v5{vertical-align:-35.856029px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.152008px;}
.v3{vertical-align:38.880031px;}
.v4{vertical-align:46.764037px;}
.lsf{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.049344px;}
.ls6{letter-spacing:0.061776px;}
.lsd{letter-spacing:0.061992px;}
.ls4{letter-spacing:0.062648px;}
.ls0{letter-spacing:0.070224px;}
.ls7{letter-spacing:28.897799px;}
.ls8{letter-spacing:40.572392px;}
.ls5{letter-spacing:42.192394px;}
.lsb{letter-spacing:43.436015px;}
.lsc{letter-spacing:43.544015px;}
.ls9{letter-spacing:46.112197px;}
.lsa{letter-spacing:46.188397px;}
.ls2{letter-spacing:52.981818px;}
.lse{letter-spacing:79.457392px;}
.ls3{letter-spacing:123.933987px;}
.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;}
}
.ws10{word-spacing:-46.717381px;}
.ws9{word-spacing:-43.384715px;}
.ws14{word-spacing:-40.022024px;}
.ws17{word-spacing:-33.356691px;}
.ws16{word-spacing:-30.024024px;}
.ws8{word-spacing:-28.913135px;}
.ws15{word-spacing:-26.691357px;}
.ws12{word-spacing:-0.130622px;}
.ws18{word-spacing:0.000000px;}
.ws6{word-spacing:0.193358px;}
.ws11{word-spacing:0.262659px;}
.ws13{word-spacing:0.417929px;}
.wsf{word-spacing:0.463981px;}
.wse{word-spacing:0.572036px;}
.wsd{word-spacing:0.633760px;}
.wsc{word-spacing:1.929683px;}
.wsb{word-spacing:1.929996px;}
.ws5{word-spacing:3.117769px;}
.ws3{word-spacing:6.309611px;}
.ws0{word-spacing:6.650658px;}
.ws4{word-spacing:6.681714px;}
.ws1{word-spacing:6.682644px;}
.ws2{word-spacing:6.897701px;}
.ws7{word-spacing:9.481277px;}
.wsa{word-spacing:9.589270px;}
._e{margin-left:-2298.567783px;}
._f{margin-left:-2258.483767px;}
._b{margin-left:-19.673772px;}
._17{margin-left:-14.904012px;}
._16{margin-left:-12.553556px;}
._1{margin-left:-10.877089px;}
._3{margin-left:-8.543824px;}
._9{margin-left:-6.914904px;}
._8{margin-left:-5.540678px;}
._14{margin-left:-3.647768px;}
._11{margin-left:-2.533783px;}
._6{margin-left:-1.103039px;}
._0{width:1.144549px;}
._15{width:28.944023px;}
._13{width:30.469920px;}
._a{width:32.881077px;}
._c{width:35.700714px;}
._12{width:37.964151px;}
._7{width:41.725059px;}
._2{width:45.365280px;}
._5{width:50.484468px;}
._4{width:54.077444px;}
._10{width:80.217741px;}
._d{width:881.391297px;}
.fc3{color:rgb(13,96,171);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,32,96);}
.fs6{font-size:96.012077px;}
.fs3{font-size:104.004083px;}
.fs8{font-size:108.000086px;}
.fs1{font-size:111.996090px;}
.fs9{font-size:119.988096px;}
.fs7{font-size:131.976106px;}
.fs5{font-size:143.964115px;}
.fs2{font-size:156.060125px;}
.fs0{font-size:168.048134px;}
.fs4{font-size:192.024154px;}
.y0{bottom:0.000000px;}
.y4c{bottom:52.142892px;}
.y4b{bottom:84.542918px;}
.y48{bottom:84.543068px;}
.y3d{bottom:106.089085px;}
.y4a{bottom:116.942944px;}
.y47{bottom:116.943094px;}
.y3c{bottom:148.479119px;}
.y49{bottom:149.342969px;}
.y46{bottom:149.343119px;}
.y3b{bottom:190.842153px;}
.y35{bottom:208.905167px;}
.y45{bottom:214.143171px;}
.y3a{bottom:233.232187px;}
.y44{bottom:246.543197px;}
.y34{bottom:269.304215px;}
.y39{bottom:275.595220px;}
.y43{bottom:278.943223px;}
.y42{bottom:311.343249px;}
.y38{bottom:317.985254px;}
.y37{bottom:360.348288px;}
.y41{bottom:376.143301px;}
.y33{bottom:390.102312px;}
.y36{bottom:402.711322px;}
.y40{bottom:408.543327px;}
.y3f{bottom:440.943353px;}
.y3e{bottom:473.343379px;}
.y9{bottom:613.284491px;}
.y8{bottom:668.985535px;}
.y7{bottom:724.686580px;}
.y32{bottom:977.379782px;}
.y31{bottom:979.890784px;}
.y30{bottom:1058.190847px;}
.y2f{bottom:1060.728849px;}
.y24{bottom:1062.483850px;}
.y23{bottom:1118.184895px;}
.y2e{bottom:1139.001911px;}
.y2d{bottom:1141.539913px;}
.y22{bottom:1182.876946px;}
.y2c{bottom:1222.350978px;}
.y21{bottom:1238.577991px;}
.y2b{bottom:1300.624040px;}
.y29{bottom:1303.162043px;}
.y20{bottom:1303.270043px;}
.y2a{bottom:1383.973107px;}
.y1f{bottom:1440.160152px;}
.y27{bottom:1453.438163px;}
.y28{bottom:1493.938195px;}
.y26{bottom:1534.411228px;}
.y25{bottom:1545.646237px;}
.y14{bottom:1789.276431px;}
.y13{bottom:1915.063532px;}
.y17{bottom:2053.324643px;}
.y16{bottom:2103.706683px;}
.y12{bottom:2231.476785px;}
.y4e{bottom:2316.469853px;}
.y4d{bottom:2351.326881px;}
.y11{bottom:2358.079886px;}
.y10{bottom:2408.461927px;}
.yf{bottom:2521.382017px;}
.ye{bottom:2654.519124px;}
.yd{bottom:2716.916174px;}
.yc{bottom:2779.313223px;}
.yb{bottom:2841.710273px;}
.ya{bottom:2904.107323px;}
.y15{bottom:2995.607396px;}
.y1{bottom:3100.667481px;}
.y1e{bottom:3336.674669px;}
.y1d{bottom:3398.747719px;}
.y1c{bottom:3461.792769px;}
.y1b{bottom:3526.751821px;}
.y1a{bottom:3576.836861px;}
.y19{bottom:3700.982961px;}
.y18{bottom:3751.068001px;}
.y6{bottom:3977.322182px;}
.y5{bottom:4033.023226px;}
.y4{bottom:4099.308279px;}
.y3{bottom:4149.393320px;}
.y2{bottom:4199.478360px;}
.h8{height:78.627016px;}
.h7{height:78.679750px;}
.h9{height:87.413203px;}
.h6{height:96.146655px;}
.h5{height:104.880107px;}
.h2{height:113.692239px;}
.h1{height:122.425692px;}
.h4{height:122.532637px;}
.h3{height:139.892596px;}
.h0{height:5055.000000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x28{left:59.400048px;}
.x29{left:69.741056px;}
.x27{left:84.753068px;}
.x3{left:127.872102px;}
.x2{left:141.588113px;}
.xd{left:175.743141px;}
.xf{left:214.812172px;}
.x16{left:395.496316px;}
.x18{left:581.931466px;}
.x1{left:768.231615px;}
.x26{left:988.011790px;}
.x25{left:998.352799px;}
.x14{left:1042.092834px;}
.x15{left:1052.622842px;}
.x19{left:1086.534869px;}
.x1a{left:1096.524877px;}
.x17{left:1101.519881px;}
.x6{left:1192.887954px;}
.x9{left:1222.641978px;}
.xa{left:1269.892016px;}
.x7{left:1310.959049px;}
.x4{left:1349.704080px;}
.x13{left:1356.130085px;}
.x5{left:1370.332096px;}
.xb{left:1441.936154px;}
.xe{left:1465.210172px;}
.x8{left:1547.911238px;}
.xc{left:1647.811318px;}
.x10{left:1711.882370px;}
.x21{left:1833.514467px;}
.x1f{left:1836.187469px;}
.x1e{left:1840.291472px;}
.x20{left:1874.581500px;}
.x23{left:1878.010502px;}
.x22{left:1909.546528px;}
.x24{left:2078.593663px;}
.x11{left:2481.361985px;}
.x12{left:2523.887469px;}
.x2a{left:2691.797153px;}
.x2b{left:2707.646166px;}
.x1d{left:2818.574705px;}
.x1c{left:2839.382272px;}
.x1b{left:3016.877413px;}
@media print{
.v1{vertical-align:-37.280030pt;}
.v2{vertical-align:-34.560028pt;}
.v5{vertical-align:-31.872025pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.024007pt;}
.v3{vertical-align:34.560028pt;}
.v4{vertical-align:41.568033pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.043861pt;}
.ls6{letter-spacing:0.054912pt;}
.lsd{letter-spacing:0.055104pt;}
.ls4{letter-spacing:0.055688pt;}
.ls0{letter-spacing:0.062421pt;}
.ls7{letter-spacing:25.686933pt;}
.ls8{letter-spacing:36.064349pt;}
.ls5{letter-spacing:37.504350pt;}
.lsb{letter-spacing:38.609791pt;}
.lsc{letter-spacing:38.705791pt;}
.ls9{letter-spacing:40.988619pt;}
.lsa{letter-spacing:41.056353pt;}
.ls2{letter-spacing:47.094950pt;}
.lse{letter-spacing:70.628793pt;}
.ls3{letter-spacing:110.163544pt;}
.ws10{word-spacing:-41.526561pt;}
.ws9{word-spacing:-38.564191pt;}
.ws14{word-spacing:-35.575132pt;}
.ws17{word-spacing:-29.650392pt;}
.ws16{word-spacing:-26.688021pt;}
.ws8{word-spacing:-25.700565pt;}
.ws15{word-spacing:-23.725651pt;}
.ws12{word-spacing:-0.116109pt;}
.ws18{word-spacing:0.000000pt;}
.ws6{word-spacing:0.171874pt;}
.ws11{word-spacing:0.233475pt;}
.ws13{word-spacing:0.371492pt;}
.wsf{word-spacing:0.412427pt;}
.wse{word-spacing:0.508476pt;}
.wsd{word-spacing:0.563342pt;}
.wsc{word-spacing:1.715274pt;}
.wsb{word-spacing:1.715552pt;}
.ws5{word-spacing:2.771350pt;}
.ws3{word-spacing:5.608543pt;}
.ws0{word-spacing:5.911696pt;}
.ws4{word-spacing:5.939302pt;}
.ws1{word-spacing:5.940128pt;}
.ws2{word-spacing:6.131290pt;}
.ws7{word-spacing:8.427802pt;}
.wsa{word-spacing:8.523796pt;}
._e{margin-left:-2043.171363pt;}
._f{margin-left:-2007.541126pt;}
._b{margin-left:-17.487797pt;}
._17{margin-left:-13.248011pt;}
._16{margin-left:-11.158716pt;}
._1{margin-left:-9.668523pt;}
._3{margin-left:-7.594510pt;}
._9{margin-left:-6.146582pt;}
._8{margin-left:-4.925047pt;}
._14{margin-left:-3.242460pt;}
._11{margin-left:-2.252251pt;}
._6{margin-left:-0.980480pt;}
._0{width:1.017376pt;}
._15{width:25.728021pt;}
._13{width:27.084374pt;}
._a{width:29.227624pt;}
._c{width:31.733968pt;}
._12{width:33.745912pt;}
._7{width:37.088942pt;}
._2{width:40.324693pt;}
._5{width:44.875083pt;}
._4{width:48.068839pt;}
._10{width:71.304658pt;}
._d{width:783.458931pt;}
.fs6{font-size:85.344068pt;}
.fs3{font-size:92.448074pt;}
.fs8{font-size:96.000077pt;}
.fs1{font-size:99.552080pt;}
.fs9{font-size:106.656085pt;}
.fs7{font-size:117.312094pt;}
.fs5{font-size:127.968102pt;}
.fs2{font-size:138.720111pt;}
.fs0{font-size:149.376120pt;}
.fs4{font-size:170.688137pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:46.349237pt;}
.y4b{bottom:75.149260pt;}
.y48{bottom:75.149393pt;}
.y3d{bottom:94.301409pt;}
.y4a{bottom:103.949283pt;}
.y47{bottom:103.949416pt;}
.y3c{bottom:131.981439pt;}
.y49{bottom:132.749306pt;}
.y46{bottom:132.749440pt;}
.y3b{bottom:169.637469pt;}
.y35{bottom:185.693482pt;}
.y45{bottom:190.349486pt;}
.y3a{bottom:207.317499pt;}
.y44{bottom:219.149509pt;}
.y34{bottom:239.381525pt;}
.y39{bottom:244.973529pt;}
.y43{bottom:247.949532pt;}
.y42{bottom:276.749555pt;}
.y38{bottom:282.653559pt;}
.y37{bottom:320.309590pt;}
.y41{bottom:334.349601pt;}
.y33{bottom:346.757611pt;}
.y36{bottom:357.965620pt;}
.y40{bottom:363.149624pt;}
.y3f{bottom:391.949647pt;}
.y3e{bottom:420.749670pt;}
.y9{bottom:545.141769pt;}
.y8{bottom:594.653809pt;}
.y7{bottom:644.165849pt;}
.y32{bottom:868.782028pt;}
.y31{bottom:871.014030pt;}
.y30{bottom:940.614086pt;}
.y2f{bottom:942.870088pt;}
.y24{bottom:944.430089pt;}
.y23{bottom:993.942128pt;}
.y2e{bottom:1012.446143pt;}
.y2d{bottom:1014.702145pt;}
.y22{bottom:1051.446174pt;}
.y2c{bottom:1086.534203pt;}
.y21{bottom:1100.958214pt;}
.y2b{bottom:1156.110258pt;}
.y29{bottom:1158.366260pt;}
.y20{bottom:1158.462260pt;}
.y2a{bottom:1230.198317pt;}
.y1f{bottom:1280.142357pt;}
.y27{bottom:1291.945034pt;}
.y28{bottom:1327.945062pt;}
.y26{bottom:1363.921091pt;}
.y25{bottom:1373.907766pt;}
.y14{bottom:1590.467939pt;}
.y13{bottom:1702.278695pt;}
.y17{bottom:1825.177460pt;}
.y16{bottom:1869.961496pt;}
.y12{bottom:1983.534920pt;}
.y4e{bottom:2059.084314pt;}
.y4d{bottom:2090.068339pt;}
.y11{bottom:2096.071010pt;}
.y10{bottom:2140.855046pt;}
.yf{bottom:2241.228460pt;}
.ye{bottom:2359.572554pt;}
.yd{bottom:2415.036599pt;}
.yc{bottom:2470.500643pt;}
.yb{bottom:2525.964687pt;}
.ya{bottom:2581.428732pt;}
.y15{bottom:2662.762130pt;}
.y1{bottom:2756.148872pt;}
.y1e{bottom:2965.933039pt;}
.y1d{bottom:3021.109084pt;}
.y1c{bottom:3077.149128pt;}
.y1b{bottom:3134.890508pt;}
.y1a{bottom:3179.410544pt;}
.y19{bottom:3289.762632pt;}
.y18{bottom:3334.282667pt;}
.y6{bottom:3535.397495pt;}
.y5{bottom:3584.909535pt;}
.y4{bottom:3643.829582pt;}
.y3{bottom:3688.349617pt;}
.y2{bottom:3732.869653pt;}
.h8{height:69.890681pt;}
.h7{height:69.937556pt;}
.h9{height:77.700625pt;}
.h6{height:85.463693pt;}
.h5{height:93.226762pt;}
.h2{height:101.059768pt;}
.h1{height:108.822837pt;}
.h4{height:108.917900pt;}
.h3{height:124.348974pt;}
.h0{height:4493.333333pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x28{left:52.800042pt;}
.x29{left:61.992050pt;}
.x27{left:75.336060pt;}
.x3{left:113.664091pt;}
.x2{left:125.856101pt;}
.xd{left:156.216125pt;}
.xf{left:190.944153pt;}
.x16{left:351.552281pt;}
.x18{left:517.272414pt;}
.x1{left:682.872546pt;}
.x26{left:878.232703pt;}
.x25{left:887.424710pt;}
.x14{left:926.304741pt;}
.x15{left:935.664749pt;}
.x19{left:965.808773pt;}
.x1a{left:974.688780pt;}
.x17{left:979.128783pt;}
.x6{left:1060.344848pt;}
.x9{left:1086.792869pt;}
.xa{left:1128.792903pt;}
.x7{left:1165.296932pt;}
.x4{left:1199.736960pt;}
.x13{left:1205.448964pt;}
.x5{left:1218.072974pt;}
.xb{left:1281.721025pt;}
.xe{left:1302.409042pt;}
.x8{left:1375.921101pt;}
.xc{left:1464.721172pt;}
.x10{left:1521.673217pt;}
.x21{left:1629.790637pt;}
.x1f{left:1632.166639pt;}
.x1e{left:1635.814642pt;}
.x20{left:1666.294666pt;}
.x23{left:1669.342669pt;}
.x22{left:1697.374691pt;}
.x24{left:1847.638811pt;}
.x11{left:2205.655098pt;}
.x12{left:2243.455528pt;}
.x2a{left:2392.708581pt;}
.x2b{left:2406.796592pt;}
.x1d{left:2505.399738pt;}
.x1c{left:2523.895352pt;}
.x1b{left:2681.668812pt;}
}




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