
    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_e44f850790538e8bcb21595c.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_ffa4ca91f5b57df6e748574b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.073730;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_a3c958c0b261b95b304c1b9d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_71f7c7c74bf70a0f3596b481.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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:-17.254576px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.012737px;}
.v3{vertical-align:25.216615px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012600px;}
.ls3{letter-spacing:0.012645px;}
.ls4{letter-spacing:0.012690px;}
.ls2{letter-spacing:108.000426px;}
.ls1{letter-spacing:324.569019px;}
.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;}
}
.ws4{word-spacing:-49.860002px;}
.wsa{word-spacing:-29.916001px;}
.ws3{word-spacing:-23.268000px;}
.ws2{word-spacing:-16.620000px;}
.wsc{word-spacing:-16.390304px;}
.ws0{word-spacing:-11.634000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:89.689946px;}
.ws8{word-spacing:282.287619px;}
.ws7{word-spacing:296.524045px;}
.ws9{word-spacing:308.360642px;}
.wsb{word-spacing:724.739335px;}
.ws6{word-spacing:2074.688116px;}
._7{margin-left:-16.632001px;}
._8{margin-left:-11.880000px;}
._10{margin-left:-10.371012px;}
._2{margin-left:-8.388006px;}
._0{margin-left:-6.864000px;}
._4{margin-left:-4.620000px;}
._5{margin-left:-3.247878px;}
._1{margin-left:-1.372583px;}
._e{width:1.605750px;}
._f{width:54.886638px;}
._9{width:88.215686px;}
._a{width:91.192742px;}
._11{width:106.441927px;}
._3{width:107.972021px;}
._c{width:284.768931px;}
._d{width:314.064715px;}
._b{width:315.842107px;}
._6{width:776.240009px;}
.fc8{color:rgb(0,255,0);}
.fc7{color:rgb(232,116,0);}
.fc5{color:transparent;}
.fc9{color:rgb(154,154,246);}
.fc2{color:rgb(77,208,225);}
.fc6{color:rgb(33,33,33);}
.fc4{color:rgb(183,183,183);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(173,173,173);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:36.000001px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:58.371003px;}
.fs19{font-size:59.170772px;}
.fs5{font-size:60.000000px;}
.fse{font-size:66.000004px;}
.fs17{font-size:72.000002px;}
.fs4{font-size:76.254604px;}
.fs16{font-size:78.000005px;}
.fs8{font-size:84.000000px;}
.fs1b{font-size:85.199997px;}
.fs15{font-size:91.800012px;}
.fs2{font-size:94.800009px;}
.fsb{font-size:96.000006px;}
.fs13{font-size:97.200003px;}
.fs18{font-size:99.899999px;}
.fsd{font-size:108.000003px;}
.fs10{font-size:114.000007px;}
.fs14{font-size:118.590002px;}
.fs1{font-size:124.799998px;}
.fs12{font-size:126.000004px;}
.fs7{font-size:151.200005px;}
.fs0{font-size:154.799996px;}
.fsa{font-size:180.000006px;}
.fsc{font-size:199.799997px;}
.fs1a{font-size:217.200022px;}
.fsf{font-size:229.200010px;}
.fs11{font-size:288.000009px;}
.y0{bottom:0.000000px;}
.y27{bottom:9.428718px;}
.y5d{bottom:9.590910px;}
.y69{bottom:14.462702px;}
.y42{bottom:14.787267px;}
.y16{bottom:16.345221px;}
.ybe{bottom:18.070387px;}
.y24{bottom:18.437922px;}
.y51{bottom:19.736576px;}
.yd0{bottom:21.745898px;}
.yac{bottom:21.778091px;}
.yad{bottom:21.780263px;}
.y64{bottom:23.634098px;}
.y22{bottom:23.829061px;}
.y68{bottom:27.062700px;}
.yb{bottom:27.242241px;}
.y26{bottom:27.428719px;}
.y9{bottom:28.082245px;}
.y23{bottom:29.237921px;}
.y5c{bottom:29.390899px;}
.ybd{bottom:30.670386px;}
.y41{bottom:31.797266px;}
.y21{bottom:34.629060px;}
.y50{bottom:39.536566px;}
.ya{bottom:39.842239px;}
.ybc{bottom:43.270384px;}
.ycb{bottom:44.985076px;}
.y20{bottom:45.429058px;}
.y2f{bottom:45.972016px;}
.ycf{bottom:47.305896px;}
.y63{bottom:48.834097px;}
.y5b{bottom:49.190900px;}
.y40{bottom:52.767263px;}
.y76{bottom:54.054196px;}
.y1f{bottom:56.229057px;}
.y4f{bottom:59.336566px;}
.ybf{bottom:61.041830px;}
.yb9{bottom:63.302866px;}
.yca{bottom:63.623874px;}
.y5a{bottom:68.990900px;}
.y61{bottom:71.142744px;}
.y32{bottom:77.368461px;}
.y4e{bottom:79.136567px;}
.yc9{bottom:82.262661px;}
.y75{bottom:86.454197px;}
.y59{bottom:88.790896px;}
.yb8{bottom:92.219890px;}
.ybb{bottom:94.848288px;}
.y97{bottom:95.135924px;}
.y60{bottom:96.342738px;}
.yab{bottom:99.995890px;}
.yc8{bottom:100.901448px;}
.y44{bottom:101.809831px;}
.y18{bottom:105.440015px;}
.y47{bottom:107.508654px;}
.y2e{bottom:108.058124px;}
.y8{bottom:111.232874px;}
.y58{bottom:115.430893px;}
.y74{bottom:118.854205px;}
.yb7{bottom:121.136891px;}
.y5f{bottom:121.542737px;}
.yba{bottom:123.198285px;}
.ya3{bottom:124.969383px;}
.y4d{bottom:125.576559px;}
.y96{bottom:129.155913px;}
.y7{bottom:131.821618px;}
.y3f{bottom:137.255891px;}
.y13{bottom:138.695925px;}
.y8b{bottom:139.392885px;}
.y8f{bottom:139.912523px;}
.yb6{bottom:150.053892px;}
.y17{bottom:150.373416px;}
.y83{bottom:151.214970px;}
.y80{bottom:151.215443px;}
.y73{bottom:151.254210px;}
.y6{bottom:152.410358px;}
.yc7{bottom:154.063392px;}
.ya2{bottom:154.129395px;}
.y2d{bottom:158.458126px;}
.y8a{bottom:159.192886px;}
.y8e{bottom:159.712523px;}
.y72{bottom:160.024940px;}
.y9d{bottom:163.175937px;}
.y67{bottom:171.221726px;}
.y5{bottom:174.000551px;}
.y3e{bottom:174.515926px;}
.y82{bottom:175.964971px;}
.y7f{bottom:175.965444px;}
.yb5{bottom:178.970915px;}
.y89{bottom:178.992886px;}
.y8d{bottom:179.512524px;}
.yc6{bottom:185.531893px;}
.y12{bottom:189.095927px;}
.y95{bottom:197.195938px;}
.y71{bottom:197.824940px;}
.y35{bottom:198.706341px;}
.y88{bottom:198.792887px;}
.y8c{bottom:199.312524px;}
.y81{bottom:200.714973px;}
.y7e{bottom:200.715446px;}
.y99{bottom:204.404241px;}
.yb4{bottom:207.887927px;}
.y2c{bottom:208.858116px;}
.y3d{bottom:211.775916px;}
.ya1{bottom:212.449369px;}
.yc5{bottom:217.000394px;}
.y94{bottom:231.215928px;}
.yb3{bottom:236.804917px;}
.y1c{bottom:237.987629px;}
.y11{bottom:239.495917px;}
.ya0{bottom:241.609365px;}
.y66{bottom:243.629997px;}
.y3c{bottom:249.035917px;}
.y2b{bottom:259.258106px;}
.y57{bottom:261.144422px;}
.y1b{bottom:262.737630px;}
.y6f{bottom:262.770210px;}
.y93{bottom:265.235929px;}
.yb2{bottom:265.721918px;}
.y9f{bottom:270.769365px;}
.yc4{bottom:279.937396px;}
.y56{bottom:280.944434px;}
.yce{bottom:282.273067px;}
.y1e{bottom:284.619324px;}
.y3b{bottom:286.295907px;}
.y1a{bottom:287.487631px;}
.y34{bottom:288.616344px;}
.y4c{bottom:288.620450px;}
.y10{bottom:289.895907px;}
.yb1{bottom:294.638907px;}
.y4{bottom:294.737986px;}
.y92{bottom:299.255919px;}
.y9e{bottom:299.929366px;}
.y87{bottom:300.365693px;}
.y55{bottom:300.744435px;}
.y4b{bottom:308.420439px;}
.y2a{bottom:309.658108px;}
.y1d{bottom:309.819323px;}
.yc3{bottom:311.405897px;}
.y54{bottom:320.544446px;}
.y3a{bottom:323.555897px;}
.y4a{bottom:328.220440px;}
.y6e{bottom:328.356846px;}
.y65{bottom:330.029989px;}
.y86{bottom:332.765699px;}
.y9c{bottom:333.275903px;}
.y3{bottom:333.977976px;}
.ya5{bottom:334.867008px;}
.yf{bottom:340.295909px;}
.y53{bottom:340.344458px;}
.y62{bottom:343.199050px;}
.y79{bottom:344.573249px;}
.y49{bottom:348.020440px;}
.yb0{bottom:352.472898px;}
.y7d{bottom:356.948244px;}
.y7b{bottom:356.948311px;}
.y29{bottom:360.058110px;}
.y52{bottom:360.144436px;}
.y84{bottom:360.815887px;}
.y91{bottom:367.295899px;}
.y78{bottom:369.323250px;}
.yc2{bottom:374.342899px;}
.y33{bottom:378.526339px;}
.y2{bottom:380.417973px;}
.ycd{bottom:381.397032px;}
.y7c{bottom:381.698245px;}
.y7a{bottom:381.698312px;}
.ya7{bottom:382.716336px;}
.y31{bottom:385.128297px;}
.ye{bottom:390.695911px;}
.y98{bottom:393.162113px;}
.y77{bottom:394.073252px;}
.y43{bottom:394.460433px;}
.y39{bottom:398.075900px;}
.y6d{bottom:399.659990px;}
.y90{bottom:401.315900px;}
.yc1{bottom:405.811403px;}
.y46{bottom:406.584445px;}
.yaf{bottom:410.306898px;}
.y28{bottom:410.458102px;}
.ya6{bottom:418.293331px;}
.y1{bottom:426.857974px;}
.y70{bottom:433.505188px;}
.y38{bottom:435.335901px;}
.yc0{bottom:437.279903px;}
.yae{bottom:439.223899px;}
.yd{bottom:441.095903px;}
.y6c{bottom:444.478101px;}
.ycc{bottom:446.557031px;}
.y45{bottom:460.584442px;}
.y6b{bottom:464.278102px;}
.y85{bottom:467.653743px;}
.ya4{bottom:475.768695px;}
.y15{bottom:481.407126px;}
.y9b{bottom:485.263424px;}
.y30{bottom:487.454526px;}
.yaa{bottom:487.858897px;}
.y5e{bottom:489.804987px;}
.y19{bottom:504.383797px;}
.yc{bottom:508.524991px;}
.y37{bottom:513.495937px;}
.ya8{bottom:516.459047px;}
.y14{bottom:526.767120px;}
.y6a{bottom:529.471844px;}
.y9a{bottom:530.623417px;}
.ya9{bottom:533.218890px;}
.y36{bottom:545.895943px;}
.y48{bottom:545.898425px;}
.y25{bottom:546.939624px;}
.h9{height:26.226563px;}
.h6{height:30.597656px;}
.h10{height:36.257812px;}
.h5{height:43.710938px;}
.h18{height:47.727542px;}
.hf{height:48.082034px;}
.h21{height:51.081018px;}
.h1f{height:52.453127px;}
.h4{height:55.552670px;}
.h1e{height:56.824223px;}
.h12{height:56.976566px;}
.ha{height:60.723674px;}
.h8{height:61.195312px;}
.h15{height:61.503524px;}
.h23{height:62.069529px;}
.h1d{height:66.877743px;}
.h1c{height:68.927553px;}
.h24{height:69.056325px;}
.h3{height:69.063288px;}
.hc{height:69.937504px;}
.h1a{height:70.811721px;}
.h20{height:72.778710px;}
.he{height:78.679690px;}
.h14{height:83.050786px;}
.h1b{height:86.394670px;}
.h2{height:90.918749px;}
.h19{height:91.116214px;}
.h7{height:110.151566px;}
.h1{height:112.774216px;}
.h17{height:119.970707px;}
.hb{height:131.132817px;}
.hd{height:145.557420px;}
.h11{height:155.390630px;}
.h22{height:158.233610px;}
.h13{height:166.975789px;}
.h16{height:209.812507px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3f{left:10.125000px;}
.x25{left:28.300192px;}
.x3{left:30.472443px;}
.x41{left:35.415029px;}
.x2c{left:41.687668px;}
.x1{left:46.940260px;}
.x6f{left:54.770672px;}
.x1a{left:56.562993px;}
.x21{left:57.631857px;}
.x49{left:59.696600px;}
.x4{left:61.262959px;}
.x6e{left:65.010843px;}
.x3d{left:68.028550px;}
.x2b{left:71.138770px;}
.x14{left:79.753938px;}
.x17{left:83.351367px;}
.xb{left:89.106472px;}
.x36{left:96.836872px;}
.x5{left:100.939964px;}
.xa{left:104.263536px;}
.x35{left:105.588821px;}
.x55{left:112.683339px;}
.x56{left:116.172847px;}
.x37{left:122.503450px;}
.x40{left:128.769192px;}
.x64{left:145.202548px;}
.x57{left:150.017472px;}
.x31{left:164.878937px;}
.x63{left:179.762567px;}
.x32{left:181.919951px;}
.x15{left:183.974631px;}
.x34{left:191.368120px;}
.x33{left:218.878938px;}
.x29{left:227.879287px;}
.x2a{left:234.894675px;}
.x67{left:237.654896px;}
.xc{left:254.071417px;}
.x42{left:260.724566px;}
.xd{left:263.412638px;}
.x69{left:298.442462px;}
.x43{left:322.538048px;}
.x3b{left:324.785683px;}
.x44{left:351.855473px;}
.x6{left:370.847551px;}
.x19{left:372.088317px;}
.x18{left:398.460174px;}
.x45{left:414.272781px;}
.x46{left:443.590203px;}
.x3c{left:450.044036px;}
.x3a{left:458.355368px;}
.x4d{left:462.416139px;}
.x52{left:467.663210px;}
.x53{left:488.087842px;}
.x4e{left:493.334912px;}
.x1d{left:495.422307px;}
.x54{left:498.008086px;}
.x1e{left:505.178161px;}
.x47{left:511.310681px;}
.x48{left:540.177250px;}
.x2f{left:541.379614px;}
.x28{left:570.114218px;}
.x24{left:571.752322px;}
.x30{left:578.338601px;}
.x2e{left:587.847133px;}
.x27{left:588.900844px;}
.x6c{left:597.524160px;}
.x5f{left:605.436027px;}
.x60{left:614.397620px;}
.x2d{left:624.916651px;}
.x12{left:629.444630px;}
.x4b{left:631.242012px;}
.x9{left:633.251619px;}
.x4a{left:637.100689px;}
.x3e{left:638.941587px;}
.x23{left:640.200789px;}
.x5a{left:642.377124px;}
.x26{left:650.481650px;}
.x68{left:653.568917px;}
.x4c{left:661.872992px;}
.x5e{left:682.120319px;}
.x5d{left:688.991779px;}
.x16{left:692.777047px;}
.x58{left:696.973450px;}
.x6d{left:706.549793px;}
.x59{left:712.929128px;}
.x8{left:714.865966px;}
.x72{left:733.942193px;}
.x10{left:735.616194px;}
.xe{left:744.992124px;}
.x7{left:756.285780px;}
.x50{left:761.269558px;}
.xf{left:766.556090px;}
.x11{left:767.876447px;}
.x6a{left:788.023038px;}
.x71{left:791.236195px;}
.x13{left:796.634992px;}
.x4f{left:800.940281px;}
.x51{left:806.187351px;}
.x6b{left:809.601652px;}
.x5c{left:818.006148px;}
.x61{left:822.920528px;}
.x1c{left:824.610896px;}
.x5b{left:828.548826px;}
.x38{left:831.872350px;}
.x65{left:846.431660px;}
.x66{left:850.526969px;}
.x39{left:852.291858px;}
.x62{left:864.593578px;}
.x70{left:882.426313px;}
.x1b{left:934.179746px;}
.x22{left:981.413019px;}
.x1f{left:1038.688064px;}
.x20{left:1039.801339px;}
.x2{left:1047.027099px;}
@media print{
.v2{vertical-align:-15.337400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.122432pt;}
.v3{vertical-align:22.414769pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.011200pt;}
.ls3{letter-spacing:0.011240pt;}
.ls4{letter-spacing:0.011280pt;}
.ls2{letter-spacing:96.000379pt;}
.ls1{letter-spacing:288.505795pt;}
.ws4{word-spacing:-44.320001pt;}
.wsa{word-spacing:-26.592001pt;}
.ws3{word-spacing:-20.682667pt;}
.ws2{word-spacing:-14.773333pt;}
.wsc{word-spacing:-14.569159pt;}
.ws0{word-spacing:-10.341333pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:79.724396pt;}
.ws8{word-spacing:250.922328pt;}
.ws7{word-spacing:263.576929pt;}
.ws9{word-spacing:274.098348pt;}
.wsb{word-spacing:644.212742pt;}
.ws6{word-spacing:1844.167215pt;}
._7{margin-left:-14.784000pt;}
._8{margin-left:-10.560000pt;}
._10{margin-left:-9.218678pt;}
._2{margin-left:-7.456006pt;}
._0{margin-left:-6.101333pt;}
._4{margin-left:-4.106667pt;}
._5{margin-left:-2.887003pt;}
._1{margin-left:-1.220074pt;}
._e{width:1.427333pt;}
._f{width:48.788123pt;}
._9{width:78.413943pt;}
._a{width:81.060215pt;}
._11{width:94.615046pt;}
._3{width:95.975130pt;}
._c{width:253.127938pt;}
._d{width:279.168635pt;}
._b{width:280.748540pt;}
._6{width:689.991119pt;}
.fs9{font-size:32.000001pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:51.885336pt;}
.fs19{font-size:52.596242pt;}
.fs5{font-size:53.333334pt;}
.fse{font-size:58.666670pt;}
.fs17{font-size:64.000002pt;}
.fs4{font-size:67.781870pt;}
.fs16{font-size:69.333338pt;}
.fs8{font-size:74.666666pt;}
.fs1b{font-size:75.733330pt;}
.fs15{font-size:81.600011pt;}
.fs2{font-size:84.266675pt;}
.fsb{font-size:85.333339pt;}
.fs13{font-size:86.400003pt;}
.fs18{font-size:88.799999pt;}
.fsd{font-size:96.000003pt;}
.fs10{font-size:101.333339pt;}
.fs14{font-size:105.413335pt;}
.fs1{font-size:110.933332pt;}
.fs12{font-size:112.000004pt;}
.fs7{font-size:134.400004pt;}
.fs0{font-size:137.599996pt;}
.fsa{font-size:160.000005pt;}
.fsc{font-size:177.599998pt;}
.fs1a{font-size:193.066686pt;}
.fsf{font-size:203.733343pt;}
.fs11{font-size:256.000008pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:8.381083pt;}
.y5d{bottom:8.525253pt;}
.y69{bottom:12.855735pt;}
.y42{bottom:13.144237pt;}
.y16{bottom:14.529085pt;}
.ybe{bottom:16.062566pt;}
.y24{bottom:16.389264pt;}
.y51{bottom:17.543623pt;}
.yd0{bottom:19.329687pt;}
.yac{bottom:19.358303pt;}
.yad{bottom:19.360233pt;}
.y64{bottom:21.008087pt;}
.y22{bottom:21.181387pt;}
.y68{bottom:24.055733pt;}
.yb{bottom:24.215325pt;}
.y26{bottom:24.381084pt;}
.y9{bottom:24.961996pt;}
.y23{bottom:25.989264pt;}
.y5c{bottom:26.125244pt;}
.ybd{bottom:27.262566pt;}
.y41{bottom:28.264237pt;}
.y21{bottom:30.781387pt;}
.y50{bottom:35.143614pt;}
.ya{bottom:35.415324pt;}
.ybc{bottom:38.462564pt;}
.ycb{bottom:39.986734pt;}
.y20{bottom:40.381385pt;}
.y2f{bottom:40.864014pt;}
.ycf{bottom:42.049685pt;}
.y63{bottom:43.408086pt;}
.y5b{bottom:43.725244pt;}
.y40{bottom:46.904234pt;}
.y76{bottom:48.048174pt;}
.y1f{bottom:49.981384pt;}
.y4f{bottom:52.743614pt;}
.ybf{bottom:54.259404pt;}
.yb9{bottom:56.269215pt;}
.yca{bottom:56.554555pt;}
.y5a{bottom:61.325245pt;}
.y61{bottom:63.237995pt;}
.y32{bottom:68.771965pt;}
.y4e{bottom:70.343615pt;}
.yc9{bottom:73.122365pt;}
.y75{bottom:76.848175pt;}
.y59{bottom:78.925241pt;}
.yb8{bottom:81.973235pt;}
.ybb{bottom:84.309589pt;}
.y97{bottom:84.565265pt;}
.y60{bottom:85.637989pt;}
.yab{bottom:88.885236pt;}
.yc8{bottom:89.690176pt;}
.y44{bottom:90.497628pt;}
.y18{bottom:93.724458pt;}
.y47{bottom:95.563248pt;}
.y2e{bottom:96.051666pt;}
.y8{bottom:98.873666pt;}
.y58{bottom:102.605238pt;}
.y74{bottom:105.648182pt;}
.yb7{bottom:107.677236pt;}
.y5f{bottom:108.037988pt;}
.yba{bottom:109.509586pt;}
.ya3{bottom:111.083896pt;}
.y4d{bottom:111.623608pt;}
.y96{bottom:114.805256pt;}
.y7{bottom:117.174771pt;}
.y3f{bottom:122.005237pt;}
.y13{bottom:123.285267pt;}
.y8b{bottom:123.904787pt;}
.y8f{bottom:124.366687pt;}
.yb6{bottom:133.381237pt;}
.y17{bottom:133.665259pt;}
.y83{bottom:134.413307pt;}
.y80{bottom:134.413727pt;}
.y73{bottom:134.448187pt;}
.y6{bottom:135.475874pt;}
.yc7{bottom:136.945237pt;}
.ya2{bottom:137.003907pt;}
.y2d{bottom:140.851667pt;}
.y8a{bottom:141.504787pt;}
.y8e{bottom:141.966687pt;}
.y72{bottom:142.244391pt;}
.y9d{bottom:145.045277pt;}
.y67{bottom:152.197090pt;}
.y5{bottom:154.667157pt;}
.y3e{bottom:155.125268pt;}
.y82{bottom:156.413308pt;}
.y7f{bottom:156.413728pt;}
.yb5{bottom:159.085258pt;}
.y89{bottom:159.104788pt;}
.y8d{bottom:159.566688pt;}
.yc6{bottom:164.917238pt;}
.y12{bottom:168.085268pt;}
.y95{bottom:175.285278pt;}
.y71{bottom:175.844391pt;}
.y35{bottom:176.627858pt;}
.y88{bottom:176.704788pt;}
.y8c{bottom:177.166688pt;}
.y81{bottom:178.413309pt;}
.y7e{bottom:178.413729pt;}
.y99{bottom:181.692659pt;}
.yb4{bottom:184.789269pt;}
.y2c{bottom:185.651659pt;}
.y3d{bottom:188.245259pt;}
.ya1{bottom:188.843884pt;}
.yc5{bottom:192.889239pt;}
.y94{bottom:205.525269pt;}
.yb3{bottom:210.493259pt;}
.y1c{bottom:211.544559pt;}
.y11{bottom:212.885260pt;}
.ya0{bottom:214.763880pt;}
.y66{bottom:216.559998pt;}
.y3c{bottom:221.365260pt;}
.y2b{bottom:230.451650pt;}
.y57{bottom:232.128375pt;}
.y1b{bottom:233.544560pt;}
.y6f{bottom:233.573520pt;}
.y93{bottom:235.765270pt;}
.yb2{bottom:236.197260pt;}
.y9f{bottom:240.683880pt;}
.yc4{bottom:248.833241pt;}
.y56{bottom:249.728386pt;}
.yce{bottom:250.909393pt;}
.y1e{bottom:252.994955pt;}
.y3b{bottom:254.485251pt;}
.y1a{bottom:255.544561pt;}
.y34{bottom:256.547861pt;}
.y4c{bottom:256.551511pt;}
.y10{bottom:257.685251pt;}
.yb1{bottom:261.901251pt;}
.y4{bottom:261.989321pt;}
.y92{bottom:266.005261pt;}
.y9e{bottom:266.603881pt;}
.y87{bottom:266.991727pt;}
.y55{bottom:267.328386pt;}
.y4b{bottom:274.151501pt;}
.y2a{bottom:275.251652pt;}
.y1d{bottom:275.394954pt;}
.yc3{bottom:276.805242pt;}
.y54{bottom:284.928397pt;}
.y3a{bottom:287.605242pt;}
.y4a{bottom:291.751502pt;}
.y6e{bottom:291.872752pt;}
.y65{bottom:293.359990pt;}
.y86{bottom:295.791732pt;}
.y9c{bottom:296.245247pt;}
.y3{bottom:296.869312pt;}
.ya5{bottom:297.659562pt;}
.yf{bottom:302.485252pt;}
.y53{bottom:302.528407pt;}
.y62{bottom:305.065822pt;}
.y79{bottom:306.287333pt;}
.y49{bottom:309.351503pt;}
.yb0{bottom:313.309243pt;}
.y7d{bottom:317.287328pt;}
.y7b{bottom:317.287388pt;}
.y29{bottom:320.051653pt;}
.y52{bottom:320.128388pt;}
.y84{bottom:320.725233pt;}
.y91{bottom:326.485243pt;}
.y78{bottom:328.287333pt;}
.yc2{bottom:332.749243pt;}
.y33{bottom:336.467856pt;}
.y2{bottom:338.149310pt;}
.ycd{bottom:339.019584pt;}
.y7c{bottom:339.287329pt;}
.y7a{bottom:339.287389pt;}
.ya7{bottom:340.192299pt;}
.y31{bottom:342.336264pt;}
.ye{bottom:347.285254pt;}
.y98{bottom:349.477434pt;}
.y77{bottom:350.287335pt;}
.y43{bottom:350.631496pt;}
.y39{bottom:353.845244pt;}
.y6d{bottom:355.253324pt;}
.y90{bottom:356.725244pt;}
.yc1{bottom:360.721247pt;}
.y46{bottom:361.408395pt;}
.yaf{bottom:364.717242pt;}
.y28{bottom:364.851646pt;}
.ya6{bottom:371.816295pt;}
.y1{bottom:379.429310pt;}
.y70{bottom:385.337945pt;}
.y38{bottom:386.965245pt;}
.yc0{bottom:388.693247pt;}
.yae{bottom:390.421243pt;}
.yd{bottom:392.085247pt;}
.y6c{bottom:395.091645pt;}
.ycc{bottom:396.939583pt;}
.y45{bottom:409.408393pt;}
.y6b{bottom:412.691646pt;}
.y85{bottom:415.692216pt;}
.ya4{bottom:422.905506pt;}
.y15{bottom:427.917445pt;}
.y9b{bottom:431.345266pt;}
.y30{bottom:433.292912pt;}
.yaa{bottom:433.652353pt;}
.y5e{bottom:435.382211pt;}
.y19{bottom:448.341153pt;}
.yc{bottom:452.022214pt;}
.y37{bottom:456.440833pt;}
.ya8{bottom:459.074708pt;}
.y14{bottom:468.237440pt;}
.y6a{bottom:470.641639pt;}
.y9a{bottom:471.665260pt;}
.ya9{bottom:473.972347pt;}
.y36{bottom:485.240838pt;}
.y48{bottom:485.243045pt;}
.y25{bottom:486.168554pt;}
.h9{height:23.312501pt;}
.h6{height:27.197917pt;}
.h10{height:32.229167pt;}
.h5{height:38.854167pt;}
.h18{height:42.424481pt;}
.hf{height:42.739586pt;}
.h21{height:45.405349pt;}
.h1f{height:46.625001pt;}
.h4{height:49.380152pt;}
.h1e{height:50.510420pt;}
.h12{height:50.645836pt;}
.ha{height:53.976599pt;}
.h8{height:54.395833pt;}
.h15{height:54.669799pt;}
.h23{height:55.172915pt;}
.h1d{height:59.446883pt;}
.h1c{height:61.268936pt;}
.h24{height:61.383400pt;}
.h3{height:61.389589pt;}
.hc{height:62.166671pt;}
.h1a{height:62.943752pt;}
.h20{height:64.692187pt;}
.he{height:69.937502pt;}
.h14{height:73.822921pt;}
.h1b{height:76.795262pt;}
.h2{height:80.816665pt;}
.h19{height:80.992190pt;}
.h7{height:97.912503pt;}
.h1{height:100.243747pt;}
.h17{height:106.640628pt;}
.hb{height:116.562504pt;}
.hd{height:129.384373pt;}
.h11{height:138.125004pt;}
.h22{height:140.652098pt;}
.h13{height:148.422923pt;}
.h16{height:186.500006pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:9.000000pt;}
.x25{left:25.155726pt;}
.x3{left:27.086616pt;}
.x41{left:31.480026pt;}
.x2c{left:37.055705pt;}
.x1{left:41.724675pt;}
.x6f{left:48.685042pt;}
.x1a{left:50.278216pt;}
.x21{left:51.228318pt;}
.x49{left:53.063645pt;}
.x4{left:54.455964pt;}
.x6e{left:57.787416pt;}
.x3d{left:60.469822pt;}
.x2b{left:63.234462pt;}
.x14{left:70.892389pt;}
.x17{left:74.090104pt;}
.xb{left:79.205753pt;}
.x36{left:86.077220pt;}
.x5{left:89.724413pt;}
.xa{left:92.678699pt;}
.x35{left:93.856730pt;}
.x55{left:100.162968pt;}
.x56{left:103.264753pt;}
.x37{left:108.891955pt;}
.x40{left:114.461504pt;}
.x64{left:129.068931pt;}
.x57{left:133.348864pt;}
.x31{left:146.559055pt;}
.x63{left:159.788948pt;}
.x32{left:161.706623pt;}
.x15{left:163.533005pt;}
.x34{left:170.104995pt;}
.x33{left:194.559056pt;}
.x29{left:202.559366pt;}
.x2a{left:208.795267pt;}
.x67{left:211.248797pt;}
.xc{left:225.841259pt;}
.x42{left:231.755169pt;}
.xd{left:234.144567pt;}
.x69{left:265.282188pt;}
.x43{left:286.700487pt;}
.x3b{left:288.698385pt;}
.x44{left:312.760420pt;}
.x6{left:329.642268pt;}
.x19{left:330.745171pt;}
.x18{left:354.186821pt;}
.x45{left:368.242472pt;}
.x46{left:394.302403pt;}
.x3c{left:400.039143pt;}
.x3a{left:407.426994pt;}
.x4d{left:411.036568pt;}
.x52{left:415.700631pt;}
.x53{left:433.855860pt;}
.x4e{left:438.519922pt;}
.x1d{left:440.375384pt;}
.x54{left:442.673854pt;}
.x1e{left:449.047254pt;}
.x47{left:454.498384pt;}
.x48{left:480.157555pt;}
.x2f{left:481.226323pt;}
.x28{left:506.768194pt;}
.x24{left:508.224286pt;}
.x30{left:514.078756pt;}
.x2e{left:522.530785pt;}
.x27{left:523.467417pt;}
.x6c{left:531.132587pt;}
.x5f{left:538.165357pt;}
.x60{left:546.131217pt;}
.x2d{left:555.481468pt;}
.x12{left:559.506338pt;}
.x4b{left:561.104011pt;}
.x9{left:562.890328pt;}
.x4a{left:566.311723pt;}
.x3e{left:567.948077pt;}
.x23{left:569.067368pt;}
.x5a{left:571.001888pt;}
.x26{left:578.205912pt;}
.x68{left:580.950149pt;}
.x4c{left:588.331549pt;}
.x5e{left:606.329172pt;}
.x5d{left:612.437137pt;}
.x16{left:615.801820pt;}
.x58{left:619.531956pt;}
.x6d{left:628.044260pt;}
.x59{left:633.714780pt;}
.x8{left:635.436414pt;}
.x72{left:652.393061pt;}
.x10{left:653.881061pt;}
.xe{left:662.215221pt;}
.x7{left:672.254027pt;}
.x50{left:676.684052pt;}
.xf{left:681.383191pt;}
.x11{left:682.556842pt;}
.x6a{left:700.464922pt;}
.x71{left:703.321063pt;}
.x13{left:708.119993pt;}
.x4f{left:711.946917pt;}
.x51{left:716.610979pt;}
.x6b{left:719.645913pt;}
.x5c{left:727.116576pt;}
.x61{left:731.484913pt;}
.x1c{left:732.987463pt;}
.x5b{left:736.487846pt;}
.x38{left:739.442089pt;}
.x65{left:752.383698pt;}
.x66{left:756.023972pt;}
.x39{left:757.592762pt;}
.x62{left:768.527625pt;}
.x70{left:784.378945pt;}
.x1b{left:830.381997pt;}
.x22{left:872.367128pt;}
.x1f{left:923.278280pt;}
.x20{left:924.267857pt;}
.x2{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; }
  