
    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_b1e9765a19a88331a3f6d312.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bee5a96ec0c8db2b62fc44e2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6220202429eb5de2304b324e.woff2')format("woff");}.ff3{font-family:ff3;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);}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws25{word-spacing:-40.605468px;}
.ws1a{word-spacing:-22.605503px;}
.ws15{word-spacing:-22.605491px;}
.ws23{word-spacing:-22.605481px;}
.ws10{word-spacing:-22.605480px;}
.ws19{word-spacing:-22.605471px;}
.ws16{word-spacing:-22.605470px;}
.ws11{word-spacing:-22.605469px;}
.ws22{word-spacing:-22.605468px;}
.ws1e{word-spacing:-22.605466px;}
.ws13{word-spacing:-22.605458px;}
.ws12{word-spacing:-22.605446px;}
.ws1c{word-spacing:-22.605435px;}
.ws9{word-spacing:-0.078000px;}
.ws1b{word-spacing:-0.072000px;}
.ws17{word-spacing:0.000000px;}
.ws24{word-spacing:13.394532px;}
.wsf{word-spacing:16.388353px;}
.ws18{word-spacing:17.927988px;}
.ws20{word-spacing:17.927998px;}
.ws14{word-spacing:17.928000px;}
.ws1f{word-spacing:17.928002px;}
.wsb{word-spacing:19.392715px;}
.ws5{word-spacing:19.397983px;}
.ws8{word-spacing:19.398102px;}
.ws21{word-spacing:19.399203px;}
.ws4{word-spacing:19.399221px;}
.wsa{word-spacing:19.403137px;}
.wsd{word-spacing:19.403222px;}
.wsc{word-spacing:19.404403px;}
.ws3{word-spacing:19.404411px;}
.ws6{word-spacing:19.404420px;}
.ws7{word-spacing:19.404422px;}
.ws2{word-spacing:19.405809px;}
.ws1d{word-spacing:20.880831px;}
.ws0{word-spacing:29.842166px;}
.ws1{word-spacing:29.842202px;}
.wse{word-spacing:49.433718px;}
._6{margin-left:-8.788009px;}
._1{margin-left:-7.175768px;}
._0{margin-left:-5.804674px;}
._5{margin-left:-4.244796px;}
._3{margin-left:-3.024487px;}
._2{margin-left:-1.489736px;}
._7{width:36.000035px;}
._4{width:49.499998px;}
._8{width:54.000000px;}
.fc2{color:rgb(32,18,77);}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.000002px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:78.000003px;}
.fs4{font-size:83.999997px;}
.fs0{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y97{bottom:112.683112px;}
.y66{bottom:114.667238px;}
.yc7{bottom:114.667973px;}
.yb8{bottom:116.910638px;}
.y3c{bottom:118.634393px;}
.y9{bottom:120.610113px;}
.y96{bottom:136.485353px;}
.y65{bottom:138.470212px;}
.yb7{bottom:140.712892px;}
.y3b{bottom:142.437383px;}
.y95{bottom:160.289063px;}
.yc6{bottom:162.272467px;}
.y64{bottom:162.273187px;}
.yb6{bottom:164.516602px;}
.y3a{bottom:166.240358px;}
.y85{bottom:178.141853px;}
.y94{bottom:184.092773px;}
.y63{bottom:186.076178px;}
.yb5{bottom:188.320312px;}
.y39{bottom:190.043332px;}
.y84{bottom:201.944827px;}
.y93{bottom:207.895013px;}
.y62{bottom:209.879153px;}
.yc5{bottom:209.879887px;}
.yb4{bottom:212.122552px;}
.y38{bottom:213.846307px;}
.y83{bottom:225.747802px;}
.y92{bottom:231.697268px;}
.y61{bottom:233.682127px;}
.yb3{bottom:235.924807px;}
.y37{bottom:237.649298px;}
.y82{bottom:249.550778px;}
.y91{bottom:255.500978px;}
.yc4{bottom:257.484367px;}
.y60{bottom:257.485103px;}
.yb2{bottom:259.728517px;}
.y36{bottom:261.452272px;}
.y90{bottom:279.304687px;}
.y5f{bottom:281.288092px;}
.yb1{bottom:283.532227px;}
.y35{bottom:285.255247px;}
.y81{bottom:297.156742px;}
.y8f{bottom:303.106927px;}
.y5e{bottom:305.091068px;}
.yc3{bottom:305.091803px;}
.yb0{bottom:307.334468px;}
.y34{bottom:309.058223px;}
.y80{bottom:320.959717px;}
.y8e{bottom:326.909183px;}
.y5d{bottom:328.894043px;}
.yaf{bottom:331.136723px;}
.y33{bottom:332.861212px;}
.y7f{bottom:344.762693px;}
.y8d{bottom:350.712892px;}
.yc2{bottom:352.696283px;}
.y5c{bottom:352.697018px;}
.y32{bottom:356.664188px;}
.y7e{bottom:368.565667px;}
.y5b{bottom:376.499992px;}
.y8{bottom:378.475713px;}
.yae{bottom:378.744142px;}
.y31{bottom:380.467163px;}
.y7d{bottom:392.368657px;}
.y5a{bottom:400.302983px;}
.yc1{bottom:400.303717px;}
.yad{bottom:402.546383px;}
.y30{bottom:404.270137px;}
.y7c{bottom:416.171633px;}
.y59{bottom:424.105957px;}
.yac{bottom:426.348637px;}
.y2f{bottom:428.073127px;}
.y7{bottom:430.048833px;}
.y7b{bottom:439.974607px;}
.y9e{bottom:447.908197px;}
.y58{bottom:447.908932px;}
.y2e{bottom:451.876103px;}
.y7a{bottom:463.777583px;}
.y57{bottom:471.711908px;}
.yab{bottom:473.956058px;}
.y2d{bottom:475.679077px;}
.y79{bottom:487.580573px;}
.y56{bottom:495.514898px;}
.y9d{bottom:495.515618px;}
.yaa{bottom:497.758298px;}
.y2c{bottom:499.482053px;}
.y6{bottom:507.408513px;}
.y78{bottom:511.383548px;}
.y55{bottom:519.317873px;}
.ya9{bottom:521.560552px;}
.y5{bottom:533.195073px;}
.y77{bottom:535.186522px;}
.y9c{bottom:543.120113px;}
.y54{bottom:543.120848px;}
.y12{bottom:543.704043px;}
.ya8{bottom:545.364262px;}
.y2b{bottom:547.088018px;}
.y76{bottom:558.989497px;}
.y53{bottom:566.923822px;}
.ya7{bottom:569.167973px;}
.y2a{bottom:570.890992px;}
.y75{bottom:582.792488px;}
.y52{bottom:590.726813px;}
.y9b{bottom:590.727533px;}
.y29{bottom:594.693967px;}
.y74{bottom:606.595462px;}
.y4{bottom:610.554753px;}
.y51{bottom:614.529787px;}
.ya6{bottom:616.772467px;}
.y28{bottom:618.496943px;}
.y11{bottom:621.063723px;}
.y73{bottom:630.398438px;}
.y3{bottom:636.341313px;}
.y9a{bottom:638.332027px;}
.y50{bottom:638.332763px;}
.ya5{bottom:640.576178px;}
.y27{bottom:642.299933px;}
.y72{bottom:654.201412px;}
.y4f{bottom:662.135738px;}
.ya4{bottom:664.379887px;}
.y26{bottom:666.102908px;}
.y71{bottom:678.004388px;}
.y4e{bottom:685.938728px;}
.y99{bottom:685.939448px;}
.ya3{bottom:688.182127px;}
.y25{bottom:689.905882px;}
.y10{bottom:698.423403px;}
.y70{bottom:701.807378px;}
.y2{bottom:705.881841px;}
.y67{bottom:709.741702px;}
.ya2{bottom:711.984367px;}
.y24{bottom:713.708858px;}
.y6f{bottom:725.610352px;}
.y98{bottom:733.543942px;}
.y4d{bottom:733.544678px;}
.ya1{bottom:735.788092px;}
.y23{bottom:737.511848px;}
.y1{bottom:745.553466px;}
.y6e{bottom:749.413327px;}
.y4c{bottom:757.347652px;}
.ya0{bottom:759.591803px;}
.y22{bottom:761.314822px;}
.y6d{bottom:773.216302px;}
.yf{bottom:775.783083px;}
.y4b{bottom:781.150628px;}
.yc0{bottom:781.151363px;}
.y9f{bottom:783.394043px;}
.y21{bottom:785.117798px;}
.y6c{bottom:797.019292px;}
.y8c{bottom:802.969478px;}
.y4a{bottom:804.953618px;}
.y20{bottom:808.920773px;}
.y6b{bottom:820.822268px;}
.y8b{bottom:826.772467px;}
.ybf{bottom:828.755858px;}
.y49{bottom:828.756593px;}
.y1f{bottom:832.723747px;}
.y6a{bottom:844.625243px;}
.y8a{bottom:850.575443px;}
.y48{bottom:852.559568px;}
.ye{bottom:853.142763px;}
.y1e{bottom:856.526738px;}
.y69{bottom:868.428218px;}
.y89{bottom:874.378417px;}
.y47{bottom:876.362543px;}
.ybe{bottom:876.363277px;}
.y1d{bottom:880.329712px;}
.y88{bottom:898.181393px;}
.y46{bottom:900.165532px;}
.y1c{bottom:904.132687px;}
.y68{bottom:917.200196px;}
.ybd{bottom:923.967772px;}
.y45{bottom:923.968507px;}
.y1b{bottom:927.935663px;}
.yd{bottom:930.502443px;}
.y87{bottom:946.371093px;}
.y86{bottom:947.771483px;}
.y1a{bottom:951.738652px;}
.y44{bottom:971.574457px;}
.ybc{bottom:971.575192px;}
.y19{bottom:975.541628px;}
.y43{bottom:995.377442px;}
.y18{bottom:999.344604px;}
.yc{bottom:1007.862123px;}
.ybb{bottom:1019.179688px;}
.y42{bottom:1019.180419px;}
.y17{bottom:1023.147583px;}
.yb{bottom:1033.648683px;}
.y41{bottom:1042.983399px;}
.y16{bottom:1046.950562px;}
.y40{bottom:1066.786377px;}
.yba{bottom:1066.787109px;}
.y15{bottom:1070.753539px;}
.y3f{bottom:1090.589355px;}
.y14{bottom:1094.556519px;}
.ya{bottom:1111.008363px;}
.yb9{bottom:1114.391601px;}
.y3e{bottom:1114.392335px;}
.y3d{bottom:1138.195312px;}
.y13{bottom:1139.595703px;}
.h3{height:58.620119px;}
.h5{height:63.949219px;}
.h4{height:64.546875px;}
.h2{height:69.278323px;}
.h6{height:74.607419px;}
.h1{height:106.582029px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x6{left:108.000000px;}
.x11{left:112.500000px;}
.x5{left:120.777269px;}
.x9{left:135.000000px;}
.xa{left:162.000000px;}
.xd{left:172.058164px;}
.xc{left:175.423979px;}
.x1{left:277.288158px;}
.xb{left:299.717505px;}
.x2{left:309.854790px;}
.x4{left:321.391451px;}
.x3{left:342.665786px;}
.xe{left:374.439105px;}
.xf{left:378.943504px;}
.x8{left:411.252041px;}
.x10{left:413.954753px;}
.x7{left:580.732909px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws25{word-spacing:-36.093750pt;}
.ws1a{word-spacing:-20.093780pt;}
.ws15{word-spacing:-20.093770pt;}
.ws23{word-spacing:-20.093761pt;}
.ws10{word-spacing:-20.093760pt;}
.ws19{word-spacing:-20.093752pt;}
.ws16{word-spacing:-20.093751pt;}
.ws11{word-spacing:-20.093750pt;}
.ws22{word-spacing:-20.093749pt;}
.ws1e{word-spacing:-20.093748pt;}
.ws13{word-spacing:-20.093740pt;}
.ws12{word-spacing:-20.093730pt;}
.ws1c{word-spacing:-20.093720pt;}
.ws9{word-spacing:-0.069333pt;}
.ws1b{word-spacing:-0.064000pt;}
.ws17{word-spacing:0.000000pt;}
.ws24{word-spacing:11.906250pt;}
.wsf{word-spacing:14.567425pt;}
.ws18{word-spacing:15.935990pt;}
.ws20{word-spacing:15.935998pt;}
.ws14{word-spacing:15.936000pt;}
.ws1f{word-spacing:15.936002pt;}
.wsb{word-spacing:17.237969pt;}
.ws5{word-spacing:17.242652pt;}
.ws8{word-spacing:17.242757pt;}
.ws21{word-spacing:17.243736pt;}
.ws4{word-spacing:17.243752pt;}
.wsa{word-spacing:17.247233pt;}
.wsd{word-spacing:17.247308pt;}
.wsc{word-spacing:17.248359pt;}
.ws3{word-spacing:17.248365pt;}
.ws6{word-spacing:17.248373pt;}
.ws7{word-spacing:17.248375pt;}
.ws2{word-spacing:17.249608pt;}
.ws1d{word-spacing:18.560739pt;}
.ws0{word-spacing:26.526370pt;}
.ws1{word-spacing:26.526402pt;}
.wse{word-spacing:43.941083pt;}
._6{margin-left:-7.811563pt;}
._1{margin-left:-6.378460pt;}
._0{margin-left:-5.159710pt;}
._5{margin-left:-3.773152pt;}
._3{margin-left:-2.688433pt;}
._2{margin-left:-1.324210pt;}
._7{width:32.000031pt;}
._4{width:43.999998pt;}
._8{width:48.000000pt;}
.fs2{font-size:58.666668pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.333336pt;}
.fs4{font-size:74.666664pt;}
.fs0{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:100.162767pt;}
.y66{bottom:101.926433pt;}
.yc7{bottom:101.927087pt;}
.yb8{bottom:103.920567pt;}
.y3c{bottom:105.452793pt;}
.y9{bottom:107.208989pt;}
.y96{bottom:121.320313pt;}
.y65{bottom:123.084633pt;}
.yb7{bottom:125.078127pt;}
.y3b{bottom:126.611007pt;}
.y95{bottom:142.479167pt;}
.yc6{bottom:144.242193pt;}
.y64{bottom:144.242833pt;}
.yb6{bottom:146.236980pt;}
.y3a{bottom:147.769207pt;}
.y85{bottom:158.348313pt;}
.y94{bottom:163.638020pt;}
.y63{bottom:165.401047pt;}
.yb5{bottom:167.395833pt;}
.y39{bottom:168.927407pt;}
.y84{bottom:179.506513pt;}
.y93{bottom:184.795567pt;}
.y62{bottom:186.559247pt;}
.yc5{bottom:186.559900pt;}
.yb4{bottom:188.553380pt;}
.y38{bottom:190.085607pt;}
.y83{bottom:200.664713pt;}
.y92{bottom:205.953127pt;}
.y61{bottom:207.717447pt;}
.yb3{bottom:209.710940pt;}
.y37{bottom:211.243820pt;}
.y82{bottom:221.822913pt;}
.y91{bottom:227.111980pt;}
.yc4{bottom:228.874993pt;}
.y60{bottom:228.875647pt;}
.yb2{bottom:230.869793pt;}
.y36{bottom:232.402020pt;}
.y90{bottom:248.270833pt;}
.y5f{bottom:250.033860pt;}
.yb1{bottom:252.028647pt;}
.y35{bottom:253.560220pt;}
.y81{bottom:264.139327pt;}
.y8f{bottom:269.428380pt;}
.y5e{bottom:271.192060pt;}
.yc3{bottom:271.192713pt;}
.yb0{bottom:273.186193pt;}
.y34{bottom:274.718420pt;}
.y80{bottom:285.297527pt;}
.y8e{bottom:290.585940pt;}
.y5d{bottom:292.350260pt;}
.yaf{bottom:294.343753pt;}
.y33{bottom:295.876633pt;}
.y7f{bottom:306.455727pt;}
.y8d{bottom:311.744793pt;}
.yc2{bottom:313.507807pt;}
.y5c{bottom:313.508460pt;}
.y32{bottom:317.034833pt;}
.y7e{bottom:327.613927pt;}
.y5b{bottom:334.666660pt;}
.y8{bottom:336.422856pt;}
.yae{bottom:336.661460pt;}
.y31{bottom:338.193033pt;}
.y7d{bottom:348.772140pt;}
.y5a{bottom:355.824873pt;}
.yc1{bottom:355.825527pt;}
.yad{bottom:357.819007pt;}
.y30{bottom:359.351233pt;}
.y7c{bottom:369.930340pt;}
.y59{bottom:376.983073pt;}
.yac{bottom:378.976567pt;}
.y2f{bottom:380.509447pt;}
.y7{bottom:382.265629pt;}
.y7b{bottom:391.088540pt;}
.y9e{bottom:398.140620pt;}
.y58{bottom:398.141273pt;}
.y2e{bottom:401.667647pt;}
.y7a{bottom:412.246740pt;}
.y57{bottom:419.299473pt;}
.yab{bottom:421.294273pt;}
.y2d{bottom:422.825847pt;}
.y79{bottom:433.404953pt;}
.y56{bottom:440.457687pt;}
.y9d{bottom:440.458327pt;}
.yaa{bottom:442.451820pt;}
.y2c{bottom:443.984047pt;}
.y6{bottom:451.029789pt;}
.y78{bottom:454.563153pt;}
.y55{bottom:461.615887pt;}
.ya9{bottom:463.609380pt;}
.y5{bottom:473.951176pt;}
.y77{bottom:475.721353pt;}
.y9c{bottom:482.773433pt;}
.y54{bottom:482.774087pt;}
.y12{bottom:483.292482pt;}
.ya8{bottom:484.768233pt;}
.y2b{bottom:486.300460pt;}
.y76{bottom:496.879553pt;}
.y53{bottom:503.932287pt;}
.ya7{bottom:505.927087pt;}
.y2a{bottom:507.458660pt;}
.y75{bottom:518.037767pt;}
.y52{bottom:525.090500pt;}
.y9b{bottom:525.091140pt;}
.y29{bottom:528.616860pt;}
.y74{bottom:539.195967pt;}
.y4{bottom:542.715336pt;}
.y51{bottom:546.248700pt;}
.ya6{bottom:548.242193pt;}
.y28{bottom:549.775060pt;}
.y11{bottom:552.056642pt;}
.y73{bottom:560.354167pt;}
.y3{bottom:565.636722pt;}
.y9a{bottom:567.406247pt;}
.y50{bottom:567.406900pt;}
.ya5{bottom:569.401047pt;}
.y27{bottom:570.933273pt;}
.y72{bottom:581.512367pt;}
.y4f{bottom:588.565100pt;}
.ya4{bottom:590.559900pt;}
.y26{bottom:592.091473pt;}
.y71{bottom:602.670567pt;}
.y4e{bottom:609.723313pt;}
.y99{bottom:609.723953pt;}
.ya3{bottom:611.717447pt;}
.y25{bottom:613.249673pt;}
.y10{bottom:620.820802pt;}
.y70{bottom:623.828780pt;}
.y2{bottom:627.450526pt;}
.y67{bottom:630.881513pt;}
.ya2{bottom:632.874993pt;}
.y24{bottom:634.407873pt;}
.y6f{bottom:644.986980pt;}
.y98{bottom:652.039060pt;}
.y4d{bottom:652.039713pt;}
.ya1{bottom:654.033860pt;}
.y23{bottom:655.566087pt;}
.y1{bottom:662.714192pt;}
.y6e{bottom:666.145180pt;}
.y4c{bottom:673.197913pt;}
.ya0{bottom:675.192713pt;}
.y22{bottom:676.724287pt;}
.y6d{bottom:687.303380pt;}
.yf{bottom:689.584962pt;}
.y4b{bottom:694.356113pt;}
.yc0{bottom:694.356767pt;}
.y9f{bottom:696.350260pt;}
.y21{bottom:697.882487pt;}
.y6c{bottom:708.461593pt;}
.y8c{bottom:713.750647pt;}
.y4a{bottom:715.514327pt;}
.y20{bottom:719.040687pt;}
.y6b{bottom:729.619793pt;}
.y8b{bottom:734.908860pt;}
.ybf{bottom:736.671873pt;}
.y49{bottom:736.672527pt;}
.y1f{bottom:740.198887pt;}
.y6a{bottom:750.777993pt;}
.y8a{bottom:756.067060pt;}
.y48{bottom:757.830727pt;}
.ye{bottom:758.349122pt;}
.y1e{bottom:761.357100pt;}
.y69{bottom:771.936193pt;}
.y89{bottom:777.225260pt;}
.y47{bottom:778.988927pt;}
.ybe{bottom:778.989580pt;}
.y1d{bottom:782.515300pt;}
.y88{bottom:798.383460pt;}
.y46{bottom:800.147140pt;}
.y1c{bottom:803.673500pt;}
.y68{bottom:815.289063pt;}
.ybd{bottom:821.304687pt;}
.y45{bottom:821.305340pt;}
.y1b{bottom:824.831700pt;}
.yd{bottom:827.113282pt;}
.y87{bottom:841.218749pt;}
.y86{bottom:842.463540pt;}
.y1a{bottom:845.989913pt;}
.y44{bottom:863.621740pt;}
.ybc{bottom:863.622393pt;}
.y19{bottom:867.148113pt;}
.y43{bottom:884.779948pt;}
.y18{bottom:888.306315pt;}
.yc{bottom:895.877442pt;}
.ybb{bottom:905.937500pt;}
.y42{bottom:905.938151pt;}
.y17{bottom:909.464519pt;}
.yb{bottom:918.798829pt;}
.y41{bottom:927.096355pt;}
.y16{bottom:930.622721pt;}
.y40{bottom:948.254557pt;}
.yba{bottom:948.255208pt;}
.y15{bottom:951.780924pt;}
.y3f{bottom:969.412760pt;}
.y14{bottom:972.939128pt;}
.ya{bottom:987.562989pt;}
.yb9{bottom:990.570312pt;}
.y3e{bottom:990.570964pt;}
.y3d{bottom:1011.729167pt;}
.y13{bottom:1012.973959pt;}
.h3{height:52.106772pt;}
.h5{height:56.843750pt;}
.h4{height:57.375000pt;}
.h2{height:61.580732pt;}
.h6{height:66.317706pt;}
.h1{height:94.739581pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x6{left:96.000000pt;}
.x11{left:100.000000pt;}
.x5{left:107.357573pt;}
.x9{left:120.000000pt;}
.xa{left:144.000000pt;}
.xd{left:152.940590pt;}
.xc{left:155.932426pt;}
.x1{left:246.478363pt;}
.xb{left:266.415560pt;}
.x2{left:275.426480pt;}
.x4{left:285.681290pt;}
.x3{left:304.591810pt;}
.xe{left:332.834760pt;}
.xf{left:336.838670pt;}
.x8{left:365.557370pt;}
.x10{left:367.959780pt;}
.x7{left:516.207030pt;}
}




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