
    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_2b81892821fc6a018f96dfac.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_df040ed2fab2914765ccc826.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.000000;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_a49f9f3f525cb93a19a91811.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.826172;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_21ac7325737434d260f21f8f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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;}
.m1{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);}
.m2{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);}
.m4{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);}
.m0{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);}
.m5{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.790211px;}
.ls3{letter-spacing:0.903087px;}
.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;}
}
.ws0{word-spacing:-13.505755px;}
.ws1{word-spacing:-8.786876px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.009902px;}
._7{width:1.159233px;}
._10{width:2.260945px;}
._14{width:3.895220px;}
._e{width:5.368209px;}
._d{width:6.421740px;}
._8{width:7.782377px;}
._16{width:9.263663px;}
._1b{width:10.505636px;}
._11{width:11.507470px;}
._9{width:15.159708px;}
._a{width:16.266515px;}
._b{width:17.342754px;}
._1c{width:18.394565px;}
._1d{width:19.617456px;}
._21{width:20.667578px;}
._c{width:21.944802px;}
._26{width:23.170576px;}
._15{width:24.933666px;}
._2d{width:25.967758px;}
._22{width:27.150488px;}
._6{width:28.210498px;}
._23{width:30.348260px;}
._13{width:31.540506px;}
._12{width:32.772939px;}
._1e{width:33.774903px;}
._20{width:35.335864px;}
._27{width:37.075537px;}
._1a{width:38.685029px;}
._19{width:39.966920px;}
._24{width:41.177374px;}
._f{width:46.022977px;}
._25{width:49.977000px;}
._1f{width:52.440790px;}
._18{width:53.674982px;}
._17{width:54.970518px;}
._2e{width:63.661622px;}
._2a{width:70.735115px;}
._4{width:103.496830px;}
._3{width:114.040167px;}
._1{width:148.913115px;}
._5{width:179.813011px;}
._2c{width:197.552110px;}
._2{width:201.618035px;}
._2b{width:388.206421px;}
._29{width:1849.762968px;}
._28{width:1917.545420px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,10);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(51,51,51);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.879984px;}
.fs0{font-size:48.239981px;}
.fs1{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y53{bottom:3.238918px;}
.y14{bottom:3.240020px;}
.y5{bottom:38.820284px;}
.y57{bottom:48.720281px;}
.y4{bottom:58.440277px;}
.y56{bottom:67.619973px;}
.y51{bottom:93.900262px;}
.y13{bottom:97.140240px;}
.y93{bottom:104.700258px;}
.yad{bottom:105.960258px;}
.y50{bottom:112.260255px;}
.y12{bottom:118.559953px;}
.y92{bottom:122.880251px;}
.yac{bottom:124.140250px;}
.y4f{bottom:130.440248px;}
.y11{bottom:136.919945px;}
.y91{bottom:141.240244px;}
.y4e{bottom:148.800240px;}
.yab{bottom:151.499939px;}
.y10{bottom:155.279938px;}
.y90{bottom:159.599936px;}
.y4d{bottom:167.159933px;}
.yaa{bottom:169.859932px;}
.yf{bottom:173.639931px;}
.y8f{bottom:177.959929px;}
.y4c{bottom:185.339926px;}
.ye{bottom:191.819923px;}
.y8e{bottom:196.139922px;}
.ya9{bottom:197.039921px;}
.y4b{bottom:203.699919px;}
.yd{bottom:210.179916px;}
.y8d{bottom:214.499914px;}
.ya8{bottom:215.399914px;}
.y4a{bottom:222.059911px;}
.yc{bottom:228.539909px;}
.y8c{bottom:232.859907px;}
.y49{bottom:240.419904px;}
.ya7{bottom:242.759903px;}
.yb{bottom:246.719901px;}
.y8b{bottom:251.039900px;}
.y48{bottom:258.599897px;}
.ya6{bottom:261.119896px;}
.ya{bottom:265.079894px;}
.y8a{bottom:269.399892px;}
.y47{bottom:276.959889px;}
.ya5{bottom:279.299888px;}
.y9{bottom:283.439887px;}
.y89{bottom:287.759885px;}
.y46{bottom:295.319882px;}
.ya4{bottom:297.659881px;}
.y8{bottom:301.799879px;}
.y88{bottom:306.119878px;}
.y45{bottom:313.679875px;}
.ya3{bottom:316.019874px;}
.y7{bottom:319.979872px;}
.y87{bottom:324.299870px;}
.y44{bottom:331.859867px;}
.ya2{bottom:334.379866px;}
.y6{bottom:338.339865px;}
.y86{bottom:342.659863px;}
.y43{bottom:350.219860px;}
.y85{bottom:361.019856px;}
.ya1{bottom:361.559855px;}
.y42{bottom:368.579853px;}
.y84{bottom:379.379848px;}
.ya0{bottom:379.919848px;}
.y41{bottom:386.759845px;}
.y83{bottom:397.559841px;}
.y40{bottom:405.119838px;}
.y9f{bottom:407.279837px;}
.y82{bottom:415.919834px;}
.y3f{bottom:423.479831px;}
.y9e{bottom:425.459830px;}
.y81{bottom:434.279826px;}
.y3e{bottom:441.839823px;}
.y9d{bottom:443.819822px;}
.y80{bottom:452.459819px;}
.y3d{bottom:460.019816px;}
.y9c{bottom:462.179815px;}
.y7f{bottom:470.819812px;}
.y3c{bottom:478.379809px;}
.y9b{bottom:480.539808px;}
.y7e{bottom:489.179804px;}
.y3b{bottom:496.739801px;}
.y9a{bottom:498.719801px;}
.y7d{bottom:507.539797px;}
.y3a{bottom:515.099794px;}
.y99{bottom:517.079793px;}
.y7c{bottom:525.719790px;}
.y39{bottom:533.279787px;}
.y7b{bottom:544.079782px;}
.y98{bottom:544.439782px;}
.y37{bottom:551.639779px;}
.y38{bottom:559.199776px;}
.y7a{bottom:562.439775px;}
.y97{bottom:562.619775px;}
.y36{bottom:569.999772px;}
.y79{bottom:580.619768px;}
.y96{bottom:580.979768px;}
.y35{bottom:588.179765px;}
.y78{bottom:598.979760px;}
.y34{bottom:606.539757px;}
.y95{bottom:608.339757px;}
.y77{bottom:617.339753px;}
.y33{bottom:624.899750px;}
.y94{bottom:626.699749px;}
.y76{bottom:635.699746px;}
.y32{bottom:643.259743px;}
.y75{bottom:653.879738px;}
.y31{bottom:661.439735px;}
.y74{bottom:672.239731px;}
.y30{bottom:679.799728px;}
.y73{bottom:690.599724px;}
.y2f{bottom:698.159721px;}
.y72{bottom:708.959716px;}
.y2e{bottom:716.519713px;}
.y71{bottom:727.139709px;}
.y2d{bottom:734.699706px;}
.y70{bottom:745.499702px;}
.y2c{bottom:753.059699px;}
.y6f{bottom:763.859694px;}
.y2b{bottom:771.419691px;}
.y6e{bottom:782.039687px;}
.y2a{bottom:789.599684px;}
.y6d{bottom:800.399680px;}
.y29{bottom:807.959677px;}
.y6c{bottom:818.759672px;}
.y28{bottom:826.319669px;}
.y6b{bottom:837.119665px;}
.y27{bottom:844.679662px;}
.y6a{bottom:855.299658px;}
.y26{bottom:862.859655px;}
.y69{bottom:873.659651px;}
.y25{bottom:881.219648px;}
.y68{bottom:892.019643px;}
.y24{bottom:899.579640px;}
.y67{bottom:910.379636px;}
.y23{bottom:917.759633px;}
.y66{bottom:928.559629px;}
.y22{bottom:936.119626px;}
.y65{bottom:946.919621px;}
.y21{bottom:954.479618px;}
.y64{bottom:965.279614px;}
.y20{bottom:972.839611px;}
.y63{bottom:983.459607px;}
.y1f{bottom:991.019604px;}
.y62{bottom:1001.819599px;}
.y1e{bottom:1009.379596px;}
.y61{bottom:1020.179592px;}
.y1d{bottom:1027.739589px;}
.y60{bottom:1038.539585px;}
.y1c{bottom:1046.099582px;}
.y5f{bottom:1056.719577px;}
.y1b{bottom:1064.279574px;}
.y5e{bottom:1075.079570px;}
.y1a{bottom:1082.639567px;}
.y5d{bottom:1093.439563px;}
.y19{bottom:1100.999560px;}
.y5c{bottom:1111.799555px;}
.y18{bottom:1119.359552px;}
.y5b{bottom:1129.979548px;}
.y17{bottom:1140.419544px;}
.y55{bottom:1145.999542px;}
.y5a{bottom:1148.339541px;}
.y16{bottom:1161.479535px;}
.y54{bottom:1166.159534px;}
.y59{bottom:1166.699533px;}
.y15{bottom:1182.359527px;}
.y58{bottom:1184.879526px;}
.y3{bottom:1186.319525px;}
.y52{bottom:1201.800600px;}
.y2{bottom:1205.039518px;}
.y1{bottom:1219.619512px;}
.h2{height:0.000000px;}
.h9{height:14.760000px;}
.h6{height:17.460000px;}
.h8{height:27.907020px;}
.h1{height:34.625377px;}
.h4{height:40.851546px;}
.h5{height:42.894123px;}
.h3{height:47.545293px;}
.h7{height:49.218730px;}
.h0{height:1263.000000px;}
.w2{width:3.420000px;}
.w4{width:8.820000px;}
.w5{width:10.980000px;}
.w1{width:37.800000px;}
.w3{width:133.380000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:84.959966px;}
.x8{left:95.579962px;}
.x4{left:96.839961px;}
.x5{left:134.640000px;}
.x6{left:138.060000px;}
.xe{left:191.159924px;}
.x7{left:271.440000px;}
.x9{left:296.459881px;}
.xa{left:304.919878px;}
.xb{left:457.199817px;}
.xc{left:467.819813px;}
.x3{left:800.279680px;}
.x2{left:804.599678px;}
.xf{left:807.839677px;}
.xd{left:881.460000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.702410pt;}
.ls3{letter-spacing:0.802744pt;}
.ws0{word-spacing:-12.005115pt;}
.ws1{word-spacing:-7.810557pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-0.897691pt;}
._7{width:1.030429pt;}
._10{width:2.009729pt;}
._14{width:3.462418pt;}
._e{width:4.771742pt;}
._d{width:5.708214pt;}
._8{width:6.917669pt;}
._16{width:8.234368pt;}
._1b{width:9.338343pt;}
._11{width:10.228862pt;}
._9{width:13.475296pt;}
._a{width:14.459125pt;}
._b{width:15.415781pt;}
._1c{width:16.350725pt;}
._1d{width:17.437738pt;}
._21{width:18.371180pt;}
._c{width:19.506490pt;}
._26{width:20.596068pt;}
._15{width:22.163259pt;}
._2d{width:23.082451pt;}
._22{width:24.133767pt;}
._6{width:25.075998pt;}
._23{width:26.976231pt;}
._13{width:28.036005pt;}
._12{width:29.131502pt;}
._1e{width:30.022136pt;}
._20{width:31.409657pt;}
._27{width:32.956033pt;}
._1a{width:34.386692pt;}
._19{width:35.526151pt;}
._24{width:36.602111pt;}
._f{width:40.909313pt;}
._25{width:44.424000pt;}
._1f{width:46.614036pt;}
._18{width:47.711095pt;}
._17{width:48.862682pt;}
._2e{width:56.588108pt;}
._2a{width:62.875658pt;}
._4{width:91.997183pt;}
._3{width:101.369037pt;}
._1{width:132.367213pt;}
._5{width:159.833788pt;}
._2c{width:175.601875pt;}
._2{width:179.216031pt;}
._2b{width:345.072374pt;}
._29{width:1644.233749pt;}
._28{width:1704.484818pt;}
.fs4{font-size:34.559986pt;}
.fs0{font-size:42.879983pt;}
.fs1{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:2.879038pt;}
.y14{bottom:2.880018pt;}
.y5{bottom:34.506920pt;}
.y57{bottom:43.306916pt;}
.y4{bottom:51.946913pt;}
.y56{bottom:60.106643pt;}
.y51{bottom:83.466900pt;}
.y13{bottom:86.346880pt;}
.y93{bottom:93.066896pt;}
.yad{bottom:94.186896pt;}
.y50{bottom:99.786893pt;}
.y12{bottom:105.386625pt;}
.y92{bottom:109.226890pt;}
.yac{bottom:110.346889pt;}
.y4f{bottom:115.946887pt;}
.y11{bottom:121.706618pt;}
.y91{bottom:125.546883pt;}
.y4e{bottom:132.266880pt;}
.yab{bottom:134.666613pt;}
.y10{bottom:138.026611pt;}
.y90{bottom:141.866610pt;}
.y4d{bottom:148.586607pt;}
.yaa{bottom:150.986606pt;}
.yf{bottom:154.346605pt;}
.y8f{bottom:158.186603pt;}
.y4c{bottom:164.746601pt;}
.ye{bottom:170.506598pt;}
.y8e{bottom:174.346597pt;}
.ya9{bottom:175.146597pt;}
.y4b{bottom:181.066594pt;}
.yd{bottom:186.826592pt;}
.y8d{bottom:190.666590pt;}
.ya8{bottom:191.466590pt;}
.y4a{bottom:197.386588pt;}
.yc{bottom:203.146585pt;}
.y8c{bottom:206.986584pt;}
.y49{bottom:213.706581pt;}
.ya7{bottom:215.786580pt;}
.yb{bottom:219.306579pt;}
.y8b{bottom:223.146577pt;}
.y48{bottom:229.866575pt;}
.ya6{bottom:232.106574pt;}
.ya{bottom:235.626572pt;}
.y8a{bottom:239.466571pt;}
.y47{bottom:246.186568pt;}
.ya5{bottom:248.266567pt;}
.y9{bottom:251.946566pt;}
.y89{bottom:255.786564pt;}
.y46{bottom:262.506562pt;}
.ya4{bottom:264.586561pt;}
.y8{bottom:268.266559pt;}
.y88{bottom:272.106558pt;}
.y45{bottom:278.826555pt;}
.ya3{bottom:280.906554pt;}
.y7{bottom:284.426553pt;}
.y87{bottom:288.266551pt;}
.y44{bottom:294.986549pt;}
.ya2{bottom:297.226548pt;}
.y6{bottom:300.746546pt;}
.y86{bottom:304.586545pt;}
.y43{bottom:311.306542pt;}
.y85{bottom:320.906538pt;}
.ya1{bottom:321.386538pt;}
.y42{bottom:327.626536pt;}
.y84{bottom:337.226532pt;}
.ya0{bottom:337.706532pt;}
.y41{bottom:343.786529pt;}
.y83{bottom:353.386525pt;}
.y40{bottom:360.106523pt;}
.y9f{bottom:362.026522pt;}
.y82{bottom:369.706519pt;}
.y3f{bottom:376.426516pt;}
.y9e{bottom:378.186515pt;}
.y81{bottom:386.026512pt;}
.y3e{bottom:392.746510pt;}
.y9d{bottom:394.506509pt;}
.y80{bottom:402.186506pt;}
.y3d{bottom:408.906503pt;}
.y9c{bottom:410.826502pt;}
.y7f{bottom:418.506499pt;}
.y3c{bottom:425.226497pt;}
.y9b{bottom:427.146496pt;}
.y7e{bottom:434.826493pt;}
.y3b{bottom:441.546490pt;}
.y9a{bottom:443.306489pt;}
.y7d{bottom:451.146486pt;}
.y3a{bottom:457.866484pt;}
.y99{bottom:459.626483pt;}
.y7c{bottom:467.306480pt;}
.y39{bottom:474.026477pt;}
.y7b{bottom:483.626473pt;}
.y98{bottom:483.946473pt;}
.y37{bottom:490.346471pt;}
.y38{bottom:497.066468pt;}
.y7a{bottom:499.946467pt;}
.y97{bottom:500.106467pt;}
.y36{bottom:506.666464pt;}
.y79{bottom:516.106460pt;}
.y96{bottom:516.426460pt;}
.y35{bottom:522.826458pt;}
.y78{bottom:532.426454pt;}
.y34{bottom:539.146451pt;}
.y95{bottom:540.746450pt;}
.y77{bottom:548.746447pt;}
.y33{bottom:555.466444pt;}
.y94{bottom:557.066444pt;}
.y76{bottom:565.066441pt;}
.y32{bottom:571.786438pt;}
.y75{bottom:581.226434pt;}
.y31{bottom:587.946431pt;}
.y74{bottom:597.546428pt;}
.y30{bottom:604.266425pt;}
.y73{bottom:613.866421pt;}
.y2f{bottom:620.586418pt;}
.y72{bottom:630.186415pt;}
.y2e{bottom:636.906412pt;}
.y71{bottom:646.346408pt;}
.y2d{bottom:653.066405pt;}
.y70{bottom:662.666402pt;}
.y2c{bottom:669.386399pt;}
.y6f{bottom:678.986395pt;}
.y2b{bottom:685.706392pt;}
.y6e{bottom:695.146389pt;}
.y2a{bottom:701.866386pt;}
.y6d{bottom:711.466382pt;}
.y29{bottom:718.186379pt;}
.y6c{bottom:727.786376pt;}
.y28{bottom:734.506373pt;}
.y6b{bottom:744.106369pt;}
.y27{bottom:750.826366pt;}
.y6a{bottom:760.266363pt;}
.y26{bottom:766.986360pt;}
.y69{bottom:776.586356pt;}
.y25{bottom:783.306353pt;}
.y68{bottom:792.906350pt;}
.y24{bottom:799.626347pt;}
.y67{bottom:809.226343pt;}
.y23{bottom:815.786340pt;}
.y66{bottom:825.386337pt;}
.y22{bottom:832.106334pt;}
.y65{bottom:841.706330pt;}
.y21{bottom:848.426327pt;}
.y64{bottom:858.026323pt;}
.y20{bottom:864.746321pt;}
.y63{bottom:874.186317pt;}
.y1f{bottom:880.906314pt;}
.y62{bottom:890.506310pt;}
.y1e{bottom:897.226308pt;}
.y61{bottom:906.826304pt;}
.y1d{bottom:913.546301pt;}
.y60{bottom:923.146297pt;}
.y1c{bottom:929.866295pt;}
.y5f{bottom:939.306291pt;}
.y1b{bottom:946.026288pt;}
.y5e{bottom:955.626284pt;}
.y1a{bottom:962.346282pt;}
.y5d{bottom:971.946278pt;}
.y19{bottom:978.666275pt;}
.y5c{bottom:988.266271pt;}
.y18{bottom:994.986269pt;}
.y5b{bottom:1004.426265pt;}
.y17{bottom:1013.706261pt;}
.y55{bottom:1018.666259pt;}
.y5a{bottom:1020.746258pt;}
.y16{bottom:1032.426254pt;}
.y54{bottom:1036.586252pt;}
.y59{bottom:1037.066252pt;}
.y15{bottom:1050.986246pt;}
.y58{bottom:1053.226245pt;}
.y3{bottom:1054.506245pt;}
.y52{bottom:1068.267200pt;}
.y2{bottom:1071.146238pt;}
.y1{bottom:1084.106233pt;}
.h2{height:0.000000pt;}
.h9{height:13.120000pt;}
.h6{height:15.520000pt;}
.h8{height:24.806240pt;}
.h1{height:30.778113pt;}
.h4{height:36.312485pt;}
.h5{height:38.128110pt;}
.h3{height:42.262483pt;}
.h7{height:43.749982pt;}
.h0{height:1122.666667pt;}
.w2{width:3.040000pt;}
.w4{width:7.840000pt;}
.w5{width:9.760000pt;}
.w1{width:33.600000pt;}
.w3{width:118.560000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:75.519970pt;}
.x8{left:84.959966pt;}
.x4{left:86.079966pt;}
.x5{left:119.680000pt;}
.x6{left:122.720000pt;}
.xe{left:169.919932pt;}
.x7{left:241.280000pt;}
.x9{left:263.519895pt;}
.xa{left:271.039892pt;}
.xb{left:406.399837pt;}
.xc{left:415.839834pt;}
.x3{left:711.359715pt;}
.x2{left:715.199714pt;}
.xf{left:718.079713pt;}
.xd{left:783.520000pt;}
}




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