
    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_0a73736e4b17f5c47dc94df1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_22bb5561d053178dab1d2652.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_531adce5d09e03284c92dfff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_2a315f7e9a7c74afb83158e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.765625;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_684dd01e4c060173af3d39f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_d99bd3d0c9de26b5b050ae04.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_45b7118f778fca7612828982.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.863770;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;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:1.045200px;}
.ls7{letter-spacing:2.449200px;}
.ls4{letter-spacing:18.666000px;}
.ls5{letter-spacing:38.502000px;}
.ls0{letter-spacing:46.692000px;}
.ls3{letter-spacing:51.156000px;}
.ls1{letter-spacing:61.200000px;}
.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;}
}
.ws26{word-spacing:-78.000000px;}
.ws64{word-spacing:-47.520000px;}
.ws6b{word-spacing:-20.077200px;}
.ws18{word-spacing:-17.628000px;}
.wsd{word-spacing:-4.968600px;}
.wsf{word-spacing:-4.734600px;}
.ws17{word-spacing:-4.578600px;}
.ws51{word-spacing:-2.854800px;}
.ws1{word-spacing:-2.640000px;}
.ws4{word-spacing:-2.472600px;}
.ws55{word-spacing:-2.160600px;}
.ws2b{word-spacing:-1.926600px;}
.ws8{word-spacing:-1.716000px;}
.ws57{word-spacing:-1.287000px;}
.ws22{word-spacing:-1.131000px;}
.ws53{word-spacing:-0.990600px;}
.ws44{word-spacing:-0.818400px;}
.ws56{word-spacing:-0.756600px;}
.ws68{word-spacing:-0.742200px;}
.ws47{word-spacing:-0.733800px;}
.ws43{word-spacing:-0.723600px;}
.ws5e{word-spacing:-0.717600px;}
.ws12{word-spacing:-0.132600px;}
.ws5d{word-spacing:-0.118800px;}
.ws16{word-spacing:0.000000px;}
.ws0{word-spacing:0.384000px;}
.ws4e{word-spacing:0.405600px;}
.ws5f{word-spacing:0.429000px;}
.ws52{word-spacing:0.514800px;}
.ws13{word-spacing:1.263600px;}
.wse{word-spacing:1.419600px;}
.ws5a{word-spacing:1.435200px;}
.ws60{word-spacing:2.823600px;}
.ws2f{word-spacing:3.135600px;}
.ws30{word-spacing:3.143400px;}
.wsb{word-spacing:3.525600px;}
.ws6a{word-spacing:3.839400px;}
.ws48{word-spacing:3.846000px;}
.ws3{word-spacing:4.867200px;}
.ws1d{word-spacing:5.007600px;}
.ws1e{word-spacing:5.070000px;}
.ws62{word-spacing:5.179200px;}
.ws5{word-spacing:5.249400px;}
.ws59{word-spacing:5.250000px;}
.ws66{word-spacing:5.872200px;}
.ws21{word-spacing:5.873400px;}
.ws1c{word-spacing:6.427200px;}
.ws37{word-spacing:7.035600px;}
.ws2{word-spacing:7.261800px;}
.ws31{word-spacing:7.417800px;}
.ws5b{word-spacing:8.669400px;}
.ws35{word-spacing:9.149400px;}
.ws1f{word-spacing:9.523800px;}
.ws42{word-spacing:10.709400px;}
.ws11{word-spacing:10.865400px;}
.ws19{word-spacing:11.005800px;}
.ws41{word-spacing:11.185200px;}
.ws4b{word-spacing:11.247600px;}
.ws4c{word-spacing:11.871600px;}
.ws2e{word-spacing:12.427200px;}
.ws36{word-spacing:12.471600px;}
.ws2a{word-spacing:13.260000px;}
.ws2d{word-spacing:13.416000px;}
.ws65{word-spacing:15.147600px;}
.ws9{word-spacing:15.522000px;}
.ws25{word-spacing:15.834000px;}
.ws34{word-spacing:16.871400px;}
.ws23{word-spacing:17.004000px;}
.ws7{word-spacing:17.183400px;}
.ws24{word-spacing:17.869800px;}
.ws69{word-spacing:18.515400px;}
.ws50{word-spacing:19.266000px;}
.ws32{word-spacing:19.422000px;}
.wsa{word-spacing:21.528000px;}
.ws14{word-spacing:22.234800px;}
.ws6{word-spacing:22.245600px;}
.ws1b{word-spacing:22.869600px;}
.ws3b{word-spacing:23.010000px;}
.ws3f{word-spacing:23.181600px;}
.ws45{word-spacing:23.283000px;}
.ws39{word-spacing:23.868000px;}
.ws49{word-spacing:24.429600px;}
.ws4f{word-spacing:24.514800px;}
.ws4a{word-spacing:25.264200px;}
.ws46{word-spacing:25.420200px;}
.ws28{word-spacing:27.456000px;}
.ws40{word-spacing:27.526200px;}
.ws2c{word-spacing:28.867800px;}
.ws3c{word-spacing:29.008200px;}
.ws15{word-spacing:29.062800px;}
.ws63{word-spacing:29.874000px;}
.ws54{word-spacing:30.482400px;}
.ws29{word-spacing:31.262400px;}
.ws3a{word-spacing:35.006400px;}
.ws3e{word-spacing:35.872200px;}
.ws38{word-spacing:37.260600px;}
.ws61{word-spacing:37.416600px;}
.ws58{word-spacing:39.522600px;}
.ws20{word-spacing:43.258800px;}
.ws5c{word-spacing:43.414800px;}
.ws27{word-spacing:45.208800px;}
.ws10{word-spacing:47.868600px;}
.ws1a{word-spacing:52.868400px;}
.ws67{word-spacing:53.008800px;}
.ws33{word-spacing:55.419000px;}
.ws4d{word-spacing:63.523200px;}
.ws3d{word-spacing:65.871000px;}
.wsc{word-spacing:83.873400px;}
._35{margin-left:-9.331800px;}
._11{margin-left:-8.314800px;}
._8{margin-left:-6.633600px;}
._1d{margin-left:-5.405400px;}
._5{margin-left:-4.281600px;}
._0{margin-left:-2.592000px;}
._3{margin-left:-1.200000px;}
._2{width:1.152000px;}
._1{width:2.592000px;}
._7{width:3.696000px;}
._a{width:5.607600px;}
._14{width:6.694200px;}
._36{width:8.779800px;}
._16{width:9.883200px;}
._34{width:11.002200px;}
._17{width:12.082200px;}
._18{width:13.341000px;}
._28{width:15.048600px;}
._15{width:16.715400px;}
._d{width:17.779200px;}
._29{width:18.922200px;}
._9{width:20.073600px;}
._e{width:21.288600px;}
._b{width:22.573200px;}
._19{width:23.701200px;}
._6{width:25.392000px;}
._4{width:26.534400px;}
._23{width:27.911400px;}
._f{width:29.160600px;}
._c{width:30.187200px;}
._13{width:31.670400px;}
._10{width:32.979000px;}
._12{width:34.536000px;}
._20{width:35.660400px;}
._1f{width:36.841200px;}
._1e{width:38.569800px;}
._2d{width:39.759600px;}
._1b{width:41.028000px;}
._1a{width:42.580200px;}
._22{width:43.862400px;}
._1c{width:45.710400px;}
._3c{width:46.783800px;}
._21{width:47.839200px;}
._2f{width:49.507200px;}
._38{width:51.713400px;}
._2e{width:53.242200px;}
._3d{width:54.444000px;}
._32{width:55.474800px;}
._3e{width:56.767800px;}
._37{width:58.044600px;}
._31{width:59.468400px;}
._2a{width:61.227000px;}
._43{width:62.733600px;}
._2b{width:64.108200px;}
._33{width:65.401800px;}
._3a{width:66.655800px;}
._2c{width:67.782600px;}
._44{width:69.586800px;}
._3b{width:70.629600px;}
._39{width:75.493800px;}
._30{width:77.725200px;}
._40{width:82.581000px;}
._42{width:84.980400px;}
._41{width:86.064600px;}
._3f{width:89.426400px;}
._26{width:93.048600px;}
._27{width:103.752000px;}
._25{width:105.190200px;}
._24{width:108.336000px;}
.fc2{color:rgb(15,36,61);}
.fc1{color:rgb(191,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:78.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:70.500000px;}
.yb1{bottom:114.000000px;}
.y96{bottom:121.500000px;}
.y60{bottom:132.000000px;}
.ya2{bottom:141.000000px;}
.y1f{bottom:144.000000px;}
.y40{bottom:148.500000px;}
.ybe{bottom:156.000000px;}
.y5f{bottom:159.000000px;}
.yc1{bottom:162.000000px;}
.ya1{bottom:168.000000px;}
.y1e{bottom:171.000000px;}
.y86{bottom:174.000000px;}
.y3f{bottom:177.000000px;}
.yc7{bottom:181.500000px;}
.yb0{bottom:183.000000px;}
.y5e{bottom:186.000000px;}
.yac{bottom:189.000000px;}
.y95{bottom:192.000000px;}
.y85{bottom:201.000000px;}
.y3e{bottom:204.000000px;}
.ya0{bottom:211.500000px;}
.y5d{bottom:213.000000px;}
.yab{bottom:216.000000px;}
.y94{bottom:219.000000px;}
.yc6{bottom:223.500000px;}
.y1d{bottom:225.000000px;}
.y84{bottom:228.000000px;}
.y3d{bottom:231.000000px;}
.y9f{bottom:238.500000px;}
.y5c{bottom:241.500000px;}
.yaa{bottom:243.000000px;}
.y93{bottom:246.000000px;}
.yc5{bottom:250.500000px;}
.y1c{bottom:253.500000px;}
.y83{bottom:256.500000px;}
.y3c{bottom:258.000000px;}
.yaf{bottom:265.500000px;}
.y5b{bottom:268.500000px;}
.ya9{bottom:271.500000px;}
.y92{bottom:273.000000px;}
.y1b{bottom:280.500000px;}
.y82{bottom:283.500000px;}
.y72{bottom:286.500000px;}
.ybd{bottom:292.500000px;}
.y5a{bottom:295.500000px;}
.ya8{bottom:298.500000px;}
.y3b{bottom:301.500000px;}
.y1a{bottom:307.500000px;}
.y81{bottom:310.500000px;}
.y71{bottom:313.500000px;}
.ybc{bottom:321.000000px;}
.ya7{bottom:325.500000px;}
.y3a{bottom:328.500000px;}
.y19{bottom:334.500000px;}
.y9e{bottom:336.000000px;}
.y59{bottom:337.500000px;}
.y70{bottom:340.500000px;}
.ybb{bottom:348.000000px;}
.yc0{bottom:352.500000px;}
.y39{bottom:355.500000px;}
.y18{bottom:363.000000px;}
.y58{bottom:366.000000px;}
.y6f{bottom:367.500000px;}
.yba{bottom:375.000000px;}
.y9d{bottom:378.000000px;}
.ya6{bottom:381.000000px;}
.y38{bottom:382.500000px;}
.yc4{bottom:390.000000px;}
.y57{bottom:393.000000px;}
.y6e{bottom:396.000000px;}
.yb9{bottom:402.000000px;}
.y9c{bottom:405.000000px;}
.ya5{bottom:408.000000px;}
.y37{bottom:411.000000px;}
.y17{bottom:417.000000px;}
.y56{bottom:420.000000px;}
.y6d{bottom:423.000000px;}
.yb8{bottom:430.500000px;}
.yae{bottom:432.000000px;}
.ya4{bottom:435.000000px;}
.y91{bottom:438.000000px;}
.y16{bottom:444.000000px;}
.y9b{bottom:447.000000px;}
.y6c{bottom:450.000000px;}
.y36{bottom:453.000000px;}
.yb7{bottom:457.500000px;}
.yc3{bottom:460.500000px;}
.y55{bottom:462.000000px;}
.y90{bottom:465.000000px;}
.y15{bottom:472.500000px;}
.y9a{bottom:475.500000px;}
.y6b{bottom:477.000000px;}
.y35{bottom:480.000000px;}
.yb6{bottom:484.500000px;}
.y54{bottom:490.500000px;}
.y8f{bottom:492.000000px;}
.y99{bottom:502.500000px;}
.y6a{bottom:505.500000px;}
.y34{bottom:507.000000px;}
.y53{bottom:517.500000px;}
.y8e{bottom:520.500000px;}
.y14{bottom:526.500000px;}
.yad{bottom:529.500000px;}
.y69{bottom:532.500000px;}
.y33{bottom:535.500000px;}
.y52{bottom:544.500000px;}
.y8d{bottom:547.500000px;}
.y13{bottom:553.500000px;}
.yb5{bottom:555.000000px;}
.y68{bottom:559.500000px;}
.y80{bottom:571.500000px;}
.y8c{bottom:574.500000px;}
.y12{bottom:582.000000px;}
.y51{bottom:586.500000px;}
.y32{bottom:589.500000px;}
.yb4{bottom:597.000000px;}
.y7f{bottom:600.000000px;}
.y8b{bottom:601.500000px;}
.y50{bottom:615.000000px;}
.y31{bottom:616.500000px;}
.y11{bottom:624.000000px;}
.y7e{bottom:627.000000px;}
.yc2{bottom:630.000000px;}
.y4f{bottom:642.000000px;}
.y30{bottom:645.000000px;}
.y10{bottom:651.000000px;}
.y7d{bottom:654.000000px;}
.y8a{bottom:657.000000px;}
.y4e{bottom:669.000000px;}
.y2f{bottom:672.000000px;}
.yf{bottom:678.000000px;}
.yb3{bottom:679.500000px;}
.y7c{bottom:681.000000px;}
.y89{bottom:684.000000px;}
.y4d{bottom:696.000000px;}
.y2e{bottom:699.000000px;}
.ye{bottom:706.500000px;}
.y7b{bottom:709.500000px;}
.y88{bottom:711.000000px;}
.y67{bottom:724.500000px;}
.y2d{bottom:726.000000px;}
.yd{bottom:733.500000px;}
.y7a{bottom:736.500000px;}
.y4c{bottom:739.500000px;}
.yb2{bottom:748.500000px;}
.y66{bottom:751.500000px;}
.y2c{bottom:754.500000px;}
.yc{bottom:760.500000px;}
.y79{bottom:763.500000px;}
.y4b{bottom:766.500000px;}
.y65{bottom:778.500000px;}
.yb{bottom:787.500000px;}
.y78{bottom:790.500000px;}
.y4a{bottom:793.500000px;}
.y64{bottom:805.500000px;}
.y2b{bottom:808.500000px;}
.y77{bottom:819.000000px;}
.y49{bottom:820.500000px;}
.ya{bottom:831.000000px;}
.y63{bottom:834.000000px;}
.y2a{bottom:835.500000px;}
.y76{bottom:846.000000px;}
.y48{bottom:849.000000px;}
.y9{bottom:858.000000px;}
.y62{bottom:861.000000px;}
.y29{bottom:864.000000px;}
.y75{bottom:873.000000px;}
.ya3{bottom:876.000000px;}
.y8{bottom:885.000000px;}
.y61{bottom:888.000000px;}
.y28{bottom:891.000000px;}
.y47{bottom:903.000000px;}
.y7{bottom:912.000000px;}
.y74{bottom:915.000000px;}
.y27{bottom:918.000000px;}
.y46{bottom:930.000000px;}
.y98{bottom:943.500000px;}
.y87{bottom:945.000000px;}
.y6{bottom:955.500000px;}
.y45{bottom:958.500000px;}
.y97{bottom:970.500000px;}
.y26{bottom:973.500000px;}
.y5{bottom:982.500000px;}
.y44{bottom:985.500000px;}
.ybf{bottom:997.500000px;}
.y25{bottom:1000.500000px;}
.y4{bottom:1009.500000px;}
.y43{bottom:1012.500000px;}
.y24{bottom:1027.500000px;}
.y42{bottom:1039.500000px;}
.y23{bottom:1054.500000px;}
.y41{bottom:1068.000000px;}
.y22{bottom:1083.000000px;}
.y3{bottom:1090.500000px;}
.y73{bottom:1095.000000px;}
.y21{bottom:1110.000000px;}
.y2{bottom:1134.000000px;}
.y20{bottom:1137.000000px;}
.h4{height:53.472656px;}
.h3{height:64.327148px;}
.h2{height:79.171875px;}
.h1{height:150.925781px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.500000px;}
.x4{left:154.500000px;}
.x6{left:180.000000px;}
.x5{left:181.500000px;}
.x3{left:207.000000px;}
.x7{left:234.000000px;}
.x8{left:795.000000px;}
.x1{left:810.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.929067pt;}
.ls7{letter-spacing:2.177067pt;}
.ls4{letter-spacing:16.592000pt;}
.ls5{letter-spacing:34.224000pt;}
.ls0{letter-spacing:41.504000pt;}
.ls3{letter-spacing:45.472000pt;}
.ls1{letter-spacing:54.400000pt;}
.ws26{word-spacing:-69.333333pt;}
.ws64{word-spacing:-42.240000pt;}
.ws6b{word-spacing:-17.846400pt;}
.ws18{word-spacing:-15.669333pt;}
.wsd{word-spacing:-4.416533pt;}
.wsf{word-spacing:-4.208533pt;}
.ws17{word-spacing:-4.069867pt;}
.ws51{word-spacing:-2.537600pt;}
.ws1{word-spacing:-2.346667pt;}
.ws4{word-spacing:-2.197867pt;}
.ws55{word-spacing:-1.920533pt;}
.ws2b{word-spacing:-1.712533pt;}
.ws8{word-spacing:-1.525333pt;}
.ws57{word-spacing:-1.144000pt;}
.ws22{word-spacing:-1.005333pt;}
.ws53{word-spacing:-0.880533pt;}
.ws44{word-spacing:-0.727467pt;}
.ws56{word-spacing:-0.672533pt;}
.ws68{word-spacing:-0.659733pt;}
.ws47{word-spacing:-0.652267pt;}
.ws43{word-spacing:-0.643200pt;}
.ws5e{word-spacing:-0.637867pt;}
.ws12{word-spacing:-0.117867pt;}
.ws5d{word-spacing:-0.105600pt;}
.ws16{word-spacing:0.000000pt;}
.ws0{word-spacing:0.341333pt;}
.ws4e{word-spacing:0.360533pt;}
.ws5f{word-spacing:0.381333pt;}
.ws52{word-spacing:0.457600pt;}
.ws13{word-spacing:1.123200pt;}
.wse{word-spacing:1.261867pt;}
.ws5a{word-spacing:1.275733pt;}
.ws60{word-spacing:2.509867pt;}
.ws2f{word-spacing:2.787200pt;}
.ws30{word-spacing:2.794133pt;}
.wsb{word-spacing:3.133867pt;}
.ws6a{word-spacing:3.412800pt;}
.ws48{word-spacing:3.418667pt;}
.ws3{word-spacing:4.326400pt;}
.ws1d{word-spacing:4.451200pt;}
.ws1e{word-spacing:4.506667pt;}
.ws62{word-spacing:4.603733pt;}
.ws5{word-spacing:4.666133pt;}
.ws59{word-spacing:4.666667pt;}
.ws66{word-spacing:5.219733pt;}
.ws21{word-spacing:5.220800pt;}
.ws1c{word-spacing:5.713067pt;}
.ws37{word-spacing:6.253867pt;}
.ws2{word-spacing:6.454933pt;}
.ws31{word-spacing:6.593600pt;}
.ws5b{word-spacing:7.706133pt;}
.ws35{word-spacing:8.132800pt;}
.ws1f{word-spacing:8.465600pt;}
.ws42{word-spacing:9.519467pt;}
.ws11{word-spacing:9.658133pt;}
.ws19{word-spacing:9.782933pt;}
.ws41{word-spacing:9.942400pt;}
.ws4b{word-spacing:9.997867pt;}
.ws4c{word-spacing:10.552533pt;}
.ws2e{word-spacing:11.046400pt;}
.ws36{word-spacing:11.085867pt;}
.ws2a{word-spacing:11.786667pt;}
.ws2d{word-spacing:11.925333pt;}
.ws65{word-spacing:13.464533pt;}
.ws9{word-spacing:13.797333pt;}
.ws25{word-spacing:14.074667pt;}
.ws34{word-spacing:14.996800pt;}
.ws23{word-spacing:15.114667pt;}
.ws7{word-spacing:15.274133pt;}
.ws24{word-spacing:15.884267pt;}
.ws69{word-spacing:16.458133pt;}
.ws50{word-spacing:17.125333pt;}
.ws32{word-spacing:17.264000pt;}
.wsa{word-spacing:19.136000pt;}
.ws14{word-spacing:19.764267pt;}
.ws6{word-spacing:19.773867pt;}
.ws1b{word-spacing:20.328533pt;}
.ws3b{word-spacing:20.453333pt;}
.ws3f{word-spacing:20.605867pt;}
.ws45{word-spacing:20.696000pt;}
.ws39{word-spacing:21.216000pt;}
.ws49{word-spacing:21.715200pt;}
.ws4f{word-spacing:21.790933pt;}
.ws4a{word-spacing:22.457067pt;}
.ws46{word-spacing:22.595733pt;}
.ws28{word-spacing:24.405333pt;}
.ws40{word-spacing:24.467733pt;}
.ws2c{word-spacing:25.660267pt;}
.ws3c{word-spacing:25.785067pt;}
.ws15{word-spacing:25.833600pt;}
.ws63{word-spacing:26.554667pt;}
.ws54{word-spacing:27.095467pt;}
.ws29{word-spacing:27.788800pt;}
.ws3a{word-spacing:31.116800pt;}
.ws3e{word-spacing:31.886400pt;}
.ws38{word-spacing:33.120533pt;}
.ws61{word-spacing:33.259200pt;}
.ws58{word-spacing:35.131200pt;}
.ws20{word-spacing:38.452267pt;}
.ws5c{word-spacing:38.590933pt;}
.ws27{word-spacing:40.185600pt;}
.ws10{word-spacing:42.549867pt;}
.ws1a{word-spacing:46.994133pt;}
.ws67{word-spacing:47.118933pt;}
.ws33{word-spacing:49.261333pt;}
.ws4d{word-spacing:56.465067pt;}
.ws3d{word-spacing:58.552000pt;}
.wsc{word-spacing:74.554133pt;}
._35{margin-left:-8.294933pt;}
._11{margin-left:-7.390933pt;}
._8{margin-left:-5.896533pt;}
._1d{margin-left:-4.804800pt;}
._5{margin-left:-3.805867pt;}
._0{margin-left:-2.304000pt;}
._3{margin-left:-1.066667pt;}
._2{width:1.024000pt;}
._1{width:2.304000pt;}
._7{width:3.285333pt;}
._a{width:4.984533pt;}
._14{width:5.950400pt;}
._36{width:7.804267pt;}
._16{width:8.785067pt;}
._34{width:9.779733pt;}
._17{width:10.739733pt;}
._18{width:11.858667pt;}
._28{width:13.376533pt;}
._15{width:14.858133pt;}
._d{width:15.803733pt;}
._29{width:16.819733pt;}
._9{width:17.843200pt;}
._e{width:18.923200pt;}
._b{width:20.065067pt;}
._19{width:21.067733pt;}
._6{width:22.570667pt;}
._4{width:23.586133pt;}
._23{width:24.810133pt;}
._f{width:25.920533pt;}
._c{width:26.833067pt;}
._13{width:28.151467pt;}
._10{width:29.314667pt;}
._12{width:30.698667pt;}
._20{width:31.698133pt;}
._1f{width:32.747733pt;}
._1e{width:34.284267pt;}
._2d{width:35.341867pt;}
._1b{width:36.469333pt;}
._1a{width:37.849067pt;}
._22{width:38.988800pt;}
._1c{width:40.631467pt;}
._3c{width:41.585600pt;}
._21{width:42.523733pt;}
._2f{width:44.006400pt;}
._38{width:45.967467pt;}
._2e{width:47.326400pt;}
._3d{width:48.394667pt;}
._32{width:49.310933pt;}
._3e{width:50.460267pt;}
._37{width:51.595200pt;}
._31{width:52.860800pt;}
._2a{width:54.424000pt;}
._43{width:55.763200pt;}
._2b{width:56.985067pt;}
._33{width:58.134933pt;}
._3a{width:59.249600pt;}
._2c{width:60.251200pt;}
._44{width:61.854933pt;}
._3b{width:62.781867pt;}
._39{width:67.105600pt;}
._30{width:69.089067pt;}
._40{width:73.405333pt;}
._42{width:75.538133pt;}
._41{width:76.501867pt;}
._3f{width:79.490133pt;}
._26{width:82.709867pt;}
._27{width:92.224000pt;}
._25{width:93.502400pt;}
._24{width:96.298667pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:62.666667pt;}
.yb1{bottom:101.333333pt;}
.y96{bottom:108.000000pt;}
.y60{bottom:117.333333pt;}
.ya2{bottom:125.333333pt;}
.y1f{bottom:128.000000pt;}
.y40{bottom:132.000000pt;}
.ybe{bottom:138.666667pt;}
.y5f{bottom:141.333333pt;}
.yc1{bottom:144.000000pt;}
.ya1{bottom:149.333333pt;}
.y1e{bottom:152.000000pt;}
.y86{bottom:154.666667pt;}
.y3f{bottom:157.333333pt;}
.yc7{bottom:161.333333pt;}
.yb0{bottom:162.666667pt;}
.y5e{bottom:165.333333pt;}
.yac{bottom:168.000000pt;}
.y95{bottom:170.666667pt;}
.y85{bottom:178.666667pt;}
.y3e{bottom:181.333333pt;}
.ya0{bottom:188.000000pt;}
.y5d{bottom:189.333333pt;}
.yab{bottom:192.000000pt;}
.y94{bottom:194.666667pt;}
.yc6{bottom:198.666667pt;}
.y1d{bottom:200.000000pt;}
.y84{bottom:202.666667pt;}
.y3d{bottom:205.333333pt;}
.y9f{bottom:212.000000pt;}
.y5c{bottom:214.666667pt;}
.yaa{bottom:216.000000pt;}
.y93{bottom:218.666667pt;}
.yc5{bottom:222.666667pt;}
.y1c{bottom:225.333333pt;}
.y83{bottom:228.000000pt;}
.y3c{bottom:229.333333pt;}
.yaf{bottom:236.000000pt;}
.y5b{bottom:238.666667pt;}
.ya9{bottom:241.333333pt;}
.y92{bottom:242.666667pt;}
.y1b{bottom:249.333333pt;}
.y82{bottom:252.000000pt;}
.y72{bottom:254.666667pt;}
.ybd{bottom:260.000000pt;}
.y5a{bottom:262.666667pt;}
.ya8{bottom:265.333333pt;}
.y3b{bottom:268.000000pt;}
.y1a{bottom:273.333333pt;}
.y81{bottom:276.000000pt;}
.y71{bottom:278.666667pt;}
.ybc{bottom:285.333333pt;}
.ya7{bottom:289.333333pt;}
.y3a{bottom:292.000000pt;}
.y19{bottom:297.333333pt;}
.y9e{bottom:298.666667pt;}
.y59{bottom:300.000000pt;}
.y70{bottom:302.666667pt;}
.ybb{bottom:309.333333pt;}
.yc0{bottom:313.333333pt;}
.y39{bottom:316.000000pt;}
.y18{bottom:322.666667pt;}
.y58{bottom:325.333333pt;}
.y6f{bottom:326.666667pt;}
.yba{bottom:333.333333pt;}
.y9d{bottom:336.000000pt;}
.ya6{bottom:338.666667pt;}
.y38{bottom:340.000000pt;}
.yc4{bottom:346.666667pt;}
.y57{bottom:349.333333pt;}
.y6e{bottom:352.000000pt;}
.yb9{bottom:357.333333pt;}
.y9c{bottom:360.000000pt;}
.ya5{bottom:362.666667pt;}
.y37{bottom:365.333333pt;}
.y17{bottom:370.666667pt;}
.y56{bottom:373.333333pt;}
.y6d{bottom:376.000000pt;}
.yb8{bottom:382.666667pt;}
.yae{bottom:384.000000pt;}
.ya4{bottom:386.666667pt;}
.y91{bottom:389.333333pt;}
.y16{bottom:394.666667pt;}
.y9b{bottom:397.333333pt;}
.y6c{bottom:400.000000pt;}
.y36{bottom:402.666667pt;}
.yb7{bottom:406.666667pt;}
.yc3{bottom:409.333333pt;}
.y55{bottom:410.666667pt;}
.y90{bottom:413.333333pt;}
.y15{bottom:420.000000pt;}
.y9a{bottom:422.666667pt;}
.y6b{bottom:424.000000pt;}
.y35{bottom:426.666667pt;}
.yb6{bottom:430.666667pt;}
.y54{bottom:436.000000pt;}
.y8f{bottom:437.333333pt;}
.y99{bottom:446.666667pt;}
.y6a{bottom:449.333333pt;}
.y34{bottom:450.666667pt;}
.y53{bottom:460.000000pt;}
.y8e{bottom:462.666667pt;}
.y14{bottom:468.000000pt;}
.yad{bottom:470.666667pt;}
.y69{bottom:473.333333pt;}
.y33{bottom:476.000000pt;}
.y52{bottom:484.000000pt;}
.y8d{bottom:486.666667pt;}
.y13{bottom:492.000000pt;}
.yb5{bottom:493.333333pt;}
.y68{bottom:497.333333pt;}
.y80{bottom:508.000000pt;}
.y8c{bottom:510.666667pt;}
.y12{bottom:517.333333pt;}
.y51{bottom:521.333333pt;}
.y32{bottom:524.000000pt;}
.yb4{bottom:530.666667pt;}
.y7f{bottom:533.333333pt;}
.y8b{bottom:534.666667pt;}
.y50{bottom:546.666667pt;}
.y31{bottom:548.000000pt;}
.y11{bottom:554.666667pt;}
.y7e{bottom:557.333333pt;}
.yc2{bottom:560.000000pt;}
.y4f{bottom:570.666667pt;}
.y30{bottom:573.333333pt;}
.y10{bottom:578.666667pt;}
.y7d{bottom:581.333333pt;}
.y8a{bottom:584.000000pt;}
.y4e{bottom:594.666667pt;}
.y2f{bottom:597.333333pt;}
.yf{bottom:602.666667pt;}
.yb3{bottom:604.000000pt;}
.y7c{bottom:605.333333pt;}
.y89{bottom:608.000000pt;}
.y4d{bottom:618.666667pt;}
.y2e{bottom:621.333333pt;}
.ye{bottom:628.000000pt;}
.y7b{bottom:630.666667pt;}
.y88{bottom:632.000000pt;}
.y67{bottom:644.000000pt;}
.y2d{bottom:645.333333pt;}
.yd{bottom:652.000000pt;}
.y7a{bottom:654.666667pt;}
.y4c{bottom:657.333333pt;}
.yb2{bottom:665.333333pt;}
.y66{bottom:668.000000pt;}
.y2c{bottom:670.666667pt;}
.yc{bottom:676.000000pt;}
.y79{bottom:678.666667pt;}
.y4b{bottom:681.333333pt;}
.y65{bottom:692.000000pt;}
.yb{bottom:700.000000pt;}
.y78{bottom:702.666667pt;}
.y4a{bottom:705.333333pt;}
.y64{bottom:716.000000pt;}
.y2b{bottom:718.666667pt;}
.y77{bottom:728.000000pt;}
.y49{bottom:729.333333pt;}
.ya{bottom:738.666667pt;}
.y63{bottom:741.333333pt;}
.y2a{bottom:742.666667pt;}
.y76{bottom:752.000000pt;}
.y48{bottom:754.666667pt;}
.y9{bottom:762.666667pt;}
.y62{bottom:765.333333pt;}
.y29{bottom:768.000000pt;}
.y75{bottom:776.000000pt;}
.ya3{bottom:778.666667pt;}
.y8{bottom:786.666667pt;}
.y61{bottom:789.333333pt;}
.y28{bottom:792.000000pt;}
.y47{bottom:802.666667pt;}
.y7{bottom:810.666667pt;}
.y74{bottom:813.333333pt;}
.y27{bottom:816.000000pt;}
.y46{bottom:826.666667pt;}
.y98{bottom:838.666667pt;}
.y87{bottom:840.000000pt;}
.y6{bottom:849.333333pt;}
.y45{bottom:852.000000pt;}
.y97{bottom:862.666667pt;}
.y26{bottom:865.333333pt;}
.y5{bottom:873.333333pt;}
.y44{bottom:876.000000pt;}
.ybf{bottom:886.666667pt;}
.y25{bottom:889.333333pt;}
.y4{bottom:897.333333pt;}
.y43{bottom:900.000000pt;}
.y24{bottom:913.333333pt;}
.y42{bottom:924.000000pt;}
.y23{bottom:937.333333pt;}
.y41{bottom:949.333333pt;}
.y22{bottom:962.666667pt;}
.y3{bottom:969.333333pt;}
.y73{bottom:973.333333pt;}
.y21{bottom:986.666667pt;}
.y2{bottom:1008.000000pt;}
.y20{bottom:1010.666667pt;}
.h4{height:47.531250pt;}
.h3{height:57.179688pt;}
.h2{height:70.375000pt;}
.h1{height:134.156250pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.333333pt;}
.x4{left:137.333333pt;}
.x6{left:160.000000pt;}
.x5{left:161.333333pt;}
.x3{left:184.000000pt;}
.x7{left:208.000000pt;}
.x8{left:706.666667pt;}
.x1{left:720.000000pt;}
}




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