
    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_640618e88b1bfc977919c5a0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_768682c9eb13a91290ba6243.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_48a17a2cd78ab618496702f9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.237305;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_a3c19d75539c97a26b65d1d0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.099609;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_e5b2d95c2bae81a33438cc59.woff')format("woff");}.ff5{font-family:ff5;line-height:1.237305;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_bb6f37ac207fd6b5330f05d7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.105957;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_5e68934b083e3ad38434fb03.woff')format("woff");}.ff7{font-family:ff7;line-height:0.904785;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_9351962bf8d7ee7023ca9ecd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.923600px;}
.ls5{letter-spacing:-6.372000px;}
.lsb{letter-spacing:-2.691000px;}
.lsd{letter-spacing:-1.782000px;}
.ls4{letter-spacing:-1.092000px;}
.ls9{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.690000px;}
.ls3{letter-spacing:-0.240000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:3.300000px;}
.ls7{letter-spacing:3.450000px;}
.ls6{letter-spacing:4.080000px;}
.ls8{letter-spacing:5.460000px;}
.lse{letter-spacing:5.850000px;}
.ls1{letter-spacing:6.000000px;}
.lsf{letter-spacing:7.530000px;}
.ls2{letter-spacing:8.400000px;}
.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;}
}
.ws16{word-spacing:-28.605000px;}
.ws15{word-spacing:-26.925000px;}
.ws7{word-spacing:-24.525000px;}
.ws10{word-spacing:-24.375000px;}
.ws0{word-spacing:-23.976000px;}
.ws1{word-spacing:-19.389000px;}
.ws9{word-spacing:-18.630000px;}
.ws8{word-spacing:-17.262000px;}
.wsb{word-spacing:-17.043000px;}
.ws11{word-spacing:-16.353000px;}
.ws17{word-spacing:-14.820000px;}
.ws14{word-spacing:-13.338000px;}
.ws13{word-spacing:-11.556000px;}
.wse{word-spacing:-11.303787px;}
.ws4{word-spacing:-8.400000px;}
.ws3{word-spacing:-6.000000px;}
.wsa{word-spacing:-4.080000px;}
.wsd{word-spacing:-0.621000px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.240000px;}
.wsc{word-spacing:0.900000px;}
.ws6{word-spacing:1.092000px;}
.wsf{word-spacing:2.484000px;}
.ws12{word-spacing:2.691000px;}
._13{margin-left:-19.329000px;}
._b{margin-left:-9.652500px;}
._12{margin-left:-6.789600px;}
._c{margin-left:-5.461200px;}
._7{margin-left:-4.182000px;}
._6{margin-left:-2.496000px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._4{width:2.286900px;}
._a{width:3.351000px;}
._11{width:4.450500px;}
._5{width:5.501100px;}
._9{width:7.193100px;}
._8{width:8.239800px;}
._d{width:9.688200px;}
._10{width:10.704600px;}
._14{width:12.015600px;}
._18{width:13.806900px;}
._f{width:15.876900px;}
._16{width:17.979000px;}
._1e{width:20.408400px;}
._1f{width:21.445800px;}
._1d{width:23.073600px;}
._1a{width:25.536900px;}
._21{width:32.892300px;}
._17{width:43.445160px;}
._20{width:450.408300px;}
._22{width:451.596000px;}
._e{width:454.431900px;}
._19{width:457.054500px;}
._0{width:578.400000px;}
._3{width:940.057200px;}
._1b{width:943.177200px;}
._1c{width:947.227200px;}
._15{width:949.207200px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs8{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y70{bottom:106.165350px;}
.y20{bottom:106.194300px;}
.y48{bottom:106.268850px;}
.ye0{bottom:106.278450px;}
.yb9{bottom:106.355100px;}
.y96{bottom:109.294800px;}
.y105{bottom:123.528450px;}
.ydf{bottom:123.531450px;}
.y6f{bottom:126.589350px;}
.y1f{bottom:126.739050px;}
.y47{bottom:127.227600px;}
.yb8{bottom:129.107850px;}
.y104{bottom:140.781450px;}
.yde{bottom:140.784450px;}
.y6e{bottom:147.013350px;}
.y1e{bottom:147.283800px;}
.y46{bottom:148.186350px;}
.yb7{bottom:151.860600px;}
.y95{bottom:153.382350px;}
.y103{bottom:158.034450px;}
.ydd{bottom:158.037450px;}
.y6d{bottom:167.437350px;}
.y1d{bottom:167.828550px;}
.y45{bottom:169.145100px;}
.y94{bottom:173.633850px;}
.yb6{bottom:174.613350px;}
.y102{bottom:175.287450px;}
.ydc{bottom:175.290450px;}
.y6c{bottom:187.861350px;}
.y1c{bottom:188.373300px;}
.y44{bottom:190.103850px;}
.y101{bottom:192.540450px;}
.ydb{bottom:192.543450px;}
.y93{bottom:193.885350px;}
.yb5{bottom:197.366100px;}
.y6b{bottom:208.285350px;}
.y1b{bottom:208.918050px;}
.y100{bottom:209.793450px;}
.yda{bottom:209.796450px;}
.y43{bottom:211.062600px;}
.y92{bottom:214.136850px;}
.yb4{bottom:220.118850px;}
.yff{bottom:227.046450px;}
.y6a{bottom:228.709350px;}
.y1a{bottom:229.462800px;}
.yd9{bottom:230.044950px;}
.y42{bottom:232.021350px;}
.y91{bottom:234.388350px;}
.yb3{bottom:242.871600px;}
.yfe{bottom:247.294950px;}
.y69{bottom:249.133350px;}
.y19{bottom:250.007550px;}
.y41{bottom:252.980100px;}
.y90{bottom:254.639850px;}
.yb2{bottom:265.624350px;}
.y68{bottom:269.557350px;}
.y18{bottom:270.552300px;}
.yd8{bottom:273.835350px;}
.y40{bottom:273.938850px;}
.y8f{bottom:274.891350px;}
.yb1{bottom:288.377100px;}
.y67{bottom:289.981350px;}
.y17{bottom:291.097050px;}
.yfd{bottom:291.350250px;}
.yd7{bottom:294.121350px;}
.y3f{bottom:294.897600px;}
.y8e{bottom:295.142850px;}
.y66{bottom:310.405350px;}
.yb0{bottom:311.129850px;}
.y16{bottom:311.641800px;}
.yfc{bottom:312.429750px;}
.yd6{bottom:314.407350px;}
.y8d{bottom:315.394350px;}
.y3e{bottom:315.856350px;}
.y65{bottom:330.829350px;}
.y15{bottom:332.186550px;}
.yfb{bottom:333.509250px;}
.yaf{bottom:333.882600px;}
.yd5{bottom:334.693350px;}
.y8c{bottom:335.645850px;}
.y3d{bottom:336.815100px;}
.y64{bottom:351.253350px;}
.y14{bottom:352.731300px;}
.yfa{bottom:354.588750px;}
.yd4{bottom:354.979350px;}
.y8b{bottom:355.897350px;}
.yae{bottom:356.635350px;}
.y3c{bottom:357.773850px;}
.y63{bottom:371.677350px;}
.y13{bottom:373.276050px;}
.yd3{bottom:375.265350px;}
.yf9{bottom:375.668250px;}
.y8a{bottom:376.148850px;}
.y3b{bottom:378.732600px;}
.yad{bottom:379.388100px;}
.y62{bottom:392.101350px;}
.yd2{bottom:395.551350px;}
.y89{bottom:396.400350px;}
.yf8{bottom:396.747750px;}
.y3a{bottom:399.691350px;}
.yac{bottom:402.140850px;}
.y61{bottom:412.525350px;}
.yd1{bottom:415.837350px;}
.y88{bottom:416.651850px;}
.yf7{bottom:417.827250px;}
.y39{bottom:420.650100px;}
.y12{bottom:423.579900px;}
.yab{bottom:424.893600px;}
.y60{bottom:432.949350px;}
.yd0{bottom:436.123350px;}
.y87{bottom:436.903350px;}
.yf6{bottom:438.906750px;}
.y38{bottom:441.608850px;}
.y11{bottom:444.864900px;}
.yaa{bottom:447.646350px;}
.y5f{bottom:453.373350px;}
.ycf{bottom:456.409350px;}
.y86{bottom:457.154850px;}
.yf5{bottom:459.986250px;}
.y37{bottom:462.567600px;}
.y10{bottom:466.149900px;}
.ya9{bottom:470.399100px;}
.y5e{bottom:473.797350px;}
.yce{bottom:476.695350px;}
.y85{bottom:477.406350px;}
.yf4{bottom:481.065750px;}
.y36{bottom:483.526350px;}
.ya8{bottom:493.151850px;}
.y5d{bottom:494.221350px;}
.ycd{bottom:496.981350px;}
.y84{bottom:497.657850px;}
.yf3{bottom:502.145250px;}
.y35{bottom:504.485100px;}
.y5c{bottom:514.645350px;}
.ya7{bottom:515.904600px;}
.yf{bottom:517.231200px;}
.ycc{bottom:517.267350px;}
.y83{bottom:517.909350px;}
.yf2{bottom:523.224750px;}
.y110{bottom:524.441550px;}
.y34{bottom:525.443850px;}
.y5b{bottom:535.069350px;}
.ycb{bottom:537.553350px;}
.y82{bottom:538.160850px;}
.ya6{bottom:538.657350px;}
.yf1{bottom:544.304250px;}
.y10f{bottom:544.691550px;}
.y33{bottom:546.402600px;}
.ye{bottom:549.010200px;}
.y5a{bottom:555.493350px;}
.yca{bottom:557.839350px;}
.y81{bottom:558.412350px;}
.ya5{bottom:561.410100px;}
.y10e{bottom:564.941550px;}
.yf0{bottom:565.429350px;}
.y32{bottom:567.361350px;}
.y59{bottom:575.917350px;}
.yc9{bottom:578.125350px;}
.y80{bottom:578.663850px;}
.yd{bottom:580.789200px;}
.ya4{bottom:584.162850px;}
.y10d{bottom:585.191550px;}
.yef{bottom:586.508850px;}
.y31{bottom:588.320100px;}
.y58{bottom:596.341350px;}
.yc8{bottom:598.411350px;}
.y7f{bottom:598.915350px;}
.ya3{bottom:606.915600px;}
.yee{bottom:607.588350px;}
.y30{bottom:609.278850px;}
.yc{bottom:612.568200px;}
.y57{bottom:616.765350px;}
.y10c{bottom:618.191550px;}
.yc7{bottom:618.697350px;}
.y7e{bottom:619.166850px;}
.yed{bottom:628.667850px;}
.ya2{bottom:629.668350px;}
.y2f{bottom:630.237600px;}
.y56{bottom:637.189350px;}
.yc6{bottom:638.983350px;}
.y7d{bottom:639.418350px;}
.yb{bottom:644.347200px;}
.yec{bottom:649.747350px;}
.y2e{bottom:651.196350px;}
.ya1{bottom:652.421100px;}
.y55{bottom:657.613350px;}
.yc5{bottom:659.269350px;}
.y7c{bottom:659.669850px;}
.y10b{bottom:659.683350px;}
.yeb{bottom:670.826850px;}
.y2d{bottom:672.155100px;}
.ya0{bottom:675.173850px;}
.ya{bottom:676.133850px;}
.y54{bottom:678.037350px;}
.yc4{bottom:679.555350px;}
.y7b{bottom:679.921350px;}
.y10a{bottom:679.934850px;}
.yea{bottom:691.906350px;}
.y2c{bottom:693.113850px;}
.y9f{bottom:697.926600px;}
.y53{bottom:698.461350px;}
.yc3{bottom:699.841350px;}
.y7a{bottom:700.172850px;}
.y109{bottom:700.186350px;}
.ye9{bottom:712.985850px;}
.y2b{bottom:714.072600px;}
.y52{bottom:718.885350px;}
.yc2{bottom:720.127350px;}
.y79{bottom:720.424350px;}
.y108{bottom:720.437850px;}
.y9e{bottom:720.679350px;}
.ye8{bottom:734.065350px;}
.y2a{bottom:735.031350px;}
.y9{bottom:737.692200px;}
.y51{bottom:739.309350px;}
.yc1{bottom:740.413350px;}
.y78{bottom:740.675850px;}
.y107{bottom:740.689350px;}
.y9d{bottom:743.432100px;}
.ye7{bottom:755.144850px;}
.y29{bottom:755.990100px;}
.y50{bottom:759.733350px;}
.yc0{bottom:760.699350px;}
.y77{bottom:760.927350px;}
.y106{bottom:760.940850px;}
.y9c{bottom:766.184850px;}
.y8{bottom:767.482200px;}
.ye6{bottom:776.224350px;}
.y28{bottom:776.948850px;}
.y4f{bottom:780.157350px;}
.ybf{bottom:780.985350px;}
.y76{bottom:781.192350px;}
.y7{bottom:788.767200px;}
.y9b{bottom:788.937600px;}
.ye5{bottom:797.303850px;}
.y27{bottom:797.907600px;}
.y4e{bottom:800.581350px;}
.ybe{bottom:801.271350px;}
.y75{bottom:801.443850px;}
.y6{bottom:810.052200px;}
.y9a{bottom:811.690350px;}
.ye4{bottom:818.383350px;}
.y26{bottom:818.866350px;}
.y4d{bottom:821.005350px;}
.ybd{bottom:821.557350px;}
.y74{bottom:821.695350px;}
.y5{bottom:831.337200px;}
.y99{bottom:834.443100px;}
.ye3{bottom:839.462850px;}
.y25{bottom:839.825100px;}
.y4c{bottom:841.429350px;}
.ybc{bottom:841.843350px;}
.y73{bottom:841.946850px;}
.y98{bottom:857.195850px;}
.ye2{bottom:860.542350px;}
.y24{bottom:860.783850px;}
.y4{bottom:861.127200px;}
.y4b{bottom:861.853350px;}
.ybb{bottom:862.129350px;}
.y72{bottom:862.198350px;}
.y97{bottom:879.948600px;}
.ye1{bottom:881.621850px;}
.y23{bottom:881.742600px;}
.y4a{bottom:882.277350px;}
.y3{bottom:882.412200px;}
.yba{bottom:882.415350px;}
.y71{bottom:882.449850px;}
.y22{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:948.189000px;}
.y49{bottom:966.189000px;}
.hc{height:33.870539px;}
.h9{height:40.757812px;}
.he{height:45.852539px;}
.h4{height:50.947266px;}
.hd{height:52.918945px;}
.h3{height:53.494629px;}
.h7{height:58.589355px;}
.hb{height:58.798828px;}
.ha{height:59.600098px;}
.h2{height:63.684082px;}
.h8{height:67.618652px;}
.h5{height:71.326172px;}
.h6{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:81.420450px;}
.x8{left:82.472700px;}
.x5{left:83.672550px;}
.x1{left:85.039350px;}
.xa{left:102.214350px;}
.x7{left:104.263650px;}
.x4{left:105.279900px;}
.x6{left:106.299150px;}
.xd{left:107.324100px;}
.xc{left:121.890000px;}
.xb{left:123.114750px;}
.x3{left:232.218000px;}
.x2{left:233.439750px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.043200pt;}
.ls5{letter-spacing:-5.664000pt;}
.lsb{letter-spacing:-2.392000pt;}
.lsd{letter-spacing:-1.584000pt;}
.ls4{letter-spacing:-0.970667pt;}
.ls9{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.613333pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:2.933333pt;}
.ls7{letter-spacing:3.066667pt;}
.ls6{letter-spacing:3.626667pt;}
.ls8{letter-spacing:4.853333pt;}
.lse{letter-spacing:5.200000pt;}
.ls1{letter-spacing:5.333333pt;}
.lsf{letter-spacing:6.693333pt;}
.ls2{letter-spacing:7.466667pt;}
.ws16{word-spacing:-25.426667pt;}
.ws15{word-spacing:-23.933333pt;}
.ws7{word-spacing:-21.800000pt;}
.ws10{word-spacing:-21.666667pt;}
.ws0{word-spacing:-21.312000pt;}
.ws1{word-spacing:-17.234667pt;}
.ws9{word-spacing:-16.560000pt;}
.ws8{word-spacing:-15.344000pt;}
.wsb{word-spacing:-15.149333pt;}
.ws11{word-spacing:-14.536000pt;}
.ws17{word-spacing:-13.173333pt;}
.ws14{word-spacing:-11.856000pt;}
.ws13{word-spacing:-10.272000pt;}
.wse{word-spacing:-10.047811pt;}
.ws4{word-spacing:-7.466667pt;}
.ws3{word-spacing:-5.333333pt;}
.wsa{word-spacing:-3.626667pt;}
.wsd{word-spacing:-0.552000pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.213333pt;}
.wsc{word-spacing:0.800000pt;}
.ws6{word-spacing:0.970667pt;}
.wsf{word-spacing:2.208000pt;}
.ws12{word-spacing:2.392000pt;}
._13{margin-left:-17.181333pt;}
._b{margin-left:-8.580000pt;}
._12{margin-left:-6.035200pt;}
._c{margin-left:-4.854400pt;}
._7{margin-left:-3.717333pt;}
._6{margin-left:-2.218667pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._4{width:2.032800pt;}
._a{width:2.978667pt;}
._11{width:3.956000pt;}
._5{width:4.889867pt;}
._9{width:6.393867pt;}
._8{width:7.324267pt;}
._d{width:8.611733pt;}
._10{width:9.515200pt;}
._14{width:10.680533pt;}
._18{width:12.272800pt;}
._f{width:14.112800pt;}
._16{width:15.981333pt;}
._1e{width:18.140800pt;}
._1f{width:19.062933pt;}
._1d{width:20.509867pt;}
._1a{width:22.699467pt;}
._21{width:29.237600pt;}
._17{width:38.617920pt;}
._20{width:400.362933pt;}
._22{width:401.418667pt;}
._e{width:403.939467pt;}
._19{width:406.270667pt;}
._0{width:514.133333pt;}
._3{width:835.606400pt;}
._1b{width:838.379733pt;}
._1c{width:841.979733pt;}
._15{width:843.739733pt;}
.fs9{font-size:27.984000pt;}
.fs8{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y70{bottom:94.369200pt;}
.y20{bottom:94.394933pt;}
.y48{bottom:94.461200pt;}
.ye0{bottom:94.469733pt;}
.yb9{bottom:94.537867pt;}
.y96{bottom:97.150933pt;}
.y105{bottom:109.803067pt;}
.ydf{bottom:109.805733pt;}
.y6f{bottom:112.523867pt;}
.y1f{bottom:112.656933pt;}
.y47{bottom:113.091200pt;}
.yb8{bottom:114.762533pt;}
.y104{bottom:125.139067pt;}
.yde{bottom:125.141733pt;}
.y6e{bottom:130.678533pt;}
.y1e{bottom:130.918933pt;}
.y46{bottom:131.721200pt;}
.yb7{bottom:134.987200pt;}
.y95{bottom:136.339867pt;}
.y103{bottom:140.475067pt;}
.ydd{bottom:140.477733pt;}
.y6d{bottom:148.833200pt;}
.y1d{bottom:149.180933pt;}
.y45{bottom:150.351200pt;}
.y94{bottom:154.341200pt;}
.yb6{bottom:155.211867pt;}
.y102{bottom:155.811067pt;}
.ydc{bottom:155.813733pt;}
.y6c{bottom:166.987867pt;}
.y1c{bottom:167.442933pt;}
.y44{bottom:168.981200pt;}
.y101{bottom:171.147067pt;}
.ydb{bottom:171.149733pt;}
.y93{bottom:172.342533pt;}
.yb5{bottom:175.436533pt;}
.y6b{bottom:185.142533pt;}
.y1b{bottom:185.704933pt;}
.y100{bottom:186.483067pt;}
.yda{bottom:186.485733pt;}
.y43{bottom:187.611200pt;}
.y92{bottom:190.343867pt;}
.yb4{bottom:195.661200pt;}
.yff{bottom:201.819067pt;}
.y6a{bottom:203.297200pt;}
.y1a{bottom:203.966933pt;}
.yd9{bottom:204.484400pt;}
.y42{bottom:206.241200pt;}
.y91{bottom:208.345200pt;}
.yb3{bottom:215.885867pt;}
.yfe{bottom:219.817733pt;}
.y69{bottom:221.451867pt;}
.y19{bottom:222.228933pt;}
.y41{bottom:224.871200pt;}
.y90{bottom:226.346533pt;}
.yb2{bottom:236.110533pt;}
.y68{bottom:239.606533pt;}
.y18{bottom:240.490933pt;}
.yd8{bottom:243.409200pt;}
.y40{bottom:243.501200pt;}
.y8f{bottom:244.347867pt;}
.yb1{bottom:256.335200pt;}
.y67{bottom:257.761200pt;}
.y17{bottom:258.752933pt;}
.yfd{bottom:258.978000pt;}
.yd7{bottom:261.441200pt;}
.y3f{bottom:262.131200pt;}
.y8e{bottom:262.349200pt;}
.y66{bottom:275.915867pt;}
.yb0{bottom:276.559867pt;}
.y16{bottom:277.014933pt;}
.yfc{bottom:277.715333pt;}
.yd6{bottom:279.473200pt;}
.y8d{bottom:280.350533pt;}
.y3e{bottom:280.761200pt;}
.y65{bottom:294.070533pt;}
.y15{bottom:295.276933pt;}
.yfb{bottom:296.452667pt;}
.yaf{bottom:296.784533pt;}
.yd5{bottom:297.505200pt;}
.y8c{bottom:298.351867pt;}
.y3d{bottom:299.391200pt;}
.y64{bottom:312.225200pt;}
.y14{bottom:313.538933pt;}
.yfa{bottom:315.190000pt;}
.yd4{bottom:315.537200pt;}
.y8b{bottom:316.353200pt;}
.yae{bottom:317.009200pt;}
.y3c{bottom:318.021200pt;}
.y63{bottom:330.379867pt;}
.y13{bottom:331.800933pt;}
.yd3{bottom:333.569200pt;}
.yf9{bottom:333.927333pt;}
.y8a{bottom:334.354533pt;}
.y3b{bottom:336.651200pt;}
.yad{bottom:337.233867pt;}
.y62{bottom:348.534533pt;}
.yd2{bottom:351.601200pt;}
.y89{bottom:352.355867pt;}
.yf8{bottom:352.664667pt;}
.y3a{bottom:355.281200pt;}
.yac{bottom:357.458533pt;}
.y61{bottom:366.689200pt;}
.yd1{bottom:369.633200pt;}
.y88{bottom:370.357200pt;}
.yf7{bottom:371.402000pt;}
.y39{bottom:373.911200pt;}
.y12{bottom:376.515467pt;}
.yab{bottom:377.683200pt;}
.y60{bottom:384.843867pt;}
.yd0{bottom:387.665200pt;}
.y87{bottom:388.358533pt;}
.yf6{bottom:390.139333pt;}
.y38{bottom:392.541200pt;}
.y11{bottom:395.435467pt;}
.yaa{bottom:397.907867pt;}
.y5f{bottom:402.998533pt;}
.ycf{bottom:405.697200pt;}
.y86{bottom:406.359867pt;}
.yf5{bottom:408.876667pt;}
.y37{bottom:411.171200pt;}
.y10{bottom:414.355467pt;}
.ya9{bottom:418.132533pt;}
.y5e{bottom:421.153200pt;}
.yce{bottom:423.729200pt;}
.y85{bottom:424.361200pt;}
.yf4{bottom:427.614000pt;}
.y36{bottom:429.801200pt;}
.ya8{bottom:438.357200pt;}
.y5d{bottom:439.307867pt;}
.ycd{bottom:441.761200pt;}
.y84{bottom:442.362533pt;}
.yf3{bottom:446.351333pt;}
.y35{bottom:448.431200pt;}
.y5c{bottom:457.462533pt;}
.ya7{bottom:458.581867pt;}
.yf{bottom:459.761067pt;}
.ycc{bottom:459.793200pt;}
.y83{bottom:460.363867pt;}
.yf2{bottom:465.088667pt;}
.y110{bottom:466.170267pt;}
.y34{bottom:467.061200pt;}
.y5b{bottom:475.617200pt;}
.ycb{bottom:477.825200pt;}
.y82{bottom:478.365200pt;}
.ya6{bottom:478.806533pt;}
.yf1{bottom:483.826000pt;}
.y10f{bottom:484.170267pt;}
.y33{bottom:485.691200pt;}
.ye{bottom:488.009067pt;}
.y5a{bottom:493.771867pt;}
.yca{bottom:495.857200pt;}
.y81{bottom:496.366533pt;}
.ya5{bottom:499.031200pt;}
.y10e{bottom:502.170267pt;}
.yf0{bottom:502.603867pt;}
.y32{bottom:504.321200pt;}
.y59{bottom:511.926533pt;}
.yc9{bottom:513.889200pt;}
.y80{bottom:514.367867pt;}
.yd{bottom:516.257067pt;}
.ya4{bottom:519.255867pt;}
.y10d{bottom:520.170267pt;}
.yef{bottom:521.341200pt;}
.y31{bottom:522.951200pt;}
.y58{bottom:530.081200pt;}
.yc8{bottom:531.921200pt;}
.y7f{bottom:532.369200pt;}
.ya3{bottom:539.480533pt;}
.yee{bottom:540.078533pt;}
.y30{bottom:541.581200pt;}
.yc{bottom:544.505067pt;}
.y57{bottom:548.235867pt;}
.y10c{bottom:549.503600pt;}
.yc7{bottom:549.953200pt;}
.y7e{bottom:550.370533pt;}
.yed{bottom:558.815867pt;}
.ya2{bottom:559.705200pt;}
.y2f{bottom:560.211200pt;}
.y56{bottom:566.390533pt;}
.yc6{bottom:567.985200pt;}
.y7d{bottom:568.371867pt;}
.yb{bottom:572.753067pt;}
.yec{bottom:577.553200pt;}
.y2e{bottom:578.841200pt;}
.ya1{bottom:579.929867pt;}
.y55{bottom:584.545200pt;}
.yc5{bottom:586.017200pt;}
.y7c{bottom:586.373200pt;}
.y10b{bottom:586.385200pt;}
.yeb{bottom:596.290533pt;}
.y2d{bottom:597.471200pt;}
.ya0{bottom:600.154533pt;}
.ya{bottom:601.007867pt;}
.y54{bottom:602.699867pt;}
.yc4{bottom:604.049200pt;}
.y7b{bottom:604.374533pt;}
.y10a{bottom:604.386533pt;}
.yea{bottom:615.027867pt;}
.y2c{bottom:616.101200pt;}
.y9f{bottom:620.379200pt;}
.y53{bottom:620.854533pt;}
.yc3{bottom:622.081200pt;}
.y7a{bottom:622.375867pt;}
.y109{bottom:622.387867pt;}
.ye9{bottom:633.765200pt;}
.y2b{bottom:634.731200pt;}
.y52{bottom:639.009200pt;}
.yc2{bottom:640.113200pt;}
.y79{bottom:640.377200pt;}
.y108{bottom:640.389200pt;}
.y9e{bottom:640.603867pt;}
.ye8{bottom:652.502533pt;}
.y2a{bottom:653.361200pt;}
.y9{bottom:655.726400pt;}
.y51{bottom:657.163867pt;}
.yc1{bottom:658.145200pt;}
.y78{bottom:658.378533pt;}
.y107{bottom:658.390533pt;}
.y9d{bottom:660.828533pt;}
.ye7{bottom:671.239867pt;}
.y29{bottom:671.991200pt;}
.y50{bottom:675.318533pt;}
.yc0{bottom:676.177200pt;}
.y77{bottom:676.379867pt;}
.y106{bottom:676.391867pt;}
.y9c{bottom:681.053200pt;}
.y8{bottom:682.206400pt;}
.ye6{bottom:689.977200pt;}
.y28{bottom:690.621200pt;}
.y4f{bottom:693.473200pt;}
.ybf{bottom:694.209200pt;}
.y76{bottom:694.393200pt;}
.y7{bottom:701.126400pt;}
.y9b{bottom:701.277867pt;}
.ye5{bottom:708.714533pt;}
.y27{bottom:709.251200pt;}
.y4e{bottom:711.627867pt;}
.ybe{bottom:712.241200pt;}
.y75{bottom:712.394533pt;}
.y6{bottom:720.046400pt;}
.y9a{bottom:721.502533pt;}
.ye4{bottom:727.451867pt;}
.y26{bottom:727.881200pt;}
.y4d{bottom:729.782533pt;}
.ybd{bottom:730.273200pt;}
.y74{bottom:730.395867pt;}
.y5{bottom:738.966400pt;}
.y99{bottom:741.727200pt;}
.ye3{bottom:746.189200pt;}
.y25{bottom:746.511200pt;}
.y4c{bottom:747.937200pt;}
.ybc{bottom:748.305200pt;}
.y73{bottom:748.397200pt;}
.y98{bottom:761.951867pt;}
.ye2{bottom:764.926533pt;}
.y24{bottom:765.141200pt;}
.y4{bottom:765.446400pt;}
.y4b{bottom:766.091867pt;}
.ybb{bottom:766.337200pt;}
.y72{bottom:766.398533pt;}
.y97{bottom:782.176533pt;}
.ye1{bottom:783.663867pt;}
.y23{bottom:783.771200pt;}
.y4a{bottom:784.246533pt;}
.y3{bottom:784.366400pt;}
.yba{bottom:784.369200pt;}
.y71{bottom:784.399867pt;}
.y22{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:842.834667pt;}
.y49{bottom:858.834667pt;}
.hc{height:30.107146pt;}
.h9{height:36.229167pt;}
.he{height:40.757812pt;}
.h4{height:45.286458pt;}
.hd{height:47.039062pt;}
.h3{height:47.550781pt;}
.h7{height:52.079427pt;}
.hb{height:52.265625pt;}
.ha{height:52.977865pt;}
.h2{height:56.608073pt;}
.h8{height:60.105469pt;}
.h5{height:63.401042pt;}
.h6{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:72.373733pt;}
.x8{left:73.309067pt;}
.x5{left:74.375600pt;}
.x1{left:75.590533pt;}
.xa{left:90.857200pt;}
.x7{left:92.678800pt;}
.x4{left:93.582133pt;}
.x6{left:94.488133pt;}
.xd{left:95.399200pt;}
.xc{left:108.346667pt;}
.xb{left:109.435333pt;}
.x3{left:206.416000pt;}
.x2{left:207.502000pt;}
}




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