
    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_f6e28f4d35639c9dd6ef8c09.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_2c3c87fd5c0e08578d9d7eba.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_9ddda63e653e83db19e40371.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_80a6524311dd00cd0182c96c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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.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);}
.m2{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);}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.021240px;}
.ls2{letter-spacing:0.021282px;}
.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:-17.999993px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-5.249545px;}
._11{margin-left:-4.091039px;}
._c{margin-left:-2.844689px;}
._5{margin-left:-1.623990px;}
._0{width:1.190670px;}
._4{width:2.379736px;}
._d{width:4.326183px;}
._16{width:5.455127px;}
._1{width:6.536938px;}
._2{width:7.620739px;}
._6{width:8.945059px;}
._7{width:9.982173px;}
._9{width:10.990565px;}
._8{width:12.299116px;}
._10{width:13.852330px;}
._3{width:15.661610px;}
._f{width:16.732801px;}
._b{width:19.858715px;}
._19{width:21.000907px;}
._12{width:22.003637px;}
._13{width:23.266085px;}
._17{width:25.133742px;}
._a{width:26.389850px;}
._14{width:27.493051px;}
._15{width:28.701263px;}
._18{width:30.832681px;}
._e{width:31.833485px;}
._1b{width:35.038608px;}
._1c{width:36.873834px;}
._1d{width:38.123401px;}
._1e{width:39.354138px;}
._23{width:55.316714px;}
._24{width:56.399785px;}
._22{width:88.122284px;}
._20{width:196.866384px;}
._21{width:198.394779px;}
._1f{width:206.815092px;}
._25{width:846.510861px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.000277px;}
.ya3{bottom:115.499954px;}
.y8e{bottom:119.459952px;}
.y7b{bottom:128.459949px;}
.y29{bottom:128.639949px;}
.y69{bottom:137.459945px;}
.y4b{bottom:140.699944px;}
.ybf{bottom:141.959943px;}
.ya2{bottom:146.459941px;}
.y8d{bottom:150.599940px;}
.y28{bottom:153.479939px;}
.y7a{bottom:159.599936px;}
.ybe{bottom:162.659935px;}
.y68{bottom:168.599933px;}
.y4a{bottom:171.659931px;}
.ya1{bottom:177.599929px;}
.y27{bottom:178.319929px;}
.y8c{bottom:181.559927px;}
.ybd{bottom:183.359927px;}
.y79{bottom:190.559924px;}
.y67{bottom:199.559920px;}
.y49{bottom:202.799919px;}
.y26{bottom:203.159919px;}
.ybc{bottom:204.059918px;}
.ya0{bottom:208.559917px;}
.y8b{bottom:212.699915px;}
.y78{bottom:221.699911px;}
.y25{bottom:227.999909px;}
.y66{bottom:230.699908px;}
.y48{bottom:233.759906px;}
.ybb{bottom:236.819905px;}
.y9f{bottom:239.699904px;}
.y8a{bottom:243.659903px;}
.y77{bottom:252.659899px;}
.y24{bottom:252.839899px;}
.yba{bottom:257.519897px;}
.y65{bottom:261.659895px;}
.y47{bottom:264.899894px;}
.y9e{bottom:270.659892px;}
.y89{bottom:274.619890px;}
.y23{bottom:277.679889px;}
.y76{bottom:283.619887px;}
.yb9{bottom:290.099884px;}
.y64{bottom:292.619883px;}
.y46{bottom:295.859882px;}
.y9d{bottom:301.619879px;}
.y22{bottom:302.519879px;}
.yb8{bottom:310.799876px;}
.y75{bottom:314.759874px;}
.y63{bottom:323.759870px;}
.y21{bottom:327.359869px;}
.yb7{bottom:331.499867px;}
.y9c{bottom:332.759867px;}
.y45{bottom:335.999866px;}
.y74{bottom:345.719862px;}
.y20{bottom:352.199859px;}
.y62{bottom:354.719858px;}
.y9b{bottom:363.719855px;}
.yb6{bottom:364.259854px;}
.y44{bottom:366.959853px;}
.y73{bottom:376.859849px;}
.y1f{bottom:377.039849px;}
.yb5{bottom:384.959846px;}
.y61{bottom:385.859846px;}
.y9a{bottom:394.859842px;}
.y43{bottom:398.099841px;}
.y1e{bottom:401.879839px;}
.yb4{bottom:405.659838px;}
.y72{bottom:407.819837px;}
.y60{bottom:416.819833px;}
.y99{bottom:425.819830px;}
.yb3{bottom:426.359829px;}
.y1d{bottom:426.719829px;}
.y42{bottom:429.059828px;}
.y71{bottom:438.959824px;}
.y5f{bottom:447.959821px;}
.y1c{bottom:451.559819px;}
.y98{bottom:456.959817px;}
.yb2{bottom:459.119816px;}
.y41{bottom:460.199816px;}
.y70{bottom:469.919812px;}
.y1b{bottom:476.399809px;}
.y5e{bottom:478.919808px;}
.yb1{bottom:479.819808px;}
.y97{bottom:487.919805px;}
.y40{bottom:491.159804px;}
.y6f{bottom:501.059800px;}
.y5d{bottom:510.059796px;}
.y1a{bottom:510.239796px;}
.yb0{bottom:512.399795px;}
.y96{bottom:519.059792px;}
.y3f{bottom:531.299787px;}
.y6e{bottom:532.019787px;}
.yaf{bottom:533.099787px;}
.y19{bottom:535.079786px;}
.y5c{bottom:541.019784px;}
.y95{bottom:550.019780px;}
.y18{bottom:559.919776px;}
.y3e{bottom:562.259775px;}
.y6d{bottom:563.159775px;}
.yae{bottom:565.859774px;}
.y5b{bottom:572.159771px;}
.y94{bottom:581.159768px;}
.y17{bottom:584.759766px;}
.yad{bottom:586.559765px;}
.y3d{bottom:593.399763px;}
.y88{bottom:594.119762px;}
.y5a{bottom:603.119759px;}
.yac{bottom:607.259757px;}
.y16{bottom:609.599756px;}
.y93{bottom:612.119755px;}
.yd4{bottom:621.299751px;}
.y3c{bottom:624.359750px;}
.y87{bottom:625.259750px;}
.yab{bottom:627.959749px;}
.y59{bottom:634.259746px;}
.y15{bottom:634.439746px;}
.y92{bottom:643.259743px;}
.yd3{bottom:654.059738px;}
.y3b{bottom:655.499738px;}
.y86{bottom:656.219738px;}
.y14{bottom:659.279736px;}
.yaa{bottom:660.539736px;}
.y58{bottom:665.219734px;}
.y91{bottom:674.219730px;}
.yd2{bottom:674.759730px;}
.ya9{bottom:681.239728px;}
.y13{bottom:684.119726px;}
.y3a{bottom:686.459725px;}
.y85{bottom:687.359725px;}
.yd1{bottom:695.459722px;}
.y57{bottom:696.359721px;}
.y90{bottom:705.359718px;}
.y12{bottom:708.959716px;}
.ya8{bottom:713.999714px;}
.yd0{bottom:716.159714px;}
.y39{bottom:717.599713px;}
.y84{bottom:718.319713px;}
.y56{bottom:727.319709px;}
.y11{bottom:733.799706px;}
.ya7{bottom:734.699706px;}
.y8f{bottom:736.319705px;}
.y38{bottom:748.559701px;}
.ycf{bottom:748.739701px;}
.ya6{bottom:755.399698px;}
.y55{bottom:758.459697px;}
.y10{bottom:758.639697px;}
.y7f{bottom:767.459693px;}
.yce{bottom:769.439692px;}
.y37{bottom:779.699688px;}
.yf{bottom:783.479687px;}
.ya5{bottom:788.159685px;}
.y54{bottom:789.419684px;}
.ycd{bottom:790.139684px;}
.y7e{bottom:798.419681px;}
.ye{bottom:808.319677px;}
.ya4{bottom:808.859676px;}
.y36{bottom:810.659676px;}
.y53{bottom:820.559672px;}
.ycc{bottom:822.899671px;}
.y7d{bottom:829.559668px;}
.yd{bottom:832.979667px;}
.y35{bottom:841.799663px;}
.ycb{bottom:843.599663px;}
.y52{bottom:851.519659px;}
.yc{bottom:857.819657px;}
.y7c{bottom:860.519656px;}
.yca{bottom:864.299654px;}
.y34{bottom:872.759651px;}
.yb{bottom:882.659647px;}
.yc9{bottom:884.999646px;}
.y6c{bottom:891.659643px;}
.y33{bottom:902.459639px;}
.ya{bottom:907.499637px;}
.y51{bottom:913.619635px;}
.yc8{bottom:917.759633px;}
.y6b{bottom:922.619631px;}
.y9{bottom:928.199629px;}
.y32{bottom:932.339627px;}
.yc7{bottom:938.459625px;}
.y50{bottom:944.759622px;}
.y8{bottom:949.979620px;}
.y6a{bottom:953.759618px;}
.y31{bottom:957.179617px;}
.yc6{bottom:959.159616px;}
.y7{bottom:971.759611px;}
.y83{bottom:975.719610px;}
.y30{bottom:982.019607px;}
.y4f{bottom:984.719606px;}
.yc5{bottom:991.739603px;}
.y6{bottom:993.539603px;}
.y82{bottom:1006.859597px;}
.yc4{bottom:1012.439595px;}
.y2f{bottom:1015.859594px;}
.y5{bottom:1024.499590px;}
.y81{bottom:1037.819585px;}
.y2e{bottom:1040.699584px;}
.yc3{bottom:1045.199582px;}
.y4e{bottom:1046.819581px;}
.y4{bottom:1055.639578px;}
.y2d{bottom:1065.539574px;}
.yc2{bottom:1065.899574px;}
.y80{bottom:1068.959572px;}
.y4d{bottom:1077.959569px;}
.y3{bottom:1080.299568px;}
.yc1{bottom:1086.599565px;}
.y2c{bottom:1090.379564px;}
.y4c{bottom:1108.919556px;}
.y2b{bottom:1115.219554px;}
.yc0{bottom:1119.359552px;}
.y2{bottom:1122.599551px;}
.y2a{bottom:1140.059544px;}
.h1{height:45.573102px;}
.h5{height:49.391980px;}
.h3{height:49.535980px;}
.h4{height:51.335979px;}
.h2{height:100.968710px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:106.199331px;}
.x2{left:125.622400px;}
.xb{left:140.219361px;}
.x9{left:191.159241px;}
.x3{left:276.840353px;}
.x1{left:438.119825px;}
.x7{left:444.239434px;}
.x8{left:521.099329px;}
.x5{left:578.519608px;}
.x6{left:697.140034px;}
.x4{left:786.599685px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.018880pt;}
.ls2{letter-spacing:0.018917pt;}
.ws0{word-spacing:-15.999994pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-4.666262pt;}
._11{margin-left:-3.636479pt;}
._c{margin-left:-2.528612pt;}
._5{margin-left:-1.443546pt;}
._0{width:1.058373pt;}
._4{width:2.115321pt;}
._d{width:3.845496pt;}
._16{width:4.849001pt;}
._1{width:5.810612pt;}
._2{width:6.773990pt;}
._6{width:7.951164pt;}
._7{width:8.873042pt;}
._9{width:9.769391pt;}
._8{width:10.932547pt;}
._10{width:12.313182pt;}
._3{width:13.921431pt;}
._f{width:14.873601pt;}
._b{width:17.652191pt;}
._19{width:18.667473pt;}
._12{width:19.558789pt;}
._13{width:20.680964pt;}
._17{width:22.341104pt;}
._a{width:23.457644pt;}
._14{width:24.438267pt;}
._15{width:25.512234pt;}
._18{width:27.406828pt;}
._e{width:28.296431pt;}
._1b{width:31.145429pt;}
._1c{width:32.776741pt;}
._1d{width:33.887468pt;}
._1e{width:34.981456pt;}
._23{width:49.170413pt;}
._24{width:50.133143pt;}
._22{width:78.330919pt;}
._20{width:174.992342pt;}
._21{width:176.350915pt;}
._1f{width:183.835637pt;}
._25{width:752.454099pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.666913pt;}
.ya3{bottom:102.666626pt;}
.y8e{bottom:106.186624pt;}
.y7b{bottom:114.186621pt;}
.y29{bottom:114.346621pt;}
.y69{bottom:122.186618pt;}
.y4b{bottom:125.066617pt;}
.ybf{bottom:126.186616pt;}
.ya2{bottom:130.186615pt;}
.y8d{bottom:133.866613pt;}
.y28{bottom:136.426612pt;}
.y7a{bottom:141.866610pt;}
.ybe{bottom:144.586609pt;}
.y68{bottom:149.866607pt;}
.y4a{bottom:152.586606pt;}
.ya1{bottom:157.866604pt;}
.y27{bottom:158.506603pt;}
.y8c{bottom:161.386602pt;}
.ybd{bottom:162.986601pt;}
.y79{bottom:169.386599pt;}
.y67{bottom:177.386596pt;}
.y49{bottom:180.266595pt;}
.y26{bottom:180.586594pt;}
.ybc{bottom:181.386594pt;}
.ya0{bottom:185.386593pt;}
.y8b{bottom:189.066591pt;}
.y78{bottom:197.066588pt;}
.y25{bottom:202.666586pt;}
.y66{bottom:205.066585pt;}
.y48{bottom:207.786584pt;}
.ybb{bottom:210.506582pt;}
.y9f{bottom:213.066581pt;}
.y8a{bottom:216.586580pt;}
.y77{bottom:224.586577pt;}
.y24{bottom:224.746577pt;}
.yba{bottom:228.906575pt;}
.y65{bottom:232.586574pt;}
.y47{bottom:235.466572pt;}
.y9e{bottom:240.586570pt;}
.y89{bottom:244.106569pt;}
.y23{bottom:246.826568pt;}
.y76{bottom:252.106566pt;}
.yb9{bottom:257.866564pt;}
.y64{bottom:260.106563pt;}
.y46{bottom:262.986561pt;}
.y9d{bottom:268.106559pt;}
.y22{bottom:268.906559pt;}
.yb8{bottom:276.266556pt;}
.y75{bottom:279.786555pt;}
.y63{bottom:287.786552pt;}
.y21{bottom:290.986550pt;}
.yb7{bottom:294.666549pt;}
.y9c{bottom:295.786548pt;}
.y45{bottom:298.666547pt;}
.y74{bottom:307.306544pt;}
.y20{bottom:313.066541pt;}
.y62{bottom:315.306541pt;}
.y9b{bottom:323.306537pt;}
.yb6{bottom:323.786537pt;}
.y44{bottom:326.186536pt;}
.y73{bottom:334.986533pt;}
.y1f{bottom:335.146533pt;}
.yb5{bottom:342.186530pt;}
.y61{bottom:342.986529pt;}
.y9a{bottom:350.986526pt;}
.y43{bottom:353.866525pt;}
.y1e{bottom:357.226524pt;}
.yb4{bottom:360.586522pt;}
.y72{bottom:362.506522pt;}
.y60{bottom:370.506518pt;}
.y99{bottom:378.506515pt;}
.yb3{bottom:378.986515pt;}
.y1d{bottom:379.306515pt;}
.y42{bottom:381.386514pt;}
.y71{bottom:390.186511pt;}
.y5f{bottom:398.186507pt;}
.y1c{bottom:401.386506pt;}
.y98{bottom:406.186504pt;}
.yb2{bottom:408.106503pt;}
.y41{bottom:409.066503pt;}
.y70{bottom:417.706500pt;}
.y1b{bottom:423.466497pt;}
.y5e{bottom:425.706496pt;}
.yb1{bottom:426.506496pt;}
.y97{bottom:433.706493pt;}
.y40{bottom:436.586492pt;}
.y6f{bottom:445.386489pt;}
.y5d{bottom:453.386485pt;}
.y1a{bottom:453.546485pt;}
.yb0{bottom:455.466484pt;}
.y96{bottom:461.386482pt;}
.y3f{bottom:472.266478pt;}
.y6e{bottom:472.906478pt;}
.yaf{bottom:473.866477pt;}
.y19{bottom:475.626476pt;}
.y5c{bottom:480.906474pt;}
.y95{bottom:488.906471pt;}
.y18{bottom:497.706468pt;}
.y3e{bottom:499.786467pt;}
.y6d{bottom:500.586466pt;}
.yae{bottom:502.986465pt;}
.y5b{bottom:508.586463pt;}
.y94{bottom:516.586460pt;}
.y17{bottom:519.786459pt;}
.yad{bottom:521.386458pt;}
.y3d{bottom:527.466456pt;}
.y88{bottom:528.106455pt;}
.y5a{bottom:536.106452pt;}
.yac{bottom:539.786451pt;}
.y16{bottom:541.866450pt;}
.y93{bottom:544.106449pt;}
.yd4{bottom:552.266446pt;}
.y3c{bottom:554.986445pt;}
.y87{bottom:555.786444pt;}
.yab{bottom:558.186443pt;}
.y59{bottom:563.786441pt;}
.y15{bottom:563.946441pt;}
.y92{bottom:571.786438pt;}
.yd3{bottom:581.386434pt;}
.y3b{bottom:582.666434pt;}
.y86{bottom:583.306433pt;}
.y14{bottom:586.026432pt;}
.yaa{bottom:587.146432pt;}
.y58{bottom:591.306430pt;}
.y91{bottom:599.306427pt;}
.yd2{bottom:599.786427pt;}
.ya9{bottom:605.546424pt;}
.y13{bottom:608.106423pt;}
.y3a{bottom:610.186423pt;}
.y85{bottom:610.986422pt;}
.yd1{bottom:618.186419pt;}
.y57{bottom:618.986419pt;}
.y90{bottom:626.986416pt;}
.y12{bottom:630.186415pt;}
.ya8{bottom:634.666413pt;}
.yd0{bottom:636.586412pt;}
.y39{bottom:637.866412pt;}
.y84{bottom:638.506411pt;}
.y56{bottom:646.506408pt;}
.y11{bottom:652.266406pt;}
.ya7{bottom:653.066405pt;}
.y8f{bottom:654.506405pt;}
.y38{bottom:665.386401pt;}
.ycf{bottom:665.546400pt;}
.ya6{bottom:671.466398pt;}
.y55{bottom:674.186397pt;}
.y10{bottom:674.346397pt;}
.y7f{bottom:682.186394pt;}
.yce{bottom:683.946393pt;}
.y37{bottom:693.066389pt;}
.yf{bottom:696.426388pt;}
.ya5{bottom:700.586386pt;}
.y54{bottom:701.706386pt;}
.ycd{bottom:702.346386pt;}
.y7e{bottom:709.706383pt;}
.ye{bottom:718.506379pt;}
.ya4{bottom:718.986379pt;}
.y36{bottom:720.586378pt;}
.y53{bottom:729.386375pt;}
.ycc{bottom:731.466374pt;}
.y7d{bottom:737.386372pt;}
.yd{bottom:740.426370pt;}
.y35{bottom:748.266367pt;}
.ycb{bottom:749.866367pt;}
.y52{bottom:756.906364pt;}
.yc{bottom:762.506362pt;}
.y7c{bottom:764.906361pt;}
.yca{bottom:768.266359pt;}
.y34{bottom:775.786356pt;}
.yb{bottom:784.586353pt;}
.yc9{bottom:786.666352pt;}
.y6c{bottom:792.586350pt;}
.y33{bottom:802.186346pt;}
.ya{bottom:806.666344pt;}
.y51{bottom:812.106342pt;}
.yc8{bottom:815.786340pt;}
.y6b{bottom:820.106339pt;}
.y9{bottom:825.066337pt;}
.y32{bottom:828.746335pt;}
.yc7{bottom:834.186333pt;}
.y50{bottom:839.786331pt;}
.y8{bottom:844.426329pt;}
.y6a{bottom:847.786328pt;}
.y31{bottom:850.826326pt;}
.yc6{bottom:852.586326pt;}
.y7{bottom:863.786321pt;}
.y83{bottom:867.306320pt;}
.y30{bottom:872.906318pt;}
.y4f{bottom:875.306317pt;}
.yc5{bottom:881.546314pt;}
.y6{bottom:883.146313pt;}
.y82{bottom:894.986309pt;}
.yc4{bottom:899.946307pt;}
.y2f{bottom:902.986305pt;}
.y5{bottom:910.666302pt;}
.y81{bottom:922.506298pt;}
.y2e{bottom:925.066297pt;}
.yc3{bottom:929.066295pt;}
.y4e{bottom:930.506294pt;}
.y4{bottom:938.346291pt;}
.y2d{bottom:947.146288pt;}
.yc2{bottom:947.466288pt;}
.y80{bottom:950.186287pt;}
.y4d{bottom:958.186283pt;}
.y3{bottom:960.266283pt;}
.yc1{bottom:965.866280pt;}
.y2c{bottom:969.226279pt;}
.y4c{bottom:985.706272pt;}
.y2b{bottom:991.306270pt;}
.yc0{bottom:994.986269pt;}
.y2{bottom:997.866268pt;}
.y2a{bottom:1013.386261pt;}
.h1{height:40.509424pt;}
.h5{height:43.903982pt;}
.h3{height:44.031982pt;}
.h4{height:45.631982pt;}
.h2{height:89.749964pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:94.399405pt;}
.x2{left:111.664355pt;}
.xb{left:124.639432pt;}
.x9{left:169.919325pt;}
.x3{left:246.080314pt;}
.x1{left:389.439844pt;}
.x7{left:394.879497pt;}
.x8{left:463.199404pt;}
.x5{left:514.239652pt;}
.x6{left:619.680030pt;}
.x4{left:699.199720pt;}
}




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