
    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_4d422805550933018e38d10b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.754395;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_be318ece9d891aaaa4d2bec5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_853a4fa518c673cf34ba6ccf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_64f48d5a8c3ec77fb443728e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_3b367afc80b2799862018dd1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_5ec101f88f2d7d28e09693b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_daaace7d249144288b6ed20a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_2c38ceffc8f04091a09f330f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_94630a71ec4254ea081500a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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;}
.ls10{letter-spacing:-1.044000px;}
.ls5{letter-spacing:-0.378600px;}
.ls6{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.341400px;}
.ls2{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.028080px;}
.ls11{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.180000px;}
.lse{letter-spacing:0.208080px;}
.lsf{letter-spacing:0.252720px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.378600px;}
.lsa{letter-spacing:0.485280px;}
.ls9{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.540000px;}
.ls8{letter-spacing:22.860000px;}
.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;}
}
.ws1{word-spacing:-24.300000px;}
.ws0{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.312720px;}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.041280px;}
.ws8{word-spacing:-20.718600px;}
.ws6{word-spacing:-20.700000px;}
.ws4{word-spacing:-20.681400px;}
.ws9{word-spacing:-20.016000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-5.298480px;}
._22{margin-left:-3.978720px;}
._12{margin-left:-2.779920px;}
._0{margin-left:-1.263600px;}
._1{width:1.241040px;}
._c{width:2.621760px;}
._11{width:4.033200px;}
._8{width:5.391360px;}
._7{width:6.888720px;}
._13{width:8.551440px;}
._29{width:9.600480px;}
._21{width:11.203920px;}
._20{width:12.258000px;}
._17{width:13.965600px;}
._19{width:15.098400px;}
._18{width:16.407360px;}
._1f{width:18.027360px;}
._10{width:19.038240px;}
._f{width:20.049120px;}
._b{width:23.081760px;}
._a{width:24.261120px;}
._2{width:25.693200px;}
._9{width:26.956800px;}
._5{width:28.253760px;}
._4{width:29.619120px;}
._1e{width:30.645840px;}
._1c{width:32.211360px;}
._1d{width:33.752640px;}
._6{width:36.058320px;}
._2b{width:37.234080px;}
._14{width:38.581920px;}
._15{width:39.677040px;}
._1a{width:40.856400px;}
._16{width:41.961840px;}
._2a{width:44.899920px;}
._23{width:46.584720px;}
._24{width:47.953200px;}
._1b{width:60.568560px;}
._e{width:62.169120px;}
._25{width:77.248080px;}
._28{width:101.761920px;}
._d{width:113.134320px;}
._27{width:146.947200px;}
._26{width:202.765680px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y4{bottom:-14.580000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.680000px;}
.y8{bottom:5.400000px;}
.y7{bottom:6.300000px;}
.y9{bottom:14.400000px;}
.y47{bottom:16.560000px;}
.y6c{bottom:16.590000px;}
.y45{bottom:16.740000px;}
.y63{bottom:19.440000px;}
.y6{bottom:34.200000px;}
.y46{bottom:52.740000px;}
.y6b{bottom:52.770000px;}
.y44{bottom:52.920000px;}
.y4a{bottom:52.965000px;}
.y60{bottom:89.100000px;}
.y26{bottom:99.396000px;}
.y5e{bottom:113.616000px;}
.y42{bottom:117.396000px;}
.y25{bottom:135.576000px;}
.y79{bottom:142.416000px;}
.y5d{bottom:149.796000px;}
.y41{bottom:153.570000px;}
.y24{bottom:171.750000px;}
.y78{bottom:178.590000px;}
.y5c{bottom:185.970000px;}
.y40{bottom:189.750000px;}
.y23{bottom:207.930000px;}
.y77{bottom:214.950000px;}
.y5b{bottom:222.330000px;}
.y3f{bottom:225.930000px;}
.y22{bottom:244.290000px;}
.y76{bottom:251.130000px;}
.y5a{bottom:258.510000px;}
.y3e{bottom:262.290000px;}
.y21{bottom:280.470000px;}
.y75{bottom:287.310000px;}
.y59{bottom:294.690000px;}
.y3d{bottom:298.470000px;}
.y20{bottom:316.650000px;}
.y74{bottom:323.490000px;}
.y58{bottom:330.870000px;}
.y3c{bottom:334.650000px;}
.y1f{bottom:352.875000px;}
.y73{bottom:359.895000px;}
.y57{bottom:367.095000px;}
.y3b{bottom:370.875000px;}
.y1e{bottom:389.235000px;}
.y72{bottom:396.075000px;}
.y56{bottom:403.455000px;}
.y3a{bottom:407.235000px;}
.y1d{bottom:425.415000px;}
.y71{bottom:432.255000px;}
.y55{bottom:439.635000px;}
.y39{bottom:443.415000px;}
.y70{bottom:452.595000px;}
.y1c{bottom:461.595000px;}
.y54{bottom:475.815000px;}
.y38{bottom:479.595000px;}
.y6f{bottom:489.675000px;}
.y1b{bottom:497.775000px;}
.y53{bottom:511.995000px;}
.y37{bottom:515.775000px;}
.y6e{bottom:526.575000px;}
.y1a{bottom:533.955000px;}
.y52{bottom:548.355000px;}
.y36{bottom:551.955000px;}
.y6d{bottom:563.475000px;}
.y19{bottom:570.315000px;}
.y51{bottom:584.535000px;}
.y35{bottom:588.315000px;}
.y6a{bottom:600.555000px;}
.y18{bottom:606.525000px;}
.y50{bottom:620.745000px;}
.y34{bottom:624.525000px;}
.y17{bottom:642.705000px;}
.y4f{bottom:656.925000px;}
.y33{bottom:660.705000px;}
.y16{bottom:678.885000px;}
.y69{bottom:690.405000px;}
.y4e{bottom:693.285000px;}
.y32{bottom:696.885000px;}
.y15{bottom:715.245000px;}
.y68{bottom:726.585000px;}
.y4d{bottom:729.465000px;}
.y31{bottom:733.245000px;}
.y14{bottom:751.425000px;}
.y67{bottom:762.765000px;}
.y4c{bottom:765.645000px;}
.y30{bottom:769.425000px;}
.y13{bottom:787.605000px;}
.y66{bottom:798.945000px;}
.y4b{bottom:801.825000px;}
.y2f{bottom:805.605000px;}
.y49{bottom:822.165000px;}
.y12{bottom:823.785000px;}
.y65{bottom:835.305000px;}
.y2e{bottom:841.785000px;}
.y11{bottom:860.145000px;}
.y64{bottom:871.530000px;}
.y2d{bottom:878.190000px;}
.y62{bottom:891.870000px;}
.y48{bottom:895.470000px;}
.y10{bottom:896.370000px;}
.y2c{bottom:914.370000px;}
.y61{bottom:931.650000px;}
.yf{bottom:932.550000px;}
.y2b{bottom:950.550000px;}
.ye{bottom:968.730000px;}
.y2a{bottom:986.730000px;}
.yd{bottom:1004.910000px;}
.y5f{bottom:1005.630000px;}
.y29{bottom:1022.910000px;}
.yc{bottom:1041.270000px;}
.y43{bottom:1041.810000px;}
.y28{bottom:1059.270000px;}
.yb{bottom:1077.450000px;}
.y27{bottom:1095.450000px;}
.ya{bottom:1131.630000px;}
.y5{bottom:1155.960000px;}
.y3{bottom:1177.020000px;}
.y1{bottom:1194.300000px;}
.h4{height:6.480000px;}
.h2{height:25.740000px;}
.h5{height:27.720000px;}
.h13{height:36.180000px;}
.h14{height:36.360000px;}
.h15{height:39.060000px;}
.h8{height:47.344922px;}
.he{height:58.819922px;}
.h11{height:59.436914px;}
.h3{height:62.028281px;}
.hc{height:64.208320px;}
.hf{height:72.360000px;}
.h16{height:72.396000px;}
.hd{height:72.540000px;}
.h10{height:72.576000px;}
.hb{height:82.635820px;}
.ha{height:82.676953px;}
.h6{height:83.787539px;}
.h9{height:84.898125px;}
.h7{height:96.508125px;}
.h12{height:108.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:35.496000px;}
.wc{width:36.720000px;}
.w12{width:44.100000px;}
.wf{width:58.500000px;}
.w6{width:63.756000px;}
.w10{width:86.976000px;}
.wd{width:94.860000px;}
.w8{width:98.640000px;}
.we{width:120.816000px;}
.w11{width:131.976000px;}
.wa{width:169.230000px;}
.w15{width:176.070000px;}
.w14{width:196.950000px;}
.wb{width:198.570000px;}
.w9{width:211.890000px;}
.w13{width:216.030000px;}
.w3{width:404.205000px;}
.w2{width:425.235000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x7{left:17.100000px;}
.x9{left:19.800000px;}
.x1{left:31.860000px;}
.x6{left:84.959987px;}
.x13{left:91.115987px;}
.x4{left:98.850000px;}
.x2{left:110.376000px;}
.x18{left:122.076000px;}
.xa{left:127.475987px;}
.x1c{left:129.816000px;}
.xb{left:145.475987px;}
.x1d{left:167.250000px;}
.x23{left:173.730000px;}
.xf{left:204.149987px;}
.x10{left:207.749987px;}
.x19{left:221.430000px;}
.xc{left:255.629987px;}
.x1e{left:262.830000px;}
.x11{left:264.089987px;}
.xe{left:268.769987px;}
.x14{left:270.389987px;}
.x12{left:310.214987px;}
.x15{left:373.574987px;}
.x16{left:378.434987px;}
.x1f{left:384.555000px;}
.x24{left:390.495000px;}
.x17{left:392.654987px;}
.x1a{left:434.235000px;}
.x20{left:443.955000px;}
.xd{left:446.474987px;}
.x3{left:457.095000px;}
.x21{left:531.645000px;}
.x25{left:588.165000px;}
.x1b{left:604.365000px;}
.x22{left:631.185000px;}
.x8{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.928000pt;}
.ls5{letter-spacing:-0.336533pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.303467pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.024960pt;}
.ls11{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.184960pt;}
.lsf{letter-spacing:0.224640pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.336533pt;}
.lsa{letter-spacing:0.431360pt;}
.ls9{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.480000pt;}
.ls8{letter-spacing:20.320000pt;}
.ws1{word-spacing:-21.600000pt;}
.ws0{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.wsa{word-spacing:-18.944640pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.703360pt;}
.ws8{word-spacing:-18.416533pt;}
.ws6{word-spacing:-18.400000pt;}
.ws4{word-spacing:-18.383467pt;}
.ws9{word-spacing:-17.792000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-4.709760pt;}
._22{margin-left:-3.536640pt;}
._12{margin-left:-2.471040pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.103147pt;}
._c{width:2.330453pt;}
._11{width:3.585067pt;}
._8{width:4.792320pt;}
._7{width:6.123307pt;}
._13{width:7.601280pt;}
._29{width:8.533760pt;}
._21{width:9.959040pt;}
._20{width:10.896000pt;}
._17{width:12.413867pt;}
._19{width:13.420800pt;}
._18{width:14.584320pt;}
._1f{width:16.024320pt;}
._10{width:16.922880pt;}
._f{width:17.821440pt;}
._b{width:20.517120pt;}
._a{width:21.565440pt;}
._2{width:22.838400pt;}
._9{width:23.961600pt;}
._5{width:25.114453pt;}
._4{width:26.328107pt;}
._1e{width:27.240747pt;}
._1c{width:28.632320pt;}
._1d{width:30.002347pt;}
._6{width:32.051840pt;}
._2b{width:33.096960pt;}
._14{width:34.295040pt;}
._15{width:35.268480pt;}
._1a{width:36.316800pt;}
._16{width:37.299413pt;}
._2a{width:39.911040pt;}
._23{width:41.408640pt;}
._24{width:42.625067pt;}
._1b{width:53.838720pt;}
._e{width:55.261440pt;}
._25{width:68.664960pt;}
._28{width:90.455040pt;}
._d{width:100.563840pt;}
._27{width:130.619733pt;}
._26{width:180.236160pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y4{bottom:-12.960000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.160000pt;}
.y8{bottom:4.800000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:12.800000pt;}
.y47{bottom:14.720000pt;}
.y6c{bottom:14.746667pt;}
.y45{bottom:14.880000pt;}
.y63{bottom:17.280000pt;}
.y6{bottom:30.400000pt;}
.y46{bottom:46.880000pt;}
.y6b{bottom:46.906667pt;}
.y44{bottom:47.040000pt;}
.y4a{bottom:47.080000pt;}
.y60{bottom:79.200000pt;}
.y26{bottom:88.352000pt;}
.y5e{bottom:100.992000pt;}
.y42{bottom:104.352000pt;}
.y25{bottom:120.512000pt;}
.y79{bottom:126.592000pt;}
.y5d{bottom:133.152000pt;}
.y41{bottom:136.506667pt;}
.y24{bottom:152.666667pt;}
.y78{bottom:158.746667pt;}
.y5c{bottom:165.306667pt;}
.y40{bottom:168.666667pt;}
.y23{bottom:184.826667pt;}
.y77{bottom:191.066667pt;}
.y5b{bottom:197.626667pt;}
.y3f{bottom:200.826667pt;}
.y22{bottom:217.146667pt;}
.y76{bottom:223.226667pt;}
.y5a{bottom:229.786667pt;}
.y3e{bottom:233.146667pt;}
.y21{bottom:249.306667pt;}
.y75{bottom:255.386667pt;}
.y59{bottom:261.946667pt;}
.y3d{bottom:265.306667pt;}
.y20{bottom:281.466667pt;}
.y74{bottom:287.546667pt;}
.y58{bottom:294.106667pt;}
.y3c{bottom:297.466667pt;}
.y1f{bottom:313.666667pt;}
.y73{bottom:319.906667pt;}
.y57{bottom:326.306667pt;}
.y3b{bottom:329.666667pt;}
.y1e{bottom:345.986667pt;}
.y72{bottom:352.066667pt;}
.y56{bottom:358.626667pt;}
.y3a{bottom:361.986667pt;}
.y1d{bottom:378.146667pt;}
.y71{bottom:384.226667pt;}
.y55{bottom:390.786667pt;}
.y39{bottom:394.146667pt;}
.y70{bottom:402.306667pt;}
.y1c{bottom:410.306667pt;}
.y54{bottom:422.946667pt;}
.y38{bottom:426.306667pt;}
.y6f{bottom:435.266667pt;}
.y1b{bottom:442.466667pt;}
.y53{bottom:455.106667pt;}
.y37{bottom:458.466667pt;}
.y6e{bottom:468.066667pt;}
.y1a{bottom:474.626667pt;}
.y52{bottom:487.426667pt;}
.y36{bottom:490.626667pt;}
.y6d{bottom:500.866667pt;}
.y19{bottom:506.946667pt;}
.y51{bottom:519.586667pt;}
.y35{bottom:522.946667pt;}
.y6a{bottom:533.826667pt;}
.y18{bottom:539.133333pt;}
.y50{bottom:551.773333pt;}
.y34{bottom:555.133333pt;}
.y17{bottom:571.293333pt;}
.y4f{bottom:583.933333pt;}
.y33{bottom:587.293333pt;}
.y16{bottom:603.453333pt;}
.y69{bottom:613.693333pt;}
.y4e{bottom:616.253333pt;}
.y32{bottom:619.453333pt;}
.y15{bottom:635.773333pt;}
.y68{bottom:645.853333pt;}
.y4d{bottom:648.413333pt;}
.y31{bottom:651.773333pt;}
.y14{bottom:667.933333pt;}
.y67{bottom:678.013333pt;}
.y4c{bottom:680.573333pt;}
.y30{bottom:683.933333pt;}
.y13{bottom:700.093333pt;}
.y66{bottom:710.173333pt;}
.y4b{bottom:712.733333pt;}
.y2f{bottom:716.093333pt;}
.y49{bottom:730.813333pt;}
.y12{bottom:732.253333pt;}
.y65{bottom:742.493333pt;}
.y2e{bottom:748.253333pt;}
.y11{bottom:764.573333pt;}
.y64{bottom:774.693333pt;}
.y2d{bottom:780.613333pt;}
.y62{bottom:792.773333pt;}
.y48{bottom:795.973333pt;}
.y10{bottom:796.773333pt;}
.y2c{bottom:812.773333pt;}
.y61{bottom:828.133333pt;}
.yf{bottom:828.933333pt;}
.y2b{bottom:844.933333pt;}
.ye{bottom:861.093333pt;}
.y2a{bottom:877.093333pt;}
.yd{bottom:893.253333pt;}
.y5f{bottom:893.893333pt;}
.y29{bottom:909.253333pt;}
.yc{bottom:925.573333pt;}
.y43{bottom:926.053333pt;}
.y28{bottom:941.573333pt;}
.yb{bottom:957.733333pt;}
.y27{bottom:973.733333pt;}
.ya{bottom:1005.893333pt;}
.y5{bottom:1027.520000pt;}
.y3{bottom:1046.240000pt;}
.y1{bottom:1061.600000pt;}
.h4{height:5.760000pt;}
.h2{height:22.880000pt;}
.h5{height:24.640000pt;}
.h13{height:32.160000pt;}
.h14{height:32.320000pt;}
.h15{height:34.720000pt;}
.h8{height:42.084375pt;}
.he{height:52.284375pt;}
.h11{height:52.832812pt;}
.h3{height:55.136250pt;}
.hc{height:57.074062pt;}
.hf{height:64.320000pt;}
.h16{height:64.352000pt;}
.hd{height:64.480000pt;}
.h10{height:64.512000pt;}
.hb{height:73.454062pt;}
.ha{height:73.490625pt;}
.h6{height:74.477812pt;}
.h9{height:75.465000pt;}
.h7{height:85.785000pt;}
.h12{height:96.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:31.552000pt;}
.wc{width:32.640000pt;}
.w12{width:39.200000pt;}
.wf{width:52.000000pt;}
.w6{width:56.672000pt;}
.w10{width:77.312000pt;}
.wd{width:84.320000pt;}
.w8{width:87.680000pt;}
.we{width:107.392000pt;}
.w11{width:117.312000pt;}
.wa{width:150.426667pt;}
.w15{width:156.506667pt;}
.w14{width:175.066667pt;}
.wb{width:176.506667pt;}
.w9{width:188.346667pt;}
.w13{width:192.026667pt;}
.w3{width:359.293333pt;}
.w2{width:377.986667pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x7{left:15.200000pt;}
.x9{left:17.600000pt;}
.x1{left:28.320000pt;}
.x6{left:75.519988pt;}
.x13{left:80.991988pt;}
.x4{left:87.866667pt;}
.x2{left:98.112000pt;}
.x18{left:108.512000pt;}
.xa{left:113.311988pt;}
.x1c{left:115.392000pt;}
.xb{left:129.311988pt;}
.x1d{left:148.666667pt;}
.x23{left:154.426667pt;}
.xf{left:181.466655pt;}
.x10{left:184.666655pt;}
.x19{left:196.826667pt;}
.xc{left:227.226655pt;}
.x1e{left:233.626667pt;}
.x11{left:234.746655pt;}
.xe{left:238.906655pt;}
.x14{left:240.346655pt;}
.x12{left:275.746655pt;}
.x15{left:332.066655pt;}
.x16{left:336.386655pt;}
.x1f{left:341.826667pt;}
.x24{left:347.106667pt;}
.x17{left:349.026655pt;}
.x1a{left:385.986667pt;}
.x20{left:394.626667pt;}
.xd{left:396.866655pt;}
.x3{left:406.306667pt;}
.x21{left:472.573333pt;}
.x25{left:522.813333pt;}
.x1b{left:537.213333pt;}
.x22{left:561.053333pt;}
.x8{left:708.933333pt;}
}




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