
    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_be8a8256fdf45e431a69d80c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_8f564b54e9aaf046e045526a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_4ba616d9fc24d5c4d27f2d2b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740723;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_04e0653a30e9c15e448eebc3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_933ece5c8270089e5f9da8c8.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls1{letter-spacing:82.440000px;}
.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;}
}
.ws4{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.944000px;}
.ws0{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:173.940000px;}
.ws6{word-spacing:177.660000px;}
.ws5{word-spacing:244.800000px;}
.ws7{word-spacing:377.280000px;}
.ws8{word-spacing:393.480000px;}
.ws9{word-spacing:410.220000px;}
._3{margin-left:-7.920000px;}
._12{margin-left:-6.144000px;}
._2{margin-left:-4.968000px;}
._4{margin-left:-3.696000px;}
._0{margin-left:-1.200000px;}
._1{width:1.056000px;}
._8{width:2.376000px;}
._9{width:4.104000px;}
._6{width:5.472000px;}
._7{width:6.720000px;}
._c{width:8.016000px;}
._5{width:9.792000px;}
._10{width:11.016000px;}
._11{width:12.384000px;}
._a{width:13.392000px;}
._16{width:14.520000px;}
._15{width:15.768000px;}
._13{width:17.616000px;}
._14{width:18.768000px;}
._d{width:21.024000px;}
._e{width:22.152000px;}
._19{width:23.496000px;}
._3b{width:24.552000px;}
._18{width:26.424000px;}
._b{width:27.456000px;}
._17{width:32.904000px;}
._39{width:34.704000px;}
._3a{width:35.712000px;}
._37{width:41.040000px;}
._38{width:42.408000px;}
._f{width:49.680000px;}
._35{width:59.688000px;}
._36{width:60.840000px;}
._1a{width:102.420000px;}
._3c{width:110.016000px;}
._1c{width:190.500000px;}
._3d{width:220.320000px;}
._21{width:259.560000px;}
._1d{width:279.480000px;}
._2b{width:340.164000px;}
._1b{width:436.020000px;}
._2f{width:443.640000px;}
._23{width:444.720000px;}
._28{width:461.280000px;}
._2c{width:477.480000px;}
._25{width:494.040000px;}
._2a{width:513.564000px;}
._33{width:524.760000px;}
._2e{width:536.340000px;}
._34{width:553.140000px;}
._29{width:573.960000px;}
._32{width:583.200000px;}
._30{width:588.000000px;}
._31{width:591.720000px;}
._2d{width:626.640000px;}
._27{width:713.604000px;}
._1e{width:719.400000px;}
._26{width:779.820000px;}
._24{width:996.420000px;}
._1f{width:1239.084000px;}
._20{width:1241.460000px;}
._22{width:1409.340000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y1f{bottom:110.700000px;}
.y91{bottom:158.550000px;}
.y1e{bottom:161.700000px;}
.y34{bottom:165.750000px;}
.ya8{bottom:183.300000px;}
.y4a{bottom:183.450000px;}
.y90{bottom:189.600000px;}
.y1d{bottom:192.750000px;}
.y33{bottom:196.800000px;}
.y59{bottom:201.150000px;}
.y49{bottom:214.500000px;}
.ya7{bottom:219.300000px;}
.y8f{bottom:220.650000px;}
.y1c{bottom:223.800000px;}
.y32{bottom:227.850000px;}
.y58{bottom:232.200000px;}
.y48{bottom:245.550000px;}
.y8e{bottom:251.700000px;}
.ya6{bottom:255.300000px;}
.y31{bottom:258.900000px;}
.y3f{bottom:260.550000px;}
.y57{bottom:263.250000px;}
.y47{bottom:276.600000px;}
.y74{bottom:281.550000px;}
.y8d{bottom:282.750000px;}
.y1b{bottom:285.900000px;}
.y30{bottom:289.950000px;}
.ya5{bottom:291.300000px;}
.y56{bottom:294.300000px;}
.y46{bottom:307.650000px;}
.y8c{bottom:313.800000px;}
.y1a{bottom:316.950000px;}
.y2f{bottom:321.000000px;}
.ybe{bottom:321.900000px;}
.y55{bottom:325.350000px;}
.ya4{bottom:327.300000px;}
.y73{bottom:336.750000px;}
.y45{bottom:338.700000px;}
.y8b{bottom:344.850000px;}
.y2e{bottom:352.050000px;}
.y54{bottom:356.400000px;}
.ybd{bottom:357.900000px;}
.y72{bottom:362.400000px;}
.ya3{bottom:363.300000px;}
.y44{bottom:369.750000px;}
.y8a{bottom:375.900000px;}
.y19{bottom:379.050000px;}
.y2d{bottom:383.100000px;}
.y53{bottom:387.450000px;}
.y71{bottom:387.900000px;}
.ybc{bottom:393.900000px;}
.ya2{bottom:399.300000px;}
.y43{bottom:400.800000px;}
.y89{bottom:406.950000px;}
.y18{bottom:410.100000px;}
.y70{bottom:413.550000px;}
.y2c{bottom:414.150000px;}
.y52{bottom:418.500000px;}
.ybb{bottom:429.900000px;}
.y42{bottom:431.850000px;}
.ya1{bottom:435.300000px;}
.y6f{bottom:439.050000px;}
.y17{bottom:441.150000px;}
.y2b{bottom:445.200000px;}
.y51{bottom:458.550000px;}
.y88{bottom:462.150000px;}
.y41{bottom:462.900000px;}
.yba{bottom:465.900000px;}
.ya0{bottom:471.300000px;}
.y16{bottom:472.200000px;}
.y2a{bottom:476.250000px;}
.y6e{bottom:480.600000px;}
.y87{bottom:487.650000px;}
.yb9{bottom:501.900000px;}
.y15{bottom:503.250000px;}
.y29{bottom:507.300000px;}
.y86{bottom:513.300000px;}
.y6d{bottom:520.650000px;}
.y3e{bottom:523.200000px;}
.y4c{bottom:532.200000px;}
.y14{bottom:534.300000px;}
.yb8{bottom:537.900000px;}
.y28{bottom:538.350000px;}
.y50{bottom:538.650000px;}
.y85{bottom:538.800000px;}
.y9f{bottom:543.300000px;}
.y6c{bottom:551.700000px;}
.y3d{bottom:554.250000px;}
.y84{bottom:564.450000px;}
.y13{bottom:565.350000px;}
.y27{bottom:569.400000px;}
.y4f{bottom:569.700000px;}
.yb7{bottom:573.900000px;}
.y37{bottom:578.400000px;}
.y9e{bottom:579.300000px;}
.y6b{bottom:582.750000px;}
.y3c{bottom:585.300000px;}
.y83{bottom:589.950000px;}
.y12{bottom:596.400000px;}
.y26{bottom:600.450000px;}
.y4e{bottom:600.750000px;}
.yb6{bottom:609.900000px;}
.y6a{bottom:613.800000px;}
.y9d{bottom:615.300000px;}
.y3b{bottom:616.350000px;}
.y11{bottom:627.450000px;}
.y25{bottom:631.500000px;}
.y4d{bottom:631.800000px;}
.y69{bottom:644.850000px;}
.yb5{bottom:645.900000px;}
.y3a{bottom:647.400000px;}
.y9c{bottom:651.300000px;}
.y10{bottom:658.500000px;}
.y24{bottom:662.550000px;}
.y5a{bottom:663.000000px;}
.y82{bottom:664.650000px;}
.y35{bottom:671.550000px;}
.y68{bottom:675.900000px;}
.y39{bottom:678.450000px;}
.yb4{bottom:681.900000px;}
.y36{bottom:689.550000px;}
.y81{bottom:690.300000px;}
.y23{bottom:693.600000px;}
.y9b{bottom:706.650000px;}
.y67{bottom:706.950000px;}
.y38{bottom:709.500000px;}
.y80{bottom:715.800000px;}
.yb3{bottom:717.900000px;}
.yf{bottom:720.600000px;}
.y22{bottom:724.650000px;}
.y66{bottom:738.000000px;}
.y7f{bottom:741.450000px;}
.y40{bottom:747.450000px;}
.ye{bottom:751.650000px;}
.yb2{bottom:753.900000px;}
.y21{bottom:755.700000px;}
.y7e{bottom:766.950000px;}
.y65{bottom:769.050000px;}
.yd{bottom:782.700000px;}
.y9a{bottom:786.750000px;}
.yb1{bottom:789.900000px;}
.y20{bottom:795.750000px;}
.y64{bottom:800.100000px;}
.y7d{bottom:808.500000px;}
.yc{bottom:813.750000px;}
.y99{bottom:817.800000px;}
.y4b{bottom:819.750000px;}
.yb0{bottom:825.900000px;}
.yb{bottom:844.800000px;}
.y7c{bottom:848.550000px;}
.y98{bottom:848.850000px;}
.y63{bottom:855.300000px;}
.yaf{bottom:861.900000px;}
.ya{bottom:875.850000px;}
.y7b{bottom:879.600000px;}
.y97{bottom:879.900000px;}
.y62{bottom:880.950000px;}
.yae{bottom:897.900000px;}
.y61{bottom:906.450000px;}
.y9{bottom:906.900000px;}
.y7a{bottom:910.650000px;}
.y96{bottom:910.950000px;}
.y60{bottom:932.100000px;}
.yad{bottom:933.900000px;}
.y8{bottom:937.950000px;}
.y95{bottom:942.000000px;}
.y5f{bottom:949.350000px;}
.y79{bottom:965.850000px;}
.y7{bottom:969.000000px;}
.yac{bottom:969.900000px;}
.y94{bottom:973.050000px;}
.y5e{bottom:974.850000px;}
.y78{bottom:991.500000px;}
.y6{bottom:1000.050000px;}
.y5d{bottom:1000.500000px;}
.y93{bottom:1004.100000px;}
.yab{bottom:1005.900000px;}
.y77{bottom:1017.000000px;}
.y5c{bottom:1026.000000px;}
.y5{bottom:1031.100000px;}
.yaa{bottom:1041.900000px;}
.y76{bottom:1042.650000px;}
.y92{bottom:1044.150000px;}
.y5b{bottom:1051.650000px;}
.y4{bottom:1062.150000px;}
.ya9{bottom:1077.900000px;}
.y75{bottom:1084.200000px;}
.y3{bottom:1093.200000px;}
.y2{bottom:1138.650000px;}
.h2{height:43.740234px;}
.h4{height:52.488281px;}
.h3{height:65.003906px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:127.800000px;}
.x1{left:132.000000px;}
.xa{left:141.300000px;}
.x6{left:154.800000px;}
.x2{left:163.200000px;}
.x4{left:181.800000px;}
.xe{left:200.100000px;}
.x9{left:262.200000px;}
.x7{left:268.650000px;}
.x10{left:279.600000px;}
.x13{left:280.800000px;}
.x14{left:287.850000px;}
.x11{left:292.500000px;}
.x12{left:295.350000px;}
.xf{left:306.150000px;}
.x8{left:330.900000px;}
.x15{left:436.650000px;}
.x5{left:441.600000px;}
.xd{left:513.750000px;}
.xb{left:628.050000px;}
.xc{left:633.900000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls1{letter-spacing:73.280000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.728000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:154.613333pt;}
.ws6{word-spacing:157.920000pt;}
.ws5{word-spacing:217.600000pt;}
.ws7{word-spacing:335.360000pt;}
.ws8{word-spacing:349.760000pt;}
.ws9{word-spacing:364.640000pt;}
._3{margin-left:-7.040000pt;}
._12{margin-left:-5.461333pt;}
._2{margin-left:-4.416000pt;}
._4{margin-left:-3.285333pt;}
._0{margin-left:-1.066667pt;}
._1{width:0.938667pt;}
._8{width:2.112000pt;}
._9{width:3.648000pt;}
._6{width:4.864000pt;}
._7{width:5.973333pt;}
._c{width:7.125333pt;}
._5{width:8.704000pt;}
._10{width:9.792000pt;}
._11{width:11.008000pt;}
._a{width:11.904000pt;}
._16{width:12.906667pt;}
._15{width:14.016000pt;}
._13{width:15.658667pt;}
._14{width:16.682667pt;}
._d{width:18.688000pt;}
._e{width:19.690667pt;}
._19{width:20.885333pt;}
._3b{width:21.824000pt;}
._18{width:23.488000pt;}
._b{width:24.405333pt;}
._17{width:29.248000pt;}
._39{width:30.848000pt;}
._3a{width:31.744000pt;}
._37{width:36.480000pt;}
._38{width:37.696000pt;}
._f{width:44.160000pt;}
._35{width:53.056000pt;}
._36{width:54.080000pt;}
._1a{width:91.040000pt;}
._3c{width:97.792000pt;}
._1c{width:169.333333pt;}
._3d{width:195.840000pt;}
._21{width:230.720000pt;}
._1d{width:248.426667pt;}
._2b{width:302.368000pt;}
._1b{width:387.573333pt;}
._2f{width:394.346667pt;}
._23{width:395.306667pt;}
._28{width:410.026667pt;}
._2c{width:424.426667pt;}
._25{width:439.146667pt;}
._2a{width:456.501333pt;}
._33{width:466.453333pt;}
._2e{width:476.746667pt;}
._34{width:491.680000pt;}
._29{width:510.186667pt;}
._32{width:518.400000pt;}
._30{width:522.666667pt;}
._31{width:525.973333pt;}
._2d{width:557.013333pt;}
._27{width:634.314667pt;}
._1e{width:639.466667pt;}
._26{width:693.173333pt;}
._24{width:885.706667pt;}
._1f{width:1101.408000pt;}
._20{width:1103.520000pt;}
._22{width:1252.746667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y1f{bottom:98.400000pt;}
.y91{bottom:140.933333pt;}
.y1e{bottom:143.733333pt;}
.y34{bottom:147.333333pt;}
.ya8{bottom:162.933333pt;}
.y4a{bottom:163.066667pt;}
.y90{bottom:168.533333pt;}
.y1d{bottom:171.333333pt;}
.y33{bottom:174.933333pt;}
.y59{bottom:178.800000pt;}
.y49{bottom:190.666667pt;}
.ya7{bottom:194.933333pt;}
.y8f{bottom:196.133333pt;}
.y1c{bottom:198.933333pt;}
.y32{bottom:202.533333pt;}
.y58{bottom:206.400000pt;}
.y48{bottom:218.266667pt;}
.y8e{bottom:223.733333pt;}
.ya6{bottom:226.933333pt;}
.y31{bottom:230.133333pt;}
.y3f{bottom:231.600000pt;}
.y57{bottom:234.000000pt;}
.y47{bottom:245.866667pt;}
.y74{bottom:250.266667pt;}
.y8d{bottom:251.333333pt;}
.y1b{bottom:254.133333pt;}
.y30{bottom:257.733333pt;}
.ya5{bottom:258.933333pt;}
.y56{bottom:261.600000pt;}
.y46{bottom:273.466667pt;}
.y8c{bottom:278.933333pt;}
.y1a{bottom:281.733333pt;}
.y2f{bottom:285.333333pt;}
.ybe{bottom:286.133333pt;}
.y55{bottom:289.200000pt;}
.ya4{bottom:290.933333pt;}
.y73{bottom:299.333333pt;}
.y45{bottom:301.066667pt;}
.y8b{bottom:306.533333pt;}
.y2e{bottom:312.933333pt;}
.y54{bottom:316.800000pt;}
.ybd{bottom:318.133333pt;}
.y72{bottom:322.133333pt;}
.ya3{bottom:322.933333pt;}
.y44{bottom:328.666667pt;}
.y8a{bottom:334.133333pt;}
.y19{bottom:336.933333pt;}
.y2d{bottom:340.533333pt;}
.y53{bottom:344.400000pt;}
.y71{bottom:344.800000pt;}
.ybc{bottom:350.133333pt;}
.ya2{bottom:354.933333pt;}
.y43{bottom:356.266667pt;}
.y89{bottom:361.733333pt;}
.y18{bottom:364.533333pt;}
.y70{bottom:367.600000pt;}
.y2c{bottom:368.133333pt;}
.y52{bottom:372.000000pt;}
.ybb{bottom:382.133333pt;}
.y42{bottom:383.866667pt;}
.ya1{bottom:386.933333pt;}
.y6f{bottom:390.266667pt;}
.y17{bottom:392.133333pt;}
.y2b{bottom:395.733333pt;}
.y51{bottom:407.600000pt;}
.y88{bottom:410.800000pt;}
.y41{bottom:411.466667pt;}
.yba{bottom:414.133333pt;}
.ya0{bottom:418.933333pt;}
.y16{bottom:419.733333pt;}
.y2a{bottom:423.333333pt;}
.y6e{bottom:427.200000pt;}
.y87{bottom:433.466667pt;}
.yb9{bottom:446.133333pt;}
.y15{bottom:447.333333pt;}
.y29{bottom:450.933333pt;}
.y86{bottom:456.266667pt;}
.y6d{bottom:462.800000pt;}
.y3e{bottom:465.066667pt;}
.y4c{bottom:473.066667pt;}
.y14{bottom:474.933333pt;}
.yb8{bottom:478.133333pt;}
.y28{bottom:478.533333pt;}
.y50{bottom:478.800000pt;}
.y85{bottom:478.933333pt;}
.y9f{bottom:482.933333pt;}
.y6c{bottom:490.400000pt;}
.y3d{bottom:492.666667pt;}
.y84{bottom:501.733333pt;}
.y13{bottom:502.533333pt;}
.y27{bottom:506.133333pt;}
.y4f{bottom:506.400000pt;}
.yb7{bottom:510.133333pt;}
.y37{bottom:514.133333pt;}
.y9e{bottom:514.933333pt;}
.y6b{bottom:518.000000pt;}
.y3c{bottom:520.266667pt;}
.y83{bottom:524.400000pt;}
.y12{bottom:530.133333pt;}
.y26{bottom:533.733333pt;}
.y4e{bottom:534.000000pt;}
.yb6{bottom:542.133333pt;}
.y6a{bottom:545.600000pt;}
.y9d{bottom:546.933333pt;}
.y3b{bottom:547.866667pt;}
.y11{bottom:557.733333pt;}
.y25{bottom:561.333333pt;}
.y4d{bottom:561.600000pt;}
.y69{bottom:573.200000pt;}
.yb5{bottom:574.133333pt;}
.y3a{bottom:575.466667pt;}
.y9c{bottom:578.933333pt;}
.y10{bottom:585.333333pt;}
.y24{bottom:588.933333pt;}
.y5a{bottom:589.333333pt;}
.y82{bottom:590.800000pt;}
.y35{bottom:596.933333pt;}
.y68{bottom:600.800000pt;}
.y39{bottom:603.066667pt;}
.yb4{bottom:606.133333pt;}
.y36{bottom:612.933333pt;}
.y81{bottom:613.600000pt;}
.y23{bottom:616.533333pt;}
.y9b{bottom:628.133333pt;}
.y67{bottom:628.400000pt;}
.y38{bottom:630.666667pt;}
.y80{bottom:636.266667pt;}
.yb3{bottom:638.133333pt;}
.yf{bottom:640.533333pt;}
.y22{bottom:644.133333pt;}
.y66{bottom:656.000000pt;}
.y7f{bottom:659.066667pt;}
.y40{bottom:664.400000pt;}
.ye{bottom:668.133333pt;}
.yb2{bottom:670.133333pt;}
.y21{bottom:671.733333pt;}
.y7e{bottom:681.733333pt;}
.y65{bottom:683.600000pt;}
.yd{bottom:695.733333pt;}
.y9a{bottom:699.333333pt;}
.yb1{bottom:702.133333pt;}
.y20{bottom:707.333333pt;}
.y64{bottom:711.200000pt;}
.y7d{bottom:718.666667pt;}
.yc{bottom:723.333333pt;}
.y99{bottom:726.933333pt;}
.y4b{bottom:728.666667pt;}
.yb0{bottom:734.133333pt;}
.yb{bottom:750.933333pt;}
.y7c{bottom:754.266667pt;}
.y98{bottom:754.533333pt;}
.y63{bottom:760.266667pt;}
.yaf{bottom:766.133333pt;}
.ya{bottom:778.533333pt;}
.y7b{bottom:781.866667pt;}
.y97{bottom:782.133333pt;}
.y62{bottom:783.066667pt;}
.yae{bottom:798.133333pt;}
.y61{bottom:805.733333pt;}
.y9{bottom:806.133333pt;}
.y7a{bottom:809.466667pt;}
.y96{bottom:809.733333pt;}
.y60{bottom:828.533333pt;}
.yad{bottom:830.133333pt;}
.y8{bottom:833.733333pt;}
.y95{bottom:837.333333pt;}
.y5f{bottom:843.866667pt;}
.y79{bottom:858.533333pt;}
.y7{bottom:861.333333pt;}
.yac{bottom:862.133333pt;}
.y94{bottom:864.933333pt;}
.y5e{bottom:866.533333pt;}
.y78{bottom:881.333333pt;}
.y6{bottom:888.933333pt;}
.y5d{bottom:889.333333pt;}
.y93{bottom:892.533333pt;}
.yab{bottom:894.133333pt;}
.y77{bottom:904.000000pt;}
.y5c{bottom:912.000000pt;}
.y5{bottom:916.533333pt;}
.yaa{bottom:926.133333pt;}
.y76{bottom:926.800000pt;}
.y92{bottom:928.133333pt;}
.y5b{bottom:934.800000pt;}
.y4{bottom:944.133333pt;}
.ya9{bottom:958.133333pt;}
.y75{bottom:963.733333pt;}
.y3{bottom:971.733333pt;}
.y2{bottom:1012.133333pt;}
.h2{height:38.880208pt;}
.h4{height:46.656250pt;}
.h3{height:57.781250pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:113.600000pt;}
.x1{left:117.333333pt;}
.xa{left:125.600000pt;}
.x6{left:137.600000pt;}
.x2{left:145.066667pt;}
.x4{left:161.600000pt;}
.xe{left:177.866667pt;}
.x9{left:233.066667pt;}
.x7{left:238.800000pt;}
.x10{left:248.533333pt;}
.x13{left:249.600000pt;}
.x14{left:255.866667pt;}
.x11{left:260.000000pt;}
.x12{left:262.533333pt;}
.xf{left:272.133333pt;}
.x8{left:294.133333pt;}
.x15{left:388.133333pt;}
.x5{left:392.533333pt;}
.xd{left:456.666667pt;}
.xb{left:558.266667pt;}
.xc{left:563.466667pt;}
}




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