
    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_608445dc103dc3f455cc0afa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_10337037546701e04e978848.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a1979f5dc764934969c715d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_9fb3cbef8993ce8f5ecf6769.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.714355;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_ca7982a1d5779d74f5f6ac36.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_cf156bd88555e7fa541da6c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m3{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-27.359989px;}
.v2{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.039991px;}
.v4{vertical-align:115.199954px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.106523px;}
.ls1{letter-spacing:0.143965px;}
.ls3{letter-spacing:0.325547px;}
.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;}
}
.ws3{word-spacing:-60.191941px;}
.ws5{word-spacing:-60.047976px;}
.ws4{word-spacing:-53.442699px;}
.ws9{word-spacing:-46.637261px;}
.ws0{word-spacing:-40.031984px;}
.wsd{word-spacing:-33.803986px;}
.ws6{word-spacing:-33.533230px;}
.ws11{word-spacing:-26.621269px;}
.ws13{word-spacing:-23.418711px;}
.ws8{word-spacing:-19.427355px;}
.ws2{word-spacing:-16.613273px;}
.ws7{word-spacing:-10.802156px;}
.wsb{word-spacing:-1.539276px;}
.wsa{word-spacing:-1.243103px;}
.wsf{word-spacing:-0.612052px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:1.207653px;}
.wse{word-spacing:1.511911px;}
.ws10{word-spacing:1249.975657px;}
.wsc{word-spacing:1839.707211px;}
._d{margin-left:-66.453244px;}
._5{margin-left:-33.226547px;}
._20{margin-left:-6.261961px;}
._b{margin-left:-3.999048px;}
._3{margin-left:-2.678060px;}
._0{margin-left:-1.008000px;}
._1{width:1.583999px;}
._2{width:2.879999px;}
._10{width:4.701839px;}
._1e{width:21.034347px;}
._7{width:28.474577px;}
._e{width:29.491715px;}
._13{width:48.287501px;}
._c{width:65.239894px;}
._8{width:94.716033px;}
._12{width:103.283919px;}
._15{width:111.599955px;}
._a{width:119.915905px;}
._1c{width:123.263951px;}
._6{width:127.671771px;}
._1d{width:298.911881px;}
._1f{width:442.792870px;}
._f{width:586.799765px;}
._1a{width:695.067525px;}
._19{width:1009.155995px;}
._18{width:1067.864306px;}
._1b{width:1165.209493px;}
._17{width:1229.079196px;}
._16{width:1271.222301px;}
._14{width:1481.581229px;}
._11{width:1494.422212px;}
._4{width:1514.701216px;}
._9{width:1526.221211px;}
.fc1{color:rgb(0,153,153);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:43.208623px;}
.fs2{font-size:59.759976px;}
.fs7{font-size:66.239974px;}
.fsa{font-size:69.882572px;}
.fsb{font-size:70.211372px;}
.fs1{font-size:84.239966px;}
.fse{font-size:95.759962px;}
.fsd{font-size:107.999957px;}
.fs8{font-size:113.759954px;}
.fs6{font-size:120.239952px;}
.fs0{font-size:143.999942px;}
.fsc{font-size:167.759933px;}
.fs4{font-size:192.239923px;}
.fs3{font-size:215.999914px;}
.fs5{font-size:264.239894px;}
.y0{bottom:0.000000px;}
.y39{bottom:1.080285px;}
.y3a{bottom:2.520284px;}
.y43{bottom:3.780184px;}
.y3f{bottom:3.780209px;}
.y3d{bottom:3.780234px;}
.y41{bottom:3.780265px;}
.y45{bottom:4.320184px;}
.y47{bottom:4.320209px;}
.y49{bottom:4.320234px;}
.y4b{bottom:4.320267px;}
.y4d{bottom:4.320284px;}
.y4f{bottom:4.320300px;}
.y37{bottom:11.520033px;}
.y8{bottom:87.900322px;}
.y10{bottom:93.660320px;}
.y2c{bottom:93.840319px;}
.y98{bottom:117.060310px;}
.yc4{bottom:124.980307px;}
.y4e{bottom:137.220000px;}
.y7e{bottom:140.640301px;}
.y61{bottom:148.380298px;}
.y18{bottom:148.740298px;}
.y85{bottom:155.580295px;}
.y97{bottom:162.420292px;}
.yc3{bottom:163.860291px;}
.y25{bottom:167.460290px;}
.y75{bottom:169.980289px;}
.y7d{bottom:175.200287px;}
.y4c{bottom:178.980000px;}
.y38{bottom:180.060000px;}
.ya5{bottom:194.640279px;}
.y58{bottom:195.540279px;}
.y8f{bottom:198.420278px;}
.y60{bottom:200.220277px;}
.yc2{bottom:202.740276px;}
.y74{bottom:204.540275px;}
.y96{bottom:207.780274px;}
.yb9{bottom:213.000272px;}
.y84{bottom:213.180272px;}
.y17{bottom:217.860270px;}
.y4a{bottom:220.920000px;}
.y24{bottom:225.060267px;}
.y40{bottom:226.860000px;}
.yb8{bottom:238.200262px;}
.y73{bottom:239.100261px;}
.ya4{bottom:240.000261px;}
.y8e{bottom:241.620260px;}
.yaa{bottom:249.360257px;}
.y7c{bottom:251.700256px;}
.y5f{bottom:252.060256px;}
.y57{bottom:253.140256px;}
.y68{bottom:255.660255px;}
.y95{bottom:263.220252px;}
.y72{bottom:273.660248px;}
.y16{bottom:275.460247px;}
.yb7{bottom:281.940244px;}
.y83{bottom:282.300244px;}
.y23{bottom:282.660244px;}
.y7{bottom:283.380244px;}
.ya9{bottom:285.360243px;}
.yf{bottom:287.700242px;}
.y67{bottom:288.060242px;}
.yc1{bottom:289.140241px;}
.y8d{bottom:293.460240px;}
.y5e{bottom:295.260239px;}
.ya3{bottom:295.440239px;}
.y48{bottom:303.180000px;}
.y3c{bottom:303.540000px;}
.y56{bottom:303.540236px;}
.y71{bottom:308.220234px;}
.y94{bottom:308.580234px;}
.y20{bottom:310.740233px;}
.y9b{bottom:318.660230px;}
.y66{bottom:320.460229px;}
.ya8{bottom:321.360228px;}
.yb6{bottom:325.860227px;}
.y6{bottom:326.580226px;}
.y7b{bottom:328.020226px;}
.y8c{bottom:336.660222px;}
.y82{bottom:339.900221px;}
.y22{bottom:340.260221px;}
.ya2{bottom:340.800221px;}
.y70{bottom:342.780220px;}
.y15{bottom:344.580219px;}
.y1c{bottom:345.300219px;}
.y5d{bottom:347.100218px;}
.y55{bottom:353.940215px;}
.ye{bottom:356.820214px;}
.ya7{bottom:357.360214px;}
.y93{bottom:364.020211px;}
.y46{bottom:365.280000px;}
.y3e{bottom:366.720000px;}
.yc0{bottom:366.900210px;}
.y1f{bottom:368.340210px;}
.yb5{bottom:369.600209px;}
.y5{bottom:369.780209px;}
.y9a{bottom:374.100207px;}
.y6f{bottom:385.980203px;}
.y8b{bottom:388.500202px;}
.ya6{bottom:393.360200px;}
.ya1{bottom:396.240199px;}
.y5c{bottom:398.940197px;}
.y2e{bottom:402.900196px;}
.y54{bottom:404.340195px;}
.ybf{bottom:405.780195px;}
.y2b{bottom:406.320194px;}
.y81{bottom:409.020193px;}
.y4{bottom:412.980192px;}
.yb4{bottom:413.340192px;}
.y14{bottom:413.700192px;}
.yd{bottom:414.420191px;}
.y92{bottom:419.460189px;}
.y6e{bottom:420.540189px;}
.y1e{bottom:425.940187px;}
.y44{bottom:427.380000px;}
.y42{bottom:429.900000px;}
.y8a{bottom:431.700184px;}
.ya0{bottom:441.600180px;}
.y64{bottom:442.860180px;}
.yb3{bottom:449.340177px;}
.y2a{bottom:449.520177px;}
.y7a{bottom:451.860176px;}
.y5b{bottom:452.220176px;}
.ybe{bottom:453.300176px;}
.y6d{bottom:455.100175px;}
.y3{bottom:456.180175px;}
.y53{bottom:464.820171px;}
.y2d{bottom:472.020168px;}
.yb2{bottom:474.540167px;}
.y89{bottom:474.900167px;}
.y63{bottom:475.260167px;}
.y80{bottom:478.140166px;}
.y79{bottom:480.660165px;}
.y13{bottom:482.820164px;}
.yc{bottom:483.540164px;}
.y29{bottom:485.520163px;}
.y21{bottom:488.220162px;}
.y6c{bottom:489.660161px;}
.y3b{bottom:491.460160px;}
.ybd{bottom:492.180160px;}
.y1d{bottom:495.060159px;}
.y9f{bottom:497.040158px;}
.y5a{bottom:502.620156px;}
.y62{bottom:507.660154px;}
.y52{bottom:515.220151px;}
.yb1{bottom:518.460150px;}
.y91{bottom:520.260149px;}
.y35{bottom:525.480147px;}
.y88{bottom:526.740146px;}
.y28{bottom:528.720146px;}
.y6b{bottom:532.860144px;}
.ybc{bottom:539.700141px;}
.yb{bottom:541.140141px;}
.y9e{bottom:542.400140px;}
.y7f{bottom:547.260138px;}
.y1b{bottom:552.660136px;}
.y59{bottom:553.020136px;}
.y12{bottom:553.200136px;}
.yb0{bottom:554.460135px;}
.y2{bottom:556.980134px;}
.y78{bottom:557.160134px;}
.y65{bottom:558.600134px;}
.y34{bottom:562.920132px;}
.y27{bottom:564.720131px;}
.y51{bottom:565.620131px;}
.y6a{bottom:567.420130px;}
.y87{bottom:569.940129px;}
.y99{bottom:575.700127px;}
.ybb{bottom:587.220122px;}
.yaf{bottom:590.460121px;}
.y9d{bottom:597.840118px;}
.y1{bottom:600.180117px;}
.y33{bottom:600.540117px;}
.y26{bottom:600.720117px;}
.y77{bottom:604.680115px;}
.ya{bottom:610.260113px;}
.y50{bottom:616.020111px;}
.y11{bottom:618.000110px;}
.y90{bottom:621.060109px;}
.y86{bottom:621.780108px;}
.yba{bottom:626.100107px;}
.yae{bottom:626.460106px;}
.y76{bottom:633.480104px;}
.y32{bottom:639.420101px;}
.y9c{bottom:643.200100px;}
.yad{bottom:662.460092px;}
.y31{bottom:675.240087px;}
.y69{bottom:681.900084px;}
.yac{bottom:698.460078px;}
.y1a{bottom:698.820077px;}
.y30{bottom:714.840071px;}
.y9{bottom:731.220065px;}
.yab{bottom:752.820056px;}
.y19{bottom:763.620052px;}
.y2f{bottom:788.460042px;}
.y36{bottom:799.440000px;}
.hb{height:9.540000px;}
.hd{height:10.800000px;}
.hf{height:19.440000px;}
.h10{height:19.980000px;}
.hc{height:42.406900px;}
.ha{height:51.840000px;}
.h5{height:62.327788px;}
.h8{height:64.978568px;}
.h11{height:68.908622px;}
.he{height:72.885339px;}
.h9{height:79.765281px;}
.h2{height:87.859652px;}
.h13{height:88.382777px;}
.h14{height:99.874648px;}
.h7{height:125.406512px;}
.h1{height:150.187440px;}
.h12{height:174.968368px;}
.h4{height:200.500232px;}
.h15{height:215.074601px;}
.h3{height:225.281160px;}
.h6{height:275.593952px;}
.h0{height:892.500000px;}
.w2{width:50.760000px;}
.w4{width:67.320000px;}
.w3{width:87.840000px;}
.w1{width:516.060000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x4c{left:106.186458px;}
.x4b{left:131.926447px;}
.x3f{left:140.565844px;}
.x36{left:143.445960px;}
.xe{left:148.845840px;}
.xa{left:156.226438px;}
.x39{left:165.946434px;}
.x4a{left:167.026433px;}
.x42{left:173.506431px;}
.x4d{left:176.566429px;}
.x41{left:183.046427px;}
.xf{left:189.345824px;}
.x15{left:196.726421px;}
.x10{left:202.845819px;}
.x3a{left:206.446417px;}
.x13{left:214.186414px;}
.x21{left:215.626414px;}
.x46{left:217.066413px;}
.x1d{left:221.746411px;}
.x17{left:223.186411px;}
.x22{left:224.626410px;}
.xb{left:228.226409px;}
.x11{left:236.685805px;}
.x3e{left:250.906400px;}
.x47{left:256.306397px;}
.x45{left:263.866394px;}
.x19{left:268.726393px;}
.x52{left:272.686391px;}
.x49{left:275.746390px;}
.x1b{left:282.406387px;}
.x1a{left:287.626385px;}
.x51{left:301.126380px;}
.x2{left:306.346377px;}
.x2d{left:338.205600px;}
.xd{left:346.126362px;}
.x1c{left:350.086360px;}
.x5{left:358.906356px;}
.x40{left:360.166356px;}
.x48{left:364.126354px;}
.x4{left:367.366353px;}
.x38{left:373.306351px;}
.x4e{left:377.986349px;}
.x37{left:380.866348px;}
.x3{left:389.146344px;}
.x1{left:391.306343px;}
.x2c{left:394.545600px;}
.x28{left:398.865600px;}
.x27{left:410.386336px;}
.x7{left:424.066330px;}
.x16{left:434.506326px;}
.x8{left:437.386325px;}
.x3c{left:440.446324px;}
.x20{left:464.746314px;}
.x50{left:472.846311px;}
.x6{left:475.006310px;}
.x3d{left:483.106307px;}
.x53{left:487.066305px;}
.x3b{left:490.306304px;}
.x2e{left:507.045600px;}
.x9{left:508.126297px;}
.x43{left:509.746296px;}
.x18{left:517.486293px;}
.x1e{left:524.686290px;}
.x14{left:527.746289px;}
.x25{left:538.366285px;}
.x24{left:539.446284px;}
.x44{left:548.626281px;}
.x12{left:550.785680px;}
.x2f{left:563.205600px;}
.x2b{left:572.926271px;}
.x29{left:577.065600px;}
.x31{left:619.545600px;}
.x30{left:675.705600px;}
.x2a{left:700.545600px;}
.x26{left:706.126218px;}
.x32{left:732.045600px;}
.x4f{left:796.846181px;}
.x33{left:844.365600px;}
.x35{left:900.705600px;}
.x34{left:956.865600px;}
.x23{left:1089.886064px;}
.xc{left:1098.166061px;}
.x1f{left:1128.946048px;}
@media print{
.v3{vertical-align:-24.319990pt;}
.v2{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.479992pt;}
.v4{vertical-align:102.399959pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.094688pt;}
.ls1{letter-spacing:0.127969pt;}
.ls3{letter-spacing:0.289375pt;}
.ws3{word-spacing:-53.503947pt;}
.ws5{word-spacing:-53.375979pt;}
.ws4{word-spacing:-47.504621pt;}
.ws9{word-spacing:-41.455343pt;}
.ws0{word-spacing:-35.583986pt;}
.wsd{word-spacing:-30.047988pt;}
.ws6{word-spacing:-29.807316pt;}
.ws11{word-spacing:-23.663351pt;}
.ws13{word-spacing:-20.816632pt;}
.ws8{word-spacing:-17.268760pt;}
.ws2{word-spacing:-14.767354pt;}
.ws7{word-spacing:-9.601916pt;}
.wsb{word-spacing:-1.368245pt;}
.wsa{word-spacing:-1.104980pt;}
.wsf{word-spacing:-0.544046pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:1.073469pt;}
.wse{word-spacing:1.343921pt;}
.ws10{word-spacing:1111.089473pt;}
.wsc{word-spacing:1635.295298pt;}
._d{margin-left:-59.069550pt;}
._5{margin-left:-29.534708pt;}
._20{margin-left:-5.566188pt;}
._b{margin-left:-3.554709pt;}
._3{margin-left:-2.380498pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.407999pt;}
._2{width:2.559999pt;}
._10{width:4.179413pt;}
._1e{width:18.697197pt;}
._7{width:25.310735pt;}
._e{width:26.214858pt;}
._13{width:42.922223pt;}
._c{width:57.991017pt;}
._8{width:84.192030pt;}
._12{width:91.807928pt;}
._15{width:99.199960pt;}
._a{width:106.591916pt;}
._1c{width:109.567956pt;}
._6{width:113.486019pt;}
._1d{width:265.699450pt;}
._1f{width:393.593662pt;}
._f{width:521.599791pt;}
._1a{width:617.837800pt;}
._19{width:897.027551pt;}
._18{width:949.212717pt;}
._1b{width:1035.741772pt;}
._17{width:1092.514841pt;}
._16{width:1129.975379pt;}
._14{width:1316.961092pt;}
._11{width:1328.375299pt;}
._4{width:1346.401081pt;}
._9{width:1356.641076pt;}
.fs9{font-size:38.407665pt;}
.fs2{font-size:53.119979pt;}
.fs7{font-size:58.879976pt;}
.fsa{font-size:62.117842pt;}
.fsb{font-size:62.410108pt;}
.fs1{font-size:74.879970pt;}
.fse{font-size:85.119966pt;}
.fsd{font-size:95.999962pt;}
.fs8{font-size:101.119960pt;}
.fs6{font-size:106.879957pt;}
.fs0{font-size:127.999949pt;}
.fsc{font-size:149.119940pt;}
.fs4{font-size:170.879932pt;}
.fs3{font-size:191.999923pt;}
.fs5{font-size:234.879906pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:0.960253pt;}
.y3a{bottom:2.240252pt;}
.y43{bottom:3.360163pt;}
.y3f{bottom:3.360186pt;}
.y3d{bottom:3.360208pt;}
.y41{bottom:3.360235pt;}
.y45{bottom:3.840164pt;}
.y47{bottom:3.840186pt;}
.y49{bottom:3.840208pt;}
.y4b{bottom:3.840237pt;}
.y4d{bottom:3.840252pt;}
.y4f{bottom:3.840267pt;}
.y37{bottom:10.240029pt;}
.y8{bottom:78.133619pt;}
.y10{bottom:83.253617pt;}
.y2c{bottom:83.413617pt;}
.y98{bottom:104.053609pt;}
.yc4{bottom:111.093606pt;}
.y4e{bottom:121.973333pt;}
.y7e{bottom:125.013601pt;}
.y61{bottom:131.893598pt;}
.y18{bottom:132.213598pt;}
.y85{bottom:138.293595pt;}
.y97{bottom:144.373593pt;}
.yc3{bottom:145.653592pt;}
.y25{bottom:148.853591pt;}
.y75{bottom:151.093590pt;}
.y7d{bottom:155.733588pt;}
.y4c{bottom:159.093333pt;}
.y38{bottom:160.053333pt;}
.ya5{bottom:173.013581pt;}
.y58{bottom:173.813581pt;}
.y8f{bottom:176.373580pt;}
.y60{bottom:177.973579pt;}
.yc2{bottom:180.213579pt;}
.y74{bottom:181.813578pt;}
.y96{bottom:184.693577pt;}
.yb9{bottom:189.333575pt;}
.y84{bottom:189.493575pt;}
.y17{bottom:193.653573pt;}
.y4a{bottom:196.373333pt;}
.y24{bottom:200.053571pt;}
.y40{bottom:201.653333pt;}
.yb8{bottom:211.733566pt;}
.y73{bottom:212.533566pt;}
.ya4{bottom:213.333565pt;}
.y8e{bottom:214.773565pt;}
.yaa{bottom:221.653562pt;}
.y7c{bottom:223.733561pt;}
.y5f{bottom:224.053561pt;}
.y57{bottom:225.013561pt;}
.y68{bottom:227.253560pt;}
.y95{bottom:233.973557pt;}
.y72{bottom:243.253553pt;}
.y16{bottom:244.853553pt;}
.yb7{bottom:250.613550pt;}
.y83{bottom:250.933550pt;}
.y23{bottom:251.253550pt;}
.y7{bottom:251.893550pt;}
.ya9{bottom:253.653549pt;}
.yf{bottom:255.733548pt;}
.y67{bottom:256.053548pt;}
.yc1{bottom:257.013548pt;}
.y8d{bottom:260.853546pt;}
.y5e{bottom:262.453546pt;}
.ya3{bottom:262.613546pt;}
.y48{bottom:269.493333pt;}
.y3c{bottom:269.813333pt;}
.y56{bottom:269.813543pt;}
.y71{bottom:273.973541pt;}
.y94{bottom:274.293541pt;}
.y20{bottom:276.213540pt;}
.y9b{bottom:283.253537pt;}
.y66{bottom:284.853537pt;}
.ya8{bottom:285.653536pt;}
.yb6{bottom:289.653535pt;}
.y6{bottom:290.293535pt;}
.y7b{bottom:291.573534pt;}
.y8c{bottom:299.253531pt;}
.y82{bottom:302.133530pt;}
.y22{bottom:302.453530pt;}
.ya2{bottom:302.933529pt;}
.y70{bottom:304.693529pt;}
.y15{bottom:306.293528pt;}
.y1c{bottom:306.933528pt;}
.y5d{bottom:308.533527pt;}
.y55{bottom:314.613525pt;}
.ye{bottom:317.173524pt;}
.ya7{bottom:317.653524pt;}
.y93{bottom:323.573521pt;}
.y46{bottom:324.693333pt;}
.y3e{bottom:325.973333pt;}
.yc0{bottom:326.133520pt;}
.y1f{bottom:327.413520pt;}
.yb5{bottom:328.533519pt;}
.y5{bottom:328.693519pt;}
.y9a{bottom:332.533518pt;}
.y6f{bottom:343.093513pt;}
.y8b{bottom:345.333513pt;}
.ya6{bottom:349.653511pt;}
.ya1{bottom:352.213510pt;}
.y5c{bottom:354.613509pt;}
.y2e{bottom:358.133507pt;}
.y54{bottom:359.413507pt;}
.ybf{bottom:360.693506pt;}
.y2b{bottom:361.173506pt;}
.y81{bottom:363.573505pt;}
.y4{bottom:367.093504pt;}
.yb4{bottom:367.413504pt;}
.y14{bottom:367.733504pt;}
.yd{bottom:368.373503pt;}
.y92{bottom:372.853502pt;}
.y6e{bottom:373.813501pt;}
.y1e{bottom:378.613499pt;}
.y44{bottom:379.893333pt;}
.y42{bottom:382.133333pt;}
.y8a{bottom:383.733497pt;}
.ya0{bottom:392.533494pt;}
.y64{bottom:393.653493pt;}
.yb3{bottom:399.413491pt;}
.y2a{bottom:399.573491pt;}
.y7a{bottom:401.653490pt;}
.y5b{bottom:401.973490pt;}
.ybe{bottom:402.933489pt;}
.y6d{bottom:404.533489pt;}
.y3{bottom:405.493488pt;}
.y53{bottom:413.173485pt;}
.y2d{bottom:419.573483pt;}
.yb2{bottom:421.813482pt;}
.y89{bottom:422.133482pt;}
.y63{bottom:422.453482pt;}
.y80{bottom:425.013481pt;}
.y79{bottom:427.253480pt;}
.y13{bottom:429.173479pt;}
.yc{bottom:429.813479pt;}
.y29{bottom:431.573478pt;}
.y21{bottom:433.973477pt;}
.y6c{bottom:435.253477pt;}
.y3b{bottom:436.853476pt;}
.ybd{bottom:437.493476pt;}
.y1d{bottom:440.053475pt;}
.y9f{bottom:441.813474pt;}
.y5a{bottom:446.773472pt;}
.y62{bottom:451.253470pt;}
.y52{bottom:457.973467pt;}
.yb1{bottom:460.853466pt;}
.y91{bottom:462.453466pt;}
.y35{bottom:467.093464pt;}
.y88{bottom:468.213463pt;}
.y28{bottom:469.973463pt;}
.y6b{bottom:473.653461pt;}
.ybc{bottom:479.733459pt;}
.yb{bottom:481.013458pt;}
.y9e{bottom:482.133458pt;}
.y7f{bottom:486.453456pt;}
.y1b{bottom:491.253454pt;}
.y59{bottom:491.573454pt;}
.y12{bottom:491.733454pt;}
.yb0{bottom:492.853454pt;}
.y2{bottom:495.093453pt;}
.y78{bottom:495.253453pt;}
.y65{bottom:496.533452pt;}
.y34{bottom:500.373451pt;}
.y27{bottom:501.973450pt;}
.y51{bottom:502.773450pt;}
.y6a{bottom:504.373449pt;}
.y87{bottom:506.613448pt;}
.y99{bottom:511.733446pt;}
.ybb{bottom:521.973442pt;}
.yaf{bottom:524.853441pt;}
.y9d{bottom:531.413438pt;}
.y1{bottom:533.493437pt;}
.y33{bottom:533.813437pt;}
.y26{bottom:533.973437pt;}
.y77{bottom:537.493436pt;}
.ya{bottom:542.453434pt;}
.y50{bottom:547.573432pt;}
.y11{bottom:549.333431pt;}
.y90{bottom:552.053430pt;}
.y86{bottom:552.693430pt;}
.yba{bottom:556.533428pt;}
.yae{bottom:556.853428pt;}
.y76{bottom:563.093425pt;}
.y32{bottom:568.373423pt;}
.y9c{bottom:571.733422pt;}
.yad{bottom:588.853415pt;}
.y31{bottom:600.213411pt;}
.y69{bottom:606.133408pt;}
.yac{bottom:620.853402pt;}
.y1a{bottom:621.173402pt;}
.y30{bottom:635.413397pt;}
.y9{bottom:649.973391pt;}
.yab{bottom:669.173383pt;}
.y19{bottom:678.773379pt;}
.y2f{bottom:700.853370pt;}
.y36{bottom:710.613333pt;}
.hb{height:8.480000pt;}
.hd{height:9.600000pt;}
.hf{height:17.280000pt;}
.h10{height:17.760000pt;}
.hc{height:37.695022pt;}
.ha{height:46.080000pt;}
.h5{height:55.402478pt;}
.h8{height:57.758727pt;}
.h11{height:61.252108pt;}
.he{height:64.786968pt;}
.h9{height:70.902472pt;}
.h2{height:78.097469pt;}
.h13{height:78.562469pt;}
.h14{height:88.777464pt;}
.h7{height:111.472455pt;}
.h1{height:133.499947pt;}
.h12{height:155.527438pt;}
.h4{height:178.222429pt;}
.h15{height:191.177424pt;}
.h3{height:200.249920pt;}
.h6{height:244.972402pt;}
.h0{height:793.333333pt;}
.w2{width:45.120000pt;}
.w4{width:59.840000pt;}
.w3{width:78.080000pt;}
.w1{width:458.720000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4c{left:94.387962pt;}
.x4b{left:117.267953pt;}
.x3f{left:124.947417pt;}
.x36{left:127.507520pt;}
.xe{left:132.307414pt;}
.xa{left:138.867944pt;}
.x39{left:147.507941pt;}
.x4a{left:148.467941pt;}
.x42{left:154.227938pt;}
.x4d{left:156.947937pt;}
.x41{left:162.707935pt;}
.xf{left:168.307399pt;}
.x15{left:174.867930pt;}
.x10{left:180.307395pt;}
.x3a{left:183.507927pt;}
.x13{left:190.387924pt;}
.x21{left:191.667923pt;}
.x46{left:192.947923pt;}
.x1d{left:197.107921pt;}
.x17{left:198.387921pt;}
.x22{left:199.667920pt;}
.xb{left:202.867919pt;}
.x11{left:210.387383pt;}
.x3e{left:223.027911pt;}
.x47{left:227.827909pt;}
.x45{left:234.547906pt;}
.x19{left:238.867904pt;}
.x52{left:242.387903pt;}
.x49{left:245.107902pt;}
.x1b{left:251.027900pt;}
.x1a{left:255.667898pt;}
.x51{left:267.667893pt;}
.x2{left:272.307891pt;}
.x2d{left:300.627200pt;}
.xd{left:307.667877pt;}
.x1c{left:311.187876pt;}
.x5{left:319.027872pt;}
.x40{left:320.147872pt;}
.x48{left:323.667871pt;}
.x4{left:326.547869pt;}
.x38{left:331.827867pt;}
.x4e{left:335.987866pt;}
.x37{left:338.547865pt;}
.x3{left:345.907862pt;}
.x1{left:347.827861pt;}
.x2c{left:350.707200pt;}
.x28{left:354.547200pt;}
.x27{left:364.787854pt;}
.x7{left:376.947849pt;}
.x16{left:386.227846pt;}
.x8{left:388.787844pt;}
.x3c{left:391.507843pt;}
.x20{left:413.107835pt;}
.x50{left:420.307832pt;}
.x6{left:422.227831pt;}
.x3d{left:429.427828pt;}
.x53{left:432.947827pt;}
.x3b{left:435.827826pt;}
.x2e{left:450.707200pt;}
.x9{left:451.667819pt;}
.x43{left:453.107819pt;}
.x18{left:459.987816pt;}
.x1e{left:466.387813pt;}
.x14{left:469.107812pt;}
.x25{left:478.547809pt;}
.x24{left:479.507808pt;}
.x44{left:487.667805pt;}
.x12{left:489.587271pt;}
.x2f{left:500.627200pt;}
.x2b{left:509.267796pt;}
.x29{left:512.947200pt;}
.x31{left:550.707200pt;}
.x30{left:600.627200pt;}
.x2a{left:622.707200pt;}
.x26{left:627.667749pt;}
.x32{left:650.707200pt;}
.x4f{left:708.307717pt;}
.x33{left:750.547200pt;}
.x35{left:800.627200pt;}
.x34{left:850.547200pt;}
.x23{left:968.787612pt;}
.xc{left:976.147610pt;}
.x1f{left:1003.507599pt;}
}




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