
    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_462b3a7bf25e41797233ee87.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_d8e700defbe109616a2f137f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.057617;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_a54fb8ff7a6b86258b5a672d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.687500;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_2e578bba2200fb698d1bc29f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_dc1703c9a798079368220815.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.875977;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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:27.360000px;}
.ls2c{letter-spacing:-2.952000px;}
.ls2d{letter-spacing:-2.664000px;}
.ls27{letter-spacing:-2.448000px;}
.ls2a{letter-spacing:-2.304000px;}
.ls2f{letter-spacing:-2.232000px;}
.ls29{letter-spacing:-2.160000px;}
.ls32{letter-spacing:-2.088000px;}
.ls31{letter-spacing:-1.944000px;}
.ls30{letter-spacing:-1.872000px;}
.ls2e{letter-spacing:-1.728000px;}
.ls28{letter-spacing:-1.656000px;}
.ls2b{letter-spacing:-1.368000px;}
.ls3a{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.432000px;}
.ls37{letter-spacing:-0.361800px;}
.ls21{letter-spacing:-0.353808px;}
.ls25{letter-spacing:-0.328536px;}
.ls11{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.033696px;}
.ls5{letter-spacing:-0.016848px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.007200px;}
.lsa{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls3c{letter-spacing:0.192960px;}
.ls6{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.269280px;}
.ls15{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.289440px;}
.ls3b{letter-spacing:0.337800px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.361800px;}
.ls19{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.727200px;}
.lsc{letter-spacing:0.792000px;}
.ls7{letter-spacing:0.864000px;}
.ls16{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.440000px;}
.ls39{letter-spacing:2.160000px;}
.ls1f{letter-spacing:2.340000px;}
.ls35{letter-spacing:3.600000px;}
.ls38{letter-spacing:5.040000px;}
.ls33{letter-spacing:7.920000px;}
.ls14{letter-spacing:10.222200px;}
.ls10{letter-spacing:15.840000px;}
.lsf{letter-spacing:15.982200px;}
.ls22{letter-spacing:18.180000px;}
.ls1{letter-spacing:22.320000px;}
.ls23{letter-spacing:28.080000px;}
.ls1e{letter-spacing:39.780000px;}
.ls1d{letter-spacing:40.500000px;}
.ls34{letter-spacing:41.760000px;}
.ls36{letter-spacing:118.080000px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws12{word-spacing:-20.706192px;}
.wsd{word-spacing:-18.727200px;}
.wsb{word-spacing:-18.720000px;}
.ws16{word-spacing:-18.576000px;}
.wsc{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.007200px;}
.ws0{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws13{word-spacing:-17.568000px;}
.ws5{word-spacing:-17.208000px;}
.ws15{word-spacing:-16.128000px;}
.ws14{word-spacing:-15.840000px;}
.ws4{word-spacing:-12.421800px;}
.ws9{word-spacing:-12.349440px;}
.ws18{word-spacing:-12.252960px;}
.ws6{word-spacing:-12.060000px;}
.ws17{word-spacing:-11.698200px;}
.ws3{word-spacing:0.000000px;}
._2c{margin-left:-15.676488px;}
._2a{margin-left:-2.777496px;}
._0{margin-left:-1.398504px;}
._1{width:1.038504px;}
._b{width:2.808000px;}
._c{width:4.145496px;}
._3{width:5.976000px;}
._a{width:7.056000px;}
._10{width:8.632800px;}
._e{width:9.648000px;}
._f{width:10.697496px;}
._14{width:11.736000px;}
._13{width:12.960000px;}
._d{width:14.904000px;}
._4{width:16.632000px;}
._1b{width:19.224000px;}
._1a{width:20.437008px;}
._8{width:21.569496px;}
._7{width:22.638504px;}
._17{width:23.862504px;}
._2d{width:24.892488px;}
._5{width:25.920000px;}
._26{width:26.928000px;}
._15{width:28.008000px;}
._16{width:29.338296px;}
._28{width:31.141704px;}
._1c{width:32.873496px;}
._24{width:34.662504px;}
._25{width:36.000000px;}
._6{width:37.440000px;}
._29{width:39.425496px;}
._1d{width:40.608000px;}
._1e{width:41.801496px;}
._27{width:42.984000px;}
._20{width:44.424000px;}
._22{width:45.799200px;}
._21{width:46.944000px;}
._30{width:47.952000px;}
._9{width:48.960000px;}
._18{width:50.760000px;}
._19{width:52.344000px;}
._33{width:53.393496px;}
._2e{width:54.432000px;}
._2f{width:55.666992px;}
._31{width:57.043512px;}
._11{width:63.000000px;}
._12{width:64.389984px;}
._2{width:70.344000px;}
._2b{width:72.288000px;}
._23{width:88.416000px;}
._32{width:100.368000px;}
._1f{width:106.416000px;}
.fc6{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(86,90,92);}
.fc7{color:rgb(119,119,119);}
.fc5{color:rgb(51,51,51);}
.fc4{color:rgb(19,19,19);}
.fc1{color:rgb(52,52,52);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:98.820000px;}
.y33{bottom:102.240000px;}
.y66{bottom:105.660000px;}
.yb7{bottom:111.420000px;}
.yd5{bottom:119.520000px;}
.y32{bottom:122.580000px;}
.y78{bottom:122.940000px;}
.y7a{bottom:126.000000px;}
.y65{bottom:126.360000px;}
.yb6{bottom:131.760000px;}
.y71{bottom:133.200000px;}
.yd4{bottom:140.220000px;}
.y31{bottom:143.640000px;}
.y88{bottom:143.820000px;}
.y64{bottom:147.060000px;}
.yb5{bottom:152.820000px;}
.yd3{bottom:160.920000px;}
.y30{bottom:164.340000px;}
.y63{bottom:167.760000px;}
.yd2{bottom:181.620000px;}
.y2f{bottom:185.040000px;}
.yd7{bottom:188.100000px;}
.y62{bottom:188.460000px;}
.yb4{bottom:194.400000px;}
.yd1{bottom:202.320000px;}
.y2e{bottom:205.740000px;}
.y61{bottom:209.160000px;}
.yb3{bottom:215.100000px;}
.yda{bottom:216.000000px;}
.yd0{bottom:223.020000px;}
.y2d{bottom:226.440000px;}
.y70{bottom:229.500000px;}
.y60{bottom:229.860000px;}
.yb2{bottom:235.800000px;}
.ycf{bottom:243.720000px;}
.y2c{bottom:247.140000px;}
.y5f{bottom:250.560000px;}
.yb1{bottom:256.500000px;}
.yce{bottom:264.420000px;}
.y2b{bottom:267.840000px;}
.y5e{bottom:271.260000px;}
.yb0{bottom:277.200000px;}
.y8c{bottom:278.100000px;}
.ycd{bottom:285.120000px;}
.y2a{bottom:288.540000px;}
.y5d{bottom:291.960000px;}
.yaf{bottom:297.900000px;}
.ycc{bottom:305.820000px;}
.y29{bottom:309.240000px;}
.yd9{bottom:312.300000px;}
.y5c{bottom:312.660000px;}
.yae{bottom:318.600000px;}
.y8b{bottom:319.500000px;}
.ycb{bottom:326.520000px;}
.y28{bottom:329.940000px;}
.y86{bottom:333.000000px;}
.y5b{bottom:333.360000px;}
.yad{bottom:339.300000px;}
.yca{bottom:347.220000px;}
.y27{bottom:350.640000px;}
.y85{bottom:353.700000px;}
.y5a{bottom:354.060000px;}
.yac{bottom:360.000000px;}
.y7e{bottom:360.900000px;}
.yc9{bottom:367.920000px;}
.y26{bottom:371.340000px;}
.y59{bottom:374.760000px;}
.yab{bottom:380.700000px;}
.y7d{bottom:381.600000px;}
.yc8{bottom:388.620000px;}
.y25{bottom:392.040000px;}
.y8a{bottom:395.100000px;}
.y58{bottom:395.460000px;}
.yaa{bottom:401.400000px;}
.yc7{bottom:409.320000px;}
.y24{bottom:412.740000px;}
.y57{bottom:416.160000px;}
.ya9{bottom:422.100000px;}
.y7c{bottom:423.000000px;}
.yc6{bottom:430.020000px;}
.y23{bottom:433.440000px;}
.y56{bottom:436.860000px;}
.y77{bottom:440.280000px;}
.ya8{bottom:442.800000px;}
.yc5{bottom:450.720000px;}
.y22{bottom:454.140000px;}
.y55{bottom:457.560000px;}
.ya7{bottom:463.500000px;}
.yc4{bottom:471.420000px;}
.y21{bottom:474.840000px;}
.y54{bottom:477.900000px;}
.y6f{bottom:478.260000px;}
.ya6{bottom:484.200000px;}
.yc3{bottom:492.120000px;}
.y20{bottom:495.540000px;}
.yb8{bottom:498.600000px;}
.y53{bottom:498.960000px;}
.ya5{bottom:504.900000px;}
.yc2{bottom:512.820000px;}
.y1f{bottom:516.240000px;}
.y52{bottom:519.660000px;}
.ya4{bottom:525.600000px;}
.yc1{bottom:533.520000px;}
.y1e{bottom:536.940000px;}
.y7b{bottom:540.000000px;}
.y51{bottom:540.360000px;}
.ya3{bottom:546.300000px;}
.yc0{bottom:554.220000px;}
.y1d{bottom:557.640000px;}
.y50{bottom:561.060000px;}
.ya2{bottom:567.000000px;}
.ybf{bottom:574.560000px;}
.y1c{bottom:578.340000px;}
.y76{bottom:580.320000px;}
.y4f{bottom:581.760000px;}
.ya1{bottom:587.700000px;}
.ybe{bottom:595.620000px;}
.y1b{bottom:599.040000px;}
.y4e{bottom:602.460000px;}
.ya0{bottom:608.400000px;}
.y75{bottom:609.480000px;}
.ybd{bottom:616.506300px;}
.y1a{bottom:619.740000px;}
.y4d{bottom:623.160000px;}
.y9f{bottom:629.100000px;}
.yde{bottom:630.000000px;}
.y74{bottom:635.040000px;}
.y19{bottom:640.440000px;}
.ybc{bottom:640.620000px;}
.y4c{bottom:643.860000px;}
.y9e{bottom:649.800000px;}
.ydd{bottom:650.700000px;}
.y18{bottom:661.140000px;}
.ydb{bottom:664.200000px;}
.y4b{bottom:664.560000px;}
.y4a{bottom:685.260000px;}
.y17{bottom:688.680000px;}
.y9d{bottom:691.560000px;}
.y16{bottom:702.540000px;}
.y49{bottom:705.960000px;}
.y9c{bottom:719.100000px;}
.y48{bottom:726.660000px;}
.y15{bottom:730.080000px;}
.y9b{bottom:739.800000px;}
.y14{bottom:743.940000px;}
.y80{bottom:747.000000px;}
.y47{bottom:747.360000px;}
.y9a{bottom:753.660000px;}
.y6e{bottom:754.200000px;}
.y8d{bottom:767.700000px;}
.ybb{bottom:768.059850px;}
.y46{bottom:768.060000px;}
.y13{bottom:771.479850px;}
.y99{bottom:781.200000px;}
.y12{bottom:785.340000px;}
.yba{bottom:788.399850px;}
.y45{bottom:788.760000px;}
.y98{bottom:795.060000px;}
.y79{bottom:795.600000px;}
.y6d{bottom:795.605100px;}
.yb9{bottom:809.459850px;}
.y44{bottom:809.460000px;}
.y11{bottom:812.880000px;}
.y6c{bottom:816.300000px;}
.y97{bottom:822.600000px;}
.y10{bottom:826.740000px;}
.y6b{bottom:830.159850px;}
.y43{bottom:830.160000px;}
.y96{bottom:836.460000px;}
.y7f{bottom:850.500000px;}
.y42{bottom:850.860000px;}
.yf{bottom:854.280000px;}
.y95{bottom:857.160000px;}
.ye{bottom:868.140000px;}
.y6a{bottom:871.200000px;}
.y41{bottom:871.560000px;}
.y94{bottom:877.860000px;}
.y69{bottom:891.900000px;}
.y40{bottom:892.260000px;}
.yd{bottom:895.680000px;}
.y93{bottom:898.560000px;}
.yd8{bottom:899.100000px;}
.yc{bottom:909.540000px;}
.y3f{bottom:912.960000px;}
.y3e{bottom:933.660000px;}
.yb{bottom:937.080000px;}
.y92{bottom:939.780000px;}
.y84{bottom:940.500000px;}
.ya{bottom:950.940000px;}
.y3d{bottom:954.360000px;}
.y91{bottom:960.840000px;}
.ydc{bottom:961.200000px;}
.y9{bottom:971.460000px;}
.y3c{bottom:975.060000px;}
.y83{bottom:981.900000px;}
.y8{bottom:992.160000px;}
.y3b{bottom:995.760000px;}
.y90{bottom:1002.600000px;}
.y7{bottom:1012.860000px;}
.y3a{bottom:1016.460000px;}
.y82{bottom:1023.300000px;}
.y6{bottom:1033.200000px;}
.y39{bottom:1037.160000px;}
.y81{bottom:1044.000000px;}
.y8f{bottom:1044.180000px;}
.y5{bottom:1054.260000px;}
.y38{bottom:1057.860000px;}
.y8e{bottom:1069.740000px;}
.y4{bottom:1074.960000px;}
.y68{bottom:1078.560000px;}
.y37{bottom:1085.400000px;}
.y3{bottom:1095.660000px;}
.y89{bottom:1098.900000px;}
.y67{bottom:1099.260000px;}
.y36{bottom:1106.100000px;}
.y2{bottom:1116.360000px;}
.y87{bottom:1119.600000px;}
.y35{bottom:1119.960000px;}
.y73{bottom:1126.800000px;}
.y1{bottom:1137.420000px;}
.y34{bottom:1140.660000px;}
.y72{bottom:1147.500000px;}
.h5{height:40.608281px;}
.h6{height:48.796875px;}
.ha{height:50.027344px;}
.h2{height:57.092344px;}
.h3{height:60.609375px;}
.h4{height:67.968281px;}
.h7{height:67.968881px;}
.h8{height:73.195312px;}
.h9{height:90.914062px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:106.200000px;}
.x7{left:136.440000px;}
.x5{left:139.140000px;}
.x3{left:159.300000px;}
.x6{left:228.600000px;}
.x4{left:231.660000px;}
.x1{left:235.800000px;}
.x8{left:317.160000px;}
.x9{left:446.194650px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls2c{letter-spacing:-2.624000pt;}
.ls2d{letter-spacing:-2.368000pt;}
.ls27{letter-spacing:-2.176000pt;}
.ls2a{letter-spacing:-2.048000pt;}
.ls2f{letter-spacing:-1.984000pt;}
.ls29{letter-spacing:-1.920000pt;}
.ls32{letter-spacing:-1.856000pt;}
.ls31{letter-spacing:-1.728000pt;}
.ls30{letter-spacing:-1.664000pt;}
.ls2e{letter-spacing:-1.536000pt;}
.ls28{letter-spacing:-1.472000pt;}
.ls2b{letter-spacing:-1.216000pt;}
.ls3a{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.384000pt;}
.ls37{letter-spacing:-0.321600pt;}
.ls21{letter-spacing:-0.314496pt;}
.ls25{letter-spacing:-0.292032pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.029952pt;}
.ls5{letter-spacing:-0.014976pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.006400pt;}
.lsa{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls3c{letter-spacing:0.171520pt;}
.ls6{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.239360pt;}
.ls15{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.257280pt;}
.ls3b{letter-spacing:0.300267pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.321600pt;}
.ls19{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.646400pt;}
.lsc{letter-spacing:0.704000pt;}
.ls7{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls39{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:2.080000pt;}
.ls35{letter-spacing:3.200000pt;}
.ls38{letter-spacing:4.480000pt;}
.ls33{letter-spacing:7.040000pt;}
.ls14{letter-spacing:9.086400pt;}
.ls10{letter-spacing:14.080000pt;}
.lsf{letter-spacing:14.206400pt;}
.ls22{letter-spacing:16.160000pt;}
.ls1{letter-spacing:19.840000pt;}
.ls23{letter-spacing:24.960000pt;}
.ls1e{letter-spacing:35.360000pt;}
.ls1d{letter-spacing:36.000000pt;}
.ls34{letter-spacing:37.120000pt;}
.ls36{letter-spacing:104.960000pt;}
.ws11{word-spacing:-64.000000pt;}
.ws12{word-spacing:-18.405504pt;}
.wsd{word-spacing:-16.646400pt;}
.wsb{word-spacing:-16.640000pt;}
.ws16{word-spacing:-16.512000pt;}
.wsc{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.006400pt;}
.ws0{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws13{word-spacing:-15.616000pt;}
.ws5{word-spacing:-15.296000pt;}
.ws15{word-spacing:-14.336000pt;}
.ws14{word-spacing:-14.080000pt;}
.ws4{word-spacing:-11.041600pt;}
.ws9{word-spacing:-10.977280pt;}
.ws18{word-spacing:-10.891520pt;}
.ws6{word-spacing:-10.720000pt;}
.ws17{word-spacing:-10.398400pt;}
.ws3{word-spacing:0.000000pt;}
._2c{margin-left:-13.934656pt;}
._2a{margin-left:-2.468885pt;}
._0{margin-left:-1.243115pt;}
._1{width:0.923115pt;}
._b{width:2.496000pt;}
._c{width:3.684885pt;}
._3{width:5.312000pt;}
._a{width:6.272000pt;}
._10{width:7.673600pt;}
._e{width:8.576000pt;}
._f{width:9.508885pt;}
._14{width:10.432000pt;}
._13{width:11.520000pt;}
._d{width:13.248000pt;}
._4{width:14.784000pt;}
._1b{width:17.088000pt;}
._1a{width:18.166229pt;}
._8{width:19.172885pt;}
._7{width:20.123115pt;}
._17{width:21.211115pt;}
._2d{width:22.126656pt;}
._5{width:23.040000pt;}
._26{width:23.936000pt;}
._15{width:24.896000pt;}
._16{width:26.078485pt;}
._28{width:27.681515pt;}
._1c{width:29.220885pt;}
._24{width:30.811115pt;}
._25{width:32.000000pt;}
._6{width:33.280000pt;}
._29{width:35.044885pt;}
._1d{width:36.096000pt;}
._1e{width:37.156885pt;}
._27{width:38.208000pt;}
._20{width:39.488000pt;}
._22{width:40.710400pt;}
._21{width:41.728000pt;}
._30{width:42.624000pt;}
._9{width:43.520000pt;}
._18{width:45.120000pt;}
._19{width:46.528000pt;}
._33{width:47.460885pt;}
._2e{width:48.384000pt;}
._2f{width:49.481771pt;}
._31{width:50.705344pt;}
._11{width:56.000000pt;}
._12{width:57.235541pt;}
._2{width:62.528000pt;}
._2b{width:64.256000pt;}
._23{width:78.592000pt;}
._32{width:89.216000pt;}
._1f{width:94.592000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:87.840000pt;}
.y33{bottom:90.880000pt;}
.y66{bottom:93.920000pt;}
.yb7{bottom:99.040000pt;}
.yd5{bottom:106.240000pt;}
.y32{bottom:108.960000pt;}
.y78{bottom:109.280000pt;}
.y7a{bottom:112.000000pt;}
.y65{bottom:112.320000pt;}
.yb6{bottom:117.120000pt;}
.y71{bottom:118.400000pt;}
.yd4{bottom:124.640000pt;}
.y31{bottom:127.680000pt;}
.y88{bottom:127.840000pt;}
.y64{bottom:130.720000pt;}
.yb5{bottom:135.840000pt;}
.yd3{bottom:143.040000pt;}
.y30{bottom:146.080000pt;}
.y63{bottom:149.120000pt;}
.yd2{bottom:161.440000pt;}
.y2f{bottom:164.480000pt;}
.yd7{bottom:167.200000pt;}
.y62{bottom:167.520000pt;}
.yb4{bottom:172.800000pt;}
.yd1{bottom:179.840000pt;}
.y2e{bottom:182.880000pt;}
.y61{bottom:185.920000pt;}
.yb3{bottom:191.200000pt;}
.yda{bottom:192.000000pt;}
.yd0{bottom:198.240000pt;}
.y2d{bottom:201.280000pt;}
.y70{bottom:204.000000pt;}
.y60{bottom:204.320000pt;}
.yb2{bottom:209.600000pt;}
.ycf{bottom:216.640000pt;}
.y2c{bottom:219.680000pt;}
.y5f{bottom:222.720000pt;}
.yb1{bottom:228.000000pt;}
.yce{bottom:235.040000pt;}
.y2b{bottom:238.080000pt;}
.y5e{bottom:241.120000pt;}
.yb0{bottom:246.400000pt;}
.y8c{bottom:247.200000pt;}
.ycd{bottom:253.440000pt;}
.y2a{bottom:256.480000pt;}
.y5d{bottom:259.520000pt;}
.yaf{bottom:264.800000pt;}
.ycc{bottom:271.840000pt;}
.y29{bottom:274.880000pt;}
.yd9{bottom:277.600000pt;}
.y5c{bottom:277.920000pt;}
.yae{bottom:283.200000pt;}
.y8b{bottom:284.000000pt;}
.ycb{bottom:290.240000pt;}
.y28{bottom:293.280000pt;}
.y86{bottom:296.000000pt;}
.y5b{bottom:296.320000pt;}
.yad{bottom:301.600000pt;}
.yca{bottom:308.640000pt;}
.y27{bottom:311.680000pt;}
.y85{bottom:314.400000pt;}
.y5a{bottom:314.720000pt;}
.yac{bottom:320.000000pt;}
.y7e{bottom:320.800000pt;}
.yc9{bottom:327.040000pt;}
.y26{bottom:330.080000pt;}
.y59{bottom:333.120000pt;}
.yab{bottom:338.400000pt;}
.y7d{bottom:339.200000pt;}
.yc8{bottom:345.440000pt;}
.y25{bottom:348.480000pt;}
.y8a{bottom:351.200000pt;}
.y58{bottom:351.520000pt;}
.yaa{bottom:356.800000pt;}
.yc7{bottom:363.840000pt;}
.y24{bottom:366.880000pt;}
.y57{bottom:369.920000pt;}
.ya9{bottom:375.200000pt;}
.y7c{bottom:376.000000pt;}
.yc6{bottom:382.240000pt;}
.y23{bottom:385.280000pt;}
.y56{bottom:388.320000pt;}
.y77{bottom:391.360000pt;}
.ya8{bottom:393.600000pt;}
.yc5{bottom:400.640000pt;}
.y22{bottom:403.680000pt;}
.y55{bottom:406.720000pt;}
.ya7{bottom:412.000000pt;}
.yc4{bottom:419.040000pt;}
.y21{bottom:422.080000pt;}
.y54{bottom:424.800000pt;}
.y6f{bottom:425.120000pt;}
.ya6{bottom:430.400000pt;}
.yc3{bottom:437.440000pt;}
.y20{bottom:440.480000pt;}
.yb8{bottom:443.200000pt;}
.y53{bottom:443.520000pt;}
.ya5{bottom:448.800000pt;}
.yc2{bottom:455.840000pt;}
.y1f{bottom:458.880000pt;}
.y52{bottom:461.920000pt;}
.ya4{bottom:467.200000pt;}
.yc1{bottom:474.240000pt;}
.y1e{bottom:477.280000pt;}
.y7b{bottom:480.000000pt;}
.y51{bottom:480.320000pt;}
.ya3{bottom:485.600000pt;}
.yc0{bottom:492.640000pt;}
.y1d{bottom:495.680000pt;}
.y50{bottom:498.720000pt;}
.ya2{bottom:504.000000pt;}
.ybf{bottom:510.720000pt;}
.y1c{bottom:514.080000pt;}
.y76{bottom:515.840000pt;}
.y4f{bottom:517.120000pt;}
.ya1{bottom:522.400000pt;}
.ybe{bottom:529.440000pt;}
.y1b{bottom:532.480000pt;}
.y4e{bottom:535.520000pt;}
.ya0{bottom:540.800000pt;}
.y75{bottom:541.760000pt;}
.ybd{bottom:548.005600pt;}
.y1a{bottom:550.880000pt;}
.y4d{bottom:553.920000pt;}
.y9f{bottom:559.200000pt;}
.yde{bottom:560.000000pt;}
.y74{bottom:564.480000pt;}
.y19{bottom:569.280000pt;}
.ybc{bottom:569.440000pt;}
.y4c{bottom:572.320000pt;}
.y9e{bottom:577.600000pt;}
.ydd{bottom:578.400000pt;}
.y18{bottom:587.680000pt;}
.ydb{bottom:590.400000pt;}
.y4b{bottom:590.720000pt;}
.y4a{bottom:609.120000pt;}
.y17{bottom:612.160000pt;}
.y9d{bottom:614.720000pt;}
.y16{bottom:624.480000pt;}
.y49{bottom:627.520000pt;}
.y9c{bottom:639.200000pt;}
.y48{bottom:645.920000pt;}
.y15{bottom:648.960000pt;}
.y9b{bottom:657.600000pt;}
.y14{bottom:661.280000pt;}
.y80{bottom:664.000000pt;}
.y47{bottom:664.320000pt;}
.y9a{bottom:669.920000pt;}
.y6e{bottom:670.400000pt;}
.y8d{bottom:682.400000pt;}
.ybb{bottom:682.719867pt;}
.y46{bottom:682.720000pt;}
.y13{bottom:685.759867pt;}
.y99{bottom:694.400000pt;}
.y12{bottom:698.080000pt;}
.yba{bottom:700.799867pt;}
.y45{bottom:701.120000pt;}
.y98{bottom:706.720000pt;}
.y79{bottom:707.200000pt;}
.y6d{bottom:707.204533pt;}
.yb9{bottom:719.519867pt;}
.y44{bottom:719.520000pt;}
.y11{bottom:722.560000pt;}
.y6c{bottom:725.600000pt;}
.y97{bottom:731.200000pt;}
.y10{bottom:734.880000pt;}
.y6b{bottom:737.919867pt;}
.y43{bottom:737.920000pt;}
.y96{bottom:743.520000pt;}
.y7f{bottom:756.000000pt;}
.y42{bottom:756.320000pt;}
.yf{bottom:759.360000pt;}
.y95{bottom:761.920000pt;}
.ye{bottom:771.680000pt;}
.y6a{bottom:774.400000pt;}
.y41{bottom:774.720000pt;}
.y94{bottom:780.320000pt;}
.y69{bottom:792.800000pt;}
.y40{bottom:793.120000pt;}
.yd{bottom:796.160000pt;}
.y93{bottom:798.720000pt;}
.yd8{bottom:799.200000pt;}
.yc{bottom:808.480000pt;}
.y3f{bottom:811.520000pt;}
.y3e{bottom:829.920000pt;}
.yb{bottom:832.960000pt;}
.y92{bottom:835.360000pt;}
.y84{bottom:836.000000pt;}
.ya{bottom:845.280000pt;}
.y3d{bottom:848.320000pt;}
.y91{bottom:854.080000pt;}
.ydc{bottom:854.400000pt;}
.y9{bottom:863.520000pt;}
.y3c{bottom:866.720000pt;}
.y83{bottom:872.800000pt;}
.y8{bottom:881.920000pt;}
.y3b{bottom:885.120000pt;}
.y90{bottom:891.200000pt;}
.y7{bottom:900.320000pt;}
.y3a{bottom:903.520000pt;}
.y82{bottom:909.600000pt;}
.y6{bottom:918.400000pt;}
.y39{bottom:921.920000pt;}
.y81{bottom:928.000000pt;}
.y8f{bottom:928.160000pt;}
.y5{bottom:937.120000pt;}
.y38{bottom:940.320000pt;}
.y8e{bottom:950.880000pt;}
.y4{bottom:955.520000pt;}
.y68{bottom:958.720000pt;}
.y37{bottom:964.800000pt;}
.y3{bottom:973.920000pt;}
.y89{bottom:976.800000pt;}
.y67{bottom:977.120000pt;}
.y36{bottom:983.200000pt;}
.y2{bottom:992.320000pt;}
.y87{bottom:995.200000pt;}
.y35{bottom:995.520000pt;}
.y73{bottom:1001.600000pt;}
.y1{bottom:1011.040000pt;}
.y34{bottom:1013.920000pt;}
.y72{bottom:1020.000000pt;}
.h5{height:36.096250pt;}
.h6{height:43.375000pt;}
.ha{height:44.468750pt;}
.h2{height:50.748750pt;}
.h3{height:53.875000pt;}
.h4{height:60.416250pt;}
.h7{height:60.416783pt;}
.h8{height:65.062500pt;}
.h9{height:80.812500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:94.400000pt;}
.x7{left:121.280000pt;}
.x5{left:123.680000pt;}
.x3{left:141.600000pt;}
.x6{left:203.200000pt;}
.x4{left:205.920000pt;}
.x1{left:209.600000pt;}
.x8{left:281.920000pt;}
.x9{left:396.617467pt;}
}




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