
    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_cc05fbd03b83f153ac756450.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_59188d27d68dc6a59ae8ff83.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_08930e22c54ae2c390ff7b57.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_460e49bd63467c4ff55f0b93.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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;}
}
.ws6{word-spacing:-55.944000px;}
.ws41{word-spacing:-38.661000px;}
.ws69{word-spacing:-38.660400px;}
.ws2d{word-spacing:-38.655000px;}
.ws40{word-spacing:-38.651400px;}
.ws3e{word-spacing:-38.647800px;}
.ws5c{word-spacing:-38.637900px;}
.ws8{word-spacing:-38.443200px;}
.ws58{word-spacing:-38.437200px;}
.ws3d{word-spacing:-38.435400px;}
.ws19{word-spacing:-38.166000px;}
.ws42{word-spacing:-38.160000px;}
.ws5d{word-spacing:-38.159700px;}
.ws2c{word-spacing:-38.154600px;}
.ws70{word-spacing:-38.152500px;}
.ws38{word-spacing:-38.149200px;}
.ws63{word-spacing:-38.147400px;}
.ws61{word-spacing:-38.146500px;}
.ws45{word-spacing:-38.141400px;}
.ws2e{word-spacing:-38.140200px;}
.ws2{word-spacing:-38.081700px;}
.ws7{word-spacing:-38.073000px;}
.ws0{word-spacing:-37.944000px;}
.ws72{word-spacing:-37.942800px;}
.ws1c{word-spacing:-37.942200px;}
.ws3{word-spacing:-37.941900px;}
.ws47{word-spacing:-37.935000px;}
.ws37{word-spacing:-37.933200px;}
.ws48{word-spacing:-37.932300px;}
.ws3b{word-spacing:-37.923300px;}
.ws4{word-spacing:-37.921800px;}
.ws5{word-spacing:-37.905300px;}
.ws54{word-spacing:-37.720800px;}
.ws51{word-spacing:-37.720200px;}
.ws33{word-spacing:-37.717200px;}
.ws3f{word-spacing:-37.716000px;}
.ws6e{word-spacing:-37.702800px;}
.ws12{word-spacing:-37.440000px;}
.ws43{word-spacing:-37.435500px;}
.ws67{word-spacing:-37.424700px;}
.ws32{word-spacing:-37.224000px;}
.ws27{word-spacing:-37.220400px;}
.ws26{word-spacing:-37.203900px;}
.ws6d{word-spacing:-37.197000px;}
.ws4a{word-spacing:-37.005300px;}
.wsf{word-spacing:-37.000800px;}
.ws6b{word-spacing:-36.503100px;}
.wsb{word-spacing:-36.493200px;}
.ws14{word-spacing:-36.491400px;}
.ws13{word-spacing:-35.991600px;}
.ws21{word-spacing:-35.064000px;}
.ws5f{word-spacing:-34.826400px;}
.ws2f{word-spacing:-33.624000px;}
.ws16{word-spacing:-33.622200px;}
.ws4c{word-spacing:-33.615000px;}
.ws20{word-spacing:-32.904000px;}
.ws31{word-spacing:-32.883600px;}
.wsc{word-spacing:-32.680800px;}
.ws30{word-spacing:-32.400000px;}
.wsa{word-spacing:-32.178600px;}
.ws22{word-spacing:-31.470000px;}
.ws25{word-spacing:-31.457400px;}
.ws9{word-spacing:-31.445100px;}
.ws18{word-spacing:-31.242600px;}
.ws5e{word-spacing:-30.744000px;}
.ws11{word-spacing:-30.730500px;}
.ws10{word-spacing:-30.231900px;}
.ws65{word-spacing:-30.023100px;}
.wsd{word-spacing:-30.018000px;}
.ws68{word-spacing:-28.793700px;}
.ws39{word-spacing:-28.076400px;}
.ws15{word-spacing:-27.856800px;}
.ws6f{word-spacing:-27.846900px;}
.ws17{word-spacing:-27.360000px;}
.ws28{word-spacing:-27.144000px;}
.ws2a{word-spacing:-27.141300px;}
.ws64{word-spacing:-25.913400px;}
.ws59{word-spacing:-24.480000px;}
.ws1a{word-spacing:-24.469200px;}
.ws1b{word-spacing:-24.250500px;}
.ws56{word-spacing:-24.019200px;}
.ws62{word-spacing:-23.760000px;}
.ws46{word-spacing:-22.824000px;}
.ws6a{word-spacing:-21.368700px;}
.ws44{word-spacing:-21.367800px;}
.wse{word-spacing:-20.862000px;}
.ws3c{word-spacing:-20.664000px;}
.ws60{word-spacing:-20.418600px;}
.ws66{word-spacing:-18.720000px;}
.ws29{word-spacing:-18.501000px;}
.ws49{word-spacing:-17.564100px;}
.ws3a{word-spacing:-16.335000px;}
.ws34{word-spacing:-15.109200px;}
.ws71{word-spacing:-14.908200px;}
.ws6c{word-spacing:-14.871000px;}
.ws36{word-spacing:-13.464000px;}
.ws5b{word-spacing:-10.578600px;}
.ws2b{word-spacing:-9.142800px;}
.ws1e{word-spacing:-6.630000px;}
.ws1d{word-spacing:-6.486000px;}
.ws4e{word-spacing:-6.042600px;}
.ws57{word-spacing:-5.317200px;}
.ws35{word-spacing:-3.361200px;}
.ws52{word-spacing:-1.207500px;}
.ws1f{word-spacing:-0.709200px;}
.ws5a{word-spacing:0.000000px;}
.ws23{word-spacing:2.166000px;}
.ws24{word-spacing:2.376000px;}
.ws4d{word-spacing:3.834000px;}
.ws4f{word-spacing:21.318300px;}
.ws53{word-spacing:35.514000px;}
.ws4b{word-spacing:38.163600px;}
.ws50{word-spacing:52.068600px;}
.ws55{word-spacing:128.160000px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.138500px;}
._0{width:1.076400px;}
._c{width:17.342400px;}
._1{width:18.968400px;}
._4{width:20.646000px;}
._19{width:22.688100px;}
._5{width:24.336000px;}
._3{width:25.588200px;}
._6{width:27.009600px;}
._11{width:29.160000px;}
._8{width:30.168000px;}
._1c{width:31.745400px;}
._9{width:33.109200px;}
._12{width:34.419600px;}
._7{width:36.241200px;}
._d{width:38.780700px;}
._13{width:40.604100px;}
._f{width:42.185700px;}
._10{width:43.560000px;}
._e{width:47.878800px;}
._18{width:51.757200px;}
._a{width:54.134100px;}
._b{width:59.112000px;}
._1b{width:64.465200px;}
._15{width:79.187400px;}
._1a{width:82.800000px;}
._17{width:93.204000px;}
._14{width:95.756400px;}
._1d{width:100.800000px;}
._16{width:109.787400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:3.840000px;}
.y50{bottom:3.871500px;}
.y54{bottom:3.900000px;}
.y58{bottom:3.930000px;}
.y5c{bottom:3.961500px;}
.y64{bottom:4.786500px;}
.y4{bottom:12.240000px;}
.y4f{bottom:24.570000px;}
.y53{bottom:24.600000px;}
.y57{bottom:24.630000px;}
.y5b{bottom:24.661500px;}
.y63{bottom:25.486500px;}
.y56{bottom:45.150000px;}
.y5a{bottom:45.180000px;}
.y52{bottom:45.300000px;}
.y60{bottom:45.690000px;}
.y62{bottom:46.005000px;}
.y3{bottom:63.975000px;}
.y5f{bottom:66.390000px;}
.y5e{bottom:86.911500px;}
.y45{bottom:119.236500px;}
.y6a{bottom:135.075000px;}
.y26{bottom:140.836500px;}
.y69{bottom:155.775000px;}
.y44{bottom:160.996500px;}
.y25{bottom:182.415000px;}
.y68{bottom:197.536500px;}
.y43{bottom:202.575000px;}
.y24{bottom:203.115000px;}
.y67{bottom:218.236500px;}
.y23{bottom:223.815000px;}
.y42{bottom:244.336500px;}
.y66{bottom:259.996500px;}
.y22{bottom:265.575000px;}
.y41{bottom:286.096500px;}
.y21{bottom:286.275000px;}
.y65{bottom:301.575000px;}
.y40{bottom:327.675000px;}
.y20{bottom:328.036500px;}
.y61{bottom:339.450000px;}
.y1f{bottom:348.736500px;}
.y1e{bottom:369.436500px;}
.y1d{bottom:390.136500px;}
.y5d{bottom:403.125000px;}
.y1c{bottom:410.836500px;}
.y3f{bottom:411.196500px;}
.y1b{bottom:431.536500px;}
.y3e{bottom:452.775000px;}
.y1a{bottom:473.115000px;}
.y83{bottom:475.275000px;}
.y19{bottom:493.815000px;}
.y3d{bottom:494.536500px;}
.y82{bottom:495.975000px;}
.y59{bottom:507.675000px;}
.y3c{bottom:515.236500px;}
.y81{bottom:516.675000px;}
.y18{bottom:535.575000px;}
.y80{bottom:537.375000px;}
.y17{bottom:556.275000px;}
.y3b{bottom:556.996500px;}
.y7f{bottom:558.075000px;}
.y55{bottom:570.525000px;}
.y16{bottom:576.975000px;}
.y7e{bottom:578.775000px;}
.y15{bottom:597.675000px;}
.y3a{bottom:598.575000px;}
.y7d{bottom:599.475000px;}
.y14{bottom:618.375000px;}
.y39{bottom:619.275000px;}
.y7c{bottom:620.175000px;}
.y51{bottom:633.375000px;}
.y13{bottom:639.075000px;}
.y38{bottom:639.975000px;}
.y7b{bottom:640.875000px;}
.y7a{bottom:661.575000px;}
.y12{bottom:680.836500px;}
.y37{bottom:681.736500px;}
.y79{bottom:682.275000px;}
.y4e{bottom:696.225000px;}
.y11{bottom:701.536500px;}
.y78{bottom:702.975000px;}
.y36{bottom:723.496500px;}
.y77{bottom:723.675000px;}
.y4c{bottom:738.375000px;}
.y10{bottom:743.115000px;}
.y35{bottom:744.195000px;}
.y76{bottom:744.375000px;}
.yf{bottom:763.815000px;}
.y34{bottom:764.895000px;}
.y75{bottom:765.075000px;}
.ye{bottom:784.515000px;}
.y33{bottom:785.596500px;}
.y74{bottom:785.775000px;}
.yd{bottom:805.215000px;}
.y73{bottom:806.475000px;}
.yc{bottom:825.915000px;}
.y4b{bottom:826.275000px;}
.y32{bottom:827.175000px;}
.yb{bottom:846.615000px;}
.y72{bottom:847.875000px;}
.y4a{bottom:868.036500px;}
.y71{bottom:868.575000px;}
.y31{bottom:868.936500px;}
.ya{bottom:888.375000px;}
.y49{bottom:888.736500px;}
.y70{bottom:889.275000px;}
.y30{bottom:889.636500px;}
.y2f{bottom:910.336500px;}
.y9{bottom:930.136500px;}
.y48{bottom:930.495000px;}
.y2e{bottom:931.036500px;}
.y47{bottom:951.195000px;}
.y2d{bottom:951.736500px;}
.y6f{bottom:972.795000px;}
.y46{bottom:992.775000px;}
.y2c{bottom:993.495000px;}
.y6e{bottom:1014.195000px;}
.y8{bottom:1034.536500px;}
.y6d{bottom:1034.895000px;}
.y2b{bottom:1035.075000px;}
.y6c{bottom:1055.595000px;}
.y7{bottom:1076.295000px;}
.y2a{bottom:1076.836500px;}
.y6b{bottom:1097.175000px;}
.y29{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y28{bottom:1118.236500px;}
.y27{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h5{height:21.375000px;}
.h3{height:32.700000px;}
.h6{height:42.075000px;}
.h2{height:49.289063px;}
.h7{height:62.775000px;}
.h4{height:63.175781px;}
.h9{height:63.600000px;}
.h8{height:104.475000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:272.625000px;}
.w4{width:366.675000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.xd{left:45.075000px;}
.x10{left:80.175000px;}
.xe{left:84.525000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xc{left:129.600000px;}
.x9{left:147.060000px;}
.xb{left:159.300000px;}
.x2{left:160.560000px;}
.xa{left:288.720000px;}
.x7{left:298.800000px;}
.x6{left:311.938500px;}
.xf{left:317.625000px;}
.x5{left:324.900000px;}
.x8{left:403.560000px;}
.x11{left:534.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-49.728000pt;}
.ws41{word-spacing:-34.365333pt;}
.ws69{word-spacing:-34.364800pt;}
.ws2d{word-spacing:-34.360000pt;}
.ws40{word-spacing:-34.356800pt;}
.ws3e{word-spacing:-34.353600pt;}
.ws5c{word-spacing:-34.344800pt;}
.ws8{word-spacing:-34.171733pt;}
.ws58{word-spacing:-34.166400pt;}
.ws3d{word-spacing:-34.164800pt;}
.ws19{word-spacing:-33.925333pt;}
.ws42{word-spacing:-33.920000pt;}
.ws5d{word-spacing:-33.919733pt;}
.ws2c{word-spacing:-33.915200pt;}
.ws70{word-spacing:-33.913333pt;}
.ws38{word-spacing:-33.910400pt;}
.ws63{word-spacing:-33.908800pt;}
.ws61{word-spacing:-33.908000pt;}
.ws45{word-spacing:-33.903467pt;}
.ws2e{word-spacing:-33.902400pt;}
.ws2{word-spacing:-33.850400pt;}
.ws7{word-spacing:-33.842667pt;}
.ws0{word-spacing:-33.728000pt;}
.ws72{word-spacing:-33.726933pt;}
.ws1c{word-spacing:-33.726400pt;}
.ws3{word-spacing:-33.726133pt;}
.ws47{word-spacing:-33.720000pt;}
.ws37{word-spacing:-33.718400pt;}
.ws48{word-spacing:-33.717600pt;}
.ws3b{word-spacing:-33.709600pt;}
.ws4{word-spacing:-33.708267pt;}
.ws5{word-spacing:-33.693600pt;}
.ws54{word-spacing:-33.529600pt;}
.ws51{word-spacing:-33.529067pt;}
.ws33{word-spacing:-33.526400pt;}
.ws3f{word-spacing:-33.525333pt;}
.ws6e{word-spacing:-33.513600pt;}
.ws12{word-spacing:-33.280000pt;}
.ws43{word-spacing:-33.276000pt;}
.ws67{word-spacing:-33.266400pt;}
.ws32{word-spacing:-33.088000pt;}
.ws27{word-spacing:-33.084800pt;}
.ws26{word-spacing:-33.070133pt;}
.ws6d{word-spacing:-33.064000pt;}
.ws4a{word-spacing:-32.893600pt;}
.wsf{word-spacing:-32.889600pt;}
.ws6b{word-spacing:-32.447200pt;}
.wsb{word-spacing:-32.438400pt;}
.ws14{word-spacing:-32.436800pt;}
.ws13{word-spacing:-31.992533pt;}
.ws21{word-spacing:-31.168000pt;}
.ws5f{word-spacing:-30.956800pt;}
.ws2f{word-spacing:-29.888000pt;}
.ws16{word-spacing:-29.886400pt;}
.ws4c{word-spacing:-29.880000pt;}
.ws20{word-spacing:-29.248000pt;}
.ws31{word-spacing:-29.229867pt;}
.wsc{word-spacing:-29.049600pt;}
.ws30{word-spacing:-28.800000pt;}
.wsa{word-spacing:-28.603200pt;}
.ws22{word-spacing:-27.973333pt;}
.ws25{word-spacing:-27.962133pt;}
.ws9{word-spacing:-27.951200pt;}
.ws18{word-spacing:-27.771200pt;}
.ws5e{word-spacing:-27.328000pt;}
.ws11{word-spacing:-27.316000pt;}
.ws10{word-spacing:-26.872800pt;}
.ws65{word-spacing:-26.687200pt;}
.wsd{word-spacing:-26.682667pt;}
.ws68{word-spacing:-25.594400pt;}
.ws39{word-spacing:-24.956800pt;}
.ws15{word-spacing:-24.761600pt;}
.ws6f{word-spacing:-24.752800pt;}
.ws17{word-spacing:-24.320000pt;}
.ws28{word-spacing:-24.128000pt;}
.ws2a{word-spacing:-24.125600pt;}
.ws64{word-spacing:-23.034133pt;}
.ws59{word-spacing:-21.760000pt;}
.ws1a{word-spacing:-21.750400pt;}
.ws1b{word-spacing:-21.556000pt;}
.ws56{word-spacing:-21.350400pt;}
.ws62{word-spacing:-21.120000pt;}
.ws46{word-spacing:-20.288000pt;}
.ws6a{word-spacing:-18.994400pt;}
.ws44{word-spacing:-18.993600pt;}
.wse{word-spacing:-18.544000pt;}
.ws3c{word-spacing:-18.368000pt;}
.ws60{word-spacing:-18.149867pt;}
.ws66{word-spacing:-16.640000pt;}
.ws29{word-spacing:-16.445333pt;}
.ws49{word-spacing:-15.612533pt;}
.ws3a{word-spacing:-14.520000pt;}
.ws34{word-spacing:-13.430400pt;}
.ws71{word-spacing:-13.251733pt;}
.ws6c{word-spacing:-13.218667pt;}
.ws36{word-spacing:-11.968000pt;}
.ws5b{word-spacing:-9.403200pt;}
.ws2b{word-spacing:-8.126933pt;}
.ws1e{word-spacing:-5.893333pt;}
.ws1d{word-spacing:-5.765333pt;}
.ws4e{word-spacing:-5.371200pt;}
.ws57{word-spacing:-4.726400pt;}
.ws35{word-spacing:-2.987733pt;}
.ws52{word-spacing:-1.073333pt;}
.ws1f{word-spacing:-0.630400pt;}
.ws5a{word-spacing:0.000000pt;}
.ws23{word-spacing:1.925333pt;}
.ws24{word-spacing:2.112000pt;}
.ws4d{word-spacing:3.408000pt;}
.ws4f{word-spacing:18.949600pt;}
.ws53{word-spacing:31.568000pt;}
.ws4b{word-spacing:33.923200pt;}
.ws50{word-spacing:46.283200pt;}
.ws55{word-spacing:113.920000pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-1.012000pt;}
._0{width:0.956800pt;}
._c{width:15.415467pt;}
._1{width:16.860800pt;}
._4{width:18.352000pt;}
._19{width:20.167200pt;}
._5{width:21.632000pt;}
._3{width:22.745067pt;}
._6{width:24.008533pt;}
._11{width:25.920000pt;}
._8{width:26.816000pt;}
._1c{width:28.218133pt;}
._9{width:29.430400pt;}
._12{width:30.595200pt;}
._7{width:32.214400pt;}
._d{width:34.471733pt;}
._13{width:36.092533pt;}
._f{width:37.498400pt;}
._10{width:38.720000pt;}
._e{width:42.558933pt;}
._18{width:46.006400pt;}
._a{width:48.119200pt;}
._b{width:52.544000pt;}
._1b{width:57.302400pt;}
._15{width:70.388800pt;}
._1a{width:73.600000pt;}
._17{width:82.848000pt;}
._14{width:85.116800pt;}
._1d{width:89.600000pt;}
._16{width:97.588800pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:3.413333pt;}
.y50{bottom:3.441333pt;}
.y54{bottom:3.466667pt;}
.y58{bottom:3.493333pt;}
.y5c{bottom:3.521333pt;}
.y64{bottom:4.254667pt;}
.y4{bottom:10.880000pt;}
.y4f{bottom:21.840000pt;}
.y53{bottom:21.866667pt;}
.y57{bottom:21.893333pt;}
.y5b{bottom:21.921333pt;}
.y63{bottom:22.654667pt;}
.y56{bottom:40.133333pt;}
.y5a{bottom:40.160000pt;}
.y52{bottom:40.266667pt;}
.y60{bottom:40.613333pt;}
.y62{bottom:40.893333pt;}
.y3{bottom:56.866667pt;}
.y5f{bottom:59.013333pt;}
.y5e{bottom:77.254667pt;}
.y45{bottom:105.988000pt;}
.y6a{bottom:120.066667pt;}
.y26{bottom:125.188000pt;}
.y69{bottom:138.466667pt;}
.y44{bottom:143.108000pt;}
.y25{bottom:162.146667pt;}
.y68{bottom:175.588000pt;}
.y43{bottom:180.066667pt;}
.y24{bottom:180.546667pt;}
.y67{bottom:193.988000pt;}
.y23{bottom:198.946667pt;}
.y42{bottom:217.188000pt;}
.y66{bottom:231.108000pt;}
.y22{bottom:236.066667pt;}
.y41{bottom:254.308000pt;}
.y21{bottom:254.466667pt;}
.y65{bottom:268.066667pt;}
.y40{bottom:291.266667pt;}
.y20{bottom:291.588000pt;}
.y61{bottom:301.733333pt;}
.y1f{bottom:309.988000pt;}
.y1e{bottom:328.388000pt;}
.y1d{bottom:346.788000pt;}
.y5d{bottom:358.333333pt;}
.y1c{bottom:365.188000pt;}
.y3f{bottom:365.508000pt;}
.y1b{bottom:383.588000pt;}
.y3e{bottom:402.466667pt;}
.y1a{bottom:420.546667pt;}
.y83{bottom:422.466667pt;}
.y19{bottom:438.946667pt;}
.y3d{bottom:439.588000pt;}
.y82{bottom:440.866667pt;}
.y59{bottom:451.266667pt;}
.y3c{bottom:457.988000pt;}
.y81{bottom:459.266667pt;}
.y18{bottom:476.066667pt;}
.y80{bottom:477.666667pt;}
.y17{bottom:494.466667pt;}
.y3b{bottom:495.108000pt;}
.y7f{bottom:496.066667pt;}
.y55{bottom:507.133333pt;}
.y16{bottom:512.866667pt;}
.y7e{bottom:514.466667pt;}
.y15{bottom:531.266667pt;}
.y3a{bottom:532.066667pt;}
.y7d{bottom:532.866667pt;}
.y14{bottom:549.666667pt;}
.y39{bottom:550.466667pt;}
.y7c{bottom:551.266667pt;}
.y51{bottom:563.000000pt;}
.y13{bottom:568.066667pt;}
.y38{bottom:568.866667pt;}
.y7b{bottom:569.666667pt;}
.y7a{bottom:588.066667pt;}
.y12{bottom:605.188000pt;}
.y37{bottom:605.988000pt;}
.y79{bottom:606.466667pt;}
.y4e{bottom:618.866667pt;}
.y11{bottom:623.588000pt;}
.y78{bottom:624.866667pt;}
.y36{bottom:643.108000pt;}
.y77{bottom:643.266667pt;}
.y4c{bottom:656.333333pt;}
.y10{bottom:660.546667pt;}
.y35{bottom:661.506667pt;}
.y76{bottom:661.666667pt;}
.yf{bottom:678.946667pt;}
.y34{bottom:679.906667pt;}
.y75{bottom:680.066667pt;}
.ye{bottom:697.346667pt;}
.y33{bottom:698.308000pt;}
.y74{bottom:698.466667pt;}
.yd{bottom:715.746667pt;}
.y73{bottom:716.866667pt;}
.yc{bottom:734.146667pt;}
.y4b{bottom:734.466667pt;}
.y32{bottom:735.266667pt;}
.yb{bottom:752.546667pt;}
.y72{bottom:753.666667pt;}
.y4a{bottom:771.588000pt;}
.y71{bottom:772.066667pt;}
.y31{bottom:772.388000pt;}
.ya{bottom:789.666667pt;}
.y49{bottom:789.988000pt;}
.y70{bottom:790.466667pt;}
.y30{bottom:790.788000pt;}
.y2f{bottom:809.188000pt;}
.y9{bottom:826.788000pt;}
.y48{bottom:827.106667pt;}
.y2e{bottom:827.588000pt;}
.y47{bottom:845.506667pt;}
.y2d{bottom:845.988000pt;}
.y6f{bottom:864.706667pt;}
.y46{bottom:882.466667pt;}
.y2c{bottom:883.106667pt;}
.y6e{bottom:901.506667pt;}
.y8{bottom:919.588000pt;}
.y6d{bottom:919.906667pt;}
.y2b{bottom:920.066667pt;}
.y6c{bottom:938.306667pt;}
.y7{bottom:956.706667pt;}
.y2a{bottom:957.188000pt;}
.y6b{bottom:975.266667pt;}
.y29{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y28{bottom:993.988000pt;}
.y27{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h5{height:19.000000pt;}
.h3{height:29.066667pt;}
.h6{height:37.400000pt;}
.h2{height:43.812500pt;}
.h7{height:55.800000pt;}
.h4{height:56.156250pt;}
.h9{height:56.533333pt;}
.h8{height:92.866667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:242.333333pt;}
.w4{width:325.933333pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.xd{left:40.066667pt;}
.x10{left:71.266667pt;}
.xe{left:75.133333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xc{left:115.200000pt;}
.x9{left:130.720000pt;}
.xb{left:141.600000pt;}
.x2{left:142.720000pt;}
.xa{left:256.640000pt;}
.x7{left:265.600000pt;}
.x6{left:277.278667pt;}
.xf{left:282.333333pt;}
.x5{left:288.800000pt;}
.x8{left:358.720000pt;}
.x11{left:475.200000pt;}
}




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