
    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_7fcc5b4dd0305902e52431c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.256000;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_71540ebe8375f7dad7505c76.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.707031;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_2c1fab41e484202dceea99ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.863770;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_48258f37cb42c1b43838113f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.250000;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;}
.m6{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:30.289719px;}
.lsb{letter-spacing:32.916889px;}
.ls7{letter-spacing:33.230402px;}
.ls0{letter-spacing:39.644609px;}
.ls2{letter-spacing:40.364216px;}
.ls4{letter-spacing:40.394461px;}
.ls5{letter-spacing:52.993071px;}
.ls6{letter-spacing:53.712671px;}
.lsa{letter-spacing:59.822542px;}
.ls8{letter-spacing:59.855526px;}
.ls3{letter-spacing:80.066141px;}
.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;}
}
.ws9{word-spacing:-60.047976px;}
.ws8{word-spacing:-57.263055px;}
.ws3{word-spacing:-46.637261px;}
.ws2{word-spacing:-40.031984px;}
.ws0{word-spacing:-38.774576px;}
.ws5{word-spacing:-36.629265px;}
.ws6{word-spacing:-33.426707px;}
.ws4{word-spacing:-30.023988px;}
.wsa{word-spacing:-23.418711px;}
.ws7{word-spacing:-10.149591px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-27.220322px;}
._2{margin-left:-25.559378px;}
._3{margin-left:-4.370866px;}
._7{margin-left:-2.350812px;}
._0{margin-left:-1.137744px;}
._1{width:1.273224px;}
._8{width:2.502755px;}
._5{width:3.640139px;}
._4{width:6.272061px;}
._9{width:31.528823px;}
._a{width:38.663121px;}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(248,151,69);}
.fc2{color:rgb(199,99,97);}
.fc1{color:rgb(55,95,146);}
.fc0{color:rgb(229,108,9);}
.fsd{font-size:71.999971px;}
.fsf{font-size:84.239966px;}
.fsc{font-size:89.999964px;}
.fs1{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.fsb{font-size:113.759954px;}
.fs7{font-size:120.239952px;}
.fs6{font-size:131.759947px;}
.fs0{font-size:143.999942px;}
.fs8{font-size:167.759933px;}
.fsa{font-size:192.239923px;}
.fs5{font-size:215.999914px;}
.fse{font-size:228.239909px;}
.fs4{font-size:239.759904px;}
.fs3{font-size:264.239894px;}
.fs9{font-size:287.999885px;}
.y0{bottom:0.000000px;}
.y5{bottom:61.260332px;}
.ya{bottom:63.060958px;}
.yb9{bottom:83.940233px;}
.y3e{bottom:93.840314px;}
.y77{bottom:115.980311px;}
.yb8{bottom:116.340220px;}
.ycd{bottom:116.880310px;}
.y1e{bottom:122.100398px;}
.y4b{bottom:123.000308px;}
.y9b{bottom:126.960378px;}
.y3d{bottom:131.280304px;}
.y27{bottom:131.280394px;}
.y8a{bottom:134.700303px;}
.y38{bottom:134.880303px;}
.ya2{bottom:146.940298px;}
.y76{bottom:148.380298px;}
.y42{bottom:149.280387px;}
.yb7{bottom:151.080297px;}
.ycc{bottom:151.440217px;}
.y66{bottom:156.840294px;}
.y5b{bottom:159.360293px;}
.y1d{bottom:159.720293px;}
.y9a{bottom:160.980293px;}
.yac{bottom:162.960292px;}
.y6d{bottom:162.960382px;}
.y80{bottom:165.120291px;}
.y54{bottom:166.740290px;}
.y89{bottom:168.360290px;}
.y26{bottom:168.900289px;}
.yf{bottom:177.720286px;}
.y4a{bottom:178.440246px;}
.ycb{bottom:181.860284px;}
.ya6{bottom:182.580284px;}
.y75{bottom:185.640283px;}
.y3c{bottom:186.900271px;}
.y41{bottom:186.900282px;}
.y37{bottom:190.500101px;}
.y65{bottom:194.100279px;}
.y6c{bottom:195.360369px;}
.ya1{bottom:200.940277px;}
.y99{bottom:204.180347px;}
.y88{bottom:207.060274px;}
.yb6{bottom:209.940183px;}
.y5a{bottom:214.800271px;}
.y1c{bottom:215.160181px;}
.y49{bottom:215.880236px;}
.yca{bottom:216.420220px;}
.y4f{bottom:216.600270px;}
.y53{bottom:222.360268px;}
.y92{bottom:222.540178px;}
.y7f{bottom:222.900268px;}
.y25{bottom:224.340177px;}
.y3b{bottom:224.340262px;}
.y2b{bottom:225.420267px;}
.y36{bottom:227.940176px;}
.ybd{bottom:227.940266px;}
.y6b{bottom:232.440264px;}
.y98{bottom:238.200262px;}
.y74{bottom:238.380262px;}
.yb5{bottom:242.340170px;}
.y40{bottom:242.340260px;}
.yc9{bottom:246.660258px;}
.y64{bottom:246.840258px;}
.y87{bottom:247.920258px;}
.y1b{bottom:252.600256px;}
.y48{bottom:253.500256px;}
.y91{bottom:254.940165px;}
.ya0{bottom:254.940255px;}
.y30{bottom:258.720074px;}
.y24{bottom:261.780252px;}
.y35{bottom:265.380251px;}
.y59{bottom:270.240249px;}
.y4e{bottom:272.220248px;}
.y73{bottom:275.640247px;}
.y9{bottom:276.180247px;}
.yb4{bottom:277.080246px;}
.y13{bottom:277.800246px;}
.y3f{bottom:279.780335px;}
.yc8{bottom:281.220165px;}
.y97{bottom:281.400244px;}
.y63{bottom:284.100243px;}
.y7e{bottom:284.280243px;}
.y6a{bottom:285.360333px;}
.y90{bottom:287.340152px;}
.ya5{bottom:292.020240px;}
.yad{bottom:294.000239px;}
.y2f{bottom:296.160149px;}
.y2a{bottom:299.040237px;}
.ye{bottom:307.320234px;}
.y1a{bottom:308.220144px;}
.y47{bottom:308.940228px;}
.y9f{bottom:308.940233px;}
.yc7{bottom:311.640232px;}
.y7d{bottom:313.080232px;}
.y96{bottom:316.140349px;}
.y23{bottom:317.400140px;}
.y3a{bottom:317.400230px;}
.y86{bottom:317.760230px;}
.y8f{bottom:319.920229px;}
.y34{bottom:321.000229px;}
.y69{bottom:322.440228px;}
.y58{bottom:325.860227px;}
.y4d{bottom:327.660226px;}
.y72{bottom:328.380226px;}
.ybc{bottom:328.740226px;}
.y52{bottom:333.240224px;}
.y2e{bottom:333.600224px;}
.yb3{bottom:335.940133px;}
.y62{bottom:341.520220px;}
.y7c{bottom:342.060220px;}
.y8{bottom:342.780220px;}
.y19{bottom:345.660219px;}
.y46{bottom:346.380218px;}
.yc6{bottom:347.640218px;}
.y8e{bottom:352.320216px;}
.y22{bottom:354.840215px;}
.yab{bottom:355.380215px;}
.y85{bottom:356.460214px;}
.y71{bottom:360.960303px;}
.y12{bottom:362.400212px;}
.y9e{bottom:362.940212px;}
.yb2{bottom:368.340120px;}
.y7b{bottom:370.860209px;}
.y29{bottom:372.480208px;}
.y39{bottom:372.840208px;}
.y33{bottom:376.440116px;}
.y68{bottom:380.040205px;}
.y57{bottom:381.300204px;}
.y4c{bottom:383.100204px;}
.yc5{bottom:383.640204px;}
.y8d{bottom:384.720203px;}
.y95{bottom:388.140333px;}
.y51{bottom:388.860201px;}
.y2d{bottom:389.220201px;}
.y7{bottom:392.640200px;}
.y70{bottom:393.360290px;}
.y61{bottom:394.440289px;}
.y84{bottom:395.160199px;}
.y7a{bottom:399.660197px;}
.yb1{bottom:400.920197px;}
.y18{bottom:401.100287px;}
.ya4{bottom:401.460196px;}
.y45{bottom:402.000191px;}
.y21{bottom:410.280283px;}
.y32{bottom:413.880191px;}
.y9d{bottom:416.940190px;}
.y8c{bottom:417.120190px;}
.yc4{bottom:418.200139px;}
.y94{bottom:424.140175px;}
.y79{bottom:428.640186px;}
.y83{bottom:428.820185px;}
.y6f{bottom:430.440185px;}
.y60{bottom:431.520184px;}
.yd{bottom:432.960184px;}
.y67{bottom:435.120183px;}
.yb0{bottom:435.480183px;}
.yaa{bottom:435.480471px;}
.y56{bottom:436.740182px;}
.y17{bottom:438.720182px;}
.y44{bottom:439.440181px;}
.y50{bottom:444.300179px;}
.y2c{bottom:444.660179px;}
.y28{bottom:445.920179px;}
.y20{bottom:447.900178px;}
.yc3{bottom:448.440178px;}
.ybb{bottom:458.520174px;}
.y78{bottom:460.320173px;}
.y82{bottom:462.660172px;}
.y6{bottom:465.000171px;}
.yba{bottom:465.720171px;}
.y31{bottom:469.500169px;}
.ya9{bottom:471.480312px;}
.yc{bottom:476.160167px;}
.y11{bottom:477.960166px;}
.y8b{bottom:482.100164px;}
.yc2{bottom:484.440163px;}
.yc1{bottom:484.440451px;}
.y6e{bottom:485.520163px;}
.y9c{bottom:490.380161px;}
.y55{bottom:492.360160px;}
.y16{bottom:494.160159px;}
.yaf{bottom:494.340069px;}
.y43{bottom:494.880159px;}
.y93{bottom:496.140159px;}
.y81{bottom:501.180157px;}
.y1f{bottom:503.340156px;}
.ya8{bottom:507.480154px;}
.yc0{bottom:520.440293px;}
.yb{bottom:523.320148px;}
.y10{bottom:525.300147px;}
.y5d{bottom:526.740146px;}
.yae{bottom:529.080145px;}
.y5f{bottom:535.200143px;}
.y15{bottom:552.120136px;}
.ybf{bottom:556.440134px;}
.ya3{bottom:568.680130px;}
.y5c{bottom:574.080127px;}
.y5e{bottom:582.360124px;}
.ya7{bottom:585.060123px;}
.y14{bottom:599.280117px;}
.ybe{bottom:607.740114px;}
.y4{bottom:685.680259px;}
.y3{bottom:713.580163px;}
.y2{bottom:771.360048px;}
.y1{bottom:803.040036px;}
.h11{height:67.679973px;}
.h12{height:68.327973px;}
.h3{height:74.039033px;}
.h15{height:79.943728px;}
.h10{height:85.409966px;}
.h2{height:90.876204px;}
.h9{height:99.632773px;}
.hc{height:102.491959px;}
.h13{height:107.272757px;}
.hf{height:107.958197px;}
.ha{height:114.107714px;}
.hb{height:116.072180px;}
.h7{height:125.040190px;}
.he{height:133.009751px;}
.h1{height:136.655945px;}
.h8{height:182.826138px;}
.hd{height:199.265545px;}
.h6{height:204.983918px;}
.h5{height:227.532149px;}
.h4{height:250.763660px;}
.h14{height:273.311891px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:124.544645px;}
.x1{left:138.945694px;}
.x5{left:141.825693px;}
.x33{left:215.446611px;}
.x20{left:220.486412px;}
.x1e{left:228.946408px;}
.x31{left:245.686402px;}
.x26{left:254.146398px;}
.x2b{left:262.606395px;}
.x12{left:271.066392px;}
.x21{left:274.486390px;}
.x1f{left:282.946387px;}
.x29{left:284.026386px;}
.x18{left:296.446381px;}
.x25{left:304.366378px;}
.x13{left:308.146377px;}
.x23{left:311.026376px;}
.x27{left:313.366375px;}
.x22{left:316.786373px;}
.x14{left:319.666372px;}
.x24{left:321.286371px;}
.x16{left:325.066370px;}
.x28{left:327.406369px;}
.xb{left:329.746368px;}
.xc{left:333.526367px;}
.x2c{left:344.326362px;}
.x19{left:350.446360px;}
.x17{left:356.926357px;}
.x2{left:363.046355px;}
.x3a{left:365.026354px;}
.xe{left:367.186353px;}
.x32{left:372.766351px;}
.x11{left:379.246348px;}
.x1a{left:387.526345px;}
.x34{left:391.486343px;}
.x7{left:404.266338px;}
.x9{left:412.906335px;}
.x39{left:417.946333px;}
.x37{left:424.606330px;}
.x35{left:426.766329px;}
.x36{left:440.086324px;}
.x38{left:444.946322px;}
.x4{left:448.005715px;}
.xf{left:529.186288px;}
.x3b{left:531.526287px;}
.xd{left:543.046283px;}
.x10{left:587.506265px;}
.x1c{left:687.406225px;}
.x1b{left:723.406211px;}
.x15{left:731.326207px;}
.x6{left:788.566185px;}
.x3{left:800.266582px;}
.x2d{left:811.066176px;}
.x2e{left:819.526172px;}
.x2f{left:833.746167px;}
.x8{left:896.206142px;}
.x30{left:912.226135px;}
.x1d{left:937.966125px;}
.x2a{left:962.986115px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:26.924195pt;}
.lsb{letter-spacing:29.259457pt;}
.ls7{letter-spacing:29.538135pt;}
.ls0{letter-spacing:35.239653pt;}
.ls2{letter-spacing:35.879303pt;}
.ls4{letter-spacing:35.906187pt;}
.ls5{letter-spacing:47.104952pt;}
.ls6{letter-spacing:47.744596pt;}
.lsa{letter-spacing:53.175593pt;}
.ls8{letter-spacing:53.204912pt;}
.ls3{letter-spacing:71.169903pt;}
.ws9{word-spacing:-53.375979pt;}
.ws8{word-spacing:-50.900493pt;}
.ws3{word-spacing:-41.455343pt;}
.ws2{word-spacing:-35.583986pt;}
.ws0{word-spacing:-34.466290pt;}
.ws5{word-spacing:-32.559347pt;}
.ws6{word-spacing:-29.712628pt;}
.ws4{word-spacing:-26.687989pt;}
.wsa{word-spacing:-20.816632pt;}
.ws7{word-spacing:-9.021859pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-24.195842pt;}
._2{margin-left:-22.719447pt;}
._3{margin-left:-3.885214pt;}
._7{margin-left:-2.089611pt;}
._0{margin-left:-1.011328pt;}
._1{width:1.131755pt;}
._8{width:2.224671pt;}
._5{width:3.235679pt;}
._4{width:5.575166pt;}
._9{width:28.025621pt;}
._a{width:34.367218pt;}
.fsd{font-size:63.999974pt;}
.fsf{font-size:74.879970pt;}
.fsc{font-size:79.999968pt;}
.fs1{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.fsb{font-size:101.119960pt;}
.fs7{font-size:106.879957pt;}
.fs6{font-size:117.119953pt;}
.fs0{font-size:127.999949pt;}
.fs8{font-size:149.119940pt;}
.fsa{font-size:170.879932pt;}
.fs5{font-size:191.999923pt;}
.fse{font-size:202.879919pt;}
.fs4{font-size:213.119915pt;}
.fs3{font-size:234.879906pt;}
.fs9{font-size:255.999898pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:54.453629pt;}
.ya{bottom:56.054185pt;}
.yb9{bottom:74.613541pt;}
.y3e{bottom:83.413613pt;}
.y77{bottom:103.093609pt;}
.yb8{bottom:103.413529pt;}
.ycd{bottom:103.893609pt;}
.y1e{bottom:108.533687pt;}
.y4b{bottom:109.333607pt;}
.y9b{bottom:112.853670pt;}
.y3d{bottom:116.693604pt;}
.y27{bottom:116.693684pt;}
.y8a{bottom:119.733603pt;}
.y38{bottom:119.893603pt;}
.ya2{bottom:130.613598pt;}
.y76{bottom:131.893598pt;}
.y42{bottom:132.693678pt;}
.yb7{bottom:134.293597pt;}
.ycc{bottom:134.613526pt;}
.y66{bottom:139.413595pt;}
.y5b{bottom:141.653594pt;}
.y1d{bottom:141.973594pt;}
.y9a{bottom:143.093593pt;}
.yac{bottom:144.853593pt;}
.y6d{bottom:144.853673pt;}
.y80{bottom:146.773592pt;}
.y54{bottom:148.213591pt;}
.y89{bottom:149.653591pt;}
.y26{bottom:150.133591pt;}
.yf{bottom:157.973587pt;}
.y4a{bottom:158.613552pt;}
.ycb{bottom:161.653586pt;}
.ya6{bottom:162.293586pt;}
.y75{bottom:165.013585pt;}
.y3c{bottom:166.133575pt;}
.y41{bottom:166.133584pt;}
.y37{bottom:169.333423pt;}
.y65{bottom:172.533582pt;}
.y6c{bottom:173.653661pt;}
.ya1{bottom:178.613579pt;}
.y99{bottom:181.493642pt;}
.y88{bottom:184.053577pt;}
.yb6{bottom:186.613496pt;}
.y5a{bottom:190.933574pt;}
.y1c{bottom:191.253494pt;}
.y49{bottom:191.893544pt;}
.yca{bottom:192.373529pt;}
.y4f{bottom:192.533574pt;}
.y53{bottom:197.653572pt;}
.y92{bottom:197.813492pt;}
.y7f{bottom:198.133571pt;}
.y25{bottom:199.413491pt;}
.y3b{bottom:199.413566pt;}
.y2b{bottom:200.373571pt;}
.y36{bottom:202.613490pt;}
.ybd{bottom:202.613570pt;}
.y6b{bottom:206.613568pt;}
.y98{bottom:211.733566pt;}
.y74{bottom:211.893566pt;}
.yb5{bottom:215.413485pt;}
.y40{bottom:215.413565pt;}
.yc9{bottom:219.253563pt;}
.y64{bottom:219.413563pt;}
.y87{bottom:220.373563pt;}
.y1b{bottom:224.533561pt;}
.y48{bottom:225.333561pt;}
.y91{bottom:226.613480pt;}
.ya0{bottom:226.613560pt;}
.y30{bottom:229.973399pt;}
.y24{bottom:232.693558pt;}
.y35{bottom:235.893556pt;}
.y59{bottom:240.213555pt;}
.y4e{bottom:241.973554pt;}
.y73{bottom:245.013553pt;}
.y9{bottom:245.493552pt;}
.yb4{bottom:246.293552pt;}
.y13{bottom:246.933552pt;}
.y3f{bottom:248.693631pt;}
.yc8{bottom:249.973480pt;}
.y97{bottom:250.133551pt;}
.y63{bottom:252.533550pt;}
.y7e{bottom:252.693550pt;}
.y6a{bottom:253.653629pt;}
.y90{bottom:255.413469pt;}
.ya5{bottom:259.573547pt;}
.yad{bottom:261.333546pt;}
.y2f{bottom:263.253465pt;}
.y2a{bottom:265.813544pt;}
.ye{bottom:273.173541pt;}
.y1a{bottom:273.973461pt;}
.y47{bottom:274.613536pt;}
.y9f{bottom:274.613541pt;}
.yc7{bottom:277.013540pt;}
.y7d{bottom:278.293539pt;}
.y96{bottom:281.013644pt;}
.y23{bottom:282.133458pt;}
.y3a{bottom:282.133538pt;}
.y86{bottom:282.453538pt;}
.y8f{bottom:284.373537pt;}
.y34{bottom:285.333537pt;}
.y69{bottom:286.613536pt;}
.y58{bottom:289.653535pt;}
.y4d{bottom:291.253534pt;}
.y72{bottom:291.893534pt;}
.ybc{bottom:292.213534pt;}
.y52{bottom:296.213532pt;}
.y2e{bottom:296.533532pt;}
.yb3{bottom:298.613451pt;}
.y62{bottom:303.573529pt;}
.y7c{bottom:304.053529pt;}
.y8{bottom:304.693529pt;}
.y19{bottom:307.253528pt;}
.y46{bottom:307.893528pt;}
.yc6{bottom:309.013527pt;}
.y8e{bottom:313.173525pt;}
.y22{bottom:315.413525pt;}
.yab{bottom:315.893524pt;}
.y85{bottom:316.853524pt;}
.y71{bottom:320.853602pt;}
.y12{bottom:322.133522pt;}
.y9e{bottom:322.613522pt;}
.yb2{bottom:327.413440pt;}
.y7b{bottom:329.653519pt;}
.y29{bottom:331.093518pt;}
.y39{bottom:331.413518pt;}
.y33{bottom:334.613437pt;}
.y68{bottom:337.813516pt;}
.y57{bottom:338.933515pt;}
.y4c{bottom:340.533514pt;}
.yc5{bottom:341.013514pt;}
.y8d{bottom:341.973514pt;}
.y95{bottom:345.013629pt;}
.y51{bottom:345.653512pt;}
.y2d{bottom:345.973512pt;}
.y7{bottom:349.013511pt;}
.y70{bottom:349.653591pt;}
.y61{bottom:350.613590pt;}
.y84{bottom:351.253510pt;}
.y7a{bottom:355.253509pt;}
.yb1{bottom:356.373508pt;}
.y18{bottom:356.533588pt;}
.ya4{bottom:356.853508pt;}
.y45{bottom:357.333503pt;}
.y21{bottom:364.693585pt;}
.y32{bottom:367.893504pt;}
.y9d{bottom:370.613502pt;}
.y8c{bottom:370.773502pt;}
.yc4{bottom:371.733457pt;}
.y94{bottom:377.013489pt;}
.y79{bottom:381.013498pt;}
.y83{bottom:381.173498pt;}
.y6f{bottom:382.613498pt;}
.y60{bottom:383.573497pt;}
.yd{bottom:384.853497pt;}
.y67{bottom:386.773496pt;}
.yb0{bottom:387.093496pt;}
.yaa{bottom:387.093752pt;}
.y56{bottom:388.213495pt;}
.y17{bottom:389.973495pt;}
.y44{bottom:390.613494pt;}
.y50{bottom:394.933493pt;}
.y2c{bottom:395.253493pt;}
.y28{bottom:396.373492pt;}
.y20{bottom:398.133491pt;}
.yc3{bottom:398.613491pt;}
.ybb{bottom:407.573488pt;}
.y78{bottom:409.173487pt;}
.y82{bottom:411.253486pt;}
.y6{bottom:413.333485pt;}
.yba{bottom:413.973485pt;}
.y31{bottom:417.333484pt;}
.ya9{bottom:419.093611pt;}
.yc{bottom:423.253481pt;}
.y11{bottom:424.853481pt;}
.y8b{bottom:428.533479pt;}
.yc2{bottom:430.613478pt;}
.yc1{bottom:430.613734pt;}
.y6e{bottom:431.573478pt;}
.y9c{bottom:435.893476pt;}
.y55{bottom:437.653476pt;}
.y16{bottom:439.253475pt;}
.yaf{bottom:439.413395pt;}
.y43{bottom:439.893475pt;}
.y93{bottom:441.013474pt;}
.y81{bottom:445.493472pt;}
.y1f{bottom:447.413472pt;}
.ya8{bottom:451.093470pt;}
.yc0{bottom:462.613594pt;}
.yb{bottom:465.173465pt;}
.y10{bottom:466.933464pt;}
.y5d{bottom:468.213463pt;}
.yae{bottom:470.293463pt;}
.y5f{bottom:475.733460pt;}
.y15{bottom:490.773454pt;}
.ybf{bottom:494.613453pt;}
.ya3{bottom:505.493448pt;}
.y5c{bottom:510.293447pt;}
.y5e{bottom:517.653444pt;}
.ya7{bottom:520.053443pt;}
.y14{bottom:532.693438pt;}
.ybe{bottom:540.213435pt;}
.y4{bottom:609.493564pt;}
.y3{bottom:634.293479pt;}
.y2{bottom:685.653376pt;}
.y1{bottom:713.813365pt;}
.h11{height:60.159976pt;}
.h12{height:60.735976pt;}
.h3{height:65.812474pt;}
.h15{height:71.061092pt;}
.h10{height:75.919970pt;}
.h2{height:80.778848pt;}
.h9{height:88.562465pt;}
.hc{height:91.103964pt;}
.h13{height:95.353562pt;}
.hf{height:95.962842pt;}
.ha{height:101.429079pt;}
.hb{height:103.175271pt;}
.h7{height:111.146836pt;}
.he{height:118.230890pt;}
.h1{height:121.471951pt;}
.h8{height:162.512122pt;}
.hd{height:177.124929pt;}
.h6{height:182.207927pt;}
.h5{height:202.250799pt;}
.h4{height:222.901031pt;}
.h14{height:242.943903pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:110.706351pt;}
.x1{left:123.507284pt;}
.x5{left:126.067283pt;}
.x33{left:191.508099pt;}
.x20{left:195.987922pt;}
.x1e{left:203.507919pt;}
.x31{left:218.387913pt;}
.x26{left:225.907910pt;}
.x2b{left:233.427907pt;}
.x12{left:240.947904pt;}
.x21{left:243.987902pt;}
.x1f{left:251.507899pt;}
.x29{left:252.467899pt;}
.x18{left:263.507895pt;}
.x25{left:270.547892pt;}
.x13{left:273.907890pt;}
.x23{left:276.467889pt;}
.x27{left:278.547889pt;}
.x22{left:281.587887pt;}
.x14{left:284.147886pt;}
.x24{left:285.587886pt;}
.x16{left:288.947884pt;}
.x28{left:291.027884pt;}
.xb{left:293.107883pt;}
.xc{left:296.467881pt;}
.x2c{left:306.067878pt;}
.x19{left:311.507875pt;}
.x17{left:317.267873pt;}
.x2{left:322.707871pt;}
.x3a{left:324.467870pt;}
.xe{left:326.387869pt;}
.x32{left:331.347867pt;}
.x11{left:337.107865pt;}
.x1a{left:344.467862pt;}
.x34{left:347.987861pt;}
.x7{left:359.347856pt;}
.x9{left:367.027853pt;}
.x39{left:371.507851pt;}
.x37{left:377.427849pt;}
.x35{left:379.347848pt;}
.x36{left:391.187844pt;}
.x38{left:395.507842pt;}
.x4{left:398.227303pt;}
.xf{left:470.387812pt;}
.x3b{left:472.467811pt;}
.xd{left:482.707807pt;}
.x10{left:522.227791pt;}
.x1c{left:611.027756pt;}
.x1b{left:643.027743pt;}
.x15{left:650.067740pt;}
.x6{left:700.947720pt;}
.x3{left:711.348073pt;}
.x2d{left:720.947712pt;}
.x2e{left:728.467709pt;}
.x2f{left:741.107704pt;}
.x8{left:796.627681pt;}
.x30{left:810.867676pt;}
.x1d{left:833.747667pt;}
.x2a{left:855.987658pt;}
}




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