
    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_740398e1c64b4f63480e7b77.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_0d74bd1037d9f66c8fc318a5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_13a70b6ac8486f526ad82e29.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_ef09582d276f51ec2f446348.woff')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_1f08707ec6301ab322034609.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:20.880000px;}
.ls2{letter-spacing:43.848000px;}
.ls3{letter-spacing:188.597700px;}
.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;}
}
.ws5{word-spacing:-55.944000px;}
.wsa{word-spacing:-38.791500px;}
.ws7{word-spacing:-38.656800px;}
.ws38{word-spacing:-38.655000px;}
.ws5c{word-spacing:-38.653200px;}
.ws59{word-spacing:-38.649600px;}
.ws6{word-spacing:-38.649000px;}
.ws35{word-spacing:-38.647800px;}
.ws34{word-spacing:-38.618400px;}
.wsb{word-spacing:-38.583000px;}
.ws28{word-spacing:-38.577600px;}
.ws1e{word-spacing:-38.571300px;}
.ws21{word-spacing:-38.440800px;}
.ws9{word-spacing:-38.439000px;}
.ws4e{word-spacing:-38.436600px;}
.ws53{word-spacing:-38.433600px;}
.ws43{word-spacing:-38.425500px;}
.ws16{word-spacing:-38.409600px;}
.ws15{word-spacing:-38.362500px;}
.ws4{word-spacing:-38.160000px;}
.ws45{word-spacing:-38.149200px;}
.ws2b{word-spacing:-38.147400px;}
.ws49{word-spacing:-38.146800px;}
.ws48{word-spacing:-38.145600px;}
.ws67{word-spacing:-38.142000px;}
.ws2{word-spacing:-38.081700px;}
.ws6a{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws75{word-spacing:-37.940400px;}
.ws12{word-spacing:-37.938600px;}
.ws3{word-spacing:-37.936800px;}
.ws2f{word-spacing:-37.935600px;}
.ws8{word-spacing:-37.933200px;}
.ws73{word-spacing:-37.931400px;}
.ws6c{word-spacing:-37.929600px;}
.ws6e{word-spacing:-37.927800px;}
.ws5f{word-spacing:-37.866600px;}
.ws56{word-spacing:-37.711800px;}
.ws3b{word-spacing:-37.700100px;}
.ws68{word-spacing:-37.639800px;}
.ws3e{word-spacing:-37.432800px;}
.ws33{word-spacing:-37.431000px;}
.ws70{word-spacing:-37.428300px;}
.ws62{word-spacing:-37.215000px;}
.ws71{word-spacing:-35.771400px;}
.ws46{word-spacing:-35.554800px;}
.ws32{word-spacing:-35.280000px;}
.ws39{word-spacing:-34.039800px;}
.ws1d{word-spacing:-33.972300px;}
.ws3a{word-spacing:-33.630000px;}
.ws58{word-spacing:-33.612300px;}
.ws6f{word-spacing:-33.109200px;}
.ws26{word-spacing:-32.895000px;}
.ws47{word-spacing:-32.181000px;}
.ws6b{word-spacing:-31.453200px;}
.ws11{word-spacing:-31.246800px;}
.ws31{word-spacing:-30.735000px;}
.ws4d{word-spacing:-30.235200px;}
.ws69{word-spacing:-30.024000px;}
.ws72{word-spacing:-30.015900px;}
.ws24{word-spacing:-30.013200px;}
.ws2e{word-spacing:-30.007800px;}
.ws5d{word-spacing:-29.802600px;}
.ws20{word-spacing:-28.584000px;}
.ws1f{word-spacing:-28.080000px;}
.ws74{word-spacing:-27.858000px;}
.ws3f{word-spacing:-27.549900px;}
.ws40{word-spacing:-27.144000px;}
.ws52{word-spacing:-27.135900px;}
.ws2d{word-spacing:-27.127200px;}
.wsf{word-spacing:-26.199600px;}
.ws64{word-spacing:-24.973200px;}
.ws1c{word-spacing:-24.264000px;}
.ws23{word-spacing:-23.754000px;}
.ws22{word-spacing:-23.025600px;}
.ws27{word-spacing:-21.596400px;}
.ws37{word-spacing:-20.655000px;}
.ws36{word-spacing:-20.149200px;}
.ws5b{word-spacing:-19.440000px;}
.ws63{word-spacing:-19.215000px;}
.ws29{word-spacing:-18.709200px;}
.ws2a{word-spacing:-18.705600px;}
.ws6d{word-spacing:-18.500100px;}
.ws61{word-spacing:-18.471600px;}
.ws5e{word-spacing:-17.928000px;}
.ws1a{word-spacing:-17.790000px;}
.ws2c{word-spacing:-17.769600px;}
.ws66{word-spacing:-16.344600px;}
.wse{word-spacing:-15.624000px;}
.ws25{word-spacing:-15.120000px;}
.ws42{word-spacing:-14.904000px;}
.ws3d{word-spacing:-14.891400px;}
.ws41{word-spacing:-14.885100px;}
.ws50{word-spacing:-14.675400px;}
.ws3c{word-spacing:-14.178000px;}
.ws30{word-spacing:-13.959000px;}
.ws55{word-spacing:-13.455600px;}
.ws65{word-spacing:-12.949200px;}
.ws1b{word-spacing:-9.846000px;}
.wsc{word-spacing:-8.200800px;}
.ws4a{word-spacing:0.000000px;}
.ws14{word-spacing:0.226800px;}
.ws13{word-spacing:0.727200px;}
.wsd{word-spacing:2.912400px;}
.ws44{word-spacing:9.085200px;}
.ws10{word-spacing:11.739000px;}
.ws60{word-spacing:14.128800px;}
.ws19{word-spacing:17.147700px;}
.ws18{word-spacing:27.230100px;}
.ws17{word-spacing:27.360000px;}
.ws4b{word-spacing:106.056000px;}
.ws4c{word-spacing:169.437000px;}
.ws5a{word-spacing:244.527600px;}
.ws4f{word-spacing:258.920100px;}
.ws51{word-spacing:493.422000px;}
.ws57{word-spacing:925.733700px;}
.ws1{word-spacing:1037.484900px;}
.ws54{word-spacing:1045.943400px;}
._11{margin-left:-2.176800px;}
._2{margin-left:-1.091700px;}
._0{width:1.076400px;}
._18{width:2.176800px;}
._1{width:18.968400px;}
._14{width:20.430000px;}
._13{width:21.834900px;}
._1b{width:23.472000px;}
._f{width:24.861000px;}
._8{width:26.151300px;}
._1a{width:27.415500px;}
._1f{width:29.739300px;}
._6{width:30.816000px;}
._1d{width:32.451300px;}
._e{width:33.807600px;}
._15{width:36.615600px;}
._10{width:38.884500px;}
._c{width:40.187700px;}
._5{width:41.688000px;}
._16{width:42.744000px;}
._12{width:44.199000px;}
._d{width:47.448000px;}
._3{width:49.456800px;}
._9{width:57.481200px;}
._4{width:60.048000px;}
._17{width:66.145200px;}
._7{width:69.491700px;}
._1c{width:71.208000px;}
._b{width:74.160000px;}
._a{width:84.936600px;}
._1e{width:139.680000px;}
._19{width:226.707000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:59.700000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y4f{bottom:121.575000px;}
.y75{bottom:122.655000px;}
.y74{bottom:143.175000px;}
.y27{bottom:162.075000px;}
.y4e{bottom:163.336500px;}
.y73{bottom:163.875000px;}
.y26{bottom:182.775000px;}
.y4d{bottom:184.036500px;}
.y72{bottom:184.575000px;}
.y4c{bottom:204.736500px;}
.y71{bottom:205.275000px;}
.y25{bottom:224.536500px;}
.y4b{bottom:225.436500px;}
.y70{bottom:225.975000px;}
.y24{bottom:245.236500px;}
.y4a{bottom:246.136500px;}
.y6f{bottom:246.675000px;}
.y49{bottom:266.836500px;}
.y6e{bottom:267.375000px;}
.y23{bottom:286.815000px;}
.y22{bottom:307.515000px;}
.y48{bottom:308.596500px;}
.y6d{bottom:309.136500px;}
.y21{bottom:328.215000px;}
.y47{bottom:329.295000px;}
.y20{bottom:348.915000px;}
.y6c{bottom:350.896500px;}
.y1f{bottom:369.615000px;}
.y46{bottom:370.875000px;}
.y6b{bottom:371.596500px;}
.y1e{bottom:390.315000px;}
.y6a{bottom:392.295000px;}
.y1d{bottom:411.015000px;}
.y45{bottom:412.636500px;}
.y69{bottom:412.996500px;}
.y1c{bottom:431.715000px;}
.y44{bottom:433.336500px;}
.y43{bottom:454.036500px;}
.y68{bottom:454.575000px;}
.y1b{bottom:473.475000px;}
.y42{bottom:474.736500px;}
.y67{bottom:475.275000px;}
.y1a{bottom:494.175000px;}
.y41{bottom:495.436500px;}
.y66{bottom:495.975000px;}
.y40{bottom:516.136500px;}
.y65{bottom:516.675000px;}
.y19{bottom:535.936500px;}
.y3f{bottom:536.836500px;}
.y64{bottom:537.375000px;}
.y18{bottom:556.636500px;}
.y3e{bottom:557.536500px;}
.y3d{bottom:578.236500px;}
.y63{bottom:579.136500px;}
.y17{bottom:598.215000px;}
.y3c{bottom:598.936500px;}
.y62{bottom:599.836500px;}
.y16{bottom:618.915000px;}
.y61{bottom:620.536500px;}
.y15{bottom:639.615000px;}
.y3b{bottom:640.695000px;}
.y60{bottom:641.236500px;}
.y14{bottom:660.315000px;}
.y13{bottom:681.015000px;}
.y3a{bottom:682.275000px;}
.y5f{bottom:682.996500px;}
.y12{bottom:701.715000px;}
.y39{bottom:702.975000px;}
.y11{bottom:722.415000px;}
.y38{bottom:723.675000px;}
.y5e{bottom:724.575000px;}
.y37{bottom:744.375000px;}
.y5d{bottom:745.275000px;}
.y10{bottom:764.175000px;}
.y36{bottom:765.075000px;}
.y5c{bottom:765.975000px;}
.yf{bottom:784.875000px;}
.y35{bottom:806.836500px;}
.y5b{bottom:807.736500px;}
.y34{bottom:827.536500px;}
.y5a{bottom:828.436500px;}
.y59{bottom:849.136500px;}
.y33{bottom:869.295000px;}
.y58{bottom:869.836500px;}
.ye{bottom:889.275000px;}
.y32{bottom:889.995000px;}
.y57{bottom:890.536500px;}
.yd{bottom:909.975000px;}
.y31{bottom:910.695000px;}
.y56{bottom:911.236500px;}
.yc{bottom:930.675000px;}
.y30{bottom:931.395000px;}
.y55{bottom:931.936500px;}
.y2f{bottom:952.095000px;}
.y54{bottom:952.636500px;}
.yb{bottom:972.436500px;}
.y53{bottom:973.336500px;}
.ya{bottom:993.136500px;}
.y2e{bottom:993.675000px;}
.y52{bottom:994.036500px;}
.y9{bottom:1013.836500px;}
.y2d{bottom:1014.375000px;}
.y51{bottom:1014.736500px;}
.y8{bottom:1034.536500px;}
.y50{bottom:1035.436500px;}
.y2c{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y2b{bottom:1076.836500px;}
.y2a{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y29{bottom:1118.236500px;}
.y28{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h4{height:50.027344px;}
.h2{height:62.261719px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x10{left:53.100000px;}
.x12{left:69.838500px;}
.x9{left:72.000000px;}
.x19{left:75.600000px;}
.xd{left:78.120000px;}
.xf{left:84.600000px;}
.x11{left:89.100000px;}
.x15{left:91.800000px;}
.x18{left:93.600000px;}
.x17{left:98.100000px;}
.x14{left:102.600000px;}
.x13{left:107.100000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xc{left:145.800000px;}
.x2{left:160.560000px;}
.x6{left:180.900000px;}
.x16{left:265.680000px;}
.xe{left:290.700000px;}
.xb{left:310.138500px;}
.x8{left:311.938500px;}
.x5{left:313.200000px;}
.x7{left:321.120000px;}
.xa{left:402.480000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:18.560000pt;}
.ls2{letter-spacing:38.976000pt;}
.ls3{letter-spacing:167.642400pt;}
.ws5{word-spacing:-49.728000pt;}
.wsa{word-spacing:-34.481333pt;}
.ws7{word-spacing:-34.361600pt;}
.ws38{word-spacing:-34.360000pt;}
.ws5c{word-spacing:-34.358400pt;}
.ws59{word-spacing:-34.355200pt;}
.ws6{word-spacing:-34.354667pt;}
.ws35{word-spacing:-34.353600pt;}
.ws34{word-spacing:-34.327467pt;}
.wsb{word-spacing:-34.296000pt;}
.ws28{word-spacing:-34.291200pt;}
.ws1e{word-spacing:-34.285600pt;}
.ws21{word-spacing:-34.169600pt;}
.ws9{word-spacing:-34.168000pt;}
.ws4e{word-spacing:-34.165867pt;}
.ws53{word-spacing:-34.163200pt;}
.ws43{word-spacing:-34.156000pt;}
.ws16{word-spacing:-34.141867pt;}
.ws15{word-spacing:-34.100000pt;}
.ws4{word-spacing:-33.920000pt;}
.ws45{word-spacing:-33.910400pt;}
.ws2b{word-spacing:-33.908800pt;}
.ws49{word-spacing:-33.908267pt;}
.ws48{word-spacing:-33.907200pt;}
.ws67{word-spacing:-33.904000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws6a{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws75{word-spacing:-33.724800pt;}
.ws12{word-spacing:-33.723200pt;}
.ws3{word-spacing:-33.721600pt;}
.ws2f{word-spacing:-33.720533pt;}
.ws8{word-spacing:-33.718400pt;}
.ws73{word-spacing:-33.716800pt;}
.ws6c{word-spacing:-33.715200pt;}
.ws6e{word-spacing:-33.713600pt;}
.ws5f{word-spacing:-33.659200pt;}
.ws56{word-spacing:-33.521600pt;}
.ws3b{word-spacing:-33.511200pt;}
.ws68{word-spacing:-33.457600pt;}
.ws3e{word-spacing:-33.273600pt;}
.ws33{word-spacing:-33.272000pt;}
.ws70{word-spacing:-33.269600pt;}
.ws62{word-spacing:-33.080000pt;}
.ws71{word-spacing:-31.796800pt;}
.ws46{word-spacing:-31.604267pt;}
.ws32{word-spacing:-31.360000pt;}
.ws39{word-spacing:-30.257600pt;}
.ws1d{word-spacing:-30.197600pt;}
.ws3a{word-spacing:-29.893333pt;}
.ws58{word-spacing:-29.877600pt;}
.ws6f{word-spacing:-29.430400pt;}
.ws26{word-spacing:-29.240000pt;}
.ws47{word-spacing:-28.605333pt;}
.ws6b{word-spacing:-27.958400pt;}
.ws11{word-spacing:-27.774933pt;}
.ws31{word-spacing:-27.320000pt;}
.ws4d{word-spacing:-26.875733pt;}
.ws69{word-spacing:-26.688000pt;}
.ws72{word-spacing:-26.680800pt;}
.ws24{word-spacing:-26.678400pt;}
.ws2e{word-spacing:-26.673600pt;}
.ws5d{word-spacing:-26.491200pt;}
.ws20{word-spacing:-25.408000pt;}
.ws1f{word-spacing:-24.960000pt;}
.ws74{word-spacing:-24.762667pt;}
.ws3f{word-spacing:-24.488800pt;}
.ws40{word-spacing:-24.128000pt;}
.ws52{word-spacing:-24.120800pt;}
.ws2d{word-spacing:-24.113067pt;}
.wsf{word-spacing:-23.288533pt;}
.ws64{word-spacing:-22.198400pt;}
.ws1c{word-spacing:-21.568000pt;}
.ws23{word-spacing:-21.114667pt;}
.ws22{word-spacing:-20.467200pt;}
.ws27{word-spacing:-19.196800pt;}
.ws37{word-spacing:-18.360000pt;}
.ws36{word-spacing:-17.910400pt;}
.ws5b{word-spacing:-17.280000pt;}
.ws63{word-spacing:-17.080000pt;}
.ws29{word-spacing:-16.630400pt;}
.ws2a{word-spacing:-16.627200pt;}
.ws6d{word-spacing:-16.444533pt;}
.ws61{word-spacing:-16.419200pt;}
.ws5e{word-spacing:-15.936000pt;}
.ws1a{word-spacing:-15.813333pt;}
.ws2c{word-spacing:-15.795200pt;}
.ws66{word-spacing:-14.528533pt;}
.wse{word-spacing:-13.888000pt;}
.ws25{word-spacing:-13.440000pt;}
.ws42{word-spacing:-13.248000pt;}
.ws3d{word-spacing:-13.236800pt;}
.ws41{word-spacing:-13.231200pt;}
.ws50{word-spacing:-13.044800pt;}
.ws3c{word-spacing:-12.602667pt;}
.ws30{word-spacing:-12.408000pt;}
.ws55{word-spacing:-11.960533pt;}
.ws65{word-spacing:-11.510400pt;}
.ws1b{word-spacing:-8.752000pt;}
.wsc{word-spacing:-7.289600pt;}
.ws4a{word-spacing:0.000000pt;}
.ws14{word-spacing:0.201600pt;}
.ws13{word-spacing:0.646400pt;}
.wsd{word-spacing:2.588800pt;}
.ws44{word-spacing:8.075733pt;}
.ws10{word-spacing:10.434667pt;}
.ws60{word-spacing:12.558933pt;}
.ws19{word-spacing:15.242400pt;}
.ws18{word-spacing:24.204533pt;}
.ws17{word-spacing:24.320000pt;}
.ws4b{word-spacing:94.272000pt;}
.ws4c{word-spacing:150.610667pt;}
.ws5a{word-spacing:217.357867pt;}
.ws4f{word-spacing:230.151200pt;}
.ws51{word-spacing:438.597333pt;}
.ws57{word-spacing:822.874400pt;}
.ws1{word-spacing:922.208800pt;}
.ws54{word-spacing:929.727467pt;}
._11{margin-left:-1.934933pt;}
._2{margin-left:-0.970400pt;}
._0{width:0.956800pt;}
._18{width:1.934933pt;}
._1{width:16.860800pt;}
._14{width:18.160000pt;}
._13{width:19.408800pt;}
._1b{width:20.864000pt;}
._f{width:22.098667pt;}
._8{width:23.245600pt;}
._1a{width:24.369333pt;}
._1f{width:26.434933pt;}
._6{width:27.392000pt;}
._1d{width:28.845600pt;}
._e{width:30.051200pt;}
._15{width:32.547200pt;}
._10{width:34.564000pt;}
._c{width:35.722400pt;}
._5{width:37.056000pt;}
._16{width:37.994667pt;}
._12{width:39.288000pt;}
._d{width:42.176000pt;}
._3{width:43.961600pt;}
._9{width:51.094400pt;}
._4{width:53.376000pt;}
._17{width:58.795733pt;}
._7{width:61.770400pt;}
._1c{width:63.296000pt;}
._b{width:65.920000pt;}
._a{width:75.499200pt;}
._1e{width:124.160000pt;}
._19{width:201.517333pt;}
.fs1{font-size:53.066667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y4f{bottom:108.066667pt;}
.y75{bottom:109.026667pt;}
.y74{bottom:127.266667pt;}
.y27{bottom:144.066667pt;}
.y4e{bottom:145.188000pt;}
.y73{bottom:145.666667pt;}
.y26{bottom:162.466667pt;}
.y4d{bottom:163.588000pt;}
.y72{bottom:164.066667pt;}
.y4c{bottom:181.988000pt;}
.y71{bottom:182.466667pt;}
.y25{bottom:199.588000pt;}
.y4b{bottom:200.388000pt;}
.y70{bottom:200.866667pt;}
.y24{bottom:217.988000pt;}
.y4a{bottom:218.788000pt;}
.y6f{bottom:219.266667pt;}
.y49{bottom:237.188000pt;}
.y6e{bottom:237.666667pt;}
.y23{bottom:254.946667pt;}
.y22{bottom:273.346667pt;}
.y48{bottom:274.308000pt;}
.y6d{bottom:274.788000pt;}
.y21{bottom:291.746667pt;}
.y47{bottom:292.706667pt;}
.y20{bottom:310.146667pt;}
.y6c{bottom:311.908000pt;}
.y1f{bottom:328.546667pt;}
.y46{bottom:329.666667pt;}
.y6b{bottom:330.308000pt;}
.y1e{bottom:346.946667pt;}
.y6a{bottom:348.706667pt;}
.y1d{bottom:365.346667pt;}
.y45{bottom:366.788000pt;}
.y69{bottom:367.108000pt;}
.y1c{bottom:383.746667pt;}
.y44{bottom:385.188000pt;}
.y43{bottom:403.588000pt;}
.y68{bottom:404.066667pt;}
.y1b{bottom:420.866667pt;}
.y42{bottom:421.988000pt;}
.y67{bottom:422.466667pt;}
.y1a{bottom:439.266667pt;}
.y41{bottom:440.388000pt;}
.y66{bottom:440.866667pt;}
.y40{bottom:458.788000pt;}
.y65{bottom:459.266667pt;}
.y19{bottom:476.388000pt;}
.y3f{bottom:477.188000pt;}
.y64{bottom:477.666667pt;}
.y18{bottom:494.788000pt;}
.y3e{bottom:495.588000pt;}
.y3d{bottom:513.988000pt;}
.y63{bottom:514.788000pt;}
.y17{bottom:531.746667pt;}
.y3c{bottom:532.388000pt;}
.y62{bottom:533.188000pt;}
.y16{bottom:550.146667pt;}
.y61{bottom:551.588000pt;}
.y15{bottom:568.546667pt;}
.y3b{bottom:569.506667pt;}
.y60{bottom:569.988000pt;}
.y14{bottom:586.946667pt;}
.y13{bottom:605.346667pt;}
.y3a{bottom:606.466667pt;}
.y5f{bottom:607.108000pt;}
.y12{bottom:623.746667pt;}
.y39{bottom:624.866667pt;}
.y11{bottom:642.146667pt;}
.y38{bottom:643.266667pt;}
.y5e{bottom:644.066667pt;}
.y37{bottom:661.666667pt;}
.y5d{bottom:662.466667pt;}
.y10{bottom:679.266667pt;}
.y36{bottom:680.066667pt;}
.y5c{bottom:680.866667pt;}
.yf{bottom:697.666667pt;}
.y35{bottom:717.188000pt;}
.y5b{bottom:717.988000pt;}
.y34{bottom:735.588000pt;}
.y5a{bottom:736.388000pt;}
.y59{bottom:754.788000pt;}
.y33{bottom:772.706667pt;}
.y58{bottom:773.188000pt;}
.ye{bottom:790.466667pt;}
.y32{bottom:791.106667pt;}
.y57{bottom:791.588000pt;}
.yd{bottom:808.866667pt;}
.y31{bottom:809.506667pt;}
.y56{bottom:809.988000pt;}
.yc{bottom:827.266667pt;}
.y30{bottom:827.906667pt;}
.y55{bottom:828.388000pt;}
.y2f{bottom:846.306667pt;}
.y54{bottom:846.788000pt;}
.yb{bottom:864.388000pt;}
.y53{bottom:865.188000pt;}
.ya{bottom:882.788000pt;}
.y2e{bottom:883.266667pt;}
.y52{bottom:883.588000pt;}
.y9{bottom:901.188000pt;}
.y2d{bottom:901.666667pt;}
.y51{bottom:901.988000pt;}
.y8{bottom:919.588000pt;}
.y50{bottom:920.388000pt;}
.y2c{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y2b{bottom:957.188000pt;}
.y2a{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y29{bottom:993.988000pt;}
.y28{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h4{height:44.468750pt;}
.h2{height:55.343750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x10{left:47.200000pt;}
.x12{left:62.078667pt;}
.x9{left:64.000000pt;}
.x19{left:67.200000pt;}
.xd{left:69.440000pt;}
.xf{left:75.200000pt;}
.x11{left:79.200000pt;}
.x15{left:81.600000pt;}
.x18{left:83.200000pt;}
.x17{left:87.200000pt;}
.x14{left:91.200000pt;}
.x13{left:95.200000pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xc{left:129.600000pt;}
.x2{left:142.720000pt;}
.x6{left:160.800000pt;}
.x16{left:236.160000pt;}
.xe{left:258.400000pt;}
.xb{left:275.678667pt;}
.x8{left:277.278667pt;}
.x5{left:278.400000pt;}
.x7{left:285.440000pt;}
.xa{left:357.760000pt;}
}




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