
    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_9ae97530a8900f211b10f5db.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.859863;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_e5377a18e4432e9c9317f83c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_2c9aab49bb2e7297aa217c49.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.920410;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_0c4c3a5514919cb018cf9864.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_defc69bcfd80be0504925768.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_e157c721c9b755cd58032be9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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_79a51ce445f7054714263e4a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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);}
.m2{transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-33.936000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.272640px;}
.v1{vertical-align:48.270240px;}
.ls28{letter-spacing:-0.993600px;}
.ls22{letter-spacing:-0.927360px;}
.ls29{letter-spacing:-0.794880px;}
.ls30{letter-spacing:-0.728640px;}
.ls23{letter-spacing:-0.662400px;}
.ls39{letter-spacing:-0.397440px;}
.lsd{letter-spacing:-0.264960px;}
.ls16{letter-spacing:-0.239040px;}
.ls21{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.198720px;}
.ls1c{letter-spacing:-0.162000px;}
.ls33{letter-spacing:-0.132480px;}
.ls10{letter-spacing:-0.120240px;}
.ls15{letter-spacing:-0.119520px;}
.ls1b{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.066240px;}
.ls2f{letter-spacing:-0.059639px;}
.lsc{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.026496px;}
.ls26{letter-spacing:0.039744px;}
.ls9{letter-spacing:0.059760px;}
.ls12{letter-spacing:0.066240px;}
.ls1{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.079488px;}
.ls2{letter-spacing:0.119232px;}
.ls0{letter-spacing:0.120240px;}
.ls6{letter-spacing:0.132480px;}
.ls3{letter-spacing:0.145728px;}
.ls1f{letter-spacing:0.158976px;}
.ls14{letter-spacing:0.179280px;}
.lsf{letter-spacing:0.240480px;}
.ls25{letter-spacing:0.258336px;}
.ls20{letter-spacing:0.264960px;}
.ls2d{letter-spacing:0.298080px;}
.ls3b{letter-spacing:0.298800px;}
.lse{letter-spacing:0.331200px;}
.ls4{letter-spacing:0.351072px;}
.ls35{letter-spacing:0.463680px;}
.ls18{letter-spacing:0.594000px;}
.ls34{letter-spacing:0.728640px;}
.ls38{letter-spacing:0.927360px;}
.ls27{letter-spacing:1.457280px;}
.ls2e{letter-spacing:2.848320px;}
.ls2b{letter-spacing:3.576960px;}
.ls7{letter-spacing:3.764880px;}
.ls24{letter-spacing:4.305600px;}
.ls8{letter-spacing:4.482000px;}
.ls5{letter-spacing:5.034240px;}
.ls2c{letter-spacing:7.220160px;}
.ls37{letter-spacing:7.350480px;}
.ls3a{letter-spacing:7.410240px;}
.ls2a{letter-spacing:7.948800px;}
.lsb{letter-spacing:8.127360px;}
.ls19{letter-spacing:8.611200px;}
.ls1e{letter-spacing:10.068480px;}
.ls32{letter-spacing:11.525760px;}
.lsa{letter-spacing:12.788640px;}
.ls3c{letter-spacing:15.831360px;}
.ls36{letter-spacing:36.696960px;}
.ls1d{letter-spacing:303.318000px;}
.ls17{letter-spacing:1635.984000px;}
.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;}
}
.ws2{word-spacing:-29.939760px;}
.ws0{word-spacing:-21.060000px;}
.ws2c{word-spacing:-17.487360px;}
.ws1{word-spacing:-16.891200px;}
.ws1a{word-spacing:-16.692480px;}
.ws26{word-spacing:-16.626240px;}
.ws3{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.493760px;}
.ws16{word-spacing:-16.361280px;}
.ws5{word-spacing:-16.295040px;}
.ws2a{word-spacing:-15.765120px;}
.ws8{word-spacing:-15.119280px;}
.wsa{word-spacing:-14.999760px;}
.ws9{word-spacing:-14.940000px;}
.ws23{word-spacing:-14.820480px;}
.ws27{word-spacing:-11.525760px;}
.ws4{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.ws2e{word-spacing:-7.410240px;}
.ws11{word-spacing:-3.764880px;}
.ws1e{word-spacing:-1.457280px;}
.ws2b{word-spacing:-0.463680px;}
.ws19{word-spacing:-0.331200px;}
.ws2f{word-spacing:-0.298800px;}
.ws28{word-spacing:-0.264960px;}
.wsd{word-spacing:-0.240480px;}
.ws15{word-spacing:-0.179280px;}
.ws20{word-spacing:-0.132480px;}
.wsf{word-spacing:-0.066240px;}
.ws13{word-spacing:-0.059760px;}
.wsc{word-spacing:0.000000px;}
.ws24{word-spacing:0.059639px;}
.wse{word-spacing:0.066240px;}
.ws17{word-spacing:0.108000px;}
.ws12{word-spacing:0.119520px;}
.ws29{word-spacing:0.132480px;}
.ws18{word-spacing:0.162000px;}
.ws10{word-spacing:0.198720px;}
.ws1b{word-spacing:0.216000px;}
.ws14{word-spacing:0.239040px;}
.wsb{word-spacing:0.264960px;}
.ws2d{word-spacing:0.397440px;}
.ws1d{word-spacing:0.662400px;}
.ws25{word-spacing:0.728640px;}
.ws21{word-spacing:0.794880px;}
.ws1c{word-spacing:0.927360px;}
.ws1f{word-spacing:0.993600px;}
.ws22{word-spacing:109.602469px;}
._e{margin-left:-13.711680px;}
._15{margin-left:-12.366432px;}
._16{margin-left:-11.195424px;}
._1b{margin-left:-7.901928px;}
._1c{margin-left:-6.780960px;}
._1d{margin-left:-5.667768px;}
._a{margin-left:-4.137048px;}
._b{margin-left:-3.051072px;}
._0{margin-left:-1.477440px;}
._2{width:1.094544px;}
._1{width:2.621520px;}
._3{width:3.716064px;}
._4{width:4.948128px;}
._f{width:6.160320px;}
._7{width:7.326432px;}
._6{width:8.637696px;}
._5{width:10.028736px;}
._8{width:11.701440px;}
._d{width:12.854376px;}
._13{width:14.400576px;}
._10{width:15.444000px;}
._12{width:17.987616px;}
._9{width:19.766016px;}
._11{width:20.945088px;}
._c{width:22.957920px;}
._14{width:34.073856px;}
._1a{width:38.217024px;}
._18{width:101.484720px;}
._20{width:141.330528px;}
._1f{width:142.363008px;}
._17{width:179.311680px;}
._19{width:188.850240px;}
._1e{width:551.448000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:59.638800px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y57{bottom:97.387650px;}
.y43{bottom:108.392850px;}
.y56{bottom:124.457250px;}
.y44{bottom:144.434250px;}
.y55{bottom:151.526400px;}
.y54{bottom:178.595850px;}
.y45{bottom:181.177200px;}
.y53{bottom:205.665150px;}
.y46{bottom:218.642400px;}
.y52{bottom:232.734600px;}
.y84{bottom:233.820000px;}
.y1f{bottom:233.827200px;}
.y41{bottom:237.155040px;}
.y66{bottom:237.600000px;}
.y83{bottom:250.560000px;}
.y67{bottom:250.920000px;}
.y1e{bottom:254.340000px;}
.y47{bottom:256.851300px;}
.y51{bottom:259.804050px;}
.y3f{bottom:265.058640px;}
.y1d{bottom:267.466140px;}
.y82{bottom:267.480000px;}
.y4e{bottom:273.383250px;}
.y4d{bottom:274.331700px;}
.y4c{bottom:275.152500px;}
.y65{bottom:280.046880px;}
.y1c{bottom:284.393160px;}
.y81{bottom:284.400000px;}
.y4a{bottom:285.740850px;}
.y50{bottom:286.280100px;}
.y3e{bottom:292.780080px;}
.y48{bottom:295.826400px;}
.y80{bottom:301.320000px;}
.y1b{bottom:301.320180px;}
.y4f{bottom:301.556400px;}
.y4b{bottom:305.981850px;}
.y64{bottom:307.950480px;}
.y1a{bottom:318.052980px;}
.y3d{bottom:320.683680px;}
.y7f{bottom:321.840000px;}
.y85{bottom:335.340000px;}
.y49{bottom:335.590950px;}
.y63{bottom:335.854080px;}
.y19{bottom:338.760000px;}
.y3c{bottom:348.587280px;}
.y20{bottom:352.080000px;}
.y62{bottom:363.575520px;}
.y3b{bottom:376.308720px;}
.y7e{bottom:376.380000px;}
.y18{bottom:382.302720px;}
.y61{bottom:391.479120px;}
.y3a{bottom:404.212320px;}
.y7d{bottom:404.262720px;}
.y17{bottom:410.206320px;}
.y60{bottom:419.382720px;}
.y39{bottom:432.115920px;}
.y7c{bottom:432.166320px;}
.y16{bottom:438.109920px;}
.y5f{bottom:447.286320px;}
.y38{bottom:459.837360px;}
.y7b{bottom:459.887760px;}
.y15{bottom:465.831360px;}
.y5e{bottom:475.007760px;}
.y37{bottom:487.740960px;}
.y7a{bottom:487.791360px;}
.y14{bottom:493.734960px;}
.y5d{bottom:502.911360px;}
.y36{bottom:515.644560px;}
.y79{bottom:515.694960px;}
.y13{bottom:521.638560px;}
.y5c{bottom:530.814960px;}
.y35{bottom:543.366000px;}
.y78{bottom:543.416400px;}
.y12{bottom:549.321840px;}
.y5b{bottom:558.536400px;}
.y34{bottom:571.269600px;}
.y77{bottom:571.320000px;}
.y11{bottom:577.225440px;}
.y5a{bottom:586.436400px;}
.y33{bottom:599.173200px;}
.y8e{bottom:599.216400px;}
.y76{bottom:599.220000px;}
.y10{bottom:605.129040px;}
.y59{bottom:614.340000px;}
.y32{bottom:627.076800px;}
.y75{bottom:627.120000px;}
.yf{bottom:632.850480px;}
.y58{bottom:640.800000px;}
.y31{bottom:654.798240px;}
.y74{bottom:654.840000px;}
.y42{bottom:659.076000px;}
.ye{bottom:660.754080px;}
.y30{bottom:682.701840px;}
.y73{bottom:682.740000px;}
.yd{bottom:688.657680px;}
.y2f{bottom:710.605440px;}
.y72{bottom:710.609040px;}
.y8d{bottom:710.640000px;}
.yc{bottom:716.379120px;}
.y2e{bottom:738.326880px;}
.y71{bottom:738.330480px;}
.y8c{bottom:738.360000px;}
.yb{bottom:744.282720px;}
.y2d{bottom:766.230480px;}
.y70{bottom:766.234080px;}
.y8b{bottom:766.260000px;}
.ya{bottom:772.186320px;}
.y2c{bottom:794.134080px;}
.y6f{bottom:794.137680px;}
.y8a{bottom:794.160000px;}
.y9{bottom:799.907760px;}
.y2b{bottom:821.855520px;}
.y6e{bottom:821.859120px;}
.y89{bottom:821.880000px;}
.y8{bottom:827.811360px;}
.y2a{bottom:849.759120px;}
.y6d{bottom:849.762720px;}
.y88{bottom:849.780000px;}
.y7{bottom:855.714960px;}
.y29{bottom:877.662720px;}
.y6c{bottom:877.666320px;}
.y87{bottom:877.680000px;}
.y6{bottom:883.618560px;}
.y28{bottom:905.384160px;}
.y6b{bottom:905.387760px;}
.y86{bottom:905.400000px;}
.y5{bottom:911.340000px;}
.y27{bottom:933.287760px;}
.y6a{bottom:933.291360px;}
.y4{bottom:940.320000px;}
.y26{bottom:961.191360px;}
.y69{bottom:961.194960px;}
.y3{bottom:963.712440px;}
.y25{bottom:988.912800px;}
.y68{bottom:988.916400px;}
.y2{bottom:997.560000px;}
.y24{bottom:1016.816400px;}
.y1{bottom:1040.940000px;}
.y23{bottom:1044.720000px;}
.y22{bottom:1076.580000px;}
.y40{bottom:1076.940000px;}
.y21{bottom:1094.040000px;}
.h7{height:34.893984px;}
.he{height:39.749493px;}
.ha{height:45.193359px;}
.h8{height:50.013984px;}
.hb{height:54.499219px;}
.h5{height:55.437187px;}
.hf{height:55.451587px;}
.h11{height:55.486148px;}
.h10{height:55.506308px;}
.h6{height:55.589828px;}
.hc{height:56.019375px;}
.h4{height:60.257812px;}
.h9{height:63.763920px;}
.h2{height:70.501641px;}
.h3{height:101.687344px;}
.hd{height:365.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:543.540000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:26.575500px;}
.xe{left:28.300650px;}
.xd{left:29.991450px;}
.xc{left:31.649100px;}
.xb{left:33.274500px;}
.xa{left:34.868550px;}
.x9{left:74.452950px;}
.x10{left:123.073050px;}
.x11{left:158.282400px;}
.x4{left:178.560000px;}
.x7{left:183.031200px;}
.x8{left:184.605000px;}
.x12{left:190.960200px;}
.x6{left:210.057120px;}
.x5{left:231.651360px;}
.x3{left:246.623220px;}
.x15{left:267.619500px;}
.x2{left:310.140000px;}
.x13{left:343.109100px;}
.x14{left:382.909050px;}
.x1{left:398.160000px;}
.x16{left:482.878500px;}
@media print{
.v4{vertical-align:-30.165333pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.575680pt;}
.v1{vertical-align:42.906880pt;}
.ls28{letter-spacing:-0.883200pt;}
.ls22{letter-spacing:-0.824320pt;}
.ls29{letter-spacing:-0.706560pt;}
.ls30{letter-spacing:-0.647680pt;}
.ls23{letter-spacing:-0.588800pt;}
.ls39{letter-spacing:-0.353280pt;}
.lsd{letter-spacing:-0.235520pt;}
.ls16{letter-spacing:-0.212480pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.176640pt;}
.ls1c{letter-spacing:-0.144000pt;}
.ls33{letter-spacing:-0.117760pt;}
.ls10{letter-spacing:-0.106880pt;}
.ls15{letter-spacing:-0.106240pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.058880pt;}
.ls2f{letter-spacing:-0.053012pt;}
.lsc{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.023552pt;}
.ls26{letter-spacing:0.035328pt;}
.ls9{letter-spacing:0.053120pt;}
.ls12{letter-spacing:0.058880pt;}
.ls1{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.070656pt;}
.ls2{letter-spacing:0.105984pt;}
.ls0{letter-spacing:0.106880pt;}
.ls6{letter-spacing:0.117760pt;}
.ls3{letter-spacing:0.129536pt;}
.ls1f{letter-spacing:0.141312pt;}
.ls14{letter-spacing:0.159360pt;}
.lsf{letter-spacing:0.213760pt;}
.ls25{letter-spacing:0.229632pt;}
.ls20{letter-spacing:0.235520pt;}
.ls2d{letter-spacing:0.264960pt;}
.ls3b{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.294400pt;}
.ls4{letter-spacing:0.312064pt;}
.ls35{letter-spacing:0.412160pt;}
.ls18{letter-spacing:0.528000pt;}
.ls34{letter-spacing:0.647680pt;}
.ls38{letter-spacing:0.824320pt;}
.ls27{letter-spacing:1.295360pt;}
.ls2e{letter-spacing:2.531840pt;}
.ls2b{letter-spacing:3.179520pt;}
.ls7{letter-spacing:3.346560pt;}
.ls24{letter-spacing:3.827200pt;}
.ls8{letter-spacing:3.984000pt;}
.ls5{letter-spacing:4.474880pt;}
.ls2c{letter-spacing:6.417920pt;}
.ls37{letter-spacing:6.533760pt;}
.ls3a{letter-spacing:6.586880pt;}
.ls2a{letter-spacing:7.065600pt;}
.lsb{letter-spacing:7.224320pt;}
.ls19{letter-spacing:7.654400pt;}
.ls1e{letter-spacing:8.949760pt;}
.ls32{letter-spacing:10.245120pt;}
.lsa{letter-spacing:11.367680pt;}
.ls3c{letter-spacing:14.072320pt;}
.ls36{letter-spacing:32.619520pt;}
.ls1d{letter-spacing:269.616000pt;}
.ls17{letter-spacing:1454.208000pt;}
.ws2{word-spacing:-26.613120pt;}
.ws0{word-spacing:-18.720000pt;}
.ws2c{word-spacing:-15.544320pt;}
.ws1{word-spacing:-15.014400pt;}
.ws1a{word-spacing:-14.837760pt;}
.ws26{word-spacing:-14.778880pt;}
.ws3{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.661120pt;}
.ws16{word-spacing:-14.543360pt;}
.ws5{word-spacing:-14.484480pt;}
.ws2a{word-spacing:-14.013440pt;}
.ws8{word-spacing:-13.439360pt;}
.wsa{word-spacing:-13.333120pt;}
.ws9{word-spacing:-13.280000pt;}
.ws23{word-spacing:-13.173760pt;}
.ws27{word-spacing:-10.245120pt;}
.ws4{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws2e{word-spacing:-6.586880pt;}
.ws11{word-spacing:-3.346560pt;}
.ws1e{word-spacing:-1.295360pt;}
.ws2b{word-spacing:-0.412160pt;}
.ws19{word-spacing:-0.294400pt;}
.ws2f{word-spacing:-0.265600pt;}
.ws28{word-spacing:-0.235520pt;}
.wsd{word-spacing:-0.213760pt;}
.ws15{word-spacing:-0.159360pt;}
.ws20{word-spacing:-0.117760pt;}
.wsf{word-spacing:-0.058880pt;}
.ws13{word-spacing:-0.053120pt;}
.wsc{word-spacing:0.000000pt;}
.ws24{word-spacing:0.053012pt;}
.wse{word-spacing:0.058880pt;}
.ws17{word-spacing:0.096000pt;}
.ws12{word-spacing:0.106240pt;}
.ws29{word-spacing:0.117760pt;}
.ws18{word-spacing:0.144000pt;}
.ws10{word-spacing:0.176640pt;}
.ws1b{word-spacing:0.192000pt;}
.ws14{word-spacing:0.212480pt;}
.wsb{word-spacing:0.235520pt;}
.ws2d{word-spacing:0.353280pt;}
.ws1d{word-spacing:0.588800pt;}
.ws25{word-spacing:0.647680pt;}
.ws21{word-spacing:0.706560pt;}
.ws1c{word-spacing:0.824320pt;}
.ws1f{word-spacing:0.883200pt;}
.ws22{word-spacing:97.424417pt;}
._e{margin-left:-12.188160pt;}
._15{margin-left:-10.992384pt;}
._16{margin-left:-9.951488pt;}
._1b{margin-left:-7.023936pt;}
._1c{margin-left:-6.027520pt;}
._1d{margin-left:-5.038016pt;}
._a{margin-left:-3.677376pt;}
._b{margin-left:-2.712064pt;}
._0{margin-left:-1.313280pt;}
._2{width:0.972928pt;}
._1{width:2.330240pt;}
._3{width:3.303168pt;}
._4{width:4.398336pt;}
._f{width:5.475840pt;}
._7{width:6.512384pt;}
._6{width:7.677952pt;}
._5{width:8.914432pt;}
._8{width:10.401280pt;}
._d{width:11.426112pt;}
._13{width:12.800512pt;}
._10{width:13.728000pt;}
._12{width:15.988992pt;}
._9{width:17.569792pt;}
._11{width:18.617856pt;}
._c{width:20.407040pt;}
._14{width:30.287872pt;}
._1a{width:33.970688pt;}
._18{width:90.208640pt;}
._20{width:125.627136pt;}
._1f{width:126.544896pt;}
._17{width:159.388160pt;}
._19{width:167.866880pt;}
._1e{width:490.176000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:53.012267pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:86.566800pt;}
.y43{bottom:96.349200pt;}
.y56{bottom:110.628667pt;}
.y44{bottom:128.386000pt;}
.y55{bottom:134.690133pt;}
.y54{bottom:158.751867pt;}
.y45{bottom:161.046400pt;}
.y53{bottom:182.813467pt;}
.y46{bottom:194.348800pt;}
.y52{bottom:206.875200pt;}
.y84{bottom:207.840000pt;}
.y1f{bottom:207.846400pt;}
.y41{bottom:210.804480pt;}
.y66{bottom:211.200000pt;}
.y83{bottom:222.720000pt;}
.y67{bottom:223.040000pt;}
.y1e{bottom:226.080000pt;}
.y47{bottom:228.312267pt;}
.y51{bottom:230.936933pt;}
.y3f{bottom:235.607680pt;}
.y1d{bottom:237.747680pt;}
.y82{bottom:237.760000pt;}
.y4e{bottom:243.007333pt;}
.y4d{bottom:243.850400pt;}
.y4c{bottom:244.580000pt;}
.y65{bottom:248.930560pt;}
.y1c{bottom:252.793920pt;}
.y81{bottom:252.800000pt;}
.y4a{bottom:253.991867pt;}
.y50{bottom:254.471200pt;}
.y3e{bottom:260.248960pt;}
.y48{bottom:262.956800pt;}
.y80{bottom:267.840000pt;}
.y1b{bottom:267.840160pt;}
.y4f{bottom:268.050133pt;}
.y4b{bottom:271.983867pt;}
.y64{bottom:273.733760pt;}
.y1a{bottom:282.713760pt;}
.y3d{bottom:285.052160pt;}
.y7f{bottom:286.080000pt;}
.y85{bottom:298.080000pt;}
.y49{bottom:298.303067pt;}
.y63{bottom:298.536960pt;}
.y19{bottom:301.120000pt;}
.y3c{bottom:309.855360pt;}
.y20{bottom:312.960000pt;}
.y62{bottom:323.178240pt;}
.y3b{bottom:334.496640pt;}
.y7e{bottom:334.560000pt;}
.y18{bottom:339.824640pt;}
.y61{bottom:347.981440pt;}
.y3a{bottom:359.299840pt;}
.y7d{bottom:359.344640pt;}
.y17{bottom:364.627840pt;}
.y60{bottom:372.784640pt;}
.y39{bottom:384.103040pt;}
.y7c{bottom:384.147840pt;}
.y16{bottom:389.431040pt;}
.y5f{bottom:397.587840pt;}
.y38{bottom:408.744320pt;}
.y7b{bottom:408.789120pt;}
.y15{bottom:414.072320pt;}
.y5e{bottom:422.229120pt;}
.y37{bottom:433.547520pt;}
.y7a{bottom:433.592320pt;}
.y14{bottom:438.875520pt;}
.y5d{bottom:447.032320pt;}
.y36{bottom:458.350720pt;}
.y79{bottom:458.395520pt;}
.y13{bottom:463.678720pt;}
.y5c{bottom:471.835520pt;}
.y35{bottom:482.992000pt;}
.y78{bottom:483.036800pt;}
.y12{bottom:488.286080pt;}
.y5b{bottom:496.476800pt;}
.y34{bottom:507.795200pt;}
.y77{bottom:507.840000pt;}
.y11{bottom:513.089280pt;}
.y5a{bottom:521.276800pt;}
.y33{bottom:532.598400pt;}
.y8e{bottom:532.636800pt;}
.y76{bottom:532.640000pt;}
.y10{bottom:537.892480pt;}
.y59{bottom:546.080000pt;}
.y32{bottom:557.401600pt;}
.y75{bottom:557.440000pt;}
.yf{bottom:562.533760pt;}
.y58{bottom:569.600000pt;}
.y31{bottom:582.042880pt;}
.y74{bottom:582.080000pt;}
.y42{bottom:585.845333pt;}
.ye{bottom:587.336960pt;}
.y30{bottom:606.846080pt;}
.y73{bottom:606.880000pt;}
.yd{bottom:612.140160pt;}
.y2f{bottom:631.649280pt;}
.y72{bottom:631.652480pt;}
.y8d{bottom:631.680000pt;}
.yc{bottom:636.781440pt;}
.y2e{bottom:656.290560pt;}
.y71{bottom:656.293760pt;}
.y8c{bottom:656.320000pt;}
.yb{bottom:661.584640pt;}
.y2d{bottom:681.093760pt;}
.y70{bottom:681.096960pt;}
.y8b{bottom:681.120000pt;}
.ya{bottom:686.387840pt;}
.y2c{bottom:705.896960pt;}
.y6f{bottom:705.900160pt;}
.y8a{bottom:705.920000pt;}
.y9{bottom:711.029120pt;}
.y2b{bottom:730.538240pt;}
.y6e{bottom:730.541440pt;}
.y89{bottom:730.560000pt;}
.y8{bottom:735.832320pt;}
.y2a{bottom:755.341440pt;}
.y6d{bottom:755.344640pt;}
.y88{bottom:755.360000pt;}
.y7{bottom:760.635520pt;}
.y29{bottom:780.144640pt;}
.y6c{bottom:780.147840pt;}
.y87{bottom:780.160000pt;}
.y6{bottom:785.438720pt;}
.y28{bottom:804.785920pt;}
.y6b{bottom:804.789120pt;}
.y86{bottom:804.800000pt;}
.y5{bottom:810.080000pt;}
.y27{bottom:829.589120pt;}
.y6a{bottom:829.592320pt;}
.y4{bottom:835.840000pt;}
.y26{bottom:854.392320pt;}
.y69{bottom:854.395520pt;}
.y3{bottom:856.633280pt;}
.y25{bottom:879.033600pt;}
.y68{bottom:879.036800pt;}
.y2{bottom:886.720000pt;}
.y24{bottom:903.836800pt;}
.y1{bottom:925.280000pt;}
.y23{bottom:928.640000pt;}
.y22{bottom:956.960000pt;}
.y40{bottom:957.280000pt;}
.y21{bottom:972.480000pt;}
.h7{height:31.016875pt;}
.he{height:35.332883pt;}
.ha{height:40.171875pt;}
.h8{height:44.456875pt;}
.hb{height:48.443750pt;}
.h5{height:49.277500pt;}
.hf{height:49.290300pt;}
.h11{height:49.321020pt;}
.h10{height:49.338940pt;}
.h6{height:49.413180pt;}
.hc{height:49.795000pt;}
.h4{height:53.562500pt;}
.h9{height:56.679040pt;}
.h2{height:62.668125pt;}
.h3{height:90.388750pt;}
.hd{height:325.098667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:483.146667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:23.622667pt;}
.xe{left:25.156133pt;}
.xd{left:26.659067pt;}
.xc{left:28.132533pt;}
.xb{left:29.577333pt;}
.xa{left:30.994267pt;}
.x9{left:66.180400pt;}
.x10{left:109.398267pt;}
.x11{left:140.695467pt;}
.x4{left:158.720000pt;}
.x7{left:162.694400pt;}
.x8{left:164.093333pt;}
.x12{left:169.742400pt;}
.x6{left:186.717440pt;}
.x5{left:205.912320pt;}
.x3{left:219.220640pt;}
.x15{left:237.884000pt;}
.x2{left:275.680000pt;}
.x13{left:304.985867pt;}
.x14{left:340.363600pt;}
.x1{left:353.920000pt;}
.x16{left:429.225333pt;}
}




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