
    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_c431814a4c257d1ab923ae90.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_42035dfbb1e83421c83f2ad3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_85b1cc409fdfcc31a5034672.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_7efc8b4c5df25d35c71e7979.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d1b2c220313c963b0988103d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_0d8cfca92b5e38fa219ac838.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_b4e1734431eb227189e506d0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_d1553e01261a3e1ff0a7ff47.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_86501120e89cf80c2974cead.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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);}
.v1{vertical-align:-21.600000px;}
.v6{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.680000px;}
.v7{vertical-align:2.820000px;}
.v8{vertical-align:5.700000px;}
.v2{vertical-align:21.600000px;}
.v4{vertical-align:45.420000px;}
.v3{vertical-align:57.000000px;}
.ls1b{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.120000px;}
.ls13{letter-spacing:-0.084000px;}
.ls3{letter-spacing:-0.048000px;}
.ls14{letter-spacing:-0.042000px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.060000px;}
.ls16{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.ls1a{letter-spacing:0.150000px;}
.lse{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.216600px;}
.lsd{letter-spacing:0.222000px;}
.ls6{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.384000px;}
.lsc{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.lsb{letter-spacing:0.660000px;}
.ls19{letter-spacing:9.084000px;}
.ls18{letter-spacing:15.720000px;}
.ls17{letter-spacing:45.720000px;}
.ls15{letter-spacing:91.320000px;}
.ls10{letter-spacing:185.922000px;}
.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;}
}
.ws12{word-spacing:-21.696000px;}
.ws1{word-spacing:-18.384000px;}
.ws16{word-spacing:-15.150000px;}
.ws15{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.054000px;}
.ws2{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.880000px;}
.ws3{word-spacing:-14.340000px;}
.ws17{word-spacing:-14.220000px;}
.ws7{word-spacing:-14.100000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.900000px;}
.wsf{word-spacing:-12.454500px;}
.wsa{word-spacing:-12.204000px;}
.ws5{word-spacing:-9.900000px;}
.ws6{word-spacing:0.000000px;}
.ws11{word-spacing:131.694000px;}
.ws13{word-spacing:168.870000px;}
.ws14{word-spacing:169.440000px;}
.wsd{word-spacing:544.998000px;}
.wse{word-spacing:545.118000px;}
.wsc{word-spacing:572.862000px;}
.ws10{word-spacing:572.922000px;}
.wsb{word-spacing:572.982000px;}
._1{margin-left:-1.278000px;}
._0{width:1.122000px;}
._9{width:2.340000px;}
._e{width:3.360000px;}
._8{width:4.380000px;}
._a{width:5.400000px;}
._b{width:6.540000px;}
._c{width:8.400000px;}
._d{width:9.504000px;}
._12{width:10.530000px;}
._11{width:11.754000px;}
._4{width:12.960000px;}
._5{width:14.076000px;}
._15{width:16.278000px;}
._16{width:17.298000px;}
._7{width:19.278000px;}
._6{width:20.760000px;}
._10{width:27.342000px;}
._f{width:28.398000px;}
._14{width:158.400000px;}
._13{width:171.600000px;}
._2{width:336.180000px;}
._3{width:1188.480000px;}
.fc7{color:rgb(23,55,94);}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc8{color:rgb(38,38,38);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs8{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:54.150000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:3.300000px;}
.y4d{bottom:3.600000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y73{bottom:5.850000px;}
.y6d{bottom:5.880000px;}
.y71{bottom:5.895000px;}
.y6f{bottom:6.030000px;}
.y3f{bottom:7.245000px;}
.y5{bottom:12.337500px;}
.y87{bottom:17.430000px;}
.y3e{bottom:26.745000px;}
.ybb{bottom:32.175000px;}
.y84{bottom:38.325000px;}
.y3d{bottom:41.145000px;}
.y4{bottom:46.800000px;}
.yba{bottom:51.975000px;}
.y79{bottom:55.920000px;}
.y1{bottom:57.037500px;}
.y74{bottom:58.080000px;}
.y3c{bottom:58.545000px;}
.y78{bottom:64.350000px;}
.yb8{bottom:71.775000px;}
.y3b{bottom:75.645000px;}
.y7a{bottom:80.055000px;}
.y3{bottom:81.337500px;}
.y3a{bottom:93.045000px;}
.y7b{bottom:104.250000px;}
.y39{bottom:110.145000px;}
.yb6{bottom:112.537500px;}
.y6a{bottom:113.400000px;}
.y68{bottom:116.137500px;}
.y75{bottom:123.075000px;}
.y38{bottom:127.545000px;}
.y7c{bottom:128.400000px;}
.y33{bottom:128.437500px;}
.y6b{bottom:129.375000px;}
.y67{bottom:133.537500px;}
.y76{bottom:140.730000px;}
.y37{bottom:144.645000px;}
.y32{bottom:145.537500px;}
.y66{bottom:150.630000px;}
.y7d{bottom:152.580000px;}
.y77{bottom:157.170000px;}
.y36{bottom:162.045000px;}
.y31{bottom:162.930000px;}
.y65{bottom:168.045000px;}
.y7e{bottom:176.775000px;}
.y35{bottom:179.775000px;}
.y30{bottom:180.075000px;}
.y64{bottom:185.175000px;}
.y2f{bottom:197.475000px;}
.y7f{bottom:200.925000px;}
.yb7{bottom:201.600000px;}
.y63{bottom:202.575000px;}
.ybc{bottom:213.975000px;}
.y2e{bottom:214.575000px;}
.y62{bottom:219.675000px;}
.y80{bottom:225.105000px;}
.y2d{bottom:231.975000px;}
.y61{bottom:236.175000px;}
.y81{bottom:249.300000px;}
.y2c{bottom:249.675000px;}
.y60{bottom:250.875000px;}
.yb9{bottom:253.575000px;}
.y5f{bottom:267.975000px;}
.y2b{bottom:269.175000px;}
.y82{bottom:273.450000px;}
.y2a{bottom:283.575000px;}
.y5e{bottom:285.375000px;}
.y83{bottom:297.630000px;}
.y29{bottom:300.975000px;}
.y5d{bottom:302.475000px;}
.y86{bottom:309.255000px;}
.y28{bottom:318.075000px;}
.y5c{bottom:319.875000px;}
.yb5{bottom:330.375000px;}
.y27{bottom:335.475000px;}
.y5b{bottom:336.975000px;}
.y85{bottom:338.670000px;}
.yb4{bottom:347.505000px;}
.y26{bottom:352.620000px;}
.y5a{bottom:354.405000px;}
.yb3{bottom:364.905000px;}
.y25{bottom:370.005000px;}
.y59{bottom:371.505000px;}
.yb2{bottom:382.020000px;}
.y24{bottom:387.120000px;}
.y58{bottom:388.920000px;}
.yb1{bottom:399.420000px;}
.y23{bottom:404.505000px;}
.y57{bottom:406.005000px;}
.yb0{bottom:416.505000px;}
.y22{bottom:422.205000px;}
.y56{bottom:423.420000px;}
.yaf{bottom:433.920000px;}
.y55{bottom:438.705000px;}
.y21{bottom:442.920000px;}
.y54{bottom:445.620000px;}
.y69{bottom:447.900000px;}
.yae{bottom:451.005000px;}
.yad{bottom:468.420000px;}
.yac{bottom:485.505000px;}
.yab{bottom:502.920000px;}
.y34{bottom:508.005000px;}
.yaa{bottom:520.050000px;}
.ya9{bottom:537.450000px;}
.ya8{bottom:554.550000px;}
.ya7{bottom:571.950000px;}
.ya6{bottom:589.050000px;}
.ya5{bottom:606.450000px;}
.ya4{bottom:623.550000px;}
.ya3{bottom:640.950000px;}
.y6c{bottom:648.000000px;}
.ya2{bottom:658.050000px;}
.ya1{bottom:675.450000px;}
.y6e{bottom:687.000000px;}
.ya0{bottom:692.595000px;}
.y72{bottom:706.800000px;}
.y9f{bottom:709.980000px;}
.y70{bottom:712.800000px;}
.y9e{bottom:727.080000px;}
.y20{bottom:744.780000px;}
.y9d{bottom:764.295000px;}
.y1f{bottom:764.895000px;}
.y9c{bottom:778.980000px;}
.y1e{bottom:784.695000px;}
.y9b{bottom:796.080000px;}
.y1d{bottom:803.295000px;}
.y9a{bottom:813.495000px;}
.y1c{bottom:821.895000px;}
.y53{bottom:829.380000px;}
.y99{bottom:831.195000px;}
.y1b{bottom:840.495000px;}
.y52{bottom:846.795000px;}
.y98{bottom:850.725000px;}
.y1a{bottom:863.325000px;}
.y51{bottom:863.925000px;}
.y97{bottom:865.125000px;}
.y50{bottom:878.625000px;}
.y19{bottom:880.725000px;}
.y96{bottom:882.525000px;}
.y4f{bottom:895.725000px;}
.y18{bottom:897.825000px;}
.y95{bottom:899.625000px;}
.y4e{bottom:913.125000px;}
.y17{bottom:915.225000px;}
.y94{bottom:917.325000px;}
.y4c{bottom:930.225000px;}
.y16{bottom:932.325000px;}
.y93{bottom:936.825000px;}
.y4b{bottom:947.625000px;}
.y15{bottom:949.725000px;}
.y92{bottom:951.525000px;}
.y14{bottom:961.125000px;}
.y49{bottom:965.625000px;}
.y91{bottom:968.625000px;}
.y13{bottom:982.425000px;}
.y90{bottom:986.025000px;}
.y12{bottom:994.725000px;}
.y8f{bottom:1003.125000px;}
.y48{bottom:1013.625000px;}
.y11{bottom:1015.425000px;}
.y8e{bottom:1020.570000px;}
.y47{bottom:1032.870000px;}
.y10{bottom:1033.755000px;}
.y8d{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y46{bottom:1050.870000px;}
.y8c{bottom:1055.370000px;}
.yc{bottom:1062.570000px;}
.y45{bottom:1065.255000px;}
.yb{bottom:1068.255000px;}
.y8b{bottom:1074.870000px;}
.y44{bottom:1082.670000px;}
.ya{bottom:1083.570000px;}
.y8a{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y43{bottom:1099.755000px;}
.y89{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y42{bottom:1117.455000px;}
.y88{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y41{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y40{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h18{height:17.100000px;}
.h1a{height:17.400000px;}
.hb{height:20.947266px;}
.ha{height:21.000000px;}
.h1b{height:21.166992px;}
.h1f{height:21.300000px;}
.h20{height:21.600000px;}
.hc{height:27.650391px;}
.h16{height:33.515625px;}
.h7{height:33.867188px;}
.h14{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.he{height:38.100586px;}
.hd{height:41.894531px;}
.h4{height:42.333984px;}
.h25{height:43.681641px;}
.h15{height:44.507812px;}
.h17{height:46.567383px;}
.h11{height:49.250391px;}
.h10{height:49.453125px;}
.h19{height:49.540430px;}
.h6{height:50.800781px;}
.h13{height:51.996094px;}
.h1d{height:53.709961px;}
.h23{height:53.859155px;}
.h21{height:56.439155px;}
.hf{height:59.343750px;}
.h22{height:59.409961px;}
.h1{height:65.645508px;}
.h26{height:86.100000px;}
.h2{height:97.200000px;}
.h24{height:98.296875px;}
.h1e{height:110.709961px;}
.h12{height:196.575000px;}
.h1c{height:378.300000px;}
.h0{height:1263.000000px;}
.wf{width:47.100000px;}
.w9{width:53.137500px;}
.w10{width:54.000000px;}
.w12{width:60.600000px;}
.w11{width:60.900000px;}
.w4{width:72.300000px;}
.wd{width:106.837500px;}
.w3{width:108.000000px;}
.wb{width:120.637500px;}
.wa{width:125.437500px;}
.wc{width:131.437500px;}
.w8{width:178.830000px;}
.w6{width:252.975000px;}
.w5{width:483.450000px;}
.we{width:629.700000px;}
.w13{width:727.800000px;}
.w7{width:731.025000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:4.755000px;}
.x13{left:7.800000px;}
.x2{left:10.799998px;}
.x11{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:23.400000px;}
.x23{left:32.700000px;}
.x1c{left:48.855000px;}
.xc{left:78.337500px;}
.x1{left:81.037487px;}
.x10{left:83.137500px;}
.x2b{left:87.000000px;}
.x29{left:91.837487px;}
.x28{left:96.037487px;}
.x2c{left:97.837487px;}
.x27{left:100.237487px;}
.x24{left:102.045000px;}
.x2a{left:108.037487px;}
.xf{left:116.445000px;}
.x1b{left:131.400000px;}
.xa{left:153.629987px;}
.x1e{left:175.500000px;}
.x26{left:193.725000px;}
.x1d{left:219.045000px;}
.xd{left:241.567500px;}
.x14{left:260.775000px;}
.x1a{left:277.274987px;}
.x25{left:294.420000px;}
.x15{left:314.520000px;}
.x20{left:345.600000px;}
.x7{left:363.419987px;}
.x5{left:388.619987px;}
.x16{left:440.850000px;}
.x19{left:446.549987px;}
.x21{left:515.700000px;}
.x12{left:555.194987px;}
.xe{left:561.780000px;}
.x9{left:614.879987px;}
.x8{left:648.194987px;}
.x2d{left:673.125000px;}
.x22{left:686.100000px;}
.x17{left:694.125000px;}
.x6{left:696.524987px;}
.x18{left:761.624987px;}
.xb{left:812.369987px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v6{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.493333pt;}
.v7{vertical-align:2.506667pt;}
.v8{vertical-align:5.066667pt;}
.v2{vertical-align:19.200000pt;}
.v4{vertical-align:40.373333pt;}
.v3{vertical-align:50.666667pt;}
.ls1b{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.106667pt;}
.ls13{letter-spacing:-0.074667pt;}
.ls3{letter-spacing:-0.042667pt;}
.ls14{letter-spacing:-0.037333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls16{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ls1a{letter-spacing:0.133333pt;}
.lse{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.192533pt;}
.lsd{letter-spacing:0.197333pt;}
.ls6{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.341333pt;}
.lsc{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.lsb{letter-spacing:0.586667pt;}
.ls19{letter-spacing:8.074667pt;}
.ls18{letter-spacing:13.973333pt;}
.ls17{letter-spacing:40.640000pt;}
.ls15{letter-spacing:81.173333pt;}
.ls10{letter-spacing:165.264000pt;}
.ws12{word-spacing:-19.285333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws16{word-spacing:-13.466667pt;}
.ws15{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.381333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4{word-spacing:-13.226667pt;}
.ws3{word-spacing:-12.746667pt;}
.ws17{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.533333pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.466667pt;}
.wsf{word-spacing:-11.070667pt;}
.wsa{word-spacing:-10.848000pt;}
.ws5{word-spacing:-8.800000pt;}
.ws6{word-spacing:0.000000pt;}
.ws11{word-spacing:117.061333pt;}
.ws13{word-spacing:150.106667pt;}
.ws14{word-spacing:150.613333pt;}
.wsd{word-spacing:484.442667pt;}
.wse{word-spacing:484.549333pt;}
.wsc{word-spacing:509.210667pt;}
.ws10{word-spacing:509.264000pt;}
.wsb{word-spacing:509.317333pt;}
._1{margin-left:-1.136000pt;}
._0{width:0.997333pt;}
._9{width:2.080000pt;}
._e{width:2.986667pt;}
._8{width:3.893333pt;}
._a{width:4.800000pt;}
._b{width:5.813333pt;}
._c{width:7.466667pt;}
._d{width:8.448000pt;}
._12{width:9.360000pt;}
._11{width:10.448000pt;}
._4{width:11.520000pt;}
._5{width:12.512000pt;}
._15{width:14.469333pt;}
._16{width:15.376000pt;}
._7{width:17.136000pt;}
._6{width:18.453333pt;}
._10{width:24.304000pt;}
._f{width:25.242667pt;}
._14{width:140.800000pt;}
._13{width:152.533333pt;}
._2{width:298.826667pt;}
._3{width:1056.426667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs8{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:48.133333pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:2.933333pt;}
.y4d{bottom:3.200000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y73{bottom:5.200000pt;}
.y6d{bottom:5.226667pt;}
.y71{bottom:5.240000pt;}
.y6f{bottom:5.360000pt;}
.y3f{bottom:6.440000pt;}
.y5{bottom:10.966667pt;}
.y87{bottom:15.493333pt;}
.y3e{bottom:23.773333pt;}
.ybb{bottom:28.600000pt;}
.y84{bottom:34.066667pt;}
.y3d{bottom:36.573333pt;}
.y4{bottom:41.600000pt;}
.yba{bottom:46.200000pt;}
.y79{bottom:49.706667pt;}
.y1{bottom:50.700000pt;}
.y74{bottom:51.626667pt;}
.y3c{bottom:52.040000pt;}
.y78{bottom:57.200000pt;}
.yb8{bottom:63.800000pt;}
.y3b{bottom:67.240000pt;}
.y7a{bottom:71.160000pt;}
.y3{bottom:72.300000pt;}
.y3a{bottom:82.706667pt;}
.y7b{bottom:92.666667pt;}
.y39{bottom:97.906667pt;}
.yb6{bottom:100.033333pt;}
.y6a{bottom:100.800000pt;}
.y68{bottom:103.233333pt;}
.y75{bottom:109.400000pt;}
.y38{bottom:113.373333pt;}
.y7c{bottom:114.133333pt;}
.y33{bottom:114.166667pt;}
.y6b{bottom:115.000000pt;}
.y67{bottom:118.700000pt;}
.y76{bottom:125.093333pt;}
.y37{bottom:128.573333pt;}
.y32{bottom:129.366667pt;}
.y66{bottom:133.893333pt;}
.y7d{bottom:135.626667pt;}
.y77{bottom:139.706667pt;}
.y36{bottom:144.040000pt;}
.y31{bottom:144.826667pt;}
.y65{bottom:149.373333pt;}
.y7e{bottom:157.133333pt;}
.y35{bottom:159.800000pt;}
.y30{bottom:160.066667pt;}
.y64{bottom:164.600000pt;}
.y2f{bottom:175.533333pt;}
.y7f{bottom:178.600000pt;}
.yb7{bottom:179.200000pt;}
.y63{bottom:180.066667pt;}
.ybc{bottom:190.200000pt;}
.y2e{bottom:190.733333pt;}
.y62{bottom:195.266667pt;}
.y80{bottom:200.093333pt;}
.y2d{bottom:206.200000pt;}
.y61{bottom:209.933333pt;}
.y81{bottom:221.600000pt;}
.y2c{bottom:221.933333pt;}
.y60{bottom:223.000000pt;}
.yb9{bottom:225.400000pt;}
.y5f{bottom:238.200000pt;}
.y2b{bottom:239.266667pt;}
.y82{bottom:243.066667pt;}
.y2a{bottom:252.066667pt;}
.y5e{bottom:253.666667pt;}
.y83{bottom:264.560000pt;}
.y29{bottom:267.533333pt;}
.y5d{bottom:268.866667pt;}
.y86{bottom:274.893333pt;}
.y28{bottom:282.733333pt;}
.y5c{bottom:284.333333pt;}
.yb5{bottom:293.666667pt;}
.y27{bottom:298.200000pt;}
.y5b{bottom:299.533333pt;}
.y85{bottom:301.040000pt;}
.yb4{bottom:308.893333pt;}
.y26{bottom:313.440000pt;}
.y5a{bottom:315.026667pt;}
.yb3{bottom:324.360000pt;}
.y25{bottom:328.893333pt;}
.y59{bottom:330.226667pt;}
.yb2{bottom:339.573333pt;}
.y24{bottom:344.106667pt;}
.y58{bottom:345.706667pt;}
.yb1{bottom:355.040000pt;}
.y23{bottom:359.560000pt;}
.y57{bottom:360.893333pt;}
.yb0{bottom:370.226667pt;}
.y22{bottom:375.293333pt;}
.y56{bottom:376.373333pt;}
.yaf{bottom:385.706667pt;}
.y55{bottom:389.960000pt;}
.y21{bottom:393.706667pt;}
.y54{bottom:396.106667pt;}
.y69{bottom:398.133333pt;}
.yae{bottom:400.893333pt;}
.yad{bottom:416.373333pt;}
.yac{bottom:431.560000pt;}
.yab{bottom:447.040000pt;}
.y34{bottom:451.560000pt;}
.yaa{bottom:462.266667pt;}
.ya9{bottom:477.733333pt;}
.ya8{bottom:492.933333pt;}
.ya7{bottom:508.400000pt;}
.ya6{bottom:523.600000pt;}
.ya5{bottom:539.066667pt;}
.ya4{bottom:554.266667pt;}
.ya3{bottom:569.733333pt;}
.y6c{bottom:576.000000pt;}
.ya2{bottom:584.933333pt;}
.ya1{bottom:600.400000pt;}
.y6e{bottom:610.666667pt;}
.ya0{bottom:615.640000pt;}
.y72{bottom:628.266667pt;}
.y9f{bottom:631.093333pt;}
.y70{bottom:633.600000pt;}
.y9e{bottom:646.293333pt;}
.y20{bottom:662.026667pt;}
.y9d{bottom:679.373333pt;}
.y1f{bottom:679.906667pt;}
.y9c{bottom:692.426667pt;}
.y1e{bottom:697.506667pt;}
.y9b{bottom:707.626667pt;}
.y1d{bottom:714.040000pt;}
.y9a{bottom:723.106667pt;}
.y1c{bottom:730.573333pt;}
.y53{bottom:737.226667pt;}
.y99{bottom:738.840000pt;}
.y1b{bottom:747.106667pt;}
.y52{bottom:752.706667pt;}
.y98{bottom:756.200000pt;}
.y1a{bottom:767.400000pt;}
.y51{bottom:767.933333pt;}
.y97{bottom:769.000000pt;}
.y50{bottom:781.000000pt;}
.y19{bottom:782.866667pt;}
.y96{bottom:784.466667pt;}
.y4f{bottom:796.200000pt;}
.y18{bottom:798.066667pt;}
.y95{bottom:799.666667pt;}
.y4e{bottom:811.666667pt;}
.y17{bottom:813.533333pt;}
.y94{bottom:815.400000pt;}
.y4c{bottom:826.866667pt;}
.y16{bottom:828.733333pt;}
.y93{bottom:832.733333pt;}
.y4b{bottom:842.333333pt;}
.y15{bottom:844.200000pt;}
.y92{bottom:845.800000pt;}
.y14{bottom:854.333333pt;}
.y49{bottom:858.333333pt;}
.y91{bottom:861.000000pt;}
.y13{bottom:873.266667pt;}
.y90{bottom:876.466667pt;}
.y12{bottom:884.200000pt;}
.y8f{bottom:891.666667pt;}
.y48{bottom:901.000000pt;}
.y11{bottom:902.600000pt;}
.y8e{bottom:907.173333pt;}
.y47{bottom:918.106667pt;}
.y10{bottom:918.893333pt;}
.y8d{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y46{bottom:934.106667pt;}
.y8c{bottom:938.106667pt;}
.yc{bottom:944.506667pt;}
.y45{bottom:946.893333pt;}
.yb{bottom:949.560000pt;}
.y8b{bottom:955.440000pt;}
.y44{bottom:962.373333pt;}
.ya{bottom:963.173333pt;}
.y8a{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y43{bottom:977.560000pt;}
.y89{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y42{bottom:993.293333pt;}
.y88{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y41{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y40{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h18{height:15.200000pt;}
.h1a{height:15.466667pt;}
.hb{height:18.619792pt;}
.ha{height:18.666667pt;}
.h1b{height:18.815104pt;}
.h1f{height:18.933333pt;}
.h20{height:19.200000pt;}
.hc{height:24.578125pt;}
.h16{height:29.791667pt;}
.h7{height:30.104167pt;}
.h14{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.he{height:33.867188pt;}
.hd{height:37.239583pt;}
.h4{height:37.630208pt;}
.h25{height:38.828125pt;}
.h15{height:39.562500pt;}
.h17{height:41.393229pt;}
.h11{height:43.778125pt;}
.h10{height:43.958333pt;}
.h19{height:44.035937pt;}
.h6{height:45.156250pt;}
.h13{height:46.218750pt;}
.h1d{height:47.742188pt;}
.h23{height:47.874805pt;}
.h21{height:50.168138pt;}
.hf{height:52.750000pt;}
.h22{height:52.808854pt;}
.h1{height:58.351562pt;}
.h26{height:76.533333pt;}
.h2{height:86.400000pt;}
.h24{height:87.375000pt;}
.h1e{height:98.408854pt;}
.h12{height:174.733333pt;}
.h1c{height:336.266667pt;}
.h0{height:1122.666667pt;}
.wf{width:41.866667pt;}
.w9{width:47.233333pt;}
.w10{width:48.000000pt;}
.w12{width:53.866667pt;}
.w11{width:54.133333pt;}
.w4{width:64.266667pt;}
.wd{width:94.966667pt;}
.w3{width:96.000000pt;}
.wb{width:107.233333pt;}
.wa{width:111.500000pt;}
.wc{width:116.833333pt;}
.w8{width:158.960000pt;}
.w6{width:224.866667pt;}
.w5{width:429.733333pt;}
.we{width:559.733333pt;}
.w13{width:646.933333pt;}
.w7{width:649.800000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:4.226667pt;}
.x13{left:6.933333pt;}
.x2{left:9.599999pt;}
.x11{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:20.800000pt;}
.x23{left:29.066667pt;}
.x1c{left:43.426667pt;}
.xc{left:69.633333pt;}
.x1{left:72.033322pt;}
.x10{left:73.900000pt;}
.x2b{left:77.333333pt;}
.x29{left:81.633322pt;}
.x28{left:85.366655pt;}
.x2c{left:86.966655pt;}
.x27{left:89.099988pt;}
.x24{left:90.706667pt;}
.x2a{left:96.033322pt;}
.xf{left:103.506667pt;}
.x1b{left:116.800000pt;}
.xa{left:136.559988pt;}
.x1e{left:156.000000pt;}
.x26{left:172.200000pt;}
.x1d{left:194.706667pt;}
.xd{left:214.726667pt;}
.x14{left:231.800000pt;}
.x1a{left:246.466655pt;}
.x25{left:261.706667pt;}
.x15{left:279.573333pt;}
.x20{left:307.200000pt;}
.x7{left:323.039988pt;}
.x5{left:345.439988pt;}
.x16{left:391.866667pt;}
.x19{left:396.933322pt;}
.x21{left:458.400000pt;}
.x12{left:493.506655pt;}
.xe{left:499.360000pt;}
.x9{left:546.559988pt;}
.x8{left:576.173322pt;}
.x2d{left:598.333333pt;}
.x22{left:609.866667pt;}
.x17{left:617.000000pt;}
.x6{left:619.133322pt;}
.x18{left:676.999988pt;}
.xb{left:722.106655pt;}
}




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