
    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_98ac6b58a617d4747034af1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.201000;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_5e491fcbc647382d2982fcec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.019400;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_f2902e6a1bcd8cb9ed001e23.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.809000;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_552ffdc4db8511c1e96f7c9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_4e8923120713d5895033e930.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.029000;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_96cc818609a9f1071c676b35.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.702000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.092000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.066000px;}
.ls9{letter-spacing:0.132000px;}
.ls5{letter-spacing:0.198000px;}
.ls6{letter-spacing:0.264000px;}
.ls8{letter-spacing:0.330000px;}
.ls1c{letter-spacing:0.378000px;}
.ls0{letter-spacing:0.396000px;}
.lsa{letter-spacing:0.462000px;}
.lsf{letter-spacing:0.528000px;}
.ls12{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.660000px;}
.ls19{letter-spacing:0.726000px;}
.ls1b{letter-spacing:0.858000px;}
.ls13{letter-spacing:0.990000px;}
.ls10{letter-spacing:1.056000px;}
.lse{letter-spacing:1.122000px;}
.ls1d{letter-spacing:1.188000px;}
.lsb{letter-spacing:1.320000px;}
.ls15{letter-spacing:1.386000px;}
.ls18{letter-spacing:1.452000px;}
.ls3{letter-spacing:1.650000px;}
.lsc{letter-spacing:13.794000px;}
.ls1a{letter-spacing:15.576000px;}
.ls17{letter-spacing:18.018000px;}
.ls16{letter-spacing:18.203400px;}
.ls7{letter-spacing:18.236400px;}
.ls11{letter-spacing:19.030200px;}
.ls14{letter-spacing:19.914000px;}
.ls2{letter-spacing:25.888200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-16.764000px;}
.ws0{word-spacing:-15.180000px;}
.ws11{word-spacing:-13.200000px;}
.ws9{word-spacing:-1.452000px;}
.wse{word-spacing:-1.320000px;}
.wsb{word-spacing:-1.254000px;}
.ws1{word-spacing:-1.122000px;}
.ws3{word-spacing:-0.960000px;}
.ws10{word-spacing:-0.594000px;}
.wsa{word-spacing:-0.330000px;}
.ws2{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.wsf{word-spacing:1.108200px;}
.ws7{word-spacing:1.584000px;}
.ws5{word-spacing:1.650000px;}
.wsd{word-spacing:2.991600px;}
.ws6{word-spacing:4.422000px;}
.wsc{word-spacing:9.214200px;}
._1c{margin-left:-15.444000px;}
._c{margin-left:-10.836000px;}
._1a{margin-left:-9.570000px;}
._8{margin-left:-8.382000px;}
._3{margin-left:-6.402000px;}
._a{margin-left:-5.346000px;}
._5{margin-left:-4.290000px;}
._1{margin-left:-2.838000px;}
._0{margin-left:-1.320000px;}
._4{width:1.518000px;}
._6{width:2.772000px;}
._7{width:4.752000px;}
._15{width:6.798000px;}
._2{width:7.854000px;}
._13{width:8.976000px;}
._1b{width:12.210000px;}
._9{width:13.398000px;}
._12{width:14.856000px;}
._14{width:16.368000px;}
._f{width:17.556000px;}
._10{width:19.074000px;}
._e{width:20.460000px;}
._16{width:22.440000px;}
._19{width:33.210000px;}
._18{width:34.344000px;}
._17{width:61.344000px;}
._d{width:72.060000px;}
._11{width:75.060000px;}
._b{width:1009.044000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(25,25,25);}
.fs1{font-size:39.600000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:3.975000px;}
.y1c{bottom:37.500091px;}
.y53{bottom:51.322950px;}
.yf3{bottom:51.339450px;}
.y95{bottom:51.372450px;}
.yca{bottom:51.373950px;}
.ye6{bottom:51.381450px;}
.y6a{bottom:51.388950px;}
.y113{bottom:51.405450px;}
.y108{bottom:51.430950px;}
.y14{bottom:51.496950px;}
.y2b{bottom:51.504450px;}
.ya9{bottom:51.505950px;}
.y5b{bottom:51.519450px;}
.y31{bottom:51.519900px;}
.y6b{bottom:51.520950px;}
.y7d{bottom:86.836050px;}
.y64{bottom:87.067800px;}
.y10d{bottom:88.547250px;}
.yae{bottom:90.593250px;}
.y2f{bottom:90.814050px;}
.y34{bottom:92.317800px;}
.y1b{bottom:92.407650px;}
.ycb{bottom:94.176600px;}
.y65{bottom:94.321950px;}
.yf2{bottom:94.338450px;}
.y94{bottom:94.371450px;}
.ye7{bottom:95.676600px;}
.y109{bottom:95.866050px;}
.y7c{bottom:106.330050px;}
.y63{bottom:106.561800px;}
.y10c{bottom:108.041250px;}
.yad{bottom:110.087250px;}
.y2e{bottom:110.314050px;}
.y33{bottom:111.817800px;}
.y1a{bottom:111.907650px;}
.y52{bottom:116.827950px;}
.yf1{bottom:116.844450px;}
.y93{bottom:116.877450px;}
.y7b{bottom:125.824050px;}
.y62{bottom:126.055800px;}
.y10b{bottom:127.535250px;}
.yac{bottom:129.581250px;}
.y2d{bottom:129.814050px;}
.y32{bottom:131.317800px;}
.y51{bottom:139.333950px;}
.yf0{bottom:139.350450px;}
.y92{bottom:139.383450px;}
.y107{bottom:139.441950px;}
.y10a{bottom:147.029250px;}
.yab{bottom:149.075250px;}
.y50{bottom:161.839950px;}
.yef{bottom:161.856450px;}
.yc9{bottom:161.874450px;}
.ye5{bottom:161.881950px;}
.y91{bottom:161.889450px;}
.y106{bottom:161.947950px;}
.yaa{bottom:168.569250px;}
.y4f{bottom:184.345950px;}
.yee{bottom:184.362450px;}
.yc8{bottom:184.380450px;}
.ye4{bottom:184.387950px;}
.y90{bottom:184.395450px;}
.y105{bottom:184.453950px;}
.y61{bottom:184.615800px;}
.y7a{bottom:185.218650px;}
.y13{bottom:185.295450px;}
.y30{bottom:187.111650px;}
.y4e{bottom:206.851950px;}
.yed{bottom:206.868450px;}
.yc7{bottom:206.886450px;}
.ye3{bottom:206.893950px;}
.y8f{bottom:206.901450px;}
.y104{bottom:206.959950px;}
.y60{bottom:207.121800px;}
.y79{bottom:207.652650px;}
.y12{bottom:207.801450px;}
.y4d{bottom:229.357950px;}
.yec{bottom:229.374450px;}
.yc6{bottom:229.392450px;}
.ye2{bottom:229.399950px;}
.y8e{bottom:229.407450px;}
.y103{bottom:229.465950px;}
.ya8{bottom:229.507950px;}
.y5f{bottom:229.627800px;}
.y78{bottom:230.158650px;}
.y11{bottom:230.307450px;}
.y4c{bottom:251.863950px;}
.yeb{bottom:251.880450px;}
.y69{bottom:251.896950px;}
.yc5{bottom:251.898450px;}
.ye1{bottom:251.905950px;}
.y8d{bottom:251.913450px;}
.y102{bottom:251.971950px;}
.ya7{bottom:252.013950px;}
.y5e{bottom:252.133800px;}
.y77{bottom:252.664650px;}
.y10{bottom:252.813450px;}
.y4b{bottom:274.369950px;}
.yea{bottom:274.386450px;}
.y68{bottom:274.402950px;}
.yc4{bottom:274.404450px;}
.ye0{bottom:274.411950px;}
.y8c{bottom:274.419450px;}
.y101{bottom:274.477950px;}
.ya6{bottom:274.519950px;}
.y5d{bottom:274.639800px;}
.y76{bottom:275.170650px;}
.yf{bottom:275.319450px;}
.y4a{bottom:296.875950px;}
.ye9{bottom:296.892450px;}
.y67{bottom:296.908950px;}
.yc3{bottom:296.910450px;}
.ydf{bottom:296.917950px;}
.y8b{bottom:296.925450px;}
.y100{bottom:296.983950px;}
.ya5{bottom:297.013950px;}
.y75{bottom:297.676650px;}
.ye{bottom:297.747450px;}
.y49{bottom:319.381950px;}
.ye8{bottom:319.398450px;}
.yc2{bottom:319.416450px;}
.yde{bottom:319.423950px;}
.y8a{bottom:319.431450px;}
.yff{bottom:319.489950px;}
.ya4{bottom:319.519950px;}
.y5c{bottom:319.639800px;}
.y74{bottom:320.182650px;}
.yd{bottom:320.253450px;}
.y48{bottom:341.887950px;}
.y66{bottom:341.904450px;}
.yc1{bottom:341.922450px;}
.ydd{bottom:341.929950px;}
.y89{bottom:341.937450px;}
.yfe{bottom:341.995950px;}
.ya3{bottom:342.025950px;}
.y73{bottom:342.688650px;}
.yc{bottom:342.759450px;}
.y47{bottom:364.393950px;}
.y112{bottom:364.410450px;}
.yc0{bottom:364.428450px;}
.ydc{bottom:364.435950px;}
.y88{bottom:364.443450px;}
.yfd{bottom:364.501950px;}
.ya2{bottom:364.519950px;}
.y72{bottom:365.194650px;}
.yb{bottom:365.265450px;}
.y46{bottom:386.899950px;}
.y111{bottom:386.916450px;}
.ybf{bottom:386.934450px;}
.ydb{bottom:386.941950px;}
.y87{bottom:386.949450px;}
.yfc{bottom:387.007950px;}
.ya1{bottom:387.025950px;}
.y71{bottom:387.700650px;}
.ya{bottom:387.771450px;}
.y45{bottom:409.405950px;}
.y110{bottom:409.422450px;}
.ybe{bottom:409.440450px;}
.yda{bottom:409.447950px;}
.y86{bottom:409.455450px;}
.ya0{bottom:409.483950px;}
.yfb{bottom:409.513950px;}
.y70{bottom:410.206650px;}
.y9{bottom:410.277450px;}
.y44{bottom:431.911950px;}
.y10f{bottom:431.928450px;}
.ybd{bottom:431.946450px;}
.yd9{bottom:431.953950px;}
.y85{bottom:431.961450px;}
.y9f{bottom:431.989950px;}
.yfa{bottom:432.019950px;}
.y6f{bottom:432.712650px;}
.y8{bottom:432.783450px;}
.y43{bottom:454.417950px;}
.y10e{bottom:454.434450px;}
.ybc{bottom:454.452450px;}
.yd8{bottom:454.459950px;}
.y84{bottom:454.467450px;}
.y9e{bottom:454.495950px;}
.yf9{bottom:454.525950px;}
.y6e{bottom:455.218650px;}
.y7{bottom:455.289450px;}
.y42{bottom:476.923950px;}
.yf8{bottom:476.940450px;}
.ybb{bottom:476.958450px;}
.yd7{bottom:476.965950px;}
.y83{bottom:476.973450px;}
.y9d{bottom:477.001950px;}
.y6d{bottom:477.724650px;}
.y6{bottom:477.795450px;}
.y41{bottom:499.429950px;}
.yf7{bottom:499.446450px;}
.yba{bottom:499.464450px;}
.yd6{bottom:499.471950px;}
.y82{bottom:499.479450px;}
.y9c{bottom:499.507950px;}
.y2a{bottom:499.512450px;}
.y5{bottom:500.301450px;}
.y40{bottom:521.935950px;}
.yf6{bottom:521.952450px;}
.yb9{bottom:521.970450px;}
.yd5{bottom:521.977950px;}
.y81{bottom:521.985450px;}
.y9b{bottom:522.013950px;}
.y6c{bottom:522.724650px;}
.y4{bottom:522.807450px;}
.y3f{bottom:544.441950px;}
.yf5{bottom:544.458450px;}
.yb8{bottom:544.476450px;}
.yd4{bottom:544.483950px;}
.y80{bottom:544.491450px;}
.y29{bottom:544.507950px;}
.y9a{bottom:544.519950px;}
.y3{bottom:545.313450px;}
.y3e{bottom:566.947950px;}
.yf4{bottom:566.964450px;}
.yb7{bottom:566.982450px;}
.yd3{bottom:566.989950px;}
.y28{bottom:567.013950px;}
.y99{bottom:567.025950px;}
.y2{bottom:567.819450px;}
.y3d{bottom:589.453950px;}
.y98{bottom:589.470450px;}
.y7f{bottom:589.486950px;}
.yb6{bottom:589.488450px;}
.yd2{bottom:589.495950px;}
.y27{bottom:589.519950px;}
.y1{bottom:590.325450px;}
.y3c{bottom:611.959950px;}
.y97{bottom:611.976450px;}
.yb5{bottom:611.994450px;}
.yd1{bottom:612.001950px;}
.y26{bottom:612.009450px;}
.y3b{bottom:634.465950px;}
.y7e{bottom:634.482450px;}
.yb4{bottom:634.500450px;}
.yd0{bottom:634.507950px;}
.y25{bottom:634.515450px;}
.y5a{bottom:634.530450px;}
.y3a{bottom:656.971950px;}
.y96{bottom:656.988450px;}
.yb3{bottom:657.006450px;}
.ycf{bottom:657.013950px;}
.y24{bottom:657.021450px;}
.y39{bottom:679.477950px;}
.y59{bottom:679.494450px;}
.yb2{bottom:679.512450px;}
.yce{bottom:679.519950px;}
.y38{bottom:701.983950px;}
.y58{bottom:702.000450px;}
.ycd{bottom:702.013950px;}
.y23{bottom:702.016950px;}
.yb1{bottom:702.018450px;}
.y37{bottom:724.489950px;}
.y57{bottom:724.506450px;}
.ycc{bottom:724.519950px;}
.y19{bottom:726.513450px;}
.y36{bottom:746.995950px;}
.y22{bottom:747.012450px;}
.yb0{bottom:747.013950px;}
.y18{bottom:749.013450px;}
.y35{bottom:769.501950px;}
.y56{bottom:769.518450px;}
.yaf{bottom:769.519950px;}
.y21{bottom:792.007950px;}
.y55{bottom:792.024450px;}
.y17{bottom:794.013450px;}
.y20{bottom:814.513950px;}
.y54{bottom:814.530450px;}
.y16{bottom:824.013450px;}
.y1f{bottom:837.019950px;}
.y15{bottom:854.013450px;}
.y1e{bottom:859.525950px;}
.y2c{bottom:945.667800px;}
.ha{height:16.500090px;}
.h8{height:38.847600px;}
.h5{height:39.798000px;}
.he{height:43.164000px;}
.h3{height:47.480400px;}
.hc{height:49.764000px;}
.h10{height:50.004000px;}
.h9{height:55.560000px;}
.hb{height:60.120000px;}
.h2{height:61.116000px;}
.h12{height:61.164000px;}
.hd{height:61.182000px;}
.h13{height:61.188000px;}
.h14{height:61.236000px;}
.hf{height:61.242000px;}
.h11{height:61.404000px;}
.h4{height:61.428000px;}
.h7{height:67.200000px;}
.h6{height:72.384000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:22.500000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039050px;}
.x9{left:97.800450px;}
.x2{left:101.539050px;}
.xb{left:106.291350px;}
.x4{left:110.599050px;}
.x7{left:274.259400px;}
.x6{left:304.162350px;}
.x5{left:350.167511px;}
.xa{left:617.205300px;}
.x3{left:618.328200px;}
.x8{left:619.672350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.637333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.058667pt;}
.ls9{letter-spacing:0.117333pt;}
.ls5{letter-spacing:0.176000pt;}
.ls6{letter-spacing:0.234667pt;}
.ls8{letter-spacing:0.293333pt;}
.ls1c{letter-spacing:0.336000pt;}
.ls0{letter-spacing:0.352000pt;}
.lsa{letter-spacing:0.410667pt;}
.lsf{letter-spacing:0.469333pt;}
.ls12{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.586667pt;}
.ls19{letter-spacing:0.645333pt;}
.ls1b{letter-spacing:0.762667pt;}
.ls13{letter-spacing:0.880000pt;}
.ls10{letter-spacing:0.938667pt;}
.lse{letter-spacing:0.997333pt;}
.ls1d{letter-spacing:1.056000pt;}
.lsb{letter-spacing:1.173333pt;}
.ls15{letter-spacing:1.232000pt;}
.ls18{letter-spacing:1.290667pt;}
.ls3{letter-spacing:1.466667pt;}
.lsc{letter-spacing:12.261333pt;}
.ls1a{letter-spacing:13.845333pt;}
.ls17{letter-spacing:16.016000pt;}
.ls16{letter-spacing:16.180800pt;}
.ls7{letter-spacing:16.210133pt;}
.ls11{letter-spacing:16.915733pt;}
.ls14{letter-spacing:17.701333pt;}
.ls2{letter-spacing:23.011733pt;}
.ws8{word-spacing:-14.901333pt;}
.ws0{word-spacing:-13.493333pt;}
.ws11{word-spacing:-11.733333pt;}
.ws9{word-spacing:-1.290667pt;}
.wse{word-spacing:-1.173333pt;}
.wsb{word-spacing:-1.114667pt;}
.ws1{word-spacing:-0.997333pt;}
.ws3{word-spacing:-0.853333pt;}
.ws10{word-spacing:-0.528000pt;}
.wsa{word-spacing:-0.293333pt;}
.ws2{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.wsf{word-spacing:0.985067pt;}
.ws7{word-spacing:1.408000pt;}
.ws5{word-spacing:1.466667pt;}
.wsd{word-spacing:2.659200pt;}
.ws6{word-spacing:3.930667pt;}
.wsc{word-spacing:8.190400pt;}
._1c{margin-left:-13.728000pt;}
._c{margin-left:-9.632000pt;}
._1a{margin-left:-8.506667pt;}
._8{margin-left:-7.450667pt;}
._3{margin-left:-5.690667pt;}
._a{margin-left:-4.752000pt;}
._5{margin-left:-3.813333pt;}
._1{margin-left:-2.522667pt;}
._0{margin-left:-1.173333pt;}
._4{width:1.349333pt;}
._6{width:2.464000pt;}
._7{width:4.224000pt;}
._15{width:6.042667pt;}
._2{width:6.981333pt;}
._13{width:7.978667pt;}
._1b{width:10.853333pt;}
._9{width:11.909333pt;}
._12{width:13.205333pt;}
._14{width:14.549333pt;}
._f{width:15.605333pt;}
._10{width:16.954667pt;}
._e{width:18.186667pt;}
._16{width:19.946667pt;}
._19{width:29.520000pt;}
._18{width:30.528000pt;}
._17{width:54.528000pt;}
._d{width:64.053333pt;}
._11{width:66.720000pt;}
._b{width:896.928000pt;}
.fs1{font-size:35.200000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:3.533333pt;}
.y1c{bottom:33.333415pt;}
.y53{bottom:45.620400pt;}
.yf3{bottom:45.635067pt;}
.y95{bottom:45.664400pt;}
.yca{bottom:45.665733pt;}
.ye6{bottom:45.672400pt;}
.y6a{bottom:45.679067pt;}
.y113{bottom:45.693733pt;}
.y108{bottom:45.716400pt;}
.y14{bottom:45.775067pt;}
.y2b{bottom:45.781733pt;}
.ya9{bottom:45.783067pt;}
.y5b{bottom:45.795067pt;}
.y31{bottom:45.795467pt;}
.y6b{bottom:45.796400pt;}
.y7d{bottom:77.187600pt;}
.y64{bottom:77.393600pt;}
.y10d{bottom:78.708667pt;}
.yae{bottom:80.527333pt;}
.y2f{bottom:80.723600pt;}
.y34{bottom:82.060267pt;}
.y1b{bottom:82.140133pt;}
.ycb{bottom:83.712533pt;}
.y65{bottom:83.841733pt;}
.yf2{bottom:83.856400pt;}
.y94{bottom:83.885733pt;}
.ye7{bottom:85.045867pt;}
.y109{bottom:85.214267pt;}
.y7c{bottom:94.515600pt;}
.y63{bottom:94.721600pt;}
.y10c{bottom:96.036667pt;}
.yad{bottom:97.855333pt;}
.y2e{bottom:98.056933pt;}
.y33{bottom:99.393600pt;}
.y1a{bottom:99.473467pt;}
.y52{bottom:103.847067pt;}
.yf1{bottom:103.861733pt;}
.y93{bottom:103.891067pt;}
.y7b{bottom:111.843600pt;}
.y62{bottom:112.049600pt;}
.y10b{bottom:113.364667pt;}
.yac{bottom:115.183333pt;}
.y2d{bottom:115.390267pt;}
.y32{bottom:116.726933pt;}
.y51{bottom:123.852400pt;}
.yf0{bottom:123.867067pt;}
.y92{bottom:123.896400pt;}
.y107{bottom:123.948400pt;}
.y10a{bottom:130.692667pt;}
.yab{bottom:132.511333pt;}
.y50{bottom:143.857733pt;}
.yef{bottom:143.872400pt;}
.yc9{bottom:143.888400pt;}
.ye5{bottom:143.895067pt;}
.y91{bottom:143.901733pt;}
.y106{bottom:143.953733pt;}
.yaa{bottom:149.839333pt;}
.y4f{bottom:163.863067pt;}
.yee{bottom:163.877733pt;}
.yc8{bottom:163.893733pt;}
.ye4{bottom:163.900400pt;}
.y90{bottom:163.907067pt;}
.y105{bottom:163.959067pt;}
.y61{bottom:164.102933pt;}
.y7a{bottom:164.638800pt;}
.y13{bottom:164.707067pt;}
.y30{bottom:166.321467pt;}
.y4e{bottom:183.868400pt;}
.yed{bottom:183.883067pt;}
.yc7{bottom:183.899067pt;}
.ye3{bottom:183.905733pt;}
.y8f{bottom:183.912400pt;}
.y104{bottom:183.964400pt;}
.y60{bottom:184.108267pt;}
.y79{bottom:184.580133pt;}
.y12{bottom:184.712400pt;}
.y4d{bottom:203.873733pt;}
.yec{bottom:203.888400pt;}
.yc6{bottom:203.904400pt;}
.ye2{bottom:203.911067pt;}
.y8e{bottom:203.917733pt;}
.y103{bottom:203.969733pt;}
.ya8{bottom:204.007067pt;}
.y5f{bottom:204.113600pt;}
.y78{bottom:204.585467pt;}
.y11{bottom:204.717733pt;}
.y4c{bottom:223.879067pt;}
.yeb{bottom:223.893733pt;}
.y69{bottom:223.908400pt;}
.yc5{bottom:223.909733pt;}
.ye1{bottom:223.916400pt;}
.y8d{bottom:223.923067pt;}
.y102{bottom:223.975067pt;}
.ya7{bottom:224.012400pt;}
.y5e{bottom:224.118933pt;}
.y77{bottom:224.590800pt;}
.y10{bottom:224.723067pt;}
.y4b{bottom:243.884400pt;}
.yea{bottom:243.899067pt;}
.y68{bottom:243.913733pt;}
.yc4{bottom:243.915067pt;}
.ye0{bottom:243.921733pt;}
.y8c{bottom:243.928400pt;}
.y101{bottom:243.980400pt;}
.ya6{bottom:244.017733pt;}
.y5d{bottom:244.124267pt;}
.y76{bottom:244.596133pt;}
.yf{bottom:244.728400pt;}
.y4a{bottom:263.889733pt;}
.ye9{bottom:263.904400pt;}
.y67{bottom:263.919067pt;}
.yc3{bottom:263.920400pt;}
.ydf{bottom:263.927067pt;}
.y8b{bottom:263.933733pt;}
.y100{bottom:263.985733pt;}
.ya5{bottom:264.012400pt;}
.y75{bottom:264.601467pt;}
.ye{bottom:264.664400pt;}
.y49{bottom:283.895067pt;}
.ye8{bottom:283.909733pt;}
.yc2{bottom:283.925733pt;}
.yde{bottom:283.932400pt;}
.y8a{bottom:283.939067pt;}
.yff{bottom:283.991067pt;}
.ya4{bottom:284.017733pt;}
.y5c{bottom:284.124267pt;}
.y74{bottom:284.606800pt;}
.yd{bottom:284.669733pt;}
.y48{bottom:303.900400pt;}
.y66{bottom:303.915067pt;}
.yc1{bottom:303.931067pt;}
.ydd{bottom:303.937733pt;}
.y89{bottom:303.944400pt;}
.yfe{bottom:303.996400pt;}
.ya3{bottom:304.023067pt;}
.y73{bottom:304.612133pt;}
.yc{bottom:304.675067pt;}
.y47{bottom:323.905733pt;}
.y112{bottom:323.920400pt;}
.yc0{bottom:323.936400pt;}
.ydc{bottom:323.943067pt;}
.y88{bottom:323.949733pt;}
.yfd{bottom:324.001733pt;}
.ya2{bottom:324.017733pt;}
.y72{bottom:324.617467pt;}
.yb{bottom:324.680400pt;}
.y46{bottom:343.911067pt;}
.y111{bottom:343.925733pt;}
.ybf{bottom:343.941733pt;}
.ydb{bottom:343.948400pt;}
.y87{bottom:343.955067pt;}
.yfc{bottom:344.007067pt;}
.ya1{bottom:344.023067pt;}
.y71{bottom:344.622800pt;}
.ya{bottom:344.685733pt;}
.y45{bottom:363.916400pt;}
.y110{bottom:363.931067pt;}
.ybe{bottom:363.947067pt;}
.yda{bottom:363.953733pt;}
.y86{bottom:363.960400pt;}
.ya0{bottom:363.985733pt;}
.yfb{bottom:364.012400pt;}
.y70{bottom:364.628133pt;}
.y9{bottom:364.691067pt;}
.y44{bottom:383.921733pt;}
.y10f{bottom:383.936400pt;}
.ybd{bottom:383.952400pt;}
.yd9{bottom:383.959067pt;}
.y85{bottom:383.965733pt;}
.y9f{bottom:383.991067pt;}
.yfa{bottom:384.017733pt;}
.y6f{bottom:384.633467pt;}
.y8{bottom:384.696400pt;}
.y43{bottom:403.927067pt;}
.y10e{bottom:403.941733pt;}
.ybc{bottom:403.957733pt;}
.yd8{bottom:403.964400pt;}
.y84{bottom:403.971067pt;}
.y9e{bottom:403.996400pt;}
.yf9{bottom:404.023067pt;}
.y6e{bottom:404.638800pt;}
.y7{bottom:404.701733pt;}
.y42{bottom:423.932400pt;}
.yf8{bottom:423.947067pt;}
.ybb{bottom:423.963067pt;}
.yd7{bottom:423.969733pt;}
.y83{bottom:423.976400pt;}
.y9d{bottom:424.001733pt;}
.y6d{bottom:424.644133pt;}
.y6{bottom:424.707067pt;}
.y41{bottom:443.937733pt;}
.yf7{bottom:443.952400pt;}
.yba{bottom:443.968400pt;}
.yd6{bottom:443.975067pt;}
.y82{bottom:443.981733pt;}
.y9c{bottom:444.007067pt;}
.y2a{bottom:444.011067pt;}
.y5{bottom:444.712400pt;}
.y40{bottom:463.943067pt;}
.yf6{bottom:463.957733pt;}
.yb9{bottom:463.973733pt;}
.yd5{bottom:463.980400pt;}
.y81{bottom:463.987067pt;}
.y9b{bottom:464.012400pt;}
.y6c{bottom:464.644133pt;}
.y4{bottom:464.717733pt;}
.y3f{bottom:483.948400pt;}
.yf5{bottom:483.963067pt;}
.yb8{bottom:483.979067pt;}
.yd4{bottom:483.985733pt;}
.y80{bottom:483.992400pt;}
.y29{bottom:484.007067pt;}
.y9a{bottom:484.017733pt;}
.y3{bottom:484.723067pt;}
.y3e{bottom:503.953733pt;}
.yf4{bottom:503.968400pt;}
.yb7{bottom:503.984400pt;}
.yd3{bottom:503.991067pt;}
.y28{bottom:504.012400pt;}
.y99{bottom:504.023067pt;}
.y2{bottom:504.728400pt;}
.y3d{bottom:523.959067pt;}
.y98{bottom:523.973733pt;}
.y7f{bottom:523.988400pt;}
.yb6{bottom:523.989733pt;}
.yd2{bottom:523.996400pt;}
.y27{bottom:524.017733pt;}
.y1{bottom:524.733733pt;}
.y3c{bottom:543.964400pt;}
.y97{bottom:543.979067pt;}
.yb5{bottom:543.995067pt;}
.yd1{bottom:544.001733pt;}
.y26{bottom:544.008400pt;}
.y3b{bottom:563.969733pt;}
.y7e{bottom:563.984400pt;}
.yb4{bottom:564.000400pt;}
.yd0{bottom:564.007067pt;}
.y25{bottom:564.013733pt;}
.y5a{bottom:564.027067pt;}
.y3a{bottom:583.975067pt;}
.y96{bottom:583.989733pt;}
.yb3{bottom:584.005733pt;}
.ycf{bottom:584.012400pt;}
.y24{bottom:584.019067pt;}
.y39{bottom:603.980400pt;}
.y59{bottom:603.995067pt;}
.yb2{bottom:604.011067pt;}
.yce{bottom:604.017733pt;}
.y38{bottom:623.985733pt;}
.y58{bottom:624.000400pt;}
.ycd{bottom:624.012400pt;}
.y23{bottom:624.015067pt;}
.yb1{bottom:624.016400pt;}
.y37{bottom:643.991067pt;}
.y57{bottom:644.005733pt;}
.ycc{bottom:644.017733pt;}
.y19{bottom:645.789733pt;}
.y36{bottom:663.996400pt;}
.y22{bottom:664.011067pt;}
.yb0{bottom:664.012400pt;}
.y18{bottom:665.789733pt;}
.y35{bottom:684.001733pt;}
.y56{bottom:684.016400pt;}
.yaf{bottom:684.017733pt;}
.y21{bottom:704.007067pt;}
.y55{bottom:704.021733pt;}
.y17{bottom:705.789733pt;}
.y20{bottom:724.012400pt;}
.y54{bottom:724.027067pt;}
.y16{bottom:732.456400pt;}
.y1f{bottom:744.017733pt;}
.y15{bottom:759.123067pt;}
.y1e{bottom:764.023067pt;}
.y2c{bottom:840.593600pt;}
.ha{height:14.666747pt;}
.h8{height:34.531200pt;}
.h5{height:35.376000pt;}
.he{height:38.368000pt;}
.h3{height:42.204800pt;}
.hc{height:44.234667pt;}
.h10{height:44.448000pt;}
.h9{height:49.386667pt;}
.hb{height:53.440000pt;}
.h2{height:54.325333pt;}
.h12{height:54.368000pt;}
.hd{height:54.384000pt;}
.h13{height:54.389333pt;}
.h14{height:54.432000pt;}
.hf{height:54.437333pt;}
.h11{height:54.581333pt;}
.h4{height:54.602667pt;}
.h7{height:59.733333pt;}
.h6{height:64.341333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:20.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590267pt;}
.x9{left:86.933733pt;}
.x2{left:90.256933pt;}
.xb{left:94.481200pt;}
.x4{left:98.310267pt;}
.x7{left:243.786133pt;}
.x6{left:270.366533pt;}
.x5{left:311.260010pt;}
.xa{left:548.626933pt;}
.x3{left:549.625067pt;}
.x8{left:550.819867pt;}
}




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