
    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_dcbb003a8638601b6cd049d6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_f16f0c1d2baa17b39d557524.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_92613d095aabe9f462617ac5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_740f33845257763d13bd2ff4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_338bc7ed668d0073f2a433f1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_558373c4ed46bd5a6bb1146a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_2f88e2fbf502ad42ccbff1bb.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_16d05c0318404a10050da7f0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_9e20a798367e22561d4a8cfe.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_3c24d85aa9bc0f7f420d883f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_4ac1012e65f4dd4268f83148.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-2.400000px;}
.ls17{letter-spacing:-1.752000px;}
.ls9{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.200000px;}
.ls1a{letter-spacing:-0.828000px;}
.ls21{letter-spacing:-0.822000px;}
.ls8{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.672000px;}
.ls19{letter-spacing:-0.600000px;}
.lsf{letter-spacing:-0.552000px;}
.ls1b{letter-spacing:-0.516000px;}
.ls27{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.372000px;}
.lsd{letter-spacing:-0.276000px;}
.ls7{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.096000px;}
.ls6{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.096000px;}
.ls20{letter-spacing:0.240000px;}
.ls25{letter-spacing:0.270000px;}
.ls14{letter-spacing:0.300000px;}
.ls1c{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.378000px;}
.ls0{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.552000px;}
.ls4{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.768000px;}
.ls24{letter-spacing:0.780000px;}
.ls3{letter-spacing:0.828000px;}
.ls13{letter-spacing:0.924000px;}
.ls11{letter-spacing:1.104000px;}
.ls18{letter-spacing:1.200000px;}
.ls15{letter-spacing:1.500000px;}
.lse{letter-spacing:1.800000px;}
.ls1f{letter-spacing:1.860000px;}
.ls26{letter-spacing:2.700000px;}
.ls2e{letter-spacing:2.760000px;}
.ls2b{letter-spacing:11.100000px;}
.ls2d{letter-spacing:12.300000px;}
.ls2c{letter-spacing:12.480000px;}
.ls2f{letter-spacing:13.920000px;}
.ls29{letter-spacing:14.700000px;}
.ls22{letter-spacing:16.200000px;}
.ls2a{letter-spacing:16.320000px;}
.ls23{letter-spacing:24.600000px;}
.ls12{letter-spacing:35.400000px;}
.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;}
}
.ws8{word-spacing:-84.000000px;}
.ws7{word-spacing:-82.800000px;}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-24.480000px;}
.ws1{word-spacing:-24.240000px;}
.ws2{word-spacing:-23.760000px;}
.ws4{word-spacing:-23.040000px;}
.ws6{word-spacing:-22.800000px;}
.ws15{word-spacing:-22.200000px;}
.ws11{word-spacing:-22.104000px;}
.ws13{word-spacing:-21.648000px;}
.ws9{word-spacing:-21.552000px;}
.wse{word-spacing:-21.096000px;}
.wsb{word-spacing:-21.000000px;}
.wsa{word-spacing:-20.904000px;}
.wsd{word-spacing:-20.724000px;}
.ws14{word-spacing:-20.628000px;}
.wsf{word-spacing:-20.448000px;}
.ws16{word-spacing:-20.172000px;}
.wsc{word-spacing:-19.800000px;}
.ws10{word-spacing:-18.600000px;}
.ws0{word-spacing:-18.000000px;}
.ws19{word-spacing:-17.100000px;}
.ws1b{word-spacing:-16.878000px;}
.ws17{word-spacing:-16.500000px;}
.ws1a{word-spacing:-15.996000px;}
.ws1c{word-spacing:-15.900000px;}
.ws18{word-spacing:-15.678000px;}
.ws12{word-spacing:0.000000px;}
._1f{margin-left:-5.160000px;}
._1e{margin-left:-4.134000px;}
._3{margin-left:-2.376000px;}
._0{margin-left:-1.152000px;}
._2{width:1.296000px;}
._1{width:2.688000px;}
._8{width:4.086000px;}
._9{width:5.394000px;}
._a{width:6.408000px;}
._1c{width:7.626000px;}
._26{width:9.312000px;}
._17{width:10.578000px;}
._12{width:11.874000px;}
._5{width:13.080000px;}
._13{width:14.424000px;}
._11{width:16.008000px;}
._10{width:17.460000px;}
._18{width:19.344000px;}
._35{width:21.384000px;}
._21{width:22.494000px;}
._16{width:23.514000px;}
._b{width:24.834000px;}
._c{width:26.148000px;}
._2a{width:27.366000px;}
._d{width:28.590000px;}
._1b{width:30.228000px;}
._24{width:31.242000px;}
._25{width:32.250000px;}
._20{width:33.330000px;}
._15{width:34.452000px;}
._14{width:35.862000px;}
._23{width:37.602000px;}
._2b{width:38.790000px;}
._27{width:40.212000px;}
._2c{width:41.436000px;}
._22{width:43.164000px;}
._1d{width:45.036000px;}
._28{width:46.848000px;}
._29{width:48.060000px;}
._32{width:49.176000px;}
._7{width:50.220000px;}
._6{width:52.008000px;}
._2d{width:53.526000px;}
._19{width:54.642000px;}
._e{width:55.830000px;}
._f{width:57.150000px;}
._36{width:58.854000px;}
._1a{width:61.806000px;}
._2e{width:64.416000px;}
._2f{width:65.712000px;}
._37{width:66.870000px;}
._34{width:74.160000px;}
._33{width:75.420000px;}
._31{width:77.916000px;}
._30{width:79.860000px;}
._3b{width:82.380000px;}
._38{width:87.264000px;}
._3a{width:88.596000px;}
._39{width:90.204000px;}
._4{width:1422.174000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.037500px;}
.y4{bottom:92.137500px;}
.y5f{bottom:122.137500px;}
.y2a{bottom:134.137500px;}
.y21{bottom:138.937500px;}
.y29{bottom:139.537500px;}
.y5e{bottom:142.537500px;}
.y35{bottom:154.530000px;}
.y34{bottom:159.930000px;}
.y5d{bottom:162.630000px;}
.y3b{bottom:166.545000px;}
.y28{bottom:168.675000px;}
.y3a{bottom:171.975000px;}
.y41{bottom:174.675000px;}
.y20{bottom:175.275000px;}
.y4a{bottom:180.075000px;}
.y5c{bottom:183.075000px;}
.y33{bottom:186.675000px;}
.y5b{bottom:188.475000px;}
.y37{bottom:189.075000px;}
.y32{bottom:192.075000px;}
.y40{bottom:195.075000px;}
.y61{bottom:198.675000px;}
.y3f{bottom:200.475000px;}
.y39{bottom:201.075000px;}
.y5a{bottom:201.975000px;}
.y46{bottom:207.075000px;}
.y1f{bottom:211.575000px;}
.y45{bottom:212.475000px;}
.y36{bottom:219.075000px;}
.y59{bottom:220.875000px;}
.y31{bottom:221.175000px;}
.y53{bottom:224.475000px;}
.y58{bottom:226.275000px;}
.y51{bottom:227.175000px;}
.y3e{bottom:229.575000px;}
.y50{bottom:232.575000px;}
.y44{bottom:241.575000px;}
.y68{bottom:247.275000px;}
.y1e{bottom:247.575000px;}
.y67{bottom:252.675000px;}
.y57{bottom:252.975000px;}
.y52{bottom:253.575000px;}
.y47{bottom:255.075000px;}
.y4f{bottom:259.275000px;}
.y4e{bottom:264.675000px;}
.y2e{bottom:268.875000px;}
.y56{bottom:273.375000px;}
.y55{bottom:278.775000px;}
.y66{bottom:279.675000px;}
.y1d{bottom:283.875000px;}
.y65{bottom:285.075000px;}
.y3c{bottom:291.375000px;}
.y4d{bottom:294.075000px;}
.y2d{bottom:305.175000px;}
.y54{bottom:307.875000px;}
.y64{bottom:314.175000px;}
.y1c{bottom:320.175000px;}
.y49{bottom:327.675000px;}
.y2c{bottom:341.505000px;}
.y1b{bottom:356.505000px;}
.y1a{bottom:392.505000px;}
.y2b{bottom:400.005000px;}
.y19{bottom:428.820000px;}
.y3d{bottom:436.320000px;}
.y18{bottom:465.120000px;}
.y6a{bottom:472.605000px;}
.y17{bottom:501.405000px;}
.y16{bottom:537.450000px;}
.y15{bottom:573.750000px;}
.y14{bottom:610.050000px;}
.y48{bottom:617.550000px;}
.y13{bottom:646.350000px;}
.y30{bottom:653.850000px;}
.y12{bottom:682.380000px;}
.y43{bottom:689.880000px;}
.y11{bottom:718.695000px;}
.y27{bottom:726.195000px;}
.y10{bottom:754.980000px;}
.y63{bottom:762.495000px;}
.yf{bottom:791.295000px;}
.ye{bottom:827.295000px;}
.yd{bottom:863.625000px;}
.y69{bottom:871.125000px;}
.yc{bottom:899.925000px;}
.y4c{bottom:907.425000px;}
.yb{bottom:936.225000px;}
.y2f{bottom:943.725000px;}
.ya{bottom:971.625000px;}
.y26{bottom:972.225000px;}
.y60{bottom:979.725000px;}
.y9{bottom:1007.925000px;}
.y25{bottom:1008.525000px;}
.y38{bottom:1016.070000px;}
.y8{bottom:1044.255000px;}
.y24{bottom:1044.870000px;}
.y62{bottom:1052.355000px;}
.y7{bottom:1080.255000px;}
.y23{bottom:1080.870000px;}
.y4b{bottom:1088.370000px;}
.y6{bottom:1116.570000px;}
.y22{bottom:1117.155000px;}
.y42{bottom:1124.655000px;}
.y3{bottom:1154.370000px;}
.y2{bottom:1190.100000px;}
.y1{bottom:1226.400000px;}
.hb{height:41.220703px;}
.h4{height:47.340820px;}
.h9{height:52.998047px;}
.h5{height:55.623047px;}
.he{height:58.168945px;}
.hc{height:64.775391px;}
.ha{height:65.645508px;}
.h2{height:68.859375px;}
.h3{height:72.562500px;}
.hd{height:74.033203px;}
.h7{height:82.441406px;}
.h6{height:84.656250px;}
.h8{height:1262.662335px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.062500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:95.400000px;}
.x1a{left:100.837500px;}
.x4d{left:107.137500px;}
.x4c{left:109.837500px;}
.x3{left:127.537500px;}
.xf{left:132.937500px;}
.x16{left:134.137500px;}
.x23{left:138.337500px;}
.x43{left:140.137500px;}
.x34{left:146.737500px;}
.x5{left:151.830000px;}
.x1{left:157.830000px;}
.x7{left:170.130000px;}
.x39{left:180.037500px;}
.xb{left:190.575000px;}
.x3a{left:193.875000px;}
.x21{left:209.137500px;}
.x17{left:218.437500px;}
.x22{left:222.975000px;}
.x18{left:225.375000px;}
.x1f{left:228.337500px;}
.x32{left:229.537500px;}
.x20{left:235.275000px;}
.x33{left:243.375000px;}
.x28{left:259.837500px;}
.x9{left:262.275000px;}
.x4{left:269.175000px;}
.x29{left:273.675000px;}
.x1b{left:280.237500px;}
.x1c{left:287.175000px;}
.x30{left:290.737500px;}
.x31{left:304.620000px;}
.x57{left:313.582500px;}
.x2e{left:326.782500px;}
.x8{left:329.205000px;}
.x2f{left:340.620000px;}
.xe{left:343.620000px;}
.x46{left:348.367500px;}
.x6{left:358.005000px;}
.x47{left:362.205000px;}
.x52{left:365.782500px;}
.x53{left:379.620000px;}
.x12{left:394.582500px;}
.x13{left:401.505000px;}
.xa{left:407.505000px;}
.x55{left:457.612500px;}
.x37{left:469.012500px;}
.x56{left:471.450000px;}
.x38{left:473.512500px;}
.x26{left:487.912500px;}
.x4e{left:493.612500px;}
.x27{left:501.750000px;}
.x3b{left:505.012500px;}
.x4f{left:507.450000px;}
.x3c{left:524.550000px;}
.x50{left:571.657500px;}
.x2c{left:578.557500px;}
.x51{left:585.495000px;}
.x35{left:590.842500px;}
.x2d{left:592.380000px;}
.x36{left:604.695000px;}
.x2{left:614.880000px;}
.x4a{left:619.342500px;}
.x4b{left:633.195000px;}
.x24{left:640.957500px;}
.x3d{left:650.542500px;}
.x25{left:655.725000px;}
.x3e{left:664.425000px;}
.x48{left:673.687500px;}
.x41{left:675.187500px;}
.x10{left:676.687500px;}
.x11{left:683.625000px;}
.x49{left:687.525000px;}
.x42{left:689.025000px;}
.xc{left:696.187500px;}
.xd{left:703.125000px;}
.x2a{left:705.787500px;}
.x54{left:710.325000px;}
.x2b{left:719.625000px;}
.x44{left:732.787500px;}
.x45{left:746.625000px;}
.x3f{left:780.832500px;}
.x1d{left:792.832500px;}
.x40{left:794.655000px;}
.x1e{left:799.755000px;}
.x14{left:817.417500px;}
.x15{left:824.370000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-2.133333pt;}
.ls17{letter-spacing:-1.557333pt;}
.ls9{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls1a{letter-spacing:-0.736000pt;}
.ls21{letter-spacing:-0.730667pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.597333pt;}
.ls19{letter-spacing:-0.533333pt;}
.lsf{letter-spacing:-0.490667pt;}
.ls1b{letter-spacing:-0.458667pt;}
.ls27{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.330667pt;}
.lsd{letter-spacing:-0.245333pt;}
.ls7{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.085333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.085333pt;}
.ls20{letter-spacing:0.213333pt;}
.ls25{letter-spacing:0.240000pt;}
.ls14{letter-spacing:0.266667pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.336000pt;}
.ls0{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.490667pt;}
.ls4{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.682667pt;}
.ls24{letter-spacing:0.693333pt;}
.ls3{letter-spacing:0.736000pt;}
.ls13{letter-spacing:0.821333pt;}
.ls11{letter-spacing:0.981333pt;}
.ls18{letter-spacing:1.066667pt;}
.ls15{letter-spacing:1.333333pt;}
.lse{letter-spacing:1.600000pt;}
.ls1f{letter-spacing:1.653333pt;}
.ls26{letter-spacing:2.400000pt;}
.ls2e{letter-spacing:2.453333pt;}
.ls2b{letter-spacing:9.866667pt;}
.ls2d{letter-spacing:10.933333pt;}
.ls2c{letter-spacing:11.093333pt;}
.ls2f{letter-spacing:12.373333pt;}
.ls29{letter-spacing:13.066667pt;}
.ls22{letter-spacing:14.400000pt;}
.ls2a{letter-spacing:14.506667pt;}
.ls23{letter-spacing:21.866667pt;}
.ls12{letter-spacing:31.466667pt;}
.ws8{word-spacing:-74.666667pt;}
.ws7{word-spacing:-73.600000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-21.760000pt;}
.ws1{word-spacing:-21.546667pt;}
.ws2{word-spacing:-21.120000pt;}
.ws4{word-spacing:-20.480000pt;}
.ws6{word-spacing:-20.266667pt;}
.ws15{word-spacing:-19.733333pt;}
.ws11{word-spacing:-19.648000pt;}
.ws13{word-spacing:-19.242667pt;}
.ws9{word-spacing:-19.157333pt;}
.wse{word-spacing:-18.752000pt;}
.wsb{word-spacing:-18.666667pt;}
.wsa{word-spacing:-18.581333pt;}
.wsd{word-spacing:-18.421333pt;}
.ws14{word-spacing:-18.336000pt;}
.wsf{word-spacing:-18.176000pt;}
.ws16{word-spacing:-17.930667pt;}
.wsc{word-spacing:-17.600000pt;}
.ws10{word-spacing:-16.533333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws19{word-spacing:-15.200000pt;}
.ws1b{word-spacing:-15.002667pt;}
.ws17{word-spacing:-14.666667pt;}
.ws1a{word-spacing:-14.218667pt;}
.ws1c{word-spacing:-14.133333pt;}
.ws18{word-spacing:-13.936000pt;}
.ws12{word-spacing:0.000000pt;}
._1f{margin-left:-4.586667pt;}
._1e{margin-left:-3.674667pt;}
._3{margin-left:-2.112000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.152000pt;}
._1{width:2.389333pt;}
._8{width:3.632000pt;}
._9{width:4.794667pt;}
._a{width:5.696000pt;}
._1c{width:6.778667pt;}
._26{width:8.277333pt;}
._17{width:9.402667pt;}
._12{width:10.554667pt;}
._5{width:11.626667pt;}
._13{width:12.821333pt;}
._11{width:14.229333pt;}
._10{width:15.520000pt;}
._18{width:17.194667pt;}
._35{width:19.008000pt;}
._21{width:19.994667pt;}
._16{width:20.901333pt;}
._b{width:22.074667pt;}
._c{width:23.242667pt;}
._2a{width:24.325333pt;}
._d{width:25.413333pt;}
._1b{width:26.869333pt;}
._24{width:27.770667pt;}
._25{width:28.666667pt;}
._20{width:29.626667pt;}
._15{width:30.624000pt;}
._14{width:31.877333pt;}
._23{width:33.424000pt;}
._2b{width:34.480000pt;}
._27{width:35.744000pt;}
._2c{width:36.832000pt;}
._22{width:38.368000pt;}
._1d{width:40.032000pt;}
._28{width:41.642667pt;}
._29{width:42.720000pt;}
._32{width:43.712000pt;}
._7{width:44.640000pt;}
._6{width:46.229333pt;}
._2d{width:47.578667pt;}
._19{width:48.570667pt;}
._e{width:49.626667pt;}
._f{width:50.800000pt;}
._36{width:52.314667pt;}
._1a{width:54.938667pt;}
._2e{width:57.258667pt;}
._2f{width:58.410667pt;}
._37{width:59.440000pt;}
._34{width:65.920000pt;}
._33{width:67.040000pt;}
._31{width:69.258667pt;}
._30{width:70.986667pt;}
._3b{width:73.226667pt;}
._38{width:77.568000pt;}
._3a{width:78.752000pt;}
._39{width:80.181333pt;}
._4{width:1264.154667pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:50.700000pt;}
.y4{bottom:81.900000pt;}
.y5f{bottom:108.566667pt;}
.y2a{bottom:119.233333pt;}
.y21{bottom:123.500000pt;}
.y29{bottom:124.033333pt;}
.y5e{bottom:126.700000pt;}
.y35{bottom:137.360000pt;}
.y34{bottom:142.160000pt;}
.y5d{bottom:144.560000pt;}
.y3b{bottom:148.040000pt;}
.y28{bottom:149.933333pt;}
.y3a{bottom:152.866667pt;}
.y41{bottom:155.266667pt;}
.y20{bottom:155.800000pt;}
.y4a{bottom:160.066667pt;}
.y5c{bottom:162.733333pt;}
.y33{bottom:165.933333pt;}
.y5b{bottom:167.533333pt;}
.y37{bottom:168.066667pt;}
.y32{bottom:170.733333pt;}
.y40{bottom:173.400000pt;}
.y61{bottom:176.600000pt;}
.y3f{bottom:178.200000pt;}
.y39{bottom:178.733333pt;}
.y5a{bottom:179.533333pt;}
.y46{bottom:184.066667pt;}
.y1f{bottom:188.066667pt;}
.y45{bottom:188.866667pt;}
.y36{bottom:194.733333pt;}
.y59{bottom:196.333333pt;}
.y31{bottom:196.600000pt;}
.y53{bottom:199.533333pt;}
.y58{bottom:201.133333pt;}
.y51{bottom:201.933333pt;}
.y3e{bottom:204.066667pt;}
.y50{bottom:206.733333pt;}
.y44{bottom:214.733333pt;}
.y68{bottom:219.800000pt;}
.y1e{bottom:220.066667pt;}
.y67{bottom:224.600000pt;}
.y57{bottom:224.866667pt;}
.y52{bottom:225.400000pt;}
.y47{bottom:226.733333pt;}
.y4f{bottom:230.466667pt;}
.y4e{bottom:235.266667pt;}
.y2e{bottom:239.000000pt;}
.y56{bottom:243.000000pt;}
.y55{bottom:247.800000pt;}
.y66{bottom:248.600000pt;}
.y1d{bottom:252.333333pt;}
.y65{bottom:253.400000pt;}
.y3c{bottom:259.000000pt;}
.y4d{bottom:261.400000pt;}
.y2d{bottom:271.266667pt;}
.y54{bottom:273.666667pt;}
.y64{bottom:279.266667pt;}
.y1c{bottom:284.600000pt;}
.y49{bottom:291.266667pt;}
.y2c{bottom:303.560000pt;}
.y1b{bottom:316.893333pt;}
.y1a{bottom:348.893333pt;}
.y2b{bottom:355.560000pt;}
.y19{bottom:381.173333pt;}
.y3d{bottom:387.840000pt;}
.y18{bottom:413.440000pt;}
.y6a{bottom:420.093333pt;}
.y17{bottom:445.693333pt;}
.y16{bottom:477.733333pt;}
.y15{bottom:510.000000pt;}
.y14{bottom:542.266667pt;}
.y48{bottom:548.933333pt;}
.y13{bottom:574.533333pt;}
.y30{bottom:581.200000pt;}
.y12{bottom:606.560000pt;}
.y43{bottom:613.226667pt;}
.y11{bottom:638.840000pt;}
.y27{bottom:645.506667pt;}
.y10{bottom:671.093333pt;}
.y63{bottom:677.773333pt;}
.yf{bottom:703.373333pt;}
.ye{bottom:735.373333pt;}
.yd{bottom:767.666667pt;}
.y69{bottom:774.333333pt;}
.yc{bottom:799.933333pt;}
.y4c{bottom:806.600000pt;}
.yb{bottom:832.200000pt;}
.y2f{bottom:838.866667pt;}
.ya{bottom:863.666667pt;}
.y26{bottom:864.200000pt;}
.y60{bottom:870.866667pt;}
.y9{bottom:895.933333pt;}
.y25{bottom:896.466667pt;}
.y38{bottom:903.173333pt;}
.y8{bottom:928.226667pt;}
.y24{bottom:928.773333pt;}
.y62{bottom:935.426667pt;}
.y7{bottom:960.226667pt;}
.y23{bottom:960.773333pt;}
.y4b{bottom:967.440000pt;}
.y6{bottom:992.506667pt;}
.y22{bottom:993.026667pt;}
.y42{bottom:999.693333pt;}
.y3{bottom:1026.106667pt;}
.y2{bottom:1057.866667pt;}
.y1{bottom:1090.133333pt;}
.hb{height:36.640625pt;}
.h4{height:42.080729pt;}
.h9{height:47.109375pt;}
.h5{height:49.442708pt;}
.he{height:51.705729pt;}
.hc{height:57.578125pt;}
.ha{height:58.351562pt;}
.h2{height:61.208333pt;}
.h3{height:64.500000pt;}
.hd{height:65.807292pt;}
.h7{height:73.281250pt;}
.h6{height:75.250000pt;}
.h8{height:1122.366520pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.833333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:84.800000pt;}
.x1a{left:89.633333pt;}
.x4d{left:95.233333pt;}
.x4c{left:97.633333pt;}
.x3{left:113.366667pt;}
.xf{left:118.166667pt;}
.x16{left:119.233333pt;}
.x23{left:122.966667pt;}
.x43{left:124.566667pt;}
.x34{left:130.433333pt;}
.x5{left:134.960000pt;}
.x1{left:140.293333pt;}
.x7{left:151.226667pt;}
.x39{left:160.033333pt;}
.xb{left:169.400000pt;}
.x3a{left:172.333333pt;}
.x21{left:185.900000pt;}
.x17{left:194.166667pt;}
.x22{left:198.200000pt;}
.x18{left:200.333333pt;}
.x1f{left:202.966667pt;}
.x32{left:204.033333pt;}
.x20{left:209.133333pt;}
.x33{left:216.333333pt;}
.x28{left:230.966667pt;}
.x9{left:233.133333pt;}
.x4{left:239.266667pt;}
.x29{left:243.266667pt;}
.x1b{left:249.100000pt;}
.x1c{left:255.266667pt;}
.x30{left:258.433333pt;}
.x31{left:270.773333pt;}
.x57{left:278.740000pt;}
.x2e{left:290.473333pt;}
.x8{left:292.626667pt;}
.x2f{left:302.773333pt;}
.xe{left:305.440000pt;}
.x46{left:309.660000pt;}
.x6{left:318.226667pt;}
.x47{left:321.960000pt;}
.x52{left:325.140000pt;}
.x53{left:337.440000pt;}
.x12{left:350.740000pt;}
.x13{left:356.893333pt;}
.xa{left:362.226667pt;}
.x55{left:406.766667pt;}
.x37{left:416.900000pt;}
.x56{left:419.066667pt;}
.x38{left:420.900000pt;}
.x26{left:433.700000pt;}
.x4e{left:438.766667pt;}
.x27{left:446.000000pt;}
.x3b{left:448.900000pt;}
.x4f{left:451.066667pt;}
.x3c{left:466.266667pt;}
.x50{left:508.140000pt;}
.x2c{left:514.273333pt;}
.x51{left:520.440000pt;}
.x35{left:525.193333pt;}
.x2d{left:526.560000pt;}
.x36{left:537.506667pt;}
.x2{left:546.560000pt;}
.x4a{left:550.526667pt;}
.x4b{left:562.840000pt;}
.x24{left:569.740000pt;}
.x3d{left:578.260000pt;}
.x25{left:582.866667pt;}
.x3e{left:590.600000pt;}
.x48{left:598.833333pt;}
.x41{left:600.166667pt;}
.x10{left:601.500000pt;}
.x11{left:607.666667pt;}
.x49{left:611.133333pt;}
.x42{left:612.466667pt;}
.xc{left:618.833333pt;}
.xd{left:625.000000pt;}
.x2a{left:627.366667pt;}
.x54{left:631.400000pt;}
.x2b{left:639.666667pt;}
.x44{left:651.366667pt;}
.x45{left:663.666667pt;}
.x3f{left:694.073333pt;}
.x1d{left:704.740000pt;}
.x40{left:706.360000pt;}
.x1e{left:710.893333pt;}
.x14{left:726.593333pt;}
.x15{left:732.773333pt;}
}




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