
    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_e08a0d6ef4b705d1aa445f8e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_87925a89410c60ccafe21918.woff')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_3e9c7e9cbc3d169eeed64398.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_a8328e4d644134fd72503f9d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.083496;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_1de59ad76289fbb8df569db0.woff')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;}
.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);}
.v4{vertical-align:-48.642000px;}
.v3{vertical-align:-46.086000px;}
.v8{vertical-align:-39.114000px;}
.va{vertical-align:-34.866000px;}
.v5{vertical-align:-33.846000px;}
.v2{vertical-align:-32.148000px;}
.v7{vertical-align:-29.250000px;}
.v9{vertical-align:-26.022000px;}
.v1{vertical-align:-22.794000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:70.752000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.137934px;}
.ls4{letter-spacing:0.215838px;}
.lsb{letter-spacing:0.216000px;}
.lsc{letter-spacing:50.596800px;}
.lsa{letter-spacing:63.420252px;}
.ls2{letter-spacing:63.426252px;}
.ls1{letter-spacing:67.747200px;}
.ls3{letter-spacing:84.470400px;}
.ls9{letter-spacing:95.003604px;}
.ls7{letter-spacing:102.759030px;}
.ls5{letter-spacing:104.050440px;}
.ls8{letter-spacing:110.129304px;}
.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:-53.188986px;}
.ws1{word-spacing:-36.021600px;}
.ws5{word-spacing:-33.261606px;}
.ws2{word-spacing:-32.184000px;}
.ws9{word-spacing:-30.132000px;}
.ws3{word-spacing:-29.916000px;}
.ws4{word-spacing:-21.439908px;}
.ws6{word-spacing:-19.929042px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:295.572000px;}
._8{margin-left:-20.737944px;}
._9{margin-left:-11.713098px;}
._c{margin-left:-10.044000px;}
._2{margin-left:-7.842114px;}
._5{margin-left:-6.484212px;}
._7{margin-left:-4.881636px;}
._4{margin-left:-3.525354px;}
._a{margin-left:-2.161404px;}
._1{margin-left:-1.152108px;}
._3{width:1.079190px;}
._6{width:3.072978px;}
._b{width:1570.635342px;}
._0{width:2113.825500px;}
.fc4{color:rgb(30,144,255);}
.fc3{color:transparent;}
.fc2{color:rgb(158,158,158);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:43.200000px;}
.fs8{font-size:48.642000px;}
.fsf{font-size:54.084000px;}
.fs5{font-size:60.036000px;}
.fsb{font-size:61.740000px;}
.fs12{font-size:64.800000px;}
.fs2{font-size:71.946000px;}
.fs10{font-size:73.134000px;}
.fs0{font-size:84.018000px;}
.fsa{font-size:86.400000px;}
.fsd{font-size:90.654000px;}
.fs6{font-size:95.922000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:120.078000px;}
.fsc{font-size:137.934000px;}
.fse{font-size:144.054000px;}
.fs11{font-size:162.084000px;}
.fs1{font-size:192.018000px;}
.fs9{font-size:263.964000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y34{bottom:8.758500px;}
.y7c{bottom:9.099000px;}
.y9f{bottom:10.119000px;}
.y8a{bottom:10.161000px;}
.yad{bottom:11.224500px;}
.ya3{bottom:14.923500px;}
.y9a{bottom:15.477000px;}
.ya5{bottom:17.050500px;}
.y66{bottom:17.220000px;}
.y30{bottom:17.262000px;}
.y3e{bottom:26.701500px;}
.yac{bottom:31.378500px;}
.y5{bottom:31.422000px;}
.ya2{bottom:31.677000px;}
.ya4{bottom:33.802500px;}
.y65{bottom:34.143000px;}
.y2f{bottom:34.185000px;}
.y99{bottom:35.631000px;}
.y2{bottom:40.861500px;}
.y75{bottom:42.519000px;}
.y83{bottom:44.560500px;}
.y64{bottom:51.066000px;}
.y2e{bottom:51.108000px;}
.yb8{bottom:54.978000px;}
.ybd{bottom:56.422500px;}
.y63{bottom:67.989000px;}
.y2d{bottom:68.031000px;}
.y8b{bottom:69.688500px;}
.y3d{bottom:70.369500px;}
.ybc{bottom:76.578000px;}
.yca{bottom:76.833000px;}
.y62{bottom:84.912000px;}
.y2c{bottom:84.954000px;}
.y74{bottom:88.185000px;}
.yb7{bottom:91.714500px;}
.y40{bottom:93.457500px;}
.y7d{bottom:96.009000px;}
.y61{bottom:101.833500px;}
.y2b{bottom:101.877000px;}
.y3c{bottom:114.037500px;}
.y73{bottom:117.778500px;}
.y60{bottom:118.756500px;}
.y2a{bottom:118.800000px;}
.y82{bottom:122.668500px;}
.yc9{bottom:122.967000px;}
.y3f{bottom:126.921000px;}
.yb6{bottom:132.958500px;}
.y5f{bottom:135.679500px;}
.y29{bottom:135.723000px;}
.y6{bottom:147.670500px;}
.y97{bottom:149.499000px;}
.ya{bottom:150.859500px;}
.y3b{bottom:152.007000px;}
.y5e{bottom:152.602500px;}
.y28{bottom:152.644500px;}
.y39{bottom:158.343000px;}
.y81{bottom:160.299000px;}
.y72{bottom:163.444500px;}
.y5d{bottom:169.525500px;}
.y27{bottom:169.567500px;}
.yb5{bottom:169.695000px;}
.ybb{bottom:169.866000px;}
.y9{bottom:172.374000px;}
.yc8{bottom:177.817500px;}
.y3a{bottom:178.666500px;}
.y8e{bottom:180.198000px;}
.y5c{bottom:186.448500px;}
.y26{bottom:186.490500px;}
.yab{bottom:191.550000px;}
.y71{bottom:193.039500px;}
.y7b{bottom:193.378500px;}
.y8{bottom:196.780500px;}
.y80{bottom:197.928000px;}
.y96{bottom:199.545000px;}
.y5b{bottom:203.371500px;}
.y25{bottom:203.413500px;}
.yb4{bottom:210.939000px;}
.y5a{bottom:220.294500px;}
.y24{bottom:220.336500px;}
.y8d{bottom:222.760500px;}
.yba{bottom:223.695000px;}
.yc7{bottom:223.738500px;}
.y7{bottom:230.200500px;}
.y76{bottom:231.646500px;}
.y7f{bottom:235.558500px;}
.y59{bottom:237.217500px;}
.y23{bottom:237.259500px;}
.y70{bottom:238.705500px;}
.yb3{bottom:247.677000px;}
.yaa{bottom:253.501500px;}
.y58{bottom:254.139000px;}
.y22{bottom:254.182500px;}
.y8c{bottom:265.279500px;}
.y57{bottom:271.062000px;}
.y21{bottom:271.105500px;}
.y7e{bottom:273.189000px;}
.y37{bottom:276.250500px;}
.y33{bottom:276.292500px;}
.yb9{bottom:277.525500px;}
.yc6{bottom:278.589000px;}
.yc1{bottom:286.411500px;}
.y56{bottom:287.985000px;}
.y20{bottom:288.028500px;}
.yb2{bottom:288.921000px;}
.yaf{bottom:294.958500px;}
.y55{bottom:304.908000px;}
.y1f{bottom:304.950000px;}
.y89{bottom:310.435500px;}
.y9e{bottom:312.051000px;}
.ya9{bottom:312.901500px;}
.y91{bottom:313.327500px;}
.ya1{bottom:314.092500px;}
.y92{bottom:316.686000px;}
.y36{bottom:318.174000px;}
.y32{bottom:318.217500px;}
.y54{bottom:321.831000px;}
.y1e{bottom:321.873000px;}
.yc5{bottom:324.510000px;}
.yae{bottom:325.189500px;}
.y6f{bottom:331.866000px;}
.y98{bottom:337.818000px;}
.y53{bottom:338.754000px;}
.y1d{bottom:338.796000px;}
.yc0{bottom:340.242000px;}
.y88{bottom:340.539000px;}
.y6e{bottom:355.209000px;}
.y52{bottom:355.677000px;}
.y1c{bottom:355.719000px;}
.ya0{bottom:359.886000px;}
.y35{bottom:360.099000px;}
.y31{bottom:360.141000px;}
.y7a{bottom:361.756500px;}
.ya8{bottom:365.073000px;}
.y90{bottom:367.156500px;}
.y87{bottom:370.644000px;}
.y51{bottom:372.600000px;}
.y1b{bottom:372.642000px;}
.y6d{bottom:378.552000px;}
.yc4{bottom:379.360500px;}
.y50{bottom:389.523000px;}
.y1a{bottom:389.565000px;}
.ybf{bottom:394.072500px;}
.y6c{bottom:401.895000px;}
.yb1{bottom:405.595500px;}
.y4f{bottom:406.444500px;}
.y19{bottom:406.488000px;}
.y9d{bottom:408.061500px;}
.y86{bottom:409.209000px;}
.y79{bottom:415.587000px;}
.ya7{bottom:417.244500px;}
.y8f{bottom:420.987000px;}
.y4e{bottom:423.367500px;}
.y18{bottom:423.411000px;}
.y6b{bottom:425.239500px;}
.y4d{bottom:440.290500px;}
.y17{bottom:440.334000px;}
.y9c{bottom:446.541000px;}
.y85{bottom:446.754000px;}
.ybe{bottom:447.901500px;}
.y6a{bottom:448.582500px;}
.y4c{bottom:457.213500px;}
.y16{bottom:457.255500px;}
.yb0{bottom:459.424500px;}
.y95{bottom:469.756500px;}
.y69{bottom:471.925500px;}
.y4b{bottom:474.136500px;}
.y15{bottom:474.178500px;}
.ya6{bottom:479.196000px;}
.y78{bottom:480.939000px;}
.y4a{bottom:491.059500px;}
.y14{bottom:491.101500px;}
.y9b{bottom:492.334500px;}
.y84{bottom:493.780500px;}
.y68{bottom:495.268500px;}
.y49{bottom:507.982500px;}
.y13{bottom:508.024500px;}
.yc3{bottom:517.081500px;}
.y4{bottom:518.017500px;}
.y67{bottom:518.611500px;}
.y94{bottom:524.437500px;}
.y48{bottom:524.905500px;}
.y12{bottom:524.947500px;}
.y47{bottom:541.828500px;}
.y11{bottom:541.870500px;}
.y38{bottom:553.818000px;}
.y46{bottom:558.750000px;}
.y10{bottom:558.793500px;}
.y77{bottom:564.235500px;}
.yc2{bottom:570.912000px;}
.y3{bottom:571.846500px;}
.y45{bottom:575.673000px;}
.yf{bottom:575.716500px;}
.y93{bottom:578.266500px;}
.y44{bottom:592.596000px;}
.ye{bottom:592.639500px;}
.y43{bottom:609.519000px;}
.yd{bottom:609.561000px;}
.y42{bottom:626.442000px;}
.yc{bottom:626.484000px;}
.y41{bottom:643.365000px;}
.yb{bottom:643.407000px;}
.h8{height:43.502648px;}
.hc{height:46.711980px;}
.hd{height:46.717980px;}
.h13{height:51.306270px;}
.h5{height:52.132746px;}
.h1c{height:52.235813px;}
.he{height:54.230906px;}
.hf{height:54.236906px;}
.h3{height:55.998325px;}
.h12{height:57.542748px;}
.h19{height:57.753645px;}
.h18{height:57.759645px;}
.h15{height:60.421245px;}
.hb{height:69.505980px;}
.h1d{height:69.516879px;}
.h7{height:78.257812px;}
.h1a{height:78.333586px;}
.ha{height:86.378906px;}
.h6{height:87.009645px;}
.h11{height:93.052043px;}
.h9{height:96.038947px;}
.h14{height:99.948270px;}
.h1e{height:104.382879px;}
.h17{height:115.215064px;}
.h1b{height:117.447586px;}
.h16{height:122.884746px;}
.h4{height:139.138043px;}
.h10{height:191.270789px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x42{left:16.369500px;}
.xa{left:23.386500px;}
.x13{left:40.351500px;}
.x1e{left:53.149500px;}
.x41{left:54.978000px;}
.x1{left:59.527500px;}
.x11{left:65.905500px;}
.x1b{left:72.283500px;}
.x30{left:75.345000px;}
.x47{left:78.661500px;}
.x38{left:82.914000px;}
.x45{left:86.059500px;}
.x44{left:90.013500px;}
.x46{left:91.459500px;}
.x3c{left:95.670000px;}
.x43{left:100.644000px;}
.x25{left:102.430500px;}
.x4{left:106.299000px;}
.x12{left:108.424500px;}
.x1c{left:110.551500px;}
.x3f{left:113.995500px;}
.x2c{left:116.716500px;}
.x3d{left:121.180500px;}
.x33{left:122.244000px;}
.x26{left:123.307500px;}
.x14{left:133.044000px;}
.x37{left:138.189000px;}
.x2e{left:139.422000px;}
.x2d{left:160.470000px;}
.x27{left:161.575500px;}
.x32{left:170.674500px;}
.x36{left:187.554000px;}
.x28{left:201.969000px;}
.x3{left:222.123000px;}
.x3e{left:287.391000px;}
.x40{left:290.749500px;}
.x2b{left:295.512000px;}
.x2{left:315.453000px;}
.x1d{left:321.024000px;}
.x1a{left:327.147000px;}
.x1f{left:359.292000px;}
.x18{left:367.795500px;}
.x3a{left:389.055000px;}
.x2f{left:401.811000px;}
.x19{left:435.826500px;}
.x7{left:442.800000px;}
.x9{left:444.330000px;}
.x5{left:473.074500px;}
.x6{left:480.897000px;}
.x48{left:483.193500px;}
.xb{left:508.747500px;}
.x8{left:516.147000px;}
.xc{left:522.864000px;}
.x3b{left:526.648500px;}
.xd{left:533.835000px;}
.x16{left:542.125500px;}
.x15{left:563.386500px;}
.x17{left:567.637500px;}
.x10{left:645.661500px;}
.x39{left:656.929500px;}
.x35{left:793.417500px;}
.x31{left:801.496500px;}
.x24{left:804.897000px;}
.x20{left:809.490000px;}
.x21{left:811.659000px;}
.x23{left:816.846000px;}
.xe{left:818.503500px;}
.x22{left:834.789000px;}
.x34{left:843.633000px;}
.x2a{left:861.024000px;}
.xf{left:1005.591000px;}
.x29{left:1009.842000px;}
@media print{
.v4{vertical-align:-43.237333pt;}
.v3{vertical-align:-40.965333pt;}
.v8{vertical-align:-34.768000pt;}
.va{vertical-align:-30.992000pt;}
.v5{vertical-align:-30.085333pt;}
.v2{vertical-align:-28.576000pt;}
.v7{vertical-align:-26.000000pt;}
.v9{vertical-align:-23.130667pt;}
.v1{vertical-align:-20.261333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:62.890667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.122608pt;}
.ls4{letter-spacing:0.191856pt;}
.lsb{letter-spacing:0.192000pt;}
.lsc{letter-spacing:44.974933pt;}
.lsa{letter-spacing:56.373557pt;}
.ls2{letter-spacing:56.378891pt;}
.ls1{letter-spacing:60.219733pt;}
.ls3{letter-spacing:75.084800pt;}
.ls9{letter-spacing:84.447648pt;}
.ls7{letter-spacing:91.341360pt;}
.ls5{letter-spacing:92.489280pt;}
.ls8{letter-spacing:97.892715pt;}
.ws8{word-spacing:-47.279099pt;}
.ws1{word-spacing:-32.019200pt;}
.ws5{word-spacing:-29.565872pt;}
.ws2{word-spacing:-28.608000pt;}
.ws9{word-spacing:-26.784000pt;}
.ws3{word-spacing:-26.592000pt;}
.ws4{word-spacing:-19.057696pt;}
.ws6{word-spacing:-17.714704pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:262.730667pt;}
._8{margin-left:-18.433728pt;}
._9{margin-left:-10.411643pt;}
._c{margin-left:-8.928000pt;}
._2{margin-left:-6.970768pt;}
._5{margin-left:-5.763744pt;}
._7{margin-left:-4.339232pt;}
._4{margin-left:-3.133648pt;}
._a{margin-left:-1.921248pt;}
._1{margin-left:-1.024096pt;}
._3{width:0.959280pt;}
._6{width:2.731536pt;}
._b{width:1396.120304pt;}
._0{width:1878.956000pt;}
.fs7{font-size:38.400000pt;}
.fs8{font-size:43.237333pt;}
.fsf{font-size:48.074667pt;}
.fs5{font-size:53.365333pt;}
.fsb{font-size:54.880000pt;}
.fs12{font-size:57.600000pt;}
.fs2{font-size:63.952000pt;}
.fs10{font-size:65.008000pt;}
.fs0{font-size:74.682667pt;}
.fsa{font-size:76.800000pt;}
.fsd{font-size:80.581333pt;}
.fs6{font-size:85.264000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:106.736000pt;}
.fsc{font-size:122.608000pt;}
.fse{font-size:128.048000pt;}
.fs11{font-size:144.074667pt;}
.fs1{font-size:170.682667pt;}
.fs9{font-size:234.634667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y34{bottom:7.785333pt;}
.y7c{bottom:8.088000pt;}
.y9f{bottom:8.994667pt;}
.y8a{bottom:9.032000pt;}
.yad{bottom:9.977333pt;}
.ya3{bottom:13.265333pt;}
.y9a{bottom:13.757333pt;}
.ya5{bottom:15.156000pt;}
.y66{bottom:15.306667pt;}
.y30{bottom:15.344000pt;}
.y3e{bottom:23.734667pt;}
.yac{bottom:27.892000pt;}
.y5{bottom:27.930667pt;}
.ya2{bottom:28.157333pt;}
.ya4{bottom:30.046667pt;}
.y65{bottom:30.349333pt;}
.y2f{bottom:30.386667pt;}
.y99{bottom:31.672000pt;}
.y2{bottom:36.321333pt;}
.y75{bottom:37.794667pt;}
.y83{bottom:39.609333pt;}
.y64{bottom:45.392000pt;}
.y2e{bottom:45.429333pt;}
.yb8{bottom:48.869333pt;}
.ybd{bottom:50.153333pt;}
.y63{bottom:60.434667pt;}
.y2d{bottom:60.472000pt;}
.y8b{bottom:61.945333pt;}
.y3d{bottom:62.550667pt;}
.ybc{bottom:68.069333pt;}
.yca{bottom:68.296000pt;}
.y62{bottom:75.477333pt;}
.y2c{bottom:75.514667pt;}
.y74{bottom:78.386667pt;}
.yb7{bottom:81.524000pt;}
.y40{bottom:83.073333pt;}
.y7d{bottom:85.341333pt;}
.y61{bottom:90.518667pt;}
.y2b{bottom:90.557333pt;}
.y3c{bottom:101.366667pt;}
.y73{bottom:104.692000pt;}
.y60{bottom:105.561333pt;}
.y2a{bottom:105.600000pt;}
.y82{bottom:109.038667pt;}
.yc9{bottom:109.304000pt;}
.y3f{bottom:112.818667pt;}
.yb6{bottom:118.185333pt;}
.y5f{bottom:120.604000pt;}
.y29{bottom:120.642667pt;}
.y6{bottom:131.262667pt;}
.y97{bottom:132.888000pt;}
.ya{bottom:134.097333pt;}
.y3b{bottom:135.117333pt;}
.y5e{bottom:135.646667pt;}
.y28{bottom:135.684000pt;}
.y39{bottom:140.749333pt;}
.y81{bottom:142.488000pt;}
.y72{bottom:145.284000pt;}
.y5d{bottom:150.689333pt;}
.y27{bottom:150.726667pt;}
.yb5{bottom:150.840000pt;}
.ybb{bottom:150.992000pt;}
.y9{bottom:153.221333pt;}
.yc8{bottom:158.060000pt;}
.y3a{bottom:158.814667pt;}
.y8e{bottom:160.176000pt;}
.y5c{bottom:165.732000pt;}
.y26{bottom:165.769333pt;}
.yab{bottom:170.266667pt;}
.y71{bottom:171.590667pt;}
.y7b{bottom:171.892000pt;}
.y8{bottom:174.916000pt;}
.y80{bottom:175.936000pt;}
.y96{bottom:177.373333pt;}
.y5b{bottom:180.774667pt;}
.y25{bottom:180.812000pt;}
.yb4{bottom:187.501333pt;}
.y5a{bottom:195.817333pt;}
.y24{bottom:195.854667pt;}
.y8d{bottom:198.009333pt;}
.yba{bottom:198.840000pt;}
.yc7{bottom:198.878667pt;}
.y7{bottom:204.622667pt;}
.y76{bottom:205.908000pt;}
.y7f{bottom:209.385333pt;}
.y59{bottom:210.860000pt;}
.y23{bottom:210.897333pt;}
.y70{bottom:212.182667pt;}
.yb3{bottom:220.157333pt;}
.yaa{bottom:225.334667pt;}
.y58{bottom:225.901333pt;}
.y22{bottom:225.940000pt;}
.y8c{bottom:235.804000pt;}
.y57{bottom:240.944000pt;}
.y21{bottom:240.982667pt;}
.y7e{bottom:242.834667pt;}
.y37{bottom:245.556000pt;}
.y33{bottom:245.593333pt;}
.yb9{bottom:246.689333pt;}
.yc6{bottom:247.634667pt;}
.yc1{bottom:254.588000pt;}
.y56{bottom:255.986667pt;}
.y20{bottom:256.025333pt;}
.yb2{bottom:256.818667pt;}
.yaf{bottom:262.185333pt;}
.y55{bottom:271.029333pt;}
.y1f{bottom:271.066667pt;}
.y89{bottom:275.942667pt;}
.y9e{bottom:277.378667pt;}
.ya9{bottom:278.134667pt;}
.y91{bottom:278.513333pt;}
.ya1{bottom:279.193333pt;}
.y92{bottom:281.498667pt;}
.y36{bottom:282.821333pt;}
.y32{bottom:282.860000pt;}
.y54{bottom:286.072000pt;}
.y1e{bottom:286.109333pt;}
.yc5{bottom:288.453333pt;}
.yae{bottom:289.057333pt;}
.y6f{bottom:294.992000pt;}
.y98{bottom:300.282667pt;}
.y53{bottom:301.114667pt;}
.y1d{bottom:301.152000pt;}
.yc0{bottom:302.437333pt;}
.y88{bottom:302.701333pt;}
.y6e{bottom:315.741333pt;}
.y52{bottom:316.157333pt;}
.y1c{bottom:316.194667pt;}
.ya0{bottom:319.898667pt;}
.y35{bottom:320.088000pt;}
.y31{bottom:320.125333pt;}
.y7a{bottom:321.561333pt;}
.ya8{bottom:324.509333pt;}
.y90{bottom:326.361333pt;}
.y87{bottom:329.461333pt;}
.y51{bottom:331.200000pt;}
.y1b{bottom:331.237333pt;}
.y6d{bottom:336.490667pt;}
.yc4{bottom:337.209333pt;}
.y50{bottom:346.242667pt;}
.y1a{bottom:346.280000pt;}
.ybf{bottom:350.286667pt;}
.y6c{bottom:357.240000pt;}
.yb1{bottom:360.529333pt;}
.y4f{bottom:361.284000pt;}
.y19{bottom:361.322667pt;}
.y9d{bottom:362.721333pt;}
.y86{bottom:363.741333pt;}
.y79{bottom:369.410667pt;}
.ya7{bottom:370.884000pt;}
.y8f{bottom:374.210667pt;}
.y4e{bottom:376.326667pt;}
.y18{bottom:376.365333pt;}
.y6b{bottom:377.990667pt;}
.y4d{bottom:391.369333pt;}
.y17{bottom:391.408000pt;}
.y9c{bottom:396.925333pt;}
.y85{bottom:397.114667pt;}
.ybe{bottom:398.134667pt;}
.y6a{bottom:398.740000pt;}
.y4c{bottom:406.412000pt;}
.y16{bottom:406.449333pt;}
.yb0{bottom:408.377333pt;}
.y95{bottom:417.561333pt;}
.y69{bottom:419.489333pt;}
.y4b{bottom:421.454667pt;}
.y15{bottom:421.492000pt;}
.ya6{bottom:425.952000pt;}
.y78{bottom:427.501333pt;}
.y4a{bottom:436.497333pt;}
.y14{bottom:436.534667pt;}
.y9b{bottom:437.630667pt;}
.y84{bottom:438.916000pt;}
.y68{bottom:440.238667pt;}
.y49{bottom:451.540000pt;}
.y13{bottom:451.577333pt;}
.yc3{bottom:459.628000pt;}
.y4{bottom:460.460000pt;}
.y67{bottom:460.988000pt;}
.y94{bottom:466.166667pt;}
.y48{bottom:466.582667pt;}
.y12{bottom:466.620000pt;}
.y47{bottom:481.625333pt;}
.y11{bottom:481.662667pt;}
.y38{bottom:492.282667pt;}
.y46{bottom:496.666667pt;}
.y10{bottom:496.705333pt;}
.y77{bottom:501.542667pt;}
.yc2{bottom:507.477333pt;}
.y3{bottom:508.308000pt;}
.y45{bottom:511.709333pt;}
.yf{bottom:511.748000pt;}
.y93{bottom:514.014667pt;}
.y44{bottom:526.752000pt;}
.ye{bottom:526.790667pt;}
.y43{bottom:541.794667pt;}
.yd{bottom:541.832000pt;}
.y42{bottom:556.837333pt;}
.yc{bottom:556.874667pt;}
.y41{bottom:571.880000pt;}
.yb{bottom:571.917333pt;}
.h8{height:38.669021pt;}
.hc{height:41.521760pt;}
.hd{height:41.527094pt;}
.h13{height:45.605573pt;}
.h5{height:46.340219pt;}
.h1c{height:46.431833pt;}
.he{height:48.205250pt;}
.hf{height:48.210583pt;}
.h3{height:49.776289pt;}
.h12{height:51.149109pt;}
.h19{height:51.336573pt;}
.h18{height:51.341906pt;}
.h15{height:53.707773pt;}
.hb{height:61.783094pt;}
.h1d{height:61.792781pt;}
.h7{height:69.562500pt;}
.h1a{height:69.629854pt;}
.ha{height:76.781250pt;}
.h6{height:77.341906pt;}
.h11{height:82.712927pt;}
.h9{height:85.367953pt;}
.h14{height:88.842906pt;}
.h1e{height:92.784781pt;}
.h17{height:102.413391pt;}
.h1b{height:104.397854pt;}
.h16{height:109.230885pt;}
.h4{height:123.678260pt;}
.h10{height:170.018479pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x42{left:14.550667pt;}
.xa{left:20.788000pt;}
.x13{left:35.868000pt;}
.x1e{left:47.244000pt;}
.x41{left:48.869333pt;}
.x1{left:52.913333pt;}
.x11{left:58.582667pt;}
.x1b{left:64.252000pt;}
.x30{left:66.973333pt;}
.x47{left:69.921333pt;}
.x38{left:73.701333pt;}
.x45{left:76.497333pt;}
.x44{left:80.012000pt;}
.x46{left:81.297333pt;}
.x3c{left:85.040000pt;}
.x43{left:89.461333pt;}
.x25{left:91.049333pt;}
.x4{left:94.488000pt;}
.x12{left:96.377333pt;}
.x1c{left:98.268000pt;}
.x3f{left:101.329333pt;}
.x2c{left:103.748000pt;}
.x3d{left:107.716000pt;}
.x33{left:108.661333pt;}
.x26{left:109.606667pt;}
.x14{left:118.261333pt;}
.x37{left:122.834667pt;}
.x2e{left:123.930667pt;}
.x2d{left:142.640000pt;}
.x27{left:143.622667pt;}
.x32{left:151.710667pt;}
.x36{left:166.714667pt;}
.x28{left:179.528000pt;}
.x3{left:197.442667pt;}
.x3e{left:255.458667pt;}
.x40{left:258.444000pt;}
.x2b{left:262.677333pt;}
.x2{left:280.402667pt;}
.x1d{left:285.354667pt;}
.x1a{left:290.797333pt;}
.x1f{left:319.370667pt;}
.x18{left:326.929333pt;}
.x3a{left:345.826667pt;}
.x2f{left:357.165333pt;}
.x19{left:387.401333pt;}
.x7{left:393.600000pt;}
.x9{left:394.960000pt;}
.x5{left:420.510667pt;}
.x6{left:427.464000pt;}
.x48{left:429.505333pt;}
.xb{left:452.220000pt;}
.x8{left:458.797333pt;}
.xc{left:464.768000pt;}
.x3b{left:468.132000pt;}
.xd{left:474.520000pt;}
.x16{left:481.889333pt;}
.x15{left:500.788000pt;}
.x17{left:504.566667pt;}
.x10{left:573.921333pt;}
.x39{left:583.937333pt;}
.x35{left:705.260000pt;}
.x31{left:712.441333pt;}
.x24{left:715.464000pt;}
.x20{left:719.546667pt;}
.x21{left:721.474667pt;}
.x23{left:726.085333pt;}
.xe{left:727.558667pt;}
.x22{left:742.034667pt;}
.x34{left:749.896000pt;}
.x2a{left:765.354667pt;}
.xf{left:893.858667pt;}
.x29{left:897.637333pt;}
}




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