
    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_ee4160190ad814cc81934a87.woff')format("woff");}.ff1{font-family:ff1;line-height:0.660000;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_d7ae3ce608ee65a9ca8b5028.woff')format("woff");}.ff2{font-family:ff2;line-height:0.928000;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_7ce36ca49731cdedaeaf5155.woff')format("woff");}.ff3{font-family:ff3;line-height:0.928000;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_af5c82c7885106ca4c2cc0a1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088000;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_6c075a266d8e93ab2a86261c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088000;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_c7f4294030aa8f18ddd1e2d8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.860000;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_5e4d27cdc6602af1b82aa9d3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.053000;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_22c1f975351e571450c33f72.woff')format("woff");}.ff8{font-family:ff8;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2d18434fa8cec7e5ee4e4549.woff')format("woff");}.ff9{font-family:ff9;line-height:0.672000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f0bd921870195d8ef0c2a24d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.928000;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:ffb;src:url('chunks/assets/font_3c4e5e1f4f39d4d99c475e84.woff')format("woff");}.ffb{font-family:ffb;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d070aa623cc419c322d680e4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.997000;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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.600000px;}
.ls0{letter-spacing:1399.968000px;}
.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;}
}
.ws3{word-spacing:-15.060000px;}
.ws3f{word-spacing:-15.000000px;}
.ws2{word-spacing:-9.600000px;}
.ws1{word-spacing:-9.000000px;}
.ws37{word-spacing:-5.400000px;}
.ws36{word-spacing:-4.500000px;}
.ws71{word-spacing:-4.380000px;}
.ws38{word-spacing:-4.200000px;}
.ws79{word-spacing:-3.420000px;}
.ws1e{word-spacing:-3.000000px;}
.ws7a{word-spacing:-2.700000px;}
.ws7d{word-spacing:-2.640000px;}
.ws3a{word-spacing:-2.460000px;}
.wsc{word-spacing:-2.100000px;}
.ws27{word-spacing:-1.920000px;}
.ws58{word-spacing:-1.740000px;}
.ws3b{word-spacing:-1.680000px;}
.ws35{word-spacing:-1.620000px;}
.ws72{word-spacing:-1.560000px;}
.wsf{word-spacing:-1.380000px;}
.ws7{word-spacing:-1.332000px;}
.ws31{word-spacing:-1.320000px;}
.ws24{word-spacing:-1.260000px;}
.ws1f{word-spacing:-1.200000px;}
.ws3c{word-spacing:-1.080000px;}
.ws5{word-spacing:-1.008000px;}
.ws4b{word-spacing:-0.960000px;}
.ws32{word-spacing:-0.840000px;}
.ws2f{word-spacing:-0.780000px;}
.ws3e{word-spacing:-0.720000px;}
.ws8{word-spacing:-0.600000px;}
.ws10{word-spacing:-0.480000px;}
.ws5b{word-spacing:-0.360000px;}
.ws2a{word-spacing:-0.240000px;}
.ws0{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws39{word-spacing:0.120000px;}
.ws55{word-spacing:0.180000px;}
.ws6{word-spacing:0.216000px;}
.wsa{word-spacing:0.240000px;}
.ws30{word-spacing:0.420000px;}
.ws56{word-spacing:0.540000px;}
.ws2b{word-spacing:0.600000px;}
.ws2e{word-spacing:0.660000px;}
.ws1a{word-spacing:0.780000px;}
.ws49{word-spacing:0.840000px;}
.ws14{word-spacing:1.080000px;}
.ws1d{word-spacing:1.260000px;}
.ws17{word-spacing:1.380000px;}
.ws16{word-spacing:1.500000px;}
.ws41{word-spacing:1.620000px;}
.ws2d{word-spacing:1.920000px;}
.ws28{word-spacing:2.460000px;}
.ws23{word-spacing:2.580000px;}
.ws69{word-spacing:3.060000px;}
.ws6b{word-spacing:3.180000px;}
.ws6a{word-spacing:3.300000px;}
.ws12{word-spacing:3.360000px;}
.ws5a{word-spacing:3.540000px;}
.ws1c{word-spacing:3.660000px;}
.ws74{word-spacing:3.780000px;}
.ws29{word-spacing:3.900000px;}
.ws77{word-spacing:4.200000px;}
.ws6f{word-spacing:4.260000px;}
.ws45{word-spacing:4.320000px;}
.ws1b{word-spacing:4.620000px;}
.ws82{word-spacing:4.740000px;}
.ws7e{word-spacing:4.800000px;}
.wse{word-spacing:5.040000px;}
.ws64{word-spacing:5.220000px;}
.ws73{word-spacing:5.340000px;}
.ws70{word-spacing:5.400000px;}
.ws33{word-spacing:5.640000px;}
.ws25{word-spacing:5.820000px;}
.ws26{word-spacing:5.880000px;}
.ws9{word-spacing:5.940000px;}
.wsd{word-spacing:6.120000px;}
.ws59{word-spacing:6.240000px;}
.ws81{word-spacing:6.300000px;}
.ws4a{word-spacing:6.420000px;}
.ws4d{word-spacing:6.720000px;}
.wsb{word-spacing:6.780000px;}
.ws57{word-spacing:7.020000px;}
.ws65{word-spacing:7.140000px;}
.ws66{word-spacing:7.200000px;}
.ws18{word-spacing:7.620000px;}
.ws22{word-spacing:7.800000px;}
.ws3d{word-spacing:7.920000px;}
.ws2c{word-spacing:8.100000px;}
.ws76{word-spacing:8.400000px;}
.ws21{word-spacing:8.640000px;}
.ws15{word-spacing:9.060000px;}
.ws62{word-spacing:9.120000px;}
.ws5d{word-spacing:9.480000px;}
.ws78{word-spacing:9.540000px;}
.ws7f{word-spacing:10.020000px;}
.ws48{word-spacing:10.860000px;}
.ws63{word-spacing:11.100000px;}
.ws5f{word-spacing:11.340000px;}
.ws19{word-spacing:11.640000px;}
.ws13{word-spacing:12.000000px;}
.ws34{word-spacing:12.120000px;}
.ws7b{word-spacing:12.180000px;}
.ws6e{word-spacing:12.420000px;}
.ws6d{word-spacing:12.480000px;}
.ws61{word-spacing:12.540000px;}
.ws46{word-spacing:12.660000px;}
.ws47{word-spacing:12.720000px;}
.ws53{word-spacing:12.780000px;}
.ws54{word-spacing:12.840000px;}
.ws6c{word-spacing:14.400000px;}
.ws4e{word-spacing:14.580000px;}
.ws44{word-spacing:14.700000px;}
.ws7c{word-spacing:15.000000px;}
.ws67{word-spacing:15.060000px;}
.ws80{word-spacing:15.720000px;}
.ws52{word-spacing:16.080000px;}
.ws60{word-spacing:16.740000px;}
.ws68{word-spacing:17.220000px;}
.ws42{word-spacing:17.880000px;}
.ws20{word-spacing:18.840000px;}
.ws11{word-spacing:19.800000px;}
.ws4c{word-spacing:20.220000px;}
.ws75{word-spacing:20.760000px;}
.ws43{word-spacing:21.060000px;}
.ws40{word-spacing:24.660000px;}
.ws51{word-spacing:25.800000px;}
.ws5c{word-spacing:27.300000px;}
.ws5e{word-spacing:28.140000px;}
.ws83{word-spacing:38.520000px;}
.ws50{word-spacing:39.780000px;}
.ws4f{word-spacing:47.400000px;}
._5{margin-left:-2893.356000px;}
._7{margin-left:-27.000000px;}
._8{margin-left:-15.360000px;}
._9{margin-left:-12.480000px;}
._3{margin-left:-6.512400px;}
._4{margin-left:-4.548000px;}
._2{margin-left:-3.423600px;}
._0{margin-left:-1.692000px;}
._1{width:1.220400px;}
._6{width:2.962800px;}
._a{width:17.520000px;}
._b{width:47.700000px;}
.fc2{color:rgb(39,53,129);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(107,159,157);}
.fs2{font-size:30.000000px;}
.fs1{font-size:36.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:34.582650px;}
.y7{bottom:49.367100px;}
.y6{bottom:58.367100px;}
.y5{bottom:77.112900px;}
.y4{bottom:87.912900px;}
.y3{bottom:98.712900px;}
.y2{bottom:109.512900px;}
.ybb{bottom:148.765800px;}
.yba{bottom:166.765800px;}
.y57{bottom:177.310500px;}
.y33{bottom:177.640500px;}
.yb9{bottom:184.765800px;}
.y56{bottom:195.310500px;}
.y32{bottom:195.640500px;}
.yb8{bottom:202.765800px;}
.y55{bottom:213.310500px;}
.y31{bottom:213.640500px;}
.yb7{bottom:220.765800px;}
.y54{bottom:231.310500px;}
.y30{bottom:231.640500px;}
.yb6{bottom:238.765800px;}
.y53{bottom:249.310500px;}
.y2f{bottom:249.640500px;}
.yb5{bottom:256.765800px;}
.y52{bottom:267.310500px;}
.y2e{bottom:267.640500px;}
.yb4{bottom:274.765800px;}
.y51{bottom:285.310500px;}
.y2d{bottom:285.640500px;}
.yb3{bottom:292.765800px;}
.y50{bottom:303.310500px;}
.y2c{bottom:303.640500px;}
.yb2{bottom:310.765800px;}
.y85{bottom:311.860800px;}
.y4f{bottom:321.310500px;}
.y2b{bottom:321.640500px;}
.yb1{bottom:328.765800px;}
.y84{bottom:329.860800px;}
.y4e{bottom:339.310500px;}
.y2a{bottom:339.640500px;}
.yb0{bottom:346.765800px;}
.y83{bottom:347.860800px;}
.y4d{bottom:357.310500px;}
.y29{bottom:357.640500px;}
.yaf{bottom:364.765800px;}
.y82{bottom:365.860800px;}
.y4c{bottom:375.310500px;}
.y28{bottom:375.640500px;}
.yae{bottom:382.765800px;}
.y81{bottom:383.860800px;}
.y4b{bottom:393.310500px;}
.y27{bottom:393.640500px;}
.yad{bottom:400.765800px;}
.y80{bottom:401.860800px;}
.y4a{bottom:411.310500px;}
.y26{bottom:411.640500px;}
.yac{bottom:418.765800px;}
.y7f{bottom:419.860800px;}
.y49{bottom:429.310500px;}
.y25{bottom:429.640500px;}
.yab{bottom:436.765800px;}
.y7e{bottom:437.860800px;}
.y48{bottom:447.310500px;}
.y24{bottom:447.640500px;}
.yaa{bottom:454.765800px;}
.y7d{bottom:455.860800px;}
.y47{bottom:465.310500px;}
.y23{bottom:465.640500px;}
.ya9{bottom:472.765800px;}
.y7c{bottom:473.860800px;}
.y46{bottom:483.310500px;}
.y22{bottom:483.640500px;}
.ya8{bottom:490.765800px;}
.y7b{bottom:491.860800px;}
.y45{bottom:501.310500px;}
.y21{bottom:501.640500px;}
.ya7{bottom:508.765800px;}
.y7a{bottom:509.860800px;}
.y44{bottom:519.310500px;}
.y20{bottom:519.640500px;}
.ya6{bottom:526.765800px;}
.y79{bottom:527.860800px;}
.y43{bottom:537.310500px;}
.y1f{bottom:537.640500px;}
.ya5{bottom:544.765800px;}
.y78{bottom:545.860800px;}
.y42{bottom:555.310500px;}
.y1e{bottom:555.640500px;}
.ya4{bottom:562.765800px;}
.y77{bottom:563.860800px;}
.y41{bottom:573.310500px;}
.y1d{bottom:573.640500px;}
.ya3{bottom:580.765800px;}
.y76{bottom:581.860800px;}
.y40{bottom:591.310500px;}
.y1c{bottom:591.640500px;}
.ya2{bottom:598.765800px;}
.y75{bottom:599.860800px;}
.y3f{bottom:609.310500px;}
.y1b{bottom:609.640500px;}
.ya1{bottom:616.765800px;}
.y74{bottom:617.860800px;}
.y3e{bottom:627.310500px;}
.y1a{bottom:627.640500px;}
.ya0{bottom:634.765800px;}
.y73{bottom:635.860800px;}
.y3d{bottom:645.310500px;}
.y19{bottom:645.640500px;}
.y9f{bottom:652.765800px;}
.y72{bottom:653.860800px;}
.y3c{bottom:663.310500px;}
.y18{bottom:663.640500px;}
.y9e{bottom:670.765800px;}
.y71{bottom:671.860800px;}
.y3b{bottom:681.310500px;}
.y17{bottom:681.640500px;}
.y9d{bottom:688.765800px;}
.y70{bottom:689.860800px;}
.y3a{bottom:699.310500px;}
.y16{bottom:699.640500px;}
.y9c{bottom:706.765800px;}
.y6f{bottom:707.860800px;}
.y39{bottom:717.310500px;}
.y15{bottom:717.640500px;}
.y9b{bottom:724.765800px;}
.y6e{bottom:725.860800px;}
.y38{bottom:735.310500px;}
.y14{bottom:735.640500px;}
.y9a{bottom:742.765800px;}
.y6d{bottom:743.860800px;}
.y37{bottom:753.310500px;}
.y13{bottom:753.640500px;}
.y99{bottom:760.765800px;}
.y6c{bottom:761.860800px;}
.y36{bottom:771.310500px;}
.y12{bottom:771.640500px;}
.y98{bottom:778.765800px;}
.y6b{bottom:779.860800px;}
.y35{bottom:789.310500px;}
.y11{bottom:789.640500px;}
.y97{bottom:796.765800px;}
.y6a{bottom:797.860800px;}
.y34{bottom:807.310500px;}
.y10{bottom:807.640500px;}
.y96{bottom:814.765800px;}
.y69{bottom:815.860800px;}
.y95{bottom:832.765800px;}
.y68{bottom:833.860800px;}
.y94{bottom:850.765800px;}
.y67{bottom:851.860800px;}
.y93{bottom:868.765800px;}
.y66{bottom:869.860800px;}
.y92{bottom:886.765800px;}
.y65{bottom:887.860800px;}
.y91{bottom:904.765800px;}
.y64{bottom:905.860800px;}
.yf{bottom:906.728250px;}
.y90{bottom:922.765800px;}
.y63{bottom:923.860800px;}
.ye{bottom:924.728250px;}
.y8f{bottom:940.765800px;}
.y62{bottom:941.860800px;}
.yd{bottom:951.233250px;}
.y8e{bottom:958.765800px;}
.y61{bottom:959.860800px;}
.y8d{bottom:976.765800px;}
.y60{bottom:977.860800px;}
.y8c{bottom:994.765800px;}
.y5f{bottom:995.860800px;}
.y8b{bottom:1012.765800px;}
.y5e{bottom:1013.860800px;}
.y8a{bottom:1030.765800px;}
.y5d{bottom:1031.860800px;}
.y8{bottom:1033.937100px;}
.y89{bottom:1048.765800px;}
.y5c{bottom:1049.860800px;}
.y88{bottom:1066.765800px;}
.y5b{bottom:1067.860800px;}
.y87{bottom:1084.765800px;}
.y5a{bottom:1085.860800px;}
.y86{bottom:1102.765800px;}
.y59{bottom:1103.860800px;}
.y9{bottom:1149.786000px;}
.yc{bottom:1182.411000px;}
.ya{bottom:1182.552150px;}
.y58{bottom:1182.853200px;}
.yb{bottom:1202.811000px;}
.h5{height:20.400000px;}
.h3{height:24.480000px;}
.h4{height:26.820000px;}
.h2{height:31.680000px;}
.h9{height:37.296000px;}
.hb{height:40.800000px;}
.hc{height:42.060000px;}
.h8{height:44.604000px;}
.ha{height:46.620000px;}
.h7{height:53.640000px;}
.h6{height:85.824000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x8{left:99.233250px;}
.xc{left:102.049500px;}
.x9{left:107.738250px;}
.xf{left:112.041600px;}
.x5{left:166.571850px;}
.x2{left:241.299150px;}
.xd{left:250.866150px;}
.xb{left:457.084500px;}
.xa{left:474.094500px;}
.xe{left:484.086600px;}
.x7{left:688.427100px;}
.x6{left:728.884200px;}
.x4{left:732.319800px;}
.x3{left:736.407300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.533333pt;}
.ls0{letter-spacing:1244.416000pt;}
.ws3{word-spacing:-13.386667pt;}
.ws3f{word-spacing:-13.333333pt;}
.ws2{word-spacing:-8.533333pt;}
.ws1{word-spacing:-8.000000pt;}
.ws37{word-spacing:-4.800000pt;}
.ws36{word-spacing:-4.000000pt;}
.ws71{word-spacing:-3.893333pt;}
.ws38{word-spacing:-3.733333pt;}
.ws79{word-spacing:-3.040000pt;}
.ws1e{word-spacing:-2.666667pt;}
.ws7a{word-spacing:-2.400000pt;}
.ws7d{word-spacing:-2.346667pt;}
.ws3a{word-spacing:-2.186667pt;}
.wsc{word-spacing:-1.866667pt;}
.ws27{word-spacing:-1.706667pt;}
.ws58{word-spacing:-1.546667pt;}
.ws3b{word-spacing:-1.493333pt;}
.ws35{word-spacing:-1.440000pt;}
.ws72{word-spacing:-1.386667pt;}
.wsf{word-spacing:-1.226667pt;}
.ws7{word-spacing:-1.184000pt;}
.ws31{word-spacing:-1.173333pt;}
.ws24{word-spacing:-1.120000pt;}
.ws1f{word-spacing:-1.066667pt;}
.ws3c{word-spacing:-0.960000pt;}
.ws5{word-spacing:-0.896000pt;}
.ws4b{word-spacing:-0.853333pt;}
.ws32{word-spacing:-0.746667pt;}
.ws2f{word-spacing:-0.693333pt;}
.ws3e{word-spacing:-0.640000pt;}
.ws8{word-spacing:-0.533333pt;}
.ws10{word-spacing:-0.426667pt;}
.ws5b{word-spacing:-0.320000pt;}
.ws2a{word-spacing:-0.213333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws39{word-spacing:0.106667pt;}
.ws55{word-spacing:0.160000pt;}
.ws6{word-spacing:0.192000pt;}
.wsa{word-spacing:0.213333pt;}
.ws30{word-spacing:0.373333pt;}
.ws56{word-spacing:0.480000pt;}
.ws2b{word-spacing:0.533333pt;}
.ws2e{word-spacing:0.586667pt;}
.ws1a{word-spacing:0.693333pt;}
.ws49{word-spacing:0.746667pt;}
.ws14{word-spacing:0.960000pt;}
.ws1d{word-spacing:1.120000pt;}
.ws17{word-spacing:1.226667pt;}
.ws16{word-spacing:1.333333pt;}
.ws41{word-spacing:1.440000pt;}
.ws2d{word-spacing:1.706667pt;}
.ws28{word-spacing:2.186667pt;}
.ws23{word-spacing:2.293333pt;}
.ws69{word-spacing:2.720000pt;}
.ws6b{word-spacing:2.826667pt;}
.ws6a{word-spacing:2.933333pt;}
.ws12{word-spacing:2.986667pt;}
.ws5a{word-spacing:3.146667pt;}
.ws1c{word-spacing:3.253333pt;}
.ws74{word-spacing:3.360000pt;}
.ws29{word-spacing:3.466667pt;}
.ws77{word-spacing:3.733333pt;}
.ws6f{word-spacing:3.786667pt;}
.ws45{word-spacing:3.840000pt;}
.ws1b{word-spacing:4.106667pt;}
.ws82{word-spacing:4.213333pt;}
.ws7e{word-spacing:4.266667pt;}
.wse{word-spacing:4.480000pt;}
.ws64{word-spacing:4.640000pt;}
.ws73{word-spacing:4.746667pt;}
.ws70{word-spacing:4.800000pt;}
.ws33{word-spacing:5.013333pt;}
.ws25{word-spacing:5.173333pt;}
.ws26{word-spacing:5.226667pt;}
.ws9{word-spacing:5.280000pt;}
.wsd{word-spacing:5.440000pt;}
.ws59{word-spacing:5.546667pt;}
.ws81{word-spacing:5.600000pt;}
.ws4a{word-spacing:5.706667pt;}
.ws4d{word-spacing:5.973333pt;}
.wsb{word-spacing:6.026667pt;}
.ws57{word-spacing:6.240000pt;}
.ws65{word-spacing:6.346667pt;}
.ws66{word-spacing:6.400000pt;}
.ws18{word-spacing:6.773333pt;}
.ws22{word-spacing:6.933333pt;}
.ws3d{word-spacing:7.040000pt;}
.ws2c{word-spacing:7.200000pt;}
.ws76{word-spacing:7.466667pt;}
.ws21{word-spacing:7.680000pt;}
.ws15{word-spacing:8.053333pt;}
.ws62{word-spacing:8.106667pt;}
.ws5d{word-spacing:8.426667pt;}
.ws78{word-spacing:8.480000pt;}
.ws7f{word-spacing:8.906667pt;}
.ws48{word-spacing:9.653333pt;}
.ws63{word-spacing:9.866667pt;}
.ws5f{word-spacing:10.080000pt;}
.ws19{word-spacing:10.346667pt;}
.ws13{word-spacing:10.666667pt;}
.ws34{word-spacing:10.773333pt;}
.ws7b{word-spacing:10.826667pt;}
.ws6e{word-spacing:11.040000pt;}
.ws6d{word-spacing:11.093333pt;}
.ws61{word-spacing:11.146667pt;}
.ws46{word-spacing:11.253333pt;}
.ws47{word-spacing:11.306667pt;}
.ws53{word-spacing:11.360000pt;}
.ws54{word-spacing:11.413333pt;}
.ws6c{word-spacing:12.800000pt;}
.ws4e{word-spacing:12.960000pt;}
.ws44{word-spacing:13.066667pt;}
.ws7c{word-spacing:13.333333pt;}
.ws67{word-spacing:13.386667pt;}
.ws80{word-spacing:13.973333pt;}
.ws52{word-spacing:14.293333pt;}
.ws60{word-spacing:14.880000pt;}
.ws68{word-spacing:15.306667pt;}
.ws42{word-spacing:15.893333pt;}
.ws20{word-spacing:16.746667pt;}
.ws11{word-spacing:17.600000pt;}
.ws4c{word-spacing:17.973333pt;}
.ws75{word-spacing:18.453333pt;}
.ws43{word-spacing:18.720000pt;}
.ws40{word-spacing:21.920000pt;}
.ws51{word-spacing:22.933333pt;}
.ws5c{word-spacing:24.266667pt;}
.ws5e{word-spacing:25.013333pt;}
.ws83{word-spacing:34.240000pt;}
.ws50{word-spacing:35.360000pt;}
.ws4f{word-spacing:42.133333pt;}
._5{margin-left:-2571.872000pt;}
._7{margin-left:-24.000000pt;}
._8{margin-left:-13.653333pt;}
._9{margin-left:-11.093333pt;}
._3{margin-left:-5.788800pt;}
._4{margin-left:-4.042667pt;}
._2{margin-left:-3.043200pt;}
._0{margin-left:-1.504000pt;}
._1{width:1.084800pt;}
._6{width:2.633600pt;}
._a{width:15.573333pt;}
._b{width:42.400000pt;}
.fs2{font-size:26.666667pt;}
.fs1{font-size:32.000000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:30.740133pt;}
.y7{bottom:43.881867pt;}
.y6{bottom:51.881867pt;}
.y5{bottom:68.544800pt;}
.y4{bottom:78.144800pt;}
.y3{bottom:87.744800pt;}
.y2{bottom:97.344800pt;}
.ybb{bottom:132.236267pt;}
.yba{bottom:148.236267pt;}
.y57{bottom:157.609333pt;}
.y33{bottom:157.902667pt;}
.yb9{bottom:164.236267pt;}
.y56{bottom:173.609333pt;}
.y32{bottom:173.902667pt;}
.yb8{bottom:180.236267pt;}
.y55{bottom:189.609333pt;}
.y31{bottom:189.902667pt;}
.yb7{bottom:196.236267pt;}
.y54{bottom:205.609333pt;}
.y30{bottom:205.902667pt;}
.yb6{bottom:212.236267pt;}
.y53{bottom:221.609333pt;}
.y2f{bottom:221.902667pt;}
.yb5{bottom:228.236267pt;}
.y52{bottom:237.609333pt;}
.y2e{bottom:237.902667pt;}
.yb4{bottom:244.236267pt;}
.y51{bottom:253.609333pt;}
.y2d{bottom:253.902667pt;}
.yb3{bottom:260.236267pt;}
.y50{bottom:269.609333pt;}
.y2c{bottom:269.902667pt;}
.yb2{bottom:276.236267pt;}
.y85{bottom:277.209600pt;}
.y4f{bottom:285.609333pt;}
.y2b{bottom:285.902667pt;}
.yb1{bottom:292.236267pt;}
.y84{bottom:293.209600pt;}
.y4e{bottom:301.609333pt;}
.y2a{bottom:301.902667pt;}
.yb0{bottom:308.236267pt;}
.y83{bottom:309.209600pt;}
.y4d{bottom:317.609333pt;}
.y29{bottom:317.902667pt;}
.yaf{bottom:324.236267pt;}
.y82{bottom:325.209600pt;}
.y4c{bottom:333.609333pt;}
.y28{bottom:333.902667pt;}
.yae{bottom:340.236267pt;}
.y81{bottom:341.209600pt;}
.y4b{bottom:349.609333pt;}
.y27{bottom:349.902667pt;}
.yad{bottom:356.236267pt;}
.y80{bottom:357.209600pt;}
.y4a{bottom:365.609333pt;}
.y26{bottom:365.902667pt;}
.yac{bottom:372.236267pt;}
.y7f{bottom:373.209600pt;}
.y49{bottom:381.609333pt;}
.y25{bottom:381.902667pt;}
.yab{bottom:388.236267pt;}
.y7e{bottom:389.209600pt;}
.y48{bottom:397.609333pt;}
.y24{bottom:397.902667pt;}
.yaa{bottom:404.236267pt;}
.y7d{bottom:405.209600pt;}
.y47{bottom:413.609333pt;}
.y23{bottom:413.902667pt;}
.ya9{bottom:420.236267pt;}
.y7c{bottom:421.209600pt;}
.y46{bottom:429.609333pt;}
.y22{bottom:429.902667pt;}
.ya8{bottom:436.236267pt;}
.y7b{bottom:437.209600pt;}
.y45{bottom:445.609333pt;}
.y21{bottom:445.902667pt;}
.ya7{bottom:452.236267pt;}
.y7a{bottom:453.209600pt;}
.y44{bottom:461.609333pt;}
.y20{bottom:461.902667pt;}
.ya6{bottom:468.236267pt;}
.y79{bottom:469.209600pt;}
.y43{bottom:477.609333pt;}
.y1f{bottom:477.902667pt;}
.ya5{bottom:484.236267pt;}
.y78{bottom:485.209600pt;}
.y42{bottom:493.609333pt;}
.y1e{bottom:493.902667pt;}
.ya4{bottom:500.236267pt;}
.y77{bottom:501.209600pt;}
.y41{bottom:509.609333pt;}
.y1d{bottom:509.902667pt;}
.ya3{bottom:516.236267pt;}
.y76{bottom:517.209600pt;}
.y40{bottom:525.609333pt;}
.y1c{bottom:525.902667pt;}
.ya2{bottom:532.236267pt;}
.y75{bottom:533.209600pt;}
.y3f{bottom:541.609333pt;}
.y1b{bottom:541.902667pt;}
.ya1{bottom:548.236267pt;}
.y74{bottom:549.209600pt;}
.y3e{bottom:557.609333pt;}
.y1a{bottom:557.902667pt;}
.ya0{bottom:564.236267pt;}
.y73{bottom:565.209600pt;}
.y3d{bottom:573.609333pt;}
.y19{bottom:573.902667pt;}
.y9f{bottom:580.236267pt;}
.y72{bottom:581.209600pt;}
.y3c{bottom:589.609333pt;}
.y18{bottom:589.902667pt;}
.y9e{bottom:596.236267pt;}
.y71{bottom:597.209600pt;}
.y3b{bottom:605.609333pt;}
.y17{bottom:605.902667pt;}
.y9d{bottom:612.236267pt;}
.y70{bottom:613.209600pt;}
.y3a{bottom:621.609333pt;}
.y16{bottom:621.902667pt;}
.y9c{bottom:628.236267pt;}
.y6f{bottom:629.209600pt;}
.y39{bottom:637.609333pt;}
.y15{bottom:637.902667pt;}
.y9b{bottom:644.236267pt;}
.y6e{bottom:645.209600pt;}
.y38{bottom:653.609333pt;}
.y14{bottom:653.902667pt;}
.y9a{bottom:660.236267pt;}
.y6d{bottom:661.209600pt;}
.y37{bottom:669.609333pt;}
.y13{bottom:669.902667pt;}
.y99{bottom:676.236267pt;}
.y6c{bottom:677.209600pt;}
.y36{bottom:685.609333pt;}
.y12{bottom:685.902667pt;}
.y98{bottom:692.236267pt;}
.y6b{bottom:693.209600pt;}
.y35{bottom:701.609333pt;}
.y11{bottom:701.902667pt;}
.y97{bottom:708.236267pt;}
.y6a{bottom:709.209600pt;}
.y34{bottom:717.609333pt;}
.y10{bottom:717.902667pt;}
.y96{bottom:724.236267pt;}
.y69{bottom:725.209600pt;}
.y95{bottom:740.236267pt;}
.y68{bottom:741.209600pt;}
.y94{bottom:756.236267pt;}
.y67{bottom:757.209600pt;}
.y93{bottom:772.236267pt;}
.y66{bottom:773.209600pt;}
.y92{bottom:788.236267pt;}
.y65{bottom:789.209600pt;}
.y91{bottom:804.236267pt;}
.y64{bottom:805.209600pt;}
.yf{bottom:805.980667pt;}
.y90{bottom:820.236267pt;}
.y63{bottom:821.209600pt;}
.ye{bottom:821.980667pt;}
.y8f{bottom:836.236267pt;}
.y62{bottom:837.209600pt;}
.yd{bottom:845.540667pt;}
.y8e{bottom:852.236267pt;}
.y61{bottom:853.209600pt;}
.y8d{bottom:868.236267pt;}
.y60{bottom:869.209600pt;}
.y8c{bottom:884.236267pt;}
.y5f{bottom:885.209600pt;}
.y8b{bottom:900.236267pt;}
.y5e{bottom:901.209600pt;}
.y8a{bottom:916.236267pt;}
.y5d{bottom:917.209600pt;}
.y8{bottom:919.055200pt;}
.y89{bottom:932.236267pt;}
.y5c{bottom:933.209600pt;}
.y88{bottom:948.236267pt;}
.y5b{bottom:949.209600pt;}
.y87{bottom:964.236267pt;}
.y5a{bottom:965.209600pt;}
.y86{bottom:980.236267pt;}
.y59{bottom:981.209600pt;}
.y9{bottom:1022.032000pt;}
.yc{bottom:1051.032000pt;}
.ya{bottom:1051.157467pt;}
.y58{bottom:1051.425067pt;}
.yb{bottom:1069.165333pt;}
.h5{height:18.133333pt;}
.h3{height:21.760000pt;}
.h4{height:23.840000pt;}
.h2{height:28.160000pt;}
.h9{height:33.152000pt;}
.hb{height:36.266667pt;}
.hc{height:37.386667pt;}
.h8{height:39.648000pt;}
.ha{height:41.440000pt;}
.h7{height:47.680000pt;}
.h6{height:76.288000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x8{left:88.207333pt;}
.xc{left:90.710667pt;}
.x9{left:95.767333pt;}
.xf{left:99.592533pt;}
.x5{left:148.063867pt;}
.x2{left:214.488133pt;}
.xd{left:222.992133pt;}
.xb{left:406.297333pt;}
.xa{left:421.417333pt;}
.xe{left:430.299200pt;}
.x7{left:611.935200pt;}
.x6{left:647.897067pt;}
.x4{left:650.950933pt;}
.x3{left:654.584267pt;}
}




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