
    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_d99d3ae9dfae7dd33446c7ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963200;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_ec88575da3cde46193abe7b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971000;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_6b8c88a0c2fe41a3d57b95fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9acbeb0b20b6adc93b5dd429.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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:-24.169920px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.512002px;}
.ls1{letter-spacing:-2.760420px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:13.559189px;}
.ls4{letter-spacing:14.384609px;}
.ls2{letter-spacing:36.890234px;}
.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;}
}
.ws1{word-spacing:-0.084000px;}
.ws14{word-spacing:-0.072000px;}
.ws33{word-spacing:-0.060000px;}
.ws2f{word-spacing:-0.043200px;}
.ws13{word-spacing:0.000000px;}
.ws55{word-spacing:14.327893px;}
.ws47{word-spacing:14.327926px;}
.ws48{word-spacing:14.327960px;}
.ws31{word-spacing:14.327985px;}
.ws53{word-spacing:14.327994px;}
.ws11{word-spacing:14.328005px;}
.ws3a{word-spacing:14.328018px;}
.ws37{word-spacing:14.328031px;}
.ws3d{word-spacing:14.328038px;}
.ws36{word-spacing:14.328059px;}
.ws10{word-spacing:14.328071px;}
.ws12{word-spacing:14.328077px;}
.ws32{word-spacing:14.328079px;}
.ws63{word-spacing:14.328083px;}
.wse{word-spacing:14.328085px;}
.ws56{word-spacing:14.328090px;}
.ws3c{word-spacing:14.328094px;}
.wsd{word-spacing:14.328098px;}
.wsc{word-spacing:14.328100px;}
.ws18{word-spacing:14.328114px;}
.ws4a{word-spacing:14.328118px;}
.wsf{word-spacing:14.328120px;}
.ws34{word-spacing:14.328123px;}
.ws4b{word-spacing:14.328137px;}
.ws57{word-spacing:14.328152px;}
.ws35{word-spacing:14.328157px;}
.ws49{word-spacing:14.328160px;}
.ws24{word-spacing:14.328290px;}
.ws9{word-spacing:16.680729px;}
.ws2{word-spacing:16.681001px;}
.wsb{word-spacing:16.681049px;}
.wsa{word-spacing:16.681099px;}
.ws7{word-spacing:16.681442px;}
.ws4{word-spacing:16.681581px;}
.ws8{word-spacing:16.681651px;}
.ws3{word-spacing:16.681653px;}
.ws5{word-spacing:16.689565px;}
.ws6{word-spacing:16.693557px;}
.ws43{word-spacing:18.827876px;}
.ws5f{word-spacing:18.827938px;}
.ws5e{word-spacing:18.827974px;}
.ws2c{word-spacing:18.827992px;}
.ws39{word-spacing:18.828003px;}
.ws60{word-spacing:18.828014px;}
.ws1f{word-spacing:18.828044px;}
.ws4d{word-spacing:18.828076px;}
.ws4c{word-spacing:18.828082px;}
.ws46{word-spacing:18.828090px;}
.ws5d{word-spacing:18.828097px;}
.ws3e{word-spacing:18.828100px;}
.ws5b{word-spacing:18.828114px;}
.ws3f{word-spacing:18.828115px;}
.ws62{word-spacing:18.828117px;}
.ws15{word-spacing:18.828120px;}
.ws3b{word-spacing:18.828121px;}
.ws29{word-spacing:18.828124px;}
.ws25{word-spacing:18.828162px;}
.ws44{word-spacing:18.828176px;}
.ws26{word-spacing:23.327937px;}
.ws51{word-spacing:23.327940px;}
.ws16{word-spacing:23.328011px;}
.ws65{word-spacing:23.328018px;}
.ws59{word-spacing:23.328060px;}
.ws30{word-spacing:23.328071px;}
.ws1c{word-spacing:23.328079px;}
.ws42{word-spacing:23.328081px;}
.ws41{word-spacing:23.328087px;}
.ws2e{word-spacing:23.328115px;}
.ws1e{word-spacing:23.328120px;}
.ws27{word-spacing:23.328122px;}
.ws4f{word-spacing:23.328154px;}
.ws28{word-spacing:27.828005px;}
.ws1d{word-spacing:27.828019px;}
.ws21{word-spacing:27.828050px;}
.ws5c{word-spacing:27.828082px;}
.ws20{word-spacing:27.828119px;}
.ws64{word-spacing:27.828121px;}
.ws38{word-spacing:27.828151px;}
.ws23{word-spacing:27.828155px;}
.ws2d{word-spacing:27.828162px;}
.ws2a{word-spacing:27.828252px;}
.ws0{word-spacing:28.656126px;}
.ws22{word-spacing:32.327891px;}
.ws4e{word-spacing:32.327980px;}
.ws50{word-spacing:32.328021px;}
.ws2b{word-spacing:32.328037px;}
.ws5a{word-spacing:32.328095px;}
.ws54{word-spacing:32.328096px;}
.ws61{word-spacing:32.328120px;}
.ws19{word-spacing:32.328289px;}
.ws17{word-spacing:36.827942px;}
.ws1a{word-spacing:36.828023px;}
.ws58{word-spacing:36.828077px;}
.ws52{word-spacing:36.828081px;}
.ws1b{word-spacing:36.828137px;}
.ws40{word-spacing:645.984180px;}
.ws45{word-spacing:921.168374px;}
._3{margin-left:-6.879418px;}
._1{margin-left:-4.750807px;}
._4{margin-left:-3.032335px;}
._0{margin-left:-1.871726px;}
._2{width:1.678483px;}
._5{width:3.623171px;}
._10{width:13.994580px;}
._6{width:15.130028px;}
._b{width:18.179016px;}
._a{width:19.261201px;}
._c{width:23.040355px;}
._12{width:24.120666px;}
._7{width:27.396423px;}
._11{width:28.763803px;}
._d{width:31.752171px;}
._e{width:32.769647px;}
._9{width:36.540468px;}
._f{width:37.547892px;}
._8{width:41.400423px;}
._13{width:647.495321px;}
._14{width:952.703685px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(6,6,37);}
.fs5{font-size:36.000000px;}
.fs4{font-size:43.200002px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:59.999999px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:4.199930px;}
.y18{bottom:4.199935px;}
.y15{bottom:4.199983px;}
.y7{bottom:4.200007px;}
.y11{bottom:4.200040px;}
.y13{bottom:16.799927px;}
.y3{bottom:16.800019px;}
.yb{bottom:29.399915px;}
.y10{bottom:29.400010px;}
.y6{bottom:29.400022px;}
.ya{bottom:54.599945px;}
.y5{bottom:54.599992px;}
.y57{bottom:56.324700px;}
.y43{bottom:56.324895px;}
.y40{bottom:116.232973px;}
.y56{bottom:116.233153px;}
.y41{bottom:134.543338px;}
.y42{bottom:152.853883px;}
.y6f{bottom:180.388185px;}
.y6c{bottom:185.909910px;}
.y21{bottom:201.574215px;}
.y6e{bottom:205.228635px;}
.y6b{bottom:210.750000px;}
.y55{bottom:220.562625px;}
.y20{bottom:223.174170px;}
.y6a{bottom:235.590090px;}
.y75{bottom:237.030030px;}
.y54{bottom:242.162475px;}
.y1f{bottom:244.774200px;}
.y6d{bottom:248.428710px;}
.y69{bottom:260.430180px;}
.y74{bottom:261.870120px;}
.y53{bottom:263.762325px;}
.y1e{bottom:266.374230px;}
.y68{bottom:285.270270px;}
.y52{bottom:285.362550px;}
.y73{bottom:286.709475px;}
.y1d{bottom:287.974185px;}
.y67{bottom:310.110345px;}
.y72{bottom:311.550300px;}
.y51{bottom:328.562625px;}
.y66{bottom:334.950435px;}
.y3f{bottom:344.894895px;}
.y71{bottom:354.750000px;}
.y65{bottom:359.789790px;}
.y3e{bottom:369.734985px;}
.y64{bottom:384.629880px;}
.y3d{bottom:394.575075px;}
.y63{bottom:409.469970px;}
.y3c{bottom:419.414985px;}
.y62{bottom:434.310060px;}
.y3b{bottom:444.255060px;}
.y61{bottom:459.150150px;}
.y89{bottom:465.855465px;}
.y3a{bottom:469.094970px;}
.y1c{bottom:481.500000px;}
.y60{bottom:483.989865px;}
.y88{bottom:490.694820px;}
.y39{bottom:493.935060px;}
.y1b{bottom:503.099985px;}
.y5f{bottom:508.829955px;}
.y87{bottom:515.534910px;}
.y38{bottom:518.774970px;}
.y5e{bottom:533.670045px;}
.y86{bottom:540.375000px;}
.y37{bottom:543.614865px;}
.y1a{bottom:546.300015px;}
.y5d{bottom:558.509760px;}
.y85{bottom:565.215090px;}
.y19{bottom:567.900060px;}
.y36{bottom:568.454955px;}
.y5c{bottom:583.349850px;}
.y84{bottom:590.055180px;}
.y35{bottom:593.295045px;}
.y17{bottom:608.625051px;}
.y83{bottom:614.895270px;}
.y34{bottom:618.134955px;}
.y16{bottom:621.225042px;}
.y5b{bottom:626.549925px;}
.y70{bottom:633.075435px;}
.y82{bottom:639.735345px;}
.y33{bottom:642.975030px;}
.y5a{bottom:648.149775px;}
.y12{bottom:660.150059px;}
.y81{bottom:664.575435px;}
.y32{bottom:667.814940px;}
.y59{bottom:669.750000px;}
.y14{bottom:672.750003px;}
.y80{bottom:689.414790px;}
.y31{bottom:692.655030px;}
.yf{bottom:699.074976px;}
.ye{bottom:711.674967px;}
.y58{bottom:712.950075px;}
.y7f{bottom:714.254880px;}
.y30{bottom:717.495120px;}
.y50{bottom:739.094970px;}
.y2f{bottom:742.335015px;}
.yd{bottom:750.599997px;}
.y4f{bottom:763.935060px;}
.y2e{bottom:767.175105px;}
.y4e{bottom:788.774775px;}
.y7e{bottom:788.775150px;}
.y9{bottom:789.525056px;}
.y2d{bottom:792.015015px;}
.y4d{bottom:813.614865px;}
.y7d{bottom:813.615240px;}
.y2c{bottom:816.854925px;}
.y8{bottom:827.324982px;}
.y7c{bottom:838.454595px;}
.y4c{bottom:838.454955px;}
.y2b{bottom:841.695000px;}
.y7b{bottom:863.294685px;}
.y4b{bottom:863.295045px;}
.y4{bottom:866.249994px;}
.y2a{bottom:866.534910px;}
.y7a{bottom:888.134760px;}
.y4a{bottom:888.134955px;}
.y29{bottom:891.375000px;}
.y2{bottom:904.049967px;}
.y79{bottom:912.974850px;}
.y49{bottom:912.975030px;}
.y28{bottom:916.215090px;}
.y78{bottom:937.814940px;}
.y48{bottom:937.815120px;}
.y27{bottom:941.055000px;}
.y47{bottom:962.655030px;}
.y26{bottom:965.894895px;}
.y46{bottom:987.495120px;}
.y25{bottom:990.734985px;}
.y77{bottom:1012.334472px;}
.y45{bottom:1012.335206px;}
.y24{bottom:1015.574982px;}
.y1{bottom:1019.174996px;}
.y44{bottom:1037.174926px;}
.y23{bottom:1037.175109px;}
.y76{bottom:1037.175293px;}
.y22{bottom:1203.000000px;}
.h8{height:25.199982px;}
.hd{height:25.839844px;}
.h7{height:37.799926px;}
.h2{height:37.800018px;}
.ha{height:50.062500px;}
.h6{height:50.400009px;}
.hb{height:54.648000px;}
.h9{height:54.936000px;}
.hc{height:61.473603px;}
.h3{height:64.091998px;}
.h5{height:75.599944px;}
.h4{height:75.599991px;}
.he{height:105.899775px;}
.hf{height:105.900150px;}
.h1{height:109.296000px;}
.h0{height:1263.000000px;}
.w1{width:158.625012px;}
.w2{width:571.500000px;}
.w3{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x3{left:6.750000px;}
.x1{left:106.274997px;}
.x2{left:107.399997px;}
.x7{left:210.675189px;}
.x8{left:225.075039px;}
.x4{left:267.149985px;}
.xa{left:451.875076px;}
.xb{left:459.075110px;}
.x9{left:467.581167px;}
.x5{left:679.500000px;}
.x6{left:820.040393px;}
.xc{left:821.174393px;}
@media print{
.v2{vertical-align:-21.484373pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.344002pt;}
.ls1{letter-spacing:-2.453707pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:12.052612pt;}
.ls4{letter-spacing:12.786319pt;}
.ls2{letter-spacing:32.791319pt;}
.ws1{word-spacing:-0.074667pt;}
.ws14{word-spacing:-0.064000pt;}
.ws33{word-spacing:-0.053333pt;}
.ws2f{word-spacing:-0.038400pt;}
.ws13{word-spacing:0.000000pt;}
.ws55{word-spacing:12.735905pt;}
.ws47{word-spacing:12.735934pt;}
.ws48{word-spacing:12.735964pt;}
.ws31{word-spacing:12.735987pt;}
.ws53{word-spacing:12.735995pt;}
.ws11{word-spacing:12.736004pt;}
.ws3a{word-spacing:12.736016pt;}
.ws37{word-spacing:12.736028pt;}
.ws3d{word-spacing:12.736034pt;}
.ws36{word-spacing:12.736052pt;}
.ws10{word-spacing:12.736063pt;}
.ws12{word-spacing:12.736068pt;}
.ws32{word-spacing:12.736070pt;}
.ws63{word-spacing:12.736074pt;}
.wse{word-spacing:12.736075pt;}
.ws56{word-spacing:12.736080pt;}
.ws3c{word-spacing:12.736084pt;}
.wsd{word-spacing:12.736087pt;}
.wsc{word-spacing:12.736089pt;}
.ws18{word-spacing:12.736101pt;}
.ws4a{word-spacing:12.736105pt;}
.wsf{word-spacing:12.736106pt;}
.ws34{word-spacing:12.736109pt;}
.ws4b{word-spacing:12.736122pt;}
.ws57{word-spacing:12.736135pt;}
.ws35{word-spacing:12.736140pt;}
.ws49{word-spacing:12.736142pt;}
.ws24{word-spacing:12.736258pt;}
.ws9{word-spacing:14.827314pt;}
.ws2{word-spacing:14.827556pt;}
.wsb{word-spacing:14.827599pt;}
.wsa{word-spacing:14.827644pt;}
.ws7{word-spacing:14.827949pt;}
.ws4{word-spacing:14.828072pt;}
.ws8{word-spacing:14.828134pt;}
.ws3{word-spacing:14.828136pt;}
.ws5{word-spacing:14.835169pt;}
.ws6{word-spacing:14.838718pt;}
.ws43{word-spacing:16.735890pt;}
.ws5f{word-spacing:16.735945pt;}
.ws5e{word-spacing:16.735977pt;}
.ws2c{word-spacing:16.735993pt;}
.ws39{word-spacing:16.736003pt;}
.ws60{word-spacing:16.736012pt;}
.ws1f{word-spacing:16.736039pt;}
.ws4d{word-spacing:16.736067pt;}
.ws4c{word-spacing:16.736073pt;}
.ws46{word-spacing:16.736080pt;}
.ws5d{word-spacing:16.736086pt;}
.ws3e{word-spacing:16.736089pt;}
.ws5b{word-spacing:16.736101pt;}
.ws3f{word-spacing:16.736102pt;}
.ws62{word-spacing:16.736104pt;}
.ws15{word-spacing:16.736106pt;}
.ws3b{word-spacing:16.736108pt;}
.ws29{word-spacing:16.736110pt;}
.ws25{word-spacing:16.736144pt;}
.ws44{word-spacing:16.736156pt;}
.ws26{word-spacing:20.735944pt;}
.ws51{word-spacing:20.735946pt;}
.ws16{word-spacing:20.736010pt;}
.ws65{word-spacing:20.736016pt;}
.ws59{word-spacing:20.736054pt;}
.ws30{word-spacing:20.736063pt;}
.ws1c{word-spacing:20.736070pt;}
.ws42{word-spacing:20.736072pt;}
.ws41{word-spacing:20.736077pt;}
.ws2e{word-spacing:20.736102pt;}
.ws1e{word-spacing:20.736106pt;}
.ws27{word-spacing:20.736108pt;}
.ws4f{word-spacing:20.736137pt;}
.ws28{word-spacing:24.736004pt;}
.ws1d{word-spacing:24.736017pt;}
.ws21{word-spacing:24.736044pt;}
.ws5c{word-spacing:24.736073pt;}
.ws20{word-spacing:24.736106pt;}
.ws64{word-spacing:24.736107pt;}
.ws38{word-spacing:24.736134pt;}
.ws23{word-spacing:24.736138pt;}
.ws2d{word-spacing:24.736144pt;}
.ws2a{word-spacing:24.736224pt;}
.ws0{word-spacing:25.472112pt;}
.ws22{word-spacing:28.735903pt;}
.ws4e{word-spacing:28.735982pt;}
.ws50{word-spacing:28.736019pt;}
.ws2b{word-spacing:28.736033pt;}
.ws5a{word-spacing:28.736084pt;}
.ws54{word-spacing:28.736085pt;}
.ws61{word-spacing:28.736106pt;}
.ws19{word-spacing:28.736257pt;}
.ws17{word-spacing:32.735949pt;}
.ws1a{word-spacing:32.736021pt;}
.ws58{word-spacing:32.736068pt;}
.ws52{word-spacing:32.736072pt;}
.ws1b{word-spacing:32.736122pt;}
.ws40{word-spacing:574.208160pt;}
.ws45{word-spacing:818.816332pt;}
._3{margin-left:-6.115038pt;}
._1{margin-left:-4.222939pt;}
._4{margin-left:-2.695409pt;}
._0{margin-left:-1.663756pt;}
._2{width:1.491985pt;}
._5{width:3.220597pt;}
._10{width:12.439627pt;}
._6{width:13.448914pt;}
._b{width:16.159126pt;}
._a{width:17.121067pt;}
._c{width:20.480316pt;}
._12{width:21.440592pt;}
._7{width:24.352376pt;}
._11{width:25.567825pt;}
._d{width:28.224152pt;}
._e{width:29.128575pt;}
._9{width:32.480416pt;}
._f{width:33.375904pt;}
._8{width:36.800376pt;}
._13{width:575.551396pt;}
._14{width:846.847720pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:38.400002pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:53.333332pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.733271pt;}
.y18{bottom:3.733275pt;}
.y15{bottom:3.733318pt;}
.y7{bottom:3.733339pt;}
.y11{bottom:3.733369pt;}
.y13{bottom:14.933269pt;}
.y3{bottom:14.933350pt;}
.yb{bottom:26.133258pt;}
.y10{bottom:26.133342pt;}
.y6{bottom:26.133353pt;}
.ya{bottom:48.533285pt;}
.y5{bottom:48.533326pt;}
.y57{bottom:50.066400pt;}
.y43{bottom:50.066573pt;}
.y40{bottom:103.318199pt;}
.y56{bottom:103.318359pt;}
.y41{bottom:119.594079pt;}
.y42{bottom:135.870119pt;}
.y6f{bottom:160.345053pt;}
.y6c{bottom:165.253253pt;}
.y21{bottom:179.177080pt;}
.y6e{bottom:182.425453pt;}
.y6b{bottom:187.333333pt;}
.y55{bottom:196.055667pt;}
.y20{bottom:198.377040pt;}
.y6a{bottom:209.413413pt;}
.y75{bottom:210.693360pt;}
.y54{bottom:215.255533pt;}
.y1f{bottom:217.577067pt;}
.y6d{bottom:220.825520pt;}
.y69{bottom:231.493493pt;}
.y74{bottom:232.773440pt;}
.y53{bottom:234.455400pt;}
.y1e{bottom:236.777093pt;}
.y68{bottom:253.573573pt;}
.y52{bottom:253.655600pt;}
.y73{bottom:254.852867pt;}
.y1d{bottom:255.977053pt;}
.y67{bottom:275.653640pt;}
.y72{bottom:276.933600pt;}
.y51{bottom:292.055667pt;}
.y66{bottom:297.733720pt;}
.y3f{bottom:306.573240pt;}
.y71{bottom:315.333333pt;}
.y65{bottom:319.813147pt;}
.y3e{bottom:328.653320pt;}
.y64{bottom:341.893227pt;}
.y3d{bottom:350.733400pt;}
.y63{bottom:363.973307pt;}
.y3c{bottom:372.813320pt;}
.y62{bottom:386.053387pt;}
.y3b{bottom:394.893387pt;}
.y61{bottom:408.133467pt;}
.y89{bottom:414.093747pt;}
.y3a{bottom:416.973307pt;}
.y1c{bottom:428.000000pt;}
.y60{bottom:430.213213pt;}
.y88{bottom:436.173173pt;}
.y39{bottom:439.053387pt;}
.y1b{bottom:447.199987pt;}
.y5f{bottom:452.293293pt;}
.y87{bottom:458.253253pt;}
.y38{bottom:461.133307pt;}
.y5e{bottom:474.373373pt;}
.y86{bottom:480.333333pt;}
.y37{bottom:483.213213pt;}
.y1a{bottom:485.600013pt;}
.y5d{bottom:496.453120pt;}
.y85{bottom:502.413413pt;}
.y19{bottom:504.800053pt;}
.y36{bottom:505.293293pt;}
.y5c{bottom:518.533200pt;}
.y84{bottom:524.493493pt;}
.y35{bottom:527.373373pt;}
.y17{bottom:541.000045pt;}
.y83{bottom:546.573573pt;}
.y34{bottom:549.453293pt;}
.y16{bottom:552.200037pt;}
.y5b{bottom:556.933267pt;}
.y70{bottom:562.733720pt;}
.y82{bottom:568.653640pt;}
.y33{bottom:571.533360pt;}
.y5a{bottom:576.133133pt;}
.y12{bottom:586.800052pt;}
.y81{bottom:590.733720pt;}
.y32{bottom:593.613280pt;}
.y59{bottom:595.333333pt;}
.y14{bottom:598.000003pt;}
.y80{bottom:612.813147pt;}
.y31{bottom:615.693360pt;}
.yf{bottom:621.399979pt;}
.ye{bottom:632.599971pt;}
.y58{bottom:633.733400pt;}
.y7f{bottom:634.893227pt;}
.y30{bottom:637.773440pt;}
.y50{bottom:656.973307pt;}
.y2f{bottom:659.853347pt;}
.yd{bottom:667.199997pt;}
.y4f{bottom:679.053387pt;}
.y2e{bottom:681.933427pt;}
.y4e{bottom:701.133133pt;}
.y7e{bottom:701.133467pt;}
.y9{bottom:701.800049pt;}
.y2d{bottom:704.013347pt;}
.y4d{bottom:723.213213pt;}
.y7d{bottom:723.213547pt;}
.y2c{bottom:726.093267pt;}
.y8{bottom:735.399984pt;}
.y7c{bottom:745.292973pt;}
.y4c{bottom:745.293293pt;}
.y2b{bottom:748.173333pt;}
.y7b{bottom:767.373053pt;}
.y4b{bottom:767.373373pt;}
.y4{bottom:769.999995pt;}
.y2a{bottom:770.253253pt;}
.y7a{bottom:789.453120pt;}
.y4a{bottom:789.453293pt;}
.y29{bottom:792.333333pt;}
.y2{bottom:803.599971pt;}
.y79{bottom:811.533200pt;}
.y49{bottom:811.533360pt;}
.y28{bottom:814.413413pt;}
.y78{bottom:833.613280pt;}
.y48{bottom:833.613440pt;}
.y27{bottom:836.493333pt;}
.y47{bottom:855.693360pt;}
.y26{bottom:858.573240pt;}
.y46{bottom:877.773440pt;}
.y25{bottom:880.653320pt;}
.y77{bottom:899.852864pt;}
.y45{bottom:899.853516pt;}
.y24{bottom:902.733317pt;}
.y1{bottom:905.933329pt;}
.y44{bottom:921.933268pt;}
.y23{bottom:921.933431pt;}
.y76{bottom:921.933593pt;}
.y22{bottom:1069.333333pt;}
.h8{height:22.399984pt;}
.hd{height:22.968750pt;}
.h7{height:33.599935pt;}
.h2{height:33.600016pt;}
.ha{height:44.500000pt;}
.h6{height:44.800008pt;}
.hb{height:48.576000pt;}
.h9{height:48.832000pt;}
.hc{height:54.643203pt;}
.h3{height:56.970665pt;}
.h5{height:67.199951pt;}
.h4{height:67.199992pt;}
.he{height:94.133133pt;}
.hf{height:94.133467pt;}
.h1{height:97.152000pt;}
.h0{height:1122.666667pt;}
.w1{width:141.000011pt;}
.w2{width:508.000000pt;}
.w3{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x3{left:6.000000pt;}
.x1{left:94.466664pt;}
.x2{left:95.466664pt;}
.x7{left:187.266835pt;}
.x8{left:200.066701pt;}
.x4{left:237.466653pt;}
.xa{left:401.666734pt;}
.xb{left:408.066764pt;}
.x9{left:415.627704pt;}
.x5{left:604.000000pt;}
.x6{left:728.924794pt;}
.xc{left:729.932794pt;}
}




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