
    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_da00046c1249d393b482310d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_02ca9b511b7ebb9e7f71cb7c.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_dcc6f0dbd836d36e9ffd5964.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5fea57501c75eca0be73cb50.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_59b55a24582e88063a64c35c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_878aa0679aa2119876e152ea.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_dce62e3f0a923710b1c09647.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_98104f66aa20cb68156a0397.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e3bdbf8d40abccd324be334c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,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);}
.m2{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);}
.v1{vertical-align:-108.000000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.464400px;}
.ls8{letter-spacing:-0.427200px;}
.ls1a{letter-spacing:-0.420000px;}
.lsa{letter-spacing:-0.408000px;}
.ls16{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.228000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.026400px;}
.lsc{letter-spacing:0.042000px;}
.lsb{letter-spacing:0.060000px;}
.ls18{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.206400px;}
.ls11{letter-spacing:0.222000px;}
.lsf{letter-spacing:0.252000px;}
.ls0{letter-spacing:0.312000px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.391200px;}
.ls14{letter-spacing:0.409200px;}
.ls20{letter-spacing:0.438000px;}
.ls1f{letter-spacing:0.446400px;}
.ls13{letter-spacing:0.556800px;}
.ls1b{letter-spacing:0.780000px;}
.ls19{letter-spacing:0.900000px;}
.ls3{letter-spacing:7.200000px;}
.ls5{letter-spacing:14.366400px;}
.ls4{letter-spacing:14.426400px;}
.ls1d{letter-spacing:60.319200px;}
.ls1c{letter-spacing:61.519200px;}
.lsd{letter-spacing:62.520000px;}
.ls10{letter-spacing:63.720000px;}
.ls1e{letter-spacing:104.040000px;}
.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;}
}
.wsc{word-spacing:-63.600000px;}
.ws5{word-spacing:-60.000000px;}
.wsd{word-spacing:-21.696000px;}
.ws6{word-spacing:-14.930400px;}
.ws7{word-spacing:-14.782800px;}
.ws2{word-spacing:-14.373600px;}
.wsb{word-spacing:-14.340000px;}
.ws3{word-spacing:-14.145600px;}
.ws1{word-spacing:-13.909200px;}
.ws4{word-spacing:-13.620000px;}
.ws9{word-spacing:-13.560000px;}
.wsa{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.642000px;}
.ws8{word-spacing:-12.426000px;}
.wse{word-spacing:-12.204000px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-9.312000px;}
._0{margin-left:-8.310000px;}
._d{margin-left:-4.452000px;}
._11{margin-left:-3.165600px;}
._5{margin-left:-2.040000px;}
._3{margin-left:-1.008000px;}
._1{width:1.560000px;}
._6{width:2.998924px;}
._4{width:4.114759px;}
._7{width:5.210276px;}
._c{width:6.840000px;}
._a{width:8.082000px;}
._b{width:9.153600px;}
._14{width:10.666800px;}
._9{width:12.098400px;}
._8{width:13.111200px;}
._15{width:15.645600px;}
._12{width:17.808000px;}
._f{width:19.311600px;}
._e{width:20.611200px;}
._10{width:22.184400px;}
._13{width:851.670000px;}
.fc9{color:rgb(77,89,97);}
.fc8{color:rgb(0,0,255);}
.fc5{color:rgb(0,140,210);}
.fc4{color:rgb(231,121,43);}
.fc3{color:transparent;}
.fc2{color:rgb(55,70,75);}
.fc1{color:rgb(192,0,0);}
.fc7{color:rgb(127,127,127);}
.fc6{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fsa{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:63.600000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs3{font-size:96.000000px;}
.fs5{font-size:120.000000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.yab{bottom:0.600000px;}
.yd{bottom:15.300000px;}
.yc{bottom:31.837500px;}
.y2{bottom:42.037500px;}
.y34{bottom:88.237500px;}
.y57{bottom:88.537500px;}
.y56{bottom:93.037500px;}
.y33{bottom:104.737500px;}
.y32{bottom:108.637500px;}
.y55{bottom:111.937500px;}
.y54{bottom:116.437500px;}
.y8a{bottom:125.737500px;}
.y31{bottom:127.837500px;}
.y88{bottom:132.037500px;}
.y53{bottom:135.337500px;}
.y52{bottom:139.837500px;}
.y89{bottom:142.237500px;}
.y51{bottom:158.430000px;}
.yb7{bottom:160.230000px;}
.yaa{bottom:165.330000px;}
.y50{bottom:175.230000px;}
.yb6{bottom:178.230000px;}
.y4f{bottom:179.745000px;}
.ya9{bottom:186.330000px;}
.yb5{bottom:196.275000px;}
.y4e{bottom:198.975000px;}
.yb4{bottom:214.275000px;}
.y87{bottom:217.575000px;}
.ya8{bottom:219.375000px;}
.yb3{bottom:232.275000px;}
.y86{bottom:236.775000px;}
.yb2{bottom:250.275000px;}
.y4d{bottom:254.175000px;}
.y85{bottom:255.975000px;}
.y67{bottom:256.275000px;}
.ya7{bottom:260.475000px;}
.y30{bottom:261.975000px;}
.yb1{bottom:268.275000px;}
.y4c{bottom:273.375000px;}
.yb0{bottom:286.275000px;}
.y4b{bottom:292.575000px;}
.y66{bottom:295.575000px;}
.y84{bottom:297.075000px;}
.ya6{bottom:299.475000px;}
.y2f{bottom:304.275000px;}
.y4a{bottom:312.075000px;}
.y2e{bottom:323.475000px;}
.yaf{bottom:324.075000px;}
.ya5{bottom:332.475000px;}
.y65{bottom:334.875000px;}
.y83{bottom:337.275000px;}
.y2d{bottom:342.675000px;}
.y48{bottom:352.275000px;}
.y64{bottom:353.175000px;}
.y82{bottom:356.475000px;}
.y49{bottom:359.205000px;}
.ya4{bottom:365.505000px;}
.y63{bottom:371.505000px;}
.y81{bottom:375.705000px;}
.y47{bottom:382.005000px;}
.y2c{bottom:382.905000px;}
.y62{bottom:389.820000px;}
.ya3{bottom:398.505000px;}
.y2b{bottom:402.120000px;}
.y61{bottom:408.105000px;}
.y80{bottom:416.805000px;}
.y9{bottom:420.105000px;}
.y2a{bottom:421.320000px;}
.y46{bottom:422.205000px;}
.ya2{bottom:431.505000px;}
.yae{bottom:440.205000px;}
.y29{bottom:440.505000px;}
.y45{bottom:441.405000px;}
.y60{bottom:443.505000px;}
.y7f{bottom:457.005000px;}
.y28{bottom:460.005000px;}
.y43{bottom:460.905000px;}
.y8{bottom:461.205000px;}
.ya1{bottom:464.505000px;}
.y44{bottom:467.820000px;}
.y7e{bottom:476.205000px;}
.y27{bottom:479.205000px;}
.y42{bottom:481.605000px;}
.y7d{bottom:495.405000px;}
.ya0{bottom:497.505000px;}
.y7{bottom:502.605000px;}
.y41{bottom:509.805000px;}
.y7c{bottom:514.605000px;}
.y26{bottom:519.405000px;}
.y9f{bottom:530.550000px;}
.y25{bottom:538.650000px;}
.y6{bottom:546.750000px;}
.y40{bottom:550.050000px;}
.y7b{bottom:555.750000px;}
.y24{bottom:557.850000px;}
.y9e{bottom:563.550000px;}
.y3e{bottom:569.250000px;}
.y3f{bottom:576.150000px;}
.y7a{bottom:595.050000px;}
.y9d{bottom:596.550000px;}
.y23{bottom:600.150000px;}
.y3d{bottom:610.950000px;}
.y9c{bottom:629.550000px;}
.y3c{bottom:630.150000px;}
.y79{bottom:647.850000px;}
.y22{bottom:653.250000px;}
.y5{bottom:654.750000px;}
.y9b{bottom:662.550000px;}
.y3b{bottom:672.450000px;}
.y78{bottom:695.280000px;}
.y9a{bottom:695.580000px;}
.y21{bottom:699.480000px;}
.y4{bottom:699.780000px;}
.y77{bottom:714.480000px;}
.y3a{bottom:725.580000px;}
.y99{bottom:728.580000px;}
.y76{bottom:733.695000px;}
.y20{bottom:739.680000px;}
.y75{bottom:752.880000px;}
.y1f{bottom:758.880000px;}
.y98{bottom:761.580000px;}
.y39{bottom:762.480000px;}
.y1e{bottom:778.080000px;}
.y38{bottom:783.480000px;}
.y74{bottom:793.980000px;}
.y1d{bottom:797.280000px;}
.y37{bottom:804.480000px;}
.y3{bottom:809.280000px;}
.y1c{bottom:816.480000px;}
.y97{bottom:823.695000px;}
.y36{bottom:825.480000px;}
.y73{bottom:834.195000px;}
.y96{bottom:841.980000px;}
.y72{bottom:853.380000px;}
.y1b{bottom:856.725000px;}
.y95{bottom:860.325000px;}
.y35{bottom:860.625000px;}
.y71{bottom:872.625000px;}
.y1a{bottom:875.925000px;}
.y94{bottom:878.625000px;}
.y19{bottom:895.125000px;}
.y93{bottom:896.925000px;}
.y70{bottom:913.725000px;}
.y18{bottom:914.325000px;}
.y92{bottom:915.225000px;}
.y17{bottom:933.525000px;}
.y91{bottom:951.825000px;}
.y16{bottom:953.025000px;}
.y6f{bottom:953.925000px;}
.y14{bottom:972.225000px;}
.y6e{bottom:973.425000px;}
.y15{bottom:978.225000px;}
.y13{bottom:991.425000px;}
.y6d{bottom:992.625000px;}
.y5f{bottom:995.625000px;}
.y90{bottom:999.525000px;}
.y6c{bottom:1011.825000px;}
.y5e{bottom:1015.125000px;}
.y8f{bottom:1017.825000px;}
.y6b{bottom:1031.070000px;}
.y12{bottom:1031.655000px;}
.y5d{bottom:1034.355000px;}
.y8e{bottom:1036.155000px;}
.y11{bottom:1050.855000px;}
.y5c{bottom:1053.570000px;}
.y8d{bottom:1054.455000px;}
.yb9{bottom:1064.655000px;}
.y10{bottom:1070.070000px;}
.y6a{bottom:1072.155000px;}
.y5b{bottom:1072.755000px;}
.yf{bottom:1089.255000px;}
.y8c{bottom:1091.070000px;}
.y5a{bottom:1092.255000px;}
.yb8{bottom:1099.755000px;}
.y59{bottom:1111.455000px;}
.y8b{bottom:1111.755000px;}
.y69{bottom:1114.455000px;}
.ye{bottom:1131.570000px;}
.y1{bottom:1137.855000px;}
.y68{bottom:1143.570000px;}
.y58{bottom:1151.655000px;}
.yad{bottom:1158.255000px;}
.yb{bottom:1172.955000px;}
.yac{bottom:1179.255000px;}
.ya{bottom:1190.700000px;}
.hc{height:36.861328px;}
.h11{height:41.774414px;}
.h12{height:43.004883px;}
.h3{height:53.709961px;}
.h13{height:59.677734px;}
.h10{height:61.435547px;}
.ha{height:63.258398px;}
.hb{height:65.121680px;}
.h14{height:65.370778px;}
.hf{height:71.613281px;}
.h7{height:73.722656px;}
.he{height:74.004654px;}
.hd{height:74.953125px;}
.h16{height:77.581055px;}
.h15{height:78.000000px;}
.h6{height:98.296875px;}
.h9{height:119.355469px;}
.h8{height:122.871094px;}
.h5{height:147.445312px;}
.h4{height:159.732422px;}
.h1{height:1262.250000px;}
.h2{height:1262.399908px;}
.h0{height:1262.400000px;}
.w4{width:334.620000px;}
.w1{width:893.250000px;}
.w3{width:893.399973px;}
.w2{width:893.399987px;}
.w0{width:893.400000px;}
.x0{left:0.000000px;}
.x1c{left:10.800000px;}
.x3{left:89.437487px;}
.xc{left:93.937487px;}
.xd{left:110.737487px;}
.x13{left:116.137487px;}
.x7{left:118.837487px;}
.x1a{left:121.537487px;}
.x14{left:142.837487px;}
.x4{left:154.529987px;}
.x1e{left:240.674987px;}
.xb{left:305.519987px;}
.xf{left:311.819973px;}
.x1b{left:313.020000px;}
.x10{left:317.219987px;}
.x11{left:436.949973px;}
.x12{left:442.349987px;}
.x6{left:443.549987px;}
.x5{left:453.449987px;}
.x17{left:457.049973px;}
.x18{left:462.449987px;}
.x8{left:598.079973px;}
.x9{left:602.594987px;}
.x15{left:622.094973px;}
.x16{left:627.524987px;}
.xe{left:680.924987px;}
.x19{left:756.254987px;}
.xa{left:804.569987px;}
.x1d{left:840.869987px;}
.x1{left:844.454987px;}
.x2{left:845.669987px;}
@media print{
.v1{vertical-align:-96.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.412800pt;}
.ls8{letter-spacing:-0.379733pt;}
.ls1a{letter-spacing:-0.373333pt;}
.lsa{letter-spacing:-0.362667pt;}
.ls16{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.202667pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.023467pt;}
.lsc{letter-spacing:0.037333pt;}
.lsb{letter-spacing:0.053333pt;}
.ls18{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.183467pt;}
.ls11{letter-spacing:0.197333pt;}
.lsf{letter-spacing:0.224000pt;}
.ls0{letter-spacing:0.277333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.347733pt;}
.ls14{letter-spacing:0.363733pt;}
.ls20{letter-spacing:0.389333pt;}
.ls1f{letter-spacing:0.396800pt;}
.ls13{letter-spacing:0.494933pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls19{letter-spacing:0.800000pt;}
.ls3{letter-spacing:6.400000pt;}
.ls5{letter-spacing:12.770133pt;}
.ls4{letter-spacing:12.823467pt;}
.ls1d{letter-spacing:53.617067pt;}
.ls1c{letter-spacing:54.683733pt;}
.lsd{letter-spacing:55.573333pt;}
.ls10{letter-spacing:56.640000pt;}
.ls1e{letter-spacing:92.480000pt;}
.wsc{word-spacing:-56.533333pt;}
.ws5{word-spacing:-53.333333pt;}
.wsd{word-spacing:-19.285333pt;}
.ws6{word-spacing:-13.271467pt;}
.ws7{word-spacing:-13.140267pt;}
.ws2{word-spacing:-12.776533pt;}
.wsb{word-spacing:-12.746667pt;}
.ws3{word-spacing:-12.573867pt;}
.ws1{word-spacing:-12.363733pt;}
.ws4{word-spacing:-12.106667pt;}
.ws9{word-spacing:-12.053333pt;}
.wsa{word-spacing:-11.680000pt;}
.wsf{word-spacing:-11.237333pt;}
.ws8{word-spacing:-11.045333pt;}
.wse{word-spacing:-10.848000pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-8.277333pt;}
._0{margin-left:-7.386667pt;}
._d{margin-left:-3.957333pt;}
._11{margin-left:-2.813867pt;}
._5{margin-left:-1.813333pt;}
._3{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._6{width:2.665710pt;}
._4{width:3.657563pt;}
._7{width:4.631356pt;}
._c{width:6.080000pt;}
._a{width:7.184000pt;}
._b{width:8.136533pt;}
._14{width:9.481600pt;}
._9{width:10.754133pt;}
._8{width:11.654400pt;}
._15{width:13.907200pt;}
._12{width:15.829333pt;}
._f{width:17.165867pt;}
._e{width:18.321067pt;}
._10{width:19.719467pt;}
._13{width:757.040000pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:56.533333pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs3{font-size:85.333333pt;}
.fs5{font-size:106.666667pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:0.533333pt;}
.yd{bottom:13.600000pt;}
.yc{bottom:28.300000pt;}
.y2{bottom:37.366667pt;}
.y34{bottom:78.433333pt;}
.y57{bottom:78.700000pt;}
.y56{bottom:82.700000pt;}
.y33{bottom:93.100000pt;}
.y32{bottom:96.566667pt;}
.y55{bottom:99.500000pt;}
.y54{bottom:103.500000pt;}
.y8a{bottom:111.766667pt;}
.y31{bottom:113.633333pt;}
.y88{bottom:117.366667pt;}
.y53{bottom:120.300000pt;}
.y52{bottom:124.300000pt;}
.y89{bottom:126.433333pt;}
.y51{bottom:140.826667pt;}
.yb7{bottom:142.426667pt;}
.yaa{bottom:146.960000pt;}
.y50{bottom:155.760000pt;}
.yb6{bottom:158.426667pt;}
.y4f{bottom:159.773333pt;}
.ya9{bottom:165.626667pt;}
.yb5{bottom:174.466667pt;}
.y4e{bottom:176.866667pt;}
.yb4{bottom:190.466667pt;}
.y87{bottom:193.400000pt;}
.ya8{bottom:195.000000pt;}
.yb3{bottom:206.466667pt;}
.y86{bottom:210.466667pt;}
.yb2{bottom:222.466667pt;}
.y4d{bottom:225.933333pt;}
.y85{bottom:227.533333pt;}
.y67{bottom:227.800000pt;}
.ya7{bottom:231.533333pt;}
.y30{bottom:232.866667pt;}
.yb1{bottom:238.466667pt;}
.y4c{bottom:243.000000pt;}
.yb0{bottom:254.466667pt;}
.y4b{bottom:260.066667pt;}
.y66{bottom:262.733333pt;}
.y84{bottom:264.066667pt;}
.ya6{bottom:266.200000pt;}
.y2f{bottom:270.466667pt;}
.y4a{bottom:277.400000pt;}
.y2e{bottom:287.533333pt;}
.yaf{bottom:288.066667pt;}
.ya5{bottom:295.533333pt;}
.y65{bottom:297.666667pt;}
.y83{bottom:299.800000pt;}
.y2d{bottom:304.600000pt;}
.y48{bottom:313.133333pt;}
.y64{bottom:313.933333pt;}
.y82{bottom:316.866667pt;}
.y49{bottom:319.293333pt;}
.ya4{bottom:324.893333pt;}
.y63{bottom:330.226667pt;}
.y81{bottom:333.960000pt;}
.y47{bottom:339.560000pt;}
.y2c{bottom:340.360000pt;}
.y62{bottom:346.506667pt;}
.ya3{bottom:354.226667pt;}
.y2b{bottom:357.440000pt;}
.y61{bottom:362.760000pt;}
.y80{bottom:370.493333pt;}
.y9{bottom:373.426667pt;}
.y2a{bottom:374.506667pt;}
.y46{bottom:375.293333pt;}
.ya2{bottom:383.560000pt;}
.yae{bottom:391.293333pt;}
.y29{bottom:391.560000pt;}
.y45{bottom:392.360000pt;}
.y60{bottom:394.226667pt;}
.y7f{bottom:406.226667pt;}
.y28{bottom:408.893333pt;}
.y43{bottom:409.693333pt;}
.y8{bottom:409.960000pt;}
.ya1{bottom:412.893333pt;}
.y44{bottom:415.840000pt;}
.y7e{bottom:423.293333pt;}
.y27{bottom:425.960000pt;}
.y42{bottom:428.093333pt;}
.y7d{bottom:440.360000pt;}
.ya0{bottom:442.226667pt;}
.y7{bottom:446.760000pt;}
.y41{bottom:453.160000pt;}
.y7c{bottom:457.426667pt;}
.y26{bottom:461.693333pt;}
.y9f{bottom:471.600000pt;}
.y25{bottom:478.800000pt;}
.y6{bottom:486.000000pt;}
.y40{bottom:488.933333pt;}
.y7b{bottom:494.000000pt;}
.y24{bottom:495.866667pt;}
.y9e{bottom:500.933333pt;}
.y3e{bottom:506.000000pt;}
.y3f{bottom:512.133333pt;}
.y7a{bottom:528.933333pt;}
.y9d{bottom:530.266667pt;}
.y23{bottom:533.466667pt;}
.y3d{bottom:543.066667pt;}
.y9c{bottom:559.600000pt;}
.y3c{bottom:560.133333pt;}
.y79{bottom:575.866667pt;}
.y22{bottom:580.666667pt;}
.y5{bottom:582.000000pt;}
.y9b{bottom:588.933333pt;}
.y3b{bottom:597.733333pt;}
.y78{bottom:618.026667pt;}
.y9a{bottom:618.293333pt;}
.y21{bottom:621.760000pt;}
.y4{bottom:622.026667pt;}
.y77{bottom:635.093333pt;}
.y3a{bottom:644.960000pt;}
.y99{bottom:647.626667pt;}
.y76{bottom:652.173333pt;}
.y20{bottom:657.493333pt;}
.y75{bottom:669.226667pt;}
.y1f{bottom:674.560000pt;}
.y98{bottom:676.960000pt;}
.y39{bottom:677.760000pt;}
.y1e{bottom:691.626667pt;}
.y38{bottom:696.426667pt;}
.y74{bottom:705.760000pt;}
.y1d{bottom:708.693333pt;}
.y37{bottom:715.093333pt;}
.y3{bottom:719.360000pt;}
.y1c{bottom:725.760000pt;}
.y97{bottom:732.173333pt;}
.y36{bottom:733.760000pt;}
.y73{bottom:741.506667pt;}
.y96{bottom:748.426667pt;}
.y72{bottom:758.560000pt;}
.y1b{bottom:761.533333pt;}
.y95{bottom:764.733333pt;}
.y35{bottom:765.000000pt;}
.y71{bottom:775.666667pt;}
.y1a{bottom:778.600000pt;}
.y94{bottom:781.000000pt;}
.y19{bottom:795.666667pt;}
.y93{bottom:797.266667pt;}
.y70{bottom:812.200000pt;}
.y18{bottom:812.733333pt;}
.y92{bottom:813.533333pt;}
.y17{bottom:829.800000pt;}
.y91{bottom:846.066667pt;}
.y16{bottom:847.133333pt;}
.y6f{bottom:847.933333pt;}
.y14{bottom:864.200000pt;}
.y6e{bottom:865.266667pt;}
.y15{bottom:869.533333pt;}
.y13{bottom:881.266667pt;}
.y6d{bottom:882.333333pt;}
.y5f{bottom:885.000000pt;}
.y90{bottom:888.466667pt;}
.y6c{bottom:899.400000pt;}
.y5e{bottom:902.333333pt;}
.y8f{bottom:904.733333pt;}
.y6b{bottom:916.506667pt;}
.y12{bottom:917.026667pt;}
.y5d{bottom:919.426667pt;}
.y8e{bottom:921.026667pt;}
.y11{bottom:934.093333pt;}
.y5c{bottom:936.506667pt;}
.y8d{bottom:937.293333pt;}
.yb9{bottom:946.360000pt;}
.y10{bottom:951.173333pt;}
.y6a{bottom:953.026667pt;}
.y5b{bottom:953.560000pt;}
.yf{bottom:968.226667pt;}
.y8c{bottom:969.840000pt;}
.y5a{bottom:970.893333pt;}
.yb8{bottom:977.560000pt;}
.y59{bottom:987.960000pt;}
.y8b{bottom:988.226667pt;}
.y69{bottom:990.626667pt;}
.ye{bottom:1005.840000pt;}
.y1{bottom:1011.426667pt;}
.y68{bottom:1016.506667pt;}
.y58{bottom:1023.693333pt;}
.yad{bottom:1029.560000pt;}
.yb{bottom:1042.626667pt;}
.yac{bottom:1048.226667pt;}
.ya{bottom:1058.400000pt;}
.hc{height:32.765625pt;}
.h11{height:37.132812pt;}
.h12{height:38.226562pt;}
.h3{height:47.742188pt;}
.h13{height:53.046875pt;}
.h10{height:54.609375pt;}
.ha{height:56.229687pt;}
.hb{height:57.885937pt;}
.h14{height:58.107358pt;}
.hf{height:63.656250pt;}
.h7{height:65.531250pt;}
.he{height:65.781915pt;}
.hd{height:66.625000pt;}
.h16{height:68.960938pt;}
.h15{height:69.333333pt;}
.h6{height:87.375000pt;}
.h9{height:106.093750pt;}
.h8{height:109.218750pt;}
.h5{height:131.062500pt;}
.h4{height:141.984375pt;}
.h1{height:1122.000000pt;}
.h2{height:1122.133252pt;}
.h0{height:1122.133333pt;}
.w4{width:297.440000pt;}
.w1{width:794.000000pt;}
.w3{width:794.133310pt;}
.w2{width:794.133322pt;}
.w0{width:794.133333pt;}
.x0{left:0.000000pt;}
.x1c{left:9.600000pt;}
.x3{left:79.499988pt;}
.xc{left:83.499988pt;}
.xd{left:98.433321pt;}
.x13{left:103.233321pt;}
.x7{left:105.633321pt;}
.x1a{left:108.033321pt;}
.x14{left:126.966655pt;}
.x4{left:137.359988pt;}
.x1e{left:213.933322pt;}
.xb{left:271.573321pt;}
.xf{left:277.173310pt;}
.x1b{left:278.240000pt;}
.x10{left:281.973321pt;}
.x11{left:388.399976pt;}
.x12{left:393.199988pt;}
.x6{left:394.266655pt;}
.x5{left:403.066655pt;}
.x17{left:406.266643pt;}
.x18{left:411.066655pt;}
.x8{left:531.626643pt;}
.x9{left:535.639988pt;}
.x15{left:552.973310pt;}
.x16{left:557.799988pt;}
.xe{left:605.266655pt;}
.x19{left:672.226655pt;}
.xa{left:715.173321pt;}
.x1d{left:747.439988pt;}
.x1{left:750.626655pt;}
.x2{left:751.706655pt;}
}




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