
    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_1caf80884eaf81533433a067.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_379337b61ab1e20f69511bf6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_20092035ad5d8cfc287e104e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_9b76414527db25c92b5bc926.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_27b7a9b9c8826a40b14fc95f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.034000;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:ff6;src:url('chunks/assets/font_5380b76e7d034c1a002305a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.236425,0.000000,-0.080863,0.236561,0,0);-ms-transform:matrix(0.236425,0.000000,-0.080863,0.236561,0,0);-webkit-transform:matrix(0.236425,0.000000,-0.080863,0.236561,0,0);}
.m7{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,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);}
.m0{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);}
.m8{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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.187842px;}
.ls2{letter-spacing:75.008280px;}
.ls3{letter-spacing:75.080280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-27.287956px;}
.ws0{word-spacing:-12.059981px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-5.716514px;}
._8{margin-left:-4.651135px;}
._9{margin-left:-3.392242px;}
._0{margin-left:-1.440825px;}
._2{width:1.002395px;}
._e{width:2.002721px;}
._7{width:3.003598px;}
._a{width:4.807244px;}
._5{width:6.488745px;}
._6{width:7.560047px;}
._f{width:8.570771px;}
._d{width:10.672354px;}
._c{width:12.178310px;}
._1{width:100.137518px;}
._10{width:188.839213px;}
._3{width:231.193804px;}
._4{width:1036.866328px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.239980px;}
.fs1{font-size:17.999971px;}
.fs4{font-size:23.759962px;}
.fs2{font-size:48.239923px;}
.fs0{font-size:53.999914px;}
.fs5{font-size:57.067611px;}
.fs3{font-size:59.759904px;}
.fs6{font-size:71.999885px;}
.fs9{font-size:84.239865px;}
.fs7{font-size:107.999827px;}
.y0{bottom:0.000000px;}
.y9{bottom:68.700790px;}
.y8{bottom:78.780774px;}
.y7{bottom:96.421346px;}
.y78{bottom:142.501272px;}
.y42{bottom:150.061260px;}
.y77{bottom:161.401242px;}
.y41{bottom:168.781230px;}
.y76{bottom:180.301212px;}
.y83{bottom:184.801204px;}
.y40{bottom:187.681200px;}
.y75{bottom:199.201181px;}
.y3f{bottom:206.581169px;}
.y74{bottom:218.101151px;}
.y3e{bottom:225.481139px;}
.y73{bottom:237.001121px;}
.y3d{bottom:244.381109px;}
.y72{bottom:255.721091px;}
.y3c{bottom:263.281079px;}
.y71{bottom:274.621061px;}
.y3b{bottom:282.181049px;}
.y70{bottom:293.521030px;}
.y3a{bottom:301.081018px;}
.y6f{bottom:312.421000px;}
.y39{bottom:319.980988px;}
.y6e{bottom:331.320970px;}
.y38{bottom:338.880958px;}
.y6d{bottom:350.220940px;}
.y37{bottom:357.600928px;}
.y6c{bottom:369.120909px;}
.y36{bottom:376.500898px;}
.y6b{bottom:388.020879px;}
.y35{bottom:395.400867px;}
.y6a{bottom:406.920849px;}
.y34{bottom:414.300837px;}
.y69{bottom:425.820819px;}
.y33{bottom:433.200807px;}
.y68{bottom:444.540789px;}
.y32{bottom:452.100777px;}
.y67{bottom:463.440758px;}
.y31{bottom:471.000746px;}
.y66{bottom:482.340728px;}
.y2f{bottom:489.720716px;}
.y30{bottom:494.220709px;}
.y65{bottom:501.240698px;}
.y2e{bottom:508.620686px;}
.y64{bottom:520.140668px;}
.y2d{bottom:527.520656px;}
.y63{bottom:539.040638px;}
.y87{bottom:539.400637px;}
.y2c{bottom:546.240626px;}
.y62{bottom:557.940607px;}
.y2b{bottom:565.320595px;}
.y61{bottom:576.840577px;}
.y2a{bottom:584.040566px;}
.y60{bottom:595.740547px;}
.y29{bottom:602.760536px;}
.y5f{bottom:614.640517px;}
.y28{bottom:621.480506px;}
.y5d{bottom:633.360487px;}
.y27{bottom:637.500480px;}
.y5e{bottom:637.860479px;}
.y26{bottom:647.580464px;}
.y81{bottom:652.080457px;}
.y5c{bottom:652.260456px;}
.y82{bottom:656.580449px;}
.y25{bottom:666.480434px;}
.y80{bottom:670.980426px;}
.y5b{bottom:671.160426px;}
.y24{bottom:685.380403px;}
.y7f{bottom:689.880396px;}
.y5a{bottom:690.060396px;}
.y23{bottom:704.280373px;}
.y7e{bottom:708.780366px;}
.y58{bottom:708.960366px;}
.y59{bottom:713.460358px;}
.y22{bottom:723.180343px;}
.y57{bottom:727.860335px;}
.y21{bottom:742.080313px;}
.y55{bottom:746.580305px;}
.y7d{bottom:746.760305px;}
.y56{bottom:751.080298px;}
.y20{bottom:760.980282px;}
.y54{bottom:765.480275px;}
.y7c{bottom:765.660275px;}
.y1f{bottom:779.880252px;}
.y53{bottom:784.380245px;}
.y7b{bottom:784.560245px;}
.y1e{bottom:798.780222px;}
.y52{bottom:803.280215px;}
.y7a{bottom:803.460214px;}
.y1d{bottom:817.680192px;}
.y51{bottom:822.180185px;}
.y1c{bottom:836.580161px;}
.y50{bottom:841.080154px;}
.y1b{bottom:855.300132px;}
.y86{bottom:859.800124px;}
.y4f{bottom:859.980124px;}
.y1a{bottom:871.500106px;}
.y85{bottom:878.700094px;}
.y4e{bottom:878.880094px;}
.y19{bottom:881.220090px;}
.y4d{bottom:897.780064px;}
.y18{bottom:901.200058px;}
.y84{bottom:902.280056px;}
.y4c{bottom:916.680033px;}
.y17{bottom:924.780020px;}
.y4b{bottom:935.580003px;}
.y16{bottom:940.619995px;}
.y4a{bottom:954.479973px;}
.y15{bottom:955.919971px;}
.y14{bottom:963.119959px;}
.y49{bottom:973.379943px;}
.y79{bottom:977.879935px;}
.y13{bottom:982.019929px;}
.y48{bottom:992.279912px;}
.y11{bottom:1000.739899px;}
.y12{bottom:1005.239892px;}
.y47{bottom:1010.999882px;}
.y10{bottom:1019.639869px;}
.y46{bottom:1029.899852px;}
.yf{bottom:1040.699835px;}
.y45{bottom:1048.799822px;}
.ye{bottom:1067.339792px;}
.y44{bottom:1067.699792px;}
.y43{bottom:1086.599761px;}
.yd{bottom:1088.039759px;}
.y6{bottom:1112.879719px;}
.y5{bottom:1125.479699px;}
.y4{bottom:1133.759686px;}
.y3{bottom:1150.499659px;}
.yc{bottom:1150.679659px;}
.y2{bottom:1163.459638px;}
.yb{bottom:1166.339634px;}
.ya{bottom:1180.559611px;}
.y1{bottom:1196.039586px;}
.he{height:8.911040px;}
.h2{height:13.104471px;}
.h6{height:15.836107px;}
.h11{height:17.297902px;}
.h12{height:17.321105px;}
.h3{height:35.049319px;}
.h4{height:35.167092px;}
.hd{height:38.640178px;}
.h1{height:39.313414px;}
.h9{height:39.366148px;}
.h7{height:43.253931px;}
.h10{height:43.419306px;}
.h5{height:43.506844px;}
.h13{height:43.565204px;}
.h8{height:45.711157px;}
.ha{height:52.312416px;}
.hc{height:57.671908px;}
.hf{height:61.328925px;}
.hb{height:86.507862px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999827px;}
.x17{left:134.982102px;}
.x25{left:141.839876px;}
.x12{left:154.793752px;}
.x4{left:160.019470px;}
.x14{left:162.179741px;}
.x11{left:179.100126px;}
.x13{left:186.641701px;}
.x5{left:206.459670px;}
.xa{left:313.559498px;}
.xb{left:325.439479px;}
.x1e{left:332.639468px;}
.x18{left:337.679460px;}
.x19{left:342.359452px;}
.x1c{left:346.499446px;}
.x1d{left:351.179438px;}
.x2{left:353.159877px;}
.xc{left:360.359423px;}
.x15{left:411.299342px;}
.x16{left:415.979334px;}
.xd{left:425.159320px;}
.x26{left:427.139299px;}
.x6{left:428.399315px;}
.xe{left:429.839312px;}
.x21{left:433.439306px;}
.x22{left:438.119299px;}
.x3{left:446.399821px;}
.x1a{left:455.939270px;}
.x1b{left:460.619263px;}
.x1f{left:479.519233px;}
.x20{left:484.019226px;}
.xf{left:528.479154px;}
.x10{left:532.979147px;}
.x23{left:596.699045px;}
.x24{left:601.379038px;}
.x8{left:652.138957px;}
.x7{left:653.578954px;}
.x9{left:774.538761px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.166971pt;}
.ls2{letter-spacing:66.674027pt;}
.ls3{letter-spacing:66.738027pt;}
.ws2{word-spacing:-24.255961pt;}
.ws0{word-spacing:-10.719983pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-5.081346pt;}
._8{margin-left:-4.134342pt;}
._9{margin-left:-3.015326pt;}
._0{margin-left:-1.280733pt;}
._2{width:0.891018pt;}
._e{width:1.780196pt;}
._7{width:2.669865pt;}
._a{width:4.273105pt;}
._5{width:5.767774pt;}
._6{width:6.720042pt;}
._f{width:7.618463pt;}
._d{width:9.486537pt;}
._c{width:10.825165pt;}
._1{width:89.011127pt;}
._10{width:167.857078pt;}
._3{width:205.505603pt;}
._4{width:921.658958pt;}
.fs8{font-size:10.879983pt;}
.fs1{font-size:15.999974pt;}
.fs4{font-size:21.119966pt;}
.fs2{font-size:42.879931pt;}
.fs0{font-size:47.999923pt;}
.fs5{font-size:50.726766pt;}
.fs3{font-size:53.119915pt;}
.fs6{font-size:63.999898pt;}
.fs9{font-size:74.879880pt;}
.fs7{font-size:95.999846pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:61.067369pt;}
.y8{bottom:70.027355pt;}
.y7{bottom:85.707863pt;}
.y78{bottom:126.667797pt;}
.y42{bottom:133.387787pt;}
.y77{bottom:143.467770pt;}
.y41{bottom:150.027760pt;}
.y76{bottom:160.267744pt;}
.y83{bottom:164.267737pt;}
.y40{bottom:166.827733pt;}
.y75{bottom:177.067717pt;}
.y3f{bottom:183.627706pt;}
.y74{bottom:193.867690pt;}
.y3e{bottom:200.427679pt;}
.y73{bottom:210.667663pt;}
.y3d{bottom:217.227652pt;}
.y72{bottom:227.307636pt;}
.y3c{bottom:234.027626pt;}
.y71{bottom:244.107609pt;}
.y3b{bottom:250.827599pt;}
.y70{bottom:260.907583pt;}
.y3a{bottom:267.627572pt;}
.y6f{bottom:277.707556pt;}
.y39{bottom:284.427545pt;}
.y6e{bottom:294.507529pt;}
.y38{bottom:301.227518pt;}
.y6d{bottom:311.307502pt;}
.y37{bottom:317.867491pt;}
.y6c{bottom:328.107475pt;}
.y36{bottom:334.667465pt;}
.y6b{bottom:344.907448pt;}
.y35{bottom:351.467438pt;}
.y6a{bottom:361.707421pt;}
.y34{bottom:368.267411pt;}
.y69{bottom:378.507394pt;}
.y33{bottom:385.067384pt;}
.y68{bottom:395.147368pt;}
.y32{bottom:401.867357pt;}
.y67{bottom:411.947341pt;}
.y31{bottom:418.667330pt;}
.y66{bottom:428.747314pt;}
.y2f{bottom:435.307304pt;}
.y30{bottom:439.307297pt;}
.y65{bottom:445.547287pt;}
.y2e{bottom:452.107277pt;}
.y64{bottom:462.347260pt;}
.y2d{bottom:468.907250pt;}
.y63{bottom:479.147233pt;}
.y87{bottom:479.467233pt;}
.y2c{bottom:485.547223pt;}
.y62{bottom:495.947206pt;}
.y2b{bottom:502.507196pt;}
.y61{bottom:512.747180pt;}
.y2a{bottom:519.147169pt;}
.y60{bottom:529.547153pt;}
.y29{bottom:535.787143pt;}
.y5f{bottom:546.347126pt;}
.y28{bottom:552.427116pt;}
.y5d{bottom:562.987099pt;}
.y27{bottom:566.667093pt;}
.y5e{bottom:566.987093pt;}
.y26{bottom:575.627079pt;}
.y81{bottom:579.627073pt;}
.y5c{bottom:579.787072pt;}
.y82{bottom:583.627066pt;}
.y25{bottom:592.427052pt;}
.y80{bottom:596.427046pt;}
.y5b{bottom:596.587045pt;}
.y24{bottom:609.227025pt;}
.y7f{bottom:613.227019pt;}
.y5a{bottom:613.387019pt;}
.y23{bottom:626.026998pt;}
.y7e{bottom:630.026992pt;}
.y58{bottom:630.186992pt;}
.y59{bottom:634.186985pt;}
.y22{bottom:642.826971pt;}
.y57{bottom:646.986965pt;}
.y21{bottom:659.626945pt;}
.y55{bottom:663.626938pt;}
.y7d{bottom:663.786938pt;}
.y56{bottom:667.626932pt;}
.y20{bottom:676.426918pt;}
.y54{bottom:680.426911pt;}
.y7c{bottom:680.586911pt;}
.y1f{bottom:693.226891pt;}
.y53{bottom:697.226884pt;}
.y7b{bottom:697.386884pt;}
.y1e{bottom:710.026864pt;}
.y52{bottom:714.026858pt;}
.y7a{bottom:714.186857pt;}
.y1d{bottom:726.826837pt;}
.y51{bottom:730.826831pt;}
.y1c{bottom:743.626810pt;}
.y50{bottom:747.626804pt;}
.y1b{bottom:760.266784pt;}
.y86{bottom:764.266777pt;}
.y4f{bottom:764.426777pt;}
.y1a{bottom:774.666761pt;}
.y85{bottom:781.066750pt;}
.y4e{bottom:781.226750pt;}
.y19{bottom:783.306747pt;}
.y4d{bottom:798.026723pt;}
.y18{bottom:801.066718pt;}
.y84{bottom:802.026717pt;}
.y4c{bottom:814.826696pt;}
.y17{bottom:822.026685pt;}
.y4b{bottom:831.626669pt;}
.y16{bottom:836.106662pt;}
.y4a{bottom:848.426643pt;}
.y15{bottom:849.706640pt;}
.y14{bottom:856.106630pt;}
.y49{bottom:865.226616pt;}
.y79{bottom:869.226609pt;}
.y13{bottom:872.906603pt;}
.y48{bottom:882.026589pt;}
.y11{bottom:889.546577pt;}
.y12{bottom:893.546570pt;}
.y47{bottom:898.666562pt;}
.y10{bottom:906.346550pt;}
.y46{bottom:915.466535pt;}
.yf{bottom:925.066520pt;}
.y45{bottom:932.266508pt;}
.ye{bottom:948.746482pt;}
.y44{bottom:949.066481pt;}
.y43{bottom:965.866455pt;}
.yd{bottom:967.146453pt;}
.y6{bottom:989.226417pt;}
.y5{bottom:1000.426399pt;}
.y4{bottom:1007.786388pt;}
.y3{bottom:1022.666364pt;}
.yc{bottom:1022.826363pt;}
.y2{bottom:1034.186345pt;}
.yb{bottom:1036.746341pt;}
.ya{bottom:1049.386321pt;}
.y1{bottom:1063.146299pt;}
.he{height:7.920925pt;}
.h2{height:11.648419pt;}
.h6{height:14.076540pt;}
.h11{height:15.375913pt;}
.h12{height:15.396538pt;}
.h3{height:31.154950pt;}
.h4{height:31.259637pt;}
.hd{height:34.346825pt;}
.h1{height:34.945257pt;}
.h9{height:34.992132pt;}
.h7{height:38.447938pt;}
.h10{height:38.594938pt;}
.h5{height:38.672751pt;}
.h13{height:38.724626pt;}
.h8{height:40.632139pt;}
.ha{height:46.499926pt;}
.hc{height:51.263918pt;}
.hf{height:54.514600pt;}
.hb{height:76.895877pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999846pt;}
.x17{left:119.984091pt;}
.x25{left:126.079890pt;}
.x12{left:137.594447pt;}
.x4{left:142.239529pt;}
.x14{left:144.159769pt;}
.x11{left:159.200112pt;}
.x13{left:165.903735pt;}
.x5{left:183.519706pt;}
.xa{left:278.719554pt;}
.xb{left:289.279537pt;}
.x1e{left:295.679527pt;}
.x18{left:300.159520pt;}
.x19{left:304.319513pt;}
.x1c{left:307.999507pt;}
.x1d{left:312.159501pt;}
.x2{left:313.919891pt;}
.xc{left:320.319487pt;}
.x15{left:365.599415pt;}
.x16{left:369.759408pt;}
.xd{left:377.919395pt;}
.x26{left:379.679377pt;}
.x6{left:380.799391pt;}
.xe{left:382.079389pt;}
.x21{left:385.279384pt;}
.x22{left:389.439377pt;}
.x3{left:396.799841pt;}
.x1a{left:405.279352pt;}
.x1b{left:409.439345pt;}
.x1f{left:426.239318pt;}
.x20{left:430.239312pt;}
.xf{left:469.759248pt;}
.x10{left:473.759242pt;}
.x23{left:530.399151pt;}
.x24{left:534.559145pt;}
.x8{left:579.679073pt;}
.x7{left:580.959070pt;}
.x9{left:688.478898pt;}
}




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