
    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_7171c809d96a4f0a41905955.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_f52446afccd2feaa19444035.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9dc7d1f77e4c3f2c3873f152.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_1b29af7f3a4b012218e9200e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5a57f2cb73821eecf19c8001.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.016000;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_d26c7854fc6e6aa389aa888c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.681152;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.246990,-0.038676,0.038676,0.246990,0,0);-ms-transform:matrix(0.246990,-0.038676,0.038676,0.246990,0,0);-webkit-transform:matrix(0.246990,-0.038676,0.038676,0.246990,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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-10.800000px;}
.ls1{letter-spacing:-4.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.432000px;}
.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;}
}
.ws3{word-spacing:-56.160000px;}
.ws2{word-spacing:-51.840000px;}
.ws4{word-spacing:-45.360000px;}
.ws1{word-spacing:-37.440000px;}
.ws8{word-spacing:-0.432000px;}
.ws0{word-spacing:-0.120000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:899.136000px;}
.ws6{word-spacing:913.104000px;}
._8{margin-left:-15.141600px;}
._a{margin-left:-11.520000px;}
._6{margin-left:-8.640000px;}
._1{margin-left:-7.371144px;}
._5{margin-left:-5.211144px;}
._4{margin-left:-3.428856px;}
._2{margin-left:-2.400000px;}
._0{margin-left:-1.168596px;}
._7{width:2.865600px;}
._3{width:4.320000px;}
._c{width:6.480000px;}
._d{width:10.800000px;}
._9{width:630.096000px;}
._b{width:962.352000px;}
.fc5{color:transparent;}
.fc4{color:rgb(248,158,35);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(19,16,15);}
.fs5{font-size:34.020986px;}
.fs0{font-size:89.892000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:144.000000px;}
.fs2{font-size:216.000000px;}
.fs6{font-size:360.000000px;}
.fs3{font-size:900.000000px;}
.y0{bottom:0.000000px;}
.y96{bottom:5.963700px;}
.y94{bottom:5.965500px;}
.y92{bottom:5.967900px;}
.y9a{bottom:5.972550px;}
.y90{bottom:5.973300px;}
.y98{bottom:5.976300px;}
.y6{bottom:147.390450px;}
.y5{bottom:219.372450px;}
.y4{bottom:291.354450px;}
.y2{bottom:317.357550px;}
.y1{bottom:339.830550px;}
.y3{bottom:466.797300px;}
.yce{bottom:751.356450px;}
.ycd{bottom:859.356450px;}
.y9b{bottom:1118.553150px;}
.yaf{bottom:1120.428900px;}
.yb3{bottom:1126.795200px;}
.ycc{bottom:1128.671700px;}
.ybe{bottom:1208.372100px;}
.yae{bottom:1208.383200px;}
.ycb{bottom:1216.624350px;}
.yb2{bottom:1247.407200px;}
.ybd{bottom:1251.572100px;}
.yad{bottom:1251.583200px;}
.yca{bottom:1259.824350px;}
.yb1{bottom:1290.607200px;}
.ybc{bottom:1294.772100px;}
.yac{bottom:1294.783200px;}
.yc9{bottom:1303.024350px;}
.yb0{bottom:1333.807200px;}
.ybb{bottom:1337.972100px;}
.yab{bottom:1337.983200px;}
.yc8{bottom:1346.224350px;}
.yc0{bottom:1398.442950px;}
.yb7{bottom:1398.811200px;}
.ya8{bottom:1399.162950px;}
.ya4{bottom:1399.522950px;}
.y9f{bottom:1399.893150px;}
.yc5{bottom:1400.500050px;}
.yba{bottom:1408.568100px;}
.ybf{bottom:1441.642950px;}
.yb6{bottom:1442.011200px;}
.ya7{bottom:1442.362950px;}
.ya3{bottom:1442.722950px;}
.y9e{bottom:1443.093150px;}
.yc4{bottom:1443.700050px;}
.yc3{bottom:1491.508050px;}
.ya2{bottom:1494.346950px;}
.yb5{bottom:1494.355200px;}
.y9d{bottom:1494.357150px;}
.yc2{bottom:1534.708050px;}
.ya1{bottom:1537.546950px;}
.yb4{bottom:1537.555200px;}
.y9c{bottom:1537.557150px;}
.ya6{bottom:1587.040650px;}
.yaa{bottom:1587.041250px;}
.yb9{bottom:1594.578600px;}
.yc7{bottom:1595.282550px;}
.ya0{bottom:1651.135950px;}
.ya5{bottom:1651.840650px;}
.ya9{bottom:1651.841250px;}
.yb8{bottom:1659.378600px;}
.yc1{bottom:1660.081800px;}
.yc6{bottom:1660.082550px;}
.y73{bottom:1901.353200px;}
.y8e{bottom:1903.229700px;}
.y5d{bottom:1907.488050px;}
.y72{bottom:1909.364550px;}
.y7d{bottom:1994.191200px;}
.y66{bottom:1996.255200px;}
.y8d{bottom:2031.530400px;}
.y86{bottom:2037.389850px;}
.y7c{bottom:2037.391200px;}
.y65{bottom:2039.455200px;}
.y6e{bottom:2040.518700px;}
.y8c{bottom:2074.730400px;}
.y85{bottom:2080.589850px;}
.y7b{bottom:2080.591200px;}
.y64{bottom:2082.655200px;}
.y6d{bottom:2083.718700px;}
.y8b{bottom:2117.930400px;}
.y84{bottom:2123.789850px;}
.y7a{bottom:2123.791200px;}
.y63{bottom:2125.855200px;}
.y6c{bottom:2126.918700px;}
.y88{bottom:2184.335400px;}
.y81{bottom:2186.495400px;}
.y77{bottom:2186.509200px;}
.y6a{bottom:2189.390250px;}
.y61{bottom:2189.764050px;}
.y70{bottom:2192.630250px;}
.y87{bottom:2227.535400px;}
.y80{bottom:2229.695400px;}
.y76{bottom:2229.709200px;}
.y69{bottom:2232.590250px;}
.y60{bottom:2232.964050px;}
.y6f{bottom:2235.830250px;}
.y7f{bottom:2274.947400px;}
.y75{bottom:2274.961200px;}
.y68{bottom:2281.082250px;}
.y5f{bottom:2281.096050px;}
.y7e{bottom:2318.147400px;}
.y74{bottom:2318.161200px;}
.y67{bottom:2324.282250px;}
.y5e{bottom:2324.296050px;}
.y79{bottom:2369.136750px;}
.y83{bottom:2369.839950px;}
.y8a{bottom:2369.840700px;}
.y71{bottom:2375.976150px;}
.y93{bottom:2422.305000px;}
.y99{bottom:2422.815000px;}
.y91{bottom:2432.805000px;}
.y97{bottom:2433.315000px;}
.y78{bottom:2433.936750px;}
.y82{bottom:2434.639950px;}
.y89{bottom:2434.640700px;}
.y62{bottom:2440.071600px;}
.y6b{bottom:2440.776150px;}
.y8f{bottom:2443.305000px;}
.y95{bottom:2443.830000px;}
.y48{bottom:2688.743400px;}
.y31{bottom:2689.095000px;}
.y51{bottom:2689.446600px;}
.y3b{bottom:2689.799550px;}
.y3a{bottom:2777.595600px;}
.y5a{bottom:2778.925650px;}
.y44{bottom:2779.010550px;}
.y39{bottom:2820.795600px;}
.y50{bottom:2821.069500px;}
.y59{bottom:2822.125650px;}
.y43{bottom:2822.210550px;}
.y38{bottom:2863.995600px;}
.y4f{bottom:2864.269500px;}
.y58{bottom:2865.325650px;}
.y42{bottom:2865.410550px;}
.y37{bottom:2907.195600px;}
.y4e{bottom:2907.469500px;}
.y57{bottom:2908.525650px;}
.y41{bottom:2908.610550px;}
.y3f{bottom:2972.867550px;}
.y46{bottom:2973.227550px;}
.y35{bottom:2973.243000px;}
.y55{bottom:2973.522600px;}
.y4c{bottom:2973.863400px;}
.y5c{bottom:2973.882600px;}
.y3e{bottom:3016.067550px;}
.y45{bottom:3016.427550px;}
.y34{bottom:3016.443000px;}
.y54{bottom:3016.722600px;}
.y4b{bottom:3017.063400px;}
.y5b{bottom:3017.082600px;}
.y4a{bottom:3063.755400px;}
.y53{bottom:3063.774600px;}
.y3d{bottom:3063.839550px;}
.y33{bottom:3063.855000px;}
.y49{bottom:3106.955400px;}
.y52{bottom:3106.974600px;}
.y3c{bottom:3107.039550px;}
.y32{bottom:3107.055000px;}
.y47{bottom:3157.583100px;}
.y4d{bottom:3221.326950px;}
.y36{bottom:3221.678400px;}
.y56{bottom:3222.030000px;}
.y40{bottom:3222.383100px;}
.y8{bottom:3469.071600px;}
.y12{bottom:3469.774650px;}
.y1b{bottom:3471.862050px;}
.y25{bottom:3472.566600px;}
.y11{bottom:3558.900750px;}
.y24{bottom:3560.988150px;}
.y10{bottom:3602.100750px;}
.y23{bottom:3604.188150px;}
.y2e{bottom:3604.892700px;}
.yf{bottom:3645.300750px;}
.y22{bottom:3647.388150px;}
.y2d{bottom:3648.092700px;}
.ye{bottom:3688.500750px;}
.y21{bottom:3690.588150px;}
.y2c{bottom:3691.292700px;}
.y1a{bottom:3752.050650px;}
.yc{bottom:3752.391600px;}
.y16{bottom:3752.770650px;}
.y30{bottom:3753.762600px;}
.y29{bottom:3754.122600px;}
.y1f{bottom:3754.462050px;}
.y19{bottom:3795.250650px;}
.yb{bottom:3795.591600px;}
.y15{bottom:3795.970650px;}
.y2f{bottom:3796.962600px;}
.y28{bottom:3797.322600px;}
.y1e{bottom:3797.662050px;}
.ya{bottom:3842.499600px;}
.y14{bottom:3842.518650px;}
.y1d{bottom:3845.290050px;}
.y27{bottom:3845.310600px;}
.y9{bottom:3885.699600px;}
.y13{bottom:3885.718650px;}
.y1c{bottom:3888.490050px;}
.y26{bottom:3888.510600px;}
.y18{bottom:3937.558200px;}
.y2b{bottom:3940.350150px;}
.yd{bottom:4001.655000px;}
.y17{bottom:4002.358200px;}
.y20{bottom:4004.445600px;}
.y2a{bottom:4005.150150px;}
.y7{bottom:4227.005100px;}
.ha{height:18.975000px;}
.hb{height:22.675120px;}
.h2{height:66.520080px;}
.h3{height:91.200000px;}
.h7{height:109.440000px;}
.h8{height:110.160000px;}
.h6{height:111.744000px;}
.h4{height:165.240000px;}
.h9{height:167.616000px;}
.hd{height:273.600000px;}
.hc{height:275.400000px;}
.h5{height:684.000000px;}
.h1{height:5055.750000px;}
.h0{height:5055.840000px;}
.w3{width:42.315000px;}
.w2{width:42.330000px;}
.w1{width:3576.000000px;}
.w0{width:3576.240000px;}
.x0{left:0.000000px;}
.x2f{left:1.047450px;}
.x5{left:183.520050px;}
.x43{left:208.563000px;}
.x3c{left:230.652450px;}
.x34{left:232.409850px;}
.x33{left:233.897250px;}
.x2b{left:240.156000px;}
.x9{left:242.443350px;}
.x1d{left:244.532250px;}
.x8{left:246.018000px;}
.x7{left:247.674000px;}
.x32{left:297.905250px;}
.x6{left:303.186000px;}
.x2a{left:309.564000px;}
.x1c{left:366.907500px;}
.x3{left:426.760200px;}
.x3b{left:730.296450px;}
.x35{left:732.131850px;}
.x37{left:733.610550px;}
.x36{left:735.263850px;}
.xb{left:740.343450px;}
.x2c{left:742.048050px;}
.xc{left:743.644050px;}
.xd{left:745.193100px;}
.x1f{left:747.796200px;}
.x3a{left:799.105950px;}
.xa{left:804.387450px;}
.x2d{left:810.766800px;}
.x1e{left:868.108200px;}
.x38{left:1234.811250px;}
.x39{left:1236.360300px;}
.xf{left:1241.904150px;}
.x10{left:1243.092150px;}
.x11{left:1244.845500px;}
.x12{left:1246.393800px;}
.xe{left:1305.588150px;}
.x20{left:1369.309500px;}
.x2{left:1413.140550px;}
.x2e{left:1563.510000px;}
.x30{left:1565.160000px;}
.x31{left:1566.795000px;}
.x14{left:1932.123150px;}
.x15{left:1934.211150px;}
.x22{left:1935.223950px;}
.x27{left:1938.033150px;}
.x3f{left:1940.127000px;}
.x26{left:1960.929150px;}
.x3d{left:2001.103950px;}
.x3e{left:2022.783000px;}
.x21{left:2031.415950px;}
.x13{left:2054.559150px;}
.x18{left:2433.312750px;}
.x17{left:2435.699700px;}
.x40{left:2436.719250px;}
.x28{left:2438.447700px;}
.x29{left:2462.131350px;}
.x42{left:2502.306900px;}
.x1{left:2507.340150px;}
.x23{left:2532.616650px;}
.x16{left:2555.759700px;}
.x1a{left:2934.524400px;}
.x1b{left:2935.856400px;}
.x25{left:2937.626850px;}
.x41{left:2939.542500px;}
.x24{left:3033.818850px;}
.x4{left:3049.229700px;}
.x19{left:3056.960400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-9.600000pt;}
.ls1{letter-spacing:-3.840000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.384000pt;}
.ws3{word-spacing:-49.920000pt;}
.ws2{word-spacing:-46.080000pt;}
.ws4{word-spacing:-40.320000pt;}
.ws1{word-spacing:-33.280000pt;}
.ws8{word-spacing:-0.384000pt;}
.ws0{word-spacing:-0.106667pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:799.232000pt;}
.ws6{word-spacing:811.648000pt;}
._8{margin-left:-13.459200pt;}
._a{margin-left:-10.240000pt;}
._6{margin-left:-7.680000pt;}
._1{margin-left:-6.552128pt;}
._5{margin-left:-4.632128pt;}
._4{margin-left:-3.047872pt;}
._2{margin-left:-2.133333pt;}
._0{margin-left:-1.038752pt;}
._7{width:2.547200pt;}
._3{width:3.840000pt;}
._c{width:5.760000pt;}
._d{width:9.600000pt;}
._9{width:560.085333pt;}
._b{width:855.424000pt;}
.fs5{font-size:30.240876pt;}
.fs0{font-size:79.904000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:128.000000pt;}
.fs2{font-size:192.000000pt;}
.fs6{font-size:320.000000pt;}
.fs3{font-size:800.000000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:5.301067pt;}
.y94{bottom:5.302667pt;}
.y92{bottom:5.304800pt;}
.y9a{bottom:5.308933pt;}
.y90{bottom:5.309600pt;}
.y98{bottom:5.312267pt;}
.y6{bottom:131.013733pt;}
.y5{bottom:194.997733pt;}
.y4{bottom:258.981733pt;}
.y2{bottom:282.095600pt;}
.y1{bottom:302.071600pt;}
.y3{bottom:414.930933pt;}
.yce{bottom:667.872400pt;}
.ycd{bottom:763.872400pt;}
.y9b{bottom:994.269467pt;}
.yaf{bottom:995.936800pt;}
.yb3{bottom:1001.595733pt;}
.ycc{bottom:1003.263733pt;}
.ybe{bottom:1074.108533pt;}
.yae{bottom:1074.118400pt;}
.ycb{bottom:1081.443867pt;}
.yb2{bottom:1108.806400pt;}
.ybd{bottom:1112.508533pt;}
.yad{bottom:1112.518400pt;}
.yca{bottom:1119.843867pt;}
.yb1{bottom:1147.206400pt;}
.ybc{bottom:1150.908533pt;}
.yac{bottom:1150.918400pt;}
.yc9{bottom:1158.243867pt;}
.yb0{bottom:1185.606400pt;}
.ybb{bottom:1189.308533pt;}
.yab{bottom:1189.318400pt;}
.yc8{bottom:1196.643867pt;}
.yc0{bottom:1243.060400pt;}
.yb7{bottom:1243.387733pt;}
.ya8{bottom:1243.700400pt;}
.ya4{bottom:1244.020400pt;}
.y9f{bottom:1244.349467pt;}
.yc5{bottom:1244.888933pt;}
.yba{bottom:1252.060533pt;}
.ybf{bottom:1281.460400pt;}
.yb6{bottom:1281.787733pt;}
.ya7{bottom:1282.100400pt;}
.ya3{bottom:1282.420400pt;}
.y9e{bottom:1282.749467pt;}
.yc4{bottom:1283.288933pt;}
.yc3{bottom:1325.784933pt;}
.ya2{bottom:1328.308400pt;}
.yb5{bottom:1328.315733pt;}
.y9d{bottom:1328.317467pt;}
.yc2{bottom:1364.184933pt;}
.ya1{bottom:1366.708400pt;}
.yb4{bottom:1366.715733pt;}
.y9c{bottom:1366.717467pt;}
.ya6{bottom:1410.702800pt;}
.yaa{bottom:1410.703333pt;}
.yb9{bottom:1417.403200pt;}
.yc7{bottom:1418.028933pt;}
.ya0{bottom:1467.676400pt;}
.ya5{bottom:1468.302800pt;}
.ya9{bottom:1468.303333pt;}
.yb8{bottom:1475.003200pt;}
.yc1{bottom:1475.628267pt;}
.yc6{bottom:1475.628933pt;}
.y73{bottom:1690.091733pt;}
.y8e{bottom:1691.759733pt;}
.y5d{bottom:1695.544933pt;}
.y72{bottom:1697.212933pt;}
.y7d{bottom:1772.614400pt;}
.y66{bottom:1774.449067pt;}
.y8d{bottom:1805.804800pt;}
.y86{bottom:1811.013200pt;}
.y7c{bottom:1811.014400pt;}
.y65{bottom:1812.849067pt;}
.y6e{bottom:1813.794400pt;}
.y8c{bottom:1844.204800pt;}
.y85{bottom:1849.413200pt;}
.y7b{bottom:1849.414400pt;}
.y64{bottom:1851.249067pt;}
.y6d{bottom:1852.194400pt;}
.y8b{bottom:1882.604800pt;}
.y84{bottom:1887.813200pt;}
.y7a{bottom:1887.814400pt;}
.y63{bottom:1889.649067pt;}
.y6c{bottom:1890.594400pt;}
.y88{bottom:1941.631467pt;}
.y81{bottom:1943.551467pt;}
.y77{bottom:1943.563733pt;}
.y6a{bottom:1946.124667pt;}
.y61{bottom:1946.456933pt;}
.y70{bottom:1949.004667pt;}
.y87{bottom:1980.031467pt;}
.y80{bottom:1981.951467pt;}
.y76{bottom:1981.963733pt;}
.y69{bottom:1984.524667pt;}
.y60{bottom:1984.856933pt;}
.y6f{bottom:1987.404667pt;}
.y7f{bottom:2022.175467pt;}
.y75{bottom:2022.187733pt;}
.y68{bottom:2027.628667pt;}
.y5f{bottom:2027.640933pt;}
.y7e{bottom:2060.575467pt;}
.y74{bottom:2060.587733pt;}
.y67{bottom:2066.028667pt;}
.y5e{bottom:2066.040933pt;}
.y79{bottom:2105.899333pt;}
.y83{bottom:2106.524400pt;}
.y8a{bottom:2106.525067pt;}
.y71{bottom:2111.978800pt;}
.y93{bottom:2153.160000pt;}
.y99{bottom:2153.613333pt;}
.y91{bottom:2162.493333pt;}
.y97{bottom:2162.946667pt;}
.y78{bottom:2163.499333pt;}
.y82{bottom:2164.124400pt;}
.y89{bottom:2164.125067pt;}
.y62{bottom:2168.952533pt;}
.y6b{bottom:2169.578800pt;}
.y8f{bottom:2171.826667pt;}
.y95{bottom:2172.293333pt;}
.y48{bottom:2389.994133pt;}
.y31{bottom:2390.306667pt;}
.y51{bottom:2390.619200pt;}
.y3b{bottom:2390.932933pt;}
.y3a{bottom:2468.973867pt;}
.y5a{bottom:2470.156133pt;}
.y44{bottom:2470.231600pt;}
.y39{bottom:2507.373867pt;}
.y50{bottom:2507.617333pt;}
.y59{bottom:2508.556133pt;}
.y43{bottom:2508.631600pt;}
.y38{bottom:2545.773867pt;}
.y4f{bottom:2546.017333pt;}
.y58{bottom:2546.956133pt;}
.y42{bottom:2547.031600pt;}
.y37{bottom:2584.173867pt;}
.y4e{bottom:2584.417333pt;}
.y57{bottom:2585.356133pt;}
.y41{bottom:2585.431600pt;}
.y3f{bottom:2642.548933pt;}
.y46{bottom:2642.868933pt;}
.y35{bottom:2642.882667pt;}
.y55{bottom:2643.131200pt;}
.y4c{bottom:2643.434133pt;}
.y5c{bottom:2643.451200pt;}
.y3e{bottom:2680.948933pt;}
.y45{bottom:2681.268933pt;}
.y34{bottom:2681.282667pt;}
.y54{bottom:2681.531200pt;}
.y4b{bottom:2681.834133pt;}
.y5b{bottom:2681.851200pt;}
.y4a{bottom:2723.338133pt;}
.y53{bottom:2723.355200pt;}
.y3d{bottom:2723.412933pt;}
.y33{bottom:2723.426667pt;}
.y49{bottom:2761.738133pt;}
.y52{bottom:2761.755200pt;}
.y3c{bottom:2761.812933pt;}
.y32{bottom:2761.826667pt;}
.y47{bottom:2806.740533pt;}
.y4d{bottom:2863.401733pt;}
.y36{bottom:2863.714133pt;}
.y56{bottom:2864.026667pt;}
.y40{bottom:2864.340533pt;}
.y8{bottom:3083.619200pt;}
.y12{bottom:3084.244133pt;}
.y1b{bottom:3086.099600pt;}
.y25{bottom:3086.725867pt;}
.y11{bottom:3163.467333pt;}
.y24{bottom:3165.322800pt;}
.y10{bottom:3201.867333pt;}
.y23{bottom:3203.722800pt;}
.y2e{bottom:3204.349067pt;}
.yf{bottom:3240.267333pt;}
.y22{bottom:3242.122800pt;}
.y2d{bottom:3242.749067pt;}
.ye{bottom:3278.667333pt;}
.y21{bottom:3280.522800pt;}
.y2c{bottom:3281.149067pt;}
.y1a{bottom:3335.156133pt;}
.yc{bottom:3335.459200pt;}
.y16{bottom:3335.796133pt;}
.y30{bottom:3336.677867pt;}
.y29{bottom:3336.997867pt;}
.y1f{bottom:3337.299600pt;}
.y19{bottom:3373.556133pt;}
.yb{bottom:3373.859200pt;}
.y15{bottom:3374.196133pt;}
.y2f{bottom:3375.077867pt;}
.y28{bottom:3375.397867pt;}
.y1e{bottom:3375.699600pt;}
.ya{bottom:3415.555200pt;}
.y14{bottom:3415.572133pt;}
.y1d{bottom:3418.035600pt;}
.y27{bottom:3418.053867pt;}
.y9{bottom:3453.955200pt;}
.y13{bottom:3453.972133pt;}
.y1c{bottom:3456.435600pt;}
.y26{bottom:3456.453867pt;}
.y18{bottom:3500.051733pt;}
.y2b{bottom:3502.533467pt;}
.yd{bottom:3557.026667pt;}
.y17{bottom:3557.651733pt;}
.y20{bottom:3559.507200pt;}
.y2a{bottom:3560.133467pt;}
.y7{bottom:3757.337867pt;}
.ha{height:16.866667pt;}
.hb{height:20.155662pt;}
.h2{height:59.128960pt;}
.h3{height:81.066667pt;}
.h7{height:97.280000pt;}
.h8{height:97.920000pt;}
.h6{height:99.328000pt;}
.h4{height:146.880000pt;}
.h9{height:148.992000pt;}
.hd{height:243.200000pt;}
.hc{height:244.800000pt;}
.h5{height:608.000000pt;}
.h1{height:4494.000000pt;}
.h0{height:4494.080000pt;}
.w3{width:37.613333pt;}
.w2{width:37.626667pt;}
.w1{width:3178.666667pt;}
.w0{width:3178.880000pt;}
.x0{left:0.000000pt;}
.x2f{left:0.931067pt;}
.x5{left:163.128933pt;}
.x43{left:185.389333pt;}
.x3c{left:205.024400pt;}
.x34{left:206.586533pt;}
.x33{left:207.908667pt;}
.x2b{left:213.472000pt;}
.x9{left:215.505200pt;}
.x1d{left:217.362000pt;}
.x8{left:218.682667pt;}
.x7{left:220.154667pt;}
.x32{left:264.804667pt;}
.x6{left:269.498667pt;}
.x2a{left:275.168000pt;}
.x1c{left:326.140000pt;}
.x3{left:379.342400pt;}
.x3b{left:649.152400pt;}
.x35{left:650.783867pt;}
.x37{left:652.098267pt;}
.x36{left:653.567867pt;}
.xb{left:658.083067pt;}
.x2c{left:659.598267pt;}
.xc{left:661.016933pt;}
.xd{left:662.393867pt;}
.x1f{left:664.707733pt;}
.x3a{left:710.316400pt;}
.xa{left:715.011067pt;}
.x2d{left:720.681600pt;}
.x1e{left:771.651733pt;}
.x38{left:1097.610000pt;}
.x39{left:1098.986933pt;}
.xf{left:1103.914800pt;}
.x10{left:1104.970800pt;}
.x11{left:1106.529333pt;}
.x12{left:1107.905600pt;}
.xe{left:1160.522800pt;}
.x20{left:1217.164000pt;}
.x2{left:1256.124933pt;}
.x2e{left:1389.786667pt;}
.x30{left:1391.253333pt;}
.x31{left:1392.706667pt;}
.x14{left:1717.442800pt;}
.x15{left:1719.298800pt;}
.x22{left:1720.199067pt;}
.x27{left:1722.696133pt;}
.x3f{left:1724.557333pt;}
.x26{left:1743.048133pt;}
.x3d{left:1778.759067pt;}
.x3e{left:1798.029333pt;}
.x21{left:1805.703067pt;}
.x13{left:1826.274800pt;}
.x18{left:2162.944667pt;}
.x17{left:2165.066400pt;}
.x40{left:2165.972667pt;}
.x28{left:2167.509067pt;}
.x29{left:2188.561200pt;}
.x42{left:2224.272800pt;}
.x1{left:2228.746800pt;}
.x23{left:2251.214800pt;}
.x16{left:2271.786400pt;}
.x1a{left:2608.466133pt;}
.x1b{left:2609.650133pt;}
.x25{left:2611.223867pt;}
.x41{left:2612.926667pt;}
.x24{left:2696.727867pt;}
.x4{left:2710.426400pt;}
.x19{left:2717.298133pt;}
}




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