
    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_b9af4d25c83c84791cc15fa8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_055dc1a5cc967bdbf00867a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.840820;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_b7ac686774dfca9cbcbfd06c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_a2555b95ec51c33932499d35.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_a6521c7a3ed58e8fa6c40434.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_da17264d50746abb77025d31.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c14c3e96dcf662a7150e79e8.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.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;}
}
.ws4{word-spacing:-55.944000px;}
.ws1{word-spacing:-41.877300px;}
.ws58{word-spacing:-38.661900px;}
.ws13{word-spacing:-38.656800px;}
.ws5{word-spacing:-38.653200px;}
.ws37{word-spacing:-38.649600px;}
.ws5d{word-spacing:-38.644500px;}
.ws3f{word-spacing:-38.638800px;}
.ws21{word-spacing:-38.440800px;}
.ws5e{word-spacing:-38.439900px;}
.ws47{word-spacing:-38.435400px;}
.ws40{word-spacing:-38.430000px;}
.wsd{word-spacing:-38.426400px;}
.ws55{word-spacing:-38.359800px;}
.ws3{word-spacing:-38.157300px;}
.ws16{word-spacing:-38.149800px;}
.ws4c{word-spacing:-38.139000px;}
.ws6{word-spacing:-37.936200px;}
.ws59{word-spacing:-37.935000px;}
.ws1f{word-spacing:-37.934100px;}
.ws5a{word-spacing:-37.930500px;}
.ws2c{word-spacing:-37.929600px;}
.ws44{word-spacing:-37.925100px;}
.ws19{word-spacing:-37.924200px;}
.ws57{word-spacing:-37.907100px;}
.ws1e{word-spacing:-37.699200px;}
.ws51{word-spacing:-37.423800px;}
.wsb{word-spacing:-36.487800px;}
.ws15{word-spacing:-35.987400px;}
.ws35{word-spacing:-35.779200px;}
.ws2a{word-spacing:-35.773200px;}
.ws8{word-spacing:-35.056800px;}
.ws14{word-spacing:-33.836400px;}
.ws50{word-spacing:-33.617400px;}
.ws2{word-spacing:-33.547800px;}
.ws2d{word-spacing:-32.169300px;}
.ws4a{word-spacing:-31.455600px;}
.ws2f{word-spacing:-31.442400px;}
.ws34{word-spacing:-30.735900px;}
.ws2e{word-spacing:-30.009600px;}
.ws30{word-spacing:-28.575000px;}
.ws36{word-spacing:-28.360800px;}
.ws46{word-spacing:-27.861300px;}
.ws45{word-spacing:-27.129600px;}
.ws12{word-spacing:-27.122400px;}
.ws5b{word-spacing:-26.423100px;}
.ws5c{word-spacing:-26.420400px;}
.ws4b{word-spacing:-26.418600px;}
.ws3d{word-spacing:-26.417400px;}
.ws27{word-spacing:-25.692300px;}
.ws3b{word-spacing:-25.479000px;}
.ws20{word-spacing:-25.200000px;}
.ws25{word-spacing:-23.540400px;}
.ws2b{word-spacing:-23.026200px;}
.ws24{word-spacing:-22.089600px;}
.ws32{word-spacing:-21.371400px;}
.ws4f{word-spacing:-21.367800px;}
.wse{word-spacing:-20.869200px;}
.ws1c{word-spacing:-20.655000px;}
.ws49{word-spacing:-19.000800px;}
.ws38{word-spacing:-18.489600px;}
.wsf{word-spacing:-17.982000px;}
.ws3e{word-spacing:-17.773200px;}
.ws7{word-spacing:-17.047800px;}
.ws3c{word-spacing:-16.828200px;}
.ws42{word-spacing:-16.333200px;}
.ws11{word-spacing:-15.114600px;}
.ws4e{word-spacing:-14.882400px;}
.ws28{word-spacing:-14.664600px;}
.ws52{word-spacing:-14.402400px;}
.ws53{word-spacing:-12.021300px;}
.ws17{word-spacing:-11.302800px;}
.wsc{word-spacing:-10.360800px;}
.ws43{word-spacing:-9.639600px;}
.ws31{word-spacing:-7.920000px;}
.ws41{word-spacing:-6.966000px;}
.ws9{word-spacing:-5.326800px;}
.ws26{word-spacing:-3.377400px;}
.ws56{word-spacing:-3.152700px;}
.ws22{word-spacing:-1.000800px;}
.ws0{word-spacing:0.000000px;}
.ws39{word-spacing:2.610000px;}
.ws23{word-spacing:4.543200px;}
.ws1b{word-spacing:6.199200px;}
.ws4d{word-spacing:6.717600px;}
.ws18{word-spacing:8.155800px;}
.wsa{word-spacing:8.865000px;}
.ws48{word-spacing:9.079200px;}
.ws54{word-spacing:9.799200px;}
.ws1d{word-spacing:11.760000px;}
.ws3a{word-spacing:16.057200px;}
.ws29{word-spacing:20.599200px;}
.ws10{word-spacing:28.519200px;}
.ws1a{word-spacing:106.056000px;}
.ws33{word-spacing:419.270400px;}
._4{margin-left:-1.449000px;}
._1{width:1.894200px;}
._32{width:17.329800px;}
._2{width:19.212600px;}
._7{width:20.590200px;}
._0{width:22.505400px;}
._e{width:23.787000px;}
._21{width:25.410300px;}
._25{width:26.645100px;}
._22{width:28.051200px;}
._26{width:29.188800px;}
._d{width:30.794400px;}
._16{width:32.040000px;}
._13{width:34.204800px;}
._19{width:35.324400px;}
._a{width:36.748200px;}
._2e{width:37.944000px;}
._b{width:39.447600px;}
._3{width:40.591800px;}
._1f{width:42.481800px;}
._33{width:45.207900px;}
._8{width:46.692000px;}
._2c{width:47.865600px;}
._23{width:49.761000px;}
._5{width:52.040400px;}
._1c{width:53.608200px;}
._36{width:54.651900px;}
._18{width:56.404200px;}
._10{width:58.968000px;}
._27{width:60.160800px;}
._12{width:63.535200px;}
._31{width:64.702800px;}
._6{width:66.091800px;}
._34{width:67.312800px;}
._14{width:69.633000px;}
._30{width:71.496000px;}
._28{width:73.503600px;}
._c{width:85.514400px;}
._2b{width:126.138000px;}
._35{width:162.000000px;}
._2f{width:253.542000px;}
._1d{width:346.464000px;}
._1e{width:347.769000px;}
._2d{width:482.007900px;}
._1a{width:538.488000px;}
._1b{width:540.216000px;}
._20{width:737.352000px;}
._11{width:739.224000px;}
._f{width:777.854400px;}
._17{width:861.048000px;}
._29{width:1016.568000px;}
._24{width:1441.368000px;}
._9{width:1569.421200px;}
._2a{width:1672.672800px;}
._15{width:1838.232000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,153,0);}
.fc0{color:rgb(0,153,255);}
.fs1{font-size:66.300000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y4{bottom:32.475000px;}
.y5e{bottom:96.736500px;}
.y5d{bottom:117.436500px;}
.y31{bottom:128.775000px;}
.y5c{bottom:138.136500px;}
.y30{bottom:149.475000px;}
.y5b{bottom:158.836500px;}
.y2f{bottom:170.175000px;}
.y5a{bottom:179.536500px;}
.y2e{bottom:190.875000px;}
.y59{bottom:200.236500px;}
.y2d{bottom:211.575000px;}
.y58{bottom:220.936500px;}
.y2c{bottom:232.275000px;}
.y57{bottom:241.636500px;}
.y2b{bottom:252.975000px;}
.y56{bottom:262.336500px;}
.y2a{bottom:273.675000px;}
.y55{bottom:283.036500px;}
.y29{bottom:294.375000px;}
.y54{bottom:303.736500px;}
.y28{bottom:315.075000px;}
.y27{bottom:335.775000px;}
.y53{bottom:345.315000px;}
.y26{bottom:356.475000px;}
.y25{bottom:377.175000px;}
.y52{bottom:387.075000px;}
.y24{bottom:397.875000px;}
.y51{bottom:407.775000px;}
.y23{bottom:418.575000px;}
.y50{bottom:428.475000px;}
.y22{bottom:439.275000px;}
.y4f{bottom:449.175000px;}
.y21{bottom:459.975000px;}
.y4e{bottom:469.875000px;}
.y20{bottom:480.675000px;}
.y4d{bottom:490.575000px;}
.y1f{bottom:501.375000px;}
.y4c{bottom:511.275000px;}
.y1e{bottom:522.075000px;}
.y4b{bottom:531.975000px;}
.y4a{bottom:552.675000px;}
.y1d{bottom:563.836500px;}
.y49{bottom:573.375000px;}
.y1c{bottom:584.536500px;}
.y48{bottom:594.075000px;}
.y1b{bottom:605.236500px;}
.y47{bottom:614.775000px;}
.y1a{bottom:625.936500px;}
.y46{bottom:635.475000px;}
.y19{bottom:646.636500px;}
.y45{bottom:656.175000px;}
.y18{bottom:667.336500px;}
.y44{bottom:676.875000px;}
.y17{bottom:688.036500px;}
.y43{bottom:697.575000px;}
.y16{bottom:708.736500px;}
.y42{bottom:718.275000px;}
.y15{bottom:729.436500px;}
.y41{bottom:738.975000px;}
.y14{bottom:750.136500px;}
.y40{bottom:759.675000px;}
.y13{bottom:770.836500px;}
.y68{bottom:780.015000px;}
.y3f{bottom:780.375000px;}
.y12{bottom:791.536500px;}
.y67{bottom:800.715000px;}
.y3e{bottom:801.075000px;}
.y11{bottom:812.236500px;}
.y66{bottom:821.415000px;}
.y3d{bottom:821.775000px;}
.y10{bottom:832.936500px;}
.y65{bottom:842.115000px;}
.y3c{bottom:842.475000px;}
.yf{bottom:853.636500px;}
.y64{bottom:862.815000px;}
.y3b{bottom:863.175000px;}
.ye{bottom:874.336500px;}
.y63{bottom:883.515000px;}
.y3a{bottom:883.875000px;}
.yd{bottom:895.036500px;}
.y62{bottom:904.215000px;}
.y39{bottom:904.575000px;}
.yc{bottom:915.736500px;}
.y61{bottom:924.915000px;}
.y38{bottom:925.275000px;}
.yb{bottom:936.436500px;}
.y60{bottom:945.615000px;}
.y37{bottom:945.975000px;}
.y36{bottom:966.675000px;}
.ya{bottom:978.015000px;}
.y5f{bottom:987.375000px;}
.y35{bottom:1008.436500px;}
.y9{bottom:1019.775000px;}
.y34{bottom:1029.136500px;}
.y33{bottom:1049.836500px;}
.y8{bottom:1055.415000px;}
.y32{bottom:1070.536500px;}
.y7{bottom:1091.236500px;}
.y6{bottom:1111.755000px;}
.y3{bottom:1153.695000px;}
.y2{bottom:1183.755000px;}
.y1{bottom:1210.936500px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h7{height:48.761719px;}
.h6{height:48.796875px;}
.h8{height:49.992188px;}
.h9{height:50.027344px;}
.h2{height:63.784424px;}
.h3{height:66.868506px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.950000px;}
.x1{left:129.238500px;}
.x5{left:142.020000px;}
.x9{left:180.720000px;}
.xb{left:233.820000px;}
.x6{left:417.060000px;}
.x8{left:487.080000px;}
.x3{left:515.880000px;}
.x7{left:524.520000px;}
.xa{left:552.420000px;}
.x2{left:604.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ws4{word-spacing:-49.728000pt;}
.ws1{word-spacing:-37.224267pt;}
.ws58{word-spacing:-34.366133pt;}
.ws13{word-spacing:-34.361600pt;}
.ws5{word-spacing:-34.358400pt;}
.ws37{word-spacing:-34.355200pt;}
.ws5d{word-spacing:-34.350667pt;}
.ws3f{word-spacing:-34.345600pt;}
.ws21{word-spacing:-34.169600pt;}
.ws5e{word-spacing:-34.168800pt;}
.ws47{word-spacing:-34.164800pt;}
.ws40{word-spacing:-34.160000pt;}
.wsd{word-spacing:-34.156800pt;}
.ws55{word-spacing:-34.097600pt;}
.ws3{word-spacing:-33.917600pt;}
.ws16{word-spacing:-33.910933pt;}
.ws4c{word-spacing:-33.901333pt;}
.ws6{word-spacing:-33.721067pt;}
.ws59{word-spacing:-33.720000pt;}
.ws1f{word-spacing:-33.719200pt;}
.ws5a{word-spacing:-33.716000pt;}
.ws2c{word-spacing:-33.715200pt;}
.ws44{word-spacing:-33.711200pt;}
.ws19{word-spacing:-33.710400pt;}
.ws57{word-spacing:-33.695200pt;}
.ws1e{word-spacing:-33.510400pt;}
.ws51{word-spacing:-33.265600pt;}
.wsb{word-spacing:-32.433600pt;}
.ws15{word-spacing:-31.988800pt;}
.ws35{word-spacing:-31.803733pt;}
.ws2a{word-spacing:-31.798400pt;}
.ws8{word-spacing:-31.161600pt;}
.ws14{word-spacing:-30.076800pt;}
.ws50{word-spacing:-29.882133pt;}
.ws2{word-spacing:-29.820267pt;}
.ws2d{word-spacing:-28.594933pt;}
.ws4a{word-spacing:-27.960533pt;}
.ws2f{word-spacing:-27.948800pt;}
.ws34{word-spacing:-27.320800pt;}
.ws2e{word-spacing:-26.675200pt;}
.ws30{word-spacing:-25.400000pt;}
.ws36{word-spacing:-25.209600pt;}
.ws46{word-spacing:-24.765600pt;}
.ws45{word-spacing:-24.115200pt;}
.ws12{word-spacing:-24.108800pt;}
.ws5b{word-spacing:-23.487200pt;}
.ws5c{word-spacing:-23.484800pt;}
.ws4b{word-spacing:-23.483200pt;}
.ws3d{word-spacing:-23.482133pt;}
.ws27{word-spacing:-22.837600pt;}
.ws3b{word-spacing:-22.648000pt;}
.ws20{word-spacing:-22.400000pt;}
.ws25{word-spacing:-20.924800pt;}
.ws2b{word-spacing:-20.467733pt;}
.ws24{word-spacing:-19.635200pt;}
.ws32{word-spacing:-18.996800pt;}
.ws4f{word-spacing:-18.993600pt;}
.wse{word-spacing:-18.550400pt;}
.ws1c{word-spacing:-18.360000pt;}
.ws49{word-spacing:-16.889600pt;}
.ws38{word-spacing:-16.435200pt;}
.wsf{word-spacing:-15.984000pt;}
.ws3e{word-spacing:-15.798400pt;}
.ws7{word-spacing:-15.153600pt;}
.ws3c{word-spacing:-14.958400pt;}
.ws42{word-spacing:-14.518400pt;}
.ws11{word-spacing:-13.435200pt;}
.ws4e{word-spacing:-13.228800pt;}
.ws28{word-spacing:-13.035200pt;}
.ws52{word-spacing:-12.802133pt;}
.ws53{word-spacing:-10.685600pt;}
.ws17{word-spacing:-10.046933pt;}
.wsc{word-spacing:-9.209600pt;}
.ws43{word-spacing:-8.568533pt;}
.ws31{word-spacing:-7.040000pt;}
.ws41{word-spacing:-6.192000pt;}
.ws9{word-spacing:-4.734933pt;}
.ws26{word-spacing:-3.002133pt;}
.ws56{word-spacing:-2.802400pt;}
.ws22{word-spacing:-0.889600pt;}
.ws0{word-spacing:0.000000pt;}
.ws39{word-spacing:2.320000pt;}
.ws23{word-spacing:4.038400pt;}
.ws1b{word-spacing:5.510400pt;}
.ws4d{word-spacing:5.971200pt;}
.ws18{word-spacing:7.249600pt;}
.wsa{word-spacing:7.880000pt;}
.ws48{word-spacing:8.070400pt;}
.ws54{word-spacing:8.710400pt;}
.ws1d{word-spacing:10.453333pt;}
.ws3a{word-spacing:14.273067pt;}
.ws29{word-spacing:18.310400pt;}
.ws10{word-spacing:25.350400pt;}
.ws1a{word-spacing:94.272000pt;}
.ws33{word-spacing:372.684800pt;}
._4{margin-left:-1.288000pt;}
._1{width:1.683733pt;}
._32{width:15.404267pt;}
._2{width:17.077867pt;}
._7{width:18.302400pt;}
._0{width:20.004800pt;}
._e{width:21.144000pt;}
._21{width:22.586933pt;}
._25{width:23.684533pt;}
._22{width:24.934400pt;}
._26{width:25.945600pt;}
._d{width:27.372800pt;}
._16{width:28.480000pt;}
._13{width:30.404267pt;}
._19{width:31.399467pt;}
._a{width:32.665067pt;}
._2e{width:33.728000pt;}
._b{width:35.064533pt;}
._3{width:36.081600pt;}
._1f{width:37.761600pt;}
._33{width:40.184800pt;}
._8{width:41.504000pt;}
._2c{width:42.547200pt;}
._23{width:44.232000pt;}
._5{width:46.258133pt;}
._1c{width:47.651733pt;}
._36{width:48.579467pt;}
._18{width:50.137067pt;}
._10{width:52.416000pt;}
._27{width:53.476267pt;}
._12{width:56.475733pt;}
._31{width:57.513600pt;}
._6{width:58.748267pt;}
._34{width:59.833600pt;}
._14{width:61.896000pt;}
._30{width:63.552000pt;}
._28{width:65.336533pt;}
._c{width:76.012800pt;}
._2b{width:112.122667pt;}
._35{width:144.000000pt;}
._2f{width:225.370667pt;}
._1d{width:307.968000pt;}
._1e{width:309.128000pt;}
._2d{width:428.451467pt;}
._1a{width:478.656000pt;}
._1b{width:480.192000pt;}
._20{width:655.424000pt;}
._11{width:657.088000pt;}
._f{width:691.426133pt;}
._17{width:765.376000pt;}
._29{width:903.616000pt;}
._24{width:1281.216000pt;}
._9{width:1395.041067pt;}
._2a{width:1486.820267pt;}
._15{width:1633.984000pt;}
.fs1{font-size:58.933333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y4{bottom:28.866667pt;}
.y5e{bottom:85.988000pt;}
.y5d{bottom:104.388000pt;}
.y31{bottom:114.466667pt;}
.y5c{bottom:122.788000pt;}
.y30{bottom:132.866667pt;}
.y5b{bottom:141.188000pt;}
.y2f{bottom:151.266667pt;}
.y5a{bottom:159.588000pt;}
.y2e{bottom:169.666667pt;}
.y59{bottom:177.988000pt;}
.y2d{bottom:188.066667pt;}
.y58{bottom:196.388000pt;}
.y2c{bottom:206.466667pt;}
.y57{bottom:214.788000pt;}
.y2b{bottom:224.866667pt;}
.y56{bottom:233.188000pt;}
.y2a{bottom:243.266667pt;}
.y55{bottom:251.588000pt;}
.y29{bottom:261.666667pt;}
.y54{bottom:269.988000pt;}
.y28{bottom:280.066667pt;}
.y27{bottom:298.466667pt;}
.y53{bottom:306.946667pt;}
.y26{bottom:316.866667pt;}
.y25{bottom:335.266667pt;}
.y52{bottom:344.066667pt;}
.y24{bottom:353.666667pt;}
.y51{bottom:362.466667pt;}
.y23{bottom:372.066667pt;}
.y50{bottom:380.866667pt;}
.y22{bottom:390.466667pt;}
.y4f{bottom:399.266667pt;}
.y21{bottom:408.866667pt;}
.y4e{bottom:417.666667pt;}
.y20{bottom:427.266667pt;}
.y4d{bottom:436.066667pt;}
.y1f{bottom:445.666667pt;}
.y4c{bottom:454.466667pt;}
.y1e{bottom:464.066667pt;}
.y4b{bottom:472.866667pt;}
.y4a{bottom:491.266667pt;}
.y1d{bottom:501.188000pt;}
.y49{bottom:509.666667pt;}
.y1c{bottom:519.588000pt;}
.y48{bottom:528.066667pt;}
.y1b{bottom:537.988000pt;}
.y47{bottom:546.466667pt;}
.y1a{bottom:556.388000pt;}
.y46{bottom:564.866667pt;}
.y19{bottom:574.788000pt;}
.y45{bottom:583.266667pt;}
.y18{bottom:593.188000pt;}
.y44{bottom:601.666667pt;}
.y17{bottom:611.588000pt;}
.y43{bottom:620.066667pt;}
.y16{bottom:629.988000pt;}
.y42{bottom:638.466667pt;}
.y15{bottom:648.388000pt;}
.y41{bottom:656.866667pt;}
.y14{bottom:666.788000pt;}
.y40{bottom:675.266667pt;}
.y13{bottom:685.188000pt;}
.y68{bottom:693.346667pt;}
.y3f{bottom:693.666667pt;}
.y12{bottom:703.588000pt;}
.y67{bottom:711.746667pt;}
.y3e{bottom:712.066667pt;}
.y11{bottom:721.988000pt;}
.y66{bottom:730.146667pt;}
.y3d{bottom:730.466667pt;}
.y10{bottom:740.388000pt;}
.y65{bottom:748.546667pt;}
.y3c{bottom:748.866667pt;}
.yf{bottom:758.788000pt;}
.y64{bottom:766.946667pt;}
.y3b{bottom:767.266667pt;}
.ye{bottom:777.188000pt;}
.y63{bottom:785.346667pt;}
.y3a{bottom:785.666667pt;}
.yd{bottom:795.588000pt;}
.y62{bottom:803.746667pt;}
.y39{bottom:804.066667pt;}
.yc{bottom:813.988000pt;}
.y61{bottom:822.146667pt;}
.y38{bottom:822.466667pt;}
.yb{bottom:832.388000pt;}
.y60{bottom:840.546667pt;}
.y37{bottom:840.866667pt;}
.y36{bottom:859.266667pt;}
.ya{bottom:869.346667pt;}
.y5f{bottom:877.666667pt;}
.y35{bottom:896.388000pt;}
.y9{bottom:906.466667pt;}
.y34{bottom:914.788000pt;}
.y33{bottom:933.188000pt;}
.y8{bottom:938.146667pt;}
.y32{bottom:951.588000pt;}
.y7{bottom:969.988000pt;}
.y6{bottom:988.226667pt;}
.y3{bottom:1025.506667pt;}
.y2{bottom:1052.226667pt;}
.y1{bottom:1076.388000pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h7{height:43.343750pt;}
.h6{height:43.375000pt;}
.h8{height:44.437500pt;}
.h9{height:44.468750pt;}
.h2{height:56.697266pt;}
.h3{height:59.438672pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.733333pt;}
.x1{left:114.878667pt;}
.x5{left:126.240000pt;}
.x9{left:160.640000pt;}
.xb{left:207.840000pt;}
.x6{left:370.720000pt;}
.x8{left:432.960000pt;}
.x3{left:458.560000pt;}
.x7{left:466.240000pt;}
.xa{left:491.040000pt;}
.x2{left:537.440000pt;}
}




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