
    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_69adc9065f18b83acbfcc17d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992188;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_6a906c29bc76befd0cecf53a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_5f0e65f7d7601fd1adf3cf1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_6a5afa284485b2b93b62be03.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925781;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_11efdd1c83a939c27ab9fb03.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.678223;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_5122160959f99187c587bd9a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5053169e277a10734d1b8387.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.925293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_03775426d5fd41dcca60ed3a.woff2')format("woff");}.ff8{font-family:ff8;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.018006px;}
.lsb{letter-spacing:0.872130px;}
.lsc{letter-spacing:0.923432px;}
.ls2{letter-spacing:1.458000px;}
.ls4{letter-spacing:1.476000px;}
.ls6{letter-spacing:1.512000px;}
.lsd{letter-spacing:2.544078px;}
.lsa{letter-spacing:5.832000px;}
.ls9{letter-spacing:8.802000px;}
.ls7{letter-spacing:12.420000px;}
.ls8{letter-spacing:12.474000px;}
.ls3{letter-spacing:899.819000px;}
.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;}
}
.ws7{word-spacing:-48.001464px;}
.ws1{word-spacing:-21.129671px;}
.ws4{word-spacing:-14.958000px;}
.ws6{word-spacing:-14.448441px;}
.ws5{word-spacing:-14.210587px;}
.ws8{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws3{word-spacing:-11.218500px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-9.043758px;}
._18{margin-left:-8.023183px;}
._15{margin-left:-6.301826px;}
._5{margin-left:-3.492501px;}
._4{margin-left:-2.461184px;}
._1{margin-left:-1.091962px;}
._0{width:1.175959px;}
._2{width:2.561911px;}
._7{width:4.073989px;}
._6{width:5.623273px;}
._8{width:6.774438px;}
._9{width:7.808446px;}
._c{width:9.420253px;}
._d{width:10.969335px;}
._b{width:12.260505px;}
._a{width:13.362082px;}
._13{width:16.509091px;}
._10{width:17.689583px;}
._14{width:19.236041px;}
._12{width:29.122809px;}
._f{width:34.607028px;}
._16{width:38.079583px;}
._3{width:75.450468px;}
._e{width:115.788041px;}
._11{width:224.717990px;}
.fc1{color:rgb(27,138,174);}
.fc4{color:rgb(60,60,60);}
.fc3{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs7{font-size:40.500000px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:55.678710px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y7c{bottom:3.192750px;}
.y7e{bottom:3.199687px;}
.y100{bottom:4.528535px;}
.yff{bottom:22.487523px;}
.yfe{bottom:40.440650px;}
.y25{bottom:46.734370px;}
.yfd{bottom:58.393778px;}
.y24{bottom:59.015622px;}
.y23{bottom:71.302734px;}
.yfc{bottom:76.352766px;}
.y7a{bottom:85.646468px;}
.yd1{bottom:90.919912px;}
.yfb{bottom:94.305891px;}
.ya7{bottom:97.599609px;}
.y79{bottom:104.542958px;}
.yd0{bottom:108.873039px;}
.yd2{bottom:109.032000px;}
.yfa{bottom:112.258996px;}
.y78{bottom:123.445307px;}
.ycf{bottom:126.832028px;}
.ya6{bottom:128.255859px;}
.yf9{bottom:130.212124px;}
.y26{bottom:130.635000px;}
.y4a{bottom:135.398406px;}
.y77{bottom:142.341775px;}
.y21{bottom:142.980383px;}
.yce{bottom:144.785155px;}
.yf8{bottom:148.171112px;}
.y49{bottom:154.300755px;}
.y76{bottom:161.244124px;}
.y20{bottom:161.882732px;}
.ycd{bottom:162.738282px;}
.yf7{bottom:166.124239px;}
.y75{bottom:180.146474px;}
.ycc{bottom:180.697262px;}
.y1f{bottom:180.779222px;}
.y69{bottom:181.300749px;}
.ya5{bottom:183.867138px;}
.yf6{bottom:184.077366px;}
.y48{bottom:186.703104px;}
.ycb{bottom:198.650389px;}
.y74{bottom:199.042963px;}
.y1e{bottom:199.681571px;}
.y68{bottom:200.203098px;}
.y114{bottom:201.860150px;}
.yf5{bottom:202.036355px;}
.ya4{bottom:202.763628px;}
.yca{bottom:216.603516px;}
.y73{bottom:217.945307px;}
.y1d{bottom:218.578061px;}
.y67{bottom:219.099588px;}
.y47{bottom:219.099594px;}
.y113{bottom:219.813278px;}
.yf4{bottom:219.989482px;}
.ya3{bottom:221.665977px;}
.yc9{bottom:234.562500px;}
.y1c{bottom:237.480410px;}
.y112{bottom:237.772266px;}
.yf3{bottom:237.942609px;}
.y66{bottom:238.001937px;}
.y46{bottom:238.001943px;}
.ya2{bottom:240.568326px;}
.y72{bottom:250.341765px;}
.yc8{bottom:252.515625px;}
.y111{bottom:255.725389px;}
.yf2{bottom:255.901581px;}
.y1b{bottom:256.382759px;}
.y65{bottom:256.898427px;}
.y45{bottom:256.898433px;}
.ya1{bottom:259.464816px;}
.y71{bottom:269.244114px;}
.yc7{bottom:270.468750px;}
.y110{bottom:273.678516px;}
.yf1{bottom:273.854709px;}
.y1a{bottom:275.279249px;}
.y44{bottom:275.800770px;}
.y64{bottom:275.800776px;}
.ya0{bottom:278.367165px;}
.y70{bottom:288.146463px;}
.yc6{bottom:288.427734px;}
.y10f{bottom:291.631641px;}
.yf0{bottom:291.807836px;}
.y19{bottom:294.181598px;}
.y43{bottom:294.703119px;}
.y9f{bottom:297.263655px;}
.y4b{bottom:299.765625px;}
.yc5{bottom:306.380859px;}
.y6f{bottom:307.042953px;}
.y10e{bottom:309.590625px;}
.yef{bottom:309.766824px;}
.y18{bottom:313.078088px;}
.y63{bottom:313.599599px;}
.y9e{bottom:316.166004px;}
.yc4{bottom:324.333962px;}
.y42{bottom:327.099594px;}
.y10d{bottom:327.543750px;}
.yee{bottom:327.719951px;}
.y17{bottom:331.980437px;}
.y62{bottom:332.501948px;}
.y9d{bottom:335.068353px;}
.y6e{bottom:339.445302px;}
.yc3{bottom:342.287089px;}
.y10c{bottom:345.496868px;}
.yed{bottom:345.673078px;}
.y41{bottom:346.001943px;}
.y16{bottom:350.882786px;}
.y9c{bottom:353.964843px;}
.y6d{bottom:358.341792px;}
.yc2{bottom:360.246077px;}
.y10b{bottom:363.455857px;}
.yec{bottom:363.632058px;}
.y61{bottom:364.898427px;}
.y40{bottom:364.898433px;}
.y15{bottom:369.779276px;}
.y6c{bottom:377.244135px;}
.yc1{bottom:378.199204px;}
.y10a{bottom:381.408984px;}
.yeb{bottom:381.585185px;}
.y3f{bottom:383.800749px;}
.y60{bottom:383.800776px;}
.y9b{bottom:384.621093px;}
.y14{bottom:388.681625px;}
.y6b{bottom:396.146484px;}
.yc0{bottom:396.152331px;}
.y101{bottom:396.487500px;}
.y109{bottom:399.362109px;}
.yea{bottom:399.538313px;}
.y11b{bottom:400.728516px;}
.y3e{bottom:402.703098px;}
.y13{bottom:407.578115px;}
.ybf{bottom:414.111320px;}
.y108{bottom:417.321091px;}
.ye9{bottom:417.497297px;}
.y11a{bottom:417.527341px;}
.y3d{bottom:421.599588px;}
.y12{bottom:426.480464px;}
.y6a{bottom:426.796875px;}
.ybe{bottom:432.064447px;}
.y119{bottom:434.326173px;}
.y107{bottom:435.274218px;}
.ye8{bottom:435.450419px;}
.y9a{bottom:440.232384px;}
.y3c{bottom:440.501937px;}
.y11{bottom:445.382813px;}
.ybd{bottom:450.017574px;}
.y118{bottom:451.265626px;}
.y106{bottom:453.227338px;}
.ye7{bottom:453.403547px;}
.y99{bottom:459.128874px;}
.y3b{bottom:459.398427px;}
.ybc{bottom:467.976562px;}
.y117{bottom:468.205078px;}
.y105{bottom:471.186326px;}
.ye6{bottom:471.362532px;}
.y10{bottom:476.039062px;}
.y98{bottom:478.031223px;}
.y5f{bottom:478.300776px;}
.ybb{bottom:485.929688px;}
.y104{bottom:489.139453px;}
.ye5{bottom:489.315648px;}
.y3a{bottom:491.800776px;}
.y11c{bottom:494.015625px;}
.y80{bottom:494.255862px;}
.y116{bottom:496.265625px;}
.y97{bottom:496.927713px;}
.y5e{bottom:497.203119px;}
.yba{bottom:503.882792px;}
.y103{bottom:507.092578px;}
.ye4{bottom:507.268775px;}
.y39{bottom:510.703125px;}
.y7f{bottom:515.554688px;}
.y96{bottom:515.830062px;}
.y5d{bottom:516.099605px;}
.yb9{bottom:521.841781px;}
.y102{bottom:525.051562px;}
.ye3{bottom:525.227764px;}
.y38{bottom:529.599599px;}
.y95{bottom:534.732411px;}
.y5c{bottom:535.001948px;}
.yb8{bottom:539.794908px;}
.y115{bottom:542.976562px;}
.ye2{bottom:543.180891px;}
.yf{bottom:545.132813px;}
.y37{bottom:548.501948px;}
.y94{bottom:553.628901px;}
.y5b{bottom:553.898438px;}
.yb7{bottom:557.748035px;}
.ye1{bottom:561.134016px;}
.ye{bottom:561.937487px;}
.y36{bottom:567.398427px;}
.y93{bottom:572.531207px;}
.yb6{bottom:575.707023px;}
.yd{bottom:578.736313px;}
.ye0{bottom:579.087137px;}
.y5a{bottom:584.554688px;}
.y35{bottom:586.300776px;}
.y92{bottom:591.427697px;}
.yb5{bottom:593.660150px;}
.ydf{bottom:597.046125px;}
.yc{bottom:600.035146px;}
.y34{bottom:605.203114px;}
.y91{bottom:610.330046px;}
.yb4{bottom:611.613278px;}
.yde{bottom:614.999250px;}
.yb{bottom:621.333979px;}
.y33{bottom:624.099604px;}
.y90{bottom:629.232395px;}
.yb3{bottom:629.572266px;}
.ydd{bottom:632.952375px;}
.y59{bottom:640.165977px;}
.y3{bottom:641.507812px;}
.ya{bottom:642.632812px;}
.y32{bottom:643.001937px;}
.yb2{bottom:647.525391px;}
.y8f{bottom:648.128885px;}
.ydc{bottom:650.911355px;}
.y58{bottom:659.068326px;}
.y31{bottom:661.898427px;}
.yb1{bottom:665.478509px;}
.y8e{bottom:667.031233px;}
.ydb{bottom:668.864482px;}
.y57{bottom:677.964816px;}
.y30{bottom:680.800776px;}
.yb0{bottom:683.437498px;}
.y8d{bottom:685.927723px;}
.yda{bottom:686.817609px;}
.y9{bottom:692.888671px;}
.y56{bottom:696.867165px;}
.y2f{bottom:699.703119px;}
.yaf{bottom:701.390625px;}
.yd9{bottom:704.776593px;}
.y8c{bottom:704.830073px;}
.y8{bottom:713.847657px;}
.y7d{bottom:714.292500px;}
.y55{bottom:715.763655px;}
.y22{bottom:718.347657px;}
.y2e{bottom:718.599598px;}
.yae{bottom:719.343746px;}
.yd8{bottom:722.729717px;}
.y8b{bottom:723.732411px;}
.y54{bottom:734.666004px;}
.yad{bottom:737.302734px;}
.y2d{bottom:737.501948px;}
.yd7{bottom:740.682845px;}
.y53{bottom:753.568353px;}
.yac{bottom:755.255859px;}
.y8a{bottom:756.128901px;}
.y7{bottom:756.158206px;}
.y2c{bottom:756.398433px;}
.yd6{bottom:758.641829px;}
.y52{bottom:772.464816px;}
.yab{bottom:773.208982px;}
.y89{bottom:775.031229px;}
.y2b{bottom:775.300776px;}
.yd5{bottom:776.594947px;}
.y27{bottom:780.486093px;}
.yaa{bottom:791.162109px;}
.y51{bottom:791.367165px;}
.y6{bottom:793.710931px;}
.y88{bottom:793.927719px;}
.y2a{bottom:794.203125px;}
.yd4{bottom:794.548074px;}
.yd3{bottom:812.507063px;}
.y87{bottom:812.830068px;}
.y50{bottom:823.763655px;}
.y29{bottom:824.853516px;}
.ya9{bottom:828.673829px;}
.y5{bottom:831.269532px;}
.y86{bottom:831.732417px;}
.y4f{bottom:842.666004px;}
.y4e{bottom:861.568353px;}
.y85{bottom:864.128891px;}
.y28{bottom:880.464843px;}
.ya8{bottom:882.375000px;}
.y84{bottom:883.031239px;}
.y4{bottom:899.378907px;}
.y83{bottom:901.927730px;}
.y4d{bottom:911.121093px;}
.y7b{bottom:915.838500px;}
.y82{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y81{bottom:974.730464px;}
.y4c{bottom:974.730470px;}
.h12{height:15.750000px;}
.h8{height:28.048904px;}
.h7{height:28.142578px;}
.h5{height:29.551081px;}
.hd{height:31.660400px;}
.h1{height:32.831863px;}
.h13{height:34.594805px;}
.he{height:35.617086px;}
.h4{height:37.524582px;}
.h16{height:40.104548px;}
.h1a{height:40.104627px;}
.h17{height:40.104629px;}
.h18{height:40.104638px;}
.h1c{height:40.535623px;}
.h2{height:42.213867px;}
.hc{height:42.213927px;}
.ha{height:42.213933px;}
.h11{height:42.213951px;}
.hf{height:42.213975px;}
.h10{height:42.213993px;}
.hb{height:42.213999px;}
.h15{height:42.214017px;}
.h14{height:42.214041px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h1b{height:538.476000px;}
.h9{height:804.328500px;}
.h19{height:825.931500px;}
.h0{height:1020.000000px;}
.w2{width:15.750000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.xd{left:3.938109px;}
.x11{left:11.584593px;}
.x12{left:45.000609px;}
.x4{left:78.662109px;}
.xc{left:82.036500px;}
.x8{left:83.162107px;}
.xf{left:86.537109px;}
.x10{left:90.246093px;}
.x6{left:94.412109px;}
.x5{left:95.537109px;}
.x13{left:101.162109px;}
.xb{left:123.662105px;}
.xa{left:141.539062px;}
.x1{left:232.769532px;}
.x7{left:257.537109px;}
.x14{left:296.912109px;}
.x3{left:300.164062px;}
.xe{left:340.786500px;}
.x2{left:526.412109px;}
.x9{left:613.916016px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.016005pt;}
.lsb{letter-spacing:0.775227pt;}
.lsc{letter-spacing:0.820828pt;}
.ls2{letter-spacing:1.296000pt;}
.ls4{letter-spacing:1.312000pt;}
.ls6{letter-spacing:1.344000pt;}
.lsd{letter-spacing:2.261402pt;}
.lsa{letter-spacing:5.184000pt;}
.ls9{letter-spacing:7.824000pt;}
.ls7{letter-spacing:11.040000pt;}
.ls8{letter-spacing:11.088000pt;}
.ls3{letter-spacing:799.839111pt;}
.ws7{word-spacing:-42.667968pt;}
.ws1{word-spacing:-18.781930pt;}
.ws4{word-spacing:-13.296000pt;}
.ws6{word-spacing:-12.843058pt;}
.ws5{word-spacing:-12.631633pt;}
.ws8{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws3{word-spacing:-9.972000pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-8.038896pt;}
._18{margin-left:-7.131718pt;}
._15{margin-left:-5.601623pt;}
._5{margin-left:-3.104445pt;}
._4{margin-left:-2.187719pt;}
._1{margin-left:-0.970633pt;}
._0{width:1.045297pt;}
._2{width:2.277254pt;}
._7{width:3.621324pt;}
._6{width:4.998465pt;}
._8{width:6.021723pt;}
._9{width:6.940841pt;}
._c{width:8.373558pt;}
._d{width:9.750520pt;}
._b{width:10.898227pt;}
._a{width:11.877406pt;}
._13{width:14.674747pt;}
._10{width:15.724073pt;}
._14{width:17.098703pt;}
._12{width:25.886941pt;}
._f{width:30.761802pt;}
._16{width:33.848518pt;}
._3{width:67.067083pt;}
._e{width:102.922703pt;}
._11{width:199.749324pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs7{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:49.492187pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:2.838000pt;}
.y7e{bottom:2.844167pt;}
.y100{bottom:4.025364pt;}
.yff{bottom:19.988910pt;}
.yfe{bottom:35.947245pt;}
.y25{bottom:41.541662pt;}
.yfd{bottom:51.905580pt;}
.y24{bottom:52.458331pt;}
.y23{bottom:63.380208pt;}
.yfc{bottom:67.869125pt;}
.y7a{bottom:76.130193pt;}
.yd1{bottom:80.817700pt;}
.yfb{bottom:83.827459pt;}
.ya7{bottom:86.755208pt;}
.y79{bottom:92.927073pt;}
.yd0{bottom:96.776035pt;}
.yd2{bottom:96.917333pt;}
.yfa{bottom:99.785775pt;}
.y78{bottom:109.729161pt;}
.ycf{bottom:112.739580pt;}
.ya6{bottom:114.005208pt;}
.yf9{bottom:115.744110pt;}
.y26{bottom:116.120000pt;}
.y4a{bottom:120.354139pt;}
.y77{bottom:126.526023pt;}
.y21{bottom:127.093673pt;}
.yce{bottom:128.697915pt;}
.yf8{bottom:131.707655pt;}
.y49{bottom:137.156227pt;}
.y76{bottom:143.328111pt;}
.y20{bottom:143.895761pt;}
.ycd{bottom:144.656251pt;}
.yf7{bottom:147.665990pt;}
.y75{bottom:160.130199pt;}
.ycc{bottom:160.619788pt;}
.y1f{bottom:160.692641pt;}
.y69{bottom:161.156221pt;}
.ya5{bottom:163.437456pt;}
.yf6{bottom:163.624326pt;}
.y48{bottom:165.958315pt;}
.ycb{bottom:176.578123pt;}
.y74{bottom:176.927079pt;}
.y1e{bottom:177.494729pt;}
.y68{bottom:177.958309pt;}
.y114{bottom:179.431245pt;}
.yf5{bottom:179.587871pt;}
.ya4{bottom:180.234336pt;}
.yca{bottom:192.536459pt;}
.y73{bottom:193.729161pt;}
.y1d{bottom:194.291609pt;}
.y67{bottom:194.755189pt;}
.y47{bottom:194.755195pt;}
.y113{bottom:195.389580pt;}
.yf4{bottom:195.546206pt;}
.ya3{bottom:197.036424pt;}
.yc9{bottom:208.500000pt;}
.y1c{bottom:211.093697pt;}
.y112{bottom:211.353125pt;}
.yf3{bottom:211.504541pt;}
.y66{bottom:211.557277pt;}
.y46{bottom:211.557283pt;}
.ya2{bottom:213.838512pt;}
.y72{bottom:222.526013pt;}
.yc8{bottom:224.458333pt;}
.y111{bottom:227.311457pt;}
.yf2{bottom:227.468072pt;}
.y1b{bottom:227.895785pt;}
.y65{bottom:228.354157pt;}
.y45{bottom:228.354163pt;}
.ya1{bottom:230.635392pt;}
.y71{bottom:239.328101pt;}
.yc7{bottom:240.416667pt;}
.y110{bottom:243.269792pt;}
.yf1{bottom:243.426408pt;}
.y1a{bottom:244.692665pt;}
.y44{bottom:245.156240pt;}
.y64{bottom:245.156245pt;}
.ya0{bottom:247.437480pt;}
.y70{bottom:256.130189pt;}
.yc6{bottom:256.380208pt;}
.y10f{bottom:259.228125pt;}
.yf0{bottom:259.384743pt;}
.y19{bottom:261.494753pt;}
.y43{bottom:261.958328pt;}
.y9f{bottom:264.234360pt;}
.y4b{bottom:266.458333pt;}
.yc5{bottom:272.338541pt;}
.y6f{bottom:272.927069pt;}
.y10e{bottom:275.191667pt;}
.yef{bottom:275.348288pt;}
.y18{bottom:278.291633pt;}
.y63{bottom:278.755199pt;}
.y9e{bottom:281.036448pt;}
.yc4{bottom:288.296855pt;}
.y42{bottom:290.755195pt;}
.y10d{bottom:291.150000pt;}
.yee{bottom:291.306623pt;}
.y17{bottom:295.093721pt;}
.y62{bottom:295.557287pt;}
.y9d{bottom:297.838536pt;}
.y6e{bottom:301.729157pt;}
.yc3{bottom:304.255190pt;}
.y10c{bottom:307.108328pt;}
.yed{bottom:307.264959pt;}
.y41{bottom:307.557283pt;}
.y16{bottom:311.895809pt;}
.y9c{bottom:314.635416pt;}
.y6d{bottom:318.526037pt;}
.yc2{bottom:320.218735pt;}
.y10b{bottom:323.071873pt;}
.yec{bottom:323.228496pt;}
.y61{bottom:324.354157pt;}
.y40{bottom:324.354163pt;}
.y15{bottom:328.692689pt;}
.y6c{bottom:335.328120pt;}
.yc1{bottom:336.177070pt;}
.y10a{bottom:339.030208pt;}
.yeb{bottom:339.186831pt;}
.y3f{bottom:341.156221pt;}
.y60{bottom:341.156245pt;}
.y9b{bottom:341.885416pt;}
.y14{bottom:345.494777pt;}
.y6b{bottom:352.130208pt;}
.yc0{bottom:352.135406pt;}
.y101{bottom:352.433333pt;}
.y109{bottom:354.988541pt;}
.yea{bottom:355.145167pt;}
.y11b{bottom:356.203125pt;}
.y3e{bottom:357.958309pt;}
.y13{bottom:362.291657pt;}
.ybf{bottom:368.098951pt;}
.y108{bottom:370.952081pt;}
.ye9{bottom:371.108708pt;}
.y11a{bottom:371.135414pt;}
.y3d{bottom:374.755189pt;}
.y12{bottom:379.093745pt;}
.y6a{bottom:379.375000pt;}
.ybe{bottom:384.057286pt;}
.y119{bottom:386.067710pt;}
.y107{bottom:386.910416pt;}
.ye8{bottom:387.067039pt;}
.y9a{bottom:391.317675pt;}
.y3c{bottom:391.557277pt;}
.y11{bottom:395.895833pt;}
.ybd{bottom:400.015621pt;}
.y118{bottom:401.125001pt;}
.y106{bottom:402.868745pt;}
.ye7{bottom:403.025375pt;}
.y99{bottom:408.114555pt;}
.y3b{bottom:408.354157pt;}
.ybc{bottom:415.979167pt;}
.y117{bottom:416.182292pt;}
.y105{bottom:418.832290pt;}
.ye6{bottom:418.988917pt;}
.y10{bottom:423.145833pt;}
.y98{bottom:424.916643pt;}
.y5f{bottom:425.156245pt;}
.ybb{bottom:431.937500pt;}
.y104{bottom:434.790625pt;}
.ye5{bottom:434.947243pt;}
.y3a{bottom:437.156245pt;}
.y11c{bottom:439.125000pt;}
.y80{bottom:439.338544pt;}
.y116{bottom:441.125000pt;}
.y97{bottom:441.713523pt;}
.y5e{bottom:441.958328pt;}
.yba{bottom:447.895815pt;}
.y103{bottom:450.748959pt;}
.ye4{bottom:450.905578pt;}
.y39{bottom:453.958333pt;}
.y7f{bottom:458.270833pt;}
.y96{bottom:458.515611pt;}
.y5d{bottom:458.755204pt;}
.yb9{bottom:463.859360pt;}
.y102{bottom:466.712500pt;}
.ye3{bottom:466.869123pt;}
.y38{bottom:470.755199pt;}
.y95{bottom:475.317699pt;}
.y5c{bottom:475.557287pt;}
.yb8{bottom:479.817696pt;}
.y115{bottom:482.645833pt;}
.ye2{bottom:482.827459pt;}
.yf{bottom:484.562500pt;}
.y37{bottom:487.557287pt;}
.y94{bottom:492.114579pt;}
.y5b{bottom:492.354167pt;}
.yb7{bottom:495.776031pt;}
.ye1{bottom:498.785792pt;}
.ye{bottom:499.499988pt;}
.y36{bottom:504.354157pt;}
.y93{bottom:508.916628pt;}
.yb6{bottom:511.739576pt;}
.yd{bottom:514.432279pt;}
.ye0{bottom:514.744121pt;}
.y5a{bottom:519.604167pt;}
.y35{bottom:521.156245pt;}
.y92{bottom:525.713508pt;}
.yb5{bottom:527.697912pt;}
.ydf{bottom:530.707667pt;}
.yc{bottom:533.364575pt;}
.y34{bottom:537.958324pt;}
.y91{bottom:542.515596pt;}
.yb4{bottom:543.656247pt;}
.yde{bottom:546.666000pt;}
.yb{bottom:552.296871pt;}
.y33{bottom:554.755204pt;}
.y90{bottom:559.317684pt;}
.yb3{bottom:559.619792pt;}
.ydd{bottom:562.624333pt;}
.y59{bottom:569.036424pt;}
.y3{bottom:570.229167pt;}
.ya{bottom:571.229167pt;}
.y32{bottom:571.557277pt;}
.yb2{bottom:575.578125pt;}
.y8f{bottom:576.114564pt;}
.ydc{bottom:578.587871pt;}
.y58{bottom:585.838512pt;}
.y31{bottom:588.354157pt;}
.yb1{bottom:591.536453pt;}
.y8e{bottom:592.916652pt;}
.ydb{bottom:594.546206pt;}
.y57{bottom:602.635392pt;}
.y30{bottom:605.156245pt;}
.yb0{bottom:607.499998pt;}
.y8d{bottom:609.713532pt;}
.yda{bottom:610.504541pt;}
.y9{bottom:615.901041pt;}
.y56{bottom:619.437480pt;}
.y2f{bottom:621.958328pt;}
.yaf{bottom:623.458333pt;}
.yd9{bottom:626.468083pt;}
.y8c{bottom:626.515620pt;}
.y8{bottom:634.531251pt;}
.y7d{bottom:634.926667pt;}
.y55{bottom:636.234360pt;}
.y22{bottom:638.531251pt;}
.y2e{bottom:638.755199pt;}
.yae{bottom:639.416663pt;}
.yd8{bottom:642.426415pt;}
.y8b{bottom:643.317699pt;}
.y54{bottom:653.036448pt;}
.yad{bottom:655.380208pt;}
.y2d{bottom:655.557287pt;}
.yd7{bottom:658.384751pt;}
.y53{bottom:669.838536pt;}
.yac{bottom:671.338541pt;}
.y8a{bottom:672.114579pt;}
.y7{bottom:672.140627pt;}
.y2c{bottom:672.354163pt;}
.yd6{bottom:674.348292pt;}
.y52{bottom:686.635392pt;}
.yab{bottom:687.296873pt;}
.y89{bottom:688.916648pt;}
.y2b{bottom:689.156245pt;}
.yd5{bottom:690.306620pt;}
.y27{bottom:693.765416pt;}
.yaa{bottom:703.255208pt;}
.y51{bottom:703.437480pt;}
.y6{bottom:705.520828pt;}
.y88{bottom:705.713528pt;}
.y2a{bottom:705.958333pt;}
.yd4{bottom:706.264955pt;}
.yd3{bottom:722.228500pt;}
.y87{bottom:722.515616pt;}
.y50{bottom:732.234360pt;}
.y29{bottom:733.203125pt;}
.ya9{bottom:736.598959pt;}
.y5{bottom:738.906251pt;}
.y86{bottom:739.317704pt;}
.y4f{bottom:749.036448pt;}
.y4e{bottom:765.838536pt;}
.y85{bottom:768.114569pt;}
.y28{bottom:782.635416pt;}
.ya8{bottom:784.333333pt;}
.y84{bottom:784.916657pt;}
.y4{bottom:799.447917pt;}
.y83{bottom:801.713537pt;}
.y4d{bottom:809.885416pt;}
.y7b{bottom:814.078667pt;}
.y82{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y81{bottom:866.427079pt;}
.y4c{bottom:866.427084pt;}
.h12{height:14.000000pt;}
.h8{height:24.932359pt;}
.h7{height:25.015625pt;}
.h5{height:26.267628pt;}
.hd{height:28.142578pt;}
.h1{height:29.183879pt;}
.h13{height:30.750938pt;}
.he{height:31.659632pt;}
.h4{height:33.355184pt;}
.h16{height:35.648487pt;}
.h1a{height:35.648557pt;}
.h17{height:35.648560pt;}
.h18{height:35.648567pt;}
.h1c{height:36.031665pt;}
.h2{height:37.523438pt;}
.hc{height:37.523491pt;}
.ha{height:37.523496pt;}
.h11{height:37.523512pt;}
.hf{height:37.523533pt;}
.h10{height:37.523550pt;}
.hb{height:37.523555pt;}
.h15{height:37.523571pt;}
.h14{height:37.523592pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h1b{height:478.645333pt;}
.h9{height:714.958667pt;}
.h19{height:734.161333pt;}
.h0{height:906.666667pt;}
.w2{width:14.000000pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.xd{left:3.500541pt;}
.x11{left:10.297416pt;}
.x12{left:40.000541pt;}
.x4{left:69.921875pt;}
.xc{left:72.921333pt;}
.x8{left:73.921873pt;}
.xf{left:76.921875pt;}
.x10{left:80.218749pt;}
.x6{left:83.921875pt;}
.x5{left:84.921875pt;}
.x13{left:89.921875pt;}
.xb{left:109.921871pt;}
.xa{left:125.812500pt;}
.x1{left:206.906251pt;}
.x7{left:228.921875pt;}
.x14{left:263.921875pt;}
.x3{left:266.812500pt;}
.xe{left:302.921333pt;}
.x2{left:467.921875pt;}
.x9{left:545.703125pt;}
}




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