
    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_8b07162ecadc5e8b41fc4a6e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_2ac181d1a0a5f62e3f254092.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_ddcf8c4680334c3f7e99a6e2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.680176;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_b11778ad26c6baa397fafd42.woff')format("woff");}.ff4{font-family:ff4;line-height:0.713867;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_c02e57efe83defa1e784d049.woff')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_a1d52d9471de188e56ac5dc0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_757adb97eb818bf91625405a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.935547;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v6{vertical-align:-45.000010px;}
.v4{vertical-align:-40.500006px;}
.v3{vertical-align:-27.000001px;}
.v7{vertical-align:-8.672130px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.423905px;}
.v2{vertical-align:26.999996px;}
.v5{vertical-align:40.500001px;}
.v8{vertical-align:91.444692px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012087px;}
.ls3{letter-spacing:0.018140px;}
.ls4{letter-spacing:0.071444px;}
.ls5{letter-spacing:0.079702px;}
.ls7{letter-spacing:46.800813px;}
.ls8{letter-spacing:47.086877px;}
.ls1{letter-spacing:53.392950px;}
.ls6{letter-spacing:154.321941px;}
.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:-39.888001px;}
.ws4{word-spacing:-29.916001px;}
.ws0{word-spacing:-23.268000px;}
.ws6{word-spacing:-22.160001px;}
.ws8{word-spacing:-18.282001px;}
.ws9{word-spacing:-16.620000px;}
.ws5{word-spacing:-0.120000px;}
.ws7{word-spacing:-0.084000px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:1455.047867px;}
._3{margin-left:-4963.512872px;}
._9{margin-left:-15.984001px;}
._11{margin-left:-9.240000px;}
._0{margin-left:-7.992000px;}
._6{margin-left:-6.600000px;}
._7{margin-left:-5.328000px;}
._12{margin-left:-3.729600px;}
._1{margin-left:-2.592000px;}
._2{margin-left:-1.080000px;}
._5{width:1.039568px;}
._d{width:52.494433px;}
._f{width:57.595111px;}
._e{width:71.829091px;}
._10{width:74.235311px;}
._8{width:382.531948px;}
._a{width:1642.444834px;}
._b{width:2568.161314px;}
._c{width:2569.816576px;}
._4{width:2584.839385px;}
.fc8{color:rgb(115,169,80);}
.fc6{color:rgb(111,194,133);}
.fc5{color:transparent;}
.fc3{color:rgb(110,195,133);}
.fc2{color:rgb(139,187,235);}
.fc7{color:rgb(0,33,86);}
.fc1{color:rgb(137,186,235);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:42.000000px;}
.fs8{font-size:48.000004px;}
.fs3{font-size:60.000000px;}
.fse{font-size:66.000004px;}
.fs7{font-size:72.000002px;}
.fsa{font-size:72.000006px;}
.fsd{font-size:78.000005px;}
.fsb{font-size:80.000005px;}
.fs2{font-size:84.000000px;}
.fs14{font-size:88.800006px;}
.fs15{font-size:100.800003px;}
.fs5{font-size:102.000000px;}
.fs9{font-size:108.000003px;}
.fs13{font-size:111.000001px;}
.fs4{font-size:112.200007px;}
.fs10{font-size:114.000007px;}
.fs11{font-size:118.800004px;}
.fs6{font-size:120.000001px;}
.fsf{font-size:125.399997px;}
.fs12{font-size:133.200013px;}
.fs1{font-size:144.000005px;}
.fs0{font-size:216.000007px;}
.y0{bottom:0.000000px;}
.y7{bottom:15.712937px;}
.y38{bottom:66.711464px;}
.y6b{bottom:67.131764px;}
.y7e{bottom:67.833651px;}
.y22{bottom:71.154201px;}
.y55{bottom:71.271381px;}
.y1d{bottom:82.812633px;}
.y6a{bottom:90.531764px;}
.y54{bottom:96.471405px;}
.y37{bottom:102.711465px;}
.y21{bottom:107.154203px;}
.y7d{bottom:108.275546px;}
.y1c{bottom:113.412656px;}
.y69{bottom:113.931770px;}
.ya5{bottom:116.545422px;}
.y91{bottom:120.182547px;}
.y53{bottom:121.671428px;}
.ya4{bottom:136.705445px;}
.y68{bottom:137.331769px;}
.y36{bottom:138.711466px;}
.y7c{bottom:140.675536px;}
.y20{bottom:143.154206px;}
.y1b{bottom:144.012669px;}
.y90{bottom:144.158570px;}
.y52{bottom:146.871463px;}
.y7b{bottom:155.675540px;}
.y67{bottom:161.091769px;}
.ya3{bottom:163.671876px;}
.y51{bottom:172.071497px;}
.y1a{bottom:174.612681px;}
.y35{bottom:174.711469px;}
.y8f{bottom:175.333345px;}
.y65{bottom:182.574666px;}
.y7a{bottom:188.723539px;}
.ya2{bottom:202.057462px;}
.y23{bottom:204.938756px;}
.y25{bottom:204.938868px;}
.y19{bottom:205.212704px;}
.y64{bottom:207.774661px;}
.y6{bottom:213.839983px;}
.y8e{bottom:219.104587px;}
.ya1{bottom:222.217462px;}
.y72{bottom:223.440278px;}
.y26{bottom:224.231201px;}
.y63{bottom:232.974668px;}
.y18{bottom:235.812705px;}
.y79{bottom:239.759535px;}
.y8d{bottom:243.080611px;}
.y71{bottom:243.240277px;}
.ya0{bottom:249.183893px;}
.y5d{bottom:253.029533px;}
.y5{bottom:255.239988px;}
.y62{bottom:258.174662px;}
.y27{bottom:262.031202px;}
.y7f{bottom:265.711111px;}
.y17{bottom:266.412729px;}
.y8c{bottom:274.255374px;}
.y5c{bottom:278.229536px;}
.y61{bottom:283.374660px;}
.y9f{bottom:287.569468px;}
.y16{bottom:297.012741px;}
.y4{bottom:298.439984px;}
.y28{bottom:302.531204px;}
.y5b{bottom:303.429535px;}
.y9e{bottom:307.729480px;}
.y8b{bottom:318.026628px;}
.y15{bottom:327.612753px;}
.y9d{bottom:334.695911px;}
.y45{bottom:335.192531px;}
.y3d{bottom:335.192599px;}
.y73{bottom:336.081299px;}
.y29{bottom:336.988222px;}
.y8a{bottom:342.002629px;}
.y14{bottom:358.824777px;}
.y44{bottom:360.392554px;}
.y3c{bottom:360.392599px;}
.y3{bottom:361.447681px;}
.y5a{bottom:369.650536px;}
.y2a{bottom:372.088223px;}
.y9c{bottom:373.081486px;}
.y89{bottom:373.177449px;}
.y3b{bottom:385.592589px;}
.y9b{bottom:393.241487px;}
.y59{bottom:394.850535px;}
.y24{bottom:404.130092px;}
.y2b{bottom:405.388202px;}
.y13{bottom:406.872763px;}
.y70{bottom:407.143798px;}
.y3a{bottom:410.792578px;}
.y88{bottom:416.948646px;}
.y2{bottom:419.767678px;}
.y9a{bottom:420.207873px;}
.y47{bottom:420.963141px;}
.y6f{bottom:430.543799px;}
.y12{bottom:437.472764px;}
.y2c{bottom:437.788226px;}
.y87{bottom:440.924636px;}
.y46{bottom:446.163142px;}
.y39{bottom:453.263310px;}
.y6e{bottom:453.943804px;}
.y43{bottom:456.226132px;}
.y99{bottom:458.593470px;}
.y58{bottom:459.435551px;}
.y11{bottom:468.072754px;}
.y50{bottom:469.465639px;}
.y2d{bottom:471.696492px;}
.y86{bottom:472.099444px;}
.y6d{bottom:477.343804px;}
.y1{bottom:478.087680px;}
.y98{bottom:478.753471px;}
.y42{bottom:481.426129px;}
.y57{bottom:484.635554px;}
.y4f{bottom:494.665629px;}
.y78{bottom:498.137469px;}
.y10{bottom:498.672755px;}
.y97{bottom:498.913471px;}
.y6c{bottom:501.103804px;}
.y41{bottom:506.626127px;}
.y2e{bottom:509.496482px;}
.y56{bottom:509.835553px;}
.y85{bottom:515.870642px;}
.y4e{bottom:519.865623px;}
.yb{bottom:524.294293px;}
.y4a{bottom:525.547285px;}
.y96{bottom:525.879857px;}
.yf{bottom:529.272756px;}
.y77{bottom:534.137470px;}
.y84{bottom:539.846643px;}
.y4d{bottom:545.065625px;}
.y2f{bottom:546.396494px;}
.y49{bottom:550.747288px;}
.y40{bottom:557.973003px;}
.ye{bottom:559.872752px;}
.y33{bottom:560.519891px;}
.y83{bottom:563.822638px;}
.y95{bottom:564.265455px;}
.y60{bottom:565.530258px;}
.ya{bottom:567.494289px;}
.y76{bottom:570.137471px;}
.y4c{bottom:570.265623px;}
.y1f{bottom:570.862797px;}
.y34{bottom:572.961257px;}
.y48{bottom:575.947289px;}
.y30{bottom:580.596484px;}
.y3f{bottom:583.172999px;}
.y75{bottom:583.276301px;}
.y94{bottom:584.425455px;}
.y5f{bottom:587.130256px;}
.yd{bottom:591.084758px;}
.y32{bottom:592.919885px;}
.y82{bottom:594.997435px;}
.y4b{bottom:595.465621px;}
.y1e{bottom:596.062795px;}
.y3e{bottom:608.372998px;}
.y5e{bottom:608.730255px;}
.y9{bottom:610.694285px;}
.y93{bottom:611.391845px;}
.y74{bottom:619.276305px;}
.y66{bottom:620.980161px;}
.y31{bottom:625.319883px;}
.yc{bottom:639.744756px;}
.y81{bottom:641.166236px;}
.y92{bottom:650.583839px;}
.y80{bottom:652.949035px;}
.y8{bottom:713.844122px;}
.he{height:30.618164px;}
.h4{height:43.740235px;}
.h11{height:48.049807px;}
.h9{height:52.488283px;}
.h10{height:57.014652px;}
.hf{height:61.154297px;}
.h3{height:61.236328px;}
.hb{height:61.992187px;}
.h18{height:64.735551px;}
.ha{height:65.912188px;}
.h1a{height:73.385159px;}
.h1b{height:73.483596px;}
.h7{height:74.358399px;}
.h15{height:78.626956px;}
.hc{height:78.732424px;}
.h17{height:80.811036px;}
.h19{height:80.919434px;}
.h5{height:81.684673px;}
.h6{height:81.794243px;}
.h14{height:86.605667px;}
.h8{height:87.480469px;}
.h13{height:91.417087px;}
.hd{height:92.988287px;}
.h16{height:96.973252px;}
.h2{height:104.976566px;}
.h1{height:157.253911px;}
.h12{height:178.925161px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1a{left:10.460218px;}
.x19{left:12.100184px;}
.x1b{left:36.216755px;}
.x9{left:40.242818px;}
.x43{left:41.817949px;}
.x45{left:51.743316px;}
.x3{left:54.000002px;}
.x46{left:58.168927px;}
.x4d{left:68.372939px;}
.x4b{left:71.652504px;}
.xa{left:75.305174px;}
.x55{left:77.096455px;}
.x1{left:81.000003px;}
.x48{left:83.314938px;}
.x4e{left:86.873916px;}
.x18{left:92.935398px;}
.x8{left:97.877602px;}
.x44{left:99.545972px;}
.x4a{left:100.823961px;}
.x4c{left:103.749817px;}
.x5c{left:112.500004px;}
.x4{left:114.531650px;}
.x5d{left:116.663896px;}
.x47{left:118.317612px;}
.x49{left:124.743226px;}
.x5e{left:169.087697px;}
.x1c{left:184.635355px;}
.x5f{left:194.437570px;}
.x52{left:250.484307px;}
.x4f{left:290.925009px;}
.x27{left:304.421233px;}
.x28{left:310.298918px;}
.x32{left:314.020137px;}
.x30{left:316.945994px;}
.x33{left:318.708682px;}
.x2f{left:321.619166px;}
.x26{left:350.573940px;}
.x31{left:351.974288px;}
.x34{left:354.869400px;}
.x29{left:356.221260px;}
.x51{left:368.596924px;}
.x53{left:409.302924px;}
.x12{left:452.705572px;}
.xc{left:456.775081px;}
.x54{left:477.245067px;}
.xb{left:496.778672px;}
.x2d{left:499.028834px;}
.x2b{left:503.483112px;}
.xd{left:518.420604px;}
.x1f{left:525.356928px;}
.x2e{left:529.383957px;}
.x2a{left:533.812614px;}
.x2c{left:536.149198px;}
.x1d{left:561.202297px;}
.x1e{left:564.526211px;}
.x20{left:632.051086px;}
.x11{left:635.332408px;}
.x35{left:672.768046px;}
.x36{left:677.456591px;}
.x37{left:685.055620px;}
.x13{left:752.872187px;}
.x2{left:803.100026px;}
.x42{left:841.499578px;}
.x3f{left:850.256653px;}
.x41{left:852.577866px;}
.x16{left:856.953916px;}
.x3e{left:863.072007px;}
.x40{left:867.355851px;}
.x15{left:868.970762px;}
.x17{left:877.986143px;}
.x14{left:892.149441px;}
.x56{left:897.477666px;}
.xe{left:926.193881px;}
.x25{left:942.234667px;}
.xf{left:963.415595px;}
.x5{left:984.696377px;}
.x6{left:988.905642px;}
.x23{left:996.809775px;}
.x10{left:1001.794825px;}
.x57{left:1003.757750px;}
.x7{left:1012.071380px;}
.x22{left:1026.007351px;}
.x58{left:1031.393632px;}
.x21{left:1033.497108px;}
.x24{left:1041.023808px;}
.x5a{left:1052.027055px;}
.x59{left:1053.055451px;}
.x38{left:1085.073930px;}
.x50{left:1125.904842px;}
.x3a{left:1140.818114px;}
.x3c{left:1143.139276px;}
.x39{left:1202.825603px;}
.x3b{left:1208.481755px;}
.x3d{left:1214.328290px;}
.x5b{left:1370.136084px;}
@media print{
.v6{vertical-align:-40.000009pt;}
.v4{vertical-align:-36.000005pt;}
.v3{vertical-align:-24.000001pt;}
.v7{vertical-align:-7.708560pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.932360pt;}
.v2{vertical-align:23.999997pt;}
.v5{vertical-align:36.000001pt;}
.v8{vertical-align:81.284171pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010744pt;}
.ls3{letter-spacing:0.016124pt;}
.ls4{letter-spacing:0.063506pt;}
.ls5{letter-spacing:0.070846pt;}
.ls7{letter-spacing:41.600722pt;}
.ls8{letter-spacing:41.855001pt;}
.ls1{letter-spacing:47.460400pt;}
.ls6{letter-spacing:137.175058pt;}
.ws2{word-spacing:-35.456001pt;}
.ws4{word-spacing:-26.592001pt;}
.ws0{word-spacing:-20.682667pt;}
.ws6{word-spacing:-19.697779pt;}
.ws8{word-spacing:-16.250668pt;}
.ws9{word-spacing:-14.773333pt;}
.ws5{word-spacing:-0.106667pt;}
.ws7{word-spacing:-0.074667pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:1293.375881pt;}
._3{margin-left:-4412.011442pt;}
._9{margin-left:-14.208000pt;}
._11{margin-left:-8.213333pt;}
._0{margin-left:-7.104000pt;}
._6{margin-left:-5.866667pt;}
._7{margin-left:-4.736000pt;}
._12{margin-left:-3.315200pt;}
._1{margin-left:-2.304000pt;}
._2{margin-left:-0.960000pt;}
._5{width:0.924060pt;}
._d{width:46.661718pt;}
._f{width:51.195654pt;}
._e{width:63.848081pt;}
._10{width:65.986943pt;}
._8{width:340.028398pt;}
._a{width:1459.950963pt;}
._b{width:2282.810057pt;}
._c{width:2284.281401pt;}
._4{width:2297.635009pt;}
.fsc{font-size:37.333333pt;}
.fs8{font-size:42.666670pt;}
.fs3{font-size:53.333334pt;}
.fse{font-size:58.666670pt;}
.fs7{font-size:64.000002pt;}
.fsa{font-size:64.000005pt;}
.fsd{font-size:69.333338pt;}
.fsb{font-size:71.111115pt;}
.fs2{font-size:74.666666pt;}
.fs14{font-size:78.933339pt;}
.fs15{font-size:89.600003pt;}
.fs5{font-size:90.666667pt;}
.fs9{font-size:96.000003pt;}
.fs13{font-size:98.666667pt;}
.fs4{font-size:99.733339pt;}
.fs10{font-size:101.333339pt;}
.fs11{font-size:105.600003pt;}
.fs6{font-size:106.666667pt;}
.fsf{font-size:111.466664pt;}
.fs12{font-size:118.400012pt;}
.fs1{font-size:128.000004pt;}
.fs0{font-size:192.000006pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:13.967055pt;}
.y38{bottom:59.299079pt;}
.y6b{bottom:59.672679pt;}
.y7e{bottom:60.296579pt;}
.y22{bottom:63.248179pt;}
.y55{bottom:63.352339pt;}
.y1d{bottom:73.611229pt;}
.y6a{bottom:80.472680pt;}
.y54{bottom:85.752360pt;}
.y37{bottom:91.299080pt;}
.y21{bottom:95.248180pt;}
.y7d{bottom:96.244930pt;}
.y1c{bottom:100.811250pt;}
.y69{bottom:101.272684pt;}
.ya5{bottom:103.595930pt;}
.y91{bottom:106.828930pt;}
.y53{bottom:108.152380pt;}
.ya4{bottom:121.515951pt;}
.y68{bottom:122.072684pt;}
.y36{bottom:123.299081pt;}
.y7c{bottom:125.044921pt;}
.y20{bottom:127.248183pt;}
.y1b{bottom:128.011261pt;}
.y90{bottom:128.140951pt;}
.y52{bottom:130.552411pt;}
.y7b{bottom:138.378257pt;}
.y67{bottom:143.192684pt;}
.ya3{bottom:145.486112pt;}
.y51{bottom:152.952442pt;}
.y1a{bottom:155.211272pt;}
.y35{bottom:155.299084pt;}
.y8f{bottom:155.851862pt;}
.y65{bottom:162.288592pt;}
.y7a{bottom:167.754257pt;}
.ya2{bottom:179.606633pt;}
.y23{bottom:182.167783pt;}
.y25{bottom:182.167883pt;}
.y19{bottom:182.411293pt;}
.y64{bottom:184.688588pt;}
.y6{bottom:190.079985pt;}
.y8e{bottom:194.759633pt;}
.ya1{bottom:197.526633pt;}
.y72{bottom:198.613580pt;}
.y26{bottom:199.316623pt;}
.y63{bottom:207.088594pt;}
.y18{bottom:209.611294pt;}
.y79{bottom:213.119587pt;}
.y8d{bottom:216.071654pt;}
.y71{bottom:216.213579pt;}
.ya0{bottom:221.496794pt;}
.y5d{bottom:224.915140pt;}
.y5{bottom:226.879989pt;}
.y62{bottom:229.488588pt;}
.y27{bottom:232.916624pt;}
.y7f{bottom:236.187655pt;}
.y17{bottom:236.811315pt;}
.y8c{bottom:243.782555pt;}
.y5c{bottom:247.315143pt;}
.y61{bottom:251.888587pt;}
.y9f{bottom:255.617305pt;}
.y16{bottom:264.011325pt;}
.y4{bottom:265.279985pt;}
.y28{bottom:268.916626pt;}
.y5b{bottom:269.715143pt;}
.y9e{bottom:273.537316pt;}
.y8b{bottom:282.690336pt;}
.y15{bottom:291.211336pt;}
.y9d{bottom:297.507476pt;}
.y45{bottom:297.948916pt;}
.y3d{bottom:297.948976pt;}
.y73{bottom:298.738933pt;}
.y29{bottom:299.545087pt;}
.y8a{bottom:304.002337pt;}
.y14{bottom:318.955357pt;}
.y44{bottom:320.348937pt;}
.y3c{bottom:320.348977pt;}
.y3{bottom:321.286827pt;}
.y5a{bottom:328.578254pt;}
.y2a{bottom:330.745088pt;}
.y9c{bottom:331.627988pt;}
.y89{bottom:331.713288pt;}
.y3b{bottom:342.748968pt;}
.y9b{bottom:349.547988pt;}
.y59{bottom:350.978253pt;}
.y24{bottom:359.226748pt;}
.y2b{bottom:360.345068pt;}
.y13{bottom:361.664679pt;}
.y70{bottom:361.905599pt;}
.y3a{bottom:365.148959pt;}
.y88{bottom:370.621019pt;}
.y2{bottom:373.126825pt;}
.y9a{bottom:373.518109pt;}
.y47{bottom:374.189459pt;}
.y6f{bottom:382.705599pt;}
.y12{bottom:388.864679pt;}
.y2c{bottom:389.145089pt;}
.y87{bottom:391.933010pt;}
.y46{bottom:396.589460pt;}
.y39{bottom:402.900720pt;}
.y6e{bottom:403.505604pt;}
.y43{bottom:405.534340pt;}
.y99{bottom:407.638640pt;}
.y58{bottom:408.387156pt;}
.y11{bottom:416.064670pt;}
.y50{bottom:417.302790pt;}
.y2d{bottom:419.285770pt;}
.y86{bottom:419.643950pt;}
.y6d{bottom:424.305604pt;}
.y1{bottom:424.966827pt;}
.y98{bottom:425.558641pt;}
.y42{bottom:427.934337pt;}
.y57{bottom:430.787159pt;}
.y4f{bottom:439.702781pt;}
.y78{bottom:442.788861pt;}
.y10{bottom:443.264671pt;}
.y97{bottom:443.478641pt;}
.y6c{bottom:445.425603pt;}
.y41{bottom:450.334335pt;}
.y2e{bottom:452.885761pt;}
.y56{bottom:453.187158pt;}
.y85{bottom:458.551682pt;}
.y4e{bottom:462.102776pt;}
.yb{bottom:466.039372pt;}
.y4a{bottom:467.153142pt;}
.y96{bottom:467.448762pt;}
.yf{bottom:470.464672pt;}
.y77{bottom:474.788862pt;}
.y84{bottom:479.863682pt;}
.y4d{bottom:484.502777pt;}
.y2f{bottom:485.685773pt;}
.y49{bottom:489.553145pt;}
.y40{bottom:495.976003pt;}
.ye{bottom:497.664669pt;}
.y33{bottom:498.239903pt;}
.y83{bottom:501.175678pt;}
.y95{bottom:501.569293pt;}
.y60{bottom:502.693563pt;}
.ya{bottom:504.439368pt;}
.y76{bottom:506.788863pt;}
.y4c{bottom:506.902776pt;}
.y1f{bottom:507.433597pt;}
.y34{bottom:509.298895pt;}
.y48{bottom:511.953145pt;}
.y30{bottom:516.085763pt;}
.y3f{bottom:518.376000pt;}
.y75{bottom:518.467824pt;}
.y94{bottom:519.489294pt;}
.y5f{bottom:521.893561pt;}
.yd{bottom:525.408674pt;}
.y32{bottom:527.039898pt;}
.y82{bottom:528.886609pt;}
.y4b{bottom:529.302774pt;}
.y1e{bottom:529.833596pt;}
.y3e{bottom:540.775998pt;}
.y5e{bottom:541.093560pt;}
.y9{bottom:542.839364pt;}
.y93{bottom:543.459417pt;}
.y74{bottom:550.467827pt;}
.y66{bottom:551.982366pt;}
.y31{bottom:555.839896pt;}
.yc{bottom:568.662005pt;}
.y81{bottom:569.925543pt;}
.y92{bottom:578.296745pt;}
.y80{bottom:580.399143pt;}
.y8{bottom:634.528108pt;}
.he{height:27.216146pt;}
.h4{height:38.880209pt;}
.h11{height:42.710940pt;}
.h9{height:46.656251pt;}
.h10{height:50.679691pt;}
.hf{height:54.359375pt;}
.h3{height:54.432291pt;}
.hb{height:55.104166pt;}
.h18{height:57.542712pt;}
.ha{height:58.588612pt;}
.h1a{height:65.231252pt;}
.h1b{height:65.318752pt;}
.h7{height:66.096354pt;}
.h15{height:69.890627pt;}
.hc{height:69.984377pt;}
.h17{height:71.832032pt;}
.h19{height:71.928386pt;}
.h5{height:72.608598pt;}
.h6{height:72.705994pt;}
.h14{height:76.982815pt;}
.h8{height:77.760417pt;}
.h13{height:81.259633pt;}
.hd{height:82.656255pt;}
.h16{height:86.198446pt;}
.h2{height:93.312503pt;}
.h1{height:139.781254pt;}
.h12{height:159.044588pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:9.297971pt;}
.x19{left:10.755719pt;}
.x1b{left:32.192671pt;}
.x9{left:35.771394pt;}
.x43{left:37.171510pt;}
.x45{left:45.994058pt;}
.x3{left:48.000002pt;}
.x46{left:51.705713pt;}
.x4d{left:60.775946pt;}
.x4b{left:63.691115pt;}
.xa{left:66.937932pt;}
.x55{left:68.530182pt;}
.x1{left:72.000002pt;}
.x48{left:74.057722pt;}
.x4e{left:77.221258pt;}
.x18{left:82.609243pt;}
.x8{left:87.002313pt;}
.x44{left:88.485309pt;}
.x4a{left:89.621299pt;}
.x4c{left:92.222060pt;}
.x5c{left:100.000003pt;}
.x4{left:101.805911pt;}
.x5d{left:103.701241pt;}
.x47{left:105.171210pt;}
.x49{left:110.882868pt;}
.x5e{left:150.300175pt;}
.x1c{left:164.120315pt;}
.x5f{left:172.833396pt;}
.x52{left:222.652717pt;}
.x4f{left:258.600008pt;}
.x27{left:270.596652pt;}
.x28{left:275.821261pt;}
.x32{left:279.129011pt;}
.x30{left:281.729772pt;}
.x33{left:283.296606pt;}
.x2f{left:285.883703pt;}
.x26{left:311.621280pt;}
.x31{left:312.866034pt;}
.x34{left:315.439467pt;}
.x29{left:316.641120pt;}
.x51{left:327.641710pt;}
.x53{left:363.824822pt;}
.x12{left:402.404953pt;}
.xc{left:406.022294pt;}
.x54{left:424.217838pt;}
.xb{left:441.581042pt;}
.x2d{left:443.581186pt;}
.x2b{left:447.540544pt;}
.xd{left:460.818315pt;}
.x1f{left:466.983936pt;}
.x2e{left:470.563517pt;}
.x2a{left:474.500101pt;}
.x2c{left:476.577065pt;}
.x1d{left:498.846486pt;}
.x1e{left:501.801076pt;}
.x20{left:561.823188pt;}
.x11{left:564.739918pt;}
.x35{left:598.016041pt;}
.x36{left:602.183636pt;}
.x37{left:608.938328pt;}
.x13{left:669.219721pt;}
.x2{left:713.866690pt;}
.x42{left:747.999625pt;}
.x3f{left:755.783691pt;}
.x41{left:757.846992pt;}
.x16{left:761.736814pt;}
.x3e{left:767.175118pt;}
.x40{left:770.982979pt;}
.x15{left:772.418455pt;}
.x17{left:780.432127pt;}
.x14{left:793.021725pt;}
.x56{left:797.757926pt;}
.xe{left:823.283449pt;}
.x25{left:837.541926pt;}
.xf{left:856.369417pt;}
.x5{left:875.285668pt;}
.x6{left:879.027238pt;}
.x23{left:886.053133pt;}
.x10{left:890.484288pt;}
.x57{left:892.229112pt;}
.x7{left:899.619005pt;}
.x22{left:912.006534pt;}
.x58{left:916.794339pt;}
.x21{left:918.664096pt;}
.x24{left:925.354496pt;}
.x5a{left:935.135160pt;}
.x59{left:936.049290pt;}
.x38{left:964.510160pt;}
.x50{left:1000.804304pt;}
.x3a{left:1014.060545pt;}
.x3c{left:1016.123801pt;}
.x39{left:1069.178314pt;}
.x3b{left:1074.206004pt;}
.x3d{left:1079.402925pt;}
.x5b{left:1217.898741pt;}
}




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