
    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_c704faa1fa6a6152023a0df2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_5e5ca9ddba98cf4f6bdb8f36.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.178000;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_fa423fd3792ff4917904f45c.woff2')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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_356b7c07185a9802a3e13c5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913574;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_db1dc4129fd8298f30921215.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1d18f087363235560720a8db.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.891602;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_596b507174a311d1c5a4290a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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);}
.v1{vertical-align:-74.326655px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:50.399988px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012600px;}
.ls7{letter-spacing:0.012690px;}
.ls2{letter-spacing:0.073469px;}
.ls5{letter-spacing:0.086821px;}
.ls3{letter-spacing:40.486252px;}
.ls4{letter-spacing:107.986253px;}
.ls1{letter-spacing:108.000426px;}
.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:-35.834401px;}
.wsb{word-spacing:-34.243327px;}
.ws5{word-spacing:-29.916001px;}
.ws9{word-spacing:-26.592002px;}
.ws13{word-spacing:-19.944001px;}
.wsa{word-spacing:-16.620000px;}
.ws4{word-spacing:-13.296001px;}
.ws12{word-spacing:-0.120000px;}
.ws2{word-spacing:-0.108000px;}
.ws8{word-spacing:-0.084000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:78.084425px;}
.ws7{word-spacing:80.045687px;}
.wsc{word-spacing:81.394260px;}
.wsd{word-spacing:81.394278px;}
.wse{word-spacing:96.282508px;}
.ws6{word-spacing:133.650131px;}
.ws11{word-spacing:255.845878px;}
.wsf{word-spacing:299.665216px;}
.ws10{word-spacing:324.253503px;}
._12{margin-left:-10.632002px;}
._b{margin-left:-7.992000px;}
._5{margin-left:-5.940000px;}
._0{margin-left:-3.876000px;}
._1{margin-left:-2.244000px;}
._3{margin-left:-1.020000px;}
._2{width:1.632000px;}
._4{width:3.264000px;}
._a{width:4.536000px;}
._c{width:40.486252px;}
._7{width:51.810047px;}
._6{width:108.000426px;}
._8{width:128.904844px;}
._10{width:159.983876px;}
._9{width:233.769922px;}
._11{width:255.262018px;}
._f{width:410.257189px;}
._d{width:534.324422px;}
._e{width:1775.586117px;}
.fc9{color:rgb(60,120,216);}
.fc8{color:rgb(106,168,79);}
.fc7{color:rgb(204,0,0);}
.fc6{color:transparent;}
.fc5{color:rgb(201,170,74);}
.fc4{color:rgb(0,151,167);}
.fc2{color:rgb(243,244,239);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000003px;}
.fs4{font-size:60.000000px;}
.fsd{font-size:72.000002px;}
.fs9{font-size:84.000000px;}
.fs7{font-size:96.000006px;}
.fs5{font-size:99.899999px;}
.fs1{font-size:108.000003px;}
.fsc{font-size:120.000001px;}
.fsb{font-size:132.486606px;}
.fs0{font-size:144.000005px;}
.fsa{font-size:144.486612px;}
.fs3{font-size:151.200005px;}
.fs2{font-size:204.000001px;}
.fse{font-size:228.000013px;}
.fs8{font-size:720.000023px;}
.y0{bottom:0.000000px;}
.y47{bottom:9.186821px;}
.y2a{bottom:11.768358px;}
.y5a{bottom:12.394365px;}
.y1e{bottom:22.982921px;}
.y43{bottom:24.946519px;}
.y75{bottom:27.924248px;}
.y7{bottom:28.082245px;}
.y7e{bottom:30.013452px;}
.y46{bottom:39.426833px;}
.y9e{bottom:46.271581px;}
.y91{bottom:50.772211px;}
.y61{bottom:55.244581px;}
.y74{bottom:55.284260px;}
.y31{bottom:58.069112px;}
.y1c{bottom:59.593561px;}
.y9a{bottom:65.255956px;}
.y9d{bottom:67.871581px;}
.y54{bottom:69.044574px;}
.y42{bottom:75.575852px;}
.y14{bottom:80.536281px;}
.y90{bottom:81.012212px;}
.y55{bottom:81.769371px;}
.y73{bottom:82.644272px;}
.y30{bottom:83.269110px;}
.y59{bottom:84.044582px;}
.y45{bottom:84.666834px;}
.y65{bottom:85.919867px;}
.y9c{bottom:89.471579px;}
.y86{bottom:91.312415px;}
.y1b{bottom:91.993562px;}
.y53{bottom:97.844575px;}
.y2d{bottom:104.917045px;}
.y41{bottom:105.815853px;}
.y99{bottom:106.655946px;}
.y7d{bottom:106.932269px;}
.y72{bottom:110.004284px;}
.y9b{bottom:111.071576px;}
.y8f{bottom:111.252224px;}
.y58{bottom:112.844583px;}
.y13{bottom:112.936282px;}
.y44{bottom:114.906832px;}
.y85{bottom:116.512414px;}
.y27{bottom:118.208741px;}
.y1a{bottom:124.393570px;}
.y64{bottom:131.627752px;}
.y40{bottom:136.055876px;}
.y71{bottom:137.364285px;}
.y8e{bottom:141.492225px;}
.y52{bottom:141.644584px;}
.y7c{bottom:142.932270px;}
.y12{bottom:145.336260px;}
.y98{bottom:148.055937px;}
.y26{bottom:150.608730px;}
.y60{bottom:156.644626px;}
.y19{bottom:156.793576px;}
.y48{bottom:162.781186px;}
.y84{bottom:163.307416px;}
.y70{bottom:165.408308px;}
.y57{bottom:170.444607px;}
.y51{bottom:170.444630px;}
.y8d{bottom:171.732249px;}
.y7b{bottom:176.052271px;}
.y63{bottom:177.335615px;}
.y11{bottom:177.736284px;}
.y3f{bottom:181.295896px;}
.y5f{bottom:185.444638px;}
.y83{bottom:188.507417px;}
.ya1{bottom:193.801352px;}
.y6f{bottom:196.188309px;}
.y25{bottom:198.008751px;}
.y50{bottom:199.244619px;}
.y3{bottom:199.426352px;}
.y8c{bottom:201.972261px;}
.y36{bottom:204.512466px;}
.y1d{bottom:204.603996px;}
.y97{bottom:207.455916px;}
.y10{bottom:210.136285px;}
.y7a{bottom:210.432272px;}
.y3e{bottom:211.535920px;}
.y82{bottom:213.707415px;}
.y56{bottom:214.244605px;}
.y5e{bottom:214.244627px;}
.ya0{bottom:226.201347px;}
.y2{bottom:231.826347px;}
.y8b{bottom:232.212273px;}
.y35{bottom:236.912456px;}
.y6e{bottom:241.284296px;}
.y3d{bottom:241.775932px;}
.y62{bottom:242.303493px;}
.y4f{bottom:243.044617px;}
.y24{bottom:245.408748px;}
.y79{bottom:246.432273px;}
.y5d{bottom:258.044625px;}
.y81{bottom:260.502397px;}
.y9f{bottom:260.761351px;}
.y8a{bottom:262.452274px;}
.y1{bottom:266.386351px;}
.y96{bottom:266.855907px;}
.y6d{bottom:268.644285px;}
.y34{bottom:269.312457px;}
.y4e{bottom:271.844629px;}
.y3c{bottom:272.015933px;}
.yf{bottom:274.936287px;}
.y78{bottom:279.552275px;}
.y80{bottom:285.702395px;}
.y5c{bottom:286.844637px;}
.y89{bottom:292.692275px;}
.y23{bottom:292.808746px;}
.y6c{bottom:296.004275px;}
.y2c{bottom:296.043661px;}
.y29{bottom:296.045135px;}
.y4d{bottom:300.644630px;}
.y33{bottom:301.712464px;}
.y3b{bottom:302.255923px;}
.ye{bottom:307.336288px;}
.y95{bottom:308.255919px;}
.y77{bottom:312.672276px;}
.y5b{bottom:315.644649px;}
.y88{bottom:322.932287px;}
.y6b{bottom:324.048276px;}
.y22{bottom:325.208736px;}
.y68{bottom:327.792265px;}
.y7f{bottom:333.169711px;}
.y32{bottom:334.112470px;}
.yd{bottom:339.736278px;}
.y4c{bottom:344.444639px;}
.y76{bottom:347.052277px;}
.y3a{bottom:347.495920px;}
.y94{bottom:349.655909px;}
.y87{bottom:353.172277px;}
.ya3{bottom:354.605482px;}
.y6a{bottom:354.828277px;}
.y18{bottom:356.351437px;}
.y21{bottom:357.608726px;}
.y2b{bottom:357.608731px;}
.y67{bottom:365.052277px;}
.yc{bottom:372.136279px;}
.y4b{bottom:373.244631px;}
.y39{bottom:377.735910px;}
.y17{bottom:388.751438px;}
.y28{bottom:390.008738px;}
.y93{bottom:391.055906px;}
.y5{bottom:399.273080px;}
.y4a{bottom:402.044630px;}
.y66{bottom:402.312278px;}
.y2f{bottom:403.488056px;}
.y69{bottom:403.608280px;}
.yb{bottom:404.536287px;}
.y20{bottom:405.008730px;}
.y38{bottom:407.975903px;}
.y9{bottom:413.732233px;}
.y16{bottom:421.151446px;}
.y92{bottom:432.455901px;}
.y2e{bottom:435.888062px;}
.ya{bottom:436.936292px;}
.y1f{bottom:437.408736px;}
.y37{bottom:438.215901px;}
.y8{bottom:448.197725px;}
.y15{bottom:453.551451px;}
.y4{bottom:460.473074px;}
.y49{bottom:463.164997px;}
.ya2{bottom:491.405486px;}
.y6{bottom:508.524991px;}
.h7{height:43.031253px;}
.h14{height:52.417970px;}
.h5{height:53.789063px;}
.hf{height:56.929687px;}
.h10{height:58.324219px;}
.h13{height:64.546877px;}
.h8{height:69.890629px;}
.hb{height:75.304687px;}
.ha{height:78.626956px;}
.hc{height:86.062505px;}
.h6{height:89.558788px;}
.h2{height:96.820316px;}
.h12{height:107.578126px;}
.h11{height:108.724207px;}
.he{height:118.772172px;}
.h1{height:129.093754px;}
.hd{height:131.193844px;}
.h4{height:137.289604px;}
.h3{height:185.232000px;}
.h15{height:207.024012px;}
.h9{height:524.179704px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xf{left:20.816895px;}
.x1a{left:25.057086px;}
.x29{left:34.752463px;}
.x8{left:35.796260px;}
.x30{left:36.868044px;}
.x2a{left:39.234885px;}
.x6{left:46.939963px;}
.x2e{left:48.248653px;}
.x32{left:55.826923px;}
.x26{left:57.631857px;}
.x19{left:59.533467px;}
.x2d{left:62.222053px;}
.x10{left:64.125002px;}
.x2c{left:70.394979px;}
.x11{left:74.816901px;}
.xc{left:75.931596px;}
.x5{left:77.490539px;}
.x13{left:81.846157px;}
.x31{left:88.753942px;}
.x16{left:90.351776px;}
.xd{left:92.937997px;}
.x4{left:100.757145px;}
.x27{left:113.447400px;}
.x12{left:118.125004px;}
.x36{left:148.489857px;}
.x28{left:154.939966px;}
.x35{left:196.657668px;}
.x2f{left:197.793212px;}
.x2{left:220.555200px;}
.xe{left:234.055380px;}
.x1d{left:247.679558px;}
.x14{left:283.364523px;}
.x24{left:314.431120px;}
.x23{left:317.243620px;}
.x18{left:326.875600px;}
.x25{left:413.909878px;}
.x9{left:513.847479px;}
.xa{left:524.539374px;}
.x15{left:551.548548px;}
.xb{left:623.518704px;}
.x1{left:632.894094px;}
.x1b{left:634.151633px;}
.x2b{left:646.303190px;}
.x1c{left:681.162389px;}
.x1f{left:714.132360px;}
.x21{left:724.531998px;}
.x33{left:727.767597px;}
.x3{left:740.384315px;}
.x22{left:749.149561px;}
.x34{left:817.429234px;}
.x17{left:912.135854px;}
.x1e{left:1038.688064px;}
.x20{left:1039.801339px;}
.x7{left:1047.027099px;}
@media print{
.v1{vertical-align:-66.068138pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:44.799989pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.011200pt;}
.ls7{letter-spacing:0.011280pt;}
.ls2{letter-spacing:0.065306pt;}
.ls5{letter-spacing:0.077174pt;}
.ls3{letter-spacing:35.987779pt;}
.ls4{letter-spacing:95.987780pt;}
.ls1{letter-spacing:96.000379pt;}
.ws1{word-spacing:-31.852801pt;}
.wsb{word-spacing:-30.438513pt;}
.ws5{word-spacing:-26.592001pt;}
.ws9{word-spacing:-23.637335pt;}
.ws13{word-spacing:-17.728001pt;}
.wsa{word-spacing:-14.773333pt;}
.ws4{word-spacing:-11.818667pt;}
.ws12{word-spacing:-0.106667pt;}
.ws2{word-spacing:-0.096000pt;}
.ws8{word-spacing:-0.074667pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:69.408378pt;}
.ws7{word-spacing:71.151722pt;}
.wsc{word-spacing:72.350453pt;}
.wsd{word-spacing:72.350469pt;}
.wse{word-spacing:85.584452pt;}
.ws6{word-spacing:118.800116pt;}
.ws11{word-spacing:227.418558pt;}
.wsf{word-spacing:266.369081pt;}
.ws10{word-spacing:288.225336pt;}
._12{margin-left:-9.450668pt;}
._b{margin-left:-7.104000pt;}
._5{margin-left:-5.280000pt;}
._0{margin-left:-3.445333pt;}
._1{margin-left:-1.994667pt;}
._3{margin-left:-0.906667pt;}
._2{width:1.450667pt;}
._4{width:2.901333pt;}
._a{width:4.032000pt;}
._c{width:35.987779pt;}
._7{width:46.053375pt;}
._6{width:96.000379pt;}
._8{width:114.582084pt;}
._10{width:142.207889pt;}
._9{width:207.795486pt;}
._11{width:226.899571pt;}
._f{width:364.673057pt;}
._d{width:474.955042pt;}
._e{width:1578.298771pt;}
.fs6{font-size:42.666669pt;}
.fs4{font-size:53.333334pt;}
.fsd{font-size:64.000002pt;}
.fs9{font-size:74.666666pt;}
.fs7{font-size:85.333339pt;}
.fs5{font-size:88.799999pt;}
.fs1{font-size:96.000003pt;}
.fsc{font-size:106.666667pt;}
.fsb{font-size:117.765872pt;}
.fs0{font-size:128.000004pt;}
.fsa{font-size:128.432544pt;}
.fs3{font-size:134.400004pt;}
.fs2{font-size:181.333334pt;}
.fse{font-size:202.666678pt;}
.fs8{font-size:640.000020pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:8.166063pt;}
.y2a{bottom:10.460763pt;}
.y5a{bottom:11.017213pt;}
.y1e{bottom:20.429263pt;}
.y43{bottom:22.174683pt;}
.y75{bottom:24.821554pt;}
.y7{bottom:24.961996pt;}
.y7e{bottom:26.678624pt;}
.y46{bottom:35.046074pt;}
.y9e{bottom:41.130294pt;}
.y91{bottom:45.130854pt;}
.y61{bottom:49.106294pt;}
.y74{bottom:49.141564pt;}
.y31{bottom:51.616988pt;}
.y1c{bottom:52.972054pt;}
.y9a{bottom:58.005295pt;}
.y9d{bottom:60.330295pt;}
.y54{bottom:61.372955pt;}
.y42{bottom:67.178535pt;}
.y14{bottom:71.587805pt;}
.y90{bottom:72.010855pt;}
.y55{bottom:72.683885pt;}
.y73{bottom:73.461575pt;}
.y30{bottom:74.016987pt;}
.y59{bottom:74.706295pt;}
.y45{bottom:75.259408pt;}
.y65{bottom:76.373215pt;}
.y9c{bottom:79.530292pt;}
.y86{bottom:81.166591pt;}
.y1b{bottom:81.772055pt;}
.y53{bottom:86.972956pt;}
.y2d{bottom:93.259596pt;}
.y41{bottom:94.058536pt;}
.y99{bottom:94.805286pt;}
.y7d{bottom:95.050906pt;}
.y72{bottom:97.781586pt;}
.y9b{bottom:98.730290pt;}
.y8f{bottom:98.890866pt;}
.y58{bottom:100.306296pt;}
.y13{bottom:100.387806pt;}
.y44{bottom:102.139406pt;}
.y85{bottom:103.566590pt;}
.y27{bottom:105.074436pt;}
.y1a{bottom:110.572062pt;}
.y64{bottom:117.002446pt;}
.y40{bottom:120.938557pt;}
.y71{bottom:122.101587pt;}
.y8e{bottom:125.770867pt;}
.y52{bottom:125.906297pt;}
.y7c{bottom:127.050907pt;}
.y12{bottom:129.187787pt;}
.y98{bottom:131.605277pt;}
.y26{bottom:133.874427pt;}
.y60{bottom:139.239667pt;}
.y19{bottom:139.372067pt;}
.y48{bottom:144.694387pt;}
.y84{bottom:145.162147pt;}
.y70{bottom:147.029607pt;}
.y57{bottom:151.506318pt;}
.y51{bottom:151.506338pt;}
.y8d{bottom:152.650888pt;}
.y7b{bottom:156.490908pt;}
.y63{bottom:157.631658pt;}
.y11{bottom:157.987808pt;}
.y3f{bottom:161.151908pt;}
.y5f{bottom:164.839678pt;}
.y83{bottom:167.562148pt;}
.ya1{bottom:172.267868pt;}
.y6f{bottom:174.389608pt;}
.y25{bottom:176.007778pt;}
.y50{bottom:177.106328pt;}
.y3{bottom:177.267868pt;}
.y8c{bottom:179.530898pt;}
.y36{bottom:181.788859pt;}
.y1d{bottom:181.870219pt;}
.y97{bottom:184.405259pt;}
.y10{bottom:186.787809pt;}
.y7a{bottom:187.050909pt;}
.y3e{bottom:188.031929pt;}
.y82{bottom:189.962147pt;}
.y56{bottom:190.439649pt;}
.y5e{bottom:190.439669pt;}
.ya0{bottom:201.067864pt;}
.y2{bottom:206.067864pt;}
.y8b{bottom:206.410909pt;}
.y35{bottom:210.588849pt;}
.y6e{bottom:214.474930pt;}
.y3d{bottom:214.911940pt;}
.y62{bottom:215.380883pt;}
.y4f{bottom:216.039660pt;}
.y24{bottom:218.141110pt;}
.y79{bottom:219.050910pt;}
.y5d{bottom:229.373000pt;}
.y81{bottom:231.557686pt;}
.y9f{bottom:231.787867pt;}
.y8a{bottom:233.290910pt;}
.y1{bottom:236.787867pt;}
.y96{bottom:237.205250pt;}
.y6d{bottom:238.794920pt;}
.y34{bottom:239.388850pt;}
.y4e{bottom:241.639670pt;}
.y3c{bottom:241.791940pt;}
.yf{bottom:244.387811pt;}
.y78{bottom:248.490911pt;}
.y80{bottom:253.957685pt;}
.y5c{bottom:254.973011pt;}
.y89{bottom:260.170911pt;}
.y23{bottom:260.274441pt;}
.y6c{bottom:263.114911pt;}
.y2c{bottom:263.149921pt;}
.y29{bottom:263.151231pt;}
.y4d{bottom:267.239671pt;}
.y33{bottom:268.188857pt;}
.y3b{bottom:268.671931pt;}
.ye{bottom:273.187811pt;}
.y95{bottom:274.005261pt;}
.y77{bottom:277.930912pt;}
.y5b{bottom:280.573022pt;}
.y88{bottom:287.050922pt;}
.y6b{bottom:288.042912pt;}
.y22{bottom:289.074432pt;}
.y68{bottom:291.370902pt;}
.y7f{bottom:296.150854pt;}
.y32{bottom:296.988862pt;}
.yd{bottom:301.987802pt;}
.y4c{bottom:306.173013pt;}
.y76{bottom:308.490913pt;}
.y3a{bottom:308.885263pt;}
.y94{bottom:310.805253pt;}
.y87{bottom:313.930913pt;}
.ya3{bottom:315.204873pt;}
.y6a{bottom:315.402913pt;}
.y18{bottom:316.756833pt;}
.y21{bottom:317.874423pt;}
.y2b{bottom:317.874428pt;}
.y67{bottom:324.490913pt;}
.yc{bottom:330.787803pt;}
.y4b{bottom:331.773005pt;}
.y39{bottom:335.765253pt;}
.y17{bottom:345.556834pt;}
.y28{bottom:346.674434pt;}
.y93{bottom:347.605250pt;}
.y5{bottom:354.909404pt;}
.y4a{bottom:357.373004pt;}
.y66{bottom:357.610914pt;}
.y2f{bottom:358.656050pt;}
.y69{bottom:358.762915pt;}
.yb{bottom:359.587810pt;}
.y20{bottom:360.007760pt;}
.y38{bottom:362.645247pt;}
.y9{bottom:367.761984pt;}
.y16{bottom:374.356841pt;}
.y92{bottom:384.405245pt;}
.y2e{bottom:387.456055pt;}
.ya{bottom:388.387815pt;}
.y1f{bottom:388.807765pt;}
.y37{bottom:389.525245pt;}
.y8{bottom:398.397977pt;}
.y15{bottom:403.156846pt;}
.y4{bottom:409.309399pt;}
.y49{bottom:411.702220pt;}
.ya2{bottom:436.804877pt;}
.y6{bottom:452.022214pt;}
.h7{height:38.250002pt;}
.h14{height:46.593751pt;}
.h5{height:47.812500pt;}
.hf{height:50.604166pt;}
.h10{height:51.843750pt;}
.h13{height:57.375002pt;}
.h8{height:62.125004pt;}
.hb{height:66.937500pt;}
.ha{height:69.890627pt;}
.hc{height:76.500005pt;}
.h6{height:79.607811pt;}
.h2{height:86.062503pt;}
.h12{height:95.625001pt;}
.h11{height:96.643739pt;}
.he{height:105.575264pt;}
.h1{height:114.750004pt;}
.hd{height:116.616750pt;}
.h4{height:122.035204pt;}
.h3{height:164.650667pt;}
.h15{height:184.021344pt;}
.h9{height:465.937515pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xf{left:18.503907pt;}
.x1a{left:22.272966pt;}
.x29{left:30.891078pt;}
.x8{left:31.818898pt;}
.x30{left:32.771595pt;}
.x2a{left:34.875453pt;}
.x6{left:41.724411pt;}
.x2e{left:42.887691pt;}
.x32{left:49.623932pt;}
.x26{left:51.228318pt;}
.x19{left:52.918638pt;}
.x2d{left:55.308492pt;}
.x10{left:57.000002pt;}
.x2c{left:62.573315pt;}
.x11{left:66.503912pt;}
.xc{left:67.494752pt;}
.x5{left:68.880479pt;}
.x13{left:72.752139pt;}
.x31{left:78.892393pt;}
.x16{left:80.312690pt;}
.xd{left:82.611553pt;}
.x4{left:89.561907pt;}
.x27{left:100.842133pt;}
.x12{left:105.000003pt;}
.x36{left:131.990984pt;}
.x28{left:137.724414pt;}
.x35{left:174.806816pt;}
.x2f{left:175.816189pt;}
.x2{left:196.049066pt;}
.xe{left:208.049227pt;}
.x1d{left:220.159607pt;}
.x14{left:251.879576pt;}
.x24{left:279.494329pt;}
.x23{left:281.994329pt;}
.x18{left:290.556089pt;}
.x25{left:367.919892pt;}
.x9{left:456.753315pt;}
.xa{left:466.257221pt;}
.x15{left:490.265376pt;}
.xb{left:554.238848pt;}
.x1{left:562.572528pt;}
.x1b{left:563.690340pt;}
.x2b{left:574.491724pt;}
.x1c{left:605.477679pt;}
.x1f{left:634.784320pt;}
.x21{left:644.028442pt;}
.x33{left:646.904531pt;}
.x3{left:658.119391pt;}
.x22{left:665.910721pt;}
.x34{left:726.603763pt;}
.x17{left:810.787426pt;}
.x1e{left:923.278280pt;}
.x20{left:924.267857pt;}
.x7{left:930.690755pt;}
}




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