
    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_d4dffd126fa5a90cce355b43.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0bbe748cb1ca264d596aead4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_26106addde058db9049c7aa4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_a04a7a7ac79d1cb614b04dc1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.450000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.750000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-9.150000px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-7.407000px;}
._1{margin-left:-6.240000px;}
._c{margin-left:-4.851000px;}
._d{margin-left:-3.678000px;}
._e{margin-left:-2.571000px;}
._0{margin-left:-1.320000px;}
._3{width:1.254000px;}
._2{width:2.706000px;}
._7{width:4.344000px;}
._6{width:5.346000px;}
._9{width:6.504000px;}
._8{width:7.749000px;}
._b{width:8.994000px;}
._4{width:10.032000px;}
._5{width:11.088000px;}
._f{width:12.192000px;}
._15{width:13.461000px;}
._10{width:14.490000px;}
._16{width:17.172000px;}
._1a{width:18.195000px;}
._13{width:19.485000px;}
._14{width:20.619000px;}
._17{width:23.199000px;}
._12{width:24.381000px;}
._18{width:25.806000px;}
._19{width:27.834000px;}
._1b{width:35.244000px;}
._a{width:61.200000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.600000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:45.750000px;}
.y23{bottom:83.550000px;}
.yd2{bottom:85.050000px;}
.y22{bottom:97.350000px;}
.y94{bottom:100.800000px;}
.yd1{bottom:103.200000px;}
.y7e{bottom:107.100000px;}
.y21{bottom:111.150000px;}
.ye4{bottom:111.750000px;}
.yde{bottom:114.150000px;}
.y93{bottom:118.950000px;}
.y7d{bottom:125.250000px;}
.ye3{bottom:129.900000px;}
.yd0{bottom:130.200000px;}
.ydd{bottom:132.300000px;}
.y7c{bottom:137.100000px;}
.y20{bottom:139.800000px;}
.y51{bottom:143.400000px;}
.yc0{bottom:148.050000px;}
.ya9{bottom:150.450000px;}
.y7b{bottom:155.250000px;}
.y1f{bottom:157.950000px;}
.y50{bottom:161.550000px;}
.ybf{bottom:166.200000px;}
.ya8{bottom:168.600000px;}
.y7a{bottom:173.400000px;}
.y1e{bottom:176.100000px;}
.y4f{bottom:179.700000px;}
.ybe{bottom:184.350000px;}
.ya7{bottom:186.750000px;}
.y79{bottom:191.550000px;}
.y1d{bottom:194.250000px;}
.y4e{bottom:197.850000px;}
.ybd{bottom:202.500000px;}
.ya6{bottom:204.900000px;}
.y78{bottom:209.700000px;}
.y1c{bottom:212.400000px;}
.y4d{bottom:216.000000px;}
.ybc{bottom:220.650000px;}
.ya5{bottom:223.050000px;}
.y77{bottom:227.850000px;}
.y1b{bottom:230.550000px;}
.y4c{bottom:234.150000px;}
.ybb{bottom:238.800000px;}
.ya4{bottom:241.200000px;}
.y76{bottom:246.000000px;}
.y1a{bottom:248.700000px;}
.y4b{bottom:252.300000px;}
.yba{bottom:256.950000px;}
.ya3{bottom:259.350000px;}
.y75{bottom:264.150000px;}
.y19{bottom:266.850000px;}
.y4a{bottom:270.450000px;}
.yb9{bottom:275.100000px;}
.ya2{bottom:277.500000px;}
.y74{bottom:282.300000px;}
.y18{bottom:285.000000px;}
.y49{bottom:288.600000px;}
.yb8{bottom:293.250000px;}
.ya1{bottom:295.650000px;}
.y73{bottom:300.450000px;}
.y17{bottom:303.150000px;}
.y48{bottom:306.750000px;}
.yb7{bottom:311.400000px;}
.ya0{bottom:313.800000px;}
.y72{bottom:318.600000px;}
.y16{bottom:321.300000px;}
.y47{bottom:324.900000px;}
.yb6{bottom:329.550000px;}
.y9f{bottom:331.950000px;}
.y71{bottom:336.750000px;}
.y15{bottom:339.450000px;}
.y46{bottom:343.050000px;}
.yb5{bottom:347.700000px;}
.y9e{bottom:350.100000px;}
.y70{bottom:354.900000px;}
.y14{bottom:357.600000px;}
.y45{bottom:361.200000px;}
.yb4{bottom:365.850000px;}
.y9d{bottom:368.250000px;}
.y6f{bottom:373.050000px;}
.y13{bottom:375.750000px;}
.y44{bottom:379.350000px;}
.yb3{bottom:384.000000px;}
.y9c{bottom:386.400000px;}
.y6e{bottom:391.200000px;}
.y12{bottom:393.900000px;}
.y43{bottom:397.500000px;}
.yb2{bottom:402.150000px;}
.y9b{bottom:404.550000px;}
.y6d{bottom:409.350000px;}
.y11{bottom:412.050000px;}
.y42{bottom:415.650000px;}
.yb1{bottom:420.300000px;}
.y9a{bottom:422.700000px;}
.y6c{bottom:427.500000px;}
.y10{bottom:430.200000px;}
.y41{bottom:433.800000px;}
.yb0{bottom:438.450000px;}
.y99{bottom:440.850000px;}
.y6b{bottom:445.650000px;}
.y40{bottom:451.950000px;}
.yaf{bottom:456.600000px;}
.yf{bottom:457.350000px;}
.y98{bottom:459.000000px;}
.y6a{bottom:463.800000px;}
.y3f{bottom:470.100000px;}
.yae{bottom:474.750000px;}
.y97{bottom:477.150000px;}
.y69{bottom:481.950000px;}
.y3e{bottom:488.250000px;}
.yad{bottom:492.900000px;}
.ye{bottom:494.700000px;}
.y96{bottom:495.300000px;}
.y68{bottom:500.100000px;}
.y3d{bottom:506.400000px;}
.yac{bottom:511.050000px;}
.ycf{bottom:513.450000px;}
.yd{bottom:513.750000px;}
.y67{bottom:518.250000px;}
.y95{bottom:522.450000px;}
.y3c{bottom:524.550000px;}
.y92{bottom:527.100000px;}
.yab{bottom:529.200000px;}
.yce{bottom:531.600000px;}
.yc{bottom:532.650000px;}
.y66{bottom:536.400000px;}
.y3b{bottom:542.700000px;}
.yaa{bottom:547.350000px;}
.ycd{bottom:549.750000px;}
.yb{bottom:551.700000px;}
.y65{bottom:554.550000px;}
.y3a{bottom:560.850000px;}
.y91{bottom:565.500000px;}
.ycc{bottom:567.900000px;}
.ya{bottom:570.600000px;}
.y64{bottom:572.700000px;}
.y39{bottom:579.000000px;}
.y90{bottom:583.650000px;}
.ycb{bottom:586.050000px;}
.y9{bottom:589.650000px;}
.y63{bottom:590.850000px;}
.y38{bottom:597.150000px;}
.y8f{bottom:601.800000px;}
.yca{bottom:604.200000px;}
.y8{bottom:608.550000px;}
.y62{bottom:609.000000px;}
.y37{bottom:615.300000px;}
.y8e{bottom:619.950000px;}
.yc9{bottom:622.350000px;}
.y61{bottom:627.150000px;}
.y7{bottom:627.600000px;}
.y36{bottom:633.450000px;}
.y8d{bottom:638.100000px;}
.yc8{bottom:640.500000px;}
.y60{bottom:645.300000px;}
.y35{bottom:651.600000px;}
.y8c{bottom:656.250000px;}
.yc7{bottom:658.650000px;}
.y5f{bottom:663.450000px;}
.y34{bottom:669.750000px;}
.y8b{bottom:674.400000px;}
.yc6{bottom:676.800000px;}
.y5e{bottom:681.600000px;}
.ye6{bottom:683.250000px;}
.y6{bottom:684.450000px;}
.y33{bottom:687.900000px;}
.y8a{bottom:692.550000px;}
.yc5{bottom:694.950000px;}
.y5d{bottom:699.750000px;}
.ye5{bottom:703.950000px;}
.y32{bottom:706.050000px;}
.y89{bottom:710.700000px;}
.yc4{bottom:713.100000px;}
.y5{bottom:716.100000px;}
.y5c{bottom:717.900000px;}
.y31{bottom:724.200000px;}
.y88{bottom:728.850000px;}
.yc3{bottom:731.250000px;}
.y5b{bottom:736.050000px;}
.y30{bottom:742.350000px;}
.y87{bottom:747.000000px;}
.y4{bottom:747.150000px;}
.yc2{bottom:749.400000px;}
.y5a{bottom:754.200000px;}
.y2f{bottom:760.500000px;}
.y86{bottom:765.150000px;}
.ydc{bottom:767.550000px;}
.y59{bottom:772.350000px;}
.yc1{bottom:776.550000px;}
.y3{bottom:778.200000px;}
.y2e{bottom:778.650000px;}
.y85{bottom:783.300000px;}
.ydb{bottom:785.700000px;}
.y58{bottom:790.500000px;}
.y2d{bottom:796.800000px;}
.y84{bottom:801.450000px;}
.yda{bottom:803.850000px;}
.y57{bottom:808.650000px;}
.y2c{bottom:814.950000px;}
.y83{bottom:819.600000px;}
.yd9{bottom:822.000000px;}
.y56{bottom:826.800000px;}
.y2b{bottom:833.100000px;}
.y82{bottom:837.750000px;}
.yd8{bottom:840.150000px;}
.y55{bottom:844.950000px;}
.y2a{bottom:851.250000px;}
.y81{bottom:855.900000px;}
.yd7{bottom:858.300000px;}
.ye2{bottom:863.100000px;}
.y29{bottom:869.400000px;}
.y54{bottom:871.950000px;}
.y80{bottom:874.050000px;}
.yd6{bottom:876.450000px;}
.ye1{bottom:881.250000px;}
.y28{bottom:887.550000px;}
.y7f{bottom:892.200000px;}
.yd5{bottom:894.600000px;}
.ye0{bottom:899.400000px;}
.y27{bottom:905.700000px;}
.y53{bottom:910.350000px;}
.yd4{bottom:912.750000px;}
.y26{bottom:923.850000px;}
.ydf{bottom:926.400000px;}
.y52{bottom:928.500000px;}
.yd3{bottom:939.900000px;}
.y25{bottom:942.000000px;}
.y2{bottom:967.800000px;}
.y1{bottom:985.050000px;}
.h9{height:33.351562px;}
.h3{height:41.660156px;}
.ha{height:41.689453px;}
.h7{height:43.773926px;}
.h6{height:45.826172px;}
.h5{height:48.796875px;}
.hb{height:49.992188px;}
.h8{height:50.630566px;}
.h4{height:73.195312px;}
.h1{height:1062.750000px;}
.h2{height:1062.900000px;}
.h0{height:1062.949606px;}
.w2{width:748.200000px;}
.w0{width:748.303937px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x6{left:106.500000px;}
.x2{left:109.200000px;}
.x3{left:147.900000px;}
.x4{left:293.400000px;}
.x5{left:320.550000px;}
.x7{left:453.300000px;}
.x9{left:648.600000px;}
.x8{left:656.100000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.400000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.400000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-8.133333pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-6.584000pt;}
._1{margin-left:-5.546667pt;}
._c{margin-left:-4.312000pt;}
._d{margin-left:-3.269333pt;}
._e{margin-left:-2.285333pt;}
._0{margin-left:-1.173333pt;}
._3{width:1.114667pt;}
._2{width:2.405333pt;}
._7{width:3.861333pt;}
._6{width:4.752000pt;}
._9{width:5.781333pt;}
._8{width:6.888000pt;}
._b{width:7.994667pt;}
._4{width:8.917333pt;}
._5{width:9.856000pt;}
._f{width:10.837333pt;}
._15{width:11.965333pt;}
._10{width:12.880000pt;}
._16{width:15.264000pt;}
._1a{width:16.173333pt;}
._13{width:17.320000pt;}
._14{width:18.328000pt;}
._17{width:20.621333pt;}
._12{width:21.672000pt;}
._18{width:22.938667pt;}
._19{width:24.741333pt;}
._1b{width:31.328000pt;}
._a{width:54.400000pt;}
.fs5{font-size:32.533333pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:40.666667pt;}
.y23{bottom:74.266667pt;}
.yd2{bottom:75.600000pt;}
.y22{bottom:86.533333pt;}
.y94{bottom:89.600000pt;}
.yd1{bottom:91.733333pt;}
.y7e{bottom:95.200000pt;}
.y21{bottom:98.800000pt;}
.ye4{bottom:99.333333pt;}
.yde{bottom:101.466667pt;}
.y93{bottom:105.733333pt;}
.y7d{bottom:111.333333pt;}
.ye3{bottom:115.466667pt;}
.yd0{bottom:115.733333pt;}
.ydd{bottom:117.600000pt;}
.y7c{bottom:121.866667pt;}
.y20{bottom:124.266667pt;}
.y51{bottom:127.466667pt;}
.yc0{bottom:131.600000pt;}
.ya9{bottom:133.733333pt;}
.y7b{bottom:138.000000pt;}
.y1f{bottom:140.400000pt;}
.y50{bottom:143.600000pt;}
.ybf{bottom:147.733333pt;}
.ya8{bottom:149.866667pt;}
.y7a{bottom:154.133333pt;}
.y1e{bottom:156.533333pt;}
.y4f{bottom:159.733333pt;}
.ybe{bottom:163.866667pt;}
.ya7{bottom:166.000000pt;}
.y79{bottom:170.266667pt;}
.y1d{bottom:172.666667pt;}
.y4e{bottom:175.866667pt;}
.ybd{bottom:180.000000pt;}
.ya6{bottom:182.133333pt;}
.y78{bottom:186.400000pt;}
.y1c{bottom:188.800000pt;}
.y4d{bottom:192.000000pt;}
.ybc{bottom:196.133333pt;}
.ya5{bottom:198.266667pt;}
.y77{bottom:202.533333pt;}
.y1b{bottom:204.933333pt;}
.y4c{bottom:208.133333pt;}
.ybb{bottom:212.266667pt;}
.ya4{bottom:214.400000pt;}
.y76{bottom:218.666667pt;}
.y1a{bottom:221.066667pt;}
.y4b{bottom:224.266667pt;}
.yba{bottom:228.400000pt;}
.ya3{bottom:230.533333pt;}
.y75{bottom:234.800000pt;}
.y19{bottom:237.200000pt;}
.y4a{bottom:240.400000pt;}
.yb9{bottom:244.533333pt;}
.ya2{bottom:246.666667pt;}
.y74{bottom:250.933333pt;}
.y18{bottom:253.333333pt;}
.y49{bottom:256.533333pt;}
.yb8{bottom:260.666667pt;}
.ya1{bottom:262.800000pt;}
.y73{bottom:267.066667pt;}
.y17{bottom:269.466667pt;}
.y48{bottom:272.666667pt;}
.yb7{bottom:276.800000pt;}
.ya0{bottom:278.933333pt;}
.y72{bottom:283.200000pt;}
.y16{bottom:285.600000pt;}
.y47{bottom:288.800000pt;}
.yb6{bottom:292.933333pt;}
.y9f{bottom:295.066667pt;}
.y71{bottom:299.333333pt;}
.y15{bottom:301.733333pt;}
.y46{bottom:304.933333pt;}
.yb5{bottom:309.066667pt;}
.y9e{bottom:311.200000pt;}
.y70{bottom:315.466667pt;}
.y14{bottom:317.866667pt;}
.y45{bottom:321.066667pt;}
.yb4{bottom:325.200000pt;}
.y9d{bottom:327.333333pt;}
.y6f{bottom:331.600000pt;}
.y13{bottom:334.000000pt;}
.y44{bottom:337.200000pt;}
.yb3{bottom:341.333333pt;}
.y9c{bottom:343.466667pt;}
.y6e{bottom:347.733333pt;}
.y12{bottom:350.133333pt;}
.y43{bottom:353.333333pt;}
.yb2{bottom:357.466667pt;}
.y9b{bottom:359.600000pt;}
.y6d{bottom:363.866667pt;}
.y11{bottom:366.266667pt;}
.y42{bottom:369.466667pt;}
.yb1{bottom:373.600000pt;}
.y9a{bottom:375.733333pt;}
.y6c{bottom:380.000000pt;}
.y10{bottom:382.400000pt;}
.y41{bottom:385.600000pt;}
.yb0{bottom:389.733333pt;}
.y99{bottom:391.866667pt;}
.y6b{bottom:396.133333pt;}
.y40{bottom:401.733333pt;}
.yaf{bottom:405.866667pt;}
.yf{bottom:406.533333pt;}
.y98{bottom:408.000000pt;}
.y6a{bottom:412.266667pt;}
.y3f{bottom:417.866667pt;}
.yae{bottom:422.000000pt;}
.y97{bottom:424.133333pt;}
.y69{bottom:428.400000pt;}
.y3e{bottom:434.000000pt;}
.yad{bottom:438.133333pt;}
.ye{bottom:439.733333pt;}
.y96{bottom:440.266667pt;}
.y68{bottom:444.533333pt;}
.y3d{bottom:450.133333pt;}
.yac{bottom:454.266667pt;}
.ycf{bottom:456.400000pt;}
.yd{bottom:456.666667pt;}
.y67{bottom:460.666667pt;}
.y95{bottom:464.400000pt;}
.y3c{bottom:466.266667pt;}
.y92{bottom:468.533333pt;}
.yab{bottom:470.400000pt;}
.yce{bottom:472.533333pt;}
.yc{bottom:473.466667pt;}
.y66{bottom:476.800000pt;}
.y3b{bottom:482.400000pt;}
.yaa{bottom:486.533333pt;}
.ycd{bottom:488.666667pt;}
.yb{bottom:490.400000pt;}
.y65{bottom:492.933333pt;}
.y3a{bottom:498.533333pt;}
.y91{bottom:502.666667pt;}
.ycc{bottom:504.800000pt;}
.ya{bottom:507.200000pt;}
.y64{bottom:509.066667pt;}
.y39{bottom:514.666667pt;}
.y90{bottom:518.800000pt;}
.ycb{bottom:520.933333pt;}
.y9{bottom:524.133333pt;}
.y63{bottom:525.200000pt;}
.y38{bottom:530.800000pt;}
.y8f{bottom:534.933333pt;}
.yca{bottom:537.066667pt;}
.y8{bottom:540.933333pt;}
.y62{bottom:541.333333pt;}
.y37{bottom:546.933333pt;}
.y8e{bottom:551.066667pt;}
.yc9{bottom:553.200000pt;}
.y61{bottom:557.466667pt;}
.y7{bottom:557.866667pt;}
.y36{bottom:563.066667pt;}
.y8d{bottom:567.200000pt;}
.yc8{bottom:569.333333pt;}
.y60{bottom:573.600000pt;}
.y35{bottom:579.200000pt;}
.y8c{bottom:583.333333pt;}
.yc7{bottom:585.466667pt;}
.y5f{bottom:589.733333pt;}
.y34{bottom:595.333333pt;}
.y8b{bottom:599.466667pt;}
.yc6{bottom:601.600000pt;}
.y5e{bottom:605.866667pt;}
.ye6{bottom:607.333333pt;}
.y6{bottom:608.400000pt;}
.y33{bottom:611.466667pt;}
.y8a{bottom:615.600000pt;}
.yc5{bottom:617.733333pt;}
.y5d{bottom:622.000000pt;}
.ye5{bottom:625.733333pt;}
.y32{bottom:627.600000pt;}
.y89{bottom:631.733333pt;}
.yc4{bottom:633.866667pt;}
.y5{bottom:636.533333pt;}
.y5c{bottom:638.133333pt;}
.y31{bottom:643.733333pt;}
.y88{bottom:647.866667pt;}
.yc3{bottom:650.000000pt;}
.y5b{bottom:654.266667pt;}
.y30{bottom:659.866667pt;}
.y87{bottom:664.000000pt;}
.y4{bottom:664.133333pt;}
.yc2{bottom:666.133333pt;}
.y5a{bottom:670.400000pt;}
.y2f{bottom:676.000000pt;}
.y86{bottom:680.133333pt;}
.ydc{bottom:682.266667pt;}
.y59{bottom:686.533333pt;}
.yc1{bottom:690.266667pt;}
.y3{bottom:691.733333pt;}
.y2e{bottom:692.133333pt;}
.y85{bottom:696.266667pt;}
.ydb{bottom:698.400000pt;}
.y58{bottom:702.666667pt;}
.y2d{bottom:708.266667pt;}
.y84{bottom:712.400000pt;}
.yda{bottom:714.533333pt;}
.y57{bottom:718.800000pt;}
.y2c{bottom:724.400000pt;}
.y83{bottom:728.533333pt;}
.yd9{bottom:730.666667pt;}
.y56{bottom:734.933333pt;}
.y2b{bottom:740.533333pt;}
.y82{bottom:744.666667pt;}
.yd8{bottom:746.800000pt;}
.y55{bottom:751.066667pt;}
.y2a{bottom:756.666667pt;}
.y81{bottom:760.800000pt;}
.yd7{bottom:762.933333pt;}
.ye2{bottom:767.200000pt;}
.y29{bottom:772.800000pt;}
.y54{bottom:775.066667pt;}
.y80{bottom:776.933333pt;}
.yd6{bottom:779.066667pt;}
.ye1{bottom:783.333333pt;}
.y28{bottom:788.933333pt;}
.y7f{bottom:793.066667pt;}
.yd5{bottom:795.200000pt;}
.ye0{bottom:799.466667pt;}
.y27{bottom:805.066667pt;}
.y53{bottom:809.200000pt;}
.yd4{bottom:811.333333pt;}
.y26{bottom:821.200000pt;}
.ydf{bottom:823.466667pt;}
.y52{bottom:825.333333pt;}
.yd3{bottom:835.466667pt;}
.y25{bottom:837.333333pt;}
.y2{bottom:860.266667pt;}
.y1{bottom:875.600000pt;}
.h9{height:29.645833pt;}
.h3{height:37.031250pt;}
.ha{height:37.057292pt;}
.h7{height:38.910156pt;}
.h6{height:40.734375pt;}
.h5{height:43.375000pt;}
.hb{height:44.437500pt;}
.h8{height:45.004948pt;}
.h4{height:65.062500pt;}
.h1{height:944.666667pt;}
.h2{height:944.800000pt;}
.h0{height:944.844094pt;}
.w2{width:665.066667pt;}
.w0{width:665.159055pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x6{left:94.666667pt;}
.x2{left:97.066667pt;}
.x3{left:131.466667pt;}
.x4{left:260.800000pt;}
.x5{left:284.933333pt;}
.x7{left:402.933333pt;}
.x9{left:576.533333pt;}
.x8{left:583.200000pt;}
}




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