
    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_fe281896f43b10baf35bfafa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_3b6798fa023a8698b339f7df.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_e06e0804f0d633834e9cce95.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_006fa268340ca700afc8868c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_5b9e4d259f5d2ee337a55a39.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_6652a4a5d975930e3c0ed291.woff')format("woff");}.ff6{font-family:ff6;line-height:0.742188;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_9749bc002526d16cf6053e9f.woff')format("woff");}.ff7{font-family:ff7;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);}
.v2{vertical-align:-22.768068px;}
.v3{vertical-align:-11.364255px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.054688px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:17.542946px;}
.ls3{letter-spacing:17.542969px;}
.ls2{letter-spacing:17.542991px;}
.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;}
}
.ws6{word-spacing:-36.000000px;}
.ws2{word-spacing:-29.999999px;}
.ws4{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.000000px;}
.ws0{word-spacing:-10.800000px;}
.ws1{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
._14{margin-left:-8.749832px;}
._0{margin-left:-7.541015px;}
._c{margin-left:-5.433666px;}
._1{margin-left:-4.324219px;}
._13{margin-left:-3.322268px;}
._2{margin-left:-2.305774px;}
._3{margin-left:-1.222379px;}
._6{width:4.408293px;}
._8{width:5.423381px;}
._5{width:8.821151px;}
._7{width:9.830314px;}
._4{width:13.452580px;}
._9{width:17.913511px;}
._a{width:22.499999px;}
._b{width:27.000003px;}
._10{width:31.499999px;}
._f{width:35.004143px;}
._e{width:36.995868px;}
._d{width:40.168043px;}
._12{width:44.999993px;}
._11{width:49.500002px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs2{font-size:43.200002px;}
.fs3{font-size:59.999999px;}
.fs5{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y130{bottom:0.749997px;}
.y10c{bottom:3.568360px;}
.y123{bottom:3.569086px;}
.y10f{bottom:3.569092px;}
.y116{bottom:3.569094px;}
.y118{bottom:3.569101px;}
.y126{bottom:3.569825px;}
.y129{bottom:22.542474px;}
.y10e{bottom:22.542481px;}
.y11f{bottom:22.542489px;}
.y11e{bottom:41.515869px;}
.y6b{bottom:56.693483px;}
.y37{bottom:56.693663px;}
.yb8{bottom:56.693842px;}
.y131{bottom:57.068845px;}
.y6a{bottom:77.391727px;}
.yb7{bottom:77.392088px;}
.y36{bottom:111.832576px;}
.yb6{bottom:121.439215px;}
.y8f{bottom:124.145878px;}
.y8e{bottom:124.409549px;}
.yd2{bottom:125.077884px;}
.y69{bottom:125.631233px;}
.yf7{bottom:125.631588px;}
.yad{bottom:130.254633px;}
.y35{bottom:132.530818px;}
.yb5{bottom:142.137457px;}
.y8d{bottom:145.107792px;}
.yd1{bottom:145.776127px;}
.y68{bottom:146.329462px;}
.yac{bottom:150.952878px;}
.y34{bottom:153.229060px;}
.yb4{bottom:162.835687px;}
.y8c{bottom:165.806034px;}
.yd0{bottom:166.474368px;}
.y67{bottom:167.027707px;}
.yf6{bottom:167.028073px;}
.yab{bottom:171.651123px;}
.y33{bottom:173.927302px;}
.yb3{bottom:183.533933px;}
.y8b{bottom:186.504277px;}
.ycf{bottom:187.172611px;}
.y66{bottom:187.725953px;}
.y107{bottom:187.726319px;}
.yaa{bottom:192.349364px;}
.y32{bottom:194.625548px;}
.y12f{bottom:199.767337px;}
.y8a{bottom:207.202518px;}
.yce{bottom:207.870853px;}
.y65{bottom:208.424182px;}
.yf5{bottom:208.424558px;}
.ya9{bottom:213.047607px;}
.y31{bottom:215.323788px;}
.y12e{bottom:217.697016px;}
.y89{bottom:227.900761px;}
.ycd{bottom:228.569095px;}
.y64{bottom:229.122614px;}
.y106{bottom:229.122804px;}
.ya8{bottom:233.745849px;}
.y30{bottom:236.022033px;}
.y12c{bottom:237.795402px;}
.y12d{bottom:247.281744px;}
.y88{bottom:248.599003px;}
.ycc{bottom:249.267337px;}
.y63{bottom:249.820857px;}
.yf4{bottom:249.821038px;}
.ya7{bottom:254.444092px;}
.y2f{bottom:256.720278px;}
.y87{bottom:269.297245px;}
.ycb{bottom:269.965583px;}
.y62{bottom:270.519099px;}
.y105{bottom:270.519288px;}
.ya6{bottom:275.142333px;}
.y12b{bottom:276.867186px;}
.y2e{bottom:277.418523px;}
.y86{bottom:289.995488px;}
.yca{bottom:290.663813px;}
.y61{bottom:291.217342px;}
.yf3{bottom:291.217523px;}
.ya5{bottom:295.840576px;}
.y128{bottom:296.965580px;}
.y2d{bottom:298.116757px;}
.y85{bottom:310.693733px;}
.yc9{bottom:311.362062px;}
.y60{bottom:311.915583px;}
.yf2{bottom:311.915768px;}
.y104{bottom:311.915773px;}
.y12a{bottom:315.938961px;}
.ya4{bottom:316.538818px;}
.y2c{bottom:318.815004px;}
.y84{bottom:331.391963px;}
.y5f{bottom:332.613826px;}
.yf1{bottom:332.614013px;}
.ya3{bottom:337.237060px;}
.y2b{bottom:339.513245px;}
.y83{bottom:352.090210px;}
.y5e{bottom:353.312068px;}
.yf0{bottom:353.312253px;}
.y103{bottom:353.312257px;}
.y127{bottom:355.010742px;}
.ya2{bottom:357.935302px;}
.y2a{bottom:360.211496px;}
.y125{bottom:364.497069px;}
.y82{bottom:372.788444px;}
.y5d{bottom:374.010310px;}
.yef{bottom:374.010496px;}
.ya1{bottom:378.633548px;}
.y29{bottom:380.909739px;}
.y81{bottom:393.486689px;}
.y124{bottom:394.082526px;}
.y5c{bottom:394.708552px;}
.yee{bottom:394.708738px;}
.y102{bottom:394.708743px;}
.ya0{bottom:399.331773px;}
.y28{bottom:401.607980px;}
.y122{bottom:414.180912px;}
.y80{bottom:414.184934px;}
.y5b{bottom:415.406798px;}
.yed{bottom:415.406980px;}
.y9f{bottom:420.030018px;}
.y27{bottom:422.306214px;}
.y121{bottom:423.667969px;}
.y7f{bottom:434.883179px;}
.y5a{bottom:436.105047px;}
.yec{bottom:436.105223px;}
.y101{bottom:436.105228px;}
.y9e{bottom:440.728261px;}
.y26{bottom:443.004461px;}
.y11d{bottom:453.252679px;}
.y7e{bottom:455.581413px;}
.y59{bottom:456.803289px;}
.yeb{bottom:456.803468px;}
.y9d{bottom:461.426502px;}
.y25{bottom:463.702708px;}
.y120{bottom:472.226076px;}
.y7d{bottom:476.279658px;}
.y58{bottom:477.501532px;}
.yea{bottom:477.501713px;}
.y9c{bottom:482.124384px;}
.y24{bottom:484.400992px;}
.y7c{bottom:496.977903px;}
.y57{bottom:498.199773px;}
.ye9{bottom:498.199957px;}
.y9b{bottom:502.822627px;}
.y23{bottom:505.099222px;}
.y11c{bottom:511.297851px;}
.y7b{bottom:517.676144px;}
.y56{bottom:518.898016px;}
.ye8{bottom:518.898187px;}
.y100{bottom:518.898198px;}
.y9a{bottom:523.520868px;}
.y22{bottom:525.797468px;}
.y11a{bottom:531.396237px;}
.y7a{bottom:538.374387px;}
.y55{bottom:539.596258px;}
.ye7{bottom:539.596432px;}
.y11b{bottom:540.883294px;}
.y99{bottom:544.219111px;}
.y21{bottom:545.846793px;}
.y79{bottom:559.072629px;}
.y54{bottom:560.294500px;}
.ye6{bottom:560.294678px;}
.yff{bottom:560.294683px;}
.y20{bottom:563.095319px;}
.y98{bottom:564.917353px;}
.y117{bottom:570.468012px;}
.y78{bottom:579.770872px;}
.y119{bottom:579.955084px;}
.y1f{bottom:580.343855px;}
.y53{bottom:580.992743px;}
.ye5{bottom:580.992925px;}
.y97{bottom:585.615595px;}
.y1e{bottom:597.592390px;}
.y77{bottom:600.469113px;}
.y52{bottom:601.690972px;}
.ye4{bottom:601.691167px;}
.y96{bottom:606.313837px;}
.y115{bottom:609.539794px;}
.y1d{bottom:614.840925px;}
.y114{bottom:619.026859px;}
.y76{bottom:621.167356px;}
.y51{bottom:622.389218px;}
.ye3{bottom:622.389400px;}
.y95{bottom:627.012083px;}
.y1c{bottom:632.089460px;}
.y75{bottom:641.865598px;}
.y50{bottom:643.087469px;}
.ye2{bottom:643.087643px;}
.yfe{bottom:643.087653px;}
.y94{bottom:647.710325px;}
.y113{bottom:648.611573px;}
.y1b{bottom:649.337996px;}
.y74{bottom:662.563840px;}
.y4f{bottom:663.785714px;}
.ye1{bottom:663.785888px;}
.y1a{bottom:666.586528px;}
.y112{bottom:668.709960px;}
.y73{bottom:683.262083px;}
.y19{bottom:683.835063px;}
.y4e{bottom:684.483948px;}
.ye0{bottom:684.484132px;}
.yfd{bottom:684.484138px;}
.y110{bottom:688.808349px;}
.y111{bottom:698.295410px;}
.y18{bottom:701.732528px;}
.y72{bottom:703.960328px;}
.y4d{bottom:705.182193px;}
.ydf{bottom:705.182371px;}
.y17{bottom:722.430772px;}
.y71{bottom:724.658567px;}
.y4c{bottom:725.880438px;}
.y109{bottom:725.880609px;}
.yc8{bottom:725.880610px;}
.yde{bottom:725.880613px;}
.yfc{bottom:725.880622px;}
.y10d{bottom:727.880127px;}
.y10b{bottom:737.367187px;}
.y16{bottom:742.480093px;}
.y4b{bottom:746.578679px;}
.yc7{bottom:746.578852px;}
.ydd{bottom:746.578855px;}
.y15{bottom:759.728628px;}
.y4a{bottom:767.276922px;}
.y108{bottom:767.277093px;}
.yc6{bottom:767.277098px;}
.yfb{bottom:767.277103px;}
.y10a{bottom:770.845460px;}
.y14{bottom:776.977158px;}
.y49{bottom:787.975164px;}
.yc5{bottom:787.975334px;}
.ydc{bottom:787.975343px;}
.y13{bottom:799.917705px;}
.y48{bottom:808.673407px;}
.yc4{bottom:808.673577px;}
.ydb{bottom:808.673588px;}
.y12{bottom:811.474233px;}
.y11{bottom:828.722758px;}
.y47{bottom:829.371648px;}
.yc3{bottom:829.371819px;}
.yda{bottom:829.371826px;}
.y10{bottom:845.971293px;}
.y46{bottom:850.069891px;}
.yc2{bottom:850.070062px;}
.yd9{bottom:850.070068px;}
.yfa{bottom:850.070073px;}
.yf{bottom:863.219838px;}
.y45{bottom:870.768133px;}
.yc1{bottom:870.768303px;}
.yd8{bottom:870.768311px;}
.ye{bottom:880.468368px;}
.y44{bottom:891.466375px;}
.yc0{bottom:891.466546px;}
.yd7{bottom:891.466552px;}
.yf9{bottom:891.466558px;}
.yd{bottom:903.408915px;}
.y43{bottom:912.164617px;}
.ybf{bottom:912.164788px;}
.yd6{bottom:912.164795px;}
.yc{bottom:914.965443px;}
.yb{bottom:932.213968px;}
.y42{bottom:932.862847px;}
.ybe{bottom:932.863030px;}
.yd5{bottom:932.863037px;}
.yf8{bottom:932.863042px;}
.ya{bottom:949.462503px;}
.y41{bottom:953.561097px;}
.ybd{bottom:953.561272px;}
.yd4{bottom:953.561279px;}
.y9{bottom:966.711018px;}
.y40{bottom:974.259338px;}
.ybc{bottom:974.259518px;}
.yd3{bottom:974.259521px;}
.y8{bottom:989.651580px;}
.y3f{bottom:994.957581px;}
.ybb{bottom:994.957764px;}
.y7{bottom:1001.208092px;}
.y3e{bottom:1015.655823px;}
.yba{bottom:1015.656006px;}
.y6{bottom:1018.456626px;}
.y93{bottom:1036.353882px;}
.y3d{bottom:1036.354066px;}
.y5{bottom:1036.354087px;}
.yb9{bottom:1036.354249px;}
.y70{bottom:1057.052124px;}
.y3c{bottom:1057.052307px;}
.y4{bottom:1057.052330px;}
.yb2{bottom:1057.052490px;}
.y6f{bottom:1077.750366px;}
.y3b{bottom:1077.750550px;}
.y3{bottom:1077.750571px;}
.yb1{bottom:1077.750732px;}
.y6e{bottom:1098.448608px;}
.y3a{bottom:1098.448792px;}
.yb0{bottom:1098.448974px;}
.y2{bottom:1100.395602px;}
.y92{bottom:1118.883179px;}
.y6d{bottom:1119.146850px;}
.y91{bottom:1119.146851px;}
.y39{bottom:1119.147034px;}
.yaf{bottom:1119.147217px;}
.y1{bottom:1131.442965px;}
.y90{bottom:1139.581422px;}
.y6c{bottom:1139.845094px;}
.y38{bottom:1139.845276px;}
.yae{bottom:1139.845460px;}
.hc{height:18.972656px;}
.h10{height:18.973389px;}
.h12{height:18.974121px;}
.h5{height:30.023438px;}
.he{height:37.946778px;}
.hd{height:44.730470px;}
.h13{height:47.988281px;}
.h6{height:48.796875px;}
.h4{height:50.039061px;}
.hf{height:55.042970px;}
.h11{height:56.920165px;}
.h2{height:60.046875px;}
.h9{height:61.101563px;}
.h3{height:63.349807px;}
.h1{height:90.070313px;}
.ha{height:105.974850px;}
.h7{height:105.975030px;}
.h8{height:105.975225px;}
.h14{height:106.349853px;}
.hb{height:894.000000px;}
.h0{height:1263.000000px;}
.w6{width:46.125000px;}
.w5{width:52.875000px;}
.w8{width:52.875047px;}
.wa{width:59.625000px;}
.wc{width:69.750000px;}
.w9{width:86.625000px;}
.w4{width:93.374978px;}
.w7{width:93.375000px;}
.wb{width:100.125000px;}
.w3{width:161.999988px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.w2{width:1263.000000px;}
.x0{left:0.000000px;}
.x1f{left:4.500000px;}
.xe{left:106.349991px;}
.x10{left:112.542622px;}
.xb{left:119.686164px;}
.x1b{left:120.764789px;}
.x1{left:121.968891px;}
.x1a{left:125.299946px;}
.x7{left:128.303213px;}
.x16{left:142.719132px;}
.x1d{left:160.349991px;}
.xa{left:178.066908px;}
.x4{left:194.360007px;}
.x17{left:210.016983px;}
.x2{left:248.874165px;}
.x20{left:276.225015px;}
.xc{left:290.779067px;}
.x6{left:328.941580px;}
.x18{left:336.405266px;}
.x9{left:360.100514px;}
.x11{left:370.980614px;}
.x1c{left:374.979633px;}
.x5{left:391.160177px;}
.xd{left:393.728957px;}
.x8{left:400.240587px;}
.x19{left:403.703131px;}
.x21{left:424.724985px;}
.x1e{left:431.949539px;}
.xf{left:441.956672px;}
.x3{left:446.456672px;}
.x22{left:471.974985px;}
.x23{left:525.974985px;}
.x24{left:620.474985px;}
.x2c{left:626.917316px;}
.x25{left:674.474985px;}
.x14{left:677.551166px;}
.x13{left:704.384171px;}
.x26{left:721.724985px;}
.x15{left:740.349020px;}
.x27{left:775.725030px;}
.x12{left:791.474991px;}
.x28{left:863.475030px;}
.x29{left:924.225030px;}
.x2a{left:984.975030px;}
.x2b{left:1086.225030px;}
@media print{
.v2{vertical-align:-20.238283pt;}
.v3{vertical-align:-10.101560pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:0.937500pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:15.593730pt;}
.ls3{letter-spacing:15.593750pt;}
.ls2{letter-spacing:15.593770pt;}
.ws6{word-spacing:-32.000000pt;}
.ws2{word-spacing:-26.666666pt;}
.ws4{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws0{word-spacing:-9.600000pt;}
.ws1{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
._14{margin-left:-7.777628pt;}
._0{margin-left:-6.703125pt;}
._c{margin-left:-4.829926pt;}
._1{margin-left:-3.843750pt;}
._13{margin-left:-2.953127pt;}
._2{margin-left:-2.049577pt;}
._3{margin-left:-1.086559pt;}
._6{width:3.918482pt;}
._8{width:4.820783pt;}
._5{width:7.841024pt;}
._7{width:8.738057pt;}
._4{width:11.957849pt;}
._9{width:15.923121pt;}
._a{width:20.000000pt;}
._b{width:24.000002pt;}
._10{width:27.999999pt;}
._f{width:31.114793pt;}
._e{width:32.885216pt;}
._d{width:35.704927pt;}
._12{width:39.999993pt;}
._11{width:44.000002pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:38.400002pt;}
.fs3{font-size:53.333332pt;}
.fs5{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y130{bottom:0.666664pt;}
.y10c{bottom:3.171875pt;}
.y123{bottom:3.172521pt;}
.y10f{bottom:3.172527pt;}
.y116{bottom:3.172528pt;}
.y118{bottom:3.172535pt;}
.y126{bottom:3.173177pt;}
.y129{bottom:20.037755pt;}
.y10e{bottom:20.037761pt;}
.y11f{bottom:20.037768pt;}
.y11e{bottom:36.902995pt;}
.y6b{bottom:50.394207pt;}
.y37{bottom:50.394367pt;}
.yb8{bottom:50.394527pt;}
.y131{bottom:50.727863pt;}
.y6a{bottom:68.792647pt;}
.yb7{bottom:68.792967pt;}
.y36{bottom:99.406734pt;}
.yb6{bottom:107.945969pt;}
.y8f{bottom:110.351891pt;}
.y8e{bottom:110.586266pt;}
.yd2{bottom:111.180341pt;}
.y69{bottom:111.672207pt;}
.yf7{bottom:111.672523pt;}
.yad{bottom:115.781896pt;}
.y35{bottom:117.805171pt;}
.yb5{bottom:126.344407pt;}
.y8d{bottom:128.984704pt;}
.yd1{bottom:129.578779pt;}
.y68{bottom:130.070633pt;}
.yac{bottom:134.180336pt;}
.y34{bottom:136.203609pt;}
.yb4{bottom:144.742833pt;}
.y8c{bottom:147.383141pt;}
.yd0{bottom:147.977216pt;}
.y67{bottom:148.469073pt;}
.yf6{bottom:148.469398pt;}
.yab{bottom:152.578776pt;}
.y33{bottom:154.602047pt;}
.yb3{bottom:163.141273pt;}
.y8b{bottom:165.781579pt;}
.ycf{bottom:166.375654pt;}
.y66{bottom:166.867513pt;}
.y107{bottom:166.867839pt;}
.yaa{bottom:170.977213pt;}
.y32{bottom:173.000487pt;}
.y12f{bottom:177.570967pt;}
.y8a{bottom:184.180016pt;}
.yce{bottom:184.774091pt;}
.y65{bottom:185.265939pt;}
.yf5{bottom:185.266273pt;}
.ya9{bottom:189.375651pt;}
.y31{bottom:191.398922pt;}
.y12e{bottom:193.508459pt;}
.y89{bottom:202.578454pt;}
.ycd{bottom:203.172529pt;}
.y64{bottom:203.664546pt;}
.y106{bottom:203.664714pt;}
.ya8{bottom:207.774088pt;}
.y30{bottom:209.797362pt;}
.y12c{bottom:211.373691pt;}
.y12d{bottom:219.805995pt;}
.y88{bottom:220.976891pt;}
.ycc{bottom:221.570967pt;}
.y63{bottom:222.062984pt;}
.yf4{bottom:222.063145pt;}
.ya7{bottom:226.172526pt;}
.y2f{bottom:228.195802pt;}
.y87{bottom:239.375329pt;}
.ycb{bottom:239.969407pt;}
.y62{bottom:240.461421pt;}
.y105{bottom:240.461589pt;}
.ya6{bottom:244.570963pt;}
.y12b{bottom:246.104166pt;}
.y2e{bottom:246.594242pt;}
.y86{bottom:257.773767pt;}
.yca{bottom:258.367833pt;}
.y61{bottom:258.859859pt;}
.yf3{bottom:258.860020pt;}
.ya5{bottom:262.969401pt;}
.y128{bottom:263.969404pt;}
.y2d{bottom:264.992672pt;}
.y85{bottom:276.172207pt;}
.yc9{bottom:276.766277pt;}
.y60{bottom:277.258296pt;}
.yf2{bottom:277.258460pt;}
.y104{bottom:277.258464pt;}
.y12a{bottom:280.834632pt;}
.ya4{bottom:281.367838pt;}
.y2c{bottom:283.391114pt;}
.y84{bottom:294.570633pt;}
.y5f{bottom:295.656734pt;}
.yf1{bottom:295.656900pt;}
.ya3{bottom:299.766276pt;}
.y2b{bottom:301.789551pt;}
.y83{bottom:312.969076pt;}
.y5e{bottom:314.055171pt;}
.yf0{bottom:314.055336pt;}
.y103{bottom:314.055340pt;}
.y127{bottom:315.565104pt;}
.ya2{bottom:318.164713pt;}
.y2a{bottom:320.187996pt;}
.y125{bottom:323.997395pt;}
.y82{bottom:331.367506pt;}
.y5d{bottom:332.453609pt;}
.yef{bottom:332.453774pt;}
.ya1{bottom:336.563153pt;}
.y29{bottom:338.586434pt;}
.y81{bottom:349.765946pt;}
.y124{bottom:350.295579pt;}
.y5c{bottom:350.852047pt;}
.yee{bottom:350.852211pt;}
.y102{bottom:350.852216pt;}
.ya0{bottom:354.961576pt;}
.y28{bottom:356.984871pt;}
.y122{bottom:368.160811pt;}
.y80{bottom:368.164386pt;}
.y5b{bottom:369.250487pt;}
.yed{bottom:369.250649pt;}
.y9f{bottom:373.360016pt;}
.y27{bottom:375.383301pt;}
.y121{bottom:376.593750pt;}
.y7f{bottom:386.562826pt;}
.y5a{bottom:387.648931pt;}
.yec{bottom:387.649087pt;}
.y101{bottom:387.649091pt;}
.y9e{bottom:391.758454pt;}
.y26{bottom:393.781743pt;}
.y11d{bottom:402.891271pt;}
.y7e{bottom:404.961256pt;}
.y59{bottom:406.047368pt;}
.yeb{bottom:406.047527pt;}
.y9d{bottom:410.156891pt;}
.y25{bottom:412.180184pt;}
.y120{bottom:419.756512pt;}
.y7d{bottom:423.359696pt;}
.y58{bottom:424.445806pt;}
.yea{bottom:424.445967pt;}
.y9c{bottom:428.555008pt;}
.y24{bottom:430.578660pt;}
.y7c{bottom:441.758136pt;}
.y57{bottom:442.844243pt;}
.ye9{bottom:442.844407pt;}
.y9b{bottom:446.953446pt;}
.y23{bottom:448.977087pt;}
.y11c{bottom:454.486979pt;}
.y7b{bottom:460.156573pt;}
.y56{bottom:461.242681pt;}
.ye8{bottom:461.242833pt;}
.y100{bottom:461.242843pt;}
.y9a{bottom:465.351883pt;}
.y22{bottom:467.375527pt;}
.y11a{bottom:472.352211pt;}
.y7a{bottom:478.555011pt;}
.y55{bottom:479.641118pt;}
.ye7{bottom:479.641273pt;}
.y11b{bottom:480.785150pt;}
.y99{bottom:483.750321pt;}
.y21{bottom:485.197150pt;}
.y79{bottom:496.953448pt;}
.y54{bottom:498.039556pt;}
.ye6{bottom:498.039713pt;}
.yff{bottom:498.039718pt;}
.y20{bottom:500.529172pt;}
.y98{bottom:502.148758pt;}
.y117{bottom:507.082677pt;}
.y78{bottom:515.351886pt;}
.y119{bottom:515.515630pt;}
.y1f{bottom:515.861204pt;}
.y53{bottom:516.437993pt;}
.ye5{bottom:516.438156pt;}
.y97{bottom:520.547196pt;}
.y1e{bottom:531.193235pt;}
.y77{bottom:533.750323pt;}
.y52{bottom:534.836420pt;}
.ye4{bottom:534.836593pt;}
.y96{bottom:538.945633pt;}
.y115{bottom:541.813151pt;}
.y1d{bottom:546.525266pt;}
.y114{bottom:550.246097pt;}
.y76{bottom:552.148761pt;}
.y51{bottom:553.234860pt;}
.ye3{bottom:553.235023pt;}
.y95{bottom:557.344073pt;}
.y1c{bottom:561.857297pt;}
.y75{bottom:570.547198pt;}
.y50{bottom:571.633306pt;}
.ye2{bottom:571.633460pt;}
.yfe{bottom:571.633469pt;}
.y94{bottom:575.742511pt;}
.y113{bottom:576.543620pt;}
.y1b{bottom:577.189329pt;}
.y74{bottom:588.945636pt;}
.y4f{bottom:590.031746pt;}
.ye1{bottom:590.031900pt;}
.y1a{bottom:592.521358pt;}
.y112{bottom:594.408854pt;}
.y73{bottom:607.344073pt;}
.y19{bottom:607.853390pt;}
.y4e{bottom:608.430176pt;}
.ye0{bottom:608.430340pt;}
.yfd{bottom:608.430344pt;}
.y110{bottom:612.274088pt;}
.y111{bottom:620.707031pt;}
.y18{bottom:623.762247pt;}
.y72{bottom:625.742513pt;}
.y4d{bottom:626.828616pt;}
.ydf{bottom:626.828774pt;}
.y17{bottom:642.160687pt;}
.y71{bottom:644.140948pt;}
.y4c{bottom:645.227056pt;}
.y109{bottom:645.227208pt;}
.yc8{bottom:645.227209pt;}
.yde{bottom:645.227211pt;}
.yfc{bottom:645.227220pt;}
.y10d{bottom:647.004557pt;}
.y10b{bottom:655.437499pt;}
.y16{bottom:659.982305pt;}
.y4b{bottom:663.625493pt;}
.yc7{bottom:663.625647pt;}
.ydd{bottom:663.625649pt;}
.y15{bottom:675.314336pt;}
.y4a{bottom:682.023931pt;}
.y108{bottom:682.024083pt;}
.yc6{bottom:682.024087pt;}
.yfb{bottom:682.024091pt;}
.y10a{bottom:685.195964pt;}
.y14{bottom:690.646363pt;}
.y49{bottom:700.422368pt;}
.yc5{bottom:700.422519pt;}
.ydc{bottom:700.422527pt;}
.y13{bottom:711.037960pt;}
.y48{bottom:718.820806pt;}
.yc4{bottom:718.820957pt;}
.ydb{bottom:718.820967pt;}
.y12{bottom:721.310430pt;}
.y11{bottom:736.642452pt;}
.y47{bottom:737.219243pt;}
.yc3{bottom:737.219394pt;}
.yda{bottom:737.219401pt;}
.y10{bottom:751.974483pt;}
.y46{bottom:755.617681pt;}
.yc2{bottom:755.617832pt;}
.yd9{bottom:755.617838pt;}
.yfa{bottom:755.617843pt;}
.yf{bottom:767.306523pt;}
.y45{bottom:774.016118pt;}
.yc1{bottom:774.016269pt;}
.yd8{bottom:774.016276pt;}
.ye{bottom:782.638550pt;}
.y44{bottom:792.414556pt;}
.yc0{bottom:792.414707pt;}
.yd7{bottom:792.414713pt;}
.yf9{bottom:792.414718pt;}
.yd{bottom:803.030147pt;}
.y43{bottom:810.812993pt;}
.ybf{bottom:810.813144pt;}
.yd6{bottom:810.813151pt;}
.yc{bottom:813.302616pt;}
.yb{bottom:828.634638pt;}
.y42{bottom:829.211420pt;}
.ybe{bottom:829.211582pt;}
.yd5{bottom:829.211588pt;}
.yf8{bottom:829.211593pt;}
.ya{bottom:843.966670pt;}
.y41{bottom:847.609864pt;}
.ybd{bottom:847.610020pt;}
.yd4{bottom:847.610026pt;}
.y9{bottom:859.298683pt;}
.y40{bottom:866.008301pt;}
.ybc{bottom:866.008460pt;}
.yd3{bottom:866.008463pt;}
.y8{bottom:879.690294pt;}
.y3f{bottom:884.406739pt;}
.ybb{bottom:884.406902pt;}
.y7{bottom:889.962748pt;}
.y3e{bottom:902.805176pt;}
.yba{bottom:902.805339pt;}
.y6{bottom:905.294779pt;}
.y93{bottom:921.203451pt;}
.y3d{bottom:921.203614pt;}
.y5{bottom:921.203633pt;}
.yb9{bottom:921.203777pt;}
.y70{bottom:939.601888pt;}
.y3c{bottom:939.602051pt;}
.y4{bottom:939.602071pt;}
.yb2{bottom:939.602213pt;}
.y6f{bottom:958.000325pt;}
.y3b{bottom:958.000489pt;}
.y3{bottom:958.000508pt;}
.yb1{bottom:958.000651pt;}
.y6e{bottom:976.398763pt;}
.y3a{bottom:976.398926pt;}
.yb0{bottom:976.399088pt;}
.y2{bottom:978.129424pt;}
.y92{bottom:994.562826pt;}
.y6d{bottom:994.797200pt;}
.y91{bottom:994.797201pt;}
.y39{bottom:994.797364pt;}
.yaf{bottom:994.797527pt;}
.y1{bottom:1005.727080pt;}
.y90{bottom:1012.961264pt;}
.y6c{bottom:1013.195639pt;}
.y38{bottom:1013.195801pt;}
.yae{bottom:1013.195964pt;}
.hc{height:16.864583pt;}
.h10{height:16.865234pt;}
.h12{height:16.865885pt;}
.h5{height:26.687500pt;}
.he{height:33.730469pt;}
.hd{height:39.760418pt;}
.h13{height:42.656250pt;}
.h6{height:43.375000pt;}
.h4{height:44.479166pt;}
.hf{height:48.927084pt;}
.h11{height:50.595703pt;}
.h2{height:53.375000pt;}
.h9{height:54.312500pt;}
.h3{height:56.310940pt;}
.h1{height:80.062500pt;}
.ha{height:94.199867pt;}
.h7{height:94.200027pt;}
.h8{height:94.200200pt;}
.h14{height:94.533203pt;}
.hb{height:794.666667pt;}
.h0{height:1122.666667pt;}
.w6{width:41.000000pt;}
.w5{width:47.000000pt;}
.w8{width:47.000041pt;}
.wa{width:53.000000pt;}
.wc{width:62.000000pt;}
.w9{width:77.000000pt;}
.w4{width:82.999980pt;}
.w7{width:83.000000pt;}
.wb{width:89.000000pt;}
.w3{width:143.999989pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.w2{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1f{left:4.000000pt;}
.xe{left:94.533325pt;}
.x10{left:100.037886pt;}
.xb{left:106.387701pt;}
.x1b{left:107.346480pt;}
.x1{left:108.416792pt;}
.x1a{left:111.377729pt;}
.x7{left:114.047300pt;}
.x16{left:126.861451pt;}
.x1d{left:142.533325pt;}
.xa{left:158.281696pt;}
.x4{left:172.764450pt;}
.x17{left:186.681763pt;}
.x2{left:221.221480pt;}
.x20{left:245.533347pt;}
.xc{left:258.470282pt;}
.x6{left:292.392515pt;}
.x18{left:299.026903pt;}
.x9{left:320.089345pt;}
.x11{left:329.760546pt;}
.x1c{left:333.315230pt;}
.x5{left:347.697935pt;}
.xd{left:349.981295pt;}
.x8{left:355.769410pt;}
.x19{left:358.847228pt;}
.x21{left:377.533320pt;}
.x1e{left:383.955146pt;}
.xf{left:392.850375pt;}
.x3{left:396.850375pt;}
.x22{left:419.533320pt;}
.x23{left:467.533320pt;}
.x24{left:551.533320pt;}
.x2c{left:557.259836pt;}
.x25{left:599.533320pt;}
.x14{left:602.267703pt;}
.x13{left:626.119263pt;}
.x26{left:641.533320pt;}
.x15{left:658.088018pt;}
.x27{left:689.533360pt;}
.x12{left:703.533325pt;}
.x28{left:767.533360pt;}
.x29{left:821.533360pt;}
.x2a{left:875.533360pt;}
.x2b{left:965.533360pt;}
}




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