
    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_1edc3c5b7cdba22517c14515.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_28b9ffe549ebdcec7cd127ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_8e240aed2d886e0d62d46aae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_f8b579359360f93093ff831d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_46946a45fc59abc8b21d50e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.165039;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_1b52fc3946e928c08d7d8c6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.148926;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_f0471b83b8dc515c68b952ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_8268335bd557500393d03bf7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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;}
.ls7{letter-spacing:-2.184000px;}
.lsc{letter-spacing:-1.584000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.080400px;}
.ls9{letter-spacing:1.374000px;}
.ls3{letter-spacing:9.732000px;}
.ls1{letter-spacing:93.274800px;}
.ls2{letter-spacing:93.365400px;}
.ls6{letter-spacing:94.582800px;}
.ls4{letter-spacing:94.673400px;}
.ls5{letter-spacing:94.703400px;}
.ls8{letter-spacing:96.677400px;}
.lsa{letter-spacing:96.797400px;}
.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;}
}
.wse{word-spacing:-58.960800px;}
.ws9{word-spacing:-58.880400px;}
.ws5{word-spacing:-58.838700px;}
.ws4{word-spacing:-41.324700px;}
.ws11{word-spacing:-40.073700px;}
.wsd{word-spacing:-36.320700px;}
.ws12{word-spacing:-35.111400px;}
.ws13{word-spacing:-35.069700px;}
.ws3{word-spacing:-33.818700px;}
.ws8{word-spacing:-31.634700px;}
.ws7{word-spacing:-30.065700px;}
.wsf{word-spacing:-28.481700px;}
.wsb{word-spacing:-27.686700px;}
.wsa{word-spacing:-26.312700px;}
.wsc{word-spacing:-26.271000px;}
.ws6{word-spacing:-16.304700px;}
.ws10{word-spacing:-13.761000px;}
.ws2{word-spacing:-10.008000px;}
.ws1{word-spacing:-0.045000px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-5.476500px;}
._7{margin-left:-4.113000px;}
._3{margin-left:-2.873850px;}
._2{margin-left:-1.700850px;}
._0{width:1.466250px;}
._1{width:2.756550px;}
._5{width:4.064250px;}
._b{width:5.416200px;}
._e{width:6.681600px;}
._a{width:8.063400px;}
._c{width:9.199800px;}
._9{width:11.375850px;}
._d{width:17.371800px;}
._11{width:20.384100px;}
._10{width:32.520000px;}
._12{width:38.272050px;}
._6{width:42.693750px;}
._13{width:57.144900px;}
._4{width:67.971300px;}
._f{width:94.673400px;}
.fc8{color:rgb(12,95,220);}
.fc7{color:rgb(23,90,95);}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(25,27,38);}
.fc4{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(91,91,91);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,65);}
.fs11{font-size:36.000000px;}
.fs14{font-size:36.150000px;}
.fsa{font-size:45.000000px;}
.fs1a{font-size:49.500000px;}
.fse{font-size:49.650000px;}
.fs13{font-size:58.500000px;}
.fs0{font-size:58.650000px;}
.fsd{font-size:72.150000px;}
.fs3{font-size:85.650000px;}
.fs18{font-size:94.500000px;}
.fs17{font-size:94.650000px;}
.fs9{font-size:108.150000px;}
.fsf{font-size:121.650000px;}
.fs10{font-size:121.800000px;}
.fs1c{font-size:126.150000px;}
.fs1b{font-size:126.300000px;}
.fs19{font-size:130.650000px;}
.fs8{font-size:130.800000px;}
.fsc{font-size:144.150000px;}
.fsb{font-size:144.300000px;}
.fs6{font-size:148.650000px;}
.fs7{font-size:148.800000px;}
.fs16{font-size:166.650000px;}
.fs15{font-size:166.800000px;}
.fs12{font-size:180.150000px;}
.fs4{font-size:211.650000px;}
.fs5{font-size:211.800000px;}
.fs2{font-size:238.800000px;}
.fs1{font-size:238.950000px;}
.y3b{bottom:-10.387500px;}
.y0{bottom:0.000000px;}
.y28{bottom:5.700000px;}
.y1e{bottom:16.912500px;}
.yc4{bottom:27.300000px;}
.yc3{bottom:41.962500px;}
.yb0{bottom:50.625000px;}
.y1{bottom:50.700000px;}
.yc2{bottom:51.150000px;}
.y1d{bottom:54.187500px;}
.y7e{bottom:56.025000px;}
.y88{bottom:62.437500px;}
.ya8{bottom:65.250000px;}
.y44{bottom:67.125000px;}
.y1f{bottom:76.612500px;}
.yc1{bottom:82.687500px;}
.y97{bottom:83.700000px;}
.y89{bottom:86.850000px;}
.y7d{bottom:88.687500px;}
.y5e{bottom:89.550000px;}
.yac{bottom:92.025000px;}
.y87{bottom:98.475000px;}
.y7b{bottom:99.975000px;}
.y18{bottom:104.400000px;}
.y32{bottom:106.275000px;}
.y4f{bottom:112.087500px;}
.y50{bottom:113.212500px;}
.yc0{bottom:115.350000px;}
.y96{bottom:120.900000px;}
.yae{bottom:122.625000px;}
.y7c{bottom:124.762500px;}
.ya3{bottom:125.445000px;}
.yaf{bottom:126.075000px;}
.y86{bottom:134.512500px;}
.y5d{bottom:134.587500px;}
.y7a{bottom:136.012500px;}
.y17{bottom:137.062500px;}
.y31{bottom:140.437500px;}
.y27{bottom:146.775000px;}
.ybf{bottom:148.012500px;}
.y4e{bottom:148.162500px;}
.y67{bottom:154.545000px;}
.y95{bottom:158.055000px;}
.y45{bottom:158.925000px;}
.ycf{bottom:165.525000px;}
.y16{bottom:168.600000px;}
.y5c{bottom:170.655000px;}
.y43{bottom:172.305000px;}
.y30{bottom:176.475000px;}
.ya7{bottom:178.320000px;}
.yb3{bottom:178.905000px;}
.y4d{bottom:184.200000px;}
.y66{bottom:190.575000px;}
.y3a{bottom:195.225000px;}
.ybe{bottom:195.345000px;}
.y94{bottom:196.350000px;}
.yce{bottom:200.475000px;}
.ya5{bottom:206.475000px;}
.y85{bottom:206.625000px;}
.yb1{bottom:207.075000px;}
.ye{bottom:207.225000px;}
.y26{bottom:207.600000px;}
.y42{bottom:208.350000px;}
.y15{bottom:210.300000px;}
.y2f{bottom:212.505000px;}
.y75{bottom:213.645000px;}
.y4c{bottom:220.245000px;}
.y7{bottom:220.650000px;}
.y65{bottom:226.650000px;}
.y79{bottom:227.175000px;}
.y5b{bottom:228.105000px;}
.yb4{bottom:229.530000px;}
.y39{bottom:231.255000px;}
.ya4{bottom:232.875000px;}
.y93{bottom:233.550000px;}
.y6d{bottom:239.625000px;}
.y84{bottom:242.655000px;}
.y6{bottom:243.195000px;}
.yaa{bottom:244.950000px;}
.y5a{bottom:246.150000px;}
.y2e{bottom:248.580000px;}
.y74{bottom:249.720000px;}
.yd{bottom:252.255000px;}
.ycd{bottom:254.550000px;}
.y6f{bottom:255.300000px;}
.yb2{bottom:257.700000px;}
.y41{bottom:259.050000px;}
.y78{bottom:259.845000px;}
.y98{bottom:262.155000px;}
.yab{bottom:266.625000px;}
.y25{bottom:267.300000px;}
.y1a{bottom:270.375000px;}
.y92{bottom:270.705000px;}
.y4b{bottom:270.945000px;}
.y5{bottom:273.945000px;}
.ya9{bottom:284.355000px;}
.y73{bottom:285.750000px;}
.y64{bottom:286.350000px;}
.ybd{bottom:289.950000px;}
.y38{bottom:290.955000px;}
.y59{bottom:291.195000px;}
.y6e{bottom:291.375000px;}
.y40{bottom:295.095000px;}
.y77{bottom:295.875000px;}
.yc{bottom:297.345000px;}
.y14{bottom:298.530000px;}
.ya2{bottom:304.875000px;}
.y4a{bottom:306.975000px;}
.y91{bottom:307.875000px;}
.ycc{bottom:309.750000px;}
.y83{bottom:314.775000px;}
.yc8{bottom:318.600000px;}
.y72{bottom:321.795000px;}
.y63{bottom:322.380000px;}
.y19{bottom:323.325000px;}
.y24{bottom:327.000000px;}
.y37{bottom:327.030000px;}
.y58{bottom:327.255000px;}
.y13{bottom:331.200000px;}
.ybc{bottom:338.400000px;}
.yb{bottom:342.405000px;}
.y49{bottom:343.050000px;}
.y90{bottom:345.075000px;}
.y3f{bottom:345.780000px;}
.y76{bottom:346.575000px;}
.y82{bottom:350.820000px;}
.y2d{bottom:351.075000px;}
.y71{bottom:357.870000px;}
.y62{bottom:358.455000px;}
.yad{bottom:358.650000px;}
.y36{bottom:363.075000px;}
.ycb{bottom:364.950000px;}
.ybb{bottom:369.945000px;}
.y12{bottom:371.775000px;}
.yc7{bottom:381.675000px;}
.y3e{bottom:381.825000px;}
.y8f{bottom:382.245000px;}
.y57{bottom:383.595000px;}
.y2c{bottom:387.150000px;}
.ya{bottom:387.450000px;}
.y23{bottom:387.825000px;}
.y48{bottom:394.875000px;}
.y56{bottom:401.595000px;}
.y4{bottom:412.005000px;}
.yba{bottom:417.255000px;}
.y61{bottom:419.280000px;}
.y8e{bottom:419.445000px;}
.y55{bottom:419.625000px;}
.yca{bottom:420.150000px;}
.y35{bottom:422.775000px;}
.y81{bottom:422.925000px;}
.y2b{bottom:423.195000px;}
.y1c{bottom:429.150000px;}
.y47{bottom:430.920000px;}
.y6c{bottom:434.100000px;}
.y3d{bottom:434.775000px;}
.y9b{bottom:439.200000px;}
.ya6{bottom:439.350000px;}
.yc6{bottom:444.750000px;}
.y22{bottom:447.570000px;}
.yb9{bottom:449.925000px;}
.ya0{bottom:451.425000px;}
.y60{bottom:455.325000px;}
.y8d{bottom:456.600000px;}
.y80{bottom:458.970000px;}
.y54{bottom:465.825000px;}
.y46{bottom:466.950000px;}
.y9a{bottom:468.525000px;}
.y9{bottom:469.875000px;}
.y6b{bottom:470.130000px;}
.y1b{bottom:471.975000px;}
.y3{bottom:477.345000px;}
.y3c{bottom:479.850000px;}
.y34{bottom:483.600000px;}
.y9f{bottom:488.625000px;}
.y5f{bottom:491.370000px;}
.y11{bottom:493.080000px;}
.y8c{bottom:493.755000px;}
.y70{bottom:494.925000px;}
.y7f{bottom:495.045000px;}
.y99{bottom:496.695000px;}
.yb8{bottom:497.250000px;}
.y53{bottom:501.870000px;}
.y6a{bottom:506.220000px;}
.y21{bottom:507.255000px;}
.y2a{bottom:517.245000px;}
.yc9{bottom:517.275000px;}
.y33{bottom:519.675000px;}
.y9e{bottom:525.780000px;}
.y8{bottom:529.575000px;}
.yb7{bottom:529.905000px;}
.y52{bottom:537.900000px;}
.y10{bottom:538.170000px;}
.y69{bottom:542.250000px;}
.y2{bottom:542.700000px;}
.ya1{bottom:543.375000px;}
.y8b{bottom:553.500000px;}
.y9d{bottom:567.450000px;}
.yc5{bottom:570.945000px;}
.yb6{bottom:577.245000px;}
.y29{bottom:580.350000px;}
.y68{bottom:597.525000px;}
.y20{bottom:610.425000px;}
.y51{bottom:625.050000px;}
.yf{bottom:626.550000px;}
.y8a{bottom:627.405000px;}
.y9c{bottom:640.350000px;}
.yb5{bottom:641.220000px;}
.h15{height:26.314453px;}
.h18{height:26.424097px;}
.hd{height:34.167480px;}
.h28{height:36.520752px;}
.h12{height:37.722363px;}
.h17{height:42.760986px;}
.h1{height:42.870630px;}
.h5{height:62.606470px;}
.h4{height:64.404785px;}
.h10{height:67.323560px;}
.h20{height:69.075439px;}
.h1f{height:69.185083px;}
.hb{height:79.053003px;}
.h1e{height:81.323730px;}
.h11{height:86.737500px;}
.h13{height:88.920923px;}
.h14{height:89.030566px;}
.h2b{height:92.210229px;}
.h2a{height:92.319873px;}
.h21{height:95.499536px;}
.h1d{height:95.609180px;}
.ha{height:98.355469px;}
.h29{height:105.367456px;}
.h8{height:108.656763px;}
.h9{height:108.766406px;}
.h1b{height:121.813989px;}
.h1a{height:121.923633px;}
.h16{height:131.681909px;}
.hf{height:136.829883px;}
.he{height:136.972266px;}
.h6{height:154.707056px;}
.h7{height:154.816699px;}
.h3{height:174.552539px;}
.h2{height:174.662183px;}
.h25{height:203.625000px;}
.h22{height:277.875000px;}
.h26{height:279.000000px;}
.hc{height:280.500000px;}
.h23{height:403.875000px;}
.h27{height:405.000000px;}
.h1c{height:511.875000px;}
.h24{height:555.750000px;}
.h19{height:570.375000px;}
.h0{height:810.000000px;}
.w3{width:174.495000px;}
.w2{width:280.350000px;}
.w5{width:471.375000px;}
.w4{width:695.250000px;}
.w6{width:900.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1a{left:10.799979px;}
.x22{left:12.075000px;}
.x36{left:16.762479px;}
.x16{left:20.287479px;}
.xa{left:26.812479px;}
.x1e{left:28.125000px;}
.xe{left:30.149979px;}
.x2d{left:32.024979px;}
.xb{left:35.062479px;}
.x29{left:40.162479px;}
.x2e{left:45.562479px;}
.x1d{left:51.599979px;}
.x6{left:52.912500px;}
.x1b{left:61.612479px;}
.x1f{left:65.512500px;}
.x2{left:68.287479px;}
.x3{left:69.412479px;}
.x37{left:80.249979px;}
.xf{left:81.449979px;}
.x20{left:93.637479px;}
.x8{left:98.399979px;}
.x15{left:110.699979px;}
.x10{left:123.487479px;}
.x2a{left:134.699979px;}
.x7{left:378.749979px;}
.x30{left:505.125000px;}
.x32{left:574.574979px;}
.x12{left:639.899979px;}
.x13{left:651.899979px;}
.x17{left:673.649979px;}
.x18{left:685.649979px;}
.x14{left:693.944979px;}
.x5{left:696.779979px;}
.x33{left:700.949979px;}
.x34{left:714.449979px;}
.x21{left:722.250000px;}
.x19{left:727.694979px;}
.x38{left:748.349979px;}
.x35{left:754.979979px;}
.xd{left:780.224979px;}
.x39{left:804.944979px;}
.x4{left:830.744979px;}
.x27{left:885.944979px;}
.x25{left:891.944979px;}
.x2f{left:926.549979px;}
.x28{left:944.729979px;}
.xc{left:960.944979px;}
.x2c{left:985.319979px;}
.x1c{left:995.849979px;}
.x2b{left:1032.944979px;}
.x11{left:1088.294979px;}
.x31{left:1127.924979px;}
.x23{left:1130.624979px;}
.x24{left:1183.169979px;}
.x1{left:1199.699979px;}
.x26{left:1228.199979px;}
.x9{left:1248.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.941333pt;}
.lsc{letter-spacing:-1.408000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.071467pt;}
.ls9{letter-spacing:1.221333pt;}
.ls3{letter-spacing:8.650667pt;}
.ls1{letter-spacing:82.910933pt;}
.ls2{letter-spacing:82.991467pt;}
.ls6{letter-spacing:84.073600pt;}
.ls4{letter-spacing:84.154133pt;}
.ls5{letter-spacing:84.180800pt;}
.ls8{letter-spacing:85.935467pt;}
.lsa{letter-spacing:86.042133pt;}
.wse{word-spacing:-52.409600pt;}
.ws9{word-spacing:-52.338133pt;}
.ws5{word-spacing:-52.301067pt;}
.ws4{word-spacing:-36.733067pt;}
.ws11{word-spacing:-35.621067pt;}
.wsd{word-spacing:-32.285067pt;}
.ws12{word-spacing:-31.210133pt;}
.ws13{word-spacing:-31.173067pt;}
.ws3{word-spacing:-30.061067pt;}
.ws8{word-spacing:-28.119733pt;}
.ws7{word-spacing:-26.725067pt;}
.wsf{word-spacing:-25.317067pt;}
.wsb{word-spacing:-24.610400pt;}
.wsa{word-spacing:-23.389067pt;}
.wsc{word-spacing:-23.352000pt;}
.ws6{word-spacing:-14.493067pt;}
.ws10{word-spacing:-12.232000pt;}
.ws2{word-spacing:-8.896000pt;}
.ws1{word-spacing:-0.040000pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-4.868000pt;}
._7{margin-left:-3.656000pt;}
._3{margin-left:-2.554533pt;}
._2{margin-left:-1.511867pt;}
._0{width:1.303333pt;}
._1{width:2.450267pt;}
._5{width:3.612667pt;}
._b{width:4.814400pt;}
._e{width:5.939200pt;}
._a{width:7.167467pt;}
._c{width:8.177600pt;}
._9{width:10.111867pt;}
._d{width:15.441600pt;}
._11{width:18.119200pt;}
._10{width:28.906667pt;}
._12{width:34.019600pt;}
._6{width:37.950000pt;}
._13{width:50.795467pt;}
._4{width:60.418933pt;}
._f{width:84.154133pt;}
.fs11{font-size:32.000000pt;}
.fs14{font-size:32.133333pt;}
.fsa{font-size:40.000000pt;}
.fs1a{font-size:44.000000pt;}
.fse{font-size:44.133333pt;}
.fs13{font-size:52.000000pt;}
.fs0{font-size:52.133333pt;}
.fsd{font-size:64.133333pt;}
.fs3{font-size:76.133333pt;}
.fs18{font-size:84.000000pt;}
.fs17{font-size:84.133333pt;}
.fs9{font-size:96.133333pt;}
.fsf{font-size:108.133333pt;}
.fs10{font-size:108.266667pt;}
.fs1c{font-size:112.133333pt;}
.fs1b{font-size:112.266667pt;}
.fs19{font-size:116.133333pt;}
.fs8{font-size:116.266667pt;}
.fsc{font-size:128.133333pt;}
.fsb{font-size:128.266667pt;}
.fs6{font-size:132.133333pt;}
.fs7{font-size:132.266667pt;}
.fs16{font-size:148.133333pt;}
.fs15{font-size:148.266667pt;}
.fs12{font-size:160.133333pt;}
.fs4{font-size:188.133333pt;}
.fs5{font-size:188.266667pt;}
.fs2{font-size:212.266667pt;}
.fs1{font-size:212.400000pt;}
.y3b{bottom:-9.233333pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:5.066667pt;}
.y1e{bottom:15.033333pt;}
.yc4{bottom:24.266667pt;}
.yc3{bottom:37.300000pt;}
.yb0{bottom:45.000000pt;}
.y1{bottom:45.066667pt;}
.yc2{bottom:45.466667pt;}
.y1d{bottom:48.166667pt;}
.y7e{bottom:49.800000pt;}
.y88{bottom:55.500000pt;}
.ya8{bottom:58.000000pt;}
.y44{bottom:59.666667pt;}
.y1f{bottom:68.100000pt;}
.yc1{bottom:73.500000pt;}
.y97{bottom:74.400000pt;}
.y89{bottom:77.200000pt;}
.y7d{bottom:78.833333pt;}
.y5e{bottom:79.600000pt;}
.yac{bottom:81.800000pt;}
.y87{bottom:87.533333pt;}
.y7b{bottom:88.866667pt;}
.y18{bottom:92.800000pt;}
.y32{bottom:94.466667pt;}
.y4f{bottom:99.633333pt;}
.y50{bottom:100.633333pt;}
.yc0{bottom:102.533333pt;}
.y96{bottom:107.466667pt;}
.yae{bottom:109.000000pt;}
.y7c{bottom:110.900000pt;}
.ya3{bottom:111.506667pt;}
.yaf{bottom:112.066667pt;}
.y86{bottom:119.566667pt;}
.y5d{bottom:119.633333pt;}
.y7a{bottom:120.900000pt;}
.y17{bottom:121.833333pt;}
.y31{bottom:124.833333pt;}
.y27{bottom:130.466667pt;}
.ybf{bottom:131.566667pt;}
.y4e{bottom:131.700000pt;}
.y67{bottom:137.373333pt;}
.y95{bottom:140.493333pt;}
.y45{bottom:141.266667pt;}
.ycf{bottom:147.133333pt;}
.y16{bottom:149.866667pt;}
.y5c{bottom:151.693333pt;}
.y43{bottom:153.160000pt;}
.y30{bottom:156.866667pt;}
.ya7{bottom:158.506667pt;}
.yb3{bottom:159.026667pt;}
.y4d{bottom:163.733333pt;}
.y66{bottom:169.400000pt;}
.y3a{bottom:173.533333pt;}
.ybe{bottom:173.640000pt;}
.y94{bottom:174.533333pt;}
.yce{bottom:178.200000pt;}
.ya5{bottom:183.533333pt;}
.y85{bottom:183.666667pt;}
.yb1{bottom:184.066667pt;}
.ye{bottom:184.200000pt;}
.y26{bottom:184.533333pt;}
.y42{bottom:185.200000pt;}
.y15{bottom:186.933333pt;}
.y2f{bottom:188.893333pt;}
.y75{bottom:189.906667pt;}
.y4c{bottom:195.773333pt;}
.y7{bottom:196.133333pt;}
.y65{bottom:201.466667pt;}
.y79{bottom:201.933333pt;}
.y5b{bottom:202.760000pt;}
.yb4{bottom:204.026667pt;}
.y39{bottom:205.560000pt;}
.ya4{bottom:207.000000pt;}
.y93{bottom:207.600000pt;}
.y6d{bottom:213.000000pt;}
.y84{bottom:215.693333pt;}
.y6{bottom:216.173333pt;}
.yaa{bottom:217.733333pt;}
.y5a{bottom:218.800000pt;}
.y2e{bottom:220.960000pt;}
.y74{bottom:221.973333pt;}
.yd{bottom:224.226667pt;}
.ycd{bottom:226.266667pt;}
.y6f{bottom:226.933333pt;}
.yb2{bottom:229.066667pt;}
.y41{bottom:230.266667pt;}
.y78{bottom:230.973333pt;}
.y98{bottom:233.026667pt;}
.yab{bottom:237.000000pt;}
.y25{bottom:237.600000pt;}
.y1a{bottom:240.333333pt;}
.y92{bottom:240.626667pt;}
.y4b{bottom:240.840000pt;}
.y5{bottom:243.506667pt;}
.ya9{bottom:252.760000pt;}
.y73{bottom:254.000000pt;}
.y64{bottom:254.533333pt;}
.ybd{bottom:257.733333pt;}
.y38{bottom:258.626667pt;}
.y59{bottom:258.840000pt;}
.y6e{bottom:259.000000pt;}
.y40{bottom:262.306667pt;}
.y77{bottom:263.000000pt;}
.yc{bottom:264.306667pt;}
.y14{bottom:265.360000pt;}
.ya2{bottom:271.000000pt;}
.y4a{bottom:272.866667pt;}
.y91{bottom:273.666667pt;}
.ycc{bottom:275.333333pt;}
.y83{bottom:279.800000pt;}
.yc8{bottom:283.200000pt;}
.y72{bottom:286.040000pt;}
.y63{bottom:286.560000pt;}
.y19{bottom:287.400000pt;}
.y24{bottom:290.666667pt;}
.y37{bottom:290.693333pt;}
.y58{bottom:290.893333pt;}
.y13{bottom:294.400000pt;}
.ybc{bottom:300.800000pt;}
.yb{bottom:304.360000pt;}
.y49{bottom:304.933333pt;}
.y90{bottom:306.733333pt;}
.y3f{bottom:307.360000pt;}
.y76{bottom:308.066667pt;}
.y82{bottom:311.840000pt;}
.y2d{bottom:312.066667pt;}
.y71{bottom:318.106667pt;}
.y62{bottom:318.626667pt;}
.yad{bottom:318.800000pt;}
.y36{bottom:322.733333pt;}
.ycb{bottom:324.400000pt;}
.ybb{bottom:328.840000pt;}
.y12{bottom:330.466667pt;}
.yc7{bottom:339.266667pt;}
.y3e{bottom:339.400000pt;}
.y8f{bottom:339.773333pt;}
.y57{bottom:340.973333pt;}
.y2c{bottom:344.133333pt;}
.ya{bottom:344.400000pt;}
.y23{bottom:344.733333pt;}
.y48{bottom:351.000000pt;}
.y56{bottom:356.973333pt;}
.y4{bottom:366.226667pt;}
.yba{bottom:370.893333pt;}
.y61{bottom:372.693333pt;}
.y8e{bottom:372.840000pt;}
.y55{bottom:373.000000pt;}
.yca{bottom:373.466667pt;}
.y35{bottom:375.800000pt;}
.y81{bottom:375.933333pt;}
.y2b{bottom:376.173333pt;}
.y1c{bottom:381.466667pt;}
.y47{bottom:383.040000pt;}
.y6c{bottom:385.866667pt;}
.y3d{bottom:386.466667pt;}
.y9b{bottom:390.400000pt;}
.ya6{bottom:390.533333pt;}
.yc6{bottom:395.333333pt;}
.y22{bottom:397.840000pt;}
.yb9{bottom:399.933333pt;}
.ya0{bottom:401.266667pt;}
.y60{bottom:404.733333pt;}
.y8d{bottom:405.866667pt;}
.y80{bottom:407.973333pt;}
.y54{bottom:414.066667pt;}
.y46{bottom:415.066667pt;}
.y9a{bottom:416.466667pt;}
.y9{bottom:417.666667pt;}
.y6b{bottom:417.893333pt;}
.y1b{bottom:419.533333pt;}
.y3{bottom:424.306667pt;}
.y3c{bottom:426.533333pt;}
.y34{bottom:429.866667pt;}
.y9f{bottom:434.333333pt;}
.y5f{bottom:436.773333pt;}
.y11{bottom:438.293333pt;}
.y8c{bottom:438.893333pt;}
.y70{bottom:439.933333pt;}
.y7f{bottom:440.040000pt;}
.y99{bottom:441.506667pt;}
.yb8{bottom:442.000000pt;}
.y53{bottom:446.106667pt;}
.y6a{bottom:449.973333pt;}
.y21{bottom:450.893333pt;}
.y2a{bottom:459.773333pt;}
.yc9{bottom:459.800000pt;}
.y33{bottom:461.933333pt;}
.y9e{bottom:467.360000pt;}
.y8{bottom:470.733333pt;}
.yb7{bottom:471.026667pt;}
.y52{bottom:478.133333pt;}
.y10{bottom:478.373333pt;}
.y69{bottom:482.000000pt;}
.y2{bottom:482.400000pt;}
.ya1{bottom:483.000000pt;}
.y8b{bottom:492.000000pt;}
.y9d{bottom:504.400000pt;}
.yc5{bottom:507.506667pt;}
.yb6{bottom:513.106667pt;}
.y29{bottom:515.866667pt;}
.y68{bottom:531.133333pt;}
.y20{bottom:542.600000pt;}
.y51{bottom:555.600000pt;}
.yf{bottom:556.933333pt;}
.y8a{bottom:557.693333pt;}
.y9c{bottom:569.200000pt;}
.yb5{bottom:569.973333pt;}
.h15{height:23.390625pt;}
.h18{height:23.488086pt;}
.hd{height:30.371094pt;}
.h28{height:32.462891pt;}
.h12{height:33.530990pt;}
.h17{height:38.009766pt;}
.h1{height:38.107227pt;}
.h5{height:55.650195pt;}
.h4{height:57.248698pt;}
.h10{height:59.843164pt;}
.h20{height:61.400391pt;}
.h1f{height:61.497852pt;}
.hb{height:70.269336pt;}
.h1e{height:72.287760pt;}
.h11{height:77.100000pt;}
.h13{height:79.040820pt;}
.h14{height:79.138281pt;}
.h2b{height:81.964648pt;}
.h2a{height:82.062109pt;}
.h21{height:84.888477pt;}
.h1d{height:84.985937pt;}
.ha{height:87.427083pt;}
.h29{height:93.659961pt;}
.h8{height:96.583789pt;}
.h9{height:96.681250pt;}
.h1b{height:108.279102pt;}
.h1a{height:108.376562pt;}
.h16{height:117.050586pt;}
.hf{height:121.626562pt;}
.he{height:121.753125pt;}
.h6{height:137.517383pt;}
.h7{height:137.614844pt;}
.h3{height:155.157812pt;}
.h2{height:155.255273pt;}
.h25{height:181.000000pt;}
.h22{height:247.000000pt;}
.h26{height:248.000000pt;}
.hc{height:249.333333pt;}
.h23{height:359.000000pt;}
.h27{height:360.000000pt;}
.h1c{height:455.000000pt;}
.h24{height:494.000000pt;}
.h19{height:507.000000pt;}
.h0{height:720.000000pt;}
.w3{width:155.106667pt;}
.w2{width:249.200000pt;}
.w5{width:419.000000pt;}
.w4{width:618.000000pt;}
.w6{width:800.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:9.599981pt;}
.x22{left:10.733333pt;}
.x36{left:14.899981pt;}
.x16{left:18.033314pt;}
.xa{left:23.833314pt;}
.x1e{left:25.000000pt;}
.xe{left:26.799981pt;}
.x2d{left:28.466648pt;}
.xb{left:31.166648pt;}
.x29{left:35.699981pt;}
.x2e{left:40.499981pt;}
.x1d{left:45.866648pt;}
.x6{left:47.033333pt;}
.x1b{left:54.766648pt;}
.x1f{left:58.233333pt;}
.x2{left:60.699981pt;}
.x3{left:61.699981pt;}
.x37{left:71.333314pt;}
.xf{left:72.399981pt;}
.x20{left:83.233314pt;}
.x8{left:87.466648pt;}
.x15{left:98.399981pt;}
.x10{left:109.766648pt;}
.x2a{left:119.733314pt;}
.x7{left:336.666648pt;}
.x30{left:449.000000pt;}
.x32{left:510.733314pt;}
.x12{left:568.799981pt;}
.x13{left:579.466648pt;}
.x17{left:598.799981pt;}
.x18{left:609.466648pt;}
.x14{left:616.839981pt;}
.x5{left:619.359981pt;}
.x33{left:623.066648pt;}
.x34{left:635.066648pt;}
.x21{left:642.000000pt;}
.x19{left:646.839981pt;}
.x38{left:665.199981pt;}
.x35{left:671.093314pt;}
.xd{left:693.533314pt;}
.x39{left:715.506648pt;}
.x4{left:738.439981pt;}
.x27{left:787.506648pt;}
.x25{left:792.839981pt;}
.x2f{left:823.599981pt;}
.x28{left:839.759981pt;}
.xc{left:854.173314pt;}
.x2c{left:875.839981pt;}
.x1c{left:885.199981pt;}
.x2b{left:918.173314pt;}
.x11{left:967.373314pt;}
.x31{left:1002.599981pt;}
.x23{left:1004.999981pt;}
.x24{left:1051.706648pt;}
.x1{left:1066.399981pt;}
.x26{left:1091.733314pt;}
.x9{left:1109.866667pt;}
}




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