
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_feabae20ccf9a6cbdbd72a3e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2cb543023ab028f0d946311b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_e652d8d821bbdd8d11fcb63a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_9677a9a42c0543133e3e20df.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_27d3b8e6af56a0c4df422f08.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_7634eeeddf19aaaf91015dc9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_af1c53d0b560554fd72bffe0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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:ff9;src:url('chunks/assets/font_7cc392b85c1e8174fd3db056.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ea961c720f742eb42e9cd69b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064453;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:ffb;src:url('chunks/assets/font_1dfba1192cab9bb4f1644b60.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.v2{vertical-align:-94.320000px;}
.v1{vertical-align:-84.960000px;}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.lsa{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.181440px;}
.ls1b{letter-spacing:0.208080px;}
.ls1e{letter-spacing:0.252720px;}
.lse{letter-spacing:0.360000px;}
.ls1a{letter-spacing:1.260000px;}
.ls0{letter-spacing:6.300000px;}
.ls1{letter-spacing:11.520000px;}
.lsb{letter-spacing:14.220000px;}
.ls7{letter-spacing:17.820000px;}
.ls12{letter-spacing:18.540000px;}
.ls13{letter-spacing:19.956000px;}
.ls4{letter-spacing:19.980000px;}
.ls11{letter-spacing:20.880000px;}
.ls1c{letter-spacing:24.300000px;}
.ls17{letter-spacing:25.020000px;}
.lsc{letter-spacing:27.180000px;}
.ls15{letter-spacing:30.060000px;}
.ls16{letter-spacing:30.780000px;}
.ls20{letter-spacing:33.984000px;}
.ls3{letter-spacing:45.180000px;}
.ls10{letter-spacing:48.060000px;}
.ls5{letter-spacing:59.040000px;}
.ls1f{letter-spacing:71.100000px;}
.ls18{letter-spacing:91.440000px;}
.ls2{letter-spacing:150.624000px;}
.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;}
}
.ws7{word-spacing:-21.312720px;}
.ws2{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.360000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.784000px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws1{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-2.159280px;}
._0{margin-left:-1.054080px;}
._1{width:1.224000px;}
._8{width:2.976000px;}
._20{width:4.296240px;}
._1b{width:6.015360px;}
._14{width:7.160400px;}
._d{width:8.508240px;}
._a{width:10.104000px;}
._2{width:11.280000px;}
._3{width:12.360000px;}
._4{width:13.536000px;}
._10{width:15.500160px;}
._13{width:16.879200px;}
._11{width:18.122880px;}
._9{width:19.964160px;}
._5{width:21.312000px;}
._6{width:22.680000px;}
._1a{width:23.764320px;}
._7{width:24.912000px;}
._19{width:26.157600px;}
._18{width:27.161520px;}
._17{width:28.458480px;}
._24{width:29.482560px;}
._23{width:30.800880px;}
._27{width:32.254800px;}
._33{width:34.201440px;}
._34{width:35.274240px;}
._39{width:37.977840px;}
._26{width:39.239280px;}
._25{width:40.242240px;}
._1f{width:41.479200px;}
._28{width:42.796800px;}
._c{width:43.973280px;}
._b{width:45.455520px;}
._16{width:47.090160px;}
._15{width:48.750480px;}
._1e{width:49.845600px;}
._29{width:51.067440px;}
._1d{width:52.110000px;}
._1c{width:53.282880px;}
._35{width:54.635040px;}
._f{width:57.917280px;}
._e{width:59.027760px;}
._31{width:61.272000px;}
._32{width:62.280000px;}
._37{width:65.558160px;}
._36{width:66.970800px;}
._38{width:70.713840px;}
._2a{width:78.006240px;}
._22{width:79.367760px;}
._21{width:80.606160px;}
._2b{width:82.092960px;}
._2d{width:90.936000px;}
._2e{width:91.944000px;}
._2f{width:107.208000px;}
._30{width:108.576000px;}
._2c{width:325.800000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:3.960000px;}
.y61{bottom:24.660000px;}
.y3{bottom:35.856000px;}
.y65{bottom:45.360000px;}
.y2{bottom:55.476000px;}
.y64{bottom:66.060000px;}
.y55{bottom:75.456000px;}
.y5d{bottom:79.416000px;}
.y58{bottom:80.676000px;}
.y54{bottom:92.736000px;}
.y57{bottom:93.996000px;}
.y53{bottom:97.956000px;}
.y2b{bottom:102.996000px;}
.y5c{bottom:107.316000px;}
.y52{bottom:110.016000px;}
.y51{bottom:115.236000px;}
.y6b{bottom:122.256000px;}
.y6a{bottom:127.296000px;}
.y50{bottom:128.556000px;}
.y2a{bottom:130.896000px;}
.y69{bottom:132.516000px;}
.y5b{bottom:135.036000px;}
.y68{bottom:145.656000px;}
.y4f{bottom:149.976000px;}
.y29{bottom:158.610000px;}
.y5a{bottom:162.750000px;}
.y4e{bottom:177.870000px;}
.y28{bottom:186.330000px;}
.y59{bottom:190.650000px;}
.y4d{bottom:205.590000px;}
.y63{bottom:210.990000px;}
.y27{bottom:214.230000px;}
.y4b{bottom:233.310000px;}
.y4c{bottom:240.870000px;}
.y26{bottom:241.950000px;}
.y4a{bottom:261.210000px;}
.y25{bottom:269.670000px;}
.y49{bottom:288.975000px;}
.y62{bottom:294.555000px;}
.y24{bottom:297.435000px;}
.y48{bottom:316.695000px;}
.y23{bottom:325.335000px;}
.y60{bottom:336.675000px;}
.y47{bottom:344.415000px;}
.y22{bottom:353.055000px;}
.y46{bottom:372.315000px;}
.y5e{bottom:378.795000px;}
.y21{bottom:380.775000px;}
.y45{bottom:400.035000px;}
.y20{bottom:408.495000px;}
.y44{bottom:427.755000px;}
.y1f{bottom:436.395000px;}
.y43{bottom:455.655000px;}
.y1e{bottom:464.115000px;}
.y42{bottom:483.375000px;}
.y1d{bottom:491.835000px;}
.y41{bottom:511.095000px;}
.y1c{bottom:519.735000px;}
.y40{bottom:538.815000px;}
.y1b{bottom:547.455000px;}
.y3f{bottom:566.745000px;}
.y1a{bottom:575.205000px;}
.y3e{bottom:594.465000px;}
.y19{bottom:602.925000px;}
.y3d{bottom:622.185000px;}
.y3c{bottom:649.905000px;}
.y18{bottom:654.405000px;}
.y17{bottom:675.105000px;}
.y3b{bottom:677.805000px;}
.y16{bottom:695.805000px;}
.y3a{bottom:705.525000px;}
.y15{bottom:716.505000px;}
.y39{bottom:733.245000px;}
.y14{bottom:737.205000px;}
.y77{bottom:746.205000px;}
.y13{bottom:757.905000px;}
.y38{bottom:761.145000px;}
.y12{bottom:778.605000px;}
.y76{bottom:778.785000px;}
.y37{bottom:788.865000px;}
.y67{bottom:796.425000px;}
.y11{bottom:799.305000px;}
.y75{bottom:799.845000px;}
.y36{bottom:816.585000px;}
.y10{bottom:820.005000px;}
.y74{bottom:820.545000px;}
.y56{bottom:824.145000px;}
.yf{bottom:840.705000px;}
.y73{bottom:841.245000px;}
.y35{bottom:844.305000px;}
.ye{bottom:861.450000px;}
.y72{bottom:861.990000px;}
.y34{bottom:872.250000px;}
.yd{bottom:882.150000px;}
.y71{bottom:882.690000px;}
.y33{bottom:899.970000px;}
.yc{bottom:902.850000px;}
.y70{bottom:903.390000px;}
.y6f{bottom:924.090000px;}
.yb{bottom:924.450000px;}
.y32{bottom:927.690000px;}
.y6e{bottom:944.790000px;}
.ya{bottom:945.510000px;}
.y31{bottom:955.590000px;}
.y66{bottom:963.150000px;}
.y6d{bottom:965.490000px;}
.y9{bottom:966.210000px;}
.y30{bottom:983.310000px;}
.y6c{bottom:986.190000px;}
.y8{bottom:986.910000px;}
.y7{bottom:1007.610000px;}
.y2f{bottom:1011.030000px;}
.y6{bottom:1028.310000px;}
.y2d{bottom:1038.750000px;}
.y2e{bottom:1046.310000px;}
.y2c{bottom:1066.650000px;}
.y5{bottom:1070.250000px;}
.y4{bottom:1094.370000px;}
.y1{bottom:1194.120000px;}
.h10{height:20.700000px;}
.he{height:38.158594px;}
.h11{height:41.400000px;}
.hc{height:52.998047px;}
.hf{height:58.651172px;}
.h7{height:61.101562px;}
.h12{height:63.457031px;}
.h2{height:65.884219px;}
.h8{height:70.628906px;}
.h6{height:70.664062px;}
.hd{height:71.488828px;}
.h15{height:71.613281px;}
.h3{height:72.562500px;}
.h4{height:72.846211px;}
.h14{height:74.004654px;}
.h9{height:74.244727px;}
.hb{height:82.635820px;}
.ha{height:82.676953px;}
.h13{height:82.836000px;}
.h5{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:205.770000px;}
.w5{width:244.875000px;}
.w6{width:286.410000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.740000px;}
.x1{left:42.479987px;}
.x19{left:70.380000px;}
.xb{left:84.959987px;}
.x14{left:89.855987px;}
.x5{left:96.875987px;}
.xd{left:106.055987px;}
.xc{left:111.995987px;}
.x17{left:116.495987px;}
.x18{left:126.935987px;}
.x10{left:137.555987px;}
.x21{left:138.995987px;}
.x4{left:140.795987px;}
.x8{left:250.769987px;}
.x1b{left:276.870000px;}
.x9{left:298.154987px;}
.x13{left:301.034987px;}
.x15{left:303.014973px;}
.x16{left:309.854987px;}
.x7{left:321.014987px;}
.x6{left:348.734987px;}
.x2{left:369.254987px;}
.x1d{left:380.774973px;}
.x1e{left:387.614987px;}
.xa{left:443.774987px;}
.x3{left:446.474987px;}
.x1c{left:522.465000px;}
.x11{left:569.264973px;}
.x12{left:576.104987px;}
.xe{left:758.849973px;}
.xf{left:765.689987px;}
.x1f{left:780.089973px;}
.x20{left:786.929987px;}
@media print{
.v2{vertical-align:-83.840000pt;}
.v1{vertical-align:-75.520000pt;}
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.lsa{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.161280pt;}
.ls1b{letter-spacing:0.184960pt;}
.ls1e{letter-spacing:0.224640pt;}
.lse{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:1.120000pt;}
.ls0{letter-spacing:5.600000pt;}
.ls1{letter-spacing:10.240000pt;}
.lsb{letter-spacing:12.640000pt;}
.ls7{letter-spacing:15.840000pt;}
.ls12{letter-spacing:16.480000pt;}
.ls13{letter-spacing:17.738667pt;}
.ls4{letter-spacing:17.760000pt;}
.ls11{letter-spacing:18.560000pt;}
.ls1c{letter-spacing:21.600000pt;}
.ls17{letter-spacing:22.240000pt;}
.lsc{letter-spacing:24.160000pt;}
.ls15{letter-spacing:26.720000pt;}
.ls16{letter-spacing:27.360000pt;}
.ls20{letter-spacing:30.208000pt;}
.ls3{letter-spacing:40.160000pt;}
.ls10{letter-spacing:42.720000pt;}
.ls5{letter-spacing:52.480000pt;}
.ls1f{letter-spacing:63.200000pt;}
.ls18{letter-spacing:81.280000pt;}
.ls2{letter-spacing:133.888000pt;}
.ws7{word-spacing:-18.944640pt;}
.ws2{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.320000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws1{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-1.919360pt;}
._0{margin-left:-0.936960pt;}
._1{width:1.088000pt;}
._8{width:2.645333pt;}
._20{width:3.818880pt;}
._1b{width:5.346987pt;}
._14{width:6.364800pt;}
._d{width:7.562880pt;}
._a{width:8.981333pt;}
._2{width:10.026667pt;}
._3{width:10.986667pt;}
._4{width:12.032000pt;}
._10{width:13.777920pt;}
._13{width:15.003733pt;}
._11{width:16.109227pt;}
._9{width:17.745920pt;}
._5{width:18.944000pt;}
._6{width:20.160000pt;}
._1a{width:21.123840pt;}
._7{width:22.144000pt;}
._19{width:23.251200pt;}
._18{width:24.143573pt;}
._17{width:25.296427pt;}
._24{width:26.206720pt;}
._23{width:27.378560pt;}
._27{width:28.670933pt;}
._33{width:30.401280pt;}
._34{width:31.354880pt;}
._39{width:33.758080pt;}
._26{width:34.879360pt;}
._25{width:35.770880pt;}
._1f{width:36.870400pt;}
._28{width:38.041600pt;}
._c{width:39.087360pt;}
._b{width:40.404907pt;}
._16{width:41.857920pt;}
._15{width:43.333760pt;}
._1e{width:44.307200pt;}
._29{width:45.393280pt;}
._1d{width:46.320000pt;}
._1c{width:47.362560pt;}
._35{width:48.564480pt;}
._f{width:51.482027pt;}
._e{width:52.469120pt;}
._31{width:54.464000pt;}
._32{width:55.360000pt;}
._37{width:58.273920pt;}
._36{width:59.529600pt;}
._38{width:62.856747pt;}
._2a{width:69.338880pt;}
._22{width:70.549120pt;}
._21{width:71.649920pt;}
._2b{width:72.971520pt;}
._2d{width:80.832000pt;}
._2e{width:81.728000pt;}
._2f{width:95.296000pt;}
._30{width:96.512000pt;}
._2c{width:289.600000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:3.520000pt;}
.y61{bottom:21.920000pt;}
.y3{bottom:31.872000pt;}
.y65{bottom:40.320000pt;}
.y2{bottom:49.312000pt;}
.y64{bottom:58.720000pt;}
.y55{bottom:67.072000pt;}
.y5d{bottom:70.592000pt;}
.y58{bottom:71.712000pt;}
.y54{bottom:82.432000pt;}
.y57{bottom:83.552000pt;}
.y53{bottom:87.072000pt;}
.y2b{bottom:91.552000pt;}
.y5c{bottom:95.392000pt;}
.y52{bottom:97.792000pt;}
.y51{bottom:102.432000pt;}
.y6b{bottom:108.672000pt;}
.y6a{bottom:113.152000pt;}
.y50{bottom:114.272000pt;}
.y2a{bottom:116.352000pt;}
.y69{bottom:117.792000pt;}
.y5b{bottom:120.032000pt;}
.y68{bottom:129.472000pt;}
.y4f{bottom:133.312000pt;}
.y29{bottom:140.986667pt;}
.y5a{bottom:144.666667pt;}
.y4e{bottom:158.106667pt;}
.y28{bottom:165.626667pt;}
.y59{bottom:169.466667pt;}
.y4d{bottom:182.746667pt;}
.y63{bottom:187.546667pt;}
.y27{bottom:190.426667pt;}
.y4b{bottom:207.386667pt;}
.y4c{bottom:214.106667pt;}
.y26{bottom:215.066667pt;}
.y4a{bottom:232.186667pt;}
.y25{bottom:239.706667pt;}
.y49{bottom:256.866667pt;}
.y62{bottom:261.826667pt;}
.y24{bottom:264.386667pt;}
.y48{bottom:281.506667pt;}
.y23{bottom:289.186667pt;}
.y60{bottom:299.266667pt;}
.y47{bottom:306.146667pt;}
.y22{bottom:313.826667pt;}
.y46{bottom:330.946667pt;}
.y5e{bottom:336.706667pt;}
.y21{bottom:338.466667pt;}
.y45{bottom:355.586667pt;}
.y20{bottom:363.106667pt;}
.y44{bottom:380.226667pt;}
.y1f{bottom:387.906667pt;}
.y43{bottom:405.026667pt;}
.y1e{bottom:412.546667pt;}
.y42{bottom:429.666667pt;}
.y1d{bottom:437.186667pt;}
.y41{bottom:454.306667pt;}
.y1c{bottom:461.986667pt;}
.y40{bottom:478.946667pt;}
.y1b{bottom:486.626667pt;}
.y3f{bottom:503.773333pt;}
.y1a{bottom:511.293333pt;}
.y3e{bottom:528.413333pt;}
.y19{bottom:535.933333pt;}
.y3d{bottom:553.053333pt;}
.y3c{bottom:577.693333pt;}
.y18{bottom:581.693333pt;}
.y17{bottom:600.093333pt;}
.y3b{bottom:602.493333pt;}
.y16{bottom:618.493333pt;}
.y3a{bottom:627.133333pt;}
.y15{bottom:636.893333pt;}
.y39{bottom:651.773333pt;}
.y14{bottom:655.293333pt;}
.y77{bottom:663.293333pt;}
.y13{bottom:673.693333pt;}
.y38{bottom:676.573333pt;}
.y12{bottom:692.093333pt;}
.y76{bottom:692.253333pt;}
.y37{bottom:701.213333pt;}
.y67{bottom:707.933333pt;}
.y11{bottom:710.493333pt;}
.y75{bottom:710.973333pt;}
.y36{bottom:725.853333pt;}
.y10{bottom:728.893333pt;}
.y74{bottom:729.373333pt;}
.y56{bottom:732.573333pt;}
.yf{bottom:747.293333pt;}
.y73{bottom:747.773333pt;}
.y35{bottom:750.493333pt;}
.ye{bottom:765.733333pt;}
.y72{bottom:766.213333pt;}
.y34{bottom:775.333333pt;}
.yd{bottom:784.133333pt;}
.y71{bottom:784.613333pt;}
.y33{bottom:799.973333pt;}
.yc{bottom:802.533333pt;}
.y70{bottom:803.013333pt;}
.y6f{bottom:821.413333pt;}
.yb{bottom:821.733333pt;}
.y32{bottom:824.613333pt;}
.y6e{bottom:839.813333pt;}
.ya{bottom:840.453333pt;}
.y31{bottom:849.413333pt;}
.y66{bottom:856.133333pt;}
.y6d{bottom:858.213333pt;}
.y9{bottom:858.853333pt;}
.y30{bottom:874.053333pt;}
.y6c{bottom:876.613333pt;}
.y8{bottom:877.253333pt;}
.y7{bottom:895.653333pt;}
.y2f{bottom:898.693333pt;}
.y6{bottom:914.053333pt;}
.y2d{bottom:923.333333pt;}
.y2e{bottom:930.053333pt;}
.y2c{bottom:948.133333pt;}
.y5{bottom:951.333333pt;}
.y4{bottom:972.773333pt;}
.y1{bottom:1061.440000pt;}
.h10{height:18.400000pt;}
.he{height:33.918750pt;}
.h11{height:36.800000pt;}
.hc{height:47.109375pt;}
.hf{height:52.134375pt;}
.h7{height:54.312500pt;}
.h12{height:56.406250pt;}
.h2{height:58.563750pt;}
.h8{height:62.781250pt;}
.h6{height:62.812500pt;}
.hd{height:63.545625pt;}
.h15{height:63.656250pt;}
.h3{height:64.500000pt;}
.h4{height:64.752187pt;}
.h14{height:65.781915pt;}
.h9{height:65.995312pt;}
.hb{height:73.454062pt;}
.ha{height:73.490625pt;}
.h13{height:73.632000pt;}
.h5{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:182.906667pt;}
.w5{width:217.666667pt;}
.w6{width:254.586667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.880000pt;}
.x1{left:37.759988pt;}
.x19{left:62.560000pt;}
.xb{left:75.519988pt;}
.x14{left:79.871988pt;}
.x5{left:86.111988pt;}
.xd{left:94.271988pt;}
.xc{left:99.551988pt;}
.x17{left:103.551988pt;}
.x18{left:112.831988pt;}
.x10{left:122.271988pt;}
.x21{left:123.551988pt;}
.x4{left:125.151988pt;}
.x8{left:222.906655pt;}
.x1b{left:246.106667pt;}
.x9{left:265.026655pt;}
.x13{left:267.586655pt;}
.x15{left:269.346643pt;}
.x16{left:275.426655pt;}
.x7{left:285.346655pt;}
.x6{left:309.986655pt;}
.x2{left:328.226655pt;}
.x1d{left:338.466643pt;}
.x1e{left:344.546655pt;}
.xa{left:394.466655pt;}
.x3{left:396.866655pt;}
.x1c{left:464.413333pt;}
.x11{left:506.013310pt;}
.x12{left:512.093322pt;}
.xe{left:674.533310pt;}
.xf{left:680.613322pt;}
.x1f{left:693.413310pt;}
.x20{left:699.493322pt;}
}




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