
    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_3911d2082b4e6eaa3591ebf1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.776367;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_6e5177ad7c2fad5ede859b45.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_b926989bfb407c9c7234886d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_4a4de7d1b09cca0eb7878de1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_590233c70fd33466722d2d5a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6e3c4917c64e2ce70c31981e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7cf074fe3c674ea6763fa4b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.114258;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_7f9d77f798287230b9936ed1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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_17c0b39e5c703698dbb79be3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_df7a8e418f361c0b434fe178.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.776367;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;}
.ls1d{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.341400px;}
.ls3{letter-spacing:-0.296400px;}
.lsd{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.152400px;}
.ls15{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.296400px;}
.ls17{letter-spacing:0.324000px;}
.ls1e{letter-spacing:0.612000px;}
.ls1a{letter-spacing:0.864000px;}
.lse{letter-spacing:1.296000px;}
.ls12{letter-spacing:1.368000px;}
.ls6{letter-spacing:1.584000px;}
.ls18{letter-spacing:1.764000px;}
.ls19{letter-spacing:2.304000px;}
.ls0{letter-spacing:3.168000px;}
.ls7{letter-spacing:3.974400px;}
.ls1c{letter-spacing:4.014720px;}
.ls16{letter-spacing:4.582080px;}
.ls11{letter-spacing:4.626000px;}
.lsa{letter-spacing:4.890000px;}
.ls1b{letter-spacing:4.896000px;}
.lsb{letter-spacing:44.760000px;}
.ls8{letter-spacing:54.840000px;}
.ls1f{letter-spacing:173.789280px;}
.ls9{letter-spacing:847.542720px;}
.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;}
}
.ws10{word-spacing:-72.000000px;}
.ws13{word-spacing:-48.240000px;}
.ws0{word-spacing:-43.434720px;}
.ws3{word-spacing:-29.948880px;}
.ws5{word-spacing:-29.356080px;}
.ws4{word-spacing:-23.418720px;}
.ws8{word-spacing:-23.304720px;}
.ws1{word-spacing:-23.184000px;}
.ws6{word-spacing:-23.077320px;}
.wsc{word-spacing:-23.040720px;}
.wsd{word-spacing:-21.384000px;}
.wsb{word-spacing:-21.187920px;}
.ws7{word-spacing:-20.016000px;}
.ws9{word-spacing:-19.800000px;}
.wsa{word-spacing:-18.414720px;}
.ws12{word-spacing:-17.225280px;}
.wse{word-spacing:-16.613280px;}
.wsf{word-spacing:-16.506480px;}
.ws11{word-spacing:-16.253280px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-27.492480px;}
._7{margin-left:-25.556160px;}
._b{margin-left:-24.231360px;}
._9{margin-left:-17.402640px;}
._c{margin-left:-15.460560px;}
._a{margin-left:-10.911600px;}
._8{margin-left:-8.948880px;}
._3{margin-left:-6.260400px;}
._5{margin-left:-1.557600px;}
._1{width:1.249920px;}
._0{width:2.968560px;}
._2{width:4.322640px;}
._4{width:5.754720px;}
._e{width:7.099440px;}
._f{width:44.472000px;}
._11{width:54.840000px;}
._d{width:834.132000px;}
._12{width:844.140000px;}
._10{width:847.542720px;}
._13{width:850.745280px;}
.fc9{color:rgb(0,0,255);}
.fc6{color:rgb(54,83,56);}
.fc5{color:rgb(114,163,118);}
.fc8{color:rgb(192,0,0);}
.fc3{color:rgb(113,162,118);}
.fc7{color:rgb(219,83,83);}
.fc1{color:rgb(176,204,176);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.060000px;}
.yd{bottom:9.180000px;}
.yc{bottom:31.320000px;}
.y1{bottom:36.180000px;}
.yc6{bottom:113.040000px;}
.y74{bottom:113.760000px;}
.y30{bottom:116.640000px;}
.yc5{bottom:130.140000px;}
.y87{bottom:133.920000px;}
.y94{bottom:138.960000px;}
.yb{bottom:144.360000px;}
.yc4{bottom:147.456000px;}
.y4f{bottom:149.436000px;}
.y2f{bottom:158.070000px;}
.yc3{bottom:164.910000px;}
.y73{bottom:168.690000px;}
.y86{bottom:175.350000px;}
.yb0{bottom:177.510000px;}
.y5d{bottom:177.690000px;}
.yc2{bottom:182.010000px;}
.y93{bottom:183.270000px;}
.y4e{bottom:190.830000px;}
.ya{bottom:193.890000px;}
.yc1{bottom:199.290000px;}
.y2e{bottom:199.470000px;}
.y72{bottom:210.270000px;}
.ye7{bottom:210.990000px;}
.yc0{bottom:216.570000px;}
.y85{bottom:216.750000px;}
.y5c{bottom:219.090000px;}
.y92{bottom:224.670000px;}
.y4d{bottom:232.230000px;}
.ybf{bottom:233.670000px;}
.y2d{bottom:240.870000px;}
.ye6{bottom:241.950000px;}
.y71{bottom:251.310000px;}
.y84{bottom:258.150000px;}
.y5b{bottom:260.490000px;}
.y91{bottom:266.070000px;}
.ybe{bottom:272.010000px;}
.ye5{bottom:272.730000px;}
.y4c{bottom:273.630000px;}
.y2c{bottom:282.270000px;}
.y83{bottom:299.550000px;}
.y5a{bottom:301.890000px;}
.ye4{bottom:303.690000px;}
.y90{bottom:307.470000px;}
.y9{bottom:307.650000px;}
.y4b{bottom:315.030000px;}
.y70{bottom:318.090000px;}
.y2b{bottom:323.670000px;}
.ye3{bottom:334.470000px;}
.ybd{bottom:338.790000px;}
.y82{bottom:340.590000px;}
.y59{bottom:343.290000px;}
.y8f{bottom:348.870000px;}
.y4a{bottom:356.430000px;}
.y6f{bottom:359.490000px;}
.y2a{bottom:365.070000px;}
.ye2{bottom:365.430000px;}
.ybc{bottom:380.235000px;}
.y58{bottom:384.735000px;}
.y8e{bottom:390.315000px;}
.ye1{bottom:396.255000px;}
.y49{bottom:397.515000px;}
.y9a{bottom:397.875000px;}
.y6e{bottom:400.935000px;}
.y7a{bottom:406.335000px;}
.y29{bottom:406.515000px;}
.y81{bottom:407.415000px;}
.ybb{bottom:421.635000px;}
.y8{bottom:424.155000px;}
.y57{bottom:425.775000px;}
.yaf{bottom:426.135000px;}
.y3f{bottom:427.035000px;}
.ye0{bottom:427.215000px;}
.y8d{bottom:431.715000px;}
.y99{bottom:438.915000px;}
.y6d{bottom:442.335000px;}
.y56{bottom:447.555000px;}
.y28{bottom:447.915000px;}
.y80{bottom:449.715000px;}
.ydf{bottom:457.995000px;}
.yba{bottom:463.035000px;}
.y48{bottom:464.295000px;}
.y19{bottom:464.655000px;}
.yae{bottom:467.535000px;}
.y3e{bottom:471.315000px;}
.y79{bottom:472.935000px;}
.y7{bottom:476.355000px;}
.y6c{bottom:483.735000px;}
.y27{bottom:488.955000px;}
.ya4{bottom:492.375000px;}
.yb9{bottom:504.435000px;}
.y47{bottom:505.695000px;}
.yad{bottom:508.935000px;}
.y18{bottom:510.555000px;}
.y3d{bottom:513.615000px;}
.y55{bottom:514.335000px;}
.y7f{bottom:516.495000px;}
.yde{bottom:519.735000px;}
.y6b{bottom:525.135000px;}
.ya3{bottom:536.655000px;}
.yb8{bottom:545.835000px;}
.y46{bottom:547.095000px;}
.y17{bottom:547.995000px;}
.yac{bottom:550.335000px;}
.ydd{bottom:550.695000px;}
.y26{bottom:555.735000px;}
.y7e{bottom:557.895000px;}
.y6{bottom:558.435000px;}
.ycc{bottom:561.135000px;}
.y6a{bottom:566.535000px;}
.ya2{bottom:577.695000px;}
.y3c{bottom:580.395000px;}
.ydc{bottom:581.475000px;}
.yb7{bottom:587.235000px;}
.y45{bottom:588.495000px;}
.yab{bottom:591.735000px;}
.y25{bottom:597.135000px;}
.y7d{bottom:598.935000px;}
.y16{bottom:604.515000px;}
.y69{bottom:607.935000px;}
.ydb{bottom:612.465000px;}
.y78{bottom:618.945000px;}
.y3b{bottom:621.825000px;}
.yb6{bottom:628.305000px;}
.y44{bottom:629.565000px;}
.y98{bottom:629.925000px;}
.yaa{bottom:633.165000px;}
.y24{bottom:638.565000px;}
.yda{bottom:643.245000px;}
.ya1{bottom:644.505000px;}
.y68{bottom:649.365000px;}
.y15{bottom:660.885000px;}
.y3a{bottom:663.225000px;}
.y7c{bottom:665.745000px;}
.y97{bottom:670.965000px;}
.yd9{bottom:674.205000px;}
.ya9{bottom:674.565000px;}
.y23{bottom:679.965000px;}
.ya0{bottom:687.165000px;}
.y67{bottom:690.765000px;}
.yb5{bottom:695.085000px;}
.y43{bottom:696.345000px;}
.y8c{bottom:699.225000px;}
.y5{bottom:702.105000px;}
.y39{bottom:704.625000px;}
.yd8{bottom:704.985000px;}
.y7b{bottom:706.785000px;}
.ya8{bottom:715.965000px;}
.y14{bottom:717.225000px;}
.y22{bottom:721.365000px;}
.y8b{bottom:722.085000px;}
.y9f{bottom:728.565000px;}
.y66{bottom:732.165000px;}
.y54{bottom:734.325000px;}
.yd7{bottom:735.945000px;}
.yb4{bottom:736.485000px;}
.y42{bottom:737.745000px;}
.y8a{bottom:739.365000px;}
.y38{bottom:746.025000px;}
.y89{bottom:756.645000px;}
.ya7{bottom:757.365000px;}
.y21{bottom:762.765000px;}
.yd6{bottom:766.725000px;}
.y9e{bottom:769.965000px;}
.y53{bottom:773.205000px;}
.y65{bottom:773.565000px;}
.y13{bottom:773.745000px;}
.yb3{bottom:777.705000px;}
.y41{bottom:779.145000px;}
.y37{bottom:787.425000px;}
.yd5{bottom:797.505000px;}
.ya6{bottom:798.765000px;}
.y20{bottom:804.165000px;}
.y88{bottom:812.445000px;}
.y9d{bottom:812.625000px;}
.y52{bottom:813.705000px;}
.y64{bottom:814.965000px;}
.y40{bottom:820.185000px;}
.y96{bottom:820.545000px;}
.yd4{bottom:828.465000px;}
.y36{bottom:828.825000px;}
.y12{bottom:830.085000px;}
.ya5{bottom:839.805000px;}
.yb2{bottom:844.530000px;}
.y1f{bottom:845.610000px;}
.y4{bottom:845.790000px;}
.y51{bottom:853.890000px;}
.y63{bottom:856.410000px;}
.yd3{bottom:859.290000px;}
.y95{bottom:861.630000px;}
.y35{bottom:869.910000px;}
.y77{bottom:870.270000px;}
.yb1{bottom:885.750000px;}
.y11{bottom:886.470000px;}
.y1e{bottom:887.010000px;}
.yd2{bottom:890.250000px;}
.y50{bottom:895.290000px;}
.y9c{bottom:896.550000px;}
.y62{bottom:897.810000px;}
.y76{bottom:911.670000px;}
.yd1{bottom:923.550000px;}
.y1d{bottom:928.410000px;}
.y34{bottom:936.690000px;}
.y9b{bottom:937.950000px;}
.y61{bottom:939.210000px;}
.y10{bottom:942.810000px;}
.yd0{bottom:947.310000px;}
.y75{bottom:952.710000px;}
.ycf{bottom:967.110000px;}
.y1c{bottom:969.810000px;}
.y33{bottom:978.090000px;}
.y60{bottom:980.610000px;}
.y3{bottom:989.610000px;}
.ycb{bottom:991.590000px;}
.yf{bottom:999.330000px;}
.y1b{bottom:1011.210000px;}
.yca{bottom:1014.450000px;}
.y32{bottom:1019.490000px;}
.y5f{bottom:1022.010000px;}
.yce{bottom:1024.350000px;}
.yc9{bottom:1031.550000px;}
.yc8{bottom:1049.010000px;}
.y1a{bottom:1057.470000px;}
.ye{bottom:1058.730000px;}
.y31{bottom:1060.530000px;}
.ycd{bottom:1063.230000px;}
.y5e{bottom:1063.410000px;}
.yc7{bottom:1066.110000px;}
.h5{height:45.360000px;}
.h1{height:45.403594px;}
.he{height:50.312812px;}
.hd{height:53.573906px;}
.h3{height:62.327813px;}
.ha{height:64.546875px;}
.hb{height:65.074219px;}
.hc{height:69.086250px;}
.h9{height:72.035156px;}
.h4{height:75.093750px;}
.h6{height:75.519844px;}
.h7{height:87.859687px;}
.h8{height:112.640625px;}
.h2{height:162.953438px;}
.h0{height:1188.000000px;}
.w1{width:45.360000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:10.980000px;}
.x2{left:44.100000px;}
.x1{left:108.036000px;}
.x6{left:135.036000px;}
.x5{left:143.316000px;}
.x7{left:162.030000px;}
.x8{left:209.550000px;}
.x3{left:822.960000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.303467pt;}
.ls3{letter-spacing:-0.263467pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.135467pt;}
.ls15{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.263467pt;}
.ls17{letter-spacing:0.288000pt;}
.ls1e{letter-spacing:0.544000pt;}
.ls1a{letter-spacing:0.768000pt;}
.lse{letter-spacing:1.152000pt;}
.ls12{letter-spacing:1.216000pt;}
.ls6{letter-spacing:1.408000pt;}
.ls18{letter-spacing:1.568000pt;}
.ls19{letter-spacing:2.048000pt;}
.ls0{letter-spacing:2.816000pt;}
.ls7{letter-spacing:3.532800pt;}
.ls1c{letter-spacing:3.568640pt;}
.ls16{letter-spacing:4.072960pt;}
.ls11{letter-spacing:4.112000pt;}
.lsa{letter-spacing:4.346667pt;}
.ls1b{letter-spacing:4.352000pt;}
.lsb{letter-spacing:39.786667pt;}
.ls8{letter-spacing:48.746667pt;}
.ls1f{letter-spacing:154.479360pt;}
.ls9{letter-spacing:753.371307pt;}
.ws10{word-spacing:-64.000000pt;}
.ws13{word-spacing:-42.880000pt;}
.ws0{word-spacing:-38.608640pt;}
.ws3{word-spacing:-26.621227pt;}
.ws5{word-spacing:-26.094293pt;}
.ws4{word-spacing:-20.816640pt;}
.ws8{word-spacing:-20.715307pt;}
.ws1{word-spacing:-20.608000pt;}
.ws6{word-spacing:-20.513173pt;}
.wsc{word-spacing:-20.480640pt;}
.wsd{word-spacing:-19.008000pt;}
.wsb{word-spacing:-18.833707pt;}
.ws7{word-spacing:-17.792000pt;}
.ws9{word-spacing:-17.600000pt;}
.wsa{word-spacing:-16.368640pt;}
.ws12{word-spacing:-15.311360pt;}
.wse{word-spacing:-14.767360pt;}
.wsf{word-spacing:-14.672427pt;}
.ws11{word-spacing:-14.447360pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-24.437760pt;}
._7{margin-left:-22.716587pt;}
._b{margin-left:-21.538987pt;}
._9{margin-left:-15.469013pt;}
._c{margin-left:-13.742720pt;}
._a{margin-left:-9.699200pt;}
._8{margin-left:-7.954560pt;}
._3{margin-left:-5.564800pt;}
._5{margin-left:-1.384533pt;}
._1{width:1.111040pt;}
._0{width:2.638720pt;}
._2{width:3.842347pt;}
._4{width:5.115307pt;}
._e{width:6.310613pt;}
._f{width:39.530667pt;}
._11{width:48.746667pt;}
._d{width:741.450667pt;}
._12{width:750.346667pt;}
._10{width:753.371307pt;}
._13{width:756.218027pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.720000pt;}
.yd{bottom:8.160000pt;}
.yc{bottom:27.840000pt;}
.y1{bottom:32.160000pt;}
.yc6{bottom:100.480000pt;}
.y74{bottom:101.120000pt;}
.y30{bottom:103.680000pt;}
.yc5{bottom:115.680000pt;}
.y87{bottom:119.040000pt;}
.y94{bottom:123.520000pt;}
.yb{bottom:128.320000pt;}
.yc4{bottom:131.072000pt;}
.y4f{bottom:132.832000pt;}
.y2f{bottom:140.506667pt;}
.yc3{bottom:146.586667pt;}
.y73{bottom:149.946667pt;}
.y86{bottom:155.866667pt;}
.yb0{bottom:157.786667pt;}
.y5d{bottom:157.946667pt;}
.yc2{bottom:161.786667pt;}
.y93{bottom:162.906667pt;}
.y4e{bottom:169.626667pt;}
.ya{bottom:172.346667pt;}
.yc1{bottom:177.146667pt;}
.y2e{bottom:177.306667pt;}
.y72{bottom:186.906667pt;}
.ye7{bottom:187.546667pt;}
.yc0{bottom:192.506667pt;}
.y85{bottom:192.666667pt;}
.y5c{bottom:194.746667pt;}
.y92{bottom:199.706667pt;}
.y4d{bottom:206.426667pt;}
.ybf{bottom:207.706667pt;}
.y2d{bottom:214.106667pt;}
.ye6{bottom:215.066667pt;}
.y71{bottom:223.386667pt;}
.y84{bottom:229.466667pt;}
.y5b{bottom:231.546667pt;}
.y91{bottom:236.506667pt;}
.ybe{bottom:241.786667pt;}
.ye5{bottom:242.426667pt;}
.y4c{bottom:243.226667pt;}
.y2c{bottom:250.906667pt;}
.y83{bottom:266.266667pt;}
.y5a{bottom:268.346667pt;}
.ye4{bottom:269.946667pt;}
.y90{bottom:273.306667pt;}
.y9{bottom:273.466667pt;}
.y4b{bottom:280.026667pt;}
.y70{bottom:282.746667pt;}
.y2b{bottom:287.706667pt;}
.ye3{bottom:297.306667pt;}
.ybd{bottom:301.146667pt;}
.y82{bottom:302.746667pt;}
.y59{bottom:305.146667pt;}
.y8f{bottom:310.106667pt;}
.y4a{bottom:316.826667pt;}
.y6f{bottom:319.546667pt;}
.y2a{bottom:324.506667pt;}
.ye2{bottom:324.826667pt;}
.ybc{bottom:337.986667pt;}
.y58{bottom:341.986667pt;}
.y8e{bottom:346.946667pt;}
.ye1{bottom:352.226667pt;}
.y49{bottom:353.346667pt;}
.y9a{bottom:353.666667pt;}
.y6e{bottom:356.386667pt;}
.y7a{bottom:361.186667pt;}
.y29{bottom:361.346667pt;}
.y81{bottom:362.146667pt;}
.ybb{bottom:374.786667pt;}
.y8{bottom:377.026667pt;}
.y57{bottom:378.466667pt;}
.yaf{bottom:378.786667pt;}
.y3f{bottom:379.586667pt;}
.ye0{bottom:379.746667pt;}
.y8d{bottom:383.746667pt;}
.y99{bottom:390.146667pt;}
.y6d{bottom:393.186667pt;}
.y56{bottom:397.826667pt;}
.y28{bottom:398.146667pt;}
.y80{bottom:399.746667pt;}
.ydf{bottom:407.106667pt;}
.yba{bottom:411.586667pt;}
.y48{bottom:412.706667pt;}
.y19{bottom:413.026667pt;}
.yae{bottom:415.586667pt;}
.y3e{bottom:418.946667pt;}
.y79{bottom:420.386667pt;}
.y7{bottom:423.426667pt;}
.y6c{bottom:429.986667pt;}
.y27{bottom:434.626667pt;}
.ya4{bottom:437.666667pt;}
.yb9{bottom:448.386667pt;}
.y47{bottom:449.506667pt;}
.yad{bottom:452.386667pt;}
.y18{bottom:453.826667pt;}
.y3d{bottom:456.546667pt;}
.y55{bottom:457.186667pt;}
.y7f{bottom:459.106667pt;}
.yde{bottom:461.986667pt;}
.y6b{bottom:466.786667pt;}
.ya3{bottom:477.026667pt;}
.yb8{bottom:485.186667pt;}
.y46{bottom:486.306667pt;}
.y17{bottom:487.106667pt;}
.yac{bottom:489.186667pt;}
.ydd{bottom:489.506667pt;}
.y26{bottom:493.986667pt;}
.y7e{bottom:495.906667pt;}
.y6{bottom:496.386667pt;}
.ycc{bottom:498.786667pt;}
.y6a{bottom:503.586667pt;}
.ya2{bottom:513.506667pt;}
.y3c{bottom:515.906667pt;}
.ydc{bottom:516.866667pt;}
.yb7{bottom:521.986667pt;}
.y45{bottom:523.106667pt;}
.yab{bottom:525.986667pt;}
.y25{bottom:530.786667pt;}
.y7d{bottom:532.386667pt;}
.y16{bottom:537.346667pt;}
.y69{bottom:540.386667pt;}
.ydb{bottom:544.413333pt;}
.y78{bottom:550.173333pt;}
.y3b{bottom:552.733333pt;}
.yb6{bottom:558.493333pt;}
.y44{bottom:559.613333pt;}
.y98{bottom:559.933333pt;}
.yaa{bottom:562.813333pt;}
.y24{bottom:567.613333pt;}
.yda{bottom:571.773333pt;}
.ya1{bottom:572.893333pt;}
.y68{bottom:577.213333pt;}
.y15{bottom:587.453333pt;}
.y3a{bottom:589.533333pt;}
.y7c{bottom:591.773333pt;}
.y97{bottom:596.413333pt;}
.yd9{bottom:599.293333pt;}
.ya9{bottom:599.613333pt;}
.y23{bottom:604.413333pt;}
.ya0{bottom:610.813333pt;}
.y67{bottom:614.013333pt;}
.yb5{bottom:617.853333pt;}
.y43{bottom:618.973333pt;}
.y8c{bottom:621.533333pt;}
.y5{bottom:624.093333pt;}
.y39{bottom:626.333333pt;}
.yd8{bottom:626.653333pt;}
.y7b{bottom:628.253333pt;}
.ya8{bottom:636.413333pt;}
.y14{bottom:637.533333pt;}
.y22{bottom:641.213333pt;}
.y8b{bottom:641.853333pt;}
.y9f{bottom:647.613333pt;}
.y66{bottom:650.813333pt;}
.y54{bottom:652.733333pt;}
.yd7{bottom:654.173333pt;}
.yb4{bottom:654.653333pt;}
.y42{bottom:655.773333pt;}
.y8a{bottom:657.213333pt;}
.y38{bottom:663.133333pt;}
.y89{bottom:672.573333pt;}
.ya7{bottom:673.213333pt;}
.y21{bottom:678.013333pt;}
.yd6{bottom:681.533333pt;}
.y9e{bottom:684.413333pt;}
.y53{bottom:687.293333pt;}
.y65{bottom:687.613333pt;}
.y13{bottom:687.773333pt;}
.yb3{bottom:691.293333pt;}
.y41{bottom:692.573333pt;}
.y37{bottom:699.933333pt;}
.yd5{bottom:708.893333pt;}
.ya6{bottom:710.013333pt;}
.y20{bottom:714.813333pt;}
.y88{bottom:722.173333pt;}
.y9d{bottom:722.333333pt;}
.y52{bottom:723.293333pt;}
.y64{bottom:724.413333pt;}
.y40{bottom:729.053333pt;}
.y96{bottom:729.373333pt;}
.yd4{bottom:736.413333pt;}
.y36{bottom:736.733333pt;}
.y12{bottom:737.853333pt;}
.ya5{bottom:746.493333pt;}
.yb2{bottom:750.693333pt;}
.y1f{bottom:751.653333pt;}
.y4{bottom:751.813333pt;}
.y51{bottom:759.013333pt;}
.y63{bottom:761.253333pt;}
.yd3{bottom:763.813333pt;}
.y95{bottom:765.893333pt;}
.y35{bottom:773.253333pt;}
.y77{bottom:773.573333pt;}
.yb1{bottom:787.333333pt;}
.y11{bottom:787.973333pt;}
.y1e{bottom:788.453333pt;}
.yd2{bottom:791.333333pt;}
.y50{bottom:795.813333pt;}
.y9c{bottom:796.933333pt;}
.y62{bottom:798.053333pt;}
.y76{bottom:810.373333pt;}
.yd1{bottom:820.933333pt;}
.y1d{bottom:825.253333pt;}
.y34{bottom:832.613333pt;}
.y9b{bottom:833.733333pt;}
.y61{bottom:834.853333pt;}
.y10{bottom:838.053333pt;}
.yd0{bottom:842.053333pt;}
.y75{bottom:846.853333pt;}
.ycf{bottom:859.653333pt;}
.y1c{bottom:862.053333pt;}
.y33{bottom:869.413333pt;}
.y60{bottom:871.653333pt;}
.y3{bottom:879.653333pt;}
.ycb{bottom:881.413333pt;}
.yf{bottom:888.293333pt;}
.y1b{bottom:898.853333pt;}
.yca{bottom:901.733333pt;}
.y32{bottom:906.213333pt;}
.y5f{bottom:908.453333pt;}
.yce{bottom:910.533333pt;}
.yc9{bottom:916.933333pt;}
.yc8{bottom:932.453333pt;}
.y1a{bottom:939.973333pt;}
.ye{bottom:941.093333pt;}
.y31{bottom:942.693333pt;}
.ycd{bottom:945.093333pt;}
.y5e{bottom:945.253333pt;}
.yc7{bottom:947.653333pt;}
.h5{height:40.320000pt;}
.h1{height:40.358750pt;}
.he{height:44.722500pt;}
.hd{height:47.621250pt;}
.h3{height:55.402500pt;}
.ha{height:57.375000pt;}
.hb{height:57.843750pt;}
.hc{height:61.410000pt;}
.h9{height:64.031250pt;}
.h4{height:66.750000pt;}
.h6{height:67.128750pt;}
.h7{height:78.097500pt;}
.h8{height:100.125000pt;}
.h2{height:144.847500pt;}
.h0{height:1056.000000pt;}
.w1{width:40.320000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:9.760000pt;}
.x2{left:39.200000pt;}
.x1{left:96.032000pt;}
.x6{left:120.032000pt;}
.x5{left:127.392000pt;}
.x7{left:144.026667pt;}
.x8{left:186.266667pt;}
.x3{left:731.520000pt;}
}




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