
    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_6f71c0d17ea9afe5ceee7e98.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.817000;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_ca53174c81f02217e7cdc1ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.748000;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_88070295c425b86287b8c52e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.996000;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_e51da2029bec75637c2dd002.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966000;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_7567455d90b0111a6eff9c5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104000;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_131973328daf0ab8c9788206.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005000;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_cc839d6216ae36f2fe021f6c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.996000;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_d6f0ae5e6a22cadc39d374fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.148000;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:ff9;src:url('chunks/assets/font_f4ec4550d60b151108c5fe9b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.008000;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:ffa;src:url('chunks/assets/font_cad3fb3320fa44a2d210d6a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.718000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:216.000000px;}
.ls2{letter-spacing:-0.420000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.060000px;}
.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;}
}
.ws14{word-spacing:-56.192929px;}
.ws1{word-spacing:-16.344000px;}
.ws2{word-spacing:-15.060000px;}
.ws0{word-spacing:-15.000000px;}
.ws15{word-spacing:-14.580000px;}
.ws2c{word-spacing:-12.000000px;}
.wsa{word-spacing:-4.980000px;}
.ws1c{word-spacing:-3.180000px;}
.ws9{word-spacing:-2.220000px;}
.ws32{word-spacing:-2.160000px;}
.wsb{word-spacing:-2.100000px;}
.ws28{word-spacing:-2.040000px;}
.ws26{word-spacing:-1.860000px;}
.ws31{word-spacing:-1.680000px;}
.wsc{word-spacing:-1.380000px;}
.ws2a{word-spacing:-0.660000px;}
.ws6{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws2b{word-spacing:0.240000px;}
.ws16{word-spacing:0.420000px;}
.ws2e{word-spacing:1.260000px;}
.wsf{word-spacing:2.160000px;}
.ws29{word-spacing:2.220000px;}
.ws25{word-spacing:2.400000px;}
.ws21{word-spacing:2.460000px;}
.ws10{word-spacing:2.580000px;}
.ws8{word-spacing:3.060000px;}
.ws1e{word-spacing:3.900000px;}
.ws24{word-spacing:4.080000px;}
.ws20{word-spacing:4.200000px;}
.ws18{word-spacing:4.500000px;}
.ws33{word-spacing:4.860000px;}
.ws19{word-spacing:4.980000px;}
.ws7{word-spacing:5.100000px;}
.ws1d{word-spacing:5.160000px;}
.ws1f{word-spacing:5.280000px;}
.ws30{word-spacing:5.340000px;}
.ws5{word-spacing:5.760000px;}
.wse{word-spacing:6.360000px;}
.ws27{word-spacing:6.600000px;}
.ws13{word-spacing:7.020000px;}
.ws17{word-spacing:7.140000px;}
.ws2d{word-spacing:7.200000px;}
.ws1b{word-spacing:7.440000px;}
.ws12{word-spacing:8.700000px;}
.ws11{word-spacing:8.940000px;}
.ws4{word-spacing:9.060000px;}
.ws23{word-spacing:9.360000px;}
.ws22{word-spacing:10.200000px;}
.ws34{word-spacing:10.560000px;}
.ws1a{word-spacing:10.740000px;}
.ws2f{word-spacing:13.140000px;}
.wsd{word-spacing:13.500000px;}
._b{margin-left:-21.399600px;}
._15{margin-left:-7.108800px;}
._3{margin-left:-5.772000px;}
._8{margin-left:-4.356000px;}
._1{margin-left:-2.526000px;}
._0{margin-left:-1.085400px;}
._7{width:1.314000px;}
._a{width:2.688000px;}
._2{width:3.852000px;}
._5{width:5.154000px;}
._6{width:6.354000px;}
._c{width:7.547400px;}
._d{width:9.378600px;}
._f{width:11.280000px;}
._4{width:12.479400px;}
._9{width:13.786800px;}
._e{width:16.204800px;}
._18{width:17.605200px;}
._10{width:19.151400px;}
._13{width:20.268000px;}
._14{width:21.714000px;}
._17{width:27.108000px;}
._11{width:28.128000px;}
._12{width:29.568000px;}
._16{width:614.346000px;}
.fc2{color:rgb(156,219,175);}
.fc1{color:rgb(195,126,78);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:120.000000px;}
.fs4{font-size:372.138600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:27.000000px;}
.y29{bottom:27.212550px;}
.y3{bottom:38.139150px;}
.y6a{bottom:39.850350px;}
.y2{bottom:57.144450px;}
.y1{bottom:79.749750px;}
.y4e{bottom:110.055150px;}
.y9b{bottom:110.551200px;}
.y98{bottom:111.614250px;}
.y69{bottom:116.834700px;}
.y24{bottom:118.295700px;}
.y9a{bottom:125.125950px;}
.y97{bottom:126.189000px;}
.y4d{bottom:128.055150px;}
.yd2{bottom:130.122000px;}
.y23{bottom:136.295700px;}
.y4c{bottom:146.055150px;}
.y22{bottom:154.295700px;}
.y4b{bottom:164.055150px;}
.y26{bottom:172.295700px;}
.y4a{bottom:182.055150px;}
.y6c{bottom:188.055150px;}
.y25{bottom:190.295700px;}
.y49{bottom:200.055150px;}
.y9f{bottom:208.535400px;}
.y21{bottom:209.795700px;}
.y20{bottom:227.795700px;}
.yd0{bottom:233.409450px;}
.y1f{bottom:245.795700px;}
.y68{bottom:257.952750px;}
.y1e{bottom:263.795700px;}
.y67{bottom:275.716500px;}
.y1d{bottom:281.795700px;}
.y1c{bottom:299.795700px;}
.ycd{bottom:310.275600px;}
.y1b{bottom:317.795700px;}
.ycc{bottom:328.275600px;}
.y1a{bottom:335.795700px;}
.ycb{bottom:346.275600px;}
.y19{bottom:353.795700px;}
.yca{bottom:364.275600px;}
.y18{bottom:371.795700px;}
.y66{bottom:380.055150px;}
.yc9{bottom:382.275600px;}
.y17{bottom:389.795700px;}
.y65{bottom:398.055150px;}
.y96{bottom:398.834700px;}
.yc8{bottom:400.275600px;}
.y16{bottom:407.795700px;}
.y64{bottom:416.055150px;}
.y95{bottom:416.834700px;}
.yc7{bottom:418.275600px;}
.y15{bottom:425.795700px;}
.y63{bottom:434.055150px;}
.y94{bottom:434.834700px;}
.yc6{bottom:436.275600px;}
.y14{bottom:443.795700px;}
.yd3{bottom:449.409450px;}
.y62{bottom:452.055150px;}
.y93{bottom:452.834700px;}
.yc5{bottom:454.275600px;}
.y13{bottom:461.795700px;}
.y61{bottom:470.055150px;}
.y92{bottom:470.834700px;}
.yc4{bottom:472.275600px;}
.y12{bottom:479.795700px;}
.y60{bottom:488.055150px;}
.y91{bottom:488.834700px;}
.yc3{bottom:490.275600px;}
.y11{bottom:497.795700px;}
.y5f{bottom:506.055150px;}
.y90{bottom:506.834700px;}
.yc2{bottom:508.275600px;}
.y10{bottom:515.795700px;}
.y5e{bottom:524.055150px;}
.y8f{bottom:524.834700px;}
.yc1{bottom:526.275600px;}
.yf{bottom:533.795700px;}
.y5d{bottom:542.055150px;}
.y8e{bottom:542.834700px;}
.yc0{bottom:544.275600px;}
.y9e{bottom:547.417350px;}
.ye{bottom:551.795700px;}
.y5c{bottom:560.055150px;}
.y8d{bottom:560.834700px;}
.ybf{bottom:562.275600px;}
.yd{bottom:569.795700px;}
.y48{bottom:578.055150px;}
.y8c{bottom:578.834700px;}
.y6d{bottom:579.023550px;}
.ybe{bottom:580.275600px;}
.yc{bottom:587.795700px;}
.y47{bottom:596.055150px;}
.y8b{bottom:596.834700px;}
.ybd{bottom:598.275600px;}
.yb{bottom:605.795700px;}
.y46{bottom:614.055150px;}
.y8a{bottom:614.834700px;}
.ybc{bottom:616.275600px;}
.ya{bottom:623.795700px;}
.y45{bottom:632.055150px;}
.y89{bottom:632.834700px;}
.ybb{bottom:634.275600px;}
.y6b{bottom:638.055150px;}
.y9{bottom:641.795700px;}
.y99{bottom:645.992100px;}
.yd1{bottom:648.118050px;}
.y44{bottom:650.055150px;}
.y88{bottom:650.834700px;}
.yba{bottom:652.275600px;}
.y43{bottom:668.055150px;}
.y87{bottom:668.834700px;}
.yb9{bottom:670.275600px;}
.y42{bottom:686.055150px;}
.y86{bottom:686.834700px;}
.yb8{bottom:688.275600px;}
.y27{bottom:690.144000px;}
.y41{bottom:704.055150px;}
.y85{bottom:704.834700px;}
.yb7{bottom:706.275600px;}
.y40{bottom:722.055150px;}
.y84{bottom:722.834700px;}
.yb6{bottom:724.275600px;}
.y8{bottom:724.802100px;}
.y3f{bottom:740.055150px;}
.y83{bottom:740.834700px;}
.yb5{bottom:742.275600px;}
.y3e{bottom:758.055150px;}
.y82{bottom:758.834700px;}
.yb4{bottom:760.275600px;}
.y3d{bottom:776.055150px;}
.y81{bottom:776.834700px;}
.yb3{bottom:778.275600px;}
.y7{bottom:791.773350px;}
.y3c{bottom:794.055150px;}
.y80{bottom:794.834700px;}
.yb2{bottom:796.275600px;}
.y3b{bottom:812.055150px;}
.y7f{bottom:812.834700px;}
.yb1{bottom:814.275600px;}
.y6{bottom:816.973350px;}
.y3a{bottom:830.055150px;}
.y7e{bottom:830.834700px;}
.yb0{bottom:832.275600px;}
.y9d{bottom:835.547250px;}
.ycf{bottom:840.259800px;}
.y39{bottom:848.055150px;}
.y7d{bottom:848.834700px;}
.y9c{bottom:850.122000px;}
.yaf{bottom:850.275600px;}
.yce{bottom:854.834700px;}
.y38{bottom:866.055150px;}
.y7c{bottom:866.834700px;}
.yae{bottom:868.275600px;}
.y5{bottom:875.145000px;}
.y37{bottom:884.055150px;}
.y7b{bottom:884.834700px;}
.yad{bottom:886.275600px;}
.y5b{bottom:902.055150px;}
.y7a{bottom:902.834700px;}
.yac{bottom:904.275600px;}
.y36{bottom:905.055150px;}
.y4{bottom:911.145000px;}
.y5a{bottom:920.055150px;}
.y79{bottom:920.834700px;}
.yab{bottom:922.275600px;}
.y35{bottom:923.055150px;}
.y59{bottom:938.055150px;}
.y78{bottom:938.834700px;}
.yaa{bottom:940.275600px;}
.y34{bottom:941.055150px;}
.y58{bottom:956.055150px;}
.y77{bottom:956.834700px;}
.ya9{bottom:958.275600px;}
.y33{bottom:959.055150px;}
.y57{bottom:974.055150px;}
.y76{bottom:974.834700px;}
.ya8{bottom:976.275600px;}
.y32{bottom:977.055150px;}
.y56{bottom:992.055150px;}
.y75{bottom:992.834700px;}
.y28{bottom:994.252050px;}
.ya7{bottom:994.275600px;}
.y31{bottom:995.055150px;}
.y55{bottom:1010.055150px;}
.y74{bottom:1010.834700px;}
.ya6{bottom:1012.275600px;}
.y30{bottom:1013.055150px;}
.y54{bottom:1028.055150px;}
.y73{bottom:1028.834700px;}
.ya5{bottom:1030.275600px;}
.y2f{bottom:1031.055150px;}
.y53{bottom:1046.055150px;}
.y72{bottom:1046.834700px;}
.ya4{bottom:1048.275600px;}
.y2e{bottom:1049.055150px;}
.y52{bottom:1064.055150px;}
.y71{bottom:1064.834700px;}
.ya3{bottom:1066.275600px;}
.y2b{bottom:1067.055150px;}
.y51{bottom:1082.055150px;}
.y70{bottom:1082.834700px;}
.ya2{bottom:1084.275600px;}
.y2d{bottom:1085.055150px;}
.y50{bottom:1100.055150px;}
.y6f{bottom:1100.834700px;}
.ya1{bottom:1102.275600px;}
.y2c{bottom:1103.055150px;}
.y4f{bottom:1118.055150px;}
.y6e{bottom:1118.834700px;}
.ya0{bottom:1120.275600px;}
.h3{height:43.560000px;}
.hf{height:43.584000px;}
.ha{height:44.700000px;}
.h7{height:45.360000px;}
.h9{height:46.080000px;}
.h2{height:50.400000px;}
.hd{height:51.696000px;}
.hb{height:53.640000px;}
.h8{height:54.480000px;}
.h6{height:62.580000px;}
.h5{height:63.504000px;}
.hc{height:76.272000px;}
.h4{height:107.400000px;}
.he{height:277.243257px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:54.318900px;}
.x16{left:56.125950px;}
.x15{left:64.629900px;}
.x1a{left:75.578700px;}
.x9{left:89.716500px;}
.x4{left:102.526950px;}
.x5{left:106.757100px;}
.xd{left:109.275600px;}
.x12{left:110.338500px;}
.xf{left:131.173200px;}
.x18{left:161.574750px;}
.xe{left:175.036500px;}
.x6{left:223.394850px;}
.x7{left:343.880550px;}
.x8{left:350.888700px;}
.x2{left:356.955600px;}
.x14{left:386.929200px;}
.x3{left:390.161850px;}
.xc{left:400.429200px;}
.x1c{left:429.608250px;}
.x17{left:431.574750px;}
.x1{left:440.328000px;}
.xa{left:459.425100px;}
.x19{left:485.734200px;}
.x10{left:487.169250px;}
.x11{left:508.429050px;}
.x13{left:522.992100px;}
.xb{left:801.944850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:192.000000pt;}
.ls2{letter-spacing:-0.373333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.053333pt;}
.ws14{word-spacing:-49.949270pt;}
.ws1{word-spacing:-14.528000pt;}
.ws2{word-spacing:-13.386667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws15{word-spacing:-12.960000pt;}
.ws2c{word-spacing:-10.666667pt;}
.wsa{word-spacing:-4.426667pt;}
.ws1c{word-spacing:-2.826667pt;}
.ws9{word-spacing:-1.973333pt;}
.ws32{word-spacing:-1.920000pt;}
.wsb{word-spacing:-1.866667pt;}
.ws28{word-spacing:-1.813333pt;}
.ws26{word-spacing:-1.653333pt;}
.ws31{word-spacing:-1.493333pt;}
.wsc{word-spacing:-1.226667pt;}
.ws2a{word-spacing:-0.586667pt;}
.ws6{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.213333pt;}
.ws16{word-spacing:0.373333pt;}
.ws2e{word-spacing:1.120000pt;}
.wsf{word-spacing:1.920000pt;}
.ws29{word-spacing:1.973333pt;}
.ws25{word-spacing:2.133333pt;}
.ws21{word-spacing:2.186667pt;}
.ws10{word-spacing:2.293333pt;}
.ws8{word-spacing:2.720000pt;}
.ws1e{word-spacing:3.466667pt;}
.ws24{word-spacing:3.626667pt;}
.ws20{word-spacing:3.733333pt;}
.ws18{word-spacing:4.000000pt;}
.ws33{word-spacing:4.320000pt;}
.ws19{word-spacing:4.426667pt;}
.ws7{word-spacing:4.533333pt;}
.ws1d{word-spacing:4.586667pt;}
.ws1f{word-spacing:4.693333pt;}
.ws30{word-spacing:4.746667pt;}
.ws5{word-spacing:5.120000pt;}
.wse{word-spacing:5.653333pt;}
.ws27{word-spacing:5.866667pt;}
.ws13{word-spacing:6.240000pt;}
.ws17{word-spacing:6.346667pt;}
.ws2d{word-spacing:6.400000pt;}
.ws1b{word-spacing:6.613333pt;}
.ws12{word-spacing:7.733333pt;}
.ws11{word-spacing:7.946667pt;}
.ws4{word-spacing:8.053333pt;}
.ws23{word-spacing:8.320000pt;}
.ws22{word-spacing:9.066667pt;}
.ws34{word-spacing:9.386667pt;}
.ws1a{word-spacing:9.546667pt;}
.ws2f{word-spacing:11.680000pt;}
.wsd{word-spacing:12.000000pt;}
._b{margin-left:-19.021867pt;}
._15{margin-left:-6.318933pt;}
._3{margin-left:-5.130667pt;}
._8{margin-left:-3.872000pt;}
._1{margin-left:-2.245333pt;}
._0{margin-left:-0.964800pt;}
._7{width:1.168000pt;}
._a{width:2.389333pt;}
._2{width:3.424000pt;}
._5{width:4.581333pt;}
._6{width:5.648000pt;}
._c{width:6.708800pt;}
._d{width:8.336533pt;}
._f{width:10.026667pt;}
._4{width:11.092800pt;}
._9{width:12.254933pt;}
._e{width:14.404267pt;}
._18{width:15.649067pt;}
._10{width:17.023467pt;}
._13{width:18.016000pt;}
._14{width:19.301333pt;}
._17{width:24.096000pt;}
._11{width:25.002667pt;}
._12{width:26.282667pt;}
._16{width:546.085333pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:106.666667pt;}
.fs4{font-size:330.789867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:24.000000pt;}
.y29{bottom:24.188933pt;}
.y3{bottom:33.901467pt;}
.y6a{bottom:35.422533pt;}
.y2{bottom:50.795067pt;}
.y1{bottom:70.888667pt;}
.y4e{bottom:97.826800pt;}
.y9b{bottom:98.267733pt;}
.y98{bottom:99.212667pt;}
.y69{bottom:103.853067pt;}
.y24{bottom:105.151733pt;}
.y9a{bottom:111.223067pt;}
.y97{bottom:112.168000pt;}
.y4d{bottom:113.826800pt;}
.yd2{bottom:115.664000pt;}
.y23{bottom:121.151733pt;}
.y4c{bottom:129.826800pt;}
.y22{bottom:137.151733pt;}
.y4b{bottom:145.826800pt;}
.y26{bottom:153.151733pt;}
.y4a{bottom:161.826800pt;}
.y6c{bottom:167.160133pt;}
.y25{bottom:169.151733pt;}
.y49{bottom:177.826800pt;}
.y9f{bottom:185.364800pt;}
.y21{bottom:186.485067pt;}
.y20{bottom:202.485067pt;}
.yd0{bottom:207.475067pt;}
.y1f{bottom:218.485067pt;}
.y68{bottom:229.291333pt;}
.y1e{bottom:234.485067pt;}
.y67{bottom:245.081333pt;}
.y1d{bottom:250.485067pt;}
.y1c{bottom:266.485067pt;}
.ycd{bottom:275.800533pt;}
.y1b{bottom:282.485067pt;}
.ycc{bottom:291.800533pt;}
.y1a{bottom:298.485067pt;}
.ycb{bottom:307.800533pt;}
.y19{bottom:314.485067pt;}
.yca{bottom:323.800533pt;}
.y18{bottom:330.485067pt;}
.y66{bottom:337.826800pt;}
.yc9{bottom:339.800533pt;}
.y17{bottom:346.485067pt;}
.y65{bottom:353.826800pt;}
.y96{bottom:354.519733pt;}
.yc8{bottom:355.800533pt;}
.y16{bottom:362.485067pt;}
.y64{bottom:369.826800pt;}
.y95{bottom:370.519733pt;}
.yc7{bottom:371.800533pt;}
.y15{bottom:378.485067pt;}
.y63{bottom:385.826800pt;}
.y94{bottom:386.519733pt;}
.yc6{bottom:387.800533pt;}
.y14{bottom:394.485067pt;}
.yd3{bottom:399.475067pt;}
.y62{bottom:401.826800pt;}
.y93{bottom:402.519733pt;}
.yc5{bottom:403.800533pt;}
.y13{bottom:410.485067pt;}
.y61{bottom:417.826800pt;}
.y92{bottom:418.519733pt;}
.yc4{bottom:419.800533pt;}
.y12{bottom:426.485067pt;}
.y60{bottom:433.826800pt;}
.y91{bottom:434.519733pt;}
.yc3{bottom:435.800533pt;}
.y11{bottom:442.485067pt;}
.y5f{bottom:449.826800pt;}
.y90{bottom:450.519733pt;}
.yc2{bottom:451.800533pt;}
.y10{bottom:458.485067pt;}
.y5e{bottom:465.826800pt;}
.y8f{bottom:466.519733pt;}
.yc1{bottom:467.800533pt;}
.yf{bottom:474.485067pt;}
.y5d{bottom:481.826800pt;}
.y8e{bottom:482.519733pt;}
.yc0{bottom:483.800533pt;}
.y9e{bottom:486.593200pt;}
.ye{bottom:490.485067pt;}
.y5c{bottom:497.826800pt;}
.y8d{bottom:498.519733pt;}
.ybf{bottom:499.800533pt;}
.yd{bottom:506.485067pt;}
.y48{bottom:513.826800pt;}
.y8c{bottom:514.519733pt;}
.y6d{bottom:514.687600pt;}
.ybe{bottom:515.800533pt;}
.yc{bottom:522.485067pt;}
.y47{bottom:529.826800pt;}
.y8b{bottom:530.519733pt;}
.ybd{bottom:531.800533pt;}
.yb{bottom:538.485067pt;}
.y46{bottom:545.826800pt;}
.y8a{bottom:546.519733pt;}
.ybc{bottom:547.800533pt;}
.ya{bottom:554.485067pt;}
.y45{bottom:561.826800pt;}
.y89{bottom:562.519733pt;}
.ybb{bottom:563.800533pt;}
.y6b{bottom:567.160133pt;}
.y9{bottom:570.485067pt;}
.y99{bottom:574.215200pt;}
.yd1{bottom:576.104933pt;}
.y44{bottom:577.826800pt;}
.y88{bottom:578.519733pt;}
.yba{bottom:579.800533pt;}
.y43{bottom:593.826800pt;}
.y87{bottom:594.519733pt;}
.yb9{bottom:595.800533pt;}
.y42{bottom:609.826800pt;}
.y86{bottom:610.519733pt;}
.yb8{bottom:611.800533pt;}
.y27{bottom:613.461333pt;}
.y41{bottom:625.826800pt;}
.y85{bottom:626.519733pt;}
.yb7{bottom:627.800533pt;}
.y40{bottom:641.826800pt;}
.y84{bottom:642.519733pt;}
.yb6{bottom:643.800533pt;}
.y8{bottom:644.268533pt;}
.y3f{bottom:657.826800pt;}
.y83{bottom:658.519733pt;}
.yb5{bottom:659.800533pt;}
.y3e{bottom:673.826800pt;}
.y82{bottom:674.519733pt;}
.yb4{bottom:675.800533pt;}
.y3d{bottom:689.826800pt;}
.y81{bottom:690.519733pt;}
.yb3{bottom:691.800533pt;}
.y7{bottom:703.798533pt;}
.y3c{bottom:705.826800pt;}
.y80{bottom:706.519733pt;}
.yb2{bottom:707.800533pt;}
.y3b{bottom:721.826800pt;}
.y7f{bottom:722.519733pt;}
.yb1{bottom:723.800533pt;}
.y6{bottom:726.198533pt;}
.y3a{bottom:737.826800pt;}
.y7e{bottom:738.519733pt;}
.yb0{bottom:739.800533pt;}
.y9d{bottom:742.708667pt;}
.ycf{bottom:746.897600pt;}
.y39{bottom:753.826800pt;}
.y7d{bottom:754.519733pt;}
.y9c{bottom:755.664000pt;}
.yaf{bottom:755.800533pt;}
.yce{bottom:759.853067pt;}
.y38{bottom:769.826800pt;}
.y7c{bottom:770.519733pt;}
.yae{bottom:771.800533pt;}
.y5{bottom:777.906667pt;}
.y37{bottom:785.826800pt;}
.y7b{bottom:786.519733pt;}
.yad{bottom:787.800533pt;}
.y5b{bottom:801.826800pt;}
.y7a{bottom:802.519733pt;}
.yac{bottom:803.800533pt;}
.y36{bottom:804.493467pt;}
.y4{bottom:809.906667pt;}
.y5a{bottom:817.826800pt;}
.y79{bottom:818.519733pt;}
.yab{bottom:819.800533pt;}
.y35{bottom:820.493467pt;}
.y59{bottom:833.826800pt;}
.y78{bottom:834.519733pt;}
.yaa{bottom:835.800533pt;}
.y34{bottom:836.493467pt;}
.y58{bottom:849.826800pt;}
.y77{bottom:850.519733pt;}
.ya9{bottom:851.800533pt;}
.y33{bottom:852.493467pt;}
.y57{bottom:865.826800pt;}
.y76{bottom:866.519733pt;}
.ya8{bottom:867.800533pt;}
.y32{bottom:868.493467pt;}
.y56{bottom:881.826800pt;}
.y75{bottom:882.519733pt;}
.y28{bottom:883.779600pt;}
.ya7{bottom:883.800533pt;}
.y31{bottom:884.493467pt;}
.y55{bottom:897.826800pt;}
.y74{bottom:898.519733pt;}
.ya6{bottom:899.800533pt;}
.y30{bottom:900.493467pt;}
.y54{bottom:913.826800pt;}
.y73{bottom:914.519733pt;}
.ya5{bottom:915.800533pt;}
.y2f{bottom:916.493467pt;}
.y53{bottom:929.826800pt;}
.y72{bottom:930.519733pt;}
.ya4{bottom:931.800533pt;}
.y2e{bottom:932.493467pt;}
.y52{bottom:945.826800pt;}
.y71{bottom:946.519733pt;}
.ya3{bottom:947.800533pt;}
.y2b{bottom:948.493467pt;}
.y51{bottom:961.826800pt;}
.y70{bottom:962.519733pt;}
.ya2{bottom:963.800533pt;}
.y2d{bottom:964.493467pt;}
.y50{bottom:977.826800pt;}
.y6f{bottom:978.519733pt;}
.ya1{bottom:979.800533pt;}
.y2c{bottom:980.493467pt;}
.y4f{bottom:993.826800pt;}
.y6e{bottom:994.519733pt;}
.ya0{bottom:995.800533pt;}
.h3{height:38.720000pt;}
.hf{height:38.741333pt;}
.ha{height:39.733333pt;}
.h7{height:40.320000pt;}
.h9{height:40.960000pt;}
.h2{height:44.800000pt;}
.hd{height:45.952000pt;}
.hb{height:47.680000pt;}
.h8{height:48.426667pt;}
.h6{height:55.626667pt;}
.h5{height:56.448000pt;}
.hc{height:67.797333pt;}
.h4{height:95.466667pt;}
.he{height:246.438451pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:48.283467pt;}
.x16{left:49.889733pt;}
.x15{left:57.448800pt;}
.x1a{left:67.181067pt;}
.x9{left:79.748000pt;}
.x4{left:91.135067pt;}
.x5{left:94.895200pt;}
.xd{left:97.133867pt;}
.x12{left:98.078667pt;}
.xf{left:116.598400pt;}
.x18{left:143.622000pt;}
.xe{left:155.588000pt;}
.x6{left:198.573200pt;}
.x7{left:305.671600pt;}
.x8{left:311.901067pt;}
.x2{left:317.293867pt;}
.x14{left:343.937067pt;}
.x3{left:346.810533pt;}
.xc{left:355.937067pt;}
.x1c{left:381.874000pt;}
.x17{left:383.622000pt;}
.x1{left:391.402667pt;}
.xa{left:408.377867pt;}
.x19{left:431.763733pt;}
.x10{left:433.039333pt;}
.x11{left:451.936933pt;}
.x13{left:464.881867pt;}
.xb{left:712.839867pt;}
}




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