
    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_cfdbfa08f0812af4aec74808.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_42ada7f371b9e368d567a9f0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.020996;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_a8e3beaac1b0b95d7dd1df8d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.085938;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_c5f37c64766e04c13d0b2643.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d074123517b36e4fe5e50bdb.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c28cbca313df5d702ab43805.woff')format("woff");}.ff6{font-family:ff6;line-height:0.853027;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_7622f713d9530486a2c2671b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:34.966279px;}
.ls0{letter-spacing:35.686297px;}
.ls3{letter-spacing:64.117883px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-59.646600px;}
.ws0{word-spacing:-13.421233px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-8.829121px;}
._3{margin-left:-7.827847px;}
._f{margin-left:-6.195648px;}
._a{margin-left:-5.145307px;}
._2{margin-left:-3.355567px;}
._9{margin-left:-2.267777px;}
._1{margin-left:-1.105609px;}
._0{width:1.057831px;}
._8{width:2.979024px;}
._7{width:5.936871px;}
._6{width:7.480747px;}
._b{width:9.348196px;}
._c{width:10.723377px;}
._d{width:14.527359px;}
._12{width:15.830031px;}
._10{width:17.111493px;}
._11{width:18.587402px;}
._5{width:28.270675px;}
._4{width:29.957067px;}
.fc1{color:rgb(15,71,97);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.646600px;}
.fs0{font-size:66.114450px;}
.fs1{font-size:120.012296px;}
.y0{bottom:0.000000px;}
.y19{bottom:4.500000px;}
.y24{bottom:4.680038px;}
.y97{bottom:114.120002px;}
.y2b{bottom:115.019989px;}
.y9e{bottom:140.039977px;}
.y2a{bottom:148.860008px;}
.y5f{bottom:182.340019px;}
.y29{bottom:182.519989px;}
.y28{bottom:198.899986px;}
.y4b{bottom:205.379998px;}
.y27{bottom:219.779983px;}
.y56{bottom:226.620002px;}
.y4a{bottom:226.980011px;}
.y26{bottom:240.840019px;}
.y49{bottom:248.759994px;}
.y25{bottom:261.720017px;}
.y48{bottom:270.539977px;}
.y23{bottom:282.419975px;}
.y22{bottom:282.600013px;}
.y21{bottom:282.779983px;}
.y57{bottom:286.379998px;}
.y5e{bottom:303.120002px;}
.y20{bottom:303.659981px;}
.y47{bottom:304.200027px;}
.y72{bottom:314.820030px;}
.y1f{bottom:324.539977px;}
.y71{bottom:334.799973px;}
.y46{bottom:338.039977px;}
.y1e{bottom:345.419975px;}
.y70{bottom:354.960022px;}
.y1d{bottom:366.299973px;}
.y45{bottom:371.700027px;}
.y92{bottom:372.779983px;}
.y6f{bottom:375.120002px;}
.y54{bottom:375.840019px;}
.y1c{bottom:387.179970px;}
.y91{bottom:392.940033px;}
.y80{bottom:394.019989px;}
.y6e{bottom:395.279983px;}
.y44{bottom:405.539977px;}
.y1b{bottom:408.059967px;}
.y9d{bottom:408.779983px;}
.y90{bottom:413.100013px;}
.y7f{bottom:414.179970px;}
.y6d{bottom:415.440033px;}
.y1a{bottom:428.940033px;}
.y8f{bottom:433.259994px;}
.y7e{bottom:434.340019px;}
.y55{bottom:435.419975px;}
.y43{bottom:439.200027px;}
.y9c{bottom:442.620002px;}
.y18{bottom:449.820030px;}
.y8e{bottom:453.419975px;}
.y7d{bottom:454.320030px;}
.y9b{bottom:464.399986px;}
.y42{bottom:472.860008px;}
.y8d{bottom:473.580025px;}
.y7c{bottom:474.480011px;}
.y9a{bottom:486.000000px;}
.y17{bottom:488.879998px;}
.y8c{bottom:493.740006px;}
.y7b{bottom:494.639992px;}
.y73{bottom:502.919975px;}
.y41{bottom:506.700027px;}
.y99{bottom:507.779983px;}
.y8b{bottom:513.720017px;}
.y5c{bottom:516.960022px;}
.y16{bottom:522.539977px;}
.yad{bottom:523.080025px;}
.y52{bottom:525.059967px;}
.y8a{bottom:533.879998px;}
.y98{bottom:536.940033px;}
.y40{bottom:540.360008px;}
.y15{bottom:544.320030px;}
.yac{bottom:544.860008px;}
.y81{bottom:562.500000px;}
.yab{bottom:566.460022px;}
.y3f{bottom:574.200027px;}
.y14{bottom:577.980011px;}
.y5d{bottom:584.460022px;}
.y53{bottom:584.639992px;}
.y6b{bottom:585.539977px;}
.y7a{bottom:587.879998px;}
.yaa{bottom:600.299973px;}
.y6a{bottom:605.700027px;}
.y3e{bottom:607.860008px;}
.y13{bottom:611.820030px;}
.y69{bottom:625.860008px;}
.y12{bottom:633.420010px;}
.ya9{bottom:633.959988px;}
.y79{bottom:638.279983px;}
.y3d{bottom:641.699993px;}
.y68{bottom:646.019989px;}
.y11{bottom:655.199993px;}
.y78{bottom:658.439999px;}
.y3c{bottom:662.579990px;}
.y67{bottom:666.000000px;}
.ya8{bottom:667.800007px;}
.y50{bottom:674.279983px;}
.y5a{bottom:674.819995px;}
.y10{bottom:676.980011px;}
.y3b{bottom:678.240006px;}
.y77{bottom:678.600013px;}
.y66{bottom:686.160015px;}
.y76{bottom:698.759994px;}
.y3a{bottom:699.120002px;}
.ya7{bottom:701.459988px;}
.y65{bottom:706.319995px;}
.yf{bottom:710.639992px;}
.y96{bottom:711.180004px;}
.y75{bottom:718.740006px;}
.y39{bottom:720.000000px;}
.y95{bottom:731.339985px;}
.ye{bottom:732.420010px;}
.y51{bottom:733.860008px;}
.y5b{bottom:735.120002px;}
.ya6{bottom:735.300007px;}
.y38{bottom:740.879998px;}
.y94{bottom:751.500000px;}
.y6c{bottom:759.060001px;}
.yd{bottom:766.259994px;}
.y93{bottom:767.160015px;}
.ya5{bottom:768.959988px;}
.y37{bottom:781.920010px;}
.yc{bottom:787.860008px;}
.y64{bottom:797.939999px;}
.ya4{bottom:802.620002px;}
.y36{bottom:807.300007px;}
.yb{bottom:809.639992px;}
.y35{bottom:822.959988px;}
.y4e{bottom:824.040012px;}
.y58{bottom:824.759994px;}
.ya{bottom:831.420010px;}
.y63{bottom:831.779983px;}
.ya3{bottom:836.459988px;}
.y89{bottom:844.920010px;}
.y34{bottom:848.339985px;}
.y88{bottom:864.899987px;}
.y9{bottom:865.079990px;}
.y62{bottom:865.439999px;}
.y33{bottom:868.500000px;}
.ya2{bottom:870.120002px;}
.y61{bottom:881.639992px;}
.y59{bottom:884.339985px;}
.y4f{bottom:884.519989px;}
.y87{bottom:885.060001px;}
.y32{bottom:888.660015px;}
.y8{bottom:898.920010px;}
.ya1{bottom:903.960004px;}
.y86{bottom:905.219999px;}
.y31{bottom:908.639992px;}
.y74{bottom:914.039995px;}
.y30{bottom:924.300007px;}
.y85{bottom:925.379998px;}
.y7{bottom:932.580008px;}
.ya0{bottom:937.620002px;}
.y2f{bottom:945.180004px;}
.y84{bottom:945.539995px;}
.y60{bottom:962.280001px;}
.y83{bottom:965.699993px;}
.y2e{bottom:966.060001px;}
.y6{bottom:966.419992px;}
.y9f{bottom:971.460004px;}
.y4c{bottom:973.979994px;}
.y82{bottom:985.860008px;}
.y5{bottom:999.000000px;}
.y2d{bottom:1005.120002px;}
.y4d{bottom:1033.560001px;}
.y2c{bottom:1038.780001px;}
.y4{bottom:1058.939999px;}
.y3{bottom:1079.099997px;}
.y2{bottom:1099.260003px;}
.y1{bottom:1119.420001px;}
.h12{height:16.740006px;}
.ha{height:19.799972px;}
.hb{height:19.799973px;}
.hf{height:19.800007px;}
.h4{height:19.979943px;}
.he{height:19.979976px;}
.h11{height:19.979978px;}
.hd{height:19.979993px;}
.hc{height:19.979994px;}
.h10{height:19.980002px;}
.h5{height:19.980010px;}
.h6{height:19.980011px;}
.h7{height:20.159981px;}
.h8{height:20.340019px;}
.h9{height:55.719502px;}
.h1{height:57.301342px;}
.h3{height:57.398190px;}
.h2{height:101.436174px;}
.h0{height:1188.000000px;}
.w29{width:3.239937px;}
.wa{width:3.239972px;}
.wd{width:3.419975px;}
.w12{width:3.420009px;}
.w10{width:3.420010px;}
.w24{width:8.819961px;}
.w6{width:8.819962px;}
.w2{width:8.819996px;}
.w4{width:8.819997px;}
.w20{width:8.820014px;}
.w14{width:8.820030px;}
.w31{width:9.179971px;}
.w18{width:11.160015px;}
.w2c{width:12.240006px;}
.w17{width:20.159980px;}
.w19{width:46.800007px;}
.w28{width:49.500000px;}
.w30{width:57.060036px;}
.w11{width:57.959988px;}
.w23{width:62.640027px;}
.w1{width:65.879998px;}
.w1e{width:65.880015px;}
.w7{width:67.679988px;}
.w8{width:82.979994px;}
.w9{width:86.580008px;}
.w22{width:88.920009px;}
.w13{width:89.459988px;}
.we{width:89.460023px;}
.w3{width:93.780001px;}
.w1f{width:93.780018px;}
.w21{width:101.340019px;}
.w2d{width:115.379998px;}
.w16{width:118.620002px;}
.w2e{width:118.980011px;}
.wb{width:135.180003px;}
.w2b{width:139.500000px;}
.w15{width:141.659999px;}
.w1b{width:144.539996px;}
.wc{width:154.080008px;}
.w2a{width:162.540012px;}
.w1d{width:192.419993px;}
.wf{width:202.499983px;}
.w27{width:258.120037px;}
.w2f{width:276.839985px;}
.w26{width:319.500035px;}
.w1a{width:334.800025px;}
.w5{width:340.920027px;}
.w25{width:345.959988px;}
.w1c{width:388.979994px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:127.620002px;}
.x4b{left:136.260003px;}
.x45{left:138.959997px;}
.x47{left:140.040003px;}
.x44{left:141.120002px;}
.x3d{left:142.739997px;}
.x3f{left:144.719999px;}
.x4d{left:145.979994px;}
.x40{left:147.060001px;}
.x49{left:148.319996px;}
.x4c{left:149.580008px;}
.x3e{left:151.740006px;}
.x3{left:154.620002px;}
.x4f{left:158.759994px;}
.x43{left:160.199993px;}
.x41{left:161.639992px;}
.x50{left:165.780001px;}
.x46{left:179.639992px;}
.x4{left:181.620002px;}
.x39{left:184.319996px;}
.x38{left:188.639992px;}
.x5{left:195.120002px;}
.x9{left:203.939999px;}
.x3c{left:208.620002px;}
.x4e{left:211.139992px;}
.x4a{left:215.460005px;}
.x35{left:220.500000px;}
.x34{left:223.740006px;}
.x36{left:225.539996px;}
.x48{left:234.360008px;}
.x21{left:241.919992px;}
.x37{left:243.539996px;}
.x25{left:250.740006px;}
.x2e{left:254.159998px;}
.x6{left:261.000000px;}
.x32{left:275.759994px;}
.x3a{left:277.020006px;}
.x7{left:286.020006px;}
.x22{left:307.800007px;}
.x2{left:321.839985px;}
.x23{left:332.819996px;}
.xb{left:353.699993px;}
.xc{left:369.000000px;}
.xd{left:372.600014px;}
.xe{left:375.839985px;}
.x8{left:379.800007px;}
.x1a{left:392.399987px;}
.x1b{left:403.560001px;}
.x24{left:426.600014px;}
.x18{left:427.680005px;}
.x1e{left:430.560001px;}
.x26{left:434.160015px;}
.x27{left:437.399987px;}
.x10{left:440.100014px;}
.x11{left:443.519989px;}
.x2f{left:448.199993px;}
.x1c{left:450.180005px;}
.x30{left:451.800007px;}
.x33{left:467.100014px;}
.x20{left:478.439999px;}
.x13{left:488.519989px;}
.x14{left:491.939999px;}
.x2c{left:495.360008px;}
.x42{left:497.160015px;}
.xf{left:511.019989px;}
.x28{left:526.319996px;}
.x12{left:532.980011px;}
.x19{left:546.300007px;}
.x15{left:549.899987px;}
.x16{left:553.319996px;}
.x29{left:588.960023px;}
.x2a{left:590.940033px;}
.x31{left:609.659981px;}
.x1d{left:620.820030px;}
.xa{left:626.940033px;}
.x2d{left:634.860008px;}
.x2b{left:640.440033px;}
.x17{left:642.779983px;}
.x1f{left:675.000000px;}
.x3b{left:757.259994px;}
.x51{left:791.279983px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:31.081137pt;}
.ls0{letter-spacing:31.721153pt;}
.ls3{letter-spacing:56.993674pt;}
.ws2{word-spacing:-53.019200pt;}
.ws0{word-spacing:-11.929985pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-7.848107pt;}
._3{margin-left:-6.958087pt;}
._f{margin-left:-5.507243pt;}
._a{margin-left:-4.573606pt;}
._2{margin-left:-2.982726pt;}
._9{margin-left:-2.015801pt;}
._1{margin-left:-0.982764pt;}
._0{width:0.940294pt;}
._8{width:2.648021pt;}
._7{width:5.277219pt;}
._6{width:6.649553pt;}
._b{width:8.309507pt;}
._c{width:9.531890pt;}
._d{width:12.913208pt;}
._12{width:14.071138pt;}
._10{width:15.210216pt;}
._11{width:16.522135pt;}
._5{width:25.129489pt;}
._4{width:26.628504pt;}
.fs2{font-size:53.019200pt;}
.fs0{font-size:58.768400pt;}
.fs1{font-size:106.677596pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:4.000000pt;}
.y24{bottom:4.160034pt;}
.y97{bottom:101.440002pt;}
.y2b{bottom:102.239990pt;}
.y9e{bottom:124.479980pt;}
.y2a{bottom:132.320007pt;}
.y5f{bottom:162.080017pt;}
.y29{bottom:162.239990pt;}
.y28{bottom:176.799988pt;}
.y4b{bottom:182.559998pt;}
.y27{bottom:195.359985pt;}
.y56{bottom:201.440002pt;}
.y4a{bottom:201.760010pt;}
.y26{bottom:214.080017pt;}
.y49{bottom:221.119995pt;}
.y25{bottom:232.640015pt;}
.y48{bottom:240.479980pt;}
.y23{bottom:251.039978pt;}
.y22{bottom:251.200012pt;}
.y21{bottom:251.359985pt;}
.y57{bottom:254.559998pt;}
.y5e{bottom:269.440002pt;}
.y20{bottom:269.919983pt;}
.y47{bottom:270.400024pt;}
.y72{bottom:279.840027pt;}
.y1f{bottom:288.479980pt;}
.y71{bottom:297.599976pt;}
.y46{bottom:300.479980pt;}
.y1e{bottom:307.039978pt;}
.y70{bottom:315.520020pt;}
.y1d{bottom:325.599976pt;}
.y45{bottom:330.400024pt;}
.y92{bottom:331.359985pt;}
.y6f{bottom:333.440002pt;}
.y54{bottom:334.080017pt;}
.y1c{bottom:344.159973pt;}
.y91{bottom:349.280029pt;}
.y80{bottom:350.239990pt;}
.y6e{bottom:351.359985pt;}
.y44{bottom:360.479980pt;}
.y1b{bottom:362.719971pt;}
.y9d{bottom:363.359985pt;}
.y90{bottom:367.200012pt;}
.y7f{bottom:368.159973pt;}
.y6d{bottom:369.280029pt;}
.y1a{bottom:381.280029pt;}
.y8f{bottom:385.119995pt;}
.y7e{bottom:386.080017pt;}
.y55{bottom:387.039978pt;}
.y43{bottom:390.400024pt;}
.y9c{bottom:393.440002pt;}
.y18{bottom:399.840027pt;}
.y8e{bottom:403.039978pt;}
.y7d{bottom:403.840027pt;}
.y9b{bottom:412.799988pt;}
.y42{bottom:420.320007pt;}
.y8d{bottom:420.960022pt;}
.y7c{bottom:421.760010pt;}
.y9a{bottom:432.000000pt;}
.y17{bottom:434.559998pt;}
.y8c{bottom:438.880005pt;}
.y7b{bottom:439.679993pt;}
.y73{bottom:447.039978pt;}
.y41{bottom:450.400024pt;}
.y99{bottom:451.359985pt;}
.y8b{bottom:456.640015pt;}
.y5c{bottom:459.520020pt;}
.y16{bottom:464.479980pt;}
.yad{bottom:464.960022pt;}
.y52{bottom:466.719971pt;}
.y8a{bottom:474.559998pt;}
.y98{bottom:477.280029pt;}
.y40{bottom:480.320007pt;}
.y15{bottom:483.840027pt;}
.yac{bottom:484.320007pt;}
.y81{bottom:500.000000pt;}
.yab{bottom:503.520020pt;}
.y3f{bottom:510.400024pt;}
.y14{bottom:513.760010pt;}
.y5d{bottom:519.520020pt;}
.y53{bottom:519.679993pt;}
.y6b{bottom:520.479980pt;}
.y7a{bottom:522.559998pt;}
.yaa{bottom:533.599976pt;}
.y6a{bottom:538.400024pt;}
.y3e{bottom:540.320007pt;}
.y13{bottom:543.840027pt;}
.y69{bottom:556.320007pt;}
.y12{bottom:563.040009pt;}
.ya9{bottom:563.519989pt;}
.y79{bottom:567.359985pt;}
.y3d{bottom:570.399994pt;}
.y68{bottom:574.239990pt;}
.y11{bottom:582.399994pt;}
.y78{bottom:585.279999pt;}
.y3c{bottom:588.959991pt;}
.y67{bottom:592.000000pt;}
.ya8{bottom:593.600006pt;}
.y50{bottom:599.359985pt;}
.y5a{bottom:599.839996pt;}
.y10{bottom:601.760010pt;}
.y3b{bottom:602.880005pt;}
.y77{bottom:603.200012pt;}
.y66{bottom:609.920013pt;}
.y76{bottom:621.119995pt;}
.y3a{bottom:621.440002pt;}
.ya7{bottom:623.519989pt;}
.y65{bottom:627.839996pt;}
.yf{bottom:631.679993pt;}
.y96{bottom:632.160004pt;}
.y75{bottom:638.880005pt;}
.y39{bottom:640.000000pt;}
.y95{bottom:650.079987pt;}
.ye{bottom:651.040009pt;}
.y51{bottom:652.320007pt;}
.y5b{bottom:653.440002pt;}
.ya6{bottom:653.600006pt;}
.y38{bottom:658.559998pt;}
.y94{bottom:668.000000pt;}
.y6c{bottom:674.720001pt;}
.yd{bottom:681.119995pt;}
.y93{bottom:681.920013pt;}
.ya5{bottom:683.519989pt;}
.y37{bottom:695.040009pt;}
.yc{bottom:700.320007pt;}
.y64{bottom:709.279999pt;}
.ya4{bottom:713.440002pt;}
.y36{bottom:717.600006pt;}
.yb{bottom:719.679993pt;}
.y35{bottom:731.519989pt;}
.y4e{bottom:732.480011pt;}
.y58{bottom:733.119995pt;}
.ya{bottom:739.040009pt;}
.y63{bottom:739.359985pt;}
.ya3{bottom:743.519989pt;}
.y89{bottom:751.040009pt;}
.y34{bottom:754.079987pt;}
.y88{bottom:768.799988pt;}
.y9{bottom:768.959991pt;}
.y62{bottom:769.279999pt;}
.y33{bottom:772.000000pt;}
.ya2{bottom:773.440002pt;}
.y61{bottom:783.679993pt;}
.y59{bottom:786.079987pt;}
.y4f{bottom:786.239990pt;}
.y87{bottom:786.720001pt;}
.y32{bottom:789.920013pt;}
.y8{bottom:799.040009pt;}
.ya1{bottom:803.520004pt;}
.y86{bottom:804.639999pt;}
.y31{bottom:807.679993pt;}
.y74{bottom:812.479996pt;}
.y30{bottom:821.600006pt;}
.y85{bottom:822.559998pt;}
.y7{bottom:828.960007pt;}
.ya0{bottom:833.440002pt;}
.y2f{bottom:840.160004pt;}
.y84{bottom:840.479996pt;}
.y60{bottom:855.360001pt;}
.y83{bottom:858.399994pt;}
.y2e{bottom:858.720001pt;}
.y6{bottom:859.039993pt;}
.y9f{bottom:863.520004pt;}
.y4c{bottom:865.759995pt;}
.y82{bottom:876.320007pt;}
.y5{bottom:888.000000pt;}
.y2d{bottom:893.440002pt;}
.y4d{bottom:918.720001pt;}
.y2c{bottom:923.360001pt;}
.y4{bottom:941.279999pt;}
.y3{bottom:959.199997pt;}
.y2{bottom:977.120003pt;}
.y1{bottom:995.040001pt;}
.h12{height:14.880005pt;}
.ha{height:17.599975pt;}
.hb{height:17.599976pt;}
.hf{height:17.600006pt;}
.h4{height:17.759949pt;}
.he{height:17.759979pt;}
.h11{height:17.759980pt;}
.hd{height:17.759994pt;}
.hc{height:17.759995pt;}
.h10{height:17.760002pt;}
.h5{height:17.760009pt;}
.h6{height:17.760010pt;}
.h7{height:17.919983pt;}
.h8{height:18.080017pt;}
.h9{height:49.528446pt;}
.h1{height:50.934526pt;}
.h3{height:51.020613pt;}
.h2{height:90.165488pt;}
.h0{height:1056.000000pt;}
.w29{width:2.879944pt;}
.wa{width:2.879975pt;}
.wd{width:3.039978pt;}
.w12{width:3.040008pt;}
.w10{width:3.040009pt;}
.w24{width:7.839965pt;}
.w6{width:7.839966pt;}
.w2{width:7.839996pt;}
.w4{width:7.839997pt;}
.w20{width:7.840012pt;}
.w14{width:7.840027pt;}
.w31{width:8.159974pt;}
.w18{width:9.920013pt;}
.w2c{width:10.880005pt;}
.w17{width:17.919982pt;}
.w19{width:41.600006pt;}
.w28{width:44.000000pt;}
.w30{width:50.720032pt;}
.w11{width:51.519989pt;}
.w23{width:55.680024pt;}
.w1{width:58.559998pt;}
.w1e{width:58.560013pt;}
.w7{width:60.159989pt;}
.w8{width:73.759995pt;}
.w9{width:76.960007pt;}
.w22{width:79.040008pt;}
.w13{width:79.519989pt;}
.we{width:79.520020pt;}
.w3{width:83.360001pt;}
.w1f{width:83.360016pt;}
.w21{width:90.080017pt;}
.w2d{width:102.559998pt;}
.w16{width:105.440002pt;}
.w2e{width:105.760010pt;}
.wb{width:120.160003pt;}
.w2b{width:124.000000pt;}
.w15{width:125.919999pt;}
.w1b{width:128.479996pt;}
.wc{width:136.960007pt;}
.w2a{width:144.480011pt;}
.w1d{width:171.039994pt;}
.wf{width:179.999985pt;}
.w27{width:229.440033pt;}
.w2f{width:246.079987pt;}
.w26{width:284.000031pt;}
.w1a{width:297.600022pt;}
.w5{width:303.040024pt;}
.w25{width:307.519989pt;}
.w1c{width:345.759995pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440002pt;}
.x4b{left:121.120003pt;}
.x45{left:123.519997pt;}
.x47{left:124.480003pt;}
.x44{left:125.440002pt;}
.x3d{left:126.879997pt;}
.x3f{left:128.639999pt;}
.x4d{left:129.759995pt;}
.x40{left:130.720001pt;}
.x49{left:131.839996pt;}
.x4c{left:132.960007pt;}
.x3e{left:134.880005pt;}
.x3{left:137.440002pt;}
.x4f{left:141.119995pt;}
.x43{left:142.399994pt;}
.x41{left:143.679993pt;}
.x50{left:147.360001pt;}
.x46{left:159.679993pt;}
.x4{left:161.440002pt;}
.x39{left:163.839996pt;}
.x38{left:167.679993pt;}
.x5{left:173.440002pt;}
.x9{left:181.279999pt;}
.x3c{left:185.440002pt;}
.x4e{left:187.679993pt;}
.x4a{left:191.520004pt;}
.x35{left:196.000000pt;}
.x34{left:198.880005pt;}
.x36{left:200.479996pt;}
.x48{left:208.320007pt;}
.x21{left:215.039993pt;}
.x37{left:216.479996pt;}
.x25{left:222.880005pt;}
.x2e{left:225.919998pt;}
.x6{left:232.000000pt;}
.x32{left:245.119995pt;}
.x3a{left:246.240005pt;}
.x7{left:254.240005pt;}
.x22{left:273.600006pt;}
.x2{left:286.079987pt;}
.x23{left:295.839996pt;}
.xb{left:314.399994pt;}
.xc{left:328.000000pt;}
.xd{left:331.200012pt;}
.xe{left:334.079987pt;}
.x8{left:337.600006pt;}
.x1a{left:348.799988pt;}
.x1b{left:358.720001pt;}
.x24{left:379.200012pt;}
.x18{left:380.160004pt;}
.x1e{left:382.720001pt;}
.x26{left:385.920013pt;}
.x27{left:388.799988pt;}
.x10{left:391.200012pt;}
.x11{left:394.239990pt;}
.x2f{left:398.399994pt;}
.x1c{left:400.160004pt;}
.x30{left:401.600006pt;}
.x33{left:415.200012pt;}
.x20{left:425.279999pt;}
.x13{left:434.239990pt;}
.x14{left:437.279999pt;}
.x2c{left:440.320007pt;}
.x42{left:441.920013pt;}
.xf{left:454.239990pt;}
.x28{left:467.839996pt;}
.x12{left:473.760010pt;}
.x19{left:485.600006pt;}
.x15{left:488.799988pt;}
.x16{left:491.839996pt;}
.x29{left:523.520020pt;}
.x2a{left:525.280029pt;}
.x31{left:541.919983pt;}
.x1d{left:551.840027pt;}
.xa{left:557.280029pt;}
.x2d{left:564.320007pt;}
.x2b{left:569.280029pt;}
.x17{left:571.359985pt;}
.x1f{left:600.000000pt;}
.x3b{left:673.119995pt;}
.x51{left:703.359985pt;}
}




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