
    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_5581fcd77d67e26ec1623509.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_c2797bec6d29610aff9d0b2d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_567262de536e1bed5d16d21e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_71f3685ea97936f4f8556527.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_8da0103d6b3f945340c4d0fd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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;}
.ls12{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.496200px;}
.ls11{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.181200px;}
.ls7{letter-spacing:-0.017280px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.034560px;}
.lsf{letter-spacing:0.109200px;}
.ls13{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.223800px;}
.lsc{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:1.620000px;}
.lsb{letter-spacing:2.340000px;}
.ls4{letter-spacing:8.820000px;}
.lsd{letter-spacing:16.865280px;}
.lse{letter-spacing:20.465280px;}
.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;}
}
.ws0{word-spacing:-19.457280px;}
.ws8{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.283800px;}
.ws4{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.878800px;}
.ws3{word-spacing:-11.563800px;}
.ws7{word-spacing:0.000000px;}
._17{margin-left:-4.703040px;}
._10{margin-left:-2.955120px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._5{width:2.816640px;}
._4{width:3.888000px;}
._7{width:5.611680px;}
._6{width:6.804000px;}
._1d{width:7.838640px;}
._3{width:8.910000px;}
._b{width:10.314000px;}
._a{width:11.556000px;}
._19{width:12.621600px;}
._1a{width:13.728960px;}
._d{width:14.796000px;}
._c{width:15.857280px;}
._9{width:17.089680px;}
._8{width:18.144000px;}
._13{width:19.194720px;}
._16{width:20.600640px;}
._f{width:22.584000px;}
._e{width:23.760000px;}
._18{width:25.833600px;}
._1b{width:27.688320px;}
._1c{width:31.265280px;}
._15{width:32.346000px;}
._14{width:33.534000px;}
._12{width:38.398320px;}
._11{width:40.338000px;}
._2{width:42.600000px;}
._1e{width:61.272000px;}
._1f{width:62.430480px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.060000px;}
.y2{bottom:5.400000px;}
.y52{bottom:8.820000px;}
.y53{bottom:11.340000px;}
.y9{bottom:11.730000px;}
.y46{bottom:18.540000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y45{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y44{bottom:49.500000px;}
.yb{bottom:58.320000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y43{bottom:65.160000px;}
.y42{bottom:80.640000px;}
.y41{bottom:96.120000px;}
.y96{bottom:110.376000px;}
.y40{bottom:111.600000px;}
.y95{bottom:114.876000px;}
.y51{bottom:120.996000px;}
.y94{bottom:124.236000px;}
.y3f{bottom:127.080000px;}
.y93{bottom:128.736000px;}
.y92{bottom:137.916000px;}
.yaa{bottom:138.816000px;}
.y9e{bottom:138.996000px;}
.ya6{bottom:142.416000px;}
.y3e{bottom:142.740000px;}
.y91{bottom:151.770000px;}
.y14{bottom:152.310000px;}
.y90{bottom:156.270000px;}
.ya9{bottom:157.710000px;}
.y3d{bottom:158.220000px;}
.y8f{bottom:165.630000px;}
.ya5{bottom:166.530000px;}
.y8e{bottom:170.130000px;}
.y3c{bottom:173.700000px;}
.y9d{bottom:176.790000px;}
.y8d{bottom:179.310000px;}
.y8c{bottom:183.810000px;}
.y3b{bottom:189.225000px;}
.y8b{bottom:193.170000px;}
.y9c{bottom:195.690000px;}
.y8a{bottom:197.670000px;}
.y3a{bottom:204.885000px;}
.y89{bottom:207.030000px;}
.ya2{bottom:207.930000px;}
.y88{bottom:211.530000px;}
.y9b{bottom:214.770000px;}
.y39{bottom:220.365000px;}
.ya4{bottom:220.710000px;}
.y87{bottom:221.790000px;}
.y9a{bottom:233.670000px;}
.y38{bottom:235.845000px;}
.y37{bottom:251.325000px;}
.y99{bottom:252.570000px;}
.y36{bottom:266.985000px;}
.y86{bottom:271.650000px;}
.y35{bottom:282.465000px;}
.y85{bottom:290.550000px;}
.y34{bottom:297.945000px;}
.y84{bottom:309.630000px;}
.y33{bottom:313.425000px;}
.y83{bottom:328.530000px;}
.y32{bottom:329.085000px;}
.ya3{bottom:334.470000px;}
.y31{bottom:344.565000px;}
.y81{bottom:347.475000px;}
.y82{bottom:353.415000px;}
.y50{bottom:359.685000px;}
.y30{bottom:360.045000px;}
.y80{bottom:366.555000px;}
.y4f{bottom:373.545000px;}
.y2f{bottom:375.525000px;}
.y7e{bottom:385.455000px;}
.y4e{bottom:387.225000px;}
.y2e{bottom:391.185000px;}
.y7f{bottom:391.395000px;}
.y4d{bottom:401.085000px;}
.y7d{bottom:404.535000px;}
.y2d{bottom:406.665000px;}
.y4c{bottom:414.945000px;}
.y2c{bottom:422.145000px;}
.y7c{bottom:423.435000px;}
.y4b{bottom:428.625000px;}
.y2b{bottom:437.625000px;}
.y7b{bottom:442.335000px;}
.y4a{bottom:442.485000px;}
.ya1{bottom:448.275000px;}
.y2a{bottom:453.315000px;}
.y49{bottom:456.375000px;}
.y79{bottom:461.415000px;}
.y7a{bottom:467.355000px;}
.y29{bottom:468.795000px;}
.y48{bottom:470.055000px;}
.y78{bottom:480.315000px;}
.y28{bottom:484.275000px;}
.y76{bottom:499.395000px;}
.y27{bottom:499.755000px;}
.y77{bottom:505.335000px;}
.y26{bottom:515.415000px;}
.y75{bottom:518.295000px;}
.y98{bottom:524.235000px;}
.y25{bottom:530.895000px;}
.y74{bottom:537.195000px;}
.y24{bottom:546.375000px;}
.y73{bottom:556.275000px;}
.y23{bottom:561.855000px;}
.y72{bottom:575.175000px;}
.y22{bottom:577.515000px;}
.y21{bottom:592.995000px;}
.y71{bottom:594.255000px;}
.y20{bottom:608.475000px;}
.y70{bottom:613.185000px;}
.ya0{bottom:619.125000px;}
.y1f{bottom:623.955000px;}
.y6f{bottom:632.085000px;}
.y1e{bottom:639.615000px;}
.y6e{bottom:651.165000px;}
.y1d{bottom:655.095000px;}
.y6d{bottom:670.065000px;}
.y1c{bottom:670.575000px;}
.y1b{bottom:686.055000px;}
.y6b{bottom:689.145000px;}
.y6c{bottom:695.085000px;}
.y1a{bottom:701.535000px;}
.y6a{bottom:708.045000px;}
.y19{bottom:717.195000px;}
.y69{bottom:727.125000px;}
.y18{bottom:732.720000px;}
.y9f{bottom:733.065000px;}
.y68{bottom:746.025000px;}
.y17{bottom:748.200000px;}
.y16{bottom:763.680000px;}
.y67{bottom:764.925000px;}
.y15{bottom:779.340000px;}
.y66{bottom:784.005000px;}
.y64{bottom:802.905000px;}
.y65{bottom:808.845000px;}
.y63{bottom:821.985000px;}
.y62{bottom:840.885000px;}
.y60{bottom:859.785000px;}
.y61{bottom:865.725000px;}
.y5f{bottom:878.910000px;}
.y5e{bottom:897.810000px;}
.ya8{bottom:903.750000px;}
.y5d{bottom:916.890000px;}
.y5c{bottom:935.790000px;}
.y13{bottom:947.850000px;}
.y5b{bottom:954.690000px;}
.y12{bottom:966.390000px;}
.y5a{bottom:973.770000px;}
.y11{bottom:983.670000px;}
.y59{bottom:992.670000px;}
.y10{bottom:1001.310000px;}
.y58{bottom:1011.750000px;}
.yf{bottom:1020.390000px;}
.y57{bottom:1030.650000px;}
.ya7{bottom:1036.590000px;}
.ye{bottom:1039.830000px;}
.y56{bottom:1049.550000px;}
.yd{bottom:1062.150000px;}
.y55{bottom:1068.630000px;}
.yc{bottom:1084.650000px;}
.y54{bottom:1087.530000px;}
.y97{bottom:1093.470000px;}
.ya{bottom:1109.130000px;}
.y1{bottom:1131.450000px;}
.h16{height:21.114844px;}
.h14{height:29.158594px;}
.h12{height:31.320000px;}
.h11{height:33.683203px;}
.hf{height:34.036523px;}
.hd{height:37.705078px;}
.hc{height:38.100586px;}
.h7{height:39.147891px;}
.h10{height:39.760312px;}
.ha{height:41.726953px;}
.h3{height:42.164648px;}
.he{height:44.507812px;}
.h13{height:46.251562px;}
.h9{height:46.736719px;}
.h6{height:48.224531px;}
.h5{height:49.255313px;}
.h4{height:50.800781px;}
.h17{height:53.755312px;}
.h15{height:54.596250px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.hb{height:791.925000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w7{width:224.130000px;}
.w8{width:283.530000px;}
.w9{width:391.575000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x15{left:24.840000px;}
.x6{left:31.140000px;}
.x2{left:70.374000px;}
.x7{left:85.725000px;}
.x9{left:104.625000px;}
.x1{left:108.036000px;}
.x26{left:111.815987px;}
.xb{left:115.055987px;}
.x12{left:116.136000px;}
.x29{left:129.275987px;}
.xc{left:130.535987px;}
.x8{left:132.345000px;}
.x3c{left:140.075987px;}
.x10{left:142.775987px;}
.x1d{left:149.795973px;}
.x1e{left:155.009987px;}
.x16{left:162.029987px;}
.x30{left:165.269973px;}
.x31{left:175.709987px;}
.x3{left:180.030000px;}
.x34{left:187.229973px;}
.x11{left:195.869987px;}
.x35{left:197.669987px;}
.xd{left:201.089987px;}
.x3b{left:216.029987px;}
.x21{left:224.309973px;}
.x22{left:229.529987px;}
.x36{left:239.069987px;}
.xf{left:259.769987px;}
.x17{left:315.974973px;}
.x18{left:321.194987px;}
.x25{left:324.074987px;}
.x14{left:399.675000px;}
.xe{left:446.474987px;}
.xa{left:500.144987px;}
.x27{left:510.584973px;}
.x28{left:515.804987px;}
.x19{left:561.344973px;}
.x1a{left:566.564987px;}
.x13{left:575.205000px;}
.x5{left:607.965000px;}
.x2a{left:644.144973px;}
.x2b{left:649.364987px;}
.x1f{left:654.404973px;}
.x20{left:659.669987px;}
.x23{left:676.589973px;}
.x24{left:681.809987px;}
.x37{left:694.589973px;}
.x38{left:705.029987px;}
.x39{left:726.449973px;}
.x2e{left:733.109973px;}
.x1b{left:735.269973px;}
.x3a{left:736.889987px;}
.x1c{left:740.489987px;}
.x2f{left:743.549987px;}
.x32{left:749.669973px;}
.x33{left:760.109987px;}
.x2c{left:774.689973px;}
.x2d{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.441067pt;}
.ls11{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.161067pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.030720pt;}
.lsf{letter-spacing:0.097067pt;}
.ls13{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.198933pt;}
.lsc{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:1.440000pt;}
.lsb{letter-spacing:2.080000pt;}
.ls4{letter-spacing:7.840000pt;}
.lsd{letter-spacing:14.991360pt;}
.lse{letter-spacing:18.191360pt;}
.ws0{word-spacing:-17.295360pt;}
.ws8{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.918933pt;}
.ws4{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.558933pt;}
.ws3{word-spacing:-10.278933pt;}
.ws7{word-spacing:0.000000pt;}
._17{margin-left:-4.180480pt;}
._10{margin-left:-2.626773pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._5{width:2.503680pt;}
._4{width:3.456000pt;}
._7{width:4.988160pt;}
._6{width:6.048000pt;}
._1d{width:6.967680pt;}
._3{width:7.920000pt;}
._b{width:9.168000pt;}
._a{width:10.272000pt;}
._19{width:11.219200pt;}
._1a{width:12.203520pt;}
._d{width:13.152000pt;}
._c{width:14.095360pt;}
._9{width:15.190827pt;}
._8{width:16.128000pt;}
._13{width:17.061973pt;}
._16{width:18.311680pt;}
._f{width:20.074667pt;}
._e{width:21.120000pt;}
._18{width:22.963200pt;}
._1b{width:24.611840pt;}
._1c{width:27.791360pt;}
._15{width:28.752000pt;}
._14{width:29.808000pt;}
._12{width:34.131840pt;}
._11{width:35.856000pt;}
._2{width:37.866667pt;}
._1e{width:54.464000pt;}
._1f{width:55.493760pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.720000pt;}
.y2{bottom:4.800000pt;}
.y52{bottom:7.840000pt;}
.y53{bottom:10.080000pt;}
.y9{bottom:10.426667pt;}
.y46{bottom:16.480000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y45{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y44{bottom:44.000000pt;}
.yb{bottom:51.840000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y43{bottom:57.920000pt;}
.y42{bottom:71.680000pt;}
.y41{bottom:85.440000pt;}
.y96{bottom:98.112000pt;}
.y40{bottom:99.200000pt;}
.y95{bottom:102.112000pt;}
.y51{bottom:107.552000pt;}
.y94{bottom:110.432000pt;}
.y3f{bottom:112.960000pt;}
.y93{bottom:114.432000pt;}
.y92{bottom:122.592000pt;}
.yaa{bottom:123.392000pt;}
.y9e{bottom:123.552000pt;}
.ya6{bottom:126.592000pt;}
.y3e{bottom:126.880000pt;}
.y91{bottom:134.906667pt;}
.y14{bottom:135.386667pt;}
.y90{bottom:138.906667pt;}
.ya9{bottom:140.186667pt;}
.y3d{bottom:140.640000pt;}
.y8f{bottom:147.226667pt;}
.ya5{bottom:148.026667pt;}
.y8e{bottom:151.226667pt;}
.y3c{bottom:154.400000pt;}
.y9d{bottom:157.146667pt;}
.y8d{bottom:159.386667pt;}
.y8c{bottom:163.386667pt;}
.y3b{bottom:168.200000pt;}
.y8b{bottom:171.706667pt;}
.y9c{bottom:173.946667pt;}
.y8a{bottom:175.706667pt;}
.y3a{bottom:182.120000pt;}
.y89{bottom:184.026667pt;}
.ya2{bottom:184.826667pt;}
.y88{bottom:188.026667pt;}
.y9b{bottom:190.906667pt;}
.y39{bottom:195.880000pt;}
.ya4{bottom:196.186667pt;}
.y87{bottom:197.146667pt;}
.y9a{bottom:207.706667pt;}
.y38{bottom:209.640000pt;}
.y37{bottom:223.400000pt;}
.y99{bottom:224.506667pt;}
.y36{bottom:237.320000pt;}
.y86{bottom:241.466667pt;}
.y35{bottom:251.080000pt;}
.y85{bottom:258.266667pt;}
.y34{bottom:264.840000pt;}
.y84{bottom:275.226667pt;}
.y33{bottom:278.600000pt;}
.y83{bottom:292.026667pt;}
.y32{bottom:292.520000pt;}
.ya3{bottom:297.306667pt;}
.y31{bottom:306.280000pt;}
.y81{bottom:308.866667pt;}
.y82{bottom:314.146667pt;}
.y50{bottom:319.720000pt;}
.y30{bottom:320.040000pt;}
.y80{bottom:325.826667pt;}
.y4f{bottom:332.040000pt;}
.y2f{bottom:333.800000pt;}
.y7e{bottom:342.626667pt;}
.y4e{bottom:344.200000pt;}
.y2e{bottom:347.720000pt;}
.y7f{bottom:347.906667pt;}
.y4d{bottom:356.520000pt;}
.y7d{bottom:359.586667pt;}
.y2d{bottom:361.480000pt;}
.y4c{bottom:368.840000pt;}
.y2c{bottom:375.240000pt;}
.y7c{bottom:376.386667pt;}
.y4b{bottom:381.000000pt;}
.y2b{bottom:389.000000pt;}
.y7b{bottom:393.186667pt;}
.y4a{bottom:393.320000pt;}
.ya1{bottom:398.466667pt;}
.y2a{bottom:402.946667pt;}
.y49{bottom:405.666667pt;}
.y79{bottom:410.146667pt;}
.y7a{bottom:415.426667pt;}
.y29{bottom:416.706667pt;}
.y48{bottom:417.826667pt;}
.y78{bottom:426.946667pt;}
.y28{bottom:430.466667pt;}
.y76{bottom:443.906667pt;}
.y27{bottom:444.226667pt;}
.y77{bottom:449.186667pt;}
.y26{bottom:458.146667pt;}
.y75{bottom:460.706667pt;}
.y98{bottom:465.986667pt;}
.y25{bottom:471.906667pt;}
.y74{bottom:477.506667pt;}
.y24{bottom:485.666667pt;}
.y73{bottom:494.466667pt;}
.y23{bottom:499.426667pt;}
.y72{bottom:511.266667pt;}
.y22{bottom:513.346667pt;}
.y21{bottom:527.106667pt;}
.y71{bottom:528.226667pt;}
.y20{bottom:540.866667pt;}
.y70{bottom:545.053333pt;}
.ya0{bottom:550.333333pt;}
.y1f{bottom:554.626667pt;}
.y6f{bottom:561.853333pt;}
.y1e{bottom:568.546667pt;}
.y6e{bottom:578.813333pt;}
.y1d{bottom:582.306667pt;}
.y6d{bottom:595.613333pt;}
.y1c{bottom:596.066667pt;}
.y1b{bottom:609.826667pt;}
.y6b{bottom:612.573333pt;}
.y6c{bottom:617.853333pt;}
.y1a{bottom:623.586667pt;}
.y6a{bottom:629.373333pt;}
.y19{bottom:637.506667pt;}
.y69{bottom:646.333333pt;}
.y18{bottom:651.306667pt;}
.y9f{bottom:651.613333pt;}
.y68{bottom:663.133333pt;}
.y17{bottom:665.066667pt;}
.y16{bottom:678.826667pt;}
.y67{bottom:679.933333pt;}
.y15{bottom:692.746667pt;}
.y66{bottom:696.893333pt;}
.y64{bottom:713.693333pt;}
.y65{bottom:718.973333pt;}
.y63{bottom:730.653333pt;}
.y62{bottom:747.453333pt;}
.y60{bottom:764.253333pt;}
.y61{bottom:769.533333pt;}
.y5f{bottom:781.253333pt;}
.y5e{bottom:798.053333pt;}
.ya8{bottom:803.333333pt;}
.y5d{bottom:815.013333pt;}
.y5c{bottom:831.813333pt;}
.y13{bottom:842.533333pt;}
.y5b{bottom:848.613333pt;}
.y12{bottom:859.013333pt;}
.y5a{bottom:865.573333pt;}
.y11{bottom:874.373333pt;}
.y59{bottom:882.373333pt;}
.y10{bottom:890.053333pt;}
.y58{bottom:899.333333pt;}
.yf{bottom:907.013333pt;}
.y57{bottom:916.133333pt;}
.ya7{bottom:921.413333pt;}
.ye{bottom:924.293333pt;}
.y56{bottom:932.933333pt;}
.yd{bottom:944.133333pt;}
.y55{bottom:949.893333pt;}
.yc{bottom:964.133333pt;}
.y54{bottom:966.693333pt;}
.y97{bottom:971.973333pt;}
.ya{bottom:985.893333pt;}
.y1{bottom:1005.733333pt;}
.h16{height:18.768750pt;}
.h14{height:25.918750pt;}
.h12{height:27.840000pt;}
.h11{height:29.940625pt;}
.hf{height:30.254687pt;}
.hd{height:33.515625pt;}
.hc{height:33.867188pt;}
.h7{height:34.798125pt;}
.h10{height:35.342500pt;}
.ha{height:37.090625pt;}
.h3{height:37.479688pt;}
.he{height:39.562500pt;}
.h13{height:41.112500pt;}
.h9{height:41.543750pt;}
.h6{height:42.866250pt;}
.h5{height:43.782500pt;}
.h4{height:45.156250pt;}
.h17{height:47.782500pt;}
.h15{height:48.530000pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.hb{height:703.933333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w7{width:199.226667pt;}
.w8{width:252.026667pt;}
.w9{width:348.066667pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x15{left:22.080000pt;}
.x6{left:27.680000pt;}
.x2{left:62.554667pt;}
.x7{left:76.200000pt;}
.x9{left:93.000000pt;}
.x1{left:96.032000pt;}
.x26{left:99.391988pt;}
.xb{left:102.271988pt;}
.x12{left:103.232000pt;}
.x29{left:114.911988pt;}
.xc{left:116.031988pt;}
.x8{left:117.640000pt;}
.x3c{left:124.511988pt;}
.x10{left:126.911988pt;}
.x1d{left:133.151976pt;}
.x1e{left:137.786655pt;}
.x16{left:144.026655pt;}
.x30{left:146.906643pt;}
.x31{left:156.186655pt;}
.x3{left:160.026667pt;}
.x34{left:166.426643pt;}
.x11{left:174.106655pt;}
.x35{left:175.706655pt;}
.xd{left:178.746655pt;}
.x3b{left:192.026655pt;}
.x21{left:199.386643pt;}
.x22{left:204.026655pt;}
.x36{left:212.506655pt;}
.xf{left:230.906655pt;}
.x17{left:280.866643pt;}
.x18{left:285.506655pt;}
.x25{left:288.066655pt;}
.x14{left:355.266667pt;}
.xe{left:396.866655pt;}
.xa{left:444.573322pt;}
.x27{left:453.853310pt;}
.x28{left:458.493322pt;}
.x19{left:498.973310pt;}
.x1a{left:503.613322pt;}
.x13{left:511.293333pt;}
.x5{left:540.413333pt;}
.x2a{left:572.573310pt;}
.x2b{left:577.213322pt;}
.x1f{left:581.693310pt;}
.x20{left:586.373322pt;}
.x23{left:601.413310pt;}
.x24{left:606.053322pt;}
.x37{left:617.413310pt;}
.x38{left:626.693322pt;}
.x39{left:645.733310pt;}
.x2e{left:651.653310pt;}
.x1b{left:653.573310pt;}
.x3a{left:655.013322pt;}
.x1c{left:658.213322pt;}
.x2f{left:660.933322pt;}
.x32{left:666.373310pt;}
.x33{left:675.653322pt;}
.x2c{left:688.613310pt;}
.x2d{left:697.893322pt;}
}




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