
    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_bfce5b37a8097e4dc3e8c621.woff2')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_c1415dfe79b72e50502281ae.woff2')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_7cca0b103682b5c8f68b4a34.woff2')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_348b8c78bb8ad793009c5cce.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f1e214ba60a4b9c25004f7a7.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.ls1{letter-spacing:198.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:-36.000000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-8.138672px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-13.500000px;}
._16{margin-left:-9.281250px;}
._15{margin-left:-7.980467px;}
._0{margin-left:-6.364624px;}
._4{margin-left:-5.343750px;}
._2{margin-left:-3.879080px;}
._17{margin-left:-2.671873px;}
._1{margin-left:-1.548819px;}
._3{width:4.500000px;}
._a{width:8.007863px;}
._9{width:9.248039px;}
._8{width:12.507934px;}
._7{width:13.748025px;}
._d{width:21.507876px;}
._b{width:22.748037px;}
._c{width:26.999997px;}
._10{width:31.499999px;}
._6{width:36.000024px;}
._5{width:40.499999px;}
._e{width:45.000001px;}
._13{width:49.499989px;}
._11{width:53.999999px;}
._12{width:198.000000px;}
._14{width:2106.000000px;}
.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;}
.y5e{bottom:17.016358px;}
.y2c{bottom:17.016724px;}
.yaa{bottom:17.017090px;}
.ydd{bottom:37.157959px;}
.y5d{bottom:37.158326px;}
.y2b{bottom:37.158418px;}
.ya8{bottom:110.355098px;}
.y5b{bottom:115.702522px;}
.y29{bottom:116.232793px;}
.y87{bottom:118.979737px;}
.ydc{bottom:125.706298px;}
.ya7{bottom:131.053343px;}
.y5a{bottom:138.039187px;}
.y86{bottom:141.316402px;}
.ydb{bottom:146.404540px;}
.y28{bottom:150.990599px;}
.ya6{bottom:151.751587px;}
.y59{bottom:160.376219px;}
.y85{bottom:163.653434px;}
.yda{bottom:167.102783px;}
.ya5{bottom:172.449833px;}
.y27{bottom:173.327453px;}
.y58{bottom:182.712892px;}
.y84{bottom:185.990107px;}
.yd9{bottom:187.801028px;}
.ya4{bottom:193.148077px;}
.y26{bottom:195.664310px;}
.y57{bottom:205.049932px;}
.y83{bottom:206.688353px;}
.yd8{bottom:208.499268px;}
.ya3{bottom:213.846307px;}
.y25{bottom:218.001162px;}
.y56{bottom:227.386597px;}
.yd7{bottom:229.197511px;}
.ya2{bottom:234.544553px;}
.y24{bottom:240.338016px;}
.y82{bottom:248.084843px;}
.y55{bottom:249.723449px;}
.yd6{bottom:249.895753px;}
.ya1{bottom:255.242798px;}
.y23{bottom:262.674868px;}
.y81{bottom:268.783087px;}
.yd5{bottom:270.593995px;}
.y54{bottom:272.060302px;}
.ya0{bottom:275.941043px;}
.y22{bottom:285.011722px;}
.y80{bottom:291.120125px;}
.yd4{bottom:291.292238px;}
.y53{bottom:294.397162px;}
.y9f{bottom:296.639288px;}
.y21{bottom:307.348574px;}
.yd3{bottom:311.990483px;}
.y7f{bottom:313.456797px;}
.y52{bottom:316.734014px;}
.y9e{bottom:317.337517px;}
.y20{bottom:329.685428px;}
.yd2{bottom:332.688721px;}
.y7e{bottom:335.793831px;}
.y9d{bottom:338.035762px;}
.y51{bottom:339.070867px;}
.y1f{bottom:352.022278px;}
.yd1{bottom:353.386963px;}
.y7d{bottom:358.130494px;}
.y9c{bottom:358.734007px;}
.y50{bottom:359.769098px;}
.yd0{bottom:374.085205px;}
.y1e{bottom:374.359132px;}
.y9b{bottom:379.432253px;}
.y4f{bottom:380.467343px;}
.y7c{bottom:380.467537px;}
.ycf{bottom:394.783448px;}
.y1d{bottom:396.695984px;}
.y9a{bottom:400.130498px;}
.y4e{bottom:402.804202px;}
.y7b{bottom:402.804209px;}
.yce{bottom:415.481693px;}
.y1c{bottom:419.032838px;}
.y99{bottom:420.828742px;}
.y4d{bottom:425.141048px;}
.y7a{bottom:425.141243px;}
.ycd{bottom:436.179931px;}
.y1b{bottom:441.369687px;}
.y98{bottom:441.526973px;}
.y4c{bottom:447.477898px;}
.y79{bottom:447.477912px;}
.ycc{bottom:456.878173px;}
.y97{bottom:462.225217px;}
.y1a{bottom:463.706541px;}
.y4b{bottom:469.814752px;}
.y78{bottom:469.814946px;}
.ycb{bottom:477.576415px;}
.y96{bottom:482.923822px;}
.y19{bottom:486.043393px;}
.y4a{bottom:492.151604px;}
.y77{bottom:492.151609px;}
.yca{bottom:498.274657px;}
.y95{bottom:503.622067px;}
.y18{bottom:508.380247px;}
.y49{bottom:514.488457px;}
.y76{bottom:514.488652px;}
.yc9{bottom:518.972902px;}
.y94{bottom:524.320312px;}
.y17{bottom:530.717099px;}
.y48{bottom:536.825315px;}
.y75{bottom:536.825324px;}
.yc8{bottom:539.671141px;}
.y93{bottom:545.018558px;}
.y16{bottom:553.053952px;}
.y47{bottom:559.162167px;}
.y74{bottom:559.162358px;}
.yc7{bottom:560.369383px;}
.y92{bottom:565.716802px;}
.y15{bottom:573.752198px;}
.yc6{bottom:581.067625px;}
.y46{bottom:581.499021px;}
.y73{bottom:581.499022px;}
.y91{bottom:586.415033px;}
.y14{bottom:594.450443px;}
.yc5{bottom:601.765868px;}
.y45{bottom:603.835873px;}
.y72{bottom:603.836054px;}
.y90{bottom:607.113277px;}
.yc4{bottom:622.464112px;}
.y44{bottom:626.172727px;}
.y8f{bottom:627.811522px;}
.y13{bottom:628.787198px;}
.yc3{bottom:643.162360px;}
.y43{bottom:648.509579px;}
.y71{bottom:648.509765px;}
.y8e{bottom:648.509768px;}
.y12{bottom:663.124103px;}
.yc2{bottom:663.860603px;}
.y42{bottom:670.846432px;}
.y70{bottom:670.846437px;}
.yc1{bottom:684.558833px;}
.y11{bottom:685.460947px;}
.y41{bottom:693.183290px;}
.y6f{bottom:693.183471px;}
.y8d{bottom:693.183472px;}
.yc0{bottom:705.257077px;}
.y10{bottom:707.797811px;}
.y6e{bottom:715.520134px;}
.y8c{bottom:715.520138px;}
.y40{bottom:715.520142px;}
.yec{bottom:723.154541px;}
.ybf{bottom:725.955318px;}
.yf{bottom:730.134665px;}
.y3f{bottom:737.856996px;}
.y6d{bottom:737.857177px;}
.ybe{bottom:746.653561px;}
.yeb{bottom:746.653568px;}
.ye{bottom:752.471517px;}
.y8b{bottom:760.193842px;}
.y3e{bottom:760.193848px;}
.y6c{bottom:760.193849px;}
.ybd{bottom:767.351803px;}
.yea{bottom:767.351813px;}
.yd{bottom:774.808371px;}
.y3d{bottom:782.530702px;}
.y6b{bottom:782.530882px;}
.ybc{bottom:788.050045px;}
.ye9{bottom:788.050053px;}
.yc{bottom:797.145223px;}
.y3c{bottom:804.867554px;}
.y6a{bottom:804.867561px;}
.ybb{bottom:808.748288px;}
.ye8{bottom:808.748296px;}
.yb{bottom:819.482077px;}
.y3b{bottom:827.204408px;}
.y69{bottom:827.204602px;}
.yba{bottom:829.446532px;}
.ye7{bottom:829.446538px;}
.ya{bottom:841.818929px;}
.y3a{bottom:849.541258px;}
.y68{bottom:849.541267px;}
.yb9{bottom:850.144775px;}
.ye6{bottom:850.144780px;}
.y9{bottom:864.155782px;}
.yb8{bottom:870.843016px;}
.ye5{bottom:870.843023px;}
.y39{bottom:871.878112px;}
.y67{bottom:871.878299px;}
.y8{bottom:886.492628px;}
.ye4{bottom:891.541252px;}
.yb7{bottom:891.541259px;}
.y38{bottom:894.214964px;}
.y66{bottom:894.214973px;}
.y7{bottom:908.829487px;}
.ye3{bottom:912.239497px;}
.yb6{bottom:912.239501px;}
.y37{bottom:916.551817px;}
.y8a{bottom:916.551997px;}
.y65{bottom:916.552007px;}
.y6{bottom:931.166332px;}
.yb5{bottom:932.937743px;}
.ye2{bottom:932.937748px;}
.y89{bottom:938.888669px;}
.y36{bottom:938.888671px;}
.yb4{bottom:953.635985px;}
.ye1{bottom:953.635990px;}
.y35{bottom:961.225525px;}
.y88{bottom:961.225703px;}
.y64{bottom:961.225704px;}
.y5{bottom:966.425193px;}
.yb3{bottom:974.334228px;}
.ye0{bottom:974.334233px;}
.y34{bottom:983.562377px;}
.y4{bottom:992.484879px;}
.yb2{bottom:995.032470px;}
.y33{bottom:1005.899230px;}
.y63{bottom:1005.899419px;}
.ydf{bottom:1015.730712px;}
.yb1{bottom:1015.730714px;}
.y3{bottom:1018.544540px;}
.y32{bottom:1028.236084px;}
.yb0{bottom:1036.428956px;}
.y1{bottom:1038.150009px;}
.y31{bottom:1050.572936px;}
.y62{bottom:1050.573116px;}
.yde{bottom:1057.127196px;}
.yaf{bottom:1057.127197px;}
.y30{bottom:1072.909789px;}
.yae{bottom:1077.825439px;}
.y2f{bottom:1095.246643px;}
.y61{bottom:1095.246826px;}
.yad{bottom:1098.523682px;}
.y2e{bottom:1117.583495px;}
.y60{bottom:1117.583498px;}
.yac{bottom:1119.221924px;}
.yab{bottom:1139.920165px;}
.y2d{bottom:1139.920349px;}
.y5f{bottom:1139.920531px;}
.ya9{bottom:1156.724853px;}
.y2a{bottom:1156.725036px;}
.y5c{bottom:1156.725219px;}
.h7{height:29.619139px;}
.h2{height:43.989259px;}
.h4{height:63.949219px;}
.h6{height:64.546875px;}
.h5{height:65.691214px;}
.h3{height:74.607419px;}
.h9{height:106.274781px;}
.h8{height:106.274964px;}
.ha{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:143.700462px;}
.x7{left:180.450005px;}
.x9{left:181.575005px;}
.x3{left:191.959058px;}
.x6{left:206.792146px;}
.x4{left:328.951017px;}
.x8{left:446.456716px;}
.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;}
.ls1{letter-spacing:176.000000pt;}
.ws3{word-spacing:-32.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-7.234375pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-12.000000pt;}
._16{margin-left:-8.250000pt;}
._15{margin-left:-7.093748pt;}
._0{margin-left:-5.657443pt;}
._4{margin-left:-4.750000pt;}
._2{margin-left:-3.448071pt;}
._17{margin-left:-2.374998pt;}
._1{margin-left:-1.376728pt;}
._3{width:4.000000pt;}
._a{width:7.118100pt;}
._9{width:8.220479pt;}
._8{width:11.118164pt;}
._7{width:12.220467pt;}
._d{width:19.118112pt;}
._b{width:20.220478pt;}
._c{width:23.999998pt;}
._10{width:28.000000pt;}
._6{width:32.000021pt;}
._5{width:35.999999pt;}
._e{width:40.000001pt;}
._13{width:43.999990pt;}
._11{width:47.999999pt;}
._12{width:176.000000pt;}
._14{width:1872.000000pt;}
.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;}
.y5e{bottom:15.125651pt;}
.y2c{bottom:15.125977pt;}
.yaa{bottom:15.126302pt;}
.ydd{bottom:33.029297pt;}
.y5d{bottom:33.029623pt;}
.y2b{bottom:33.029705pt;}
.ya8{bottom:98.093420pt;}
.y5b{bottom:102.846686pt;}
.y29{bottom:103.318039pt;}
.y87{bottom:105.759766pt;}
.ydc{bottom:111.738931pt;}
.ya7{bottom:116.491860pt;}
.y5a{bottom:122.701499pt;}
.y86{bottom:125.614579pt;}
.ydb{bottom:130.137369pt;}
.y28{bottom:134.213866pt;}
.ya6{bottom:134.890300pt;}
.y59{bottom:142.556639pt;}
.y85{bottom:145.469719pt;}
.yda{bottom:148.535807pt;}
.ya5{bottom:153.288740pt;}
.y27{bottom:154.068847pt;}
.y58{bottom:162.411460pt;}
.y84{bottom:165.324540pt;}
.yd9{bottom:166.934247pt;}
.ya4{bottom:171.687180pt;}
.y26{bottom:173.923831pt;}
.y57{bottom:182.266606pt;}
.y83{bottom:183.722980pt;}
.yd8{bottom:185.332683pt;}
.ya3{bottom:190.085607pt;}
.y25{bottom:193.778811pt;}
.y56{bottom:202.121419pt;}
.yd7{bottom:203.731121pt;}
.ya2{bottom:208.484047pt;}
.y24{bottom:213.633792pt;}
.y82{bottom:220.519860pt;}
.y55{bottom:221.976399pt;}
.yd6{bottom:222.129558pt;}
.ya1{bottom:226.882487pt;}
.y23{bottom:233.488772pt;}
.y81{bottom:238.918300pt;}
.yd5{bottom:240.527996pt;}
.y54{bottom:241.831380pt;}
.ya0{bottom:245.280927pt;}
.y22{bottom:253.343753pt;}
.y80{bottom:258.773444pt;}
.yd4{bottom:258.926433pt;}
.y53{bottom:261.686366pt;}
.y9f{bottom:263.679367pt;}
.y21{bottom:273.198733pt;}
.yd3{bottom:277.324873pt;}
.y7f{bottom:278.628264pt;}
.y52{bottom:281.541346pt;}
.y9e{bottom:282.077793pt;}
.y20{bottom:293.053713pt;}
.yd2{bottom:295.723308pt;}
.y7e{bottom:298.483405pt;}
.y9d{bottom:300.476233pt;}
.y51{bottom:301.396327pt;}
.y1f{bottom:312.908692pt;}
.yd1{bottom:314.121745pt;}
.y7d{bottom:318.338217pt;}
.y9c{bottom:318.874673pt;}
.y50{bottom:319.794753pt;}
.yd0{bottom:332.520183pt;}
.y1e{bottom:332.763673pt;}
.y9b{bottom:337.273113pt;}
.y4f{bottom:338.193193pt;}
.y7c{bottom:338.193366pt;}
.ycf{bottom:350.918620pt;}
.y1d{bottom:352.618653pt;}
.y9a{bottom:355.671553pt;}
.y4e{bottom:358.048180pt;}
.y7b{bottom:358.048186pt;}
.yce{bottom:369.317060pt;}
.y1c{bottom:372.473633pt;}
.y99{bottom:374.069993pt;}
.y4d{bottom:377.903153pt;}
.y7a{bottom:377.903327pt;}
.ycd{bottom:387.715494pt;}
.y1b{bottom:392.328611pt;}
.y98{bottom:392.468420pt;}
.y4c{bottom:397.758132pt;}
.y79{bottom:397.758144pt;}
.ycc{bottom:406.113931pt;}
.y97{bottom:410.866860pt;}
.y1a{bottom:412.183592pt;}
.y4b{bottom:417.613113pt;}
.y78{bottom:417.613285pt;}
.ycb{bottom:424.512369pt;}
.y96{bottom:429.265620pt;}
.y19{bottom:432.038572pt;}
.y4a{bottom:437.468093pt;}
.y77{bottom:437.468097pt;}
.yca{bottom:442.910807pt;}
.y95{bottom:447.664060pt;}
.y18{bottom:451.893553pt;}
.y49{bottom:457.323073pt;}
.y76{bottom:457.323246pt;}
.yc9{bottom:461.309247pt;}
.y94{bottom:466.062500pt;}
.y17{bottom:471.748533pt;}
.y48{bottom:477.178057pt;}
.y75{bottom:477.178066pt;}
.yc8{bottom:479.707681pt;}
.y93{bottom:484.460940pt;}
.y16{bottom:491.603513pt;}
.y47{bottom:497.033037pt;}
.y74{bottom:497.033207pt;}
.yc7{bottom:498.106118pt;}
.y92{bottom:502.859380pt;}
.y15{bottom:510.001953pt;}
.yc6{bottom:516.504556pt;}
.y46{bottom:516.888019pt;}
.y73{bottom:516.888020pt;}
.y91{bottom:521.257807pt;}
.y14{bottom:528.400393pt;}
.yc5{bottom:534.902993pt;}
.y45{bottom:536.742998pt;}
.y72{bottom:536.743160pt;}
.y90{bottom:539.656247pt;}
.yc4{bottom:553.301433pt;}
.y44{bottom:556.597979pt;}
.y8f{bottom:558.054687pt;}
.y13{bottom:558.921953pt;}
.yc3{bottom:571.699876pt;}
.y43{bottom:576.452959pt;}
.y71{bottom:576.453124pt;}
.y8e{bottom:576.453127pt;}
.y12{bottom:589.443647pt;}
.yc2{bottom:590.098313pt;}
.y42{bottom:596.307940pt;}
.y70{bottom:596.307944pt;}
.yc1{bottom:608.496740pt;}
.y11{bottom:609.298620pt;}
.y41{bottom:616.162924pt;}
.y6f{bottom:616.163085pt;}
.y8d{bottom:616.163087pt;}
.yc0{bottom:626.895179pt;}
.y10{bottom:629.153610pt;}
.y6e{bottom:636.017897pt;}
.y8c{bottom:636.017900pt;}
.y40{bottom:636.017904pt;}
.yec{bottom:642.804036pt;}
.ybf{bottom:645.293616pt;}
.yf{bottom:649.008591pt;}
.y3f{bottom:655.872885pt;}
.y6d{bottom:655.873046pt;}
.ybe{bottom:663.692054pt;}
.yeb{bottom:663.692060pt;}
.ye{bottom:668.863571pt;}
.y8b{bottom:675.727860pt;}
.y3e{bottom:675.727865pt;}
.y6c{bottom:675.727866pt;}
.ybd{bottom:682.090491pt;}
.yea{bottom:682.090500pt;}
.yd{bottom:688.718552pt;}
.y3d{bottom:695.582846pt;}
.y6b{bottom:695.583007pt;}
.ybc{bottom:700.488929pt;}
.ye9{bottom:700.488936pt;}
.yc{bottom:708.573532pt;}
.y3c{bottom:715.437826pt;}
.y6a{bottom:715.437832pt;}
.ybb{bottom:718.887367pt;}
.ye8{bottom:718.887374pt;}
.yb{bottom:728.428513pt;}
.y3b{bottom:735.292807pt;}
.y69{bottom:735.292980pt;}
.yba{bottom:737.285807pt;}
.ye7{bottom:737.285811pt;}
.ya{bottom:748.283493pt;}
.y3a{bottom:755.147785pt;}
.y68{bottom:755.147793pt;}
.yb9{bottom:755.684244pt;}
.ye6{bottom:755.684249pt;}
.y9{bottom:768.138473pt;}
.yb8{bottom:774.082681pt;}
.ye5{bottom:774.082687pt;}
.y39{bottom:775.002766pt;}
.y67{bottom:775.002933pt;}
.y8{bottom:787.993447pt;}
.ye4{bottom:792.481113pt;}
.yb7{bottom:792.481119pt;}
.y38{bottom:794.857746pt;}
.y66{bottom:794.857753pt;}
.y7{bottom:807.848433pt;}
.ye3{bottom:810.879553pt;}
.yb6{bottom:810.879556pt;}
.y37{bottom:814.712727pt;}
.y8a{bottom:814.712886pt;}
.y65{bottom:814.712895pt;}
.y6{bottom:827.703407pt;}
.yb5{bottom:829.277994pt;}
.ye2{bottom:829.277998pt;}
.y89{bottom:834.567706pt;}
.y36{bottom:834.567708pt;}
.yb4{bottom:847.676431pt;}
.ye1{bottom:847.676436pt;}
.y35{bottom:854.422689pt;}
.y88{bottom:854.422847pt;}
.y64{bottom:854.422848pt;}
.y5{bottom:859.044616pt;}
.yb3{bottom:866.074869pt;}
.ye0{bottom:866.074873pt;}
.y34{bottom:874.277669pt;}
.y4{bottom:882.208781pt;}
.yb2{bottom:884.473307pt;}
.y33{bottom:894.132649pt;}
.y63{bottom:894.132817pt;}
.ydf{bottom:902.871744pt;}
.yb1{bottom:902.871745pt;}
.y3{bottom:905.372924pt;}
.y32{bottom:913.987630pt;}
.yb0{bottom:921.270183pt;}
.y1{bottom:922.800008pt;}
.y31{bottom:933.842610pt;}
.y62{bottom:933.842770pt;}
.yde{bottom:939.668619pt;}
.yaf{bottom:939.668620pt;}
.y30{bottom:953.697591pt;}
.yae{bottom:958.067057pt;}
.y2f{bottom:973.552571pt;}
.y61{bottom:973.552734pt;}
.yad{bottom:976.465495pt;}
.y2e{bottom:993.407551pt;}
.y60{bottom:993.407554pt;}
.yac{bottom:994.863932pt;}
.yab{bottom:1013.262369pt;}
.y2d{bottom:1013.262532pt;}
.y5f{bottom:1013.262695pt;}
.ya9{bottom:1028.199869pt;}
.y2a{bottom:1028.200032pt;}
.y5c{bottom:1028.200195pt;}
.h7{height:26.328124pt;}
.h2{height:39.101563pt;}
.h4{height:56.843750pt;}
.h6{height:57.375000pt;}
.h5{height:58.392190pt;}
.h3{height:66.317706pt;}
.h9{height:94.466472pt;}
.h8{height:94.466635pt;}
.ha{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:127.733744pt;}
.x7{left:160.400004pt;}
.x9{left:161.400004pt;}
.x3{left:170.630274pt;}
.x6{left:183.815241pt;}
.x4{left:292.400904pt;}
.x8{left:396.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; }
  