
    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_2def28f3303c0ebc94a8e50e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_167ccaca4c5115a63564455c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_a6be78fc7a2ebea8c40cb969.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035645;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_6f569519c41b449d303f99ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967773;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_cf25975034f0c14078be42f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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:27.600000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.288000px;}
.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;}
}
.ws7{word-spacing:-33.360000px;}
.ws2{word-spacing:-19.020000px;}
.ws1{word-spacing:-13.314000px;}
.ws0{word-spacing:-0.144000px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:18.672000px;}
.ws3{word-spacing:543.936000px;}
.ws4{word-spacing:1000.896000px;}
._1{margin-left:-18.672000px;}
._4{margin-left:-9.504000px;}
._3{margin-left:-5.004000px;}
._5{margin-left:-2.016000px;}
._6{margin-left:-1.008000px;}
._0{width:1.536000px;}
._b{width:3.084000px;}
._7{width:4.260000px;}
._8{width:5.340000px;}
._d{width:6.780000px;}
._9{width:8.640000px;}
._a{width:9.684000px;}
._14{width:10.716000px;}
._18{width:12.000000px;}
._10{width:13.200000px;}
._c{width:14.520000px;}
._13{width:16.188000px;}
._e{width:17.196000px;}
._f{width:20.856000px;}
._19{width:22.680000px;}
._15{width:24.000000px;}
._17{width:25.176000px;}
._11{width:27.360000px;}
._1f{width:28.380000px;}
._20{width:29.400000px;}
._1c{width:31.200000px;}
._1b{width:32.220000px;}
._16{width:47.400000px;}
._1a{width:64.044000px;}
._1d{width:112.140000px;}
._1e{width:113.436000px;}
._12{width:157.440000px;}
._2{width:380.448000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,51,102);}
.fs2{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:112.200000px;}
.y86{bottom:113.100000px;}
.yad{bottom:127.650000px;}
.y49{bottom:129.600000px;}
.y6c{bottom:139.800000px;}
.y48{bottom:147.150000px;}
.yac{bottom:154.050000px;}
.y47{bottom:164.550000px;}
.yd2{bottom:174.150000px;}
.yab{bottom:180.600000px;}
.y46{bottom:182.100000px;}
.yd1{bottom:191.550000px;}
.yaa{bottom:207.000000px;}
.y32{bottom:207.600000px;}
.y45{bottom:208.500000px;}
.yd0{bottom:209.100000px;}
.y8{bottom:222.450000px;}
.y31{bottom:225.150000px;}
.y44{bottom:226.050000px;}
.ya9{bottom:233.550000px;}
.ycf{bottom:235.500000px;}
.y96{bottom:241.350000px;}
.y30{bottom:242.550000px;}
.y43{bottom:243.450000px;}
.yce{bottom:253.050000px;}
.y95{bottom:258.750000px;}
.ya8{bottom:259.950000px;}
.y2f{bottom:260.100000px;}
.y42{bottom:261.000000px;}
.y7{bottom:266.700000px;}
.ycd{bottom:270.450000px;}
.y94{bottom:276.300000px;}
.y2e{bottom:277.500000px;}
.y41{bottom:278.400000px;}
.ya7{bottom:286.500000px;}
.y93{bottom:293.700000px;}
.y2d{bottom:295.050000px;}
.ycc{bottom:297.000000px;}
.y40{bottom:304.950000px;}
.y92{bottom:311.250000px;}
.y2c{bottom:312.450000px;}
.y6{bottom:312.600000px;}
.ya6{bottom:312.900000px;}
.ycb{bottom:314.400000px;}
.y3f{bottom:322.350000px;}
.y2b{bottom:330.000000px;}
.ya5{bottom:330.450000px;}
.yca{bottom:331.950000px;}
.y5{bottom:333.600000px;}
.y91{bottom:337.650000px;}
.y2a{bottom:347.400000px;}
.y90{bottom:355.200000px;}
.ya4{bottom:356.850000px;}
.yc9{bottom:358.350000px;}
.y29{bottom:364.950000px;}
.y3e{bottom:366.300000px;}
.y8f{bottom:372.600000px;}
.yc8{bottom:375.900000px;}
.ya3{bottom:383.400000px;}
.y8e{bottom:390.150000px;}
.y28{bottom:391.350000px;}
.yc7{bottom:393.300000px;}
.y3d{bottom:401.250000px;}
.y8d{bottom:407.550000px;}
.y27{bottom:408.900000px;}
.ya2{bottom:409.800000px;}
.yc6{bottom:410.850000px;}
.y3c{bottom:418.800000px;}
.y26{bottom:426.300000px;}
.y3b{bottom:436.200000px;}
.ya1{bottom:436.350000px;}
.yc5{bottom:437.250000px;}
.y25{bottom:443.850000px;}
.y6b{bottom:450.900000px;}
.y3a{bottom:453.750000px;}
.yc4{bottom:454.800000px;}
.y8c{bottom:460.500000px;}
.y24{bottom:461.250000px;}
.ya0{bottom:462.750000px;}
.y6a{bottom:468.450000px;}
.y39{bottom:471.150000px;}
.yc3{bottom:472.200000px;}
.y85{bottom:477.450000px;}
.y23{bottom:478.800000px;}
.y69{bottom:485.850000px;}
.y9f{bottom:489.300000px;}
.yc2{bottom:489.750000px;}
.y84{bottom:494.850000px;}
.y22{bottom:496.200000px;}
.y68{bottom:503.400000px;}
.yc1{bottom:507.150000px;}
.y83{bottom:512.400000px;}
.y21{bottom:513.750000px;}
.y38{bottom:515.100000px;}
.y9e{bottom:515.700000px;}
.y67{bottom:520.800000px;}
.y82{bottom:529.800000px;}
.y20{bottom:531.150000px;}
.y37{bottom:532.650000px;}
.y66{bottom:547.350000px;}
.y1f{bottom:548.700000px;}
.y36{bottom:550.050000px;}
.yc0{bottom:553.800000px;}
.y65{bottom:564.750000px;}
.y1e{bottom:566.100000px;}
.y9d{bottom:568.650000px;}
.y64{bottom:582.300000px;}
.y9c{bottom:586.200000px;}
.y81{bottom:591.300000px;}
.y1d{bottom:594.750000px;}
.y63{bottom:599.700000px;}
.y35{bottom:603.000000px;}
.y9b{bottom:603.600000px;}
.y80{bottom:608.700000px;}
.y62{bottom:617.250000px;}
.y9a{bottom:621.150000px;}
.y7f{bottom:626.250000px;}
.ybf{bottom:642.150000px;}
.y61{bottom:643.650000px;}
.y99{bottom:647.550000px;}
.y1c{bottom:656.550000px;}
.ybe{bottom:659.550000px;}
.y60{bottom:661.200000px;}
.y98{bottom:665.100000px;}
.y1b{bottom:674.100000px;}
.ybd{bottom:677.100000px;}
.y5f{bottom:678.600000px;}
.y1a{bottom:691.500000px;}
.ybc{bottom:694.500000px;}
.y7e{bottom:696.150000px;}
.y5e{bottom:705.150000px;}
.y19{bottom:709.050000px;}
.ybb{bottom:712.050000px;}
.y7d{bottom:713.550000px;}
.y97{bottom:718.050000px;}
.y5d{bottom:722.550000px;}
.y18{bottom:726.450000px;}
.yba{bottom:738.450000px;}
.y5c{bottom:740.100000px;}
.y17{bottom:753.000000px;}
.yb9{bottom:756.000000px;}
.y5b{bottom:757.500000px;}
.y16{bottom:770.400000px;}
.yb8{bottom:773.400000px;}
.y7c{bottom:775.050000px;}
.y5a{bottom:784.050000px;}
.y15{bottom:787.950000px;}
.y4{bottom:789.450000px;}
.yb7{bottom:790.950000px;}
.y7b{bottom:792.450000px;}
.y59{bottom:801.450000px;}
.y14{bottom:805.350000px;}
.yb6{bottom:808.350000px;}
.y7a{bottom:810.000000px;}
.y34{bottom:817.050000px;}
.y58{bottom:819.000000px;}
.y13{bottom:822.900000px;}
.yb5{bottom:825.900000px;}
.y79{bottom:827.400000px;}
.y3{bottom:831.450000px;}
.y33{bottom:834.450000px;}
.y57{bottom:836.400000px;}
.y12{bottom:840.300000px;}
.yb4{bottom:843.300000px;}
.y78{bottom:844.950000px;}
.yd9{bottom:851.550000px;}
.y11{bottom:857.850000px;}
.y8b{bottom:862.350000px;}
.y56{bottom:862.950000px;}
.y77{bottom:871.350000px;}
.y2{bottom:873.300000px;}
.yd8{bottom:877.800000px;}
.y8a{bottom:879.900000px;}
.y55{bottom:880.350000px;}
.y10{bottom:886.500000px;}
.y76{bottom:888.900000px;}
.yb3{bottom:896.250000px;}
.y89{bottom:897.300000px;}
.y54{bottom:897.900000px;}
.yd7{bottom:904.050000px;}
.y75{bottom:906.300000px;}
.y88{bottom:914.850000px;}
.y1{bottom:915.300000px;}
.yb2{bottom:922.800000px;}
.y74{bottom:923.850000px;}
.yd6{bottom:930.300000px;}
.y87{bottom:932.250000px;}
.y53{bottom:932.850000px;}
.yb1{bottom:940.200000px;}
.y73{bottom:941.250000px;}
.yf{bottom:948.300000px;}
.y52{bottom:950.250000px;}
.yd5{bottom:956.550000px;}
.y72{bottom:958.800000px;}
.ye{bottom:965.700000px;}
.yb0{bottom:966.750000px;}
.y51{bottom:967.800000px;}
.y71{bottom:976.200000px;}
.yd4{bottom:982.800000px;}
.yd{bottom:983.250000px;}
.y50{bottom:985.200000px;}
.yaf{bottom:993.150000px;}
.y70{bottom:993.750000px;}
.yc{bottom:1000.650000px;}
.y4f{bottom:1002.750000px;}
.yd3{bottom:1009.050000px;}
.y6f{bottom:1011.150000px;}
.yb{bottom:1018.200000px;}
.yae{bottom:1019.700000px;}
.y4e{bottom:1020.150000px;}
.y6e{bottom:1028.700000px;}
.ya{bottom:1035.600000px;}
.y4d{bottom:1037.700000px;}
.y6d{bottom:1046.100000px;}
.y4c{bottom:1055.100000px;}
.y9{bottom:1064.250000px;}
.y4b{bottom:1072.650000px;}
.h6{height:43.476562px;}
.h5{height:47.988281px;}
.h3{height:57.585938px;}
.h2{height:61.191797px;}
.h4{height:76.781250px;}
.h1{height:115.171875px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:116.400000px;}
.x7{left:127.800000px;}
.x9{left:132.600000px;}
.x2{left:149.700000px;}
.x8{left:154.800000px;}
.x3{left:162.900000px;}
.xe{left:181.800000px;}
.x10{left:217.500000px;}
.x1{left:247.050000px;}
.xc{left:280.800000px;}
.xb{left:291.450000px;}
.xd{left:302.550000px;}
.x11{left:316.950000px;}
.xf{left:348.900000px;}
.x6{left:372.750000px;}
.x4{left:397.800000px;}
.xa{left:583.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.533333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.256000pt;}
.ws7{word-spacing:-29.653333pt;}
.ws2{word-spacing:-16.906667pt;}
.ws1{word-spacing:-11.834667pt;}
.ws0{word-spacing:-0.128000pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:16.597333pt;}
.ws3{word-spacing:483.498667pt;}
.ws4{word-spacing:889.685333pt;}
._1{margin-left:-16.597333pt;}
._4{margin-left:-8.448000pt;}
._3{margin-left:-4.448000pt;}
._5{margin-left:-1.792000pt;}
._6{margin-left:-0.896000pt;}
._0{width:1.365333pt;}
._b{width:2.741333pt;}
._7{width:3.786667pt;}
._8{width:4.746667pt;}
._d{width:6.026667pt;}
._9{width:7.680000pt;}
._a{width:8.608000pt;}
._14{width:9.525333pt;}
._18{width:10.666667pt;}
._10{width:11.733333pt;}
._c{width:12.906667pt;}
._13{width:14.389333pt;}
._e{width:15.285333pt;}
._f{width:18.538667pt;}
._19{width:20.160000pt;}
._15{width:21.333333pt;}
._17{width:22.378667pt;}
._11{width:24.320000pt;}
._1f{width:25.226667pt;}
._20{width:26.133333pt;}
._1c{width:27.733333pt;}
._1b{width:28.640000pt;}
._16{width:42.133333pt;}
._1a{width:56.928000pt;}
._1d{width:99.680000pt;}
._1e{width:100.832000pt;}
._12{width:139.946667pt;}
._2{width:338.176000pt;}
.fs2{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:99.733333pt;}
.y86{bottom:100.533333pt;}
.yad{bottom:113.466667pt;}
.y49{bottom:115.200000pt;}
.y6c{bottom:124.266667pt;}
.y48{bottom:130.800000pt;}
.yac{bottom:136.933333pt;}
.y47{bottom:146.266667pt;}
.yd2{bottom:154.800000pt;}
.yab{bottom:160.533333pt;}
.y46{bottom:161.866667pt;}
.yd1{bottom:170.266667pt;}
.yaa{bottom:184.000000pt;}
.y32{bottom:184.533333pt;}
.y45{bottom:185.333333pt;}
.yd0{bottom:185.866667pt;}
.y8{bottom:197.733333pt;}
.y31{bottom:200.133333pt;}
.y44{bottom:200.933333pt;}
.ya9{bottom:207.600000pt;}
.ycf{bottom:209.333333pt;}
.y96{bottom:214.533333pt;}
.y30{bottom:215.600000pt;}
.y43{bottom:216.400000pt;}
.yce{bottom:224.933333pt;}
.y95{bottom:230.000000pt;}
.ya8{bottom:231.066667pt;}
.y2f{bottom:231.200000pt;}
.y42{bottom:232.000000pt;}
.y7{bottom:237.066667pt;}
.ycd{bottom:240.400000pt;}
.y94{bottom:245.600000pt;}
.y2e{bottom:246.666667pt;}
.y41{bottom:247.466667pt;}
.ya7{bottom:254.666667pt;}
.y93{bottom:261.066667pt;}
.y2d{bottom:262.266667pt;}
.ycc{bottom:264.000000pt;}
.y40{bottom:271.066667pt;}
.y92{bottom:276.666667pt;}
.y2c{bottom:277.733333pt;}
.y6{bottom:277.866667pt;}
.ya6{bottom:278.133333pt;}
.ycb{bottom:279.466667pt;}
.y3f{bottom:286.533333pt;}
.y2b{bottom:293.333333pt;}
.ya5{bottom:293.733333pt;}
.yca{bottom:295.066667pt;}
.y5{bottom:296.533333pt;}
.y91{bottom:300.133333pt;}
.y2a{bottom:308.800000pt;}
.y90{bottom:315.733333pt;}
.ya4{bottom:317.200000pt;}
.yc9{bottom:318.533333pt;}
.y29{bottom:324.400000pt;}
.y3e{bottom:325.600000pt;}
.y8f{bottom:331.200000pt;}
.yc8{bottom:334.133333pt;}
.ya3{bottom:340.800000pt;}
.y8e{bottom:346.800000pt;}
.y28{bottom:347.866667pt;}
.yc7{bottom:349.600000pt;}
.y3d{bottom:356.666667pt;}
.y8d{bottom:362.266667pt;}
.y27{bottom:363.466667pt;}
.ya2{bottom:364.266667pt;}
.yc6{bottom:365.200000pt;}
.y3c{bottom:372.266667pt;}
.y26{bottom:378.933333pt;}
.y3b{bottom:387.733333pt;}
.ya1{bottom:387.866667pt;}
.yc5{bottom:388.666667pt;}
.y25{bottom:394.533333pt;}
.y6b{bottom:400.800000pt;}
.y3a{bottom:403.333333pt;}
.yc4{bottom:404.266667pt;}
.y8c{bottom:409.333333pt;}
.y24{bottom:410.000000pt;}
.ya0{bottom:411.333333pt;}
.y6a{bottom:416.400000pt;}
.y39{bottom:418.800000pt;}
.yc3{bottom:419.733333pt;}
.y85{bottom:424.400000pt;}
.y23{bottom:425.600000pt;}
.y69{bottom:431.866667pt;}
.y9f{bottom:434.933333pt;}
.yc2{bottom:435.333333pt;}
.y84{bottom:439.866667pt;}
.y22{bottom:441.066667pt;}
.y68{bottom:447.466667pt;}
.yc1{bottom:450.800000pt;}
.y83{bottom:455.466667pt;}
.y21{bottom:456.666667pt;}
.y38{bottom:457.866667pt;}
.y9e{bottom:458.400000pt;}
.y67{bottom:462.933333pt;}
.y82{bottom:470.933333pt;}
.y20{bottom:472.133333pt;}
.y37{bottom:473.466667pt;}
.y66{bottom:486.533333pt;}
.y1f{bottom:487.733333pt;}
.y36{bottom:488.933333pt;}
.yc0{bottom:492.266667pt;}
.y65{bottom:502.000000pt;}
.y1e{bottom:503.200000pt;}
.y9d{bottom:505.466667pt;}
.y64{bottom:517.600000pt;}
.y9c{bottom:521.066667pt;}
.y81{bottom:525.600000pt;}
.y1d{bottom:528.666667pt;}
.y63{bottom:533.066667pt;}
.y35{bottom:536.000000pt;}
.y9b{bottom:536.533333pt;}
.y80{bottom:541.066667pt;}
.y62{bottom:548.666667pt;}
.y9a{bottom:552.133333pt;}
.y7f{bottom:556.666667pt;}
.ybf{bottom:570.800000pt;}
.y61{bottom:572.133333pt;}
.y99{bottom:575.600000pt;}
.y1c{bottom:583.600000pt;}
.ybe{bottom:586.266667pt;}
.y60{bottom:587.733333pt;}
.y98{bottom:591.200000pt;}
.y1b{bottom:599.200000pt;}
.ybd{bottom:601.866667pt;}
.y5f{bottom:603.200000pt;}
.y1a{bottom:614.666667pt;}
.ybc{bottom:617.333333pt;}
.y7e{bottom:618.800000pt;}
.y5e{bottom:626.800000pt;}
.y19{bottom:630.266667pt;}
.ybb{bottom:632.933333pt;}
.y7d{bottom:634.266667pt;}
.y97{bottom:638.266667pt;}
.y5d{bottom:642.266667pt;}
.y18{bottom:645.733333pt;}
.yba{bottom:656.400000pt;}
.y5c{bottom:657.866667pt;}
.y17{bottom:669.333333pt;}
.yb9{bottom:672.000000pt;}
.y5b{bottom:673.333333pt;}
.y16{bottom:684.800000pt;}
.yb8{bottom:687.466667pt;}
.y7c{bottom:688.933333pt;}
.y5a{bottom:696.933333pt;}
.y15{bottom:700.400000pt;}
.y4{bottom:701.733333pt;}
.yb7{bottom:703.066667pt;}
.y7b{bottom:704.400000pt;}
.y59{bottom:712.400000pt;}
.y14{bottom:715.866667pt;}
.yb6{bottom:718.533333pt;}
.y7a{bottom:720.000000pt;}
.y34{bottom:726.266667pt;}
.y58{bottom:728.000000pt;}
.y13{bottom:731.466667pt;}
.yb5{bottom:734.133333pt;}
.y79{bottom:735.466667pt;}
.y3{bottom:739.066667pt;}
.y33{bottom:741.733333pt;}
.y57{bottom:743.466667pt;}
.y12{bottom:746.933333pt;}
.yb4{bottom:749.600000pt;}
.y78{bottom:751.066667pt;}
.yd9{bottom:756.933333pt;}
.y11{bottom:762.533333pt;}
.y8b{bottom:766.533333pt;}
.y56{bottom:767.066667pt;}
.y77{bottom:774.533333pt;}
.y2{bottom:776.266667pt;}
.yd8{bottom:780.266667pt;}
.y8a{bottom:782.133333pt;}
.y55{bottom:782.533333pt;}
.y10{bottom:788.000000pt;}
.y76{bottom:790.133333pt;}
.yb3{bottom:796.666667pt;}
.y89{bottom:797.600000pt;}
.y54{bottom:798.133333pt;}
.yd7{bottom:803.600000pt;}
.y75{bottom:805.600000pt;}
.y88{bottom:813.200000pt;}
.y1{bottom:813.600000pt;}
.yb2{bottom:820.266667pt;}
.y74{bottom:821.200000pt;}
.yd6{bottom:826.933333pt;}
.y87{bottom:828.666667pt;}
.y53{bottom:829.200000pt;}
.yb1{bottom:835.733333pt;}
.y73{bottom:836.666667pt;}
.yf{bottom:842.933333pt;}
.y52{bottom:844.666667pt;}
.yd5{bottom:850.266667pt;}
.y72{bottom:852.266667pt;}
.ye{bottom:858.400000pt;}
.yb0{bottom:859.333333pt;}
.y51{bottom:860.266667pt;}
.y71{bottom:867.733333pt;}
.yd4{bottom:873.600000pt;}
.yd{bottom:874.000000pt;}
.y50{bottom:875.733333pt;}
.yaf{bottom:882.800000pt;}
.y70{bottom:883.333333pt;}
.yc{bottom:889.466667pt;}
.y4f{bottom:891.333333pt;}
.yd3{bottom:896.933333pt;}
.y6f{bottom:898.800000pt;}
.yb{bottom:905.066667pt;}
.yae{bottom:906.400000pt;}
.y4e{bottom:906.800000pt;}
.y6e{bottom:914.400000pt;}
.ya{bottom:920.533333pt;}
.y4d{bottom:922.400000pt;}
.y6d{bottom:929.866667pt;}
.y4c{bottom:937.866667pt;}
.y9{bottom:946.000000pt;}
.y4b{bottom:953.466667pt;}
.h6{height:38.645833pt;}
.h5{height:42.656250pt;}
.h3{height:51.187500pt;}
.h2{height:54.392708pt;}
.h4{height:68.250000pt;}
.h1{height:102.375000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:103.466667pt;}
.x7{left:113.600000pt;}
.x9{left:117.866667pt;}
.x2{left:133.066667pt;}
.x8{left:137.600000pt;}
.x3{left:144.800000pt;}
.xe{left:161.600000pt;}
.x10{left:193.333333pt;}
.x1{left:219.600000pt;}
.xc{left:249.600000pt;}
.xb{left:259.066667pt;}
.xd{left:268.933333pt;}
.x11{left:281.733333pt;}
.xf{left:310.133333pt;}
.x6{left:331.333333pt;}
.x4{left:353.600000pt;}
.xa{left:519.066667pt;}
}




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