
    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_20d8ceb0222834c0a81f5f96.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1c34e1f42783ead4045f65ef.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_78ee4fb47f26df32c552b77f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dd8f6390c516d98279a82d9a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_ba66c77268e5b4ae1c390f70.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_ed74bfa9a45edee8a543600e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_c0a85598a6b23b5b7989543d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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);}
.v1{vertical-align:-71.280000px;}
.v2{vertical-align:-60.600000px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-1.854000px;}
.ls30{letter-spacing:-1.440000px;}
.ls22{letter-spacing:-1.026000px;}
.ls25{letter-spacing:-0.876000px;}
.ls24{letter-spacing:-0.870000px;}
.ls12{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.684000px;}
.ls2e{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.269400px;}
.ls1c{letter-spacing:-0.262200px;}
.lsf{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.169800px;}
.ls1f{letter-spacing:-0.158400px;}
.ls39{letter-spacing:-0.147000px;}
.ls11{letter-spacing:-0.090000px;}
.ls10{letter-spacing:-0.054000px;}
.lsb{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.005754px;}
.ls3{letter-spacing:0.018000px;}
.ls3a{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.106800px;}
.ls3b{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.109200px;}
.ls2c{letter-spacing:0.109440px;}
.ls37{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.198600px;}
.ls1b{letter-spacing:0.201600px;}
.ls0{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.269400px;}
.ls1e{letter-spacing:0.308400px;}
.ls1{letter-spacing:0.360000px;}
.ls34{letter-spacing:2.160000px;}
.ls33{letter-spacing:2.880000px;}
.ls26{letter-spacing:3.600000px;}
.ls2b{letter-spacing:5.760000px;}
.ls5{letter-spacing:11.700000px;}
.ls7{letter-spacing:12.420000px;}
.ls6{letter-spacing:13.140000px;}
.ls4{letter-spacing:14.580000px;}
.ls23{letter-spacing:17.280000px;}
.ls2{letter-spacing:18.900000px;}
.ls21{letter-spacing:20.160000px;}
.ls27{letter-spacing:21.600000px;}
.ls20{letter-spacing:22.320000px;}
.ls16{letter-spacing:23.760000px;}
.ls36{letter-spacing:31.860000px;}
.ls2a{letter-spacing:33.120000px;}
.ls38{letter-spacing:33.300000px;}
.ls18{letter-spacing:45.360000px;}
.ls19{letter-spacing:46.080000px;}
.ls17{letter-spacing:80.640000px;}
.ls13{letter-spacing:93.600000px;}
.ls31{letter-spacing:119.081280px;}
.ls2d{letter-spacing:121.961280px;}
.ls8{letter-spacing:175.140000px;}
.ls32{letter-spacing:203.760000px;}
.ls35{letter-spacing:719.616000px;}
.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;}
}
.ws10{word-spacing:-16.868400px;}
.wse{word-spacing:-16.761600px;}
.wsf{word-spacing:-16.669200px;}
.ws12{word-spacing:-16.565754px;}
.wsb{word-spacing:-16.560000px;}
.ws19{word-spacing:-16.413000px;}
.ws11{word-spacing:-16.401600px;}
.ws16{word-spacing:-16.390200px;}
.ws13{word-spacing:-16.297800px;}
.ws17{word-spacing:-15.948000px;}
.wsc{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.690000px;}
.ws15{word-spacing:-15.684000px;}
.ws0{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.120000px;}
.ws1b{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.590000px;}
.ws6{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.446000px;}
.ws9{word-spacing:-13.410000px;}
.ws8{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.790600px;}
.ws4{word-spacing:-11.700000px;}
.wsd{word-spacing:0.000000px;}
._18{margin-left:-3.520800px;}
._17{margin-left:-2.517120px;}
._1{margin-left:-1.077360px;}
._0{width:1.180080px;}
._6{width:2.515920px;}
._e{width:4.428000px;}
._10{width:5.616000px;}
._f{width:6.750000px;}
._a{width:8.100000px;}
._b{width:10.044000px;}
._8{width:11.340000px;}
._4{width:12.486000px;}
._28{width:13.509360px;}
._5{width:14.610000px;}
._9{width:16.359360px;}
._2{width:18.360000px;}
._3{width:19.783920px;}
._19{width:21.654000px;}
._29{width:23.647680px;}
._2f{width:25.669920px;}
._2a{width:26.827200px;}
._7{width:27.918000px;}
._24{width:28.921680px;}
._1a{width:29.966640px;}
._11{width:30.996000px;}
._26{width:32.226000px;}
._39{width:34.016880px;}
._c{width:35.046000px;}
._1c{width:36.582000px;}
._1d{width:37.619280px;}
._2e{width:38.750400px;}
._35{width:39.810240px;}
._15{width:41.002560px;}
._16{width:42.174240px;}
._3d{width:43.599600px;}
._2b{width:45.667440px;}
._27{width:47.162880px;}
._36{width:49.011360px;}
._21{width:50.160480px;}
._20{width:51.358320px;}
._d{width:52.650000px;}
._34{width:56.785200px;}
._3b{width:59.145600px;}
._37{width:60.370560px;}
._2d{width:62.398080px;}
._25{width:63.961920px;}
._32{width:65.143680px;}
._31{width:66.240000px;}
._2c{width:69.022080px;}
._3a{width:70.278960px;}
._13{width:72.665280px;}
._12{width:73.725120px;}
._38{width:77.103360px;}
._22{width:78.229440px;}
._23{width:79.951680px;}
._33{width:84.900000px;}
._14{width:86.405760px;}
._30{width:90.471360px;}
._1b{width:91.477440px;}
._1e{width:92.669760px;}
._1f{width:94.112400px;}
._3c{width:97.372800px;}
._3e{width:202.945920px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.880000px;}
.y55{bottom:90.360000px;}
.y2e{bottom:92.160000px;}
.y7a{bottom:94.860000px;}
.y58{bottom:106.416000px;}
.y54{bottom:109.476000px;}
.y2d{bottom:111.096000px;}
.y79{bottom:113.796000px;}
.y57{bottom:125.496000px;}
.y53{bottom:128.376000px;}
.y2c{bottom:130.176000px;}
.y78{bottom:132.876000px;}
.y56{bottom:140.796000px;}
.y52{bottom:147.456000px;}
.y2b{bottom:149.076000px;}
.y77{bottom:151.770000px;}
.y80{bottom:160.050000px;}
.y51{bottom:166.350000px;}
.y2a{bottom:168.150000px;}
.y76{bottom:170.850000px;}
.y7f{bottom:173.910000px;}
.y50{bottom:185.250000px;}
.y29{bottom:187.050000px;}
.y7e{bottom:188.310000px;}
.y75{bottom:189.750000px;}
.y4f{bottom:204.330000px;}
.y7d{bottom:205.590000px;}
.y74{bottom:208.650000px;}
.y7c{bottom:222.510000px;}
.y4e{bottom:223.230000px;}
.y28{bottom:223.770000px;}
.y73{bottom:227.730000px;}
.y27{bottom:237.990000px;}
.y4d{bottom:242.310000px;}
.y72{bottom:246.630000px;}
.y26{bottom:253.650000px;}
.y4c{bottom:261.210000px;}
.y62{bottom:264.090000px;}
.y71{bottom:265.710000px;}
.y25{bottom:269.130000px;}
.y4b{bottom:280.155000px;}
.y61{bottom:283.215000px;}
.y24{bottom:284.655000px;}
.y4a{bottom:299.235000px;}
.y23{bottom:300.135000px;}
.y60{bottom:302.115000px;}
.y70{bottom:303.555000px;}
.y22{bottom:315.795000px;}
.y49{bottom:318.135000px;}
.y5f{bottom:321.015000px;}
.y6f{bottom:322.635000px;}
.y21{bottom:331.275000px;}
.y48{bottom:337.215000px;}
.y5e{bottom:340.095000px;}
.y6e{bottom:341.535000px;}
.y20{bottom:346.755000px;}
.y47{bottom:356.115000px;}
.y5d{bottom:358.995000px;}
.y6d{bottom:360.615000px;}
.y1f{bottom:362.235000px;}
.y46{bottom:375.195000px;}
.y1e{bottom:377.895000px;}
.y5c{bottom:378.075000px;}
.y6c{bottom:379.515000px;}
.y1d{bottom:393.375000px;}
.y45{bottom:394.095000px;}
.y5b{bottom:396.975000px;}
.y6b{bottom:398.415000px;}
.y1c{bottom:408.855000px;}
.y44{bottom:412.995000px;}
.y5a{bottom:416.055000px;}
.y6a{bottom:417.495000px;}
.y1b{bottom:424.335000px;}
.y59{bottom:431.355000px;}
.y43{bottom:432.075000px;}
.y69{bottom:436.395000px;}
.y1a{bottom:439.995000px;}
.y42{bottom:450.975000px;}
.y7b{bottom:455.145000px;}
.y19{bottom:455.505000px;}
.y41{bottom:470.085000px;}
.y18{bottom:470.985000px;}
.y68{bottom:474.405000px;}
.y17{bottom:486.465000px;}
.y40{bottom:488.985000px;}
.y67{bottom:493.305000px;}
.y16{bottom:501.945000px;}
.y3f{bottom:507.885000px;}
.y66{bottom:512.385000px;}
.y15{bottom:517.605000px;}
.y3e{bottom:526.965000px;}
.y65{bottom:531.285000px;}
.y14{bottom:533.085000px;}
.y3d{bottom:545.865000px;}
.y13{bottom:548.565000px;}
.y64{bottom:550.365000px;}
.y12{bottom:564.045000px;}
.y3c{bottom:564.945000px;}
.y63{bottom:565.665000px;}
.y11{bottom:579.705000px;}
.y3b{bottom:583.845000px;}
.y10{bottom:595.185000px;}
.y3a{bottom:602.745000px;}
.yf{bottom:610.665000px;}
.y39{bottom:621.825000px;}
.ye{bottom:626.145000px;}
.y38{bottom:640.770000px;}
.yd{bottom:641.850000px;}
.yc{bottom:657.330000px;}
.y37{bottom:659.850000px;}
.yb{bottom:672.810000px;}
.y36{bottom:678.750000px;}
.ya{bottom:688.290000px;}
.y35{bottom:697.650000px;}
.y9{bottom:704.670000px;}
.y34{bottom:716.730000px;}
.y8{bottom:723.570000px;}
.y33{bottom:735.630000px;}
.y7{bottom:742.650000px;}
.y32{bottom:754.710000px;}
.y6{bottom:761.550000px;}
.y31{bottom:773.610000px;}
.y5{bottom:777.570000px;}
.y4{bottom:782.790000px;}
.y30{bottom:792.690000px;}
.y3{bottom:796.650000px;}
.y2f{bottom:824.580000px;}
.y1{bottom:825.840000px;}
.h5{height:12.335625px;}
.h9{height:39.049805px;}
.h4{height:47.344922px;}
.ha{height:47.901094px;}
.h7{height:52.998047px;}
.h8{height:54.421875px;}
.he{height:58.621992px;}
.hc{height:58.833281px;}
.h2{height:60.226875px;}
.hb{height:65.010937px;}
.h6{height:66.757500px;}
.hd{height:68.084282px;}
.h3{height:70.664062px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.459991px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x3{left:84.995991px;}
.x4{left:88.955991px;}
.x1{left:98.855991px;}
.x7{left:131.795991px;}
.x8{left:239.834991px;}
.x6{left:274.034991px;}
.x2{left:301.214991px;}
.x5{left:314.714991px;}
.xc{left:329.654991px;}
.xa{left:550.409991px;}
.xb{left:557.249991px;}
.x9{left:564.089991px;}
@media print{
.v1{vertical-align:-63.360000pt;}
.v2{vertical-align:-53.866667pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-1.648000pt;}
.ls30{letter-spacing:-1.280000pt;}
.ls22{letter-spacing:-0.912000pt;}
.ls25{letter-spacing:-0.778667pt;}
.ls24{letter-spacing:-0.773333pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.608000pt;}
.ls2e{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.239467pt;}
.ls1c{letter-spacing:-0.233067pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.150933pt;}
.ls1f{letter-spacing:-0.140800pt;}
.ls39{letter-spacing:-0.130667pt;}
.ls11{letter-spacing:-0.080000pt;}
.ls10{letter-spacing:-0.048000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.005115pt;}
.ls3{letter-spacing:0.016000pt;}
.ls3a{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.094933pt;}
.ls3b{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.097067pt;}
.ls2c{letter-spacing:0.097280pt;}
.ls37{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.176533pt;}
.ls1b{letter-spacing:0.179200pt;}
.ls0{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.239467pt;}
.ls1e{letter-spacing:0.274133pt;}
.ls1{letter-spacing:0.320000pt;}
.ls34{letter-spacing:1.920000pt;}
.ls33{letter-spacing:2.560000pt;}
.ls26{letter-spacing:3.200000pt;}
.ls2b{letter-spacing:5.120000pt;}
.ls5{letter-spacing:10.400000pt;}
.ls7{letter-spacing:11.040000pt;}
.ls6{letter-spacing:11.680000pt;}
.ls4{letter-spacing:12.960000pt;}
.ls23{letter-spacing:15.360000pt;}
.ls2{letter-spacing:16.800000pt;}
.ls21{letter-spacing:17.920000pt;}
.ls27{letter-spacing:19.200000pt;}
.ls20{letter-spacing:19.840000pt;}
.ls16{letter-spacing:21.120000pt;}
.ls36{letter-spacing:28.320000pt;}
.ls2a{letter-spacing:29.440000pt;}
.ls38{letter-spacing:29.600000pt;}
.ls18{letter-spacing:40.320000pt;}
.ls19{letter-spacing:40.960000pt;}
.ls17{letter-spacing:71.680000pt;}
.ls13{letter-spacing:83.200000pt;}
.ls31{letter-spacing:105.850027pt;}
.ls2d{letter-spacing:108.410027pt;}
.ls8{letter-spacing:155.680000pt;}
.ls32{letter-spacing:181.120000pt;}
.ls35{letter-spacing:639.658667pt;}
.ws10{word-spacing:-14.994133pt;}
.wse{word-spacing:-14.899200pt;}
.wsf{word-spacing:-14.817067pt;}
.ws12{word-spacing:-14.725115pt;}
.wsb{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.589333pt;}
.ws11{word-spacing:-14.579200pt;}
.ws16{word-spacing:-14.569067pt;}
.ws13{word-spacing:-14.486933pt;}
.ws17{word-spacing:-14.176000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws14{word-spacing:-13.946667pt;}
.ws15{word-spacing:-13.941333pt;}
.ws0{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.440000pt;}
.ws1b{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.080000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.952000pt;}
.ws9{word-spacing:-11.920000pt;}
.ws8{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws4{word-spacing:-10.400000pt;}
.wsd{word-spacing:0.000000pt;}
._18{margin-left:-3.129600pt;}
._17{margin-left:-2.237440pt;}
._1{margin-left:-0.957653pt;}
._0{width:1.048960pt;}
._6{width:2.236373pt;}
._e{width:3.936000pt;}
._10{width:4.992000pt;}
._f{width:6.000000pt;}
._a{width:7.200000pt;}
._b{width:8.928000pt;}
._8{width:10.080000pt;}
._4{width:11.098667pt;}
._28{width:12.008320pt;}
._5{width:12.986667pt;}
._9{width:14.541653pt;}
._2{width:16.320000pt;}
._3{width:17.585707pt;}
._19{width:19.248000pt;}
._29{width:21.020160pt;}
._2f{width:22.817707pt;}
._2a{width:23.846400pt;}
._7{width:24.816000pt;}
._24{width:25.708160pt;}
._1a{width:26.637013pt;}
._11{width:27.552000pt;}
._26{width:28.645333pt;}
._39{width:30.237227pt;}
._c{width:31.152000pt;}
._1c{width:32.517333pt;}
._1d{width:33.439360pt;}
._2e{width:34.444800pt;}
._35{width:35.386880pt;}
._15{width:36.446720pt;}
._16{width:37.488213pt;}
._3d{width:38.755200pt;}
._2b{width:40.593280pt;}
._27{width:41.922560pt;}
._36{width:43.565653pt;}
._21{width:44.587093pt;}
._20{width:45.651840pt;}
._d{width:46.800000pt;}
._34{width:50.475733pt;}
._3b{width:52.573867pt;}
._37{width:53.662720pt;}
._2d{width:55.464960pt;}
._25{width:56.855040pt;}
._32{width:57.905493pt;}
._31{width:58.880000pt;}
._2c{width:61.352960pt;}
._3a{width:62.470187pt;}
._13{width:64.591360pt;}
._12{width:65.533440pt;}
._38{width:68.536320pt;}
._22{width:69.537280pt;}
._23{width:71.068160pt;}
._33{width:75.466667pt;}
._14{width:76.805120pt;}
._30{width:80.418987pt;}
._1b{width:81.313280pt;}
._1e{width:82.373120pt;}
._1f{width:83.655467pt;}
._3c{width:86.553600pt;}
._3e{width:180.396373pt;}
.fs3{font-size:10.880000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.560000pt;}
.y55{bottom:80.320000pt;}
.y2e{bottom:81.920000pt;}
.y7a{bottom:84.320000pt;}
.y58{bottom:94.592000pt;}
.y54{bottom:97.312000pt;}
.y2d{bottom:98.752000pt;}
.y79{bottom:101.152000pt;}
.y57{bottom:111.552000pt;}
.y53{bottom:114.112000pt;}
.y2c{bottom:115.712000pt;}
.y78{bottom:118.112000pt;}
.y56{bottom:125.152000pt;}
.y52{bottom:131.072000pt;}
.y2b{bottom:132.512000pt;}
.y77{bottom:134.906667pt;}
.y80{bottom:142.266667pt;}
.y51{bottom:147.866667pt;}
.y2a{bottom:149.466667pt;}
.y76{bottom:151.866667pt;}
.y7f{bottom:154.586667pt;}
.y50{bottom:164.666667pt;}
.y29{bottom:166.266667pt;}
.y7e{bottom:167.386667pt;}
.y75{bottom:168.666667pt;}
.y4f{bottom:181.626667pt;}
.y7d{bottom:182.746667pt;}
.y74{bottom:185.466667pt;}
.y7c{bottom:197.786667pt;}
.y4e{bottom:198.426667pt;}
.y28{bottom:198.906667pt;}
.y73{bottom:202.426667pt;}
.y27{bottom:211.546667pt;}
.y4d{bottom:215.386667pt;}
.y72{bottom:219.226667pt;}
.y26{bottom:225.466667pt;}
.y4c{bottom:232.186667pt;}
.y62{bottom:234.746667pt;}
.y71{bottom:236.186667pt;}
.y25{bottom:239.226667pt;}
.y4b{bottom:249.026667pt;}
.y61{bottom:251.746667pt;}
.y24{bottom:253.026667pt;}
.y4a{bottom:265.986667pt;}
.y23{bottom:266.786667pt;}
.y60{bottom:268.546667pt;}
.y70{bottom:269.826667pt;}
.y22{bottom:280.706667pt;}
.y49{bottom:282.786667pt;}
.y5f{bottom:285.346667pt;}
.y6f{bottom:286.786667pt;}
.y21{bottom:294.466667pt;}
.y48{bottom:299.746667pt;}
.y5e{bottom:302.306667pt;}
.y6e{bottom:303.586667pt;}
.y20{bottom:308.226667pt;}
.y47{bottom:316.546667pt;}
.y5d{bottom:319.106667pt;}
.y6d{bottom:320.546667pt;}
.y1f{bottom:321.986667pt;}
.y46{bottom:333.506667pt;}
.y1e{bottom:335.906667pt;}
.y5c{bottom:336.066667pt;}
.y6c{bottom:337.346667pt;}
.y1d{bottom:349.666667pt;}
.y45{bottom:350.306667pt;}
.y5b{bottom:352.866667pt;}
.y6b{bottom:354.146667pt;}
.y1c{bottom:363.426667pt;}
.y44{bottom:367.106667pt;}
.y5a{bottom:369.826667pt;}
.y6a{bottom:371.106667pt;}
.y1b{bottom:377.186667pt;}
.y59{bottom:383.426667pt;}
.y43{bottom:384.066667pt;}
.y69{bottom:387.906667pt;}
.y1a{bottom:391.106667pt;}
.y42{bottom:400.866667pt;}
.y7b{bottom:404.573333pt;}
.y19{bottom:404.893333pt;}
.y41{bottom:417.853333pt;}
.y18{bottom:418.653333pt;}
.y68{bottom:421.693333pt;}
.y17{bottom:432.413333pt;}
.y40{bottom:434.653333pt;}
.y67{bottom:438.493333pt;}
.y16{bottom:446.173333pt;}
.y3f{bottom:451.453333pt;}
.y66{bottom:455.453333pt;}
.y15{bottom:460.093333pt;}
.y3e{bottom:468.413333pt;}
.y65{bottom:472.253333pt;}
.y14{bottom:473.853333pt;}
.y3d{bottom:485.213333pt;}
.y13{bottom:487.613333pt;}
.y64{bottom:489.213333pt;}
.y12{bottom:501.373333pt;}
.y3c{bottom:502.173333pt;}
.y63{bottom:502.813333pt;}
.y11{bottom:515.293333pt;}
.y3b{bottom:518.973333pt;}
.y10{bottom:529.053333pt;}
.y3a{bottom:535.773333pt;}
.yf{bottom:542.813333pt;}
.y39{bottom:552.733333pt;}
.ye{bottom:556.573333pt;}
.y38{bottom:569.573333pt;}
.yd{bottom:570.533333pt;}
.yc{bottom:584.293333pt;}
.y37{bottom:586.533333pt;}
.yb{bottom:598.053333pt;}
.y36{bottom:603.333333pt;}
.ya{bottom:611.813333pt;}
.y35{bottom:620.133333pt;}
.y9{bottom:626.373333pt;}
.y34{bottom:637.093333pt;}
.y8{bottom:643.173333pt;}
.y33{bottom:653.893333pt;}
.y7{bottom:660.133333pt;}
.y32{bottom:670.853333pt;}
.y6{bottom:676.933333pt;}
.y31{bottom:687.653333pt;}
.y5{bottom:691.173333pt;}
.y4{bottom:695.813333pt;}
.y30{bottom:704.613333pt;}
.y3{bottom:708.133333pt;}
.y2f{bottom:732.960000pt;}
.y1{bottom:734.080000pt;}
.h5{height:10.965000pt;}
.h9{height:34.710938pt;}
.h4{height:42.084375pt;}
.ha{height:42.578750pt;}
.h7{height:47.109375pt;}
.h8{height:48.375000pt;}
.he{height:52.108438pt;}
.hc{height:52.296250pt;}
.h2{height:53.535000pt;}
.hb{height:57.787500pt;}
.h6{height:59.340000pt;}
.hd{height:60.519362pt;}
.h3{height:62.812500pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.519992pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x3{left:75.551992pt;}
.x4{left:79.071992pt;}
.x1{left:87.871992pt;}
.x7{left:117.151992pt;}
.x8{left:213.186658pt;}
.x6{left:243.586658pt;}
.x2{left:267.746658pt;}
.x5{left:279.746658pt;}
.xc{left:293.026658pt;}
.xa{left:489.253325pt;}
.xb{left:495.333325pt;}
.x9{left:501.413325pt;}
}




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