
    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_1d6a149ec6db4f1299d34b59.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.116000;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_c64ad094880556ceb5d0507d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.131000;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_ba5598c8de21ee6bd9e6a00f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ae3fb252d0ffcbfa04a9fee8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.026855;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_29f699b431ec4a09f084c99e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_1f2c7cff39feb1f907640fe2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e72fcdbb5f5b46a89174a906.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ef6a0f6e5d3fdd937c87d41d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.038000;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;}
.m1{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);}
.m0{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.315897px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.574001px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.009148px;}
.ls5{letter-spacing:24.297032px;}
.ls4{letter-spacing:24.297042px;}
.ls3{letter-spacing:67.834432px;}
.ls1{letter-spacing:67.837634px;}
.ls6{letter-spacing:107.971947px;}
.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;}
}
.ws8{word-spacing:-18.282001px;}
.ws9{word-spacing:-17.640001px;}
.wsd{word-spacing:-14.883750px;}
.wsb{word-spacing:-13.122000px;}
.wsc{word-spacing:-11.718001px;}
.ws1{word-spacing:-10.584001px;}
.ws4{word-spacing:-8.529301px;}
.wse{word-spacing:-0.048600px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:89.689946px;}
.ws5{word-spacing:425.090829px;}
.ws3{word-spacing:484.029080px;}
.ws6{word-spacing:548.497574px;}
.ws2{word-spacing:919.468116px;}
.ws7{word-spacing:982.128324px;}
._f{margin-left:-12.818250px;}
._5{margin-left:-9.072001px;}
._3{margin-left:-7.717500px;}
._c{margin-left:-5.499300px;}
._2{margin-left:-4.360500px;}
._d{margin-left:-3.360000px;}
._1{margin-left:-2.284200px;}
._0{margin-left:-1.020600px;}
._6{width:1.765800px;}
._4{width:107.971947px;}
._9{width:510.971892px;}
._7{width:667.685139px;}
._b{width:688.670824px;}
._8{width:699.428149px;}
._e{width:758.868116px;}
._a{width:972.163973px;}
.fc7{color:rgb(209,149,3);}
.fc6{color:rgb(153,0,0);}
.fc4{color:rgb(17,85,204);}
.fc2{color:transparent;}
.fc5{color:rgb(153,153,153);}
.fc3{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(97,161,80);}
.fs10{font-size:18.900000px;}
.fsa{font-size:28.350001px;}
.fs15{font-size:33.750000px;}
.fsb{font-size:35.100003px;}
.fsc{font-size:36.450001px;}
.fs13{font-size:40.500001px;}
.fs0{font-size:43.200003px;}
.fs16{font-size:44.455501px;}
.fse{font-size:47.250003px;}
.fs17{font-size:48.000003px;}
.fs1{font-size:48.600002px;}
.fs4{font-size:51.300003px;}
.fs3{font-size:54.000000px;}
.fsf{font-size:58.319997px;}
.fs11{font-size:60.000000px;}
.fsd{font-size:60.750002px;}
.fs8{font-size:64.800002px;}
.fs6{font-size:66.000004px;}
.fs9{font-size:67.500000px;}
.fs7{font-size:72.000002px;}
.fs2{font-size:81.000003px;}
.fs5{font-size:96.000006px;}
.fs14{font-size:108.000001px;}
.fs18{font-size:129.600004px;}
.fs12{font-size:135.000001px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.821100px;}
.y2c{bottom:5.865996px;}
.y19{bottom:8.819950px;}
.y24{bottom:8.830223px;}
.yc3{bottom:12.044123px;}
.yc2{bottom:21.379779px;}
.y2{bottom:24.747658px;}
.yb5{bottom:29.880168px;}
.yc1{bottom:30.715434px;}
.y4b{bottom:32.919960px;}
.y36{bottom:37.567935px;}
.y4a{bottom:53.793284px;}
.y90{bottom:56.558887px;}
.y8d{bottom:56.558913px;}
.y35{bottom:61.192938px;}
.y49{bottom:64.323283px;}
.y5e{bottom:69.114696px;}
.y8f{bottom:70.531386px;}
.y8c{bottom:70.531411px;}
.yd6{bottom:73.372194px;}
.y34{bottom:84.817930px;}
.y48{bottom:85.196577px;}
.ybe{bottom:85.509898px;}
.y18{bottom:88.470126px;}
.yb3{bottom:91.883898px;}
.yde{bottom:92.176965px;}
.y8b{bottom:93.417134px;}
.y59{bottom:95.392969px;}
.y53{bottom:100.340232px;}
.ybd{bottom:104.139894px;}
.y33{bottom:108.442930px;}
.y47{bottom:109.391995px;}
.y17{bottom:111.240115px;}
.y43{bottom:112.969499px;}
.ydd{bottom:114.181947px;}
.y46{bottom:119.921997px;}
.ybc{bottom:122.769887px;}
.y42{bottom:123.499499px;}
.y40{bottom:125.187000px;}
.y45{bottom:130.451999px;}
.ye1{bottom:132.094121px;}
.y16{bottom:134.010105px;}
.y3{bottom:134.189338px;}
.y58{bottom:135.892970px;}
.y52{bottom:136.182748px;}
.ydc{bottom:136.186937px;}
.y41{bottom:137.404499px;}
.y44{bottom:140.981999px;}
.yc0{bottom:141.399890px;}
.yd5{bottom:149.353837px;}
.yb4{bottom:152.831970px;}
.y81{bottom:153.007489px;}
.y57{bottom:153.611708px;}
.y51{bottom:153.901483px;}
.ye0{bottom:153.964122px;}
.ydb{bottom:154.816930px;}
.y15{bottom:156.780083px;}
.ybb{bottom:160.029888px;}
.y32{bottom:161.238805px;}
.y7d{bottom:166.382587px;}
.y80{bottom:166.979987px;}
.y3f{bottom:171.712728px;}
.yda{bottom:176.821917px;}
.ydf{bottom:177.960388px;}
.ybf{bottom:178.659886px;}
.y3e{bottom:186.022726px;}
.y6{bottom:186.825511px;}
.y3b{bottom:188.034224px;}
.y7f{bottom:188.394312px;}
.y7c{bottom:188.394363px;}
.ya3{bottom:189.725235px;}
.y68{bottom:192.420050px;}
.yd4{bottom:193.363814px;}
.y56{bottom:195.529205px;}
.y50{bottom:195.818980px;}
.yba{bottom:197.289885px;}
.y14{bottom:197.550084px;}
.y27{bottom:197.891274px;}
.y3a{bottom:198.564224px;}
.y3d{bottom:200.332725px;}
.y5{bottom:202.215515px;}
.yb2{bottom:209.404665px;}
.y67{bottom:210.420051px;}
.y3c{bottom:214.642727px;}
.y55{bottom:216.487953px;}
.y4f{bottom:216.777725px;}
.y26{bottom:218.141274px;}
.y13{bottom:220.320085px;}
.yd9{bottom:220.831915px;}
.y66{bottom:228.420051px;}
.y4{bottom:231.537516px;}
.y30{bottom:232.916859px;}
.yc4{bottom:233.573886px;}
.yd3{bottom:237.373809px;}
.y25{bottom:238.391275px;}
.yd8{bottom:242.836912px;}
.y12{bottom:243.090063px;}
.y65{bottom:246.420052px;}
.y39{bottom:248.321688px;}
.y5b{bottom:248.670052px;}
.y7b{bottom:249.228792px;}
.y2f{bottom:253.166860px;}
.yd2{bottom:256.003808px;}
.y54{bottom:258.405449px;}
.y4e{bottom:259.403977px;}
.y64{bottom:264.420019px;}
.yd7{bottom:264.841913px;}
.ya2{bottom:265.500008px;}
.y11{bottom:265.860053px;}
.y5a{bottom:271.440042px;}
.y2e{bottom:273.416861px;}
.y38{bottom:275.809130px;}
.yd1{bottom:275.850042px;}
.y63{bottom:282.419997px;}
.ya1{bottom:283.499997px;}
.yb7{bottom:284.615033px;}
.yb9{bottom:284.697093px;}
.y10{bottom:288.630020px;}
.y5f{bottom:289.440020px;}
.yd0{bottom:298.620031px;}
.y62{bottom:300.419998px;}
.ya0{bottom:301.499998px;}
.yb6{bottom:302.663882px;}
.yb1{bottom:307.349975px;}
.y71{bottom:311.039987px;}
.y4d{bottom:312.210009px;}
.yc5{bottom:316.838884px;}
.y61{bottom:318.419998px;}
.y9f{bottom:319.499998px;}
.ycf{bottom:321.390021px;}
.y5c{bottom:322.528843px;}
.ya4{bottom:322.529056px;}
.y20{bottom:322.917646px;}
.y2d{bottom:322.917858px;}
.yb0{bottom:325.349976px;}
.y70{bottom:329.039987px;}
.yf{bottom:329.400010px;}
.y7a{bottom:333.809976px;}
.y4c{bottom:334.980010px;}
.y60{bottom:336.419999px;}
.y9e{bottom:337.499999px;}
.yaf{bottom:343.349976px;}
.yce{bottom:344.160010px;}
.yb8{bottom:344.913904px;}
.y6f{bottom:347.039988px;}
.y79{bottom:351.809977px;}
.ye{bottom:352.169999px;}
.y99{bottom:354.779977px;}
.y9d{bottom:355.499999px;}
.y8a{bottom:356.579977px;}
.y37{bottom:357.749999px;}
.yae{bottom:361.349977px;}
.y6e{bottom:365.039988px;}
.ycd{bottom:366.930000px;}
.y78{bottom:369.809977px;}
.y98{bottom:372.779977px;}
.y9c{bottom:373.500000px;}
.y89{bottom:374.579977px;}
.yd{bottom:374.939989px;}
.yad{bottom:379.349978px;}
.y31{bottom:380.519978px;}
.y6d{bottom:383.039989px;}
.y77{bottom:387.809978px;}
.ycc{bottom:389.699989px;}
.y97{bottom:390.779978px;}
.y9b{bottom:391.500000px;}
.y88{bottom:392.579978px;}
.yac{bottom:397.349978px;}
.yc{bottom:397.709978px;}
.y6c{bottom:401.039990px;}
.y2b{bottom:403.289990px;}
.y76{bottom:405.809978px;}
.y96{bottom:408.779979px;}
.y9a{bottom:409.500001px;}
.y87{bottom:410.579979px;}
.ycb{bottom:412.469990px;}
.yab{bottom:415.349979px;}
.y6b{bottom:419.039990px;}
.yb{bottom:420.479990px;}
.y75{bottom:423.809979px;}
.y2a{bottom:426.059990px;}
.y95{bottom:426.779979px;}
.y86{bottom:428.579990px;}
.yca{bottom:435.239991px;}
.y6a{bottom:437.039991px;}
.y74{bottom:441.809980px;}
.ya{bottom:443.249991px;}
.y94{bottom:444.779980px;}
.y85{bottom:446.579991px;}
.y29{bottom:448.829991px;}
.yaa{bottom:451.349980px;}
.y69{bottom:455.039991px;}
.yc9{bottom:458.009991px;}
.y73{bottom:459.809980px;}
.y93{bottom:462.779980px;}
.y84{bottom:464.579992px;}
.y9{bottom:466.019986px;}
.ya9{bottom:469.349980px;}
.y23{bottom:471.599986px;}
.y7e{bottom:473.039992px;}
.y72{bottom:477.809981px;}
.y92{bottom:480.779981px;}
.yc8{bottom:480.779992px;}
.y83{bottom:482.579992px;}
.ya8{bottom:487.349981px;}
.y8{bottom:488.789984px;}
.y22{bottom:494.369984px;}
.y8e{bottom:495.809987px;}
.y91{bottom:498.779986px;}
.y82{bottom:500.579985px;}
.yc7{bottom:503.549988px;}
.ya7{bottom:505.349982px;}
.y28{bottom:517.139982px;}
.ya6{bottom:523.349982px;}
.y7{bottom:532.709982px;}
.y21{bottom:539.909983px;}
.ya5{bottom:541.349983px;}
.yc6{bottom:544.229983px;}
.y1{bottom:580.499983px;}
.y1f{bottom:864.810004px;}
.y1e{bottom:887.580005px;}
.y1d{bottom:910.350000px;}
.y1c{bottom:933.119998px;}
.y1b{bottom:955.889996px;}
.y1a{bottom:978.659997px;}
.h15{height:13.759717px;}
.hb{height:22.605250px;}
.h1c{height:26.911011px;}
.hf{height:27.987453px;}
.he{height:28.577903px;}
.h10{height:29.063893px;}
.h18{height:32.293214px;}
.h1e{height:34.968752px;}
.h1b{height:35.921999px;}
.h13{height:37.675417px;}
.h2{height:38.707203px;}
.h1d{height:39.832129px;}
.hd{height:41.053711px;}
.h1a{height:43.057618px;}
.h3{height:43.545601px;}
.h5{height:45.605703px;}
.h7{height:48.082034px;}
.h12{height:48.439821px;}
.h11{height:49.637893px;}
.hc{height:51.317138px;}
.h14{height:51.846477px;}
.h16{height:53.760000px;}
.ha{height:53.822021px;}
.h1f{height:54.432002px;}
.h9{height:57.607202px;}
.h8{height:64.512002px;}
.h6{height:69.937504px;}
.h4{height:72.009002px;}
.h19{height:86.115235px;}
.h17{height:107.644044px;}
.h20{height:115.214404px;}
.h1{height:364.500012px;}
.h0{height:1080.000000px;}
.w1{width:648.000002px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.x28{left:2.278275px;}
.x17{left:13.102238px;}
.x2{left:21.052957px;}
.x2e{left:23.359690px;}
.x6{left:28.140895px;}
.x43{left:32.695079px;}
.x24{left:38.199689px;}
.x3c{left:40.708333px;}
.x3{left:43.260641px;}
.x34{left:47.565296px;}
.x2f{left:50.493499px;}
.xb{left:60.780111px;}
.x25{left:64.334062px;}
.xa{left:69.019063px;}
.x13{left:73.765001px;}
.x1{left:81.000003px;}
.x18{left:83.137915px;}
.x44{left:85.285259px;}
.x4{left:91.125003px;}
.x11{left:93.077199px;}
.xe{left:95.671962px;}
.x45{left:97.037683px;}
.xf{left:105.311645px;}
.x7{left:108.166017px;}
.x10{left:110.176818px;}
.x14{left:121.835427px;}
.x29{left:127.703130px;}
.x1f{left:143.793141px;}
.x8{left:145.125005px;}
.x19{left:149.316893px;}
.x27{left:162.166021px;}
.x1a{left:164.519480px;}
.x16{left:184.133246px;}
.x12{left:196.377810px;}
.x2a{left:199.125006px;}
.xc{left:241.214181px;}
.x38{left:245.935965px;}
.x3b{left:253.285740px;}
.x2d{left:283.025542px;}
.x35{left:289.320875px;}
.x36{left:299.698452px;}
.x39{left:313.541511px;}
.x40{left:315.917473px;}
.x20{left:335.647831px;}
.x22{left:339.034064px;}
.x3a{left:344.499797px;}
.x31{left:347.852087px;}
.x23{left:351.981723px;}
.x21{left:353.958417px;}
.x41{left:358.359522px;}
.x3e{left:364.558656px;}
.x32{left:372.057693px;}
.x3d{left:374.248380px;}
.x26{left:380.010294px;}
.x42{left:383.473777px;}
.x1b{left:387.275308px;}
.x1c{left:407.494995px;}
.x3f{left:418.078787px;}
.x1e{left:427.243007px;}
.x1d{left:433.692926px;}
.x37{left:458.497815px;}
.xd{left:516.051577px;}
.x33{left:777.691532px;}
.x2b{left:780.553532px;}
.x30{left:782.749533px;}
.x2c{left:784.279566px;}
.x9{left:789.121533px;}
.x15{left:790.453567px;}
.x5{left:791.983544px;}
@media print{
.v2{vertical-align:-21.614131pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.288001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.008131pt;}
.ls5{letter-spacing:21.597361pt;}
.ls4{letter-spacing:21.597370pt;}
.ls3{letter-spacing:60.297273pt;}
.ls1{letter-spacing:60.300119pt;}
.ls6{letter-spacing:95.975064pt;}
.ws8{word-spacing:-16.250668pt;}
.ws9{word-spacing:-15.680001pt;}
.wsd{word-spacing:-13.230000pt;}
.wsb{word-spacing:-11.664000pt;}
.wsc{word-spacing:-10.416001pt;}
.ws1{word-spacing:-9.408001pt;}
.ws4{word-spacing:-7.581601pt;}
.wse{word-spacing:-0.043200pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:79.724396pt;}
.ws5{word-spacing:377.858515pt;}
.ws3{word-spacing:430.248071pt;}
.ws6{word-spacing:487.553399pt;}
.ws2{word-spacing:817.304992pt;}
.ws7{word-spacing:873.002954pt;}
._f{margin-left:-11.394000pt;}
._5{margin-left:-8.064001pt;}
._3{margin-left:-6.860000pt;}
._c{margin-left:-4.888267pt;}
._2{margin-left:-3.876000pt;}
._d{margin-left:-2.986667pt;}
._1{margin-left:-2.030400pt;}
._0{margin-left:-0.907200pt;}
._6{width:1.569600pt;}
._4{width:95.975064pt;}
._9{width:454.197237pt;}
._7{width:593.497901pt;}
._b{width:612.151843pt;}
._8{width:621.713910pt;}
._e{width:674.549436pt;}
._a{width:864.145754pt;}
.fs10{font-size:16.800000pt;}
.fsa{font-size:25.200001pt;}
.fs15{font-size:30.000000pt;}
.fsb{font-size:31.200002pt;}
.fsc{font-size:32.400001pt;}
.fs13{font-size:36.000001pt;}
.fs0{font-size:38.400002pt;}
.fs16{font-size:39.516001pt;}
.fse{font-size:42.000003pt;}
.fs17{font-size:42.666669pt;}
.fs1{font-size:43.200001pt;}
.fs4{font-size:45.600003pt;}
.fs3{font-size:48.000000pt;}
.fsf{font-size:51.839997pt;}
.fs11{font-size:53.333334pt;}
.fsd{font-size:54.000002pt;}
.fs8{font-size:57.600002pt;}
.fs6{font-size:58.666670pt;}
.fs9{font-size:60.000000pt;}
.fs7{font-size:64.000002pt;}
.fs2{font-size:72.000002pt;}
.fs5{font-size:85.333339pt;}
.fs14{font-size:96.000001pt;}
.fs18{font-size:115.200004pt;}
.fs12{font-size:120.000001pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:3.396533pt;}
.y2c{bottom:5.214218pt;}
.y19{bottom:7.839956pt;}
.y24{bottom:7.849088pt;}
.yc3{bottom:10.705887pt;}
.yc2{bottom:19.004248pt;}
.y2{bottom:21.997918pt;}
.yb5{bottom:26.560149pt;}
.yc1{bottom:27.302608pt;}
.y4b{bottom:29.262187pt;}
.y36{bottom:33.393720pt;}
.y4a{bottom:47.816252pt;}
.y90{bottom:50.274566pt;}
.y8d{bottom:50.274589pt;}
.y35{bottom:54.393723pt;}
.y49{bottom:57.176252pt;}
.y5e{bottom:61.435285pt;}
.y8f{bottom:62.694565pt;}
.y8c{bottom:62.694588pt;}
.yd6{bottom:65.219728pt;}
.y34{bottom:75.393716pt;}
.y48{bottom:75.730291pt;}
.ybe{bottom:76.008798pt;}
.y18{bottom:78.640112pt;}
.yb3{bottom:81.674576pt;}
.yde{bottom:81.935080pt;}
.y8b{bottom:83.037452pt;}
.y59{bottom:84.793750pt;}
.y53{bottom:89.191317pt;}
.ybd{bottom:92.568794pt;}
.y33{bottom:96.393716pt;}
.y47{bottom:97.237329pt;}
.y17{bottom:98.880102pt;}
.y43{bottom:100.417332pt;}
.ydd{bottom:101.495064pt;}
.y46{bottom:106.597331pt;}
.ybc{bottom:109.128788pt;}
.y42{bottom:109.777333pt;}
.y40{bottom:111.277333pt;}
.y45{bottom:115.957333pt;}
.ye1{bottom:117.416996pt;}
.y16{bottom:119.120093pt;}
.y3{bottom:119.279412pt;}
.y58{bottom:120.793752pt;}
.y52{bottom:121.051332pt;}
.ydc{bottom:121.055055pt;}
.y41{bottom:122.137332pt;}
.y44{bottom:125.317333pt;}
.yc0{bottom:125.688791pt;}
.yd5{bottom:132.758966pt;}
.yb4{bottom:135.850640pt;}
.y81{bottom:136.006657pt;}
.y57{bottom:136.543741pt;}
.y51{bottom:136.801319pt;}
.ye0{bottom:136.856998pt;}
.ydb{bottom:137.615049pt;}
.y15{bottom:139.360074pt;}
.ybb{bottom:142.248789pt;}
.y32{bottom:143.323383pt;}
.y7d{bottom:147.895633pt;}
.y80{bottom:148.426655pt;}
.y3f{bottom:152.633536pt;}
.yda{bottom:157.175038pt;}
.ydf{bottom:158.187011pt;}
.ybf{bottom:158.808788pt;}
.y3e{bottom:165.353534pt;}
.y6{bottom:166.067121pt;}
.y3b{bottom:167.141532pt;}
.y7f{bottom:167.461611pt;}
.y7c{bottom:167.461656pt;}
.ya3{bottom:168.644653pt;}
.y68{bottom:171.040045pt;}
.yd4{bottom:171.878946pt;}
.y56{bottom:173.803738pt;}
.y50{bottom:174.061315pt;}
.yba{bottom:175.368787pt;}
.y14{bottom:175.600075pt;}
.y27{bottom:175.903354pt;}
.y3a{bottom:176.501533pt;}
.y3d{bottom:178.073533pt;}
.y5{bottom:179.747124pt;}
.yb2{bottom:186.137480pt;}
.y67{bottom:187.040045pt;}
.y3c{bottom:190.793535pt;}
.y55{bottom:192.433736pt;}
.y4f{bottom:192.691311pt;}
.y26{bottom:193.903355pt;}
.y13{bottom:195.840076pt;}
.yd9{bottom:196.295035pt;}
.y66{bottom:203.040046pt;}
.y4{bottom:205.811125pt;}
.y30{bottom:207.037208pt;}
.yc4{bottom:207.621232pt;}
.yd3{bottom:210.998941pt;}
.y25{bottom:211.903356pt;}
.yd8{bottom:215.855033pt;}
.y12{bottom:216.080056pt;}
.y65{bottom:219.040046pt;}
.y39{bottom:220.730389pt;}
.y5b{bottom:221.040046pt;}
.y7b{bottom:221.536704pt;}
.y2f{bottom:225.037209pt;}
.yd2{bottom:227.558940pt;}
.y54{bottom:229.693733pt;}
.y4e{bottom:230.581313pt;}
.y64{bottom:235.040017pt;}
.yd7{bottom:235.415034pt;}
.ya2{bottom:236.000007pt;}
.y11{bottom:236.320047pt;}
.y5a{bottom:241.280037pt;}
.y2e{bottom:243.037210pt;}
.y38{bottom:245.163671pt;}
.yd1{bottom:245.200037pt;}
.y63{bottom:251.039997pt;}
.ya1{bottom:251.999997pt;}
.yb7{bottom:252.991140pt;}
.yb9{bottom:253.064083pt;}
.y10{bottom:256.560017pt;}
.y5f{bottom:257.280018pt;}
.yd0{bottom:265.440028pt;}
.y62{bottom:267.039998pt;}
.ya0{bottom:267.999998pt;}
.yb6{bottom:269.034562pt;}
.yb1{bottom:273.199978pt;}
.y71{bottom:276.479988pt;}
.y4d{bottom:277.520008pt;}
.yc5{bottom:281.634564pt;}
.y61{bottom:283.039998pt;}
.y9f{bottom:283.999998pt;}
.ycf{bottom:285.680018pt;}
.y5c{bottom:286.692305pt;}
.ya4{bottom:286.692494pt;}
.y20{bottom:287.037907pt;}
.y2d{bottom:287.038096pt;}
.yb0{bottom:289.199979pt;}
.y70{bottom:292.479989pt;}
.yf{bottom:292.800009pt;}
.y7a{bottom:296.719979pt;}
.y4c{bottom:297.760009pt;}
.y60{bottom:299.039999pt;}
.y9e{bottom:299.999999pt;}
.yaf{bottom:305.199979pt;}
.yce{bottom:305.920009pt;}
.yb8{bottom:306.590136pt;}
.y6f{bottom:308.479989pt;}
.y79{bottom:312.719979pt;}
.ye{bottom:313.039999pt;}
.y99{bottom:315.359979pt;}
.y9d{bottom:315.999999pt;}
.y8a{bottom:316.959979pt;}
.y37{bottom:317.999999pt;}
.yae{bottom:321.199980pt;}
.y6e{bottom:324.479990pt;}
.ycd{bottom:326.160000pt;}
.y78{bottom:328.719980pt;}
.y98{bottom:331.359980pt;}
.y9c{bottom:332.000000pt;}
.y89{bottom:332.959980pt;}
.yd{bottom:333.279990pt;}
.yad{bottom:337.199980pt;}
.y31{bottom:338.239980pt;}
.y6d{bottom:340.479990pt;}
.y77{bottom:344.719980pt;}
.ycc{bottom:346.399990pt;}
.y97{bottom:347.359980pt;}
.y9b{bottom:348.000000pt;}
.y88{bottom:348.959980pt;}
.yac{bottom:353.199981pt;}
.yc{bottom:353.519981pt;}
.y6c{bottom:356.479991pt;}
.y2b{bottom:358.479991pt;}
.y76{bottom:360.719981pt;}
.y96{bottom:363.359981pt;}
.y9a{bottom:364.000001pt;}
.y87{bottom:364.959981pt;}
.ycb{bottom:366.639991pt;}
.yab{bottom:369.199981pt;}
.y6b{bottom:372.479991pt;}
.yb{bottom:373.759991pt;}
.y75{bottom:376.719981pt;}
.y2a{bottom:378.719991pt;}
.y95{bottom:379.359981pt;}
.y86{bottom:380.959991pt;}
.yca{bottom:386.879992pt;}
.y6a{bottom:388.479992pt;}
.y74{bottom:392.719982pt;}
.ya{bottom:393.999992pt;}
.y94{bottom:395.359982pt;}
.y85{bottom:396.959992pt;}
.y29{bottom:398.959992pt;}
.yaa{bottom:401.199982pt;}
.y69{bottom:404.479992pt;}
.yc9{bottom:407.119992pt;}
.y73{bottom:408.719982pt;}
.y93{bottom:411.359982pt;}
.y84{bottom:412.959992pt;}
.y9{bottom:414.239988pt;}
.ya9{bottom:417.199983pt;}
.y23{bottom:419.199988pt;}
.y7e{bottom:420.479993pt;}
.y72{bottom:424.719983pt;}
.y92{bottom:427.359983pt;}
.yc8{bottom:427.359993pt;}
.y83{bottom:428.959993pt;}
.ya8{bottom:433.199983pt;}
.y8{bottom:434.479986pt;}
.y22{bottom:439.439985pt;}
.y8e{bottom:440.719988pt;}
.y91{bottom:443.359987pt;}
.y82{bottom:444.959987pt;}
.yc7{bottom:447.599990pt;}
.ya7{bottom:449.199984pt;}
.y28{bottom:459.679984pt;}
.ya6{bottom:465.199984pt;}
.y7{bottom:473.519984pt;}
.y21{bottom:479.919985pt;}
.ya5{bottom:481.199985pt;}
.yc6{bottom:483.759985pt;}
.y1{bottom:515.999985pt;}
.y1f{bottom:768.720004pt;}
.y1e{bottom:788.960005pt;}
.y1d{bottom:809.200000pt;}
.y1c{bottom:829.439998pt;}
.y1b{bottom:849.679996pt;}
.y1a{bottom:869.919997pt;}
.h15{height:12.230859pt;}
.hb{height:20.093555pt;}
.h1c{height:23.920898pt;}
.hf{height:24.877736pt;}
.he{height:25.402580pt;}
.h10{height:25.834571pt;}
.h18{height:28.705079pt;}
.h1e{height:31.083335pt;}
.h1b{height:31.930666pt;}
.h13{height:33.489260pt;}
.h2{height:34.406402pt;}
.h1d{height:35.406337pt;}
.hd{height:36.492188pt;}
.h1a{height:38.273438pt;}
.h3{height:38.707201pt;}
.h5{height:40.538402pt;}
.h7{height:42.739586pt;}
.h12{height:43.057619pt;}
.h11{height:44.122572pt;}
.hc{height:45.615234pt;}
.h14{height:46.085758pt;}
.h16{height:47.786667pt;}
.ha{height:47.841797pt;}
.h1f{height:48.384002pt;}
.h9{height:51.206402pt;}
.h8{height:57.344002pt;}
.h6{height:62.166671pt;}
.h4{height:64.008002pt;}
.h19{height:76.546876pt;}
.h17{height:95.683595pt;}
.h20{height:102.412803pt;}
.h1{height:324.000011pt;}
.h0{height:960.000000pt;}
.w1{width:576.000002pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.x28{left:2.025133pt;}
.x17{left:11.646433pt;}
.x2{left:18.713740pt;}
.x2e{left:20.764169pt;}
.x6{left:25.014129pt;}
.x43{left:29.062293pt;}
.x24{left:33.955279pt;}
.x3c{left:36.185185pt;}
.x3{left:38.453903pt;}
.x34{left:42.280263pt;}
.x2f{left:44.883110pt;}
.xb{left:54.026765pt;}
.x25{left:57.185833pt;}
.xa{left:61.350278pt;}
.x13{left:65.568890pt;}
.x1{left:72.000002pt;}
.x18{left:73.900369pt;}
.x44{left:75.809119pt;}
.x4{left:81.000003pt;}
.x11{left:82.735288pt;}
.xe{left:85.041744pt;}
.x45{left:86.255718pt;}
.xf{left:93.610351pt;}
.x7{left:96.147571pt;}
.x10{left:97.934950pt;}
.x14{left:108.298158pt;}
.x29{left:113.513894pt;}
.x1f{left:127.816125pt;}
.x8{left:129.000004pt;}
.x19{left:132.726127pt;}
.x27{left:144.147575pt;}
.x1a{left:146.239538pt;}
.x16{left:163.673997pt;}
.x12{left:174.558053pt;}
.x2a{left:177.000006pt;}
.xc{left:214.412605pt;}
.x38{left:218.609746pt;}
.x3b{left:225.142880pt;}
.x2d{left:251.578259pt;}
.x35{left:257.174111pt;}
.x36{left:266.398624pt;}
.x39{left:278.703565pt;}
.x40{left:280.815531pt;}
.x20{left:298.353628pt;}
.x22{left:301.363612pt;}
.x3a{left:306.222042pt;}
.x31{left:309.201855pt;}
.x23{left:312.872642pt;}
.x21{left:314.629704pt;}
.x41{left:318.541797pt;}
.x3e{left:324.052139pt;}
.x32{left:330.717949pt;}
.x3d{left:332.665227pt;}
.x26{left:337.786928pt;}
.x42{left:340.865580pt;}
.x1b{left:344.244719pt;}
.x1c{left:362.217773pt;}
.x3f{left:371.625589pt;}
.x1e{left:379.771562pt;}
.x1d{left:385.504823pt;}
.x37{left:407.553613pt;}
.xd{left:458.712513pt;}
.x33{left:691.281362pt;}
.x2b{left:693.825362pt;}
.x30{left:695.777362pt;}
.x2c{left:697.137392pt;}
.x9{left:701.441362pt;}
.x15{left:702.625392pt;}
.x5{left:703.985373pt;}
}




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