
    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_69a8ec9b4f319dd4d23ac83e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_a7ca2f6b7d52ddc4cc31a833.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_5747709e53fc081647ee74e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_b17c69fb098c2dcba707caf9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_e5c51f78508c04c778d07052.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2a78647ec789df3b9c4cd353.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_504b460850023c7dc68b3727.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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;}
.m3{transform:matrix(0.000000,-0.250329,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250329,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250329,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-69.120000px;}
.v5{vertical-align:-34.426165px;}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-11.061603px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.269400px;}
.ls2{letter-spacing:-0.226200px;}
.ls6{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.110616px;}
.ls11{letter-spacing:-0.110470px;}
.ls5{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.223800px;}
.ls10{letter-spacing:0.251959px;}
.ls8{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.900000px;}
.lsb{letter-spacing:70.020000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.ws13{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.580000px;}
.wse{word-spacing:-13.586676px;}
.ws4{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.283800px;}
.ws12{word-spacing:-12.105360px;}
.ws11{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.790600px;}
.ws1{word-spacing:-10.800000px;}
.ws2{word-spacing:-10.440000px;}
.ws0{word-spacing:-10.213800px;}
.ws9{word-spacing:0.000000px;}
.wsd{word-spacing:102.756486px;}
._15{margin-left:-3.755760px;}
._3{margin-left:-2.491440px;}
._1{margin-left:-1.486080px;}
._0{width:1.053360px;}
._2{width:2.194800px;}
._6{width:3.265680px;}
._d{width:4.900320px;}
._e{width:6.019440px;}
._c{width:7.589520px;}
._7{width:8.724960px;}
._8{width:9.728400px;}
._9{width:10.797600px;}
._14{width:12.053040px;}
._f{width:13.147200px;}
._12{width:16.038000px;}
._13{width:17.108160px;}
._a{width:18.406080px;}
._b{width:19.563840px;}
._10{width:21.752640px;}
._11{width:23.305200px;}
._16{width:24.502800px;}
._4{width:25.893360px;}
._5{width:27.034560px;}
._1b{width:28.128960px;}
._17{width:38.126880px;}
._19{width:103.835902px;}
._18{width:114.934376px;}
._1a{width:574.385868px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:27.096010px;}
.fs7{font-size:39.428468px;}
.fs2{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs8{font-size:49.206001px;}
.fs9{font-size:49.270836px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y72{bottom:2.700000px;}
.ya8{bottom:2.865000px;}
.y87{bottom:2.880000px;}
.ya4{bottom:2.895000px;}
.y90{bottom:3.045000px;}
.y83{bottom:3.060000px;}
.y93{bottom:3.225000px;}
.y7a{bottom:3.240000px;}
.y74{bottom:3.405000px;}
.y77{bottom:3.420000px;}
.y7e{bottom:3.450000px;}
.y75{bottom:3.585000px;}
.y78{bottom:3.600000px;}
.y7f{bottom:3.630000px;}
.ybc{bottom:9.525000px;}
.y8e{bottom:9.705000px;}
.y70{bottom:9.720000px;}
.y91{bottom:9.885000px;}
.y84{bottom:9.900000px;}
.y66{bottom:11.084966px;}
.y71{bottom:16.560000px;}
.yac{bottom:16.725000px;}
.y86{bottom:16.740000px;}
.yb0{bottom:16.770000px;}
.y8f{bottom:16.905000px;}
.y82{bottom:16.920000px;}
.yb2{bottom:16.950000px;}
.y5d{bottom:27.988330px;}
.yb1{bottom:30.630000px;}
.y5e{bottom:34.444619px;}
.y65{bottom:59.960050px;}
.y5f{bottom:60.574583px;}
.y60{bottom:86.710691px;}
.y61{bottom:112.840655px;}
.yc4{bottom:114.840000px;}
.y21{bottom:116.100000px;}
.y9f{bottom:119.340000px;}
.y5b{bottom:123.120000px;}
.y4b{bottom:131.400000px;}
.yc3{bottom:131.940000px;}
.y20{bottom:133.380000px;}
.y9e{bottom:136.620000px;}
.y62{bottom:138.970618px;}
.y5a{bottom:140.400000px;}
.y4a{bottom:148.680000px;}
.y1f{bottom:150.660000px;}
.y9d{bottom:153.900000px;}
.y63{bottom:165.100581px;}
.y49{bottom:165.960000px;}
.yc2{bottom:167.220000px;}
.y1e{bottom:167.940000px;}
.y9c{bottom:171.180000px;}
.y68{bottom:174.014385px;}
.y59{bottom:174.960000px;}
.y48{bottom:183.240000px;}
.yc1{bottom:184.500000px;}
.y1d{bottom:185.220000px;}
.y69{bottom:186.925728px;}
.y6b{bottom:186.925730px;}
.y9b{bottom:188.460000px;}
.y64{bottom:191.230544px;}
.y58{bottom:192.090000px;}
.y67{bottom:193.381408px;}
.y47{bottom:200.370000px;}
.y1c{bottom:202.530000px;}
.y9a{bottom:205.590000px;}
.y57{bottom:205.770000px;}
.y5c{bottom:206.639980px;}
.y46{bottom:217.650000px;}
.y1b{bottom:219.630000px;}
.yc0{bottom:219.810000px;}
.y99{bottom:222.870000px;}
.y6a{bottom:223.816180px;}
.y6c{bottom:233.344509px;}
.y45{bottom:234.930000px;}
.y1a{bottom:236.910000px;}
.ybf{bottom:237.090000px;}
.y98{bottom:240.150000px;}
.y19{bottom:254.190000px;}
.y97{bottom:257.430000px;}
.y44{bottom:261.210000px;}
.ybe{bottom:263.010000px;}
.y18{bottom:271.470000px;}
.y96{bottom:274.710000px;}
.y43{bottom:278.490000px;}
.ybd{bottom:280.110000px;}
.y95{bottom:291.990000px;}
.ybb{bottom:294.885000px;}
.y42{bottom:295.590000px;}
.y17{bottom:297.750000px;}
.y94{bottom:309.090000px;}
.y41{bottom:312.870000px;}
.y16{bottom:315.030000px;}
.yba{bottom:323.145000px;}
.y40{bottom:330.150000px;}
.y15{bottom:332.130000px;}
.y92{bottom:332.505000px;}
.y8d{bottom:347.985000px;}
.y14{bottom:349.410000px;}
.yb9{bottom:351.405000px;}
.y3f{bottom:356.430000px;}
.y13{bottom:366.690000px;}
.y3e{bottom:373.755000px;}
.y8c{bottom:376.455000px;}
.yb8{bottom:379.875000px;}
.y12{bottom:384.015000px;}
.y3d{bottom:391.035000px;}
.y8b{bottom:391.935000px;}
.y11{bottom:401.295000px;}
.y3c{bottom:408.135000px;}
.y8a{bottom:420.375000px;}
.y3b{bottom:425.415000px;}
.y10{bottom:427.035000px;}
.yb7{bottom:436.575000px;}
.y3a{bottom:442.695000px;}
.y89{bottom:448.635000px;}
.yb6{bottom:451.155000px;}
.y39{bottom:459.975000px;}
.yf{bottom:462.675000px;}
.y88{bottom:464.295000px;}
.yb5{bottom:465.735000px;}
.y38{bottom:477.255000px;}
.y85{bottom:479.955000px;}
.yb4{bottom:480.135000px;}
.y56{bottom:486.255000px;}
.ye{bottom:488.955000px;}
.y37{bottom:503.175000px;}
.y55{bottom:503.535000px;}
.yd{bottom:506.235000px;}
.y81{bottom:508.215000px;}
.yb3{bottom:508.575000px;}
.y54{bottom:520.635000px;}
.yc{bottom:523.515000px;}
.y80{bottom:536.655000px;}
.yaf{bottom:536.835000px;}
.y53{bottom:537.915000px;}
.y36{bottom:538.635000px;}
.yb{bottom:540.795000px;}
.y7d{bottom:552.135000px;}
.y52{bottom:555.225000px;}
.y35{bottom:555.945000px;}
.ya{bottom:557.925000px;}
.y7c{bottom:569.265000px;}
.y51{bottom:572.505000px;}
.y34{bottom:573.225000px;}
.yae{bottom:579.165000px;}
.y9{bottom:583.845000px;}
.y7b{bottom:584.925000px;}
.y33{bottom:590.505000px;}
.y50{bottom:598.425000px;}
.y8{bottom:599.325000px;}
.y79{bottom:600.585000px;}
.y32{bottom:607.785000px;}
.yad{bottom:608.865000px;}
.y7{bottom:614.805000px;}
.y76{bottom:616.065000px;}
.y31{bottom:625.065000px;}
.y6{bottom:630.285000px;}
.y73{bottom:631.740000px;}
.yab{bottom:637.320000px;}
.y30{bottom:642.165000px;}
.y6f{bottom:647.385000px;}
.y5{bottom:655.305000px;}
.y2f{bottom:659.445000px;}
.yaa{bottom:665.565000px;}
.y4{bottom:674.205000px;}
.y4f{bottom:676.725000px;}
.y2e{bottom:685.725000px;}
.y3{bottom:693.285000px;}
.y4e{bottom:694.005000px;}
.y6e{bottom:696.885000px;}
.y2d{bottom:703.005000px;}
.ya9{bottom:708.585000px;}
.y4d{bottom:711.285000px;}
.y6d{bottom:712.545000px;}
.y2c{bottom:720.285000px;}
.ya7{bottom:723.000000px;}
.y4c{bottom:728.385000px;}
.y2b{bottom:737.430000px;}
.ya6{bottom:737.610000px;}
.y2{bottom:740.850000px;}
.y2a{bottom:754.710000px;}
.ya5{bottom:766.050000px;}
.y1{bottom:768.390000px;}
.y29{bottom:771.990000px;}
.yc8{bottom:788.550000px;}
.y28{bottom:789.270000px;}
.ya3{bottom:794.295000px;}
.ya2{bottom:794.310000px;}
.yc7{bottom:805.830000px;}
.y27{bottom:806.550000px;}
.yc6{bottom:822.930000px;}
.y26{bottom:823.830000px;}
.y25{bottom:840.930000px;}
.ya1{bottom:843.990000px;}
.yc5{bottom:857.850000px;}
.y24{bottom:858.210000px;}
.ya0{bottom:859.470000px;}
.y23{bottom:906.270000px;}
.y22{bottom:924.660000px;}
.h21{height:13.665000px;}
.h1f{height:13.680000px;}
.h22{height:13.845000px;}
.h1e{height:13.881000px;}
.h18{height:14.745000px;}
.h16{height:14.760000px;}
.h13{height:14.925000px;}
.h15{height:14.940000px;}
.h17{height:14.970000px;}
.h1a{height:27.525000px;}
.h12{height:27.535500px;}
.h10{height:27.540000px;}
.h19{height:27.705000px;}
.h1c{height:27.711000px;}
.h1d{height:27.720000px;}
.h1b{height:27.741000px;}
.hf{height:28.260292px;}
.hc{height:41.122660px;}
.h20{height:41.430000px;}
.h23{height:43.246406px;}
.h8{height:45.184219px;}
.h7{height:47.321367px;}
.h14{height:47.344922px;}
.h11{height:48.616875px;}
.hd{height:51.320321px;}
.he{height:51.387942px;}
.h4{height:52.998047px;}
.h9{height:58.621992px;}
.h6{height:58.651172px;}
.h5{height:60.226875px;}
.h3{height:66.757500px;}
.ha{height:75.093750px;}
.h2{height:96.508125px;}
.hb{height:257.938155px;}
.h1{height:999.000000px;}
.h0{height:999.360000px;}
.w9{width:39.231000px;}
.w11{width:41.571000px;}
.w4{width:51.465000px;}
.w5{width:51.475500px;}
.w6{width:51.480000px;}
.w8{width:52.185000px;}
.wd{width:52.195500px;}
.we{width:52.200000px;}
.w7{width:52.221000px;}
.w10{width:56.505000px;}
.wf{width:56.541000px;}
.wc{width:59.256000px;}
.w12{width:214.581000px;}
.wa{width:234.066000px;}
.wb{width:256.881000px;}
.w3{width:274.026000px;}
.w2{width:393.477251px;}
.w0{width:659.160000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1b{left:4.851000px;}
.x23{left:6.825000px;}
.x1f{left:9.705000px;}
.x2b{left:11.520000px;}
.x1e{left:12.765000px;}
.x29{left:14.025000px;}
.x12{left:29.817371px;}
.x11{left:39.345756px;}
.x10{left:44.884623px;}
.xf{left:48.876903px;}
.x17{left:66.705601px;}
.x8{left:84.996000px;}
.x1{left:87.516000px;}
.x4{left:91.836000px;}
.x7{left:97.596000px;}
.x6{left:98.676000px;}
.x9{left:106.236000px;}
.x24{left:110.556000px;}
.x3{left:115.236000px;}
.x14{left:117.120028px;}
.x2{left:120.816000px;}
.x22{left:125.865000px;}
.x15{left:126.954969px;}
.x2c{left:128.205000px;}
.x25{left:130.896000px;}
.xe{left:132.660140px;}
.xb{left:138.096000px;}
.x5{left:158.070000px;}
.x13{left:172.760327px;}
.x18{left:178.606048px;}
.xd{left:211.395000px;}
.x1a{left:220.575000px;}
.x16{left:224.402194px;}
.xa{left:295.815000px;}
.x19{left:316.933483px;}
.x26{left:343.515000px;}
.x1c{left:360.660000px;}
.x27{left:405.120000px;}
.x1d{left:414.480000px;}
.x28{left:458.040000px;}
.x20{left:466.680000px;}
.x2a{left:515.310000px;}
.x21{left:519.630000px;}
.xc{left:526.470000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v5{vertical-align:-30.601036pt;}
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-9.832536pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.239467pt;}
.ls2{letter-spacing:-0.201067pt;}
.ls6{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.098325pt;}
.ls11{letter-spacing:-0.098196pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.198933pt;}
.ls10{letter-spacing:0.223963pt;}
.ls8{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.800000pt;}
.lsb{letter-spacing:62.240000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.ws13{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.wsa{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.077046pt;}
.ws4{word-spacing:-12.000000pt;}
.ws10{word-spacing:-10.918933pt;}
.ws12{word-spacing:-10.760320pt;}
.ws11{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.480533pt;}
.ws1{word-spacing:-9.600000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws0{word-spacing:-9.078933pt;}
.ws9{word-spacing:0.000000pt;}
.wsd{word-spacing:91.339099pt;}
._15{margin-left:-3.338453pt;}
._3{margin-left:-2.214613pt;}
._1{margin-left:-1.320960pt;}
._0{width:0.936320pt;}
._2{width:1.950933pt;}
._6{width:2.902827pt;}
._d{width:4.355840pt;}
._e{width:5.350613pt;}
._c{width:6.746240pt;}
._7{width:7.755520pt;}
._8{width:8.647467pt;}
._9{width:9.597867pt;}
._14{width:10.713813pt;}
._f{width:11.686400pt;}
._12{width:14.256000pt;}
._13{width:15.207253pt;}
._a{width:16.360960pt;}
._b{width:17.390080pt;}
._10{width:19.335680pt;}
._11{width:20.715733pt;}
._16{width:21.780267pt;}
._4{width:23.016320pt;}
._5{width:24.030720pt;}
._1b{width:25.003520pt;}
._17{width:33.890560pt;}
._19{width:92.298579pt;}
._18{width:102.163890pt;}
._1a{width:510.565216pt;}
.fsa{font-size:24.085342pt;}
.fs7{font-size:35.047527pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs8{font-size:43.738667pt;}
.fs9{font-size:43.796298pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:2.400000pt;}
.ya8{bottom:2.546667pt;}
.y87{bottom:2.560000pt;}
.ya4{bottom:2.573333pt;}
.y90{bottom:2.706667pt;}
.y83{bottom:2.720000pt;}
.y93{bottom:2.866667pt;}
.y7a{bottom:2.880000pt;}
.y74{bottom:3.026667pt;}
.y77{bottom:3.040000pt;}
.y7e{bottom:3.066667pt;}
.y75{bottom:3.186667pt;}
.y78{bottom:3.200000pt;}
.y7f{bottom:3.226667pt;}
.ybc{bottom:8.466667pt;}
.y8e{bottom:8.626667pt;}
.y70{bottom:8.640000pt;}
.y91{bottom:8.786667pt;}
.y84{bottom:8.800000pt;}
.y66{bottom:9.853303pt;}
.y71{bottom:14.720000pt;}
.yac{bottom:14.866667pt;}
.y86{bottom:14.880000pt;}
.yb0{bottom:14.906667pt;}
.y8f{bottom:15.026667pt;}
.y82{bottom:15.040000pt;}
.yb2{bottom:15.066667pt;}
.y5d{bottom:24.878516pt;}
.yb1{bottom:27.226667pt;}
.y5e{bottom:30.617439pt;}
.y65{bottom:53.297822pt;}
.y5f{bottom:53.844074pt;}
.y60{bottom:77.076170pt;}
.y61{bottom:100.302804pt;}
.yc4{bottom:102.080000pt;}
.y21{bottom:103.200000pt;}
.y9f{bottom:106.080000pt;}
.y5b{bottom:109.440000pt;}
.y4b{bottom:116.800000pt;}
.yc3{bottom:117.280000pt;}
.y20{bottom:118.560000pt;}
.y9e{bottom:121.440000pt;}
.y62{bottom:123.529438pt;}
.y5a{bottom:124.800000pt;}
.y4a{bottom:132.160000pt;}
.y1f{bottom:133.920000pt;}
.y9d{bottom:136.800000pt;}
.y63{bottom:146.756072pt;}
.y49{bottom:147.520000pt;}
.yc2{bottom:148.640000pt;}
.y1e{bottom:149.280000pt;}
.y9c{bottom:152.160000pt;}
.y68{bottom:154.679453pt;}
.y59{bottom:155.520000pt;}
.y48{bottom:162.880000pt;}
.yc1{bottom:164.000000pt;}
.y1d{bottom:164.640000pt;}
.y69{bottom:166.156203pt;}
.y6b{bottom:166.156205pt;}
.y9b{bottom:167.520000pt;}
.y64{bottom:169.982706pt;}
.y58{bottom:170.746667pt;}
.y67{bottom:171.894584pt;}
.y47{bottom:178.106667pt;}
.y1c{bottom:180.026667pt;}
.y9a{bottom:182.746667pt;}
.y57{bottom:182.906667pt;}
.y5c{bottom:183.679982pt;}
.y46{bottom:193.466667pt;}
.y1b{bottom:195.226667pt;}
.yc0{bottom:195.386667pt;}
.y99{bottom:198.106667pt;}
.y6a{bottom:198.947716pt;}
.y6c{bottom:207.417341pt;}
.y45{bottom:208.826667pt;}
.y1a{bottom:210.586667pt;}
.ybf{bottom:210.746667pt;}
.y98{bottom:213.466667pt;}
.y19{bottom:225.946667pt;}
.y97{bottom:228.826667pt;}
.y44{bottom:232.186667pt;}
.ybe{bottom:233.786667pt;}
.y18{bottom:241.306667pt;}
.y96{bottom:244.186667pt;}
.y43{bottom:247.546667pt;}
.ybd{bottom:248.986667pt;}
.y95{bottom:259.546667pt;}
.ybb{bottom:262.120000pt;}
.y42{bottom:262.746667pt;}
.y17{bottom:264.666667pt;}
.y94{bottom:274.746667pt;}
.y41{bottom:278.106667pt;}
.y16{bottom:280.026667pt;}
.yba{bottom:287.240000pt;}
.y40{bottom:293.466667pt;}
.y15{bottom:295.226667pt;}
.y92{bottom:295.560000pt;}
.y8d{bottom:309.320000pt;}
.y14{bottom:310.586667pt;}
.yb9{bottom:312.360000pt;}
.y3f{bottom:316.826667pt;}
.y13{bottom:325.946667pt;}
.y3e{bottom:332.226667pt;}
.y8c{bottom:334.626667pt;}
.yb8{bottom:337.666667pt;}
.y12{bottom:341.346667pt;}
.y3d{bottom:347.586667pt;}
.y8b{bottom:348.386667pt;}
.y11{bottom:356.706667pt;}
.y3c{bottom:362.786667pt;}
.y8a{bottom:373.666667pt;}
.y3b{bottom:378.146667pt;}
.y10{bottom:379.586667pt;}
.yb7{bottom:388.066667pt;}
.y3a{bottom:393.506667pt;}
.y89{bottom:398.786667pt;}
.yb6{bottom:401.026667pt;}
.y39{bottom:408.866667pt;}
.yf{bottom:411.266667pt;}
.y88{bottom:412.706667pt;}
.yb5{bottom:413.986667pt;}
.y38{bottom:424.226667pt;}
.y85{bottom:426.626667pt;}
.yb4{bottom:426.786667pt;}
.y56{bottom:432.226667pt;}
.ye{bottom:434.626667pt;}
.y37{bottom:447.266667pt;}
.y55{bottom:447.586667pt;}
.yd{bottom:449.986667pt;}
.y81{bottom:451.746667pt;}
.yb3{bottom:452.066667pt;}
.y54{bottom:462.786667pt;}
.yc{bottom:465.346667pt;}
.y80{bottom:477.026667pt;}
.yaf{bottom:477.186667pt;}
.y53{bottom:478.146667pt;}
.y36{bottom:478.786667pt;}
.yb{bottom:480.706667pt;}
.y7d{bottom:490.786667pt;}
.y52{bottom:493.533333pt;}
.y35{bottom:494.173333pt;}
.ya{bottom:495.933333pt;}
.y7c{bottom:506.013333pt;}
.y51{bottom:508.893333pt;}
.y34{bottom:509.533333pt;}
.yae{bottom:514.813333pt;}
.y9{bottom:518.973333pt;}
.y7b{bottom:519.933333pt;}
.y33{bottom:524.893333pt;}
.y50{bottom:531.933333pt;}
.y8{bottom:532.733333pt;}
.y79{bottom:533.853333pt;}
.y32{bottom:540.253333pt;}
.yad{bottom:541.213333pt;}
.y7{bottom:546.493333pt;}
.y76{bottom:547.613333pt;}
.y31{bottom:555.613333pt;}
.y6{bottom:560.253333pt;}
.y73{bottom:561.546667pt;}
.yab{bottom:566.506667pt;}
.y30{bottom:570.813333pt;}
.y6f{bottom:575.453333pt;}
.y5{bottom:582.493333pt;}
.y2f{bottom:586.173333pt;}
.yaa{bottom:591.613333pt;}
.y4{bottom:599.293333pt;}
.y4f{bottom:601.533333pt;}
.y2e{bottom:609.533333pt;}
.y3{bottom:616.253333pt;}
.y4e{bottom:616.893333pt;}
.y6e{bottom:619.453333pt;}
.y2d{bottom:624.893333pt;}
.ya9{bottom:629.853333pt;}
.y4d{bottom:632.253333pt;}
.y6d{bottom:633.373333pt;}
.y2c{bottom:640.253333pt;}
.ya7{bottom:642.666667pt;}
.y4c{bottom:647.453333pt;}
.y2b{bottom:655.493333pt;}
.ya6{bottom:655.653333pt;}
.y2{bottom:658.533333pt;}
.y2a{bottom:670.853333pt;}
.ya5{bottom:680.933333pt;}
.y1{bottom:683.013333pt;}
.y29{bottom:686.213333pt;}
.yc8{bottom:700.933333pt;}
.y28{bottom:701.573333pt;}
.ya3{bottom:706.040000pt;}
.ya2{bottom:706.053333pt;}
.yc7{bottom:716.293333pt;}
.y27{bottom:716.933333pt;}
.yc6{bottom:731.493333pt;}
.y26{bottom:732.293333pt;}
.y25{bottom:747.493333pt;}
.ya1{bottom:750.213333pt;}
.yc5{bottom:762.533333pt;}
.y24{bottom:762.853333pt;}
.ya0{bottom:763.973333pt;}
.y23{bottom:805.573333pt;}
.y22{bottom:821.920000pt;}
.h21{height:12.146667pt;}
.h1f{height:12.160000pt;}
.h22{height:12.306667pt;}
.h1e{height:12.338667pt;}
.h18{height:13.106667pt;}
.h16{height:13.120000pt;}
.h13{height:13.266667pt;}
.h15{height:13.280000pt;}
.h17{height:13.306667pt;}
.h1a{height:24.466667pt;}
.h12{height:24.476000pt;}
.h10{height:24.480000pt;}
.h19{height:24.626667pt;}
.h1c{height:24.632000pt;}
.h1d{height:24.640000pt;}
.h1b{height:24.658667pt;}
.hf{height:25.120259pt;}
.hc{height:36.553475pt;}
.h20{height:36.826667pt;}
.h23{height:38.441250pt;}
.h8{height:40.163750pt;}
.h7{height:42.063437pt;}
.h14{height:42.084375pt;}
.h11{height:43.215000pt;}
.hd{height:45.618063pt;}
.he{height:45.678171pt;}
.h4{height:47.109375pt;}
.h9{height:52.108438pt;}
.h6{height:52.134375pt;}
.h5{height:53.535000pt;}
.h3{height:59.340000pt;}
.ha{height:66.750000pt;}
.h2{height:85.785000pt;}
.hb{height:229.278360pt;}
.h1{height:888.000000pt;}
.h0{height:888.320000pt;}
.w9{width:34.872000pt;}
.w11{width:36.952000pt;}
.w4{width:45.746667pt;}
.w5{width:45.756000pt;}
.w6{width:45.760000pt;}
.w8{width:46.386667pt;}
.wd{width:46.396000pt;}
.we{width:46.400000pt;}
.w7{width:46.418667pt;}
.w10{width:50.226667pt;}
.wf{width:50.258667pt;}
.wc{width:52.672000pt;}
.w12{width:190.738667pt;}
.wa{width:208.058667pt;}
.wb{width:228.338667pt;}
.w3{width:243.578667pt;}
.w2{width:349.757556pt;}
.w0{width:585.920000pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:4.312000pt;}
.x23{left:6.066667pt;}
.x1f{left:8.626667pt;}
.x2b{left:10.240000pt;}
.x1e{left:11.346667pt;}
.x29{left:12.466667pt;}
.x12{left:26.504330pt;}
.x11{left:34.974005pt;}
.x10{left:39.897443pt;}
.xf{left:43.446136pt;}
.x17{left:59.293868pt;}
.x8{left:75.552000pt;}
.x1{left:77.792000pt;}
.x4{left:81.632000pt;}
.x7{left:86.752000pt;}
.x6{left:87.712000pt;}
.x9{left:94.432000pt;}
.x24{left:98.272000pt;}
.x3{left:102.432000pt;}
.x14{left:104.106691pt;}
.x2{left:107.392000pt;}
.x22{left:111.880000pt;}
.x15{left:112.848861pt;}
.x2c{left:113.960000pt;}
.x25{left:116.352000pt;}
.xe{left:117.920124pt;}
.xb{left:122.752000pt;}
.x5{left:140.506667pt;}
.x13{left:153.564735pt;}
.x18{left:158.760932pt;}
.xd{left:187.906667pt;}
.x1a{left:196.066667pt;}
.x16{left:199.468617pt;}
.xa{left:262.946667pt;}
.x19{left:281.718651pt;}
.x26{left:305.346667pt;}
.x1c{left:320.586667pt;}
.x27{left:360.106667pt;}
.x1d{left:368.426667pt;}
.x28{left:407.146667pt;}
.x20{left:414.826667pt;}
.x2a{left:458.053333pt;}
.x21{left:461.893333pt;}
.xc{left:467.973333pt;}
}




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