
    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_36e42b8e74a6463f5a2706d4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_a03990ef41c5a9a131e3c3f1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_fff109396f8f840fe025e9f8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.845000;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_cd1a55fce25681087e9705d9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_1ce0c6ff8ae84fa65683eb99.woff')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_ae6ec699674378c456a2f3a0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_34d60f3f433e4361bb866b28.woff')format("woff");}.ff7{font-family:ff7;line-height:0.845000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_253d2397a748283589e3f854.woff')format("woff");}.ff8{font-family:ff8;line-height:0.431000;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;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.002725px;}
.lsa{letter-spacing:0.003634px;}
.ls8{letter-spacing:0.004200px;}
.ls15{letter-spacing:0.004800px;}
.ls12{letter-spacing:12.060017px;}
.ls7{letter-spacing:13.516200px;}
.lsc{letter-spacing:14.302200px;}
.ls14{letter-spacing:14.940017px;}
.ls9{letter-spacing:14.942100px;}
.ls16{letter-spacing:14.943900px;}
.ls11{letter-spacing:14.944200px;}
.lsf{letter-spacing:15.726017px;}
.ls4{letter-spacing:17.602200px;}
.ls10{letter-spacing:17.640017px;}
.ls5{letter-spacing:17.998200px;}
.lsb{letter-spacing:18.052200px;}
.ls6{letter-spacing:18.568200px;}
.ls13{letter-spacing:19.638017px;}
.ls0{letter-spacing:21.522262px;}
.ls1{letter-spacing:29.887800px;}
.lse{letter-spacing:432.004200px;}
.ls3{letter-spacing:2041.210200px;}
.lsd{letter-spacing:2311.096200px;}
.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;}
}
.ws2{word-spacing:-14.943900px;}
.ws5a{word-spacing:-3.589124px;}
.ws5b{word-spacing:-3.586536px;}
.ws59{word-spacing:-2.876975px;}
.ws57{word-spacing:-2.869229px;}
.ws30{word-spacing:-2.749678px;}
.ws47{word-spacing:-2.271473px;}
.ws5e{word-spacing:-2.151922px;}
.ws5d{word-spacing:-2.092146px;}
.ws66{word-spacing:-1.810450px;}
.ws67{word-spacing:-1.793268px;}
.ws9{word-spacing:-1.434614px;}
.ws41{word-spacing:-1.374839px;}
.ws4b{word-spacing:-0.657532px;}
.wsa{word-spacing:-0.179327px;}
.ws16{word-spacing:-0.059776px;}
.ws37{word-spacing:-0.058490px;}
.ws44{word-spacing:-0.003866px;}
.ws65{word-spacing:-0.003466px;}
.ws0{word-spacing:0.000000px;}
.ws60{word-spacing:0.001550px;}
.ws45{word-spacing:0.059776px;}
.ws1e{word-spacing:0.418429px;}
.ws51{word-spacing:0.478205px;}
.ws48{word-spacing:0.537980px;}
.ws50{word-spacing:0.777083px;}
.ws49{word-spacing:0.956410px;}
.ws12{word-spacing:1.075961px;}
.ws5f{word-spacing:1.135736px;}
.ws32{word-spacing:1.494390px;}
.ws4c{word-spacing:1.554166px;}
.ws40{word-spacing:1.972595px;}
.ws31{word-spacing:2.032370px;}
.ws3e{word-spacing:2.198134px;}
.ws3c{word-spacing:2.211697px;}
.ws20{word-spacing:2.630126px;}
.ws22{word-spacing:2.631076px;}
.ws10{word-spacing:2.689902px;}
.ws3a{word-spacing:2.721850px;}
.ws54{word-spacing:2.929004px;}
.ws25{word-spacing:3.048556px;}
.ws24{word-spacing:3.056683px;}
.ws4a{word-spacing:3.108331px;}
.ws11{word-spacing:3.168107px;}
.ws2b{word-spacing:3.227882px;}
.ws4e{word-spacing:3.407209px;}
.ws2f{word-spacing:3.582713px;}
.ws28{word-spacing:3.586536px;}
.ws33{word-spacing:3.589200px;}
.ws27{word-spacing:3.604672px;}
.ws2a{word-spacing:3.646312px;}
.ws42{word-spacing:3.706087px;}
.ws14{word-spacing:3.765863px;}
.ws2c{word-spacing:3.797650px;}
.ws2d{word-spacing:3.825638px;}
.ws23{word-spacing:4.244068px;}
.ws63{word-spacing:4.722272px;}
.wsd{word-spacing:4.782048px;}
.ws1f{word-spacing:5.200477px;}
.ws13{word-spacing:5.499355px;}
.ws15{word-spacing:7.950155px;}
.ws5c{word-spacing:11.298224px;}
.ws58{word-spacing:12.009224px;}
.ws56{word-spacing:12.011624px;}
.ws68{word-spacing:13.074224px;}
.ws39{word-spacing:14.826824px;}
.ws38{word-spacing:14.827424px;}
.ws69{word-spacing:14.880224px;}
.ws21{word-spacing:14.884124px;}
.ws4d{word-spacing:14.885024px;}
.ws64{word-spacing:14.885624px;}
.ws55{word-spacing:14.886824px;}
.ws43{word-spacing:14.889224px;}
.ws8{word-spacing:14.941534px;}
.wsc{word-spacing:14.942392px;}
.ws3{word-spacing:14.942861px;}
.ws1{word-spacing:14.943769px;}
.ws6{word-spacing:14.944988px;}
.wsb{word-spacing:14.945117px;}
.ws7{word-spacing:14.946625px;}
.ws5{word-spacing:14.946676px;}
.ws46{word-spacing:14.946824px;}
.ws4{word-spacing:14.947585px;}
.ws4f{word-spacing:15.665624px;}
.ws3f{word-spacing:17.080424px;}
.ws3d{word-spacing:17.084024px;}
.ws3b{word-spacing:17.580824px;}
.ws53{word-spacing:17.585624px;}
.ws26{word-spacing:17.935424px;}
.ws29{word-spacing:18.511424px;}
.ws2e{word-spacing:18.677624px;}
.ws62{word-spacing:19.580024px;}
.ws34{word-spacing:26.845402px;}
.ws1d{word-spacing:29.828024px;}
.ws1b{word-spacing:73.404437px;}
.ws1c{word-spacing:149.797654px;}
.ws17{word-spacing:152.368004px;}
.ws19{word-spacing:153.085312px;}
.ws18{word-spacing:217.642960px;}
.ws1a{word-spacing:222.843437px;}
.ws52{word-spacing:282.505424px;}
.wsf{word-spacing:289.284824px;}
.ws61{word-spacing:312.393224px;}
.ws36{word-spacing:528.387224px;}
.wse{word-spacing:2279.476758px;}
.ws35{word-spacing:2311.038275px;}
._5{margin-left:-32.278824px;}
._4{margin-left:-29.887800px;}
._6{margin-left:-13.808164px;}
._2{margin-left:-5.977560px;}
._b{margin-left:-4.782048px;}
._1{margin-left:-3.719250px;}
._3{margin-left:-2.391024px;}
._0{margin-left:-1.239750px;}
._16{width:2.992603px;}
._1b{width:11.835569px;}
._17{width:13.210408px;}
._1a{width:16.109815px;}
._f{width:18.530436px;}
._13{width:19.650761px;}
._12{width:20.695520px;}
._8{width:21.758318px;}
._18{width:23.312484px;}
._a{width:24.687323px;}
._7{width:26.480591px;}
._15{width:27.481674px;}
._9{width:29.362982px;}
._14{width:30.724658px;}
._e{width:71.730720px;}
._19{width:134.496000px;}
._d{width:181.299395px;}
._c{width:240.118585px;}
._10{width:328.765800px;}
._11{width:567.868200px;}
.fc3{color:transparent;}
.fc2{color:rgb(178,0,0);}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.fs5{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y20{bottom:131.325000px;}
.y1f{bottom:169.126500px;}
.yb2{bottom:178.306500px;}
.y49{bottom:185.565000px;}
.y1e{bottom:187.059000px;}
.y48{bottom:202.002000px;}
.y90{bottom:202.003500px;}
.y1d{bottom:204.991500px;}
.yb1{bottom:211.183500px;}
.y47{bottom:218.440500px;}
.y1c{bottom:222.924000px;}
.yb0{bottom:227.622000px;}
.y46{bottom:234.879000px;}
.y6c{bottom:236.259000px;}
.y1b{bottom:240.856500px;}
.yaf{bottom:244.060500px;}
.y8f{bottom:245.233500px;}
.y1a{bottom:258.790500px;}
.yae{bottom:260.499000px;}
.y45{bottom:261.423000px;}
.y19{bottom:276.723000px;}
.yad{bottom:276.936000px;}
.y6b{bottom:285.451500px;}
.y8e{bottom:285.793500px;}
.y44{bottom:301.263000px;}
.y6a{bottom:303.384000px;}
.y18{bottom:304.743000px;}
.yac{bottom:309.813000px;}
.y8d{bottom:309.985500px;}
.y43{bottom:325.192500px;}
.yab{bottom:326.251500px;}
.y8c{bottom:327.918000px;}
.y69{bottom:330.714000px;}
.y42{bottom:343.125000px;}
.y8b{bottom:345.850500px;}
.y68{bottom:348.646500px;}
.yaa{bottom:359.128500px;}
.y41{bottom:361.059000px;}
.y8a{bottom:363.783000px;}
.y67{bottom:366.579000px;}
.y17{bottom:366.867000px;}
.ya9{bottom:375.567000px;}
.y40{bottom:378.991500px;}
.y66{bottom:384.511500px;}
.y89{bottom:387.975000px;}
.ya8{bottom:392.005500px;}
.y3f{bottom:402.921000px;}
.y88{bottom:405.907500px;}
.ya7{bottom:408.444000px;}
.y65{bottom:411.841500px;}
.y3e{bottom:420.853500px;}
.y16{bottom:421.420500px;}
.y87{bottom:423.840000px;}
.ya6{bottom:424.882500px;}
.y64{bottom:429.774000px;}
.y3d{bottom:438.786000px;}
.y86{bottom:452.127000px;}
.y15{bottom:454.297500px;}
.y63{bottom:457.104000px;}
.ya5{bottom:457.758000px;}
.y3c{bottom:466.824000px;}
.y14{bottom:472.230000px;}
.ya4{bottom:474.196500px;}
.y62{bottom:475.036500px;}
.ya3{bottom:490.635000px;}
.y85{bottom:492.687000px;}
.y61{bottom:502.366500px;}
.y13{bottom:505.629000px;}
.y3b{bottom:506.664000px;}
.ya2{bottom:507.073500px;}
.y60{bottom:520.299000px;}
.y84{bottom:520.974000px;}
.y3a{bottom:530.593500px;}
.y5f{bottom:538.231500px;}
.ya1{bottom:539.950500px;}
.y12{bottom:555.958500px;}
.y5e{bottom:556.164000px;}
.ya0{bottom:556.389000px;}
.y39{bottom:558.631500px;}
.y83{bottom:561.534000px;}
.y5d{bottom:574.098000px;}
.y82{bottom:579.466500px;}
.y11{bottom:579.750000px;}
.y9f{bottom:589.266000px;}
.y38{bottom:598.471500px;}
.y5c{bottom:601.426500px;}
.y10{bottom:603.543000px;}
.y9e{bottom:605.704500px;}
.y81{bottom:609.916500px;}
.y37{bottom:616.405500px;}
.y5b{bottom:619.360500px;}
.yf{bottom:621.475500px;}
.y80{bottom:634.107000px;}
.y36{bottom:634.338000px;}
.y5a{bottom:637.293000px;}
.y9d{bottom:638.580000px;}
.ye{bottom:639.408000px;}
.y35{bottom:652.270500px;}
.y9c{bottom:655.018500px;}
.y59{bottom:655.225500px;}
.yd{bottom:657.340500px;}
.y7f{bottom:658.299000px;}
.y34{bottom:670.203000px;}
.y58{bottom:673.158000px;}
.yc{bottom:675.273000px;}
.y7e{bottom:676.231500px;}
.y9b{bottom:687.895500px;}
.y33{bottom:688.135500px;}
.y57{bottom:691.090500px;}
.yb{bottom:693.207000px;}
.y7d{bottom:694.164000px;}
.y9a{bottom:704.334000px;}
.y32{bottom:706.069500px;}
.y56{bottom:709.023000px;}
.ya{bottom:711.139500px;}
.y99{bottom:720.772500px;}
.y31{bottom:724.002000px;}
.y7c{bottom:724.614000px;}
.y55{bottom:726.957000px;}
.y9{bottom:729.072000px;}
.y30{bottom:741.934500px;}
.y8{bottom:752.863500px;}
.y7b{bottom:752.901000px;}
.y98{bottom:753.649500px;}
.y54{bottom:758.224500px;}
.y97{bottom:770.088000px;}
.y2f{bottom:777.838500px;}
.y7{bottom:782.514000px;}
.y7a{bottom:793.461000px;}
.y2e{bottom:795.771000px;}
.y96{bottom:802.963500px;}
.y6{bottom:806.307000px;}
.y79{bottom:811.393500px;}
.y95{bottom:819.402000px;}
.y78{bottom:829.326000px;}
.y5{bottom:830.098500px;}
.y2d{bottom:831.673500px;}
.y53{bottom:833.191500px;}
.y94{bottom:835.840500px;}
.yba{bottom:851.620500px;}
.yb4{bottom:852.279000px;}
.y4{bottom:853.890000px;}
.y77{bottom:857.613000px;}
.y93{bottom:868.717500px;}
.yb9{bottom:869.553000px;}
.y3{bottom:877.681500px;}
.y92{bottom:885.156000px;}
.yb8{bottom:887.487000px;}
.y2c{bottom:896.737500px;}
.y76{bottom:898.173000px;}
.y2{bottom:904.107000px;}
.y2b{bottom:914.670000px;}
.y75{bottom:916.105500px;}
.y91{bottom:918.033000px;}
.yb7{bottom:920.362500px;}
.y2a{bottom:932.602500px;}
.y74{bottom:934.039500px;}
.y52{bottom:934.471500px;}
.yb6{bottom:938.296500px;}
.y1{bottom:941.509500px;}
.y29{bottom:950.536500px;}
.y51{bottom:950.910000px;}
.y73{bottom:953.466000px;}
.y50{bottom:967.347000px;}
.y28{bottom:968.469000px;}
.y72{bottom:974.646000px;}
.y4f{bottom:983.785500px;}
.y27{bottom:986.401500px;}
.y71{bottom:992.578500px;}
.yb3{bottom:1000.224000px;}
.y26{bottom:1004.334000px;}
.y70{bottom:1010.511000px;}
.yb5{bottom:1013.461500px;}
.y4e{bottom:1016.662500px;}
.y25{bottom:1022.266500px;}
.y4d{bottom:1033.101000px;}
.y6f{bottom:1034.703000px;}
.y24{bottom:1040.199000px;}
.y4c{bottom:1049.539500px;}
.y6e{bottom:1052.635500px;}
.y4b{bottom:1065.978000px;}
.y6d{bottom:1070.568000px;}
.y23{bottom:1070.835000px;}
.y4a{bottom:1082.416500px;}
.y22{bottom:1098.855000px;}
.y21{bottom:1140.798000px;}
.h9{height:36.098726px;}
.h8{height:40.109428px;}
.h7{height:40.826735px;}
.h5{height:41.125613px;}
.h4{height:41.484266px;}
.h3{height:49.351066px;}
.h6{height:62.750279px;}
.h2{height:86.038650px;}
.ha{height:103.213484px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:150.519000px;}
.x9{left:159.486000px;}
.xa{left:163.222500px;}
.x6{left:165.961500px;}
.x7{left:177.519000px;}
.xc{left:180.408000px;}
.x4{left:187.879500px;}
.x5{left:207.306000px;}
.xb{left:292.992000px;}
.x1{left:338.994000px;}
.x2{left:387.354000px;}
.x8{left:455.590500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.002422pt;}
.lsa{letter-spacing:0.003230pt;}
.ls8{letter-spacing:0.003733pt;}
.ls15{letter-spacing:0.004267pt;}
.ls12{letter-spacing:10.720015pt;}
.ls7{letter-spacing:12.014400pt;}
.lsc{letter-spacing:12.713067pt;}
.ls14{letter-spacing:13.280015pt;}
.ls9{letter-spacing:13.281867pt;}
.ls16{letter-spacing:13.283467pt;}
.ls11{letter-spacing:13.283733pt;}
.lsf{letter-spacing:13.978682pt;}
.ls4{letter-spacing:15.646400pt;}
.ls10{letter-spacing:15.680015pt;}
.ls5{letter-spacing:15.998400pt;}
.lsb{letter-spacing:16.046400pt;}
.ls6{letter-spacing:16.505067pt;}
.ls13{letter-spacing:17.456015pt;}
.ls0{letter-spacing:19.130899pt;}
.ls1{letter-spacing:26.566933pt;}
.lse{letter-spacing:384.003733pt;}
.ls3{letter-spacing:1814.409067pt;}
.lsd{letter-spacing:2054.307733pt;}
.ws2{word-spacing:-13.283467pt;}
.ws5a{word-spacing:-3.190333pt;}
.ws5b{word-spacing:-3.188032pt;}
.ws59{word-spacing:-2.557311pt;}
.ws57{word-spacing:-2.550426pt;}
.ws30{word-spacing:-2.444158pt;}
.ws47{word-spacing:-2.019087pt;}
.ws5e{word-spacing:-1.912819pt;}
.ws5d{word-spacing:-1.859685pt;}
.ws66{word-spacing:-1.609289pt;}
.ws67{word-spacing:-1.594016pt;}
.ws9{word-spacing:-1.275213pt;}
.ws41{word-spacing:-1.222079pt;}
.ws4b{word-spacing:-0.584473pt;}
.wsa{word-spacing:-0.159402pt;}
.ws16{word-spacing:-0.053134pt;}
.ws37{word-spacing:-0.051991pt;}
.ws44{word-spacing:-0.003437pt;}
.ws65{word-spacing:-0.003081pt;}
.ws0{word-spacing:0.000000pt;}
.ws60{word-spacing:0.001378pt;}
.ws45{word-spacing:0.053134pt;}
.ws1e{word-spacing:0.371937pt;}
.ws51{word-spacing:0.425071pt;}
.ws48{word-spacing:0.478205pt;}
.ws50{word-spacing:0.690740pt;}
.ws49{word-spacing:0.850142pt;}
.ws12{word-spacing:0.956410pt;}
.ws5f{word-spacing:1.009543pt;}
.ws32{word-spacing:1.328347pt;}
.ws4c{word-spacing:1.381481pt;}
.ws40{word-spacing:1.753418pt;}
.ws31{word-spacing:1.806551pt;}
.ws3e{word-spacing:1.953897pt;}
.ws3c{word-spacing:1.965953pt;}
.ws20{word-spacing:2.337890pt;}
.ws22{word-spacing:2.338734pt;}
.ws10{word-spacing:2.391024pt;}
.ws3a{word-spacing:2.419422pt;}
.ws54{word-spacing:2.603559pt;}
.ws25{word-spacing:2.709827pt;}
.ws24{word-spacing:2.717052pt;}
.ws4a{word-spacing:2.762961pt;}
.ws11{word-spacing:2.816095pt;}
.ws2b{word-spacing:2.869229pt;}
.ws4e{word-spacing:3.028630pt;}
.ws2f{word-spacing:3.184634pt;}
.ws28{word-spacing:3.188032pt;}
.ws33{word-spacing:3.190400pt;}
.ws27{word-spacing:3.204153pt;}
.ws2a{word-spacing:3.241166pt;}
.ws42{word-spacing:3.294300pt;}
.ws14{word-spacing:3.347434pt;}
.ws2c{word-spacing:3.375689pt;}
.ws2d{word-spacing:3.400567pt;}
.ws23{word-spacing:3.772505pt;}
.ws63{word-spacing:4.197575pt;}
.wsd{word-spacing:4.250709pt;}
.ws1f{word-spacing:4.622646pt;}
.ws13{word-spacing:4.888316pt;}
.ws15{word-spacing:7.066804pt;}
.ws5c{word-spacing:10.042866pt;}
.ws58{word-spacing:10.674866pt;}
.ws56{word-spacing:10.676999pt;}
.ws68{word-spacing:11.621533pt;}
.ws39{word-spacing:13.179399pt;}
.ws38{word-spacing:13.179933pt;}
.ws69{word-spacing:13.226866pt;}
.ws21{word-spacing:13.230333pt;}
.ws4d{word-spacing:13.231133pt;}
.ws64{word-spacing:13.231666pt;}
.ws55{word-spacing:13.232733pt;}
.ws43{word-spacing:13.234866pt;}
.ws8{word-spacing:13.281363pt;}
.wsc{word-spacing:13.282126pt;}
.ws3{word-spacing:13.282543pt;}
.ws1{word-spacing:13.283350pt;}
.ws6{word-spacing:13.284434pt;}
.wsb{word-spacing:13.284548pt;}
.ws7{word-spacing:13.285889pt;}
.ws5{word-spacing:13.285934pt;}
.ws46{word-spacing:13.286066pt;}
.ws4{word-spacing:13.286742pt;}
.ws4f{word-spacing:13.924999pt;}
.ws3f{word-spacing:15.182599pt;}
.ws3d{word-spacing:15.185799pt;}
.ws3b{word-spacing:15.627399pt;}
.ws53{word-spacing:15.631666pt;}
.ws26{word-spacing:15.942599pt;}
.ws29{word-spacing:16.454599pt;}
.ws2e{word-spacing:16.602333pt;}
.ws62{word-spacing:17.404466pt;}
.ws34{word-spacing:23.862579pt;}
.ws1d{word-spacing:26.513799pt;}
.ws1b{word-spacing:65.248388pt;}
.ws1c{word-spacing:133.153470pt;}
.ws17{word-spacing:135.438226pt;}
.ws19{word-spacing:136.075833pt;}
.ws18{word-spacing:193.460409pt;}
.ws1a{word-spacing:198.083055pt;}
.ws52{word-spacing:251.115933pt;}
.wsf{word-spacing:257.142066pt;}
.ws61{word-spacing:277.682866pt;}
.ws36{word-spacing:469.677533pt;}
.wse{word-spacing:2026.201563pt;}
.ws35{word-spacing:2054.256244pt;}
._5{margin-left:-28.692288pt;}
._4{margin-left:-26.566933pt;}
._6{margin-left:-12.273923pt;}
._2{margin-left:-5.313387pt;}
._b{margin-left:-4.250709pt;}
._1{margin-left:-3.306000pt;}
._3{margin-left:-2.125355pt;}
._0{margin-left:-1.102000pt;}
._16{width:2.660092pt;}
._1b{width:10.520506pt;}
._17{width:11.742585pt;}
._1a{width:14.319836pt;}
._f{width:16.471499pt;}
._13{width:17.467343pt;}
._12{width:18.396018pt;}
._8{width:19.340727pt;}
._18{width:20.722208pt;}
._a{width:21.944287pt;}
._7{width:23.538303pt;}
._15{width:24.428155pt;}
._9{width:26.100429pt;}
._14{width:27.310807pt;}
._e{width:63.760640pt;}
._19{width:119.552000pt;}
._d{width:161.155018pt;}
._c{width:213.438742pt;}
._10{width:292.236267pt;}
._11{width:504.771733pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.fs5{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:116.733333pt;}
.y1f{bottom:150.334667pt;}
.yb2{bottom:158.494667pt;}
.y49{bottom:164.946667pt;}
.y1e{bottom:166.274667pt;}
.y48{bottom:179.557333pt;}
.y90{bottom:179.558667pt;}
.y1d{bottom:182.214667pt;}
.yb1{bottom:187.718667pt;}
.y47{bottom:194.169333pt;}
.y1c{bottom:198.154667pt;}
.yb0{bottom:202.330667pt;}
.y46{bottom:208.781333pt;}
.y6c{bottom:210.008000pt;}
.y1b{bottom:214.094667pt;}
.yaf{bottom:216.942667pt;}
.y8f{bottom:217.985333pt;}
.y1a{bottom:230.036000pt;}
.yae{bottom:231.554667pt;}
.y45{bottom:232.376000pt;}
.y19{bottom:245.976000pt;}
.yad{bottom:246.165333pt;}
.y6b{bottom:253.734667pt;}
.y8e{bottom:254.038667pt;}
.y44{bottom:267.789333pt;}
.y6a{bottom:269.674667pt;}
.y18{bottom:270.882667pt;}
.yac{bottom:275.389333pt;}
.y8d{bottom:275.542667pt;}
.y43{bottom:289.060000pt;}
.yab{bottom:290.001333pt;}
.y8c{bottom:291.482667pt;}
.y69{bottom:293.968000pt;}
.y42{bottom:305.000000pt;}
.y8b{bottom:307.422667pt;}
.y68{bottom:309.908000pt;}
.yaa{bottom:319.225333pt;}
.y41{bottom:320.941333pt;}
.y8a{bottom:323.362667pt;}
.y67{bottom:325.848000pt;}
.y17{bottom:326.104000pt;}
.ya9{bottom:333.837333pt;}
.y40{bottom:336.881333pt;}
.y66{bottom:341.788000pt;}
.y89{bottom:344.866667pt;}
.ya8{bottom:348.449333pt;}
.y3f{bottom:358.152000pt;}
.y88{bottom:360.806667pt;}
.ya7{bottom:363.061333pt;}
.y65{bottom:366.081333pt;}
.y3e{bottom:374.092000pt;}
.y16{bottom:374.596000pt;}
.y87{bottom:376.746667pt;}
.ya6{bottom:377.673333pt;}
.y64{bottom:382.021333pt;}
.y3d{bottom:390.032000pt;}
.y86{bottom:401.890667pt;}
.y15{bottom:403.820000pt;}
.y63{bottom:406.314667pt;}
.ya5{bottom:406.896000pt;}
.y3c{bottom:414.954667pt;}
.y14{bottom:419.760000pt;}
.ya4{bottom:421.508000pt;}
.y62{bottom:422.254667pt;}
.ya3{bottom:436.120000pt;}
.y85{bottom:437.944000pt;}
.y61{bottom:446.548000pt;}
.y13{bottom:449.448000pt;}
.y3b{bottom:450.368000pt;}
.ya2{bottom:450.732000pt;}
.y60{bottom:462.488000pt;}
.y84{bottom:463.088000pt;}
.y3a{bottom:471.638667pt;}
.y5f{bottom:478.428000pt;}
.ya1{bottom:479.956000pt;}
.y12{bottom:494.185333pt;}
.y5e{bottom:494.368000pt;}
.ya0{bottom:494.568000pt;}
.y39{bottom:496.561333pt;}
.y83{bottom:499.141333pt;}
.y5d{bottom:510.309333pt;}
.y82{bottom:515.081333pt;}
.y11{bottom:515.333333pt;}
.y9f{bottom:523.792000pt;}
.y38{bottom:531.974667pt;}
.y5c{bottom:534.601333pt;}
.y10{bottom:536.482667pt;}
.y9e{bottom:538.404000pt;}
.y81{bottom:542.148000pt;}
.y37{bottom:547.916000pt;}
.y5b{bottom:550.542667pt;}
.yf{bottom:552.422667pt;}
.y80{bottom:563.650667pt;}
.y36{bottom:563.856000pt;}
.y5a{bottom:566.482667pt;}
.y9d{bottom:567.626667pt;}
.ye{bottom:568.362667pt;}
.y35{bottom:579.796000pt;}
.y9c{bottom:582.238667pt;}
.y59{bottom:582.422667pt;}
.yd{bottom:584.302667pt;}
.y7f{bottom:585.154667pt;}
.y34{bottom:595.736000pt;}
.y58{bottom:598.362667pt;}
.yc{bottom:600.242667pt;}
.y7e{bottom:601.094667pt;}
.y9b{bottom:611.462667pt;}
.y33{bottom:611.676000pt;}
.y57{bottom:614.302667pt;}
.yb{bottom:616.184000pt;}
.y7d{bottom:617.034667pt;}
.y9a{bottom:626.074667pt;}
.y32{bottom:627.617333pt;}
.y56{bottom:630.242667pt;}
.ya{bottom:632.124000pt;}
.y99{bottom:640.686667pt;}
.y31{bottom:643.557333pt;}
.y7c{bottom:644.101333pt;}
.y55{bottom:646.184000pt;}
.y9{bottom:648.064000pt;}
.y30{bottom:659.497333pt;}
.y8{bottom:669.212000pt;}
.y7b{bottom:669.245333pt;}
.y98{bottom:669.910667pt;}
.y54{bottom:673.977333pt;}
.y97{bottom:684.522667pt;}
.y2f{bottom:691.412000pt;}
.y7{bottom:695.568000pt;}
.y7a{bottom:705.298667pt;}
.y2e{bottom:707.352000pt;}
.y96{bottom:713.745333pt;}
.y6{bottom:716.717333pt;}
.y79{bottom:721.238667pt;}
.y95{bottom:728.357333pt;}
.y78{bottom:737.178667pt;}
.y5{bottom:737.865333pt;}
.y2d{bottom:739.265333pt;}
.y53{bottom:740.614667pt;}
.y94{bottom:742.969333pt;}
.yba{bottom:756.996000pt;}
.yb4{bottom:757.581333pt;}
.y4{bottom:759.013333pt;}
.y77{bottom:762.322667pt;}
.y93{bottom:772.193333pt;}
.yb9{bottom:772.936000pt;}
.y3{bottom:780.161333pt;}
.y92{bottom:786.805333pt;}
.yb8{bottom:788.877333pt;}
.y2c{bottom:797.100000pt;}
.y76{bottom:798.376000pt;}
.y2{bottom:803.650667pt;}
.y2b{bottom:813.040000pt;}
.y75{bottom:814.316000pt;}
.y91{bottom:816.029333pt;}
.yb7{bottom:818.100000pt;}
.y2a{bottom:828.980000pt;}
.y74{bottom:830.257333pt;}
.y52{bottom:830.641333pt;}
.yb6{bottom:834.041333pt;}
.y1{bottom:836.897333pt;}
.y29{bottom:844.921333pt;}
.y51{bottom:845.253333pt;}
.y73{bottom:847.525333pt;}
.y50{bottom:859.864000pt;}
.y28{bottom:860.861333pt;}
.y72{bottom:866.352000pt;}
.y4f{bottom:874.476000pt;}
.y27{bottom:876.801333pt;}
.y71{bottom:882.292000pt;}
.yb3{bottom:889.088000pt;}
.y26{bottom:892.741333pt;}
.y70{bottom:898.232000pt;}
.yb5{bottom:900.854667pt;}
.y4e{bottom:903.700000pt;}
.y25{bottom:908.681333pt;}
.y4d{bottom:918.312000pt;}
.y6f{bottom:919.736000pt;}
.y24{bottom:924.621333pt;}
.y4c{bottom:932.924000pt;}
.y6e{bottom:935.676000pt;}
.y4b{bottom:947.536000pt;}
.y6d{bottom:951.616000pt;}
.y23{bottom:951.853333pt;}
.y4a{bottom:962.148000pt;}
.y22{bottom:976.760000pt;}
.y21{bottom:1014.042667pt;}
.h9{height:32.087757pt;}
.h8{height:35.652825pt;}
.h7{height:36.290431pt;}
.h5{height:36.556100pt;}
.h4{height:36.874903pt;}
.h3{height:43.867614pt;}
.h6{height:55.778026pt;}
.h2{height:76.478800pt;}
.ha{height:91.745319pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:133.794667pt;}
.x9{left:141.765333pt;}
.xa{left:145.086667pt;}
.x6{left:147.521333pt;}
.x7{left:157.794667pt;}
.xc{left:160.362667pt;}
.x4{left:167.004000pt;}
.x5{left:184.272000pt;}
.xb{left:260.437333pt;}
.x1{left:301.328000pt;}
.x2{left:344.314667pt;}
.x8{left:404.969333pt;}
}




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