
    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_51feaf7e083565f0e02d9349.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_5624d901d64eb0381d3c427a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_103b5ab1466004028cbc5fea.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_9a5ef71ab3f9460b624ab170.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d5deb0e829c1e72e89a47491.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_28e9775456261ffc55e0453b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_5741e6b501176542a0614d21.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.212000px;}
.ls11{letter-spacing:-0.924000px;}
.ls2a{letter-spacing:-0.894000px;}
.lsd{letter-spacing:-0.828000px;}
.ls2{letter-spacing:-0.708000px;}
.lsb{letter-spacing:-0.696000px;}
.lse{letter-spacing:-0.630000px;}
.ls13{letter-spacing:-0.624000px;}
.ls9{letter-spacing:-0.564000px;}
.ls6{letter-spacing:-0.546000px;}
.ls17{letter-spacing:-0.480000px;}
.ls2c{letter-spacing:-0.465000px;}
.ls19{letter-spacing:-0.462000px;}
.ls3{letter-spacing:-0.438000px;}
.ls1f{letter-spacing:-0.402000px;}
.ls4{letter-spacing:-0.348000px;}
.ls25{letter-spacing:-0.345000px;}
.lsa{letter-spacing:-0.270000px;}
.ls23{letter-spacing:-0.252000px;}
.ls28{letter-spacing:-0.123000px;}
.lsf{letter-spacing:-0.102000px;}
.lsc{letter-spacing:-0.084000px;}
.ls12{letter-spacing:-0.048000px;}
.ls8{letter-spacing:-0.030000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.114000px;}
.ls1a{letter-spacing:0.120000px;}
.ls27{letter-spacing:0.141000px;}
.ls2b{letter-spacing:0.159000px;}
.ls24{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.252000px;}
.ls10{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.294000px;}
.ls20{letter-spacing:0.507000px;}
.ls1d{letter-spacing:0.531000px;}
.ls0{letter-spacing:0.567000px;}
.ls1e{letter-spacing:0.585000px;}
.ls2d{letter-spacing:0.666000px;}
.ls22{letter-spacing:0.963000px;}
.ls21{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.176000px;}
.ls14{letter-spacing:1.470000px;}
.ls15{letter-spacing:6.084000px;}
.ls1b{letter-spacing:8.040000px;}
.ls16{letter-spacing:9.480000px;}
.ls1c{letter-spacing:67.986000px;}
.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;}
}
.wsb{word-spacing:-36.234000px;}
.ws3{word-spacing:-15.696000px;}
.wsf{word-spacing:-15.216000px;}
.wsc{word-spacing:-14.808000px;}
.ws13{word-spacing:-14.640000px;}
.ws4{word-spacing:-14.634000px;}
.ws22{word-spacing:-14.526000px;}
.ws0{word-spacing:-14.520000px;}
.wsd{word-spacing:-14.472000px;}
.ws8{word-spacing:-14.436000px;}
.wsa{word-spacing:-14.418000px;}
.ws14{word-spacing:-14.391000px;}
.ws17{word-spacing:-14.367000px;}
.ws6{word-spacing:-14.250000px;}
.ws2{word-spacing:-14.172000px;}
.ws1e{word-spacing:-14.154000px;}
.ws1a{word-spacing:-14.112000px;}
.ws18{word-spacing:-14.076000px;}
.ws12{word-spacing:-14.058000px;}
.ws10{word-spacing:-14.040000px;}
.ws20{word-spacing:-14.019000px;}
.ws1b{word-spacing:-14.001000px;}
.ws5{word-spacing:-13.956000px;}
.ws9{word-spacing:-13.890000px;}
.ws15{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.824000px;}
.wse{word-spacing:-13.812000px;}
.ws1c{word-spacing:-13.737000px;}
.ws19{word-spacing:-13.515000px;}
.ws16{word-spacing:-13.458000px;}
.ws21{word-spacing:-13.395000px;}
.ws11{word-spacing:-13.308000px;}
.ws1d{word-spacing:-13.236000px;}
.ws1f{word-spacing:-12.966000px;}
.ws1{word-spacing:0.000000px;}
._7{margin-left:-4.554000px;}
._4{margin-left:-2.712000px;}
._0{margin-left:-1.176000px;}
._1{width:1.008000px;}
._2{width:2.112000px;}
._3{width:3.165000px;}
._8{width:4.200000px;}
._9{width:5.334000px;}
._a{width:6.360000px;}
._d{width:7.974000px;}
._6{width:9.018000px;}
._5{width:10.620000px;}
._b{width:12.528000px;}
._c{width:15.630000px;}
._e{width:17.082000px;}
._f{width:18.318000px;}
._11{width:20.118000px;}
._10{width:21.330000px;}
._17{width:22.890000px;}
._18{width:24.576000px;}
._15{width:25.992000px;}
._16{width:27.594000px;}
._19{width:29.634000px;}
._1a{width:31.008000px;}
._14{width:32.658000px;}
._12{width:34.200000px;}
._13{width:35.856000px;}
._1c{width:52.140000px;}
._1b{width:53.514000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:102.037500px;}
.y74{bottom:102.412500px;}
.y8b{bottom:102.787500px;}
.y73{bottom:103.912500px;}
.yf9{bottom:115.162500px;}
.y37{bottom:117.787500px;}
.yc1{bottom:121.162500px;}
.y6d{bottom:121.537500px;}
.y8a{bottom:122.287500px;}
.y72{bottom:123.037500px;}
.yf8{bottom:133.537500px;}
.y36{bottom:137.287500px;}
.yc0{bottom:139.537500px;}
.y6c{bottom:140.662500px;}
.y89{bottom:141.787500px;}
.yac{bottom:142.162500px;}
.y71{bottom:142.537500px;}
.yf7{bottom:151.905000px;}
.y35{bottom:156.795000px;}
.ybf{bottom:157.920000px;}
.y6b{bottom:160.170000px;}
.y88{bottom:160.920000px;}
.y70{bottom:162.030000px;}
.yab{bottom:162.405000px;}
.yf6{bottom:170.295000px;}
.y34{bottom:175.905000px;}
.ybe{bottom:176.295000px;}
.yaa{bottom:179.670000px;}
.y6a{bottom:180.045000px;}
.y87{bottom:180.420000px;}
.y6f{bottom:181.200000px;}
.yf5{bottom:189.075000px;}
.ybd{bottom:195.075000px;}
.y33{bottom:195.450000px;}
.ya9{bottom:198.825000px;}
.y86{bottom:199.575000px;}
.y69{bottom:200.700000px;}
.yf4{bottom:207.450000px;}
.ybc{bottom:213.450000px;}
.y32{bottom:214.950000px;}
.ya8{bottom:218.325000px;}
.y85{bottom:219.075000px;}
.y68{bottom:219.825000px;}
.yf3{bottom:225.825000px;}
.ybb{bottom:231.825000px;}
.y31{bottom:234.075000px;}
.ya7{bottom:237.825000px;}
.y84{bottom:238.575000px;}
.y67{bottom:239.325000px;}
.yf2{bottom:244.200000px;}
.yba{bottom:250.575000px;}
.y30{bottom:253.575000px;}
.ya6{bottom:256.950000px;}
.y83{bottom:257.700000px;}
.y66{bottom:258.825000px;}
.yf1{bottom:262.950000px;}
.yb9{bottom:268.950000px;}
.y2f{bottom:272.700000px;}
.ya5{bottom:276.450000px;}
.y82{bottom:277.200000px;}
.y65{bottom:277.950000px;}
.yf0{bottom:281.325000px;}
.yb8{bottom:287.325000px;}
.y2e{bottom:292.200000px;}
.ya4{bottom:295.575000px;}
.y81{bottom:296.700000px;}
.y64{bottom:297.450000px;}
.yef{bottom:299.700000px;}
.yb7{bottom:305.700000px;}
.y2d{bottom:311.745000px;}
.ya3{bottom:315.120000px;}
.y80{bottom:315.870000px;}
.y63{bottom:316.995000px;}
.yee{bottom:318.495000px;}
.yb6{bottom:324.480000px;}
.y2c{bottom:330.855000px;}
.ya2{bottom:334.605000px;}
.y7f{bottom:335.370000px;}
.y62{bottom:336.120000px;}
.yed{bottom:336.870000px;}
.yb5{bottom:342.870000px;}
.y2b{bottom:350.370000px;}
.ya1{bottom:353.745000px;}
.y7e{bottom:354.480000px;}
.yec{bottom:355.230000px;}
.y61{bottom:355.620000px;}
.yb4{bottom:361.230000px;}
.y2a{bottom:369.870000px;}
.ya0{bottom:373.245000px;}
.yeb{bottom:373.620000px;}
.y7d{bottom:373.995000px;}
.y60{bottom:374.730000px;}
.yb3{bottom:379.995000px;}
.y29{bottom:388.980000px;}
.yea{bottom:392.355000px;}
.y9f{bottom:392.745000px;}
.y7c{bottom:393.495000px;}
.y5f{bottom:394.245000px;}
.yb2{bottom:398.355000px;}
.y28{bottom:408.495000px;}
.ye9{bottom:410.745000px;}
.y9e{bottom:411.870000px;}
.y7b{bottom:412.620000px;}
.y5e{bottom:413.745000px;}
.yb1{bottom:416.745000px;}
.y27{bottom:427.620000px;}
.ye8{bottom:429.120000px;}
.y9d{bottom:431.370000px;}
.y7a{bottom:432.120000px;}
.y5d{bottom:432.870000px;}
.yb0{bottom:435.120000px;}
.y26{bottom:447.150000px;}
.ye7{bottom:447.900000px;}
.y9c{bottom:450.525000px;}
.y79{bottom:451.650000px;}
.y5c{bottom:452.400000px;}
.yaf{bottom:453.900000px;}
.ye6{bottom:466.275000px;}
.y25{bottom:466.650000px;}
.y9b{bottom:470.025000px;}
.y78{bottom:470.775000px;}
.y5b{bottom:471.900000px;}
.yae{bottom:472.275000px;}
.ye5{bottom:484.650000px;}
.y24{bottom:485.775000px;}
.y9a{bottom:489.525000px;}
.y77{bottom:490.275000px;}
.y5a{bottom:491.025000px;}
.ye4{bottom:503.025000px;}
.y23{bottom:505.275000px;}
.y99{bottom:508.650000px;}
.y76{bottom:509.400000px;}
.y59{bottom:510.525000px;}
.yad{bottom:511.650000px;}
.ye3{bottom:521.775000px;}
.y22{bottom:524.775000px;}
.y98{bottom:528.150000px;}
.y75{bottom:528.900000px;}
.y58{bottom:530.025000px;}
.ye2{bottom:540.150000px;}
.y21{bottom:543.900000px;}
.y97{bottom:547.650000px;}
.y57{bottom:549.150000px;}
.ye1{bottom:558.525000px;}
.y20{bottom:563.445000px;}
.y96{bottom:566.820000px;}
.y56{bottom:568.695000px;}
.ye0{bottom:577.320000px;}
.y1f{bottom:582.570000px;}
.y95{bottom:586.320000px;}
.y55{bottom:587.820000px;}
.ydf{bottom:595.695000px;}
.y1e{bottom:602.445000px;}
.y94{bottom:605.445000px;}
.y54{bottom:607.320000px;}
.yde{bottom:614.070000px;}
.y1d{bottom:623.070000px;}
.y93{bottom:624.945000px;}
.y53{bottom:626.820000px;}
.ydd{bottom:632.445000px;}
.y100{bottom:635.070000px;}
.y1c{bottom:641.445000px;}
.y92{bottom:644.445000px;}
.y52{bottom:645.945000px;}
.ydc{bottom:651.195000px;}
.yff{bottom:653.445000px;}
.y1b{bottom:659.820000px;}
.y91{bottom:663.570000px;}
.y51{bottom:665.445000px;}
.ydb{bottom:669.570000px;}
.yfe{bottom:671.445000px;}
.y1a{bottom:677.445000px;}
.y90{bottom:683.070000px;}
.y50{bottom:684.945000px;}
.yda{bottom:687.945000px;}
.yfd{bottom:689.445000px;}
.y19{bottom:695.100000px;}
.y8f{bottom:702.225000px;}
.y4f{bottom:704.100000px;}
.yd9{bottom:706.350000px;}
.yfc{bottom:707.475000px;}
.y18{bottom:712.725000px;}
.y8e{bottom:721.350000px;}
.y4e{bottom:723.600000px;}
.yd8{bottom:725.100000px;}
.yfb{bottom:725.850000px;}
.y17{bottom:730.350000px;}
.y8d{bottom:742.350000px;}
.y4d{bottom:742.725000px;}
.yd7{bottom:743.475000px;}
.yfa{bottom:743.850000px;}
.y16{bottom:747.975000px;}
.yd6{bottom:761.850000px;}
.y4c{bottom:762.225000px;}
.y8c{bottom:762.975000px;}
.y15{bottom:765.600000px;}
.yd5{bottom:780.600000px;}
.y4b{bottom:781.725000px;}
.y14{bottom:782.850000px;}
.yd4{bottom:798.975000px;}
.y13{bottom:800.475000px;}
.y4a{bottom:800.850000px;}
.yd3{bottom:817.350000px;}
.y12{bottom:818.130000px;}
.y49{bottom:820.395000px;}
.y11{bottom:835.755000px;}
.y48{bottom:839.880000px;}
.y10{bottom:853.380000px;}
.yd2{bottom:854.505000px;}
.y47{bottom:859.020000px;}
.yf{bottom:871.005000px;}
.yd1{bottom:872.880000px;}
.y46{bottom:878.505000px;}
.ye{bottom:888.630000px;}
.yd0{bottom:891.255000px;}
.y45{bottom:897.630000px;}
.yd{bottom:906.255000px;}
.ycf{bottom:910.005000px;}
.y44{bottom:917.130000px;}
.yc{bottom:923.880000px;}
.yce{bottom:928.380000px;}
.y43{bottom:936.630000px;}
.yb{bottom:942.255000px;}
.ycd{bottom:946.800000px;}
.y42{bottom:955.800000px;}
.ya{bottom:961.050000px;}
.ycc{bottom:965.175000px;}
.y41{bottom:975.300000px;}
.y9{bottom:980.550000px;}
.ycb{bottom:983.925000px;}
.y40{bottom:994.800000px;}
.y8{bottom:1000.050000px;}
.yca{bottom:1002.300000px;}
.y3f{bottom:1013.925000px;}
.y7{bottom:1019.175000px;}
.yc9{bottom:1020.675000px;}
.y3e{bottom:1033.425000px;}
.y6{bottom:1038.675000px;}
.yc8{bottom:1039.425000px;}
.y3d{bottom:1052.550000px;}
.yc7{bottom:1057.800000px;}
.y5{bottom:1058.175000px;}
.y3c{bottom:1072.050000px;}
.yc6{bottom:1076.205000px;}
.y4{bottom:1078.080000px;}
.y3b{bottom:1091.580000px;}
.yc5{bottom:1094.580000px;}
.y3{bottom:1099.080000px;}
.y3a{bottom:1110.705000px;}
.yc4{bottom:1113.330000px;}
.y2{bottom:1120.455000px;}
.y39{bottom:1130.205000px;}
.yc3{bottom:1131.705000px;}
.y1{bottom:1145.205000px;}
.y38{bottom:1149.705000px;}
.yc2{bottom:1150.080000px;}
.h5{height:52.207031px;}
.h7{height:53.340820px;}
.h4{height:54.817383px;}
.h3{height:57.427734px;}
.h6{height:60.960938px;}
.h2{height:62.648438px;}
.h8{height:64.754072px;}
.h1{height:71.121094px;}
.h0{height:1263.000000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:97.912487px;}
.x10{left:119.287487px;}
.x2{left:146.699987px;}
.x8{left:170.324987px;}
.x7{left:198.449987px;}
.xb{left:246.494987px;}
.x1{left:257.369987px;}
.xe{left:269.744987px;}
.xd{left:277.994987px;}
.xc{left:279.494987px;}
.xf{left:285.494987px;}
.x4{left:350.399987px;}
.x5{left:366.149987px;}
.xa{left:381.899987px;}
.x6{left:390.149987px;}
.x3{left:446.444987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.077333pt;}
.ls11{letter-spacing:-0.821333pt;}
.ls2a{letter-spacing:-0.794667pt;}
.lsd{letter-spacing:-0.736000pt;}
.ls2{letter-spacing:-0.629333pt;}
.lsb{letter-spacing:-0.618667pt;}
.lse{letter-spacing:-0.560000pt;}
.ls13{letter-spacing:-0.554667pt;}
.ls9{letter-spacing:-0.501333pt;}
.ls6{letter-spacing:-0.485333pt;}
.ls17{letter-spacing:-0.426667pt;}
.ls2c{letter-spacing:-0.413333pt;}
.ls19{letter-spacing:-0.410667pt;}
.ls3{letter-spacing:-0.389333pt;}
.ls1f{letter-spacing:-0.357333pt;}
.ls4{letter-spacing:-0.309333pt;}
.ls25{letter-spacing:-0.306667pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls23{letter-spacing:-0.224000pt;}
.ls28{letter-spacing:-0.109333pt;}
.lsf{letter-spacing:-0.090667pt;}
.lsc{letter-spacing:-0.074667pt;}
.ls12{letter-spacing:-0.042667pt;}
.ls8{letter-spacing:-0.026667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.101333pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls27{letter-spacing:0.125333pt;}
.ls2b{letter-spacing:0.141333pt;}
.ls24{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.224000pt;}
.ls10{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.261333pt;}
.ls20{letter-spacing:0.450667pt;}
.ls1d{letter-spacing:0.472000pt;}
.ls0{letter-spacing:0.504000pt;}
.ls1e{letter-spacing:0.520000pt;}
.ls2d{letter-spacing:0.592000pt;}
.ls22{letter-spacing:0.856000pt;}
.ls21{letter-spacing:0.960000pt;}
.ls5{letter-spacing:1.045333pt;}
.ls14{letter-spacing:1.306667pt;}
.ls15{letter-spacing:5.408000pt;}
.ls1b{letter-spacing:7.146667pt;}
.ls16{letter-spacing:8.426667pt;}
.ls1c{letter-spacing:60.432000pt;}
.wsb{word-spacing:-32.208000pt;}
.ws3{word-spacing:-13.952000pt;}
.wsf{word-spacing:-13.525333pt;}
.wsc{word-spacing:-13.162667pt;}
.ws13{word-spacing:-13.013333pt;}
.ws4{word-spacing:-13.008000pt;}
.ws22{word-spacing:-12.912000pt;}
.ws0{word-spacing:-12.906667pt;}
.wsd{word-spacing:-12.864000pt;}
.ws8{word-spacing:-12.832000pt;}
.wsa{word-spacing:-12.816000pt;}
.ws14{word-spacing:-12.792000pt;}
.ws17{word-spacing:-12.770667pt;}
.ws6{word-spacing:-12.666667pt;}
.ws2{word-spacing:-12.597333pt;}
.ws1e{word-spacing:-12.581333pt;}
.ws1a{word-spacing:-12.544000pt;}
.ws18{word-spacing:-12.512000pt;}
.ws12{word-spacing:-12.496000pt;}
.ws10{word-spacing:-12.480000pt;}
.ws20{word-spacing:-12.461333pt;}
.ws1b{word-spacing:-12.445333pt;}
.ws5{word-spacing:-12.405333pt;}
.ws9{word-spacing:-12.346667pt;}
.ws15{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.288000pt;}
.wse{word-spacing:-12.277333pt;}
.ws1c{word-spacing:-12.210667pt;}
.ws19{word-spacing:-12.013333pt;}
.ws16{word-spacing:-11.962667pt;}
.ws21{word-spacing:-11.906667pt;}
.ws11{word-spacing:-11.829333pt;}
.ws1d{word-spacing:-11.765333pt;}
.ws1f{word-spacing:-11.525333pt;}
.ws1{word-spacing:0.000000pt;}
._7{margin-left:-4.048000pt;}
._4{margin-left:-2.410667pt;}
._0{margin-left:-1.045333pt;}
._1{width:0.896000pt;}
._2{width:1.877333pt;}
._3{width:2.813333pt;}
._8{width:3.733333pt;}
._9{width:4.741333pt;}
._a{width:5.653333pt;}
._d{width:7.088000pt;}
._6{width:8.016000pt;}
._5{width:9.440000pt;}
._b{width:11.136000pt;}
._c{width:13.893333pt;}
._e{width:15.184000pt;}
._f{width:16.282667pt;}
._11{width:17.882667pt;}
._10{width:18.960000pt;}
._17{width:20.346667pt;}
._18{width:21.845333pt;}
._15{width:23.104000pt;}
._16{width:24.528000pt;}
._19{width:26.341333pt;}
._1a{width:27.562667pt;}
._14{width:29.029333pt;}
._12{width:30.400000pt;}
._13{width:31.872000pt;}
._1c{width:46.346667pt;}
._1b{width:47.568000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:90.700000pt;}
.y74{bottom:91.033333pt;}
.y8b{bottom:91.366667pt;}
.y73{bottom:92.366667pt;}
.yf9{bottom:102.366667pt;}
.y37{bottom:104.700000pt;}
.yc1{bottom:107.700000pt;}
.y6d{bottom:108.033333pt;}
.y8a{bottom:108.700000pt;}
.y72{bottom:109.366667pt;}
.yf8{bottom:118.700000pt;}
.y36{bottom:122.033333pt;}
.yc0{bottom:124.033333pt;}
.y6c{bottom:125.033333pt;}
.y89{bottom:126.033333pt;}
.yac{bottom:126.366667pt;}
.y71{bottom:126.700000pt;}
.yf7{bottom:135.026667pt;}
.y35{bottom:139.373333pt;}
.ybf{bottom:140.373333pt;}
.y6b{bottom:142.373333pt;}
.y88{bottom:143.040000pt;}
.y70{bottom:144.026667pt;}
.yab{bottom:144.360000pt;}
.yf6{bottom:151.373333pt;}
.y34{bottom:156.360000pt;}
.ybe{bottom:156.706667pt;}
.yaa{bottom:159.706667pt;}
.y6a{bottom:160.040000pt;}
.y87{bottom:160.373333pt;}
.y6f{bottom:161.066667pt;}
.yf5{bottom:168.066667pt;}
.ybd{bottom:173.400000pt;}
.y33{bottom:173.733333pt;}
.ya9{bottom:176.733333pt;}
.y86{bottom:177.400000pt;}
.y69{bottom:178.400000pt;}
.yf4{bottom:184.400000pt;}
.ybc{bottom:189.733333pt;}
.y32{bottom:191.066667pt;}
.ya8{bottom:194.066667pt;}
.y85{bottom:194.733333pt;}
.y68{bottom:195.400000pt;}
.yf3{bottom:200.733333pt;}
.ybb{bottom:206.066667pt;}
.y31{bottom:208.066667pt;}
.ya7{bottom:211.400000pt;}
.y84{bottom:212.066667pt;}
.y67{bottom:212.733333pt;}
.yf2{bottom:217.066667pt;}
.yba{bottom:222.733333pt;}
.y30{bottom:225.400000pt;}
.ya6{bottom:228.400000pt;}
.y83{bottom:229.066667pt;}
.y66{bottom:230.066667pt;}
.yf1{bottom:233.733333pt;}
.yb9{bottom:239.066667pt;}
.y2f{bottom:242.400000pt;}
.ya5{bottom:245.733333pt;}
.y82{bottom:246.400000pt;}
.y65{bottom:247.066667pt;}
.yf0{bottom:250.066667pt;}
.yb8{bottom:255.400000pt;}
.y2e{bottom:259.733333pt;}
.ya4{bottom:262.733333pt;}
.y81{bottom:263.733333pt;}
.y64{bottom:264.400000pt;}
.yef{bottom:266.400000pt;}
.yb7{bottom:271.733333pt;}
.y2d{bottom:277.106667pt;}
.ya3{bottom:280.106667pt;}
.y80{bottom:280.773333pt;}
.y63{bottom:281.773333pt;}
.yee{bottom:283.106667pt;}
.yb6{bottom:288.426667pt;}
.y2c{bottom:294.093333pt;}
.ya2{bottom:297.426667pt;}
.y7f{bottom:298.106667pt;}
.y62{bottom:298.773333pt;}
.yed{bottom:299.440000pt;}
.yb5{bottom:304.773333pt;}
.y2b{bottom:311.440000pt;}
.ya1{bottom:314.440000pt;}
.y7e{bottom:315.093333pt;}
.yec{bottom:315.760000pt;}
.y61{bottom:316.106667pt;}
.yb4{bottom:321.093333pt;}
.y2a{bottom:328.773333pt;}
.ya0{bottom:331.773333pt;}
.yeb{bottom:332.106667pt;}
.y7d{bottom:332.440000pt;}
.y60{bottom:333.093333pt;}
.yb3{bottom:337.773333pt;}
.y29{bottom:345.760000pt;}
.yea{bottom:348.760000pt;}
.y9f{bottom:349.106667pt;}
.y7c{bottom:349.773333pt;}
.y5f{bottom:350.440000pt;}
.yb2{bottom:354.093333pt;}
.y28{bottom:363.106667pt;}
.ye9{bottom:365.106667pt;}
.y9e{bottom:366.106667pt;}
.y7b{bottom:366.773333pt;}
.y5e{bottom:367.773333pt;}
.yb1{bottom:370.440000pt;}
.y27{bottom:380.106667pt;}
.ye8{bottom:381.440000pt;}
.y9d{bottom:383.440000pt;}
.y7a{bottom:384.106667pt;}
.y5d{bottom:384.773333pt;}
.yb0{bottom:386.773333pt;}
.y26{bottom:397.466667pt;}
.ye7{bottom:398.133333pt;}
.y9c{bottom:400.466667pt;}
.y79{bottom:401.466667pt;}
.y5c{bottom:402.133333pt;}
.yaf{bottom:403.466667pt;}
.ye6{bottom:414.466667pt;}
.y25{bottom:414.800000pt;}
.y9b{bottom:417.800000pt;}
.y78{bottom:418.466667pt;}
.y5b{bottom:419.466667pt;}
.yae{bottom:419.800000pt;}
.ye5{bottom:430.800000pt;}
.y24{bottom:431.800000pt;}
.y9a{bottom:435.133333pt;}
.y77{bottom:435.800000pt;}
.y5a{bottom:436.466667pt;}
.ye4{bottom:447.133333pt;}
.y23{bottom:449.133333pt;}
.y99{bottom:452.133333pt;}
.y76{bottom:452.800000pt;}
.y59{bottom:453.800000pt;}
.yad{bottom:454.800000pt;}
.ye3{bottom:463.800000pt;}
.y22{bottom:466.466667pt;}
.y98{bottom:469.466667pt;}
.y75{bottom:470.133333pt;}
.y58{bottom:471.133333pt;}
.ye2{bottom:480.133333pt;}
.y21{bottom:483.466667pt;}
.y97{bottom:486.800000pt;}
.y57{bottom:488.133333pt;}
.ye1{bottom:496.466667pt;}
.y20{bottom:500.840000pt;}
.y96{bottom:503.840000pt;}
.y56{bottom:505.506667pt;}
.ye0{bottom:513.173333pt;}
.y1f{bottom:517.840000pt;}
.y95{bottom:521.173333pt;}
.y55{bottom:522.506667pt;}
.ydf{bottom:529.506667pt;}
.y1e{bottom:535.506667pt;}
.y94{bottom:538.173333pt;}
.y54{bottom:539.840000pt;}
.yde{bottom:545.840000pt;}
.y1d{bottom:553.840000pt;}
.y93{bottom:555.506667pt;}
.y53{bottom:557.173333pt;}
.ydd{bottom:562.173333pt;}
.y100{bottom:564.506667pt;}
.y1c{bottom:570.173333pt;}
.y92{bottom:572.840000pt;}
.y52{bottom:574.173333pt;}
.ydc{bottom:578.840000pt;}
.yff{bottom:580.840000pt;}
.y1b{bottom:586.506667pt;}
.y91{bottom:589.840000pt;}
.y51{bottom:591.506667pt;}
.ydb{bottom:595.173333pt;}
.yfe{bottom:596.840000pt;}
.y1a{bottom:602.173333pt;}
.y90{bottom:607.173333pt;}
.y50{bottom:608.840000pt;}
.yda{bottom:611.506667pt;}
.yfd{bottom:612.840000pt;}
.y19{bottom:617.866667pt;}
.y8f{bottom:624.200000pt;}
.y4f{bottom:625.866667pt;}
.yd9{bottom:627.866667pt;}
.yfc{bottom:628.866667pt;}
.y18{bottom:633.533333pt;}
.y8e{bottom:641.200000pt;}
.y4e{bottom:643.200000pt;}
.yd8{bottom:644.533333pt;}
.yfb{bottom:645.200000pt;}
.y17{bottom:649.200000pt;}
.y8d{bottom:659.866667pt;}
.y4d{bottom:660.200000pt;}
.yd7{bottom:660.866667pt;}
.yfa{bottom:661.200000pt;}
.y16{bottom:664.866667pt;}
.yd6{bottom:677.200000pt;}
.y4c{bottom:677.533333pt;}
.y8c{bottom:678.200000pt;}
.y15{bottom:680.533333pt;}
.yd5{bottom:693.866667pt;}
.y4b{bottom:694.866667pt;}
.y14{bottom:695.866667pt;}
.yd4{bottom:710.200000pt;}
.y13{bottom:711.533333pt;}
.y4a{bottom:711.866667pt;}
.yd3{bottom:726.533333pt;}
.y12{bottom:727.226667pt;}
.y49{bottom:729.240000pt;}
.y11{bottom:742.893333pt;}
.y48{bottom:746.560000pt;}
.y10{bottom:758.560000pt;}
.yd2{bottom:759.560000pt;}
.y47{bottom:763.573333pt;}
.yf{bottom:774.226667pt;}
.yd1{bottom:775.893333pt;}
.y46{bottom:780.893333pt;}
.ye{bottom:789.893333pt;}
.yd0{bottom:792.226667pt;}
.y45{bottom:797.893333pt;}
.yd{bottom:805.560000pt;}
.ycf{bottom:808.893333pt;}
.y44{bottom:815.226667pt;}
.yc{bottom:821.226667pt;}
.yce{bottom:825.226667pt;}
.y43{bottom:832.560000pt;}
.yb{bottom:837.560000pt;}
.ycd{bottom:841.600000pt;}
.y42{bottom:849.600000pt;}
.ya{bottom:854.266667pt;}
.ycc{bottom:857.933333pt;}
.y41{bottom:866.933333pt;}
.y9{bottom:871.600000pt;}
.ycb{bottom:874.600000pt;}
.y40{bottom:884.266667pt;}
.y8{bottom:888.933333pt;}
.yca{bottom:890.933333pt;}
.y3f{bottom:901.266667pt;}
.y7{bottom:905.933333pt;}
.yc9{bottom:907.266667pt;}
.y3e{bottom:918.600000pt;}
.y6{bottom:923.266667pt;}
.yc8{bottom:923.933333pt;}
.y3d{bottom:935.600000pt;}
.yc7{bottom:940.266667pt;}
.y5{bottom:940.600000pt;}
.y3c{bottom:952.933333pt;}
.yc6{bottom:956.626667pt;}
.y4{bottom:958.293333pt;}
.y3b{bottom:970.293333pt;}
.yc5{bottom:972.960000pt;}
.y3{bottom:976.960000pt;}
.y3a{bottom:987.293333pt;}
.yc4{bottom:989.626667pt;}
.y2{bottom:995.960000pt;}
.y39{bottom:1004.626667pt;}
.yc3{bottom:1005.960000pt;}
.y1{bottom:1017.960000pt;}
.y38{bottom:1021.960000pt;}
.yc2{bottom:1022.293333pt;}
.h5{height:46.406250pt;}
.h7{height:47.414062pt;}
.h4{height:48.726562pt;}
.h3{height:51.046875pt;}
.h6{height:54.187500pt;}
.h2{height:55.687500pt;}
.h8{height:57.559176pt;}
.h1{height:63.218750pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:87.033322pt;}
.x10{left:106.033322pt;}
.x2{left:130.399988pt;}
.x8{left:151.399988pt;}
.x7{left:176.399988pt;}
.xb{left:219.106655pt;}
.x1{left:228.773322pt;}
.xe{left:239.773322pt;}
.xd{left:247.106655pt;}
.xc{left:248.439988pt;}
.xf{left:253.773322pt;}
.x4{left:311.466655pt;}
.x5{left:325.466655pt;}
.xa{left:339.466655pt;}
.x6{left:346.799988pt;}
.x3{left:396.839988pt;}
}




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