
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_36d9c0e4b5870fb24c0fe0e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_a7604499210f451aee2056a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_542a1a89b32bf9a1743d286a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_a19a0f711cb77cb13ae27cf1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_3e17a4e60759dc70b1f80327.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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:ff7;src:url('chunks/assets/font_d41c7a9d2c6046b310efeaf4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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:ff8;src:url('chunks/assets/font_3982b5a9fff36c4c6a43be4c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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:ff9;src:url('chunks/assets/font_345c4d780f0e5a6ffc06f7a3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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:ffc;src:url('chunks/assets/font_f91b56d08e49c9470e4157db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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;}
.ls4{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.262200px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:39.881280px;}
.ls5{letter-spacing:64.002720px;}
.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:-66.240000px;}
.ws6{word-spacing:-59.760000px;}
.ws4{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-5.265120px;}
._10{margin-left:-4.221600px;}
._d{margin-left:-3.113280px;}
._0{margin-left:-1.258560px;}
._2{width:1.679760px;}
._3{width:2.766000px;}
._7{width:4.662240px;}
._5{width:6.208560px;}
._6{width:7.476480px;}
._b{width:8.606880px;}
._8{width:9.619920px;}
._9{width:10.894800px;}
._12{width:12.024240px;}
._4{width:13.137840px;}
._17{width:14.904000px;}
._a{width:16.248240px;}
._13{width:17.619840px;}
._11{width:19.275840px;}
._16{width:21.395520px;}
._e{width:22.521600px;}
._f{width:23.713920px;}
._1a{width:25.303680px;}
._19{width:26.562240px;}
._15{width:35.968320px;}
._14{width:37.028160px;}
._c{width:42.011040px;}
._1c{width:70.810560px;}
._1b{width:72.069120px;}
._1{width:1178.733120px;}
._1d{width:2143.128960px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(10,10,10);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:9.180000px;}
.y5{bottom:56.520000px;}
.y67{bottom:129.816000px;}
.y39{bottom:149.076000px;}
.y66{bottom:151.590000px;}
.y38{bottom:170.850000px;}
.y65{bottom:173.370000px;}
.y37{bottom:192.630000px;}
.y64{bottom:195.150000px;}
.y36{bottom:214.590000px;}
.y63{bottom:217.110000px;}
.y35{bottom:236.370000px;}
.y62{bottom:238.890000px;}
.y34{bottom:258.150000px;}
.y61{bottom:260.670000px;}
.y33{bottom:279.930000px;}
.y60{bottom:282.450000px;}
.y32{bottom:301.890000px;}
.y5f{bottom:304.230000px;}
.y31{bottom:323.670000px;}
.y5e{bottom:326.190000px;}
.y30{bottom:345.495000px;}
.y5d{bottom:348.015000px;}
.y2f{bottom:367.275000px;}
.y5c{bottom:369.795000px;}
.y2e{bottom:389.055000px;}
.y5b{bottom:391.575000px;}
.y2d{bottom:411.015000px;}
.y5a{bottom:413.535000px;}
.y2c{bottom:432.795000px;}
.y59{bottom:435.315000px;}
.y2b{bottom:454.575000px;}
.y58{bottom:457.095000px;}
.y2a{bottom:476.355000px;}
.y57{bottom:478.875000px;}
.y29{bottom:498.315000px;}
.y56{bottom:500.655000px;}
.y28{bottom:520.095000px;}
.y55{bottom:522.615000px;}
.y27{bottom:538.095000px;}
.y54{bottom:544.395000px;}
.y26{bottom:551.775000px;}
.y53{bottom:566.175000px;}
.y25{bottom:566.355000px;}
.y24{bottom:583.635000px;}
.y52{bottom:587.955000px;}
.y23{bottom:600.915000px;}
.y51{bottom:609.945000px;}
.y22{bottom:618.225000px;}
.y50{bottom:631.725000px;}
.y21{bottom:635.325000px;}
.y20{bottom:652.605000px;}
.y4f{bottom:653.505000px;}
.y1f{bottom:669.885000px;}
.y4e{bottom:675.285000px;}
.y1e{bottom:687.165000px;}
.y4d{bottom:697.065000px;}
.y1d{bottom:704.445000px;}
.y4c{bottom:719.025000px;}
.y1c{bottom:721.725000px;}
.y1b{bottom:738.825000px;}
.y4b{bottom:740.805000px;}
.y1a{bottom:756.105000px;}
.y4a{bottom:762.585000px;}
.y19{bottom:773.385000px;}
.y49{bottom:784.365000px;}
.y18{bottom:790.665000px;}
.y48{bottom:806.325000px;}
.y17{bottom:807.945000px;}
.y16{bottom:825.045000px;}
.y47{bottom:828.105000px;}
.y15{bottom:842.325000px;}
.y46{bottom:849.885000px;}
.y14{bottom:859.605000px;}
.y45{bottom:871.710000px;}
.y13{bottom:878.190000px;}
.y12{bottom:892.770000px;}
.y44{bottom:893.490000px;}
.y11{bottom:910.050000px;}
.y43{bottom:915.450000px;}
.y10{bottom:927.330000px;}
.y42{bottom:937.230000px;}
.yf{bottom:944.610000px;}
.y41{bottom:959.010000px;}
.ye{bottom:962.250000px;}
.y40{bottom:980.790000px;}
.yd{bottom:982.050000px;}
.yc{bottom:1000.950000px;}
.y3f{bottom:1002.570000px;}
.y3e{bottom:1024.530000px;}
.yb{bottom:1025.430000px;}
.ya{bottom:1044.150000px;}
.y3d{bottom:1046.310000px;}
.y9{bottom:1061.430000px;}
.y3c{bottom:1068.090000px;}
.y8{bottom:1078.710000px;}
.y3b{bottom:1089.870000px;}
.y7{bottom:1095.990000px;}
.y3a{bottom:1111.830000px;}
.y6{bottom:1113.270000px;}
.y4{bottom:1131.810000px;}
.y2{bottom:1147.320000px;}
.y1{bottom:1193.220000px;}
.h3{height:27.900000px;}
.hd{height:33.683203px;}
.ha{height:34.036523px;}
.h5{height:39.760312px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.h8{height:46.251562px;}
.hb{height:46.736719px;}
.h10{height:48.224531px;}
.he{height:49.255313px;}
.h4{height:50.068125px;}
.hf{height:54.596250px;}
.h9{height:54.864844px;}
.h7{height:59.439023px;}
.h2{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:53.100000px;}
.w4{width:606.165000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:9.900000px;}
.x1{left:108.035987px;}
.x5{left:110.195987px;}
.xe{left:135.035987px;}
.xf{left:140.075987px;}
.x7{left:155.729987px;}
.x3{left:161.130000px;}
.xa{left:169.769987px;}
.x9{left:221.249987px;}
.x8{left:235.829987px;}
.xb{left:342.254987px;}
.xd{left:418.574987px;}
.xc{left:420.194987px;}
.x6{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.233067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:35.450027pt;}
.ls5{letter-spacing:56.891307pt;}
.ws7{word-spacing:-58.880000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-4.680107pt;}
._10{margin-left:-3.752533pt;}
._d{margin-left:-2.767360pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.493120pt;}
._3{width:2.458667pt;}
._7{width:4.144213pt;}
._5{width:5.518720pt;}
._6{width:6.645760pt;}
._b{width:7.650560pt;}
._8{width:8.551040pt;}
._9{width:9.684267pt;}
._12{width:10.688213pt;}
._4{width:11.678080pt;}
._17{width:13.248000pt;}
._a{width:14.442880pt;}
._13{width:15.662080pt;}
._11{width:17.134080pt;}
._16{width:19.018240pt;}
._e{width:20.019200pt;}
._f{width:21.079040pt;}
._1a{width:22.492160pt;}
._19{width:23.610880pt;}
._15{width:31.971840pt;}
._14{width:32.913920pt;}
._c{width:37.343147pt;}
._1c{width:62.942720pt;}
._1b{width:64.061440pt;}
._1{width:1047.762773pt;}
._1d{width:1905.003520pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:8.160000pt;}
.y5{bottom:50.240000pt;}
.y67{bottom:115.392000pt;}
.y39{bottom:132.512000pt;}
.y66{bottom:134.746667pt;}
.y38{bottom:151.866667pt;}
.y65{bottom:154.106667pt;}
.y37{bottom:171.226667pt;}
.y64{bottom:173.466667pt;}
.y36{bottom:190.746667pt;}
.y63{bottom:192.986667pt;}
.y35{bottom:210.106667pt;}
.y62{bottom:212.346667pt;}
.y34{bottom:229.466667pt;}
.y61{bottom:231.706667pt;}
.y33{bottom:248.826667pt;}
.y60{bottom:251.066667pt;}
.y32{bottom:268.346667pt;}
.y5f{bottom:270.426667pt;}
.y31{bottom:287.706667pt;}
.y5e{bottom:289.946667pt;}
.y30{bottom:307.106667pt;}
.y5d{bottom:309.346667pt;}
.y2f{bottom:326.466667pt;}
.y5c{bottom:328.706667pt;}
.y2e{bottom:345.826667pt;}
.y5b{bottom:348.066667pt;}
.y2d{bottom:365.346667pt;}
.y5a{bottom:367.586667pt;}
.y2c{bottom:384.706667pt;}
.y59{bottom:386.946667pt;}
.y2b{bottom:404.066667pt;}
.y58{bottom:406.306667pt;}
.y2a{bottom:423.426667pt;}
.y57{bottom:425.666667pt;}
.y29{bottom:442.946667pt;}
.y56{bottom:445.026667pt;}
.y28{bottom:462.306667pt;}
.y55{bottom:464.546667pt;}
.y27{bottom:478.306667pt;}
.y54{bottom:483.906667pt;}
.y26{bottom:490.466667pt;}
.y53{bottom:503.266667pt;}
.y25{bottom:503.426667pt;}
.y24{bottom:518.786667pt;}
.y52{bottom:522.626667pt;}
.y23{bottom:534.146667pt;}
.y51{bottom:542.173333pt;}
.y22{bottom:549.533333pt;}
.y50{bottom:561.533333pt;}
.y21{bottom:564.733333pt;}
.y20{bottom:580.093333pt;}
.y4f{bottom:580.893333pt;}
.y1f{bottom:595.453333pt;}
.y4e{bottom:600.253333pt;}
.y1e{bottom:610.813333pt;}
.y4d{bottom:619.613333pt;}
.y1d{bottom:626.173333pt;}
.y4c{bottom:639.133333pt;}
.y1c{bottom:641.533333pt;}
.y1b{bottom:656.733333pt;}
.y4b{bottom:658.493333pt;}
.y1a{bottom:672.093333pt;}
.y4a{bottom:677.853333pt;}
.y19{bottom:687.453333pt;}
.y49{bottom:697.213333pt;}
.y18{bottom:702.813333pt;}
.y48{bottom:716.733333pt;}
.y17{bottom:718.173333pt;}
.y16{bottom:733.373333pt;}
.y47{bottom:736.093333pt;}
.y15{bottom:748.733333pt;}
.y46{bottom:755.453333pt;}
.y14{bottom:764.093333pt;}
.y45{bottom:774.853333pt;}
.y13{bottom:780.613333pt;}
.y12{bottom:793.573333pt;}
.y44{bottom:794.213333pt;}
.y11{bottom:808.933333pt;}
.y43{bottom:813.733333pt;}
.y10{bottom:824.293333pt;}
.y42{bottom:833.093333pt;}
.yf{bottom:839.653333pt;}
.y41{bottom:852.453333pt;}
.ye{bottom:855.333333pt;}
.y40{bottom:871.813333pt;}
.yd{bottom:872.933333pt;}
.yc{bottom:889.733333pt;}
.y3f{bottom:891.173333pt;}
.y3e{bottom:910.693333pt;}
.yb{bottom:911.493333pt;}
.ya{bottom:928.133333pt;}
.y3d{bottom:930.053333pt;}
.y9{bottom:943.493333pt;}
.y3c{bottom:949.413333pt;}
.y8{bottom:958.853333pt;}
.y3b{bottom:968.773333pt;}
.y7{bottom:974.213333pt;}
.y3a{bottom:988.293333pt;}
.y6{bottom:989.573333pt;}
.y4{bottom:1006.053333pt;}
.y2{bottom:1019.840000pt;}
.y1{bottom:1060.640000pt;}
.h3{height:24.800000pt;}
.hd{height:29.940625pt;}
.ha{height:30.254687pt;}
.h5{height:35.342500pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.h8{height:41.112500pt;}
.hb{height:41.543750pt;}
.h10{height:42.866250pt;}
.he{height:43.782500pt;}
.h4{height:44.505000pt;}
.hf{height:48.530000pt;}
.h9{height:48.768750pt;}
.h7{height:52.834688pt;}
.h2{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:47.200000pt;}
.w4{width:538.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:8.800000pt;}
.x1{left:96.031988pt;}
.x5{left:97.951988pt;}
.xe{left:120.031988pt;}
.xf{left:124.511988pt;}
.x7{left:138.426655pt;}
.x3{left:143.226667pt;}
.xa{left:150.906655pt;}
.x9{left:196.666655pt;}
.x8{left:209.626655pt;}
.xb{left:304.226655pt;}
.xd{left:372.066655pt;}
.xc{left:373.506655pt;}
.x6{left:396.866655pt;}
}




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