
    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_74dbf72d14f0045d4a9b9844.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_497904245cbac232ff604a9b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_8151a3433554dc820b4e15a4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_ac6ae6ed82ba7d800308036d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_6ddbc0de7a38f6f2f14444ec.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d046fd091d8dffca8d80fea5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_6000d05296931403065c04d9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_147b2c328ec9a7c5a93f7d27.woff')format("woff");}.ff8{font-family:ff8;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3001bde04ad41e0601a98858.woff')format("woff");}.ff9{font-family:ff9;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_33a05ef702c667bf56a53783.woff')format("woff");}.ffa{font-family:ffa;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6be0eda84c11f4cf403e9fc7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.976651;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5574bc041b6db11485d1f6a2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.976651;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:ffd;src:url('chunks/assets/font_419995f26c0392cf6c7bffa6.woff')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_eabbf4543d6289be84507514.woff')format("woff");}.ffe{font-family:ffe;line-height:0.966797;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:fff;src:url('chunks/assets/font_82290f3ef83872407d28493b.woff')format("woff");}.fff{font-family:fff;line-height:0.966797;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);}
.v5{vertical-align:-43.320000px;}
.v4{vertical-align:-29.100000px;}
.v3{vertical-align:-22.950000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.020000px;}
.v2{vertical-align:9.000000px;}
.lsd{letter-spacing:-1.812000px;}
.ls12{letter-spacing:-1.110000px;}
.ls1{letter-spacing:-0.900000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.096600px;}
.ls10{letter-spacing:0.156600px;}
.ls2{letter-spacing:0.315000px;}
.ls3{letter-spacing:0.465000px;}
.ls13{letter-spacing:0.882600px;}
.ls14{letter-spacing:2.382000px;}
.ls8{letter-spacing:14.968050px;}
.ls7{letter-spacing:18.924000px;}
.ls15{letter-spacing:30.048600px;}
.lsa{letter-spacing:30.086100px;}
.ls9{letter-spacing:30.136050px;}
.ls5{letter-spacing:70.571400px;}
.ls4{letter-spacing:70.897500px;}
.ls6{letter-spacing:70.950000px;}
.lse{letter-spacing:96.736800px;}
.lsf{letter-spacing:96.827400px;}
.lsb{letter-spacing:96.886800px;}
.lsc{letter-spacing:96.977400px;}
.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;}
}
.ws1e{word-spacing:-41.176050px;}
.ws20{word-spacing:-32.802000px;}
.ws13{word-spacing:-30.065700px;}
.wsf{word-spacing:-28.856400px;}
.wse{word-spacing:-28.814700px;}
.ws15{word-spacing:-25.061700px;}
.ws29{word-spacing:-25.013100px;}
.ws22{word-spacing:-24.971550px;}
.wsc{word-spacing:-24.441900px;}
.ws1a{word-spacing:-23.690700px;}
.ws1b{word-spacing:-21.267000px;}
.ws0{word-spacing:-20.016000px;}
.ws25{word-spacing:-19.985550px;}
.wsb{word-spacing:-19.356900px;}
.ws24{word-spacing:-18.739050px;}
.ws8{word-spacing:-16.305900px;}
.wsa{word-spacing:-15.053700px;}
.ws2b{word-spacing:-13.761000px;}
.ws1d{word-spacing:-4.939500px;}
.ws10{word-spacing:-3.440550px;}
.ws7{word-spacing:-1.707600px;}
.ws11{word-spacing:-1.131900px;}
.ws19{word-spacing:-1.017750px;}
.ws3{word-spacing:-1.017000px;}
.ws2{word-spacing:-0.807000px;}
.ws4{word-spacing:-0.567000px;}
.ws1{word-spacing:-0.134550px;}
.ws9{word-spacing:-0.085650px;}
.ws5{word-spacing:0.000000px;}
.wsd{word-spacing:0.064650px;}
.ws12{word-spacing:0.594900px;}
.ws16{word-spacing:0.950550px;}
.ws6{word-spacing:1.603200px;}
.ws14{word-spacing:2.065350px;}
.ws18{word-spacing:2.243400px;}
.ws1f{word-spacing:2.393400px;}
.ws17{word-spacing:2.467950px;}
.ws1c{word-spacing:2.683650px;}
.ws23{word-spacing:22.854300px;}
.ws21{word-spacing:95.332500px;}
.ws27{word-spacing:152.373000px;}
.ws2a{word-spacing:159.333450px;}
.ws26{word-spacing:161.981550px;}
.ws28{word-spacing:167.561250px;}
.ws2c{word-spacing:1777.334550px;}
._5{margin-left:-4.969200px;}
._2{margin-left:-3.888000px;}
._4{margin-left:-2.809500px;}
._0{margin-left:-1.800000px;}
._3{width:1.944000px;}
._1{width:3.672000px;}
._9{width:5.358150px;}
._7{width:6.742500px;}
._6{width:17.977500px;}
._a{width:25.435200px;}
._b{width:27.392100px;}
._8{width:30.602550px;}
._c{width:32.659350px;}
._d{width:35.262900px;}
.fc9{color:transparent;}
.fc7{color:rgb(112,173,71);}
.fc6{color:rgb(4,12,40);}
.fc5{color:rgb(52,165,249);}
.fca{color:rgb(255,255,255);}
.fc8{color:rgb(47,47,47);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,176,80);}
.fc0{color:rgb(72,207,131);}
.fs16{font-size:49.500000px;}
.fs17{font-size:49.650000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:54.150000px;}
.fs3{font-size:58.650000px;}
.fs15{font-size:67.650000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:72.150000px;}
.fs13{font-size:76.500000px;}
.fs12{font-size:76.650000px;}
.fs8{font-size:85.650000px;}
.fs10{font-size:90.150000px;}
.fs11{font-size:90.300000px;}
.fsd{font-size:103.650000px;}
.fse{font-size:103.800000px;}
.fs2{font-size:108.150000px;}
.fs7{font-size:108.300000px;}
.fs14{font-size:117.150000px;}
.fsf{font-size:139.800000px;}
.fsb{font-size:144.150000px;}
.fsc{font-size:144.300000px;}
.fs6{font-size:148.650000px;}
.fs4{font-size:148.800000px;}
.fs18{font-size:193.800000px;}
.fs19{font-size:193.950000px;}
.fs1{font-size:216.300000px;}
.y0{bottom:0.000000px;}
.y88{bottom:15.112500px;}
.y93{bottom:16.275000px;}
.y92{bottom:16.912500px;}
.y8b{bottom:29.887500px;}
.y1{bottom:30.900000px;}
.y9{bottom:40.275000px;}
.y2e{bottom:52.537500px;}
.y1d{bottom:71.962500px;}
.y8{bottom:72.487500px;}
.y2d{bottom:77.325000px;}
.y76{bottom:78.862500px;}
.y37{bottom:88.125000px;}
.y29{bottom:92.212500px;}
.y1c{bottom:94.500000px;}
.y45{bottom:94.650000px;}
.y75{bottom:100.275000px;}
.y2c{bottom:103.275000px;}
.y7{bottom:109.687500px;}
.y1b{bottom:115.912500px;}
.y50{bottom:118.312500px;}
.y74{bottom:122.812500px;}
.y44{bottom:123.937500px;}
.y28{bottom:124.912500px;}
.y36{bottom:125.325000px;}
.y2b{bottom:128.062500px;}
.y65{bottom:132.975000px;}
.y8f{bottom:134.025000px;}
.y63{bottom:135.225000px;}
.y1a{bottom:137.325000px;}
.y8c{bottom:139.950000px;}
.y91{bottom:141.750000px;}
.y87{bottom:143.475000px;}
.y73{bottom:145.387500px;}
.y6{bottom:146.887500px;}
.y4f{bottom:151.005000px;}
.y8e{bottom:152.055000px;}
.y43{bottom:153.270000px;}
.y2a{bottom:153.975000px;}
.y27{bottom:157.575000px;}
.y19{bottom:158.745000px;}
.y35{bottom:162.525000px;}
.y62{bottom:163.395000px;}
.y72{bottom:167.925000px;}
.y8d{bottom:170.100000px;}
.y64{bottom:170.175000px;}
.y18{bottom:180.150000px;}
.y85{bottom:181.875000px;}
.y42{bottom:182.550000px;}
.y4e{bottom:183.675000px;}
.y5{bottom:184.095000px;}
.y7e{bottom:186.000000px;}
.y26{bottom:189.150000px;}
.y71{bottom:189.345000px;}
.y61{bottom:191.595000px;}
.y17{bottom:202.695000px;}
.y57{bottom:207.375000px;}
.y41{bottom:211.875000px;}
.y4d{bottom:215.250000px;}
.y84{bottom:216.825000px;}
.y60{bottom:219.750000px;}
.y4{bottom:221.280000px;}
.y25{bottom:221.820000px;}
.y7d{bottom:223.200000px;}
.y16{bottom:224.100000px;}
.y70{bottom:234.420000px;}
.y34{bottom:236.925000px;}
.y40{bottom:241.170000px;}
.y56{bottom:244.545000px;}
.y15{bottom:245.520000px;}
.ya0{bottom:246.780000px;}
.y4c{bottom:247.950000px;}
.y98{bottom:251.220000px;}
.y6f{bottom:256.950000px;}
.y7c{bottom:260.400000px;}
.y14{bottom:266.925000px;}
.y3f{bottom:269.370000px;}
.y33{bottom:274.095000px;}
.y89{bottom:275.625000px;}
.y5f{bottom:277.245000px;}
.y6e{bottom:278.370000px;}
.y4b{bottom:279.495000px;}
.y8a{bottom:282.225000px;}
.y55{bottom:282.870000px;}
.y13{bottom:288.345000px;}
.y3e{bottom:298.650000px;}
.y7b{bottom:298.695000px;}
.y6d{bottom:300.900000px;}
.y5e{bottom:305.400000px;}
.y97{bottom:308.700000px;}
.y4a{bottom:312.195000px;}
.y32{bottom:312.405000px;}
.y54{bottom:320.070000px;}
.y83{bottom:321.645000px;}
.y6c{bottom:323.445000px;}
.y3d{bottom:327.975000px;}
.y12{bottom:332.325000px;}
.y5d{bottom:333.600000px;}
.y7a{bottom:335.895000px;}
.y3{bottom:341.775000px;}
.y49{bottom:343.725000px;}
.y6b{bottom:345.975000px;}
.y31{bottom:349.620000px;}
.y11{bottom:353.745000px;}
.y3c{bottom:357.255000px;}
.y82{bottom:357.720000px;}
.y5c{bottom:361.770000px;}
.y96{bottom:366.195000px;}
.y6a{bottom:367.425000px;}
.y9f{bottom:373.905000px;}
.y10{bottom:375.150000px;}
.y48{bottom:376.425000px;}
.y3b{bottom:386.550000px;}
.y5b{bottom:389.955000px;}
.y53{bottom:394.470000px;}
.yf{bottom:396.570000px;}
.y2{bottom:400.380000px;}
.y9e{bottom:405.495000px;}
.y47{bottom:408.000000px;}
.y79{bottom:410.280000px;}
.y69{bottom:412.500000px;}
.y3a{bottom:415.875000px;}
.y86{bottom:416.025000px;}
.ye{bottom:419.100000px;}
.y5a{bottom:419.250000px;}
.y20{bottom:420.375000px;}
.y95{bottom:423.675000px;}
.y30{bottom:427.380000px;}
.y52{bottom:431.655000px;}
.y68{bottom:435.030000px;}
.y9d{bottom:438.150000px;}
.yd{bottom:440.505000px;}
.y46{bottom:440.655000px;}
.y24{bottom:443.220000px;}
.y39{bottom:444.030000px;}
.y59{bottom:447.405000px;}
.y78{bottom:447.495000px;}
.y67{bottom:456.450000px;}
.yc{bottom:461.925000px;}
.y81{bottom:462.525000px;}
.y1f{bottom:468.870000px;}
.y23{bottom:469.155000px;}
.y9c{bottom:470.850000px;}
.y38{bottom:473.370000px;}
.y58{bottom:475.620000px;}
.y2f{bottom:476.970000px;}
.y66{bottom:478.995000px;}
.y94{bottom:482.250000px;}
.y77{bottom:484.695000px;}
.y22{bottom:493.950000px;}
.y80{bottom:497.475000px;}
.yb{bottom:502.995000px;}
.y9b{bottom:503.550000px;}
.y90{bottom:505.425000px;}
.y21{bottom:519.870000px;}
.y1e{bottom:544.725000px;}
.y9a{bottom:547.050000px;}
.ya{bottom:548.100000px;}
.y51{bottom:548.130000px;}
.y7f{bottom:554.775000px;}
.y99{bottom:573.000000px;}
.h21{height:43.987500px;}
.h22{height:44.375977px;}
.h23{height:44.510449px;}
.h4{height:52.578809px;}
.h1e{height:54.112500px;}
.h9{height:55.028467px;}
.h1d{height:59.737500px;}
.h1{height:64.546875px;}
.hc{height:65.073926px;}
.h1f{height:67.612500px;}
.h1a{height:68.581055px;}
.h19{height:68.715527px;}
.h1c{height:71.632500px;}
.h7{height:71.762476px;}
.h20{height:71.812500px;}
.h8{height:73.722656px;}
.h6{height:73.876245px;}
.h26{height:76.783887px;}
.h17{height:80.818066px;}
.h18{height:80.952539px;}
.hf{height:82.389484px;}
.h10{height:82.503755px;}
.he{height:85.189966px;}
.hd{height:87.699243px;}
.h1b{height:87.862500px;}
.h14{height:92.920605px;}
.h15{height:93.055078px;}
.h13{height:96.954785px;}
.hb{height:97.089258px;}
.h16{height:104.850000px;}
.h3{height:110.737573px;}
.ha{height:111.487500px;}
.h5{height:111.600000px;}
.h11{height:147.598901px;}
.h12{height:147.752490px;}
.h24{height:173.738672px;}
.h25{height:173.873145px;}
.h2{height:221.475146px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xb{left:14.774984px;}
.x38{left:20.962484px;}
.x24{left:24.337484px;}
.x1a{left:39.449984px;}
.x1e{left:40.837484px;}
.xf{left:47.662484px;}
.x11{left:50.512484px;}
.x16{left:61.162484px;}
.x14{left:63.149984px;}
.xc{left:64.312484px;}
.x36{left:69.037484px;}
.xa{left:70.274984px;}
.x35{left:77.137484px;}
.x1b{left:79.987484px;}
.x20{left:87.262484px;}
.x27{left:88.612484px;}
.xd{left:92.849984px;}
.x17{left:98.624984px;}
.x3{left:102.074984px;}
.x4{left:104.137484px;}
.xe{left:108.412484px;}
.x1d{left:109.799984px;}
.x5{left:115.049984px;}
.x25{left:118.912484px;}
.x1c{left:134.062484px;}
.x1f{left:135.449984px;}
.x2{left:138.112484px;}
.x22{left:155.774984px;}
.x6{left:187.199984px;}
.x13{left:224.399984px;}
.x19{left:234.899984px;}
.x15{left:271.769984px;}
.x26{left:281.069984px;}
.x8{left:292.619984px;}
.x7{left:324.224984px;}
.x18{left:336.524984px;}
.x2d{left:383.474984px;}
.x2c{left:418.754984px;}
.x28{left:421.349984px;}
.x2e{left:429.119984px;}
.x23{left:439.379984px;}
.x12{left:461.174984px;}
.x10{left:471.329984px;}
.x30{left:590.699984px;}
.x39{left:600.044984px;}
.x31{left:615.194984px;}
.x2f{left:618.374984px;}
.x3a{left:631.154984px;}
.x2b{left:688.469984px;}
.x32{left:751.724984px;}
.x29{left:797.819984px;}
.x1{left:900.029984px;}
.x2a{left:904.049984px;}
.x33{left:970.619984px;}
.x34{left:982.919984px;}
.x21{left:1001.849984px;}
.x9{left:1010.099984px;}
.x37{left:1028.879984px;}
@media print{
.v5{vertical-align:-38.506667pt;}
.v4{vertical-align:-25.866667pt;}
.v3{vertical-align:-20.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.573333pt;}
.v2{vertical-align:8.000000pt;}
.lsd{letter-spacing:-1.610667pt;}
.ls12{letter-spacing:-0.986667pt;}
.ls1{letter-spacing:-0.800000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.085867pt;}
.ls10{letter-spacing:0.139200pt;}
.ls2{letter-spacing:0.280000pt;}
.ls3{letter-spacing:0.413333pt;}
.ls13{letter-spacing:0.784533pt;}
.ls14{letter-spacing:2.117333pt;}
.ls8{letter-spacing:13.304933pt;}
.ls7{letter-spacing:16.821333pt;}
.ls15{letter-spacing:26.709867pt;}
.lsa{letter-spacing:26.743200pt;}
.ls9{letter-spacing:26.787600pt;}
.ls5{letter-spacing:62.730133pt;}
.ls4{letter-spacing:63.020000pt;}
.ls6{letter-spacing:63.066667pt;}
.lse{letter-spacing:85.988267pt;}
.lsf{letter-spacing:86.068800pt;}
.lsb{letter-spacing:86.121600pt;}
.lsc{letter-spacing:86.202133pt;}
.ws1e{word-spacing:-36.600933pt;}
.ws20{word-spacing:-29.157333pt;}
.ws13{word-spacing:-26.725067pt;}
.wsf{word-spacing:-25.650133pt;}
.wse{word-spacing:-25.613067pt;}
.ws15{word-spacing:-22.277067pt;}
.ws29{word-spacing:-22.233867pt;}
.ws22{word-spacing:-22.196933pt;}
.wsc{word-spacing:-21.726133pt;}
.ws1a{word-spacing:-21.058400pt;}
.ws1b{word-spacing:-18.904000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws25{word-spacing:-17.764933pt;}
.wsb{word-spacing:-17.206133pt;}
.ws24{word-spacing:-16.656933pt;}
.ws8{word-spacing:-14.494133pt;}
.wsa{word-spacing:-13.381067pt;}
.ws2b{word-spacing:-12.232000pt;}
.ws1d{word-spacing:-4.390667pt;}
.ws10{word-spacing:-3.058267pt;}
.ws7{word-spacing:-1.517867pt;}
.ws11{word-spacing:-1.006133pt;}
.ws19{word-spacing:-0.904667pt;}
.ws3{word-spacing:-0.904000pt;}
.ws2{word-spacing:-0.717333pt;}
.ws4{word-spacing:-0.504000pt;}
.ws1{word-spacing:-0.119600pt;}
.ws9{word-spacing:-0.076133pt;}
.ws5{word-spacing:0.000000pt;}
.wsd{word-spacing:0.057467pt;}
.ws12{word-spacing:0.528800pt;}
.ws16{word-spacing:0.844933pt;}
.ws6{word-spacing:1.425067pt;}
.ws14{word-spacing:1.835867pt;}
.ws18{word-spacing:1.994133pt;}
.ws1f{word-spacing:2.127467pt;}
.ws17{word-spacing:2.193733pt;}
.ws1c{word-spacing:2.385467pt;}
.ws23{word-spacing:20.314933pt;}
.ws21{word-spacing:84.740000pt;}
.ws27{word-spacing:135.442667pt;}
.ws2a{word-spacing:141.629733pt;}
.ws26{word-spacing:143.983600pt;}
.ws28{word-spacing:148.943333pt;}
.ws2c{word-spacing:1579.852933pt;}
._5{margin-left:-4.417067pt;}
._2{margin-left:-3.456000pt;}
._4{margin-left:-2.497333pt;}
._0{margin-left:-1.600000pt;}
._3{width:1.728000pt;}
._1{width:3.264000pt;}
._9{width:4.762800pt;}
._7{width:5.993333pt;}
._6{width:15.980000pt;}
._a{width:22.609067pt;}
._b{width:24.348533pt;}
._8{width:27.202267pt;}
._c{width:29.030533pt;}
._d{width:31.344800pt;}
.fs16{font-size:44.000000pt;}
.fs17{font-size:44.133333pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:48.133333pt;}
.fs3{font-size:52.133333pt;}
.fs15{font-size:60.133333pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:64.133333pt;}
.fs13{font-size:68.000000pt;}
.fs12{font-size:68.133333pt;}
.fs8{font-size:76.133333pt;}
.fs10{font-size:80.133333pt;}
.fs11{font-size:80.266667pt;}
.fsd{font-size:92.133333pt;}
.fse{font-size:92.266667pt;}
.fs2{font-size:96.133333pt;}
.fs7{font-size:96.266667pt;}
.fs14{font-size:104.133333pt;}
.fsf{font-size:124.266667pt;}
.fsb{font-size:128.133333pt;}
.fsc{font-size:128.266667pt;}
.fs6{font-size:132.133333pt;}
.fs4{font-size:132.266667pt;}
.fs18{font-size:172.266667pt;}
.fs19{font-size:172.400000pt;}
.fs1{font-size:192.266667pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:13.433333pt;}
.y93{bottom:14.466667pt;}
.y92{bottom:15.033333pt;}
.y8b{bottom:26.566667pt;}
.y1{bottom:27.466667pt;}
.y9{bottom:35.800000pt;}
.y2e{bottom:46.700000pt;}
.y1d{bottom:63.966667pt;}
.y8{bottom:64.433333pt;}
.y2d{bottom:68.733333pt;}
.y76{bottom:70.100000pt;}
.y37{bottom:78.333333pt;}
.y29{bottom:81.966667pt;}
.y1c{bottom:84.000000pt;}
.y45{bottom:84.133333pt;}
.y75{bottom:89.133333pt;}
.y2c{bottom:91.800000pt;}
.y7{bottom:97.500000pt;}
.y1b{bottom:103.033333pt;}
.y50{bottom:105.166667pt;}
.y74{bottom:109.166667pt;}
.y44{bottom:110.166667pt;}
.y28{bottom:111.033333pt;}
.y36{bottom:111.400000pt;}
.y2b{bottom:113.833333pt;}
.y65{bottom:118.200000pt;}
.y8f{bottom:119.133333pt;}
.y63{bottom:120.200000pt;}
.y1a{bottom:122.066667pt;}
.y8c{bottom:124.400000pt;}
.y91{bottom:126.000000pt;}
.y87{bottom:127.533333pt;}
.y73{bottom:129.233333pt;}
.y6{bottom:130.566667pt;}
.y4f{bottom:134.226667pt;}
.y8e{bottom:135.160000pt;}
.y43{bottom:136.240000pt;}
.y2a{bottom:136.866667pt;}
.y27{bottom:140.066667pt;}
.y19{bottom:141.106667pt;}
.y35{bottom:144.466667pt;}
.y62{bottom:145.240000pt;}
.y72{bottom:149.266667pt;}
.y8d{bottom:151.200000pt;}
.y64{bottom:151.266667pt;}
.y18{bottom:160.133333pt;}
.y85{bottom:161.666667pt;}
.y42{bottom:162.266667pt;}
.y4e{bottom:163.266667pt;}
.y5{bottom:163.640000pt;}
.y7e{bottom:165.333333pt;}
.y26{bottom:168.133333pt;}
.y71{bottom:168.306667pt;}
.y61{bottom:170.306667pt;}
.y17{bottom:180.173333pt;}
.y57{bottom:184.333333pt;}
.y41{bottom:188.333333pt;}
.y4d{bottom:191.333333pt;}
.y84{bottom:192.733333pt;}
.y60{bottom:195.333333pt;}
.y4{bottom:196.693333pt;}
.y25{bottom:197.173333pt;}
.y7d{bottom:198.400000pt;}
.y16{bottom:199.200000pt;}
.y70{bottom:208.373333pt;}
.y34{bottom:210.600000pt;}
.y40{bottom:214.373333pt;}
.y56{bottom:217.373333pt;}
.y15{bottom:218.240000pt;}
.ya0{bottom:219.360000pt;}
.y4c{bottom:220.400000pt;}
.y98{bottom:223.306667pt;}
.y6f{bottom:228.400000pt;}
.y7c{bottom:231.466667pt;}
.y14{bottom:237.266667pt;}
.y3f{bottom:239.440000pt;}
.y33{bottom:243.640000pt;}
.y89{bottom:245.000000pt;}
.y5f{bottom:246.440000pt;}
.y6e{bottom:247.440000pt;}
.y4b{bottom:248.440000pt;}
.y8a{bottom:250.866667pt;}
.y55{bottom:251.440000pt;}
.y13{bottom:256.306667pt;}
.y3e{bottom:265.466667pt;}
.y7b{bottom:265.506667pt;}
.y6d{bottom:267.466667pt;}
.y5e{bottom:271.466667pt;}
.y97{bottom:274.400000pt;}
.y4a{bottom:277.506667pt;}
.y32{bottom:277.693333pt;}
.y54{bottom:284.506667pt;}
.y83{bottom:285.906667pt;}
.y6c{bottom:287.506667pt;}
.y3d{bottom:291.533333pt;}
.y12{bottom:295.400000pt;}
.y5d{bottom:296.533333pt;}
.y7a{bottom:298.573333pt;}
.y3{bottom:303.800000pt;}
.y49{bottom:305.533333pt;}
.y6b{bottom:307.533333pt;}
.y31{bottom:310.773333pt;}
.y11{bottom:314.440000pt;}
.y3c{bottom:317.560000pt;}
.y82{bottom:317.973333pt;}
.y5c{bottom:321.573333pt;}
.y96{bottom:325.506667pt;}
.y6a{bottom:326.600000pt;}
.y9f{bottom:332.360000pt;}
.y10{bottom:333.466667pt;}
.y48{bottom:334.600000pt;}
.y3b{bottom:343.600000pt;}
.y5b{bottom:346.626667pt;}
.y53{bottom:350.640000pt;}
.yf{bottom:352.506667pt;}
.y2{bottom:355.893333pt;}
.y9e{bottom:360.440000pt;}
.y47{bottom:362.666667pt;}
.y79{bottom:364.693333pt;}
.y69{bottom:366.666667pt;}
.y3a{bottom:369.666667pt;}
.y86{bottom:369.800000pt;}
.ye{bottom:372.533333pt;}
.y5a{bottom:372.666667pt;}
.y20{bottom:373.666667pt;}
.y95{bottom:376.600000pt;}
.y30{bottom:379.893333pt;}
.y52{bottom:383.693333pt;}
.y68{bottom:386.693333pt;}
.y9d{bottom:389.466667pt;}
.yd{bottom:391.560000pt;}
.y46{bottom:391.693333pt;}
.y24{bottom:393.973333pt;}
.y39{bottom:394.693333pt;}
.y59{bottom:397.693333pt;}
.y78{bottom:397.773333pt;}
.y67{bottom:405.733333pt;}
.yc{bottom:410.600000pt;}
.y81{bottom:411.133333pt;}
.y1f{bottom:416.773333pt;}
.y23{bottom:417.026667pt;}
.y9c{bottom:418.533333pt;}
.y38{bottom:420.773333pt;}
.y58{bottom:422.773333pt;}
.y2f{bottom:423.973333pt;}
.y66{bottom:425.773333pt;}
.y94{bottom:428.666667pt;}
.y77{bottom:430.840000pt;}
.y22{bottom:439.066667pt;}
.y80{bottom:442.200000pt;}
.yb{bottom:447.106667pt;}
.y9b{bottom:447.600000pt;}
.y90{bottom:449.266667pt;}
.y21{bottom:462.106667pt;}
.y1e{bottom:484.200000pt;}
.y9a{bottom:486.266667pt;}
.ya{bottom:487.200000pt;}
.y51{bottom:487.226667pt;}
.y7f{bottom:493.133333pt;}
.y99{bottom:509.333333pt;}
.h21{height:39.100000pt;}
.h22{height:39.445312pt;}
.h23{height:39.564844pt;}
.h4{height:46.736719pt;}
.h1e{height:48.100000pt;}
.h9{height:48.914193pt;}
.h1d{height:53.100000pt;}
.h1{height:57.375000pt;}
.hc{height:57.843490pt;}
.h1f{height:60.100000pt;}
.h1a{height:60.960938pt;}
.h19{height:61.080469pt;}
.h1c{height:63.673333pt;}
.h7{height:63.788867pt;}
.h20{height:63.833333pt;}
.h8{height:65.531250pt;}
.h6{height:65.667773pt;}
.h26{height:68.252344pt;}
.h17{height:71.838281pt;}
.h18{height:71.957813pt;}
.hf{height:73.235097pt;}
.h10{height:73.336671pt;}
.he{height:75.724414pt;}
.hd{height:77.954883pt;}
.h1b{height:78.100000pt;}
.h14{height:82.596094pt;}
.h15{height:82.715625pt;}
.h13{height:86.182031pt;}
.hb{height:86.301563pt;}
.h16{height:93.200000pt;}
.h3{height:98.433398pt;}
.ha{height:99.100000pt;}
.h5{height:99.200000pt;}
.h11{height:131.199023pt;}
.h12{height:131.335547pt;}
.h24{height:154.434375pt;}
.h25{height:154.553906pt;}
.h2{height:196.866797pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xb{left:13.133319pt;}
.x38{left:18.633319pt;}
.x24{left:21.633319pt;}
.x1a{left:35.066652pt;}
.x1e{left:36.299986pt;}
.xf{left:42.366652pt;}
.x11{left:44.899986pt;}
.x16{left:54.366652pt;}
.x14{left:56.133319pt;}
.xc{left:57.166652pt;}
.x36{left:61.366652pt;}
.xa{left:62.466652pt;}
.x35{left:68.566652pt;}
.x1b{left:71.099986pt;}
.x20{left:77.566652pt;}
.x27{left:78.766652pt;}
.xd{left:82.533319pt;}
.x17{left:87.666652pt;}
.x3{left:90.733319pt;}
.x4{left:92.566652pt;}
.xe{left:96.366652pt;}
.x1d{left:97.599986pt;}
.x5{left:102.266652pt;}
.x25{left:105.699986pt;}
.x1c{left:119.166652pt;}
.x1f{left:120.399986pt;}
.x2{left:122.766652pt;}
.x22{left:138.466652pt;}
.x6{left:166.399986pt;}
.x13{left:199.466652pt;}
.x19{left:208.799986pt;}
.x15{left:241.573319pt;}
.x26{left:249.839986pt;}
.x8{left:260.106652pt;}
.x7{left:288.199986pt;}
.x18{left:299.133319pt;}
.x2d{left:340.866652pt;}
.x2c{left:372.226652pt;}
.x28{left:374.533319pt;}
.x2e{left:381.439986pt;}
.x23{left:390.559986pt;}
.x12{left:409.933319pt;}
.x10{left:418.959986pt;}
.x30{left:525.066652pt;}
.x39{left:533.373319pt;}
.x31{left:546.839986pt;}
.x2f{left:549.666652pt;}
.x3a{left:561.026652pt;}
.x2b{left:611.973319pt;}
.x32{left:668.199986pt;}
.x29{left:709.173319pt;}
.x1{left:800.026652pt;}
.x2a{left:803.599986pt;}
.x33{left:862.773319pt;}
.x34{left:873.706652pt;}
.x21{left:890.533319pt;}
.x9{left:897.866652pt;}
.x37{left:914.559986pt;}
}




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