
    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_43b3f7c38c3879a821acee32.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_4ada20e70091ea046540b8c6.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5e5eb242f2aa7c2d15f28502.woff')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v1{vertical-align:-57.723257px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:64.800002px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.002835px;}
.ls0{letter-spacing:0.060480px;}
.ls1{letter-spacing:0.357120px;}
.ls2{letter-spacing:0.357188px;}
.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;}
}
.ws5{word-spacing:-46.536000px;}
.ws1{word-spacing:-39.888001px;}
.ws4{word-spacing:-22.527757px;}
.ws2{word-spacing:-19.944001px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:114.579526px;}
.ws8{word-spacing:161.152372px;}
.ws6{word-spacing:220.564663px;}
.ws3{word-spacing:348.357476px;}
._d{margin-left:-720.697973px;}
._7{margin-left:-18.480000px;}
._1{margin-left:-14.520001px;}
._3{margin-left:-11.880000px;}
._a{margin-left:-10.656000px;}
._8{margin-left:-9.240000px;}
._4{margin-left:-7.992000px;}
._12{margin-left:-6.630336px;}
._b{margin-left:-5.256000px;}
._6{margin-left:-3.024000px;}
._2{margin-left:-1.944000px;}
._0{width:1.423170px;}
._10{width:2.890125px;}
._f{width:6.213330px;}
._e{width:10.514057px;}
._5{width:24.008242px;}
._18{width:34.514088px;}
._9{width:36.014064px;}
._11{width:74.995323px;}
._14{width:154.803024px;}
._c{width:159.145910px;}
._15{width:191.026415px;}
._13{width:199.199738px;}
._17{width:201.354149px;}
._16{width:203.365582px;}
.fc9{color:rgb(0,39,76);}
.fc8{color:transparent;}
.fc6{color:rgb(154,51,36);}
.fc7{color:rgb(87,82,148);}
.fc5{color:rgb(0,178,169);}
.fc4{color:rgb(101,90,82);}
.fc2{color:rgb(152,156,151);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(255,192,0);}
.fs6{font-size:72.000002px;}
.fs2{font-size:108.000003px;}
.fs7{font-size:120.000001px;}
.fs5{font-size:144.000005px;}
.fs4{font-size:167.999999px;}
.fs8{font-size:216.000007px;}
.fs3{font-size:240.000002px;}
.fs0{font-size:264.000014px;}
.fs1{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y91{bottom:25.778000px;}
.ybb{bottom:35.549199px;}
.y83{bottom:41.329933px;}
.y76{bottom:43.249993px;}
.y21{bottom:45.193813px;}
.y90{bottom:58.178001px;}
.y3c{bottom:59.003312px;}
.y48{bottom:61.213881px;}
.yae{bottom:63.112566px;}
.y65{bottom:67.693892px;}
.y3d{bottom:67.770257px;}
.yba{bottom:74.429189px;}
.y59{bottom:76.213923px;}
.y75{bottom:77.809960px;}
.y82{bottom:86.689946px;}
.y8f{bottom:90.578002px;}
.y20{bottom:92.869886px;}
.y3b{bottom:96.399438px;}
.yc7{bottom:96.409181px;}
.ya4{bottom:97.009301px;}
.y47{bottom:100.093882px;}
.y5{bottom:107.954865px;}
.y9e{bottom:113.602455px;}
.y64{bottom:114.073909px;}
.y58{bottom:115.093924px;}
.y74{bottom:119.869965px;}
.yb9{bottom:120.809183px;}
.yad{bottom:122.176542px;}
.y8e{bottom:122.978003px;}
.y14{bottom:127.309928px;}
.ya3{bottom:129.409302px;}
.y81{bottom:132.049947px;}
.y9d{bottom:146.002468px;}
.y46{bottom:146.473899px;}
.y1f{bottom:151.933861px;}
.y73{bottom:154.429967px;}
.y8d{bottom:155.377948px;}
.yc6{bottom:155.473190px;}
.y35{bottom:156.141058px;}
.yb8{bottom:159.689184px;}
.y63{bottom:160.453869px;}
.ya2{bottom:161.809292px;}
.y57{bottom:162.769929px;}
.y7{bottom:162.844348px;}
.yac{bottom:168.556536px;}
.y33{bottom:169.407947px;}
.y80{bottom:174.817892px;}
.y9c{bottom:178.402469px;}
.y13{bottom:187.669960px;}
.y8c{bottom:190.369983px;}
.y45{bottom:192.853893px;}
.ya1{bottom:194.209293px;}
.y72{bottom:196.489949px;}
.y1e{bottom:198.313855px;}
.y6{bottom:200.104349px;}
.yc5{bottom:201.853184px;}
.y62{bottom:206.833852px;}
.yb7{bottom:207.365178px;}
.y56{bottom:208.129931px;}
.y9b{bottom:210.802470px;}
.yab{bottom:214.936530px;}
.y32{bottom:230.546130px;}
.y71{bottom:231.049950px;}
.y44{bottom:231.733894px;}
.y8b{bottom:235.730007px;}
.y1d{bottom:237.193857px;}
.y12{bottom:246.733969px;}
.yc4{bottom:249.529190px;}
.yb6{bottom:252.725146px;}
.y61{bottom:254.509880px;}
.y36{bottom:261.735744px;}
.yaa{bottom:262.612512px;}
.y29{bottom:266.375135px;}
.y55{bottom:267.193895px;}
.y4{bottom:271.443763px;}
.y70{bottom:274.261933px;}
.y7f{bottom:274.609918px;}
.y43{bottom:279.409933px;}
.y1c{bottom:283.573839px;}
.y4e{bottom:286.287024px;}
.y28{bottom:287.975137px;}
.y11{bottom:293.113952px;}
.y23{bottom:297.875473px;}
.y60{bottom:299.869892px;}
.y54{bottom:306.073896px;}
.ya9{bottom:307.972514px;}
.yc3{bottom:308.593188px;}
.y8a{bottom:310.897942px;}
.yb5{bottom:311.789144px;}
.y6f{bottom:314.581934px;}
.y4d{bottom:318.687026px;}
.y98{bottom:319.379924px;}
.y22{bottom:319.475475px;}
.y7e{bottom:319.969931px;}
.y34{bottom:320.390579px;}
.ya0{bottom:321.166683px;}
.y1b{bottom:322.453841px;}
.y42{bottom:324.769934px;}
.y10{bottom:331.993953px;}
.y9f{bottom:337.366684px;}
.y89{bottom:343.297920px;}
.yb4{bottom:350.669145px;}
.y97{bottom:351.779925px;}
.y53{bottom:353.749935px;}
.y6e{bottom:354.901935px;}
.yc2{bottom:354.973193px;}
.y3{bottom:356.403788px;}
.y5f{bottom:358.933902px;}
.y7d{bottom:365.329943px;}
.ya8{bottom:367.036501px;}
.y1a{bottom:370.129868px;}
.y88{bottom:375.697899px;}
.yf{bottom:378.373936px;}
.y4a{bottom:379.080009px;}
.y41{bottom:383.833899px;}
.y96{bottom:384.179915px;}
.y31{bottom:384.942339px;}
.yb3{bottom:397.049151px;}
.y5e{bottom:397.813903px;}
.y52{bottom:399.109914px;}
.yc1{bottom:401.353198px;}
.y2c{bottom:402.089106px;}
.y6d{bottom:409.069900px;}
.y7c{bottom:410.689900px;}
.y49{bottom:411.480010px;}
.y4c{bottom:412.597326px;}
.ya7{bottom:413.416506px;}
.y95{bottom:416.579905px;}
.ye{bottom:417.253937px;}
.y19{bottom:429.193912px;}
.y40{bottom:430.213927px;}
.y6c{bottom:443.629912px;}
.y5d{bottom:444.193908px;}
.y27{bottom:444.513130px;}
.yb2{bottom:444.725145px;}
.y4b{bottom:444.997327px;}
.yc0{bottom:447.733203px;}
.ya6{bottom:452.296507px;}
.y7b{bottom:453.457924px;}
.y87{bottom:456.049901px;}
.y51{bottom:458.173901px;}
.y2{bottom:464.403791px;}
.yd{bottom:464.929954px;}
.y26{bottom:466.113132px;}
.y9a{bottom:474.793741px;}
.y18{bottom:475.573917px;}
.y3f{bottom:476.593932px;}
.y6b{bottom:478.189913px;}
.yb1{bottom:490.085138px;}
.y5c{bottom:490.573914px;}
.ybf{bottom:495.409201px;}
.y2b{bottom:497.814845px;}
.ya5{bottom:499.972505px;}
.y50{bottom:504.553918px;}
.y99{bottom:507.193745px;}
.y2a{bottom:519.414846px;}
.y6a{bottom:520.249929px;}
.y3e{bottom:522.973937px;}
.y17{bottom:523.249911px;}
.yc{bottom:525.289941px;}
.y86{bottom:531.217926px;}
.y5b{bottom:536.953919px;}
.y30{bottom:538.330334px;}
.y4f{bottom:543.433908px;}
.y7a{bottom:553.249927px;}
.y69{bottom:554.809931px;}
.y94{bottom:555.649805px;}
.y25{bottom:557.323274px;}
.y38{bottom:562.149375px;}
.y85{bottom:563.617927px;}
.y1{bottom:566.643772px;}
.yb{bottom:570.649931px;}
.y24{bottom:578.923276px;}
.y2f{bottom:581.545691px;}
.y16{bottom:582.313909px;}
.y5a{bottom:583.333924px;}
.y84{bottom:596.017928px;}
.y68{bottom:596.869924px;}
.y79{bottom:598.609917px;}
.ybd{bottom:602.825956px;}
.yb0{bottom:603.039965px;}
.y93{bottom:616.009798px;}
.y2d{bottom:627.838284px;}
.y15{bottom:628.693914px;}
.ya{bottom:631.009918px;}
.y67{bottom:640.081918px;}
.y78{bottom:643.969918px;}
.y3a{bottom:644.557967px;}
.ybc{bottom:653.225951px;}
.yaf{bottom:653.439959px;}
.y2e{bottom:655.640601px;}
.y37{bottom:667.976508px;}
.y39{bottom:674.351152px;}
.y92{bottom:676.369793px;}
.y9{bottom:676.369912px;}
.y66{bottom:680.401912px;}
.y77{bottom:686.737912px;}
.y8{bottom:750.770432px;}
.ybe{bottom:752.714436px;}
.h7{height:52.453127px;}
.h3{height:78.679690px;}
.h8{height:87.421876px;}
.h6{height:104.906253px;}
.h5{height:122.390625px;}
.h9{height:143.479692px;}
.ha{height:143.479706px;}
.hb{height:157.253911px;}
.h4{height:174.726564px;}
.h1{height:192.328136px;}
.h2{height:262.265633px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x4{left:10.126181px;}
.x9{left:14.723195px;}
.x2f{left:28.745670px;}
.x5{left:35.043610px;}
.x37{left:50.797028px;}
.x1e{left:52.144761px;}
.x36{left:54.521394px;}
.x6{left:55.745671px;}
.x15{left:63.006530px;}
.x30{left:67.517157px;}
.x14{left:78.523858px;}
.x31{left:82.745672px;}
.x7{left:88.142156px;}
.x46{left:92.107357px;}
.x8{left:109.745673px;}
.x3f{left:110.849004px;}
.x34{left:116.495673px;}
.x12{left:137.963940px;}
.x13{left:144.472240px;}
.x1{left:145.527997px;}
.x35{left:150.187561px;}
.x3d{left:167.128883px;}
.x3{left:168.874959px;}
.x3e{left:176.146461px;}
.xa{left:180.791775px;}
.x47{left:183.098121px;}
.xb{left:187.300076px;}
.x3b{left:200.166970px;}
.x3c{left:206.910378px;}
.x16{left:221.282414px;}
.x20{left:255.497997px;}
.x2b{left:268.359696px;}
.x2c{left:273.613358px;}
.x1d{left:297.084489px;}
.x2d{left:317.394228px;}
.x2e{left:322.647891px;}
.x45{left:346.594482px;}
.xc{left:358.851831px;}
.xd{left:365.360132px;}
.x1f{left:404.152374px;}
.x29{left:416.704597px;}
.x2a{left:421.958259px;}
.x10{left:477.248353px;}
.x23{left:481.429324px;}
.x11{left:483.756654px;}
.x17{left:512.230700px;}
.x21{left:560.489579px;}
.x1b{left:562.041314px;}
.x39{left:565.770056px;}
.x24{left:580.196171px;}
.xe{left:582.300328px;}
.x1c{left:583.920877px;}
.xf{left:588.808629px;}
.x1a{left:650.644562px;}
.x22{left:654.213737px;}
.x18{left:663.524383px;}
.x40{left:684.744659px;}
.x19{left:700.997988px;}
.x41{left:703.828702px;}
.x43{left:710.766143px;}
.x32{left:715.167248px;}
.x42{left:725.057224px;}
.x44{left:731.807225px;}
.x38{left:739.823064px;}
.x33{left:774.563734px;}
.x25{left:795.388446px;}
.x2{left:814.374566px;}
.x26{left:816.090506px;}
.x27{left:848.486992px;}
.x28{left:870.090508px;}
.x3a{left:1305.252157px;}
@media print{
.v1{vertical-align:-51.309562pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:57.600002pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.002520pt;}
.ls0{letter-spacing:0.053760pt;}
.ls1{letter-spacing:0.317440pt;}
.ls2{letter-spacing:0.317500pt;}
.ws5{word-spacing:-41.365333pt;}
.ws1{word-spacing:-35.456001pt;}
.ws4{word-spacing:-20.024673pt;}
.ws2{word-spacing:-17.728001pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:101.848467pt;}
.ws8{word-spacing:143.246553pt;}
.ws6{word-spacing:196.057478pt;}
.ws3{word-spacing:309.651090pt;}
._d{margin-left:-640.620420pt;}
._7{margin-left:-16.426667pt;}
._1{margin-left:-12.906667pt;}
._3{margin-left:-10.560000pt;}
._a{margin-left:-9.472000pt;}
._8{margin-left:-8.213333pt;}
._4{margin-left:-7.104000pt;}
._12{margin-left:-5.893632pt;}
._b{margin-left:-4.672000pt;}
._6{margin-left:-2.688000pt;}
._2{margin-left:-1.728000pt;}
._0{width:1.265040pt;}
._10{width:2.569000pt;}
._f{width:5.522960pt;}
._e{width:9.345828pt;}
._5{width:21.340660pt;}
._18{width:30.679189pt;}
._9{width:32.012501pt;}
._11{width:66.662510pt;}
._14{width:137.602688pt;}
._c{width:141.463031pt;}
._15{width:169.801257pt;}
._13{width:177.066434pt;}
._17{width:178.981466pt;}
._16{width:180.769406pt;}
.fs6{font-size:64.000002pt;}
.fs2{font-size:96.000003pt;}
.fs7{font-size:106.666667pt;}
.fs5{font-size:128.000004pt;}
.fs4{font-size:149.333333pt;}
.fs8{font-size:192.000006pt;}
.fs3{font-size:213.333335pt;}
.fs0{font-size:234.666680pt;}
.fs1{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:22.913778pt;}
.ybb{bottom:31.599288pt;}
.y83{bottom:36.737718pt;}
.y76{bottom:38.444438pt;}
.y21{bottom:40.172278pt;}
.y90{bottom:51.713779pt;}
.y3c{bottom:52.447389pt;}
.y48{bottom:54.412339pt;}
.yae{bottom:56.100059pt;}
.y65{bottom:60.172349pt;}
.y3d{bottom:60.240229pt;}
.yba{bottom:66.159279pt;}
.y59{bottom:67.745709pt;}
.y75{bottom:69.164409pt;}
.y82{bottom:77.057729pt;}
.y8f{bottom:80.513780pt;}
.y20{bottom:82.551010pt;}
.y3b{bottom:85.688390pt;}
.yc7{bottom:85.697050pt;}
.ya4{bottom:86.230490pt;}
.y47{bottom:88.972340pt;}
.y5{bottom:95.959880pt;}
.y9e{bottom:100.979960pt;}
.y64{bottom:101.399030pt;}
.y58{bottom:102.305710pt;}
.y74{bottom:106.551080pt;}
.yb9{bottom:107.385940pt;}
.yad{bottom:108.601370pt;}
.y8e{bottom:109.313780pt;}
.y14{bottom:113.164381pt;}
.ya3{bottom:115.030491pt;}
.y81{bottom:117.377731pt;}
.y9d{bottom:129.779971pt;}
.y46{bottom:130.199021pt;}
.y1f{bottom:135.052321pt;}
.y73{bottom:137.271081pt;}
.y8d{bottom:138.113731pt;}
.yc6{bottom:138.198391pt;}
.y35{bottom:138.792051pt;}
.yb8{bottom:141.945942pt;}
.y63{bottom:142.625662pt;}
.ya2{bottom:143.830482pt;}
.y57{bottom:144.684382pt;}
.y7{bottom:144.750532pt;}
.yac{bottom:149.828032pt;}
.y33{bottom:150.584842pt;}
.y80{bottom:155.393682pt;}
.y9c{bottom:158.579972pt;}
.y13{bottom:166.817742pt;}
.y8c{bottom:169.217762pt;}
.y45{bottom:171.425682pt;}
.ya1{bottom:172.630482pt;}
.y72{bottom:174.657733pt;}
.y1e{bottom:176.278983pt;}
.y6{bottom:177.870533pt;}
.yc5{bottom:179.425053pt;}
.y62{bottom:183.852313pt;}
.yb7{bottom:184.324603pt;}
.y56{bottom:185.004383pt;}
.y9b{bottom:187.379973pt;}
.yab{bottom:191.054693pt;}
.y32{bottom:204.929894pt;}
.y71{bottom:205.377734pt;}
.y44{bottom:205.985684pt;}
.y8b{bottom:209.537784pt;}
.y1d{bottom:210.838984pt;}
.y12{bottom:219.319084pt;}
.yc4{bottom:221.803724pt;}
.yb6{bottom:224.644574pt;}
.y61{bottom:226.231004pt;}
.y36{bottom:232.653994pt;}
.yaa{bottom:233.433344pt;}
.y29{bottom:236.777898pt;}
.y55{bottom:237.505685pt;}
.y4{bottom:241.283345pt;}
.y70{bottom:243.788385pt;}
.y7f{bottom:244.097705pt;}
.y43{bottom:248.364385pt;}
.y1c{bottom:252.065635pt;}
.y4e{bottom:254.477355pt;}
.y28{bottom:255.977899pt;}
.y11{bottom:260.545735pt;}
.y23{bottom:264.778198pt;}
.y60{bottom:266.551015pt;}
.y54{bottom:272.065686pt;}
.ya9{bottom:273.753346pt;}
.yc3{bottom:274.305056pt;}
.y8a{bottom:276.353726pt;}
.yb5{bottom:277.145906pt;}
.y6f{bottom:279.628386pt;}
.y4d{bottom:283.277356pt;}
.y98{bottom:283.893266pt;}
.y22{bottom:283.978200pt;}
.y7e{bottom:284.417716pt;}
.y34{bottom:284.791626pt;}
.ya0{bottom:285.481496pt;}
.y1b{bottom:286.625636pt;}
.y42{bottom:288.684386pt;}
.y10{bottom:295.105736pt;}
.y9f{bottom:299.881497pt;}
.y89{bottom:305.153707pt;}
.yb4{bottom:311.705907pt;}
.y97{bottom:312.693267pt;}
.y53{bottom:314.444387pt;}
.y6e{bottom:315.468387pt;}
.yc2{bottom:315.531727pt;}
.y3{bottom:316.803367pt;}
.y5f{bottom:319.052357pt;}
.y7d{bottom:324.737727pt;}
.ya8{bottom:326.254667pt;}
.y1a{bottom:329.004327pt;}
.y88{bottom:333.953688pt;}
.yf{bottom:336.332388pt;}
.y4a{bottom:336.960008pt;}
.y41{bottom:341.185688pt;}
.y96{bottom:341.493258pt;}
.y31{bottom:342.170968pt;}
.yb3{bottom:352.932578pt;}
.y5e{bottom:353.612358pt;}
.y52{bottom:354.764368pt;}
.yc1{bottom:356.758398pt;}
.y2c{bottom:357.412538pt;}
.y6d{bottom:363.617689pt;}
.y7c{bottom:365.057689pt;}
.y49{bottom:365.760009pt;}
.y4c{bottom:366.753179pt;}
.ya7{bottom:367.481339pt;}
.y95{bottom:370.293249pt;}
.ye{bottom:370.892389pt;}
.y19{bottom:381.505699pt;}
.y40{bottom:382.412379pt;}
.y6c{bottom:394.337700pt;}
.y5d{bottom:394.839030pt;}
.y27{bottom:395.122783pt;}
.yb2{bottom:395.311240pt;}
.y4b{bottom:395.553180pt;}
.yc0{bottom:397.985070pt;}
.ya6{bottom:402.041340pt;}
.y7b{bottom:403.073710pt;}
.y87{bottom:405.377690pt;}
.y51{bottom:407.265690pt;}
.y2{bottom:412.803370pt;}
.yd{bottom:413.271070pt;}
.y26{bottom:414.322784pt;}
.y9a{bottom:422.038880pt;}
.y18{bottom:422.732370pt;}
.y3f{bottom:423.639051pt;}
.y6b{bottom:425.057701pt;}
.yb1{bottom:435.631234pt;}
.y5c{bottom:436.065701pt;}
.ybf{bottom:440.363734pt;}
.y2b{bottom:442.502084pt;}
.ya5{bottom:444.420004pt;}
.y50{bottom:448.492371pt;}
.y99{bottom:450.838884pt;}
.y2a{bottom:461.702086pt;}
.y6a{bottom:462.444382pt;}
.y3e{bottom:464.865722pt;}
.y17{bottom:465.111032pt;}
.yc{bottom:466.924392pt;}
.y86{bottom:472.193712pt;}
.y5b{bottom:477.292372pt;}
.y30{bottom:478.515852pt;}
.y4f{bottom:483.052362pt;}
.y7a{bottom:491.777713pt;}
.y69{bottom:493.164383pt;}
.y94{bottom:493.910938pt;}
.y25{bottom:495.398466pt;}
.y38{bottom:499.688333pt;}
.y85{bottom:500.993713pt;}
.y1{bottom:503.683353pt;}
.yb{bottom:507.244383pt;}
.y24{bottom:514.598467pt;}
.y2f{bottom:516.929504pt;}
.y16{bottom:517.612364pt;}
.y5a{bottom:518.519044pt;}
.y84{bottom:529.793714pt;}
.y68{bottom:530.551044pt;}
.y79{bottom:532.097704pt;}
.ybd{bottom:535.845294pt;}
.yb0{bottom:536.035524pt;}
.y93{bottom:547.564264pt;}
.y2d{bottom:558.078475pt;}
.y15{bottom:558.839035pt;}
.ya{bottom:560.897705pt;}
.y67{bottom:568.961705pt;}
.y78{bottom:572.417705pt;}
.y3a{bottom:572.940415pt;}
.ybc{bottom:580.645290pt;}
.yaf{bottom:580.835520pt;}
.y2e{bottom:582.791646pt;}
.y37{bottom:593.756896pt;}
.y39{bottom:599.423246pt;}
.y92{bottom:601.217594pt;}
.y9{bottom:601.217699pt;}
.y66{bottom:604.801699pt;}
.y77{bottom:610.433699pt;}
.y8{bottom:667.351495pt;}
.ybe{bottom:669.079498pt;}
.h7{height:46.625001pt;}
.h3{height:69.937502pt;}
.h8{height:77.708334pt;}
.h6{height:93.250003pt;}
.h5{height:108.791666pt;}
.h9{height:127.537504pt;}
.ha{height:127.537516pt;}
.hb{height:139.781254pt;}
.h4{height:155.312501pt;}
.h1{height:170.958343pt;}
.h2{height:233.125007pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x4{left:9.001050pt;}
.x9{left:13.087284pt;}
.x2f{left:25.551707pt;}
.x5{left:31.149876pt;}
.x37{left:45.152913pt;}
.x1e{left:46.350898pt;}
.x36{left:48.463462pt;}
.x6{left:49.551708pt;}
.x15{left:56.005805pt;}
.x30{left:60.015251pt;}
.x14{left:69.798985pt;}
.x31{left:73.551708pt;}
.x7{left:78.348584pt;}
.x46{left:81.873207pt;}
.x8{left:97.551709pt;}
.x3f{left:98.532448pt;}
.x34{left:103.551709pt;}
.x12{left:122.634613pt;}
.x13{left:128.419769pt;}
.x1{left:129.358219pt;}
.x35{left:133.500054pt;}
.x3d{left:148.559007pt;}
.x3{left:150.111075pt;}
.x3e{left:156.574632pt;}
.xa{left:160.703800pt;}
.x47{left:162.753885pt;}
.xb{left:166.488956pt;}
.x3b{left:177.926196pt;}
.x3c{left:183.920336pt;}
.x16{left:196.695479pt;}
.x20{left:227.109330pt;}
.x2b{left:238.541952pt;}
.x2c{left:243.211874pt;}
.x1d{left:264.075101pt;}
.x2d{left:282.128203pt;}
.x2e{left:286.798125pt;}
.x45{left:308.083984pt;}
.xc{left:318.979405pt;}
.xd{left:324.764561pt;}
.x1f{left:359.246554pt;}
.x29{left:370.404086pt;}
.x2a{left:375.074008pt;}
.x10{left:424.220759pt;}
.x23{left:427.937177pt;}
.x11{left:430.005915pt;}
.x17{left:455.316178pt;}
.x21{left:498.212959pt;}
.x1b{left:499.592279pt;}
.x39{left:502.906716pt;}
.x24{left:515.729930pt;}
.xe{left:517.600292pt;}
.x1c{left:519.040780pt;}
.xf{left:523.385448pt;}
.x1a{left:578.350722pt;}
.x22{left:581.523322pt;}
.x18{left:589.799452pt;}
.x40{left:608.661919pt;}
.x19{left:623.109323pt;}
.x41{left:625.625513pt;}
.x43{left:631.792127pt;}
.x32{left:635.704220pt;}
.x42{left:644.495311pt;}
.x44{left:650.495311pt;}
.x38{left:657.620501pt;}
.x33{left:688.501097pt;}
.x25{left:707.011952pt;}
.x2{left:723.888503pt;}
.x26{left:725.413783pt;}
.x27{left:754.210659pt;}
.x28{left:773.413785pt;}
.x3a{left:1160.224139pt;}
}




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