
    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_7fcc5b4dd0305902e52431c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.256000;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_e2b5b90ec9daf66aff9fa34e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.237029;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_a873b811d05edc99ea589c57.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_e74c0d7eb775c412acf0d971.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.237000;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;}
.m6{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.007852px;}
.ls7{letter-spacing:23.099188px;}
.lsa{letter-spacing:50.506324px;}
.ls2{letter-spacing:85.930310px;}
.ls1{letter-spacing:91.522203px;}
.ls9{letter-spacing:96.789049px;}
.ls6{letter-spacing:106.958981px;}
.ls5{letter-spacing:112.555803px;}
.ls8{letter-spacing:112.558801px;}
.ls3{letter-spacing:118.147345px;}
.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;}
}
.ws16{word-spacing:-65.219172px;}
.ws1c{word-spacing:-51.641259px;}
.wsa{word-spacing:-40.031984px;}
.ws7{word-spacing:-30.023988px;}
.ws3{word-spacing:-26.621269px;}
.ws19{word-spacing:-23.418711px;}
.ws1{word-spacing:-21.617271px;}
.ws11{word-spacing:-20.015992px;}
.ws1b{word-spacing:-16.613273px;}
.ws12{word-spacing:-15.011994px;}
.ws5{word-spacing:-0.304344px;}
.ws1f{word-spacing:-0.218561px;}
.ws6{word-spacing:-0.121176px;}
.ws1a{word-spacing:-0.120226px;}
.ws17{word-spacing:-0.119716px;}
.ws4{word-spacing:-0.075384px;}
.ws20{word-spacing:-0.074026px;}
.ws0{word-spacing:0.000000px;}
.ws21{word-spacing:0.216834px;}
.ws10{word-spacing:0.415260px;}
.ws18{word-spacing:0.416421px;}
.ws1d{word-spacing:0.730508px;}
.wsb{word-spacing:1.221323px;}
.ws2{word-spacing:2.170306px;}
.ws8{word-spacing:6.172198px;}
.wsc{word-spacing:11.130904px;}
.wsf{word-spacing:20.029021px;}
.wse{word-spacing:20.366189px;}
.ws1e{word-spacing:28.791576px;}
.wsd{word-spacing:30.104136px;}
.ws13{word-spacing:50.149920px;}
.ws9{word-spacing:56.728057px;}
.ws15{word-spacing:66.210780px;}
.ws14{word-spacing:87.079174px;}
._22{margin-left:-23.683092px;}
._10{margin-left:-2.265432px;}
._0{margin-left:-1.024560px;}
._2{width:1.028797px;}
._1{width:2.079619px;}
._6{width:3.805884px;}
._d{width:5.243470px;}
._16{width:6.717641px;}
._3{width:7.810773px;}
._5{width:8.935484px;}
._12{width:10.233218px;}
._7{width:11.317099px;}
._8{width:12.560575px;}
._b{width:14.304126px;}
._c{width:15.361986px;}
._f{width:16.467329px;}
._11{width:17.546902px;}
._1d{width:20.312628px;}
._1e{width:21.385779px;}
._18{width:24.808783px;}
._a{width:26.036090px;}
._9{width:27.593341px;}
._17{width:34.007429px;}
._4{width:37.395957px;}
._20{width:39.366011px;}
._1b{width:40.452677px;}
._1a{width:41.822191px;}
._1f{width:43.340861px;}
._15{width:51.467532px;}
._13{width:52.714997px;}
._19{width:54.240731px;}
._e{width:55.713362px;}
._1c{width:71.170285px;}
._23{width:74.423685px;}
._14{width:79.411077px;}
._24{width:95.183029px;}
._21{width:140.994706px;}
.fc8{color:rgb(0,154,154);}
.fc6{color:rgb(34,75,80);}
.fc5{color:rgb(2,52,180);}
.fc4{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc3{color:rgb(154,50,0);}
.fc2{color:rgb(77,77,77);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(14,81,252);}
.fsb{font-size:53.999978px;}
.fs6{font-size:59.759976px;}
.fsa{font-size:71.999971px;}
.fs3{font-size:77.759969px;}
.fsc{font-size:84.239966px;}
.fs2{font-size:95.759962px;}
.fs5{font-size:107.999957px;}
.fs9{font-size:120.239952px;}
.fs7{font-size:143.999942px;}
.fs1{font-size:156.239938px;}
.fs8{font-size:167.759933px;}
.fs0{font-size:179.999928px;}
.fs4{font-size:185.759926px;}
.y0{bottom:0.000000px;}
.y93{bottom:90.240262px;}
.y17{bottom:93.660320px;}
.y16{bottom:95.460213px;}
.y24{bottom:98.700228px;}
.y33{bottom:116.340222px;}
.y92{bottom:119.040309px;}
.y73{bottom:121.200309px;}
.y15{bottom:121.560308px;}
.y23{bottom:131.280304px;}
.y9c{bottom:143.700300px;}
.y32{bottom:145.320239px;}
.y72{bottom:151.260296px;}
.y9f{bottom:153.060272px;}
.y91{bottom:153.780295px;}
.y40{bottom:156.480294px;}
.y3f{bottom:156.480388px;}
.y22{bottom:163.680292px;}
.y65{bottom:168.360236px;}
.y83{bottom:170.700289px;}
.y31{bottom:174.120287px;}
.y71{bottom:181.500284px;}
.y3e{bottom:185.820283px;}
.y5{bottom:187.620178px;}
.y9e{bottom:187.620282px;}
.y90{bottom:189.060281px;}
.y9b{bottom:189.780281px;}
.y21{bottom:196.080279px;}
.y14{bottom:196.620278px;}
.y64{bottom:198.600278px;}
.y82{bottom:205.260275px;}
.y70{bottom:213.000272px;}
.y4{bottom:222.360216px;}
.y9d{bottom:222.360268px;}
.y20{bottom:228.480266px;}
.y63{bottom:229.380206px;}
.y3d{bottom:229.920265px;}
.y13{bottom:234.420263px;}
.y9a{bottom:235.680263px;}
.y77{bottom:236.580174px;}
.y81{bottom:240.000261px;}
.y8f{bottom:244.680184px;}
.y45{bottom:252.060137px;}
.y3{bottom:257.100254px;}
.y62{bottom:258.180254px;}
.y1f{bottom:260.880253px;}
.y30{bottom:261.600193px;}
.y76{bottom:265.560251px;}
.y6f{bottom:267.900250px;}
.y99{bottom:268.080250px;}
.y12{bottom:272.040142px;}
.y3c{bottom:273.840247px;}
.y4c{bottom:274.560247px;}
.y80{bottom:274.740247px;}
.y8e{bottom:279.420222px;}
.y44{bottom:280.860185px;}
.y2f{bottom:290.400153px;}
.y61{bottom:292.920180px;}
.y11{bottom:298.140238px;}
.y7f{bottom:309.300233px;}
.y43{bottom:309.660233px;}
.y8d{bottom:313.980231px;}
.y3b{bottom:317.940140px;}
.y2e{bottom:319.380229px;}
.y60{bottom:321.720228px;}
.y6e{bottom:328.380226px;}
.y10{bottom:330.720225px;}
.y50{bottom:340.260176px;}
.y56{bottom:342.420220px;}
.y7e{bottom:344.040219px;}
.y53{bottom:345.840219px;}
.y3a{bottom:347.280218px;}
.y8c{bottom:348.720218px;}
.y4f{bottom:356.280214px;}
.y5f{bottom:357.180214px;}
.y6d{bottom:358.440214px;}
.y55{bottom:359.520213px;}
.y52{bottom:362.040212px;}
.y2d{bottom:362.940124px;}
.y1e{bottom:367.080210px;}
.y57{bottom:367.980210px;}
.y4e{bottom:372.480208px;}
.y7d{bottom:378.780205px;}
.y51{bottom:378.960205px;}
.y54{bottom:381.120205px;}
.yf{bottom:382.200204px;}
.y8b{bottom:384.180203px;}
.y4d{bottom:389.400201px;}
.y5e{bottom:389.580201px;}
.y6c{bottom:389.940201px;}
.y39{bottom:391.380200px;}
.y2c{bottom:391.920200px;}
.y1d{bottom:402.900196px;}
.y98{bottom:405.960195px;}
.y7c{bottom:414.060191px;}
.ye{bottom:416.760190px;}
.y38{bottom:420.540189px;}
.y2b{bottom:435.480095px;}
.y1c{bottom:438.720182px;}
.y48{bottom:441.420033px;}
.y6b{bottom:445.020179px;}
.y5d{bottom:445.200067px;}
.yd{bottom:451.500176px;}
.y97{bottom:451.860176px;}
.y8a{bottom:457.080174px;}
.y2a{bottom:464.460171px;}
.y37{bottom:464.640171px;}
.y42{bottom:468.600110px;}
.y47{bottom:470.220081px;}
.y1b{bottom:474.540167px;}
.y6a{bottom:475.080167px;}
.y5c{bottom:479.760077px;}
.yc{bottom:486.240163px;}
.y7b{bottom:487.140162px;}
.y89{bottom:491.820160px;}
.y29{bottom:493.260160px;}
.y36{bottom:493.800159px;}
.y41{bottom:497.400158px;}
.y96{bottom:497.760158px;}
.y46{bottom:499.200157px;}
.y69{bottom:505.320155px;}
.y5b{bottom:508.740154px;}
.y1a{bottom:510.360153px;}
.y2{bottom:518.640150px;}
.yb{bottom:520.800149px;}
.y7a{bottom:521.880148px;}
.y88{bottom:526.560087px;}
.y68{bottom:536.820142px;}
.y35{bottom:537.900052px;}
.y5a{bottom:543.300140px;}
.y87{bottom:555.360083px;}
.ya{bottom:555.540135px;}
.y79{bottom:556.440134px;}
.y28{bottom:565.440131px;}
.y34{bottom:567.240130px;}
.y95{bottom:573.720128px;}
.y59{bottom:578.040126px;}
.y19{bottom:582.000124px;}
.y49{bottom:585.600123px;}
.y4b{bottom:586.680266px;}
.y86{bottom:590.100121px;}
.y9{bottom:590.460121px;}
.y78{bottom:591.900120px;}
.y67{bottom:592.980120px;}
.y27{bottom:608.460114px;}
.y18{bottom:611.160113px;}
.y58{bottom:614.220111px;}
.y94{bottom:616.920110px;}
.y8{bottom:619.620109px;}
.y1{bottom:621.060109px;}
.y4a{bottom:622.680108px;}
.y66{bottom:625.380107px;}
.y75{bottom:689.640099px;}
.y26{bottom:693.600080px;}
.y85{bottom:695.760079px;}
.y6{bottom:705.480075px;}
.y7{bottom:717.540070px;}
.y84{bottom:735.540063px;}
.y25{bottom:739.140061px;}
.y74{bottom:745.440059px;}
.hf{height:51.461979px;}
.h8{height:56.951257px;}
.he{height:68.327973px;}
.h4{height:73.794210px;}
.h10{height:80.280688px;}
.h3{height:90.876204px;}
.h7{height:91.259243px;}
.h12{height:91.259452px;}
.hb{height:91.259481px;}
.ha{height:91.259596px;}
.h6{height:102.923959px;}
.h11{height:114.107714px;}
.hd{height:114.588674px;}
.h9{height:136.655945px;}
.h13{height:137.231945px;}
.h2{height:148.271701px;}
.hc{height:159.204176px;}
.h1{height:170.819932px;}
.h5{height:176.286169px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x5{left:106.365707px;}
.x28{left:124.905700px;}
.x27{left:134.265700px;}
.x26{left:136.245689px;}
.x2f{left:144.525692px;}
.x7{left:152.986439px;}
.xf{left:161.446435px;}
.x30{left:185.027236px;}
.xd{left:186.646425px;}
.x11{left:193.488114px;}
.x31{left:198.526421px;}
.x10{left:201.948066px;}
.x8{left:206.986417px;}
.x38{left:215.446414px;}
.xe{left:227.146409px;}
.x9{left:240.827101px;}
.xa{left:245.866402px;}
.x39{left:249.289175px;}
.x14{left:267.466393px;}
.x1c{left:273.047659px;}
.x37{left:274.484482px;}
.x2d{left:281.145765px;}
.x6{left:284.026386px;}
.x23{left:285.465768px;}
.x22{left:286.906385px;}
.x36{left:294.646027px;}
.x33{left:325.427624px;}
.x34{left:333.705145px;}
.x1{left:338.566365px;}
.x21{left:348.286361px;}
.x2e{left:395.986342px;}
.xb{left:427.307446px;}
.x16{left:448.726203px;}
.x17{left:476.266221px;}
.x1b{left:482.026307px;}
.x15{left:490.306304px;}
.x25{left:493.366249px;}
.x24{left:494.806302px;}
.x3{left:570.406734px;}
.x1d{left:617.926253px;}
.x1e{left:622.786251px;}
.x1f{left:632.146612px;}
.x13{left:661.486235px;}
.x20{left:662.927126px;}
.x35{left:678.586229px;}
.x19{left:794.506042px;}
.x1a{left:797.026197px;}
.x2{left:826.906169px;}
.x12{left:832.126167px;}
.x18{left:836.986165px;}
.x2c{left:859.846193px;}
.x2b{left:890.266144px;}
.x4{left:917.267008px;}
.x2a{left:1013.566008px;}
.x32{left:1020.766092px;}
.x29{left:1026.526089px;}
.xc{left:1029.046088px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.006980pt;}
.ls7{letter-spacing:20.532612pt;}
.lsa{letter-spacing:44.894510pt;}
.ls2{letter-spacing:76.382498pt;}
.ls1{letter-spacing:81.353069pt;}
.ls9{letter-spacing:86.034710pt;}
.ls6{letter-spacing:95.074650pt;}
.ls5{letter-spacing:100.049603pt;}
.ls8{letter-spacing:100.052268pt;}
.ls3{letter-spacing:105.019862pt;}
.ws16{word-spacing:-57.972597pt;}
.ws1c{word-spacing:-45.903342pt;}
.wsa{word-spacing:-35.583986pt;}
.ws7{word-spacing:-26.687989pt;}
.ws3{word-spacing:-23.663351pt;}
.ws19{word-spacing:-20.816632pt;}
.ws1{word-spacing:-19.215352pt;}
.ws11{word-spacing:-17.791993pt;}
.ws1b{word-spacing:-14.767354pt;}
.ws12{word-spacing:-13.343995pt;}
.ws5{word-spacing:-0.270528pt;}
.ws1f{word-spacing:-0.194276pt;}
.ws6{word-spacing:-0.107712pt;}
.ws1a{word-spacing:-0.106868pt;}
.ws17{word-spacing:-0.106414pt;}
.ws4{word-spacing:-0.067008pt;}
.ws20{word-spacing:-0.065801pt;}
.ws0{word-spacing:0.000000pt;}
.ws21{word-spacing:0.192741pt;}
.ws10{word-spacing:0.369120pt;}
.ws18{word-spacing:0.370152pt;}
.ws1d{word-spacing:0.649340pt;}
.wsb{word-spacing:1.085620pt;}
.ws2{word-spacing:1.929161pt;}
.ws8{word-spacing:5.486398pt;}
.wsc{word-spacing:9.894137pt;}
.wsf{word-spacing:17.803575pt;}
.wse{word-spacing:18.103279pt;}
.ws1e{word-spacing:25.592512pt;}
.wsd{word-spacing:26.759232pt;}
.ws13{word-spacing:44.577706pt;}
.ws9{word-spacing:50.424940pt;}
.ws15{word-spacing:58.854027pt;}
.ws14{word-spacing:77.403710pt;}
._22{margin-left:-21.051637pt;}
._10{margin-left:-2.013718pt;}
._0{margin-left:-0.910720pt;}
._2{width:0.914486pt;}
._1{width:1.848550pt;}
._6{width:3.383008pt;}
._d{width:4.660862pt;}
._16{width:5.971237pt;}
._3{width:6.942909pt;}
._5{width:7.942653pt;}
._12{width:9.096193pt;}
._7{width:10.059644pt;}
._8{width:11.164956pt;}
._b{width:12.714779pt;}
._c{width:13.655099pt;}
._f{width:14.637626pt;}
._11{width:15.597246pt;}
._1d{width:18.055669pt;}
._1e{width:19.009581pt;}
._18{width:22.052252pt;}
._a{width:23.143191pt;}
._9{width:24.527414pt;}
._17{width:30.228825pt;}
._4{width:33.240851pt;}
._20{width:34.992010pt;}
._1b{width:35.957935pt;}
._1a{width:37.175281pt;}
._1f{width:38.525210pt;}
._15{width:45.748917pt;}
._13{width:46.857775pt;}
._19{width:48.213983pt;}
._e{width:49.522988pt;}
._1c{width:63.262476pt;}
._23{width:66.154386pt;}
._14{width:70.587624pt;}
._24{width:84.607137pt;}
._21{width:125.328628pt;}
.fsb{font-size:47.999981pt;}
.fs6{font-size:53.119979pt;}
.fsa{font-size:63.999974pt;}
.fs3{font-size:69.119972pt;}
.fsc{font-size:74.879970pt;}
.fs2{font-size:85.119966pt;}
.fs5{font-size:95.999962pt;}
.fs9{font-size:106.879957pt;}
.fs7{font-size:127.999949pt;}
.fs1{font-size:138.879944pt;}
.fs8{font-size:149.119940pt;}
.fs0{font-size:159.999936pt;}
.fs4{font-size:165.119934pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:80.213566pt;}
.y17{bottom:83.253617pt;}
.y16{bottom:84.853522pt;}
.y24{bottom:87.733536pt;}
.y33{bottom:103.413531pt;}
.y92{bottom:105.813608pt;}
.y73{bottom:107.733608pt;}
.y15{bottom:108.053607pt;}
.y23{bottom:116.693604pt;}
.y9c{bottom:127.733600pt;}
.y32{bottom:129.173546pt;}
.y72{bottom:134.453597pt;}
.y9f{bottom:136.053575pt;}
.y91{bottom:136.693596pt;}
.y40{bottom:139.093595pt;}
.y3f{bottom:139.093678pt;}
.y22{bottom:145.493592pt;}
.y65{bottom:149.653543pt;}
.y83{bottom:151.733590pt;}
.y31{bottom:154.773589pt;}
.y71{bottom:161.333586pt;}
.y3e{bottom:165.173585pt;}
.y5{bottom:166.773491pt;}
.y9e{bottom:166.773584pt;}
.y90{bottom:168.053583pt;}
.y9b{bottom:168.693583pt;}
.y21{bottom:174.293581pt;}
.y14{bottom:174.773581pt;}
.y64{bottom:176.533580pt;}
.y82{bottom:182.453578pt;}
.y70{bottom:189.333575pt;}
.y4{bottom:197.653525pt;}
.y9d{bottom:197.653572pt;}
.y20{bottom:203.093569pt;}
.y63{bottom:203.893516pt;}
.y3d{bottom:204.373569pt;}
.y13{bottom:208.373567pt;}
.y9a{bottom:209.493567pt;}
.y77{bottom:210.293488pt;}
.y81{bottom:213.333565pt;}
.y8f{bottom:217.493496pt;}
.y45{bottom:224.053455pt;}
.y3{bottom:228.533559pt;}
.y62{bottom:229.493559pt;}
.y1f{bottom:231.893558pt;}
.y30{bottom:232.533505pt;}
.y76{bottom:236.053556pt;}
.y6f{bottom:238.133555pt;}
.y99{bottom:238.293555pt;}
.y12{bottom:241.813460pt;}
.y3c{bottom:243.413553pt;}
.y4c{bottom:244.053553pt;}
.y80{bottom:244.213553pt;}
.y8e{bottom:248.373531pt;}
.y44{bottom:249.653498pt;}
.y2f{bottom:258.133469pt;}
.y61{bottom:260.373494pt;}
.y11{bottom:265.013545pt;}
.y7f{bottom:274.933541pt;}
.y43{bottom:275.253541pt;}
.y8d{bottom:279.093539pt;}
.y3b{bottom:282.613458pt;}
.y2e{bottom:283.893537pt;}
.y60{bottom:285.973536pt;}
.y6e{bottom:291.893534pt;}
.y10{bottom:293.973533pt;}
.y50{bottom:302.453490pt;}
.y56{bottom:304.373529pt;}
.y7e{bottom:305.813528pt;}
.y53{bottom:307.413528pt;}
.y3a{bottom:308.693527pt;}
.y8c{bottom:309.973527pt;}
.y4f{bottom:316.693524pt;}
.y5f{bottom:317.493524pt;}
.y6d{bottom:318.613523pt;}
.y55{bottom:319.573523pt;}
.y52{bottom:321.813522pt;}
.y2d{bottom:322.613443pt;}
.y1e{bottom:326.293520pt;}
.y57{bottom:327.093520pt;}
.y4e{bottom:331.093518pt;}
.y7d{bottom:336.693516pt;}
.y51{bottom:336.853516pt;}
.y54{bottom:338.773515pt;}
.yf{bottom:339.733515pt;}
.y8b{bottom:341.493514pt;}
.y4d{bottom:346.133512pt;}
.y5e{bottom:346.293512pt;}
.y6c{bottom:346.613512pt;}
.y39{bottom:347.893512pt;}
.y2c{bottom:348.373511pt;}
.y1d{bottom:358.133507pt;}
.y98{bottom:360.853506pt;}
.y7c{bottom:368.053503pt;}
.ye{bottom:370.453502pt;}
.y38{bottom:373.813501pt;}
.y2b{bottom:387.093417pt;}
.y1c{bottom:389.973495pt;}
.y48{bottom:392.373363pt;}
.y6b{bottom:395.573492pt;}
.y5d{bottom:395.733393pt;}
.yd{bottom:401.333490pt;}
.y97{bottom:401.653490pt;}
.y8a{bottom:406.293488pt;}
.y2a{bottom:412.853486pt;}
.y37{bottom:413.013485pt;}
.y42{bottom:416.533431pt;}
.y47{bottom:417.973405pt;}
.y1b{bottom:421.813482pt;}
.y6a{bottom:422.293482pt;}
.y5c{bottom:426.453402pt;}
.yc{bottom:432.213478pt;}
.y7b{bottom:433.013477pt;}
.y89{bottom:437.173476pt;}
.y29{bottom:438.453475pt;}
.y36{bottom:438.933475pt;}
.y41{bottom:442.133474pt;}
.y96{bottom:442.453474pt;}
.y46{bottom:443.733473pt;}
.y69{bottom:449.173471pt;}
.y5b{bottom:452.213470pt;}
.y1a{bottom:453.653469pt;}
.y2{bottom:461.013466pt;}
.yb{bottom:462.933465pt;}
.y7a{bottom:463.893465pt;}
.y88{bottom:468.053411pt;}
.y68{bottom:477.173460pt;}
.y35{bottom:478.133379pt;}
.y5a{bottom:482.933457pt;}
.y87{bottom:493.653407pt;}
.ya{bottom:493.813453pt;}
.y79{bottom:494.613453pt;}
.y28{bottom:502.613450pt;}
.y34{bottom:504.213449pt;}
.y95{bottom:509.973447pt;}
.y59{bottom:513.813445pt;}
.y19{bottom:517.333444pt;}
.y49{bottom:520.533442pt;}
.y4b{bottom:521.493570pt;}
.y86{bottom:524.533441pt;}
.y9{bottom:524.853441pt;}
.y78{bottom:526.133440pt;}
.y67{bottom:527.093440pt;}
.y27{bottom:540.853434pt;}
.y18{bottom:543.253433pt;}
.y58{bottom:545.973432pt;}
.y94{bottom:548.373431pt;}
.y8{bottom:550.773430pt;}
.y1{bottom:552.053430pt;}
.y4a{bottom:553.493429pt;}
.y66{bottom:555.893428pt;}
.y75{bottom:613.013421pt;}
.y26{bottom:616.533404pt;}
.y85{bottom:618.453403pt;}
.y6{bottom:627.093400pt;}
.y7{bottom:637.813396pt;}
.y84{bottom:653.813389pt;}
.y25{bottom:657.013388pt;}
.y74{bottom:662.613386pt;}
.hf{height:45.743982pt;}
.h8{height:50.623340pt;}
.he{height:60.735976pt;}
.h4{height:65.594854pt;}
.h10{height:71.360611pt;}
.h3{height:80.778848pt;}
.h7{height:81.119328pt;}
.h12{height:81.119513pt;}
.hb{height:81.119539pt;}
.ha{height:81.119641pt;}
.h6{height:91.487963pt;}
.h11{height:101.429079pt;}
.hd{height:101.856599pt;}
.h9{height:121.471951pt;}
.h13{height:121.983951pt;}
.h2{height:131.797067pt;}
.hc{height:141.514823pt;}
.h1{height:151.839939pt;}
.h5{height:156.698817pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x5{left:94.547296pt;}
.x28{left:111.027289pt;}
.x27{left:119.347289pt;}
.x26{left:121.107280pt;}
.x2f{left:128.467282pt;}
.x7{left:135.987946pt;}
.xf{left:143.507943pt;}
.x30{left:164.468655pt;}
.xd{left:165.907934pt;}
.x11{left:171.989434pt;}
.x31{left:176.467929pt;}
.x10{left:179.509392pt;}
.x8{left:183.987926pt;}
.x38{left:191.507923pt;}
.xe{left:201.907919pt;}
.x9{left:214.068534pt;}
.xa{left:218.547913pt;}
.x39{left:221.590378pt;}
.x14{left:237.747905pt;}
.x1c{left:242.709030pt;}
.x37{left:243.986206pt;}
.x2d{left:249.907346pt;}
.x6{left:252.467899pt;}
.x23{left:253.747349pt;}
.x22{left:255.027898pt;}
.x36{left:261.907579pt;}
.x33{left:289.268999pt;}
.x34{left:296.626795pt;}
.x1{left:300.947880pt;}
.x21{left:309.587876pt;}
.x2e{left:351.987859pt;}
.xb{left:379.828841pt;}
.x16{left:398.867736pt;}
.x17{left:423.347752pt;}
.x1b{left:428.467829pt;}
.x15{left:435.827826pt;}
.x25{left:438.547777pt;}
.x24{left:439.827824pt;}
.x3{left:507.028208pt;}
.x1d{left:549.267780pt;}
.x1e{left:553.587779pt;}
.x1f{left:561.908100pt;}
.x13{left:587.987765pt;}
.x20{left:589.268557pt;}
.x35{left:603.187759pt;}
.x19{left:706.227593pt;}
.x1a{left:708.467730pt;}
.x2{left:735.027706pt;}
.x12{left:739.667704pt;}
.x18{left:743.987702pt;}
.x2c{left:764.307727pt;}
.x2b{left:791.347683pt;}
.x4{left:815.348452pt;}
.x2a{left:900.947563pt;}
.x32{left:907.347637pt;}
.x29{left:912.467635pt;}
.xc{left:914.707634pt;}
}




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