
    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_4b6195d5df03e4190e61d12a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a9621ed82a7338dfab0a8064.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_ae361557b5cdff9c1ab44828.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.039998px;}
.v1{vertical-align:33.839986px;}
.v3{vertical-align:35.279986px;}
.v2{vertical-align:68.399973px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.019787px;}
.ls5{letter-spacing:3.612061px;}
.ls4{letter-spacing:6.493784px;}
.ls2{letter-spacing:7.881777px;}
.ls1{letter-spacing:10.763516px;}
.ls3{letter-spacing:21.570171px;}
.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;}
}
.ws2{word-spacing:-16.559993px;}
.ws1{word-spacing:-14.939994px;}
.ws0{word-spacing:0.000000px;}
._2c{margin-left:-13.801044px;}
._28{margin-left:-10.454456px;}
._f{margin-left:-2.187663px;}
._1{margin-left:-1.020151px;}
._0{width:1.190869px;}
._4{width:2.208850px;}
._5{width:3.491643px;}
._e{width:4.602132px;}
._c{width:6.298436px;}
._b{width:7.562025px;}
._d{width:9.549795px;}
._2{width:10.831146px;}
._3{width:12.067539px;}
._7{width:13.982131px;}
._10{width:14.988365px;}
._6{width:16.037098px;}
._2e{width:17.440113px;}
._8{width:20.040743px;}
._9{width:21.127776px;}
._a{width:22.175618px;}
._13{width:25.375421px;}
._12{width:26.415324px;}
._11{width:27.691458px;}
._1b{width:56.770788px;}
._1d{width:86.840016px;}
._27{width:98.367212px;}
._1a{width:100.000128px;}
._1c{width:147.546552px;}
._21{width:150.575868px;}
._24{width:160.851656px;}
._2b{width:175.048887px;}
._23{width:200.895693px;}
._20{width:202.920656px;}
._2a{width:212.286240px;}
._1f{width:286.241453px;}
._17{width:309.455722px;}
._22{width:345.323644px;}
._25{width:373.004862px;}
._19{width:380.650657px;}
._18{width:387.283450px;}
._26{width:389.575055px;}
._16{width:407.138291px;}
._2d{width:409.599927px;}
._1e{width:456.054549px;}
._29{width:519.139963px;}
._14{width:539.800510px;}
._2f{width:546.145395px;}
._15{width:624.814454px;}
.fc1{color:rgb(19,20,19);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.239981px;}
.fs5{font-size:53.999978px;}
.fs4{font-size:59.759976px;}
.fs6{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.fs1{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y2d{bottom:67.979973px;}
.y5b{bottom:69.060272px;}
.y5a{bottom:90.120264px;}
.y2c{bottom:91.739963px;}
.y8a{bottom:109.380256px;}
.y59{bottom:109.920256px;}
.y2b{bottom:115.679954px;}
.y56{bottom:119.100252px;}
.y58{bottom:130.440248px;}
.y89{bottom:138.899944px;}
.y2a{bottom:139.439944px;}
.y57{bottom:150.420240px;}
.y88{bottom:157.799937px;}
.y55{bottom:168.599933px;}
.y29{bottom:171.839931px;}
.y54{bottom:177.239929px;}
.y87{bottom:185.699926px;}
.y53{bottom:203.699919px;}
.y86{bottom:204.779918px;}
.y28{bottom:204.959918px;}
.y85{bottom:223.679911px;}
.y27{bottom:228.899908px;}
.y52{bottom:230.699908px;}
.y51{bottom:247.979901px;}
.y84{bottom:251.759899px;}
.y26{bottom:252.659899px;}
.y83{bottom:270.659892px;}
.y25{bottom:276.419889px;}
.y50{bottom:277.859889px;}
.y82{bottom:298.739881px;}
.y24{bottom:300.179880px;}
.y4f{bottom:301.799879px;}
.y81{bottom:317.639873px;}
.y23{bottom:323.939870px;}
.y4e{bottom:325.559870px;}
.y80{bottom:345.539862px;}
.y22{bottom:347.879861px;}
.y4d{bottom:357.959857px;}
.y7f{bottom:364.619854px;}
.y21{bottom:380.639848px;}
.y7e{bottom:383.519847px;}
.y4c{bottom:391.079844px;}
.y20{bottom:404.399838px;}
.y7d{bottom:411.599835px;}
.y4b{bottom:415.019834px;}
.y1f{bottom:428.159829px;}
.y4a{bottom:438.779824px;}
.y7c{bottom:444.539822px;}
.y1e{bottom:452.099819px;}
.y49{bottom:462.539815px;}
.y7b{bottom:468.479813px;}
.y1d{bottom:475.859810px;}
.y48{bottom:495.299802px;}
.y1c{bottom:499.619800px;}
.y7a{bottom:500.879800px;}
.y47{bottom:519.239792px;}
.y1b{bottom:532.019787px;}
.y79{bottom:533.999786px;}
.y46{bottom:542.999783px;}
.y78{bottom:557.759777px;}
.y1a{bottom:565.319774px;}
.y45{bottom:566.759773px;}
.y77{bottom:581.699767px;}
.y44{bottom:590.519764px;}
.y19{bottom:598.079761px;}
.y76{bottom:605.459758px;}
.y43{bottom:614.459754px;}
.y18{bottom:621.839751px;}
.y75{bottom:629.219748px;}
.y17{bottom:645.599742px;}
.y42{bottom:647.219741px;}
.y74{bottom:652.979739px;}
.y16{bottom:669.539732px;}
.y41{bottom:670.979732px;}
.y73{bottom:676.919729px;}
.y15{bottom:693.299723px;}
.y40{bottom:694.739722px;}
.y72{bottom:709.319716px;}
.y14{bottom:717.059713px;}
.y3f{bottom:718.679713px;}
.y71{bottom:730.199708px;}
.y13{bottom:740.819704px;}
.y3e{bottom:742.439703px;}
.y70{bottom:749.999700px;}
.y12{bottom:764.759694px;}
.y3d{bottom:766.199694px;}
.y6f{bottom:766.739693px;}
.y6e{bottom:784.019686px;}
.y11{bottom:788.519685px;}
.y3c{bottom:789.959684px;}
.y10{bottom:812.279675px;}
.y6d{bottom:820.919672px;}
.y3b{bottom:822.719671px;}
.yf{bottom:836.039666px;}
.y6c{bottom:840.719664px;}
.y3a{bottom:846.659661px;}
.y69{bottom:849.899660px;}
.ye{bottom:859.979656px;}
.y6b{bottom:861.239656px;}
.y39{bottom:870.419652px;}
.y6a{bottom:881.219648px;}
.yd{bottom:883.739647px;}
.y38{bottom:894.179642px;}
.y68{bottom:899.399640px;}
.yc{bottom:907.499637px;}
.y67{bottom:908.039637px;}
.y37{bottom:917.939633px;}
.yb{bottom:931.259627px;}
.y66{bottom:934.499626px;}
.y36{bottom:941.879623px;}
.y65{bottom:943.139623px;}
.ya{bottom:955.019618px;}
.y35{bottom:974.639610px;}
.y64{bottom:978.779608px;}
.y9{bottom:978.959608px;}
.y63{bottom:996.059602px;}
.y34{bottom:998.399601px;}
.y8{bottom:999.839600px;}
.y62{bottom:1016.939593px;}
.y7{bottom:1020.539592px;}
.y33{bottom:1022.159591px;}
.y6{bottom:1027.379589px;}
.y61{bottom:1040.879584px;}
.y5{bottom:1045.379582px;}
.y32{bottom:1046.099582px;}
.y60{bottom:1064.639574px;}
.y31{bottom:1069.859572px;}
.y4{bottom:1082.819567px;}
.y5f{bottom:1094.519562px;}
.y30{bottom:1102.619559px;}
.y5e{bottom:1113.959554px;}
.y3{bottom:1114.679554px;}
.y2f{bottom:1126.379549px;}
.y5d{bottom:1133.039547px;}
.y2e{bottom:1150.319540px;}
.y2{bottom:1150.499540px;}
.y5c{bottom:1153.199539px;}
.y1{bottom:1166.699533px;}
.h4{height:47.344903px;}
.hd{height:52.998026px;}
.h7{height:58.651148px;}
.ha{height:62.327788px;}
.h11{height:65.010911px;}
.hc{height:67.367786px;}
.h5{height:70.628878px;}
.h1{height:70.664034px;}
.h6{height:72.562471px;}
.h3{height:82.635787px;}
.h8{height:92.491135px;}
.he{height:93.211135px;}
.hb{height:93.931134px;}
.h2{height:96.508086px;}
.h9{height:127.051121px;}
.hf{height:127.771121px;}
.h10{height:131.447760px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:53.999978px;}
.xe{left:62.099975px;}
.x9{left:63.359975px;}
.x12{left:65.879974px;}
.x11{left:68.759977px;}
.x1a{left:75.239471px;}
.x5{left:80.639968px;}
.x3{left:88.019965px;}
.x1b{left:96.483133px;}
.xf{left:128.340052px;}
.x18{left:141.480059px;}
.x10{left:146.880054px;}
.x6{left:149.579940px;}
.x13{left:152.099918px;}
.x7{left:155.699938px;}
.x14{left:197.639921px;}
.x4{left:306.720644px;}
.x15{left:399.421071px;}
.xa{left:429.480642px;}
.x8{left:446.400257px;}
.x19{left:473.579811px;}
.x16{left:579.961079px;}
.xb{left:610.020650px;}
.xc{left:704.700643px;}
.x17{left:725.581066px;}
.xd{left:779.400664px;}
.x1{left:838.979664px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.479998pt;}
.v1{vertical-align:30.079988pt;}
.v3{vertical-align:31.359987pt;}
.v2{vertical-align:60.799976pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.017589pt;}
.ls5{letter-spacing:3.210721pt;}
.ls4{letter-spacing:5.772252pt;}
.ls2{letter-spacing:7.006024pt;}
.ls1{letter-spacing:9.567570pt;}
.ls3{letter-spacing:19.173486pt;}
.ws2{word-spacing:-14.719994pt;}
.ws1{word-spacing:-13.279995pt;}
.ws0{word-spacing:0.000000pt;}
._2c{margin-left:-12.267595pt;}
._28{margin-left:-9.292850pt;}
._f{margin-left:-1.944590pt;}
._1{margin-left:-0.906801pt;}
._0{width:1.058550pt;}
._4{width:1.963422pt;}
._5{width:3.103682pt;}
._e{width:4.090784pt;}
._c{width:5.598610pt;}
._b{width:6.721800pt;}
._d{width:8.488706pt;}
._2{width:9.627685pt;}
._3{width:10.726702pt;}
._7{width:12.428561pt;}
._10{width:13.322991pt;}
._6{width:14.255198pt;}
._2e{width:15.502322pt;}
._8{width:17.813994pt;}
._9{width:18.780246pt;}
._a{width:19.711661pt;}
._13{width:22.555930pt;}
._12{width:23.480288pt;}
._11{width:24.614630pt;}
._1b{width:50.462923pt;}
._1d{width:77.191126pt;}
._27{width:87.437521pt;}
._1a{width:88.889003pt;}
._1c{width:131.152491pt;}
._21{width:133.845216pt;}
._24{width:142.979249pt;}
._2b{width:155.599011pt;}
._23{width:178.573949pt;}
._20{width:180.373917pt;}
._2a{width:188.698880pt;}
._1f{width:254.436847pt;}
._17{width:275.071753pt;}
._22{width:306.954350pt;}
._25{width:331.559877pt;}
._19{width:338.356139pt;}
._18{width:344.251956pt;}
._26{width:346.288938pt;}
._16{width:361.900703pt;}
._2d{width:364.088824pt;}
._1e{width:405.381821pt;}
._29{width:461.457745pt;}
._14{width:479.822675pt;}
._2f{width:485.462573pt;}
._15{width:555.390626pt;}
.fs3{font-size:42.879983pt;}
.fs5{font-size:47.999981pt;}
.fs4{font-size:53.119979pt;}
.fs6{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.fs1{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:60.426642pt;}
.y5b{bottom:61.386909pt;}
.y5a{bottom:80.106901pt;}
.y2c{bottom:81.546634pt;}
.y8a{bottom:97.226894pt;}
.y59{bottom:97.706894pt;}
.y2b{bottom:102.826626pt;}
.y56{bottom:105.866891pt;}
.y58{bottom:115.946887pt;}
.y89{bottom:123.466617pt;}
.y2a{bottom:123.946617pt;}
.y57{bottom:133.706880pt;}
.y88{bottom:140.266611pt;}
.y55{bottom:149.866607pt;}
.y29{bottom:152.746606pt;}
.y54{bottom:157.546604pt;}
.y87{bottom:165.066601pt;}
.y53{bottom:181.066594pt;}
.y86{bottom:182.026594pt;}
.y28{bottom:182.186594pt;}
.y85{bottom:198.826587pt;}
.y27{bottom:203.466585pt;}
.y52{bottom:205.066585pt;}
.y51{bottom:220.426578pt;}
.y84{bottom:223.786577pt;}
.y26{bottom:224.586577pt;}
.y83{bottom:240.586570pt;}
.y25{bottom:245.706568pt;}
.y50{bottom:246.986568pt;}
.y82{bottom:265.546560pt;}
.y24{bottom:266.826560pt;}
.y4f{bottom:268.266559pt;}
.y81{bottom:282.346554pt;}
.y23{bottom:287.946551pt;}
.y4e{bottom:289.386551pt;}
.y80{bottom:307.146544pt;}
.y22{bottom:309.226543pt;}
.y4d{bottom:318.186539pt;}
.y7f{bottom:324.106537pt;}
.y21{bottom:338.346531pt;}
.y7e{bottom:340.906530pt;}
.y4c{bottom:347.626528pt;}
.y20{bottom:359.466523pt;}
.y7d{bottom:365.866520pt;}
.y4b{bottom:368.906519pt;}
.y1f{bottom:380.586514pt;}
.y4a{bottom:390.026511pt;}
.y7c{bottom:395.146509pt;}
.y1e{bottom:401.866506pt;}
.y49{bottom:411.146502pt;}
.y7b{bottom:416.426500pt;}
.y1d{bottom:422.986497pt;}
.y48{bottom:440.266491pt;}
.y1c{bottom:444.106489pt;}
.y7a{bottom:445.226489pt;}
.y47{bottom:461.546482pt;}
.y1b{bottom:472.906478pt;}
.y79{bottom:474.666477pt;}
.y46{bottom:482.666474pt;}
.y78{bottom:495.786468pt;}
.y1a{bottom:502.506466pt;}
.y45{bottom:503.786465pt;}
.y77{bottom:517.066460pt;}
.y44{bottom:524.906457pt;}
.y19{bottom:531.626454pt;}
.y76{bottom:538.186451pt;}
.y43{bottom:546.186448pt;}
.y18{bottom:552.746446pt;}
.y75{bottom:559.306443pt;}
.y17{bottom:573.866437pt;}
.y42{bottom:575.306437pt;}
.y74{bottom:580.426434pt;}
.y16{bottom:595.146429pt;}
.y41{bottom:596.426428pt;}
.y73{bottom:601.706426pt;}
.y15{bottom:616.266420pt;}
.y40{bottom:617.546420pt;}
.y72{bottom:630.506414pt;}
.y14{bottom:637.386412pt;}
.y3f{bottom:638.826411pt;}
.y71{bottom:649.066407pt;}
.y13{bottom:658.506403pt;}
.y3e{bottom:659.946403pt;}
.y70{bottom:666.666400pt;}
.y12{bottom:679.786395pt;}
.y3d{bottom:681.066394pt;}
.y6f{bottom:681.546394pt;}
.y6e{bottom:696.906388pt;}
.y11{bottom:700.906386pt;}
.y3c{bottom:702.186386pt;}
.y10{bottom:722.026378pt;}
.y6d{bottom:729.706375pt;}
.y3b{bottom:731.306374pt;}
.yf{bottom:743.146369pt;}
.y6c{bottom:747.306368pt;}
.y3a{bottom:752.586366pt;}
.y69{bottom:755.466364pt;}
.ye{bottom:764.426361pt;}
.y6b{bottom:765.546360pt;}
.y39{bottom:773.706357pt;}
.y6a{bottom:783.306353pt;}
.yd{bottom:785.546352pt;}
.y38{bottom:794.826349pt;}
.y68{bottom:799.466347pt;}
.yc{bottom:806.666344pt;}
.y67{bottom:807.146344pt;}
.y37{bottom:815.946340pt;}
.yb{bottom:827.786336pt;}
.y66{bottom:830.666334pt;}
.y36{bottom:837.226332pt;}
.y65{bottom:838.346331pt;}
.ya{bottom:848.906327pt;}
.y35{bottom:866.346320pt;}
.y64{bottom:870.026319pt;}
.y9{bottom:870.186319pt;}
.y63{bottom:885.386313pt;}
.y34{bottom:887.466312pt;}
.y8{bottom:888.746311pt;}
.y62{bottom:903.946305pt;}
.y7{bottom:907.146304pt;}
.y33{bottom:908.586303pt;}
.y6{bottom:913.226301pt;}
.y61{bottom:925.226297pt;}
.y5{bottom:929.226295pt;}
.y32{bottom:929.866295pt;}
.y60{bottom:946.346288pt;}
.y31{bottom:950.986286pt;}
.y4{bottom:962.506282pt;}
.y5f{bottom:972.906278pt;}
.y30{bottom:980.106275pt;}
.y5e{bottom:990.186271pt;}
.y3{bottom:990.826270pt;}
.y2f{bottom:1001.226266pt;}
.y5d{bottom:1007.146264pt;}
.y2e{bottom:1022.506258pt;}
.y2{bottom:1022.666258pt;}
.y5c{bottom:1025.066257pt;}
.y1{bottom:1037.066252pt;}
.h4{height:42.084358pt;}
.hd{height:47.109356pt;}
.h7{height:52.134354pt;}
.ha{height:55.402478pt;}
.h11{height:57.787477pt;}
.hc{height:59.882476pt;}
.h5{height:62.781225pt;}
.h1{height:62.812475pt;}
.h6{height:64.499974pt;}
.h3{height:73.454033pt;}
.h8{height:82.214342pt;}
.he{height:82.854342pt;}
.hb{height:83.494342pt;}
.h2{height:85.784966pt;}
.h9{height:112.934330pt;}
.hf{height:113.574330pt;}
.h10{height:116.842453pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:47.999981pt;}
.xe{left:55.199978pt;}
.x9{left:56.319977pt;}
.x12{left:58.559977pt;}
.x11{left:61.119980pt;}
.x1a{left:66.879530pt;}
.x5{left:71.679971pt;}
.x3{left:78.239969pt;}
.x1b{left:85.762785pt;}
.xf{left:114.080046pt;}
.x18{left:125.760053pt;}
.x10{left:130.560048pt;}
.x6{left:132.959947pt;}
.x13{left:135.199927pt;}
.x7{left:138.399945pt;}
.x14{left:175.679930pt;}
.x4{left:272.640572pt;}
.x15{left:355.040952pt;}
.xa{left:381.760571pt;}
.x8{left:396.800228pt;}
.x19{left:420.959832pt;}
.x16{left:515.520959pt;}
.xb{left:542.240578pt;}
.xc{left:626.400571pt;}
.x17{left:644.960948pt;}
.xd{left:692.800590pt;}
.x1{left:745.759702pt;}
}




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