
    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_2f3faa5ee88bac1ff0ff1da8.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1cd5cdb22781643a490fae7e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_07a93122205259d51e3a8692.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c281677105af2caaef41ec3d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b8efb8a83043e53b8eac50cf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-84.240000px;}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.026000px;}
.ls10{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.457800px;}
.lsd{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.262200px;}
.ls4{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.109200px;}
.ls13{letter-spacing:0.152400px;}
.ls6{letter-spacing:0.226560px;}
.lse{letter-spacing:0.262080px;}
.ls14{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.457920px;}
.ls5{letter-spacing:19.440000px;}
.lsc{letter-spacing:25.200000px;}
.ls1{letter-spacing:654.636000px;}
.ls0{letter-spacing:832.476000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.568000px;}
.ws8{word-spacing:-16.712400px;}
.ws7{word-spacing:-16.560000px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._2e{margin-left:-18.805920px;}
._10{margin-left:-4.104000px;}
._11{margin-left:-3.096000px;}
._0{margin-left:-1.164960px;}
._1{width:1.120560px;}
._2{width:2.664000px;}
._3{width:4.051440px;}
._c{width:5.772960px;}
._b{width:6.912000px;}
._5{width:8.771040px;}
._4{width:10.092960px;}
._13{width:11.736000px;}
._14{width:12.900000px;}
._f{width:14.040000px;}
._a{width:15.873120px;}
._9{width:16.932960px;}
._3d{width:18.079680px;}
._2d{width:19.596960px;}
._30{width:21.099600px;}
._12{width:22.824000px;}
._36{width:23.904000px;}
._6{width:25.344000px;}
._7{width:26.496000px;}
._8{width:27.535440px;}
._29{width:29.592000px;}
._2c{width:31.248000px;}
._37{width:32.580000px;}
._28{width:33.744000px;}
._34{width:35.136000px;}
._d{width:36.576000px;}
._e{width:37.668000px;}
._15{width:38.952000px;}
._16{width:40.104000px;}
._22{width:41.256000px;}
._1a{width:42.984000px;}
._35{width:44.640000px;}
._1e{width:45.792000px;}
._1f{width:47.088000px;}
._1b{width:49.104000px;}
._1c{width:50.400000px;}
._4c{width:52.200000px;}
._2a{width:53.616000px;}
._2b{width:54.996000px;}
._31{width:56.413440px;}
._32{width:57.608640px;}
._3b{width:59.832000px;}
._3e{width:63.372960px;}
._47{width:68.352960px;}
._39{width:70.344000px;}
._3a{width:71.496000px;}
._24{width:75.024000px;}
._2f{width:76.080000px;}
._20{width:77.256000px;}
._21{width:78.264000px;}
._17{width:79.632000px;}
._46{width:82.512000px;}
._1d{width:84.540960px;}
._27{width:88.344000px;}
._42{width:89.580960px;}
._4a{width:91.236960px;}
._49{width:93.600000px;}
._48{width:94.608000px;}
._23{width:96.984000px;}
._43{width:101.304000px;}
._40{width:103.752000px;}
._41{width:104.976000px;}
._4e{width:108.576000px;}
._4d{width:112.608000px;}
._33{width:125.064000px;}
._18{width:131.544000px;}
._44{width:140.544000px;}
._45{width:141.552000px;}
._38{width:163.908000px;}
._3f{width:172.584000px;}
._19{width:191.016000px;}
._3c{width:195.264000px;}
._25{width:202.320000px;}
._26{width:203.472000px;}
._53{width:205.145280px;}
._51{width:255.657600px;}
._52{width:257.040000px;}
._4b{width:340.128000px;}
._50{width:868.406400px;}
._4f{width:888.543360px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.240000px;}
.y3{bottom:77.940000px;}
.y2{bottom:97.416000px;}
.yd1{bottom:123.696000px;}
.y93{bottom:128.016000px;}
.y60{bottom:138.636000px;}
.y73{bottom:140.436000px;}
.y32{bottom:142.416000px;}
.y92{bottom:151.770000px;}
.yb3{bottom:153.030000px;}
.y5f{bottom:162.390000px;}
.y72{bottom:164.190000px;}
.y31{bottom:166.170000px;}
.yd0{bottom:172.110000px;}
.y91{bottom:175.530000px;}
.yb2{bottom:181.110000px;}
.y5e{bottom:186.150000px;}
.y71{bottom:187.950000px;}
.y30{bottom:190.110000px;}
.ycf{bottom:191.010000px;}
.y90{bottom:199.290000px;}
.yb1{bottom:200.010000px;}
.yce{bottom:209.910000px;}
.y5d{bottom:210.090000px;}
.y70{bottom:211.710000px;}
.y2f{bottom:213.870000px;}
.yb0{bottom:218.910000px;}
.y8f{bottom:223.230000px;}
.ycd{bottom:228.990000px;}
.y5c{bottom:233.850000px;}
.y6f{bottom:235.650000px;}
.y2e{bottom:237.630000px;}
.yaf{bottom:237.990000px;}
.y8e{bottom:246.990000px;}
.ycc{bottom:247.890000px;}
.yae{bottom:256.890000px;}
.y5b{bottom:257.610000px;}
.y6e{bottom:259.410000px;}
.y2d{bottom:261.390000px;}
.ycb{bottom:266.970000px;}
.y8d{bottom:270.750000px;}
.yad{bottom:275.970000px;}
.y5a{bottom:281.370000px;}
.y6d{bottom:283.170000px;}
.y2c{bottom:285.150000px;}
.yca{bottom:285.870000px;}
.y8c{bottom:294.510000px;}
.yac{bottom:294.870000px;}
.y59{bottom:305.130000px;}
.y6c{bottom:306.930000px;}
.y2b{bottom:309.090000px;}
.yc9{bottom:313.770000px;}
.y8b{bottom:318.450000px;}
.yab{bottom:322.770000px;}
.y79{bottom:327.450000px;}
.y58{bottom:329.070000px;}
.y6b{bottom:330.690000px;}
.y2a{bottom:332.490000px;}
.y33{bottom:332.850000px;}
.yaa{bottom:341.850000px;}
.y8a{bottom:342.210000px;}
.y78{bottom:346.350000px;}
.yc8{bottom:351.750000px;}
.y57{bottom:352.830000px;}
.y29{bottom:353.595000px;}
.y6a{bottom:354.675000px;}
.ya9{bottom:360.795000px;}
.y77{bottom:365.475000px;}
.y89{bottom:366.015000px;}
.yc7{bottom:370.875000px;}
.y28{bottom:374.295000px;}
.y69{bottom:378.435000px;}
.ya8{bottom:379.875000px;}
.y56{bottom:381.855000px;}
.y76{bottom:384.375000px;}
.y88{bottom:389.775000px;}
.y27{bottom:394.995000px;}
.ya7{bottom:398.775000px;}
.y55{bottom:399.135000px;}
.y75{bottom:399.315000px;}
.y68{bottom:402.195000px;}
.yc6{bottom:408.675000px;}
.y87{bottom:413.715000px;}
.y26{bottom:415.335000px;}
.y54{bottom:416.415000px;}
.ya6{bottom:417.315000px;}
.y67{bottom:425.955000px;}
.yc5{bottom:427.755000px;}
.y53{bottom:433.515000px;}
.y25{bottom:436.395000px;}
.ya5{bottom:436.755000px;}
.y86{bottom:437.475000px;}
.yc4{bottom:446.655000px;}
.y66{bottom:449.895000px;}
.y52{bottom:450.795000px;}
.y24{bottom:457.095000px;}
.y85{bottom:461.235000px;}
.ya4{bottom:464.655000px;}
.yc3{bottom:465.735000px;}
.y51{bottom:468.075000px;}
.y65{bottom:473.655000px;}
.y23{bottom:477.795000px;}
.ya3{bottom:483.735000px;}
.y84{bottom:484.995000px;}
.y50{bottom:485.355000px;}
.yc2{bottom:493.635000px;}
.y64{bottom:497.055000px;}
.y94{bottom:497.415000px;}
.y22{bottom:498.495000px;}
.y4f{bottom:502.635000px;}
.y83{bottom:508.935000px;}
.yc1{bottom:512.535000px;}
.y21{bottom:519.195000px;}
.y4e{bottom:519.915000px;}
.y63{bottom:521.175000px;}
.ya2{bottom:521.535000px;}
.yc0{bottom:531.615000px;}
.y82{bottom:532.695000px;}
.y4d{bottom:537.015000px;}
.y20{bottom:539.895000px;}
.ya1{bottom:540.615000px;}
.y62{bottom:545.115000px;}
.ybf{bottom:550.515000px;}
.y4c{bottom:554.295000px;}
.y81{bottom:556.455000px;}
.ya0{bottom:559.515000px;}
.y1f{bottom:560.595000px;}
.y61{bottom:568.875000px;}
.ybe{bottom:569.595000px;}
.y4b{bottom:571.575000px;}
.y9f{bottom:578.595000px;}
.y80{bottom:580.215000px;}
.y1e{bottom:581.295000px;}
.ybd{bottom:588.495000px;}
.y4a{bottom:592.635000px;}
.y9e{bottom:597.495000px;}
.y1d{bottom:601.995000px;}
.y7f{bottom:604.155000px;}
.ybc{bottom:607.395000px;}
.y49{bottom:616.425000px;}
.y1c{bottom:622.725000px;}
.y9d{bottom:625.425000px;}
.y7e{bottom:627.945000px;}
.ybb{bottom:635.505000px;}
.y48{bottom:640.365000px;}
.y1b{bottom:643.065000px;}
.y9c{bottom:644.505000px;}
.yba{bottom:654.405000px;}
.y7d{bottom:658.905000px;}
.y9b{bottom:663.405000px;}
.y95{bottom:663.765000px;}
.y1a{bottom:664.125000px;}
.yb9{bottom:673.485000px;}
.y7c{bottom:679.425000px;}
.y9a{bottom:682.485000px;}
.y19{bottom:684.465000px;}
.y47{bottom:687.885000px;}
.yb8{bottom:692.385000px;}
.y7b{bottom:698.325000px;}
.y99{bottom:701.385000px;}
.yb7{bottom:711.465000px;}
.y46{bottom:711.645000px;}
.y7a{bottom:713.265000px;}
.y98{bottom:720.465000px;}
.y18{bottom:726.225000px;}
.yb6{bottom:730.005000px;}
.y45{bottom:735.585000px;}
.y17{bottom:746.925000px;}
.y97{bottom:748.545000px;}
.yb5{bottom:749.265000px;}
.y44{bottom:759.345000px;}
.y16{bottom:767.265000px;}
.y96{bottom:776.985000px;}
.yb4{bottom:777.345000px;}
.y43{bottom:783.105000px;}
.y15{bottom:788.325000px;}
.y42{bottom:806.865000px;}
.y14{bottom:809.025000px;}
.y13{bottom:829.725000px;}
.y41{bottom:830.625000px;}
.y12{bottom:850.425000px;}
.y40{bottom:854.565000px;}
.y11{bottom:871.125000px;}
.y3f{bottom:878.370000px;}
.y10{bottom:891.870000px;}
.y3e{bottom:902.130000px;}
.yf{bottom:912.570000px;}
.y3d{bottom:925.890000px;}
.ye{bottom:933.270000px;}
.y3c{bottom:949.830000px;}
.yd{bottom:953.970000px;}
.y3b{bottom:973.590000px;}
.yc{bottom:974.670000px;}
.yb{bottom:995.010000px;}
.y3a{bottom:997.350000px;}
.ya{bottom:1016.070000px;}
.y39{bottom:1021.110000px;}
.y9{bottom:1036.770000px;}
.y74{bottom:1044.690000px;}
.y38{bottom:1045.050000px;}
.y8{bottom:1057.470000px;}
.y37{bottom:1068.810000px;}
.y36{bottom:1092.570000px;}
.y7{bottom:1098.870000px;}
.y35{bottom:1116.330000px;}
.y6{bottom:1119.210000px;}
.y5{bottom:1139.910000px;}
.y34{bottom:1140.300000px;}
.y1{bottom:1198.800000px;}
.h2{height:47.344922px;}
.h6{height:58.651172px;}
.h9{height:64.546875px;}
.h7{height:65.010937px;}
.h8{height:66.757500px;}
.h5{height:70.628906px;}
.h3{height:70.664062px;}
.h4{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.x7{left:170.129987px;}
.x4{left:182.369987px;}
.x3{left:262.334987px;}
.x1{left:424.184987px;}
.x5{left:446.504987px;}
.x6{left:473.144987px;}
.x8{left:765.359987px;}
@media print{
.v2{vertical-align:-74.880000pt;}
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.912000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.406933pt;}
.lsd{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.233067pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.097067pt;}
.ls13{letter-spacing:0.135467pt;}
.ls6{letter-spacing:0.201387pt;}
.lse{letter-spacing:0.232960pt;}
.ls14{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.407040pt;}
.ls5{letter-spacing:17.280000pt;}
.lsc{letter-spacing:22.400000pt;}
.ls1{letter-spacing:581.898667pt;}
.ls0{letter-spacing:739.978667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.616000pt;}
.ws8{word-spacing:-14.855467pt;}
.ws7{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._2e{margin-left:-16.716373pt;}
._10{margin-left:-3.648000pt;}
._11{margin-left:-2.752000pt;}
._0{margin-left:-1.035520pt;}
._1{width:0.996053pt;}
._2{width:2.368000pt;}
._3{width:3.601280pt;}
._c{width:5.131520pt;}
._b{width:6.144000pt;}
._5{width:7.796480pt;}
._4{width:8.971520pt;}
._13{width:10.432000pt;}
._14{width:11.466667pt;}
._f{width:12.480000pt;}
._a{width:14.109440pt;}
._9{width:15.051520pt;}
._3d{width:16.070827pt;}
._2d{width:17.419520pt;}
._30{width:18.755200pt;}
._12{width:20.288000pt;}
._36{width:21.248000pt;}
._6{width:22.528000pt;}
._7{width:23.552000pt;}
._8{width:24.475947pt;}
._29{width:26.304000pt;}
._2c{width:27.776000pt;}
._37{width:28.960000pt;}
._28{width:29.994667pt;}
._34{width:31.232000pt;}
._d{width:32.512000pt;}
._e{width:33.482667pt;}
._15{width:34.624000pt;}
._16{width:35.648000pt;}
._22{width:36.672000pt;}
._1a{width:38.208000pt;}
._35{width:39.680000pt;}
._1e{width:40.704000pt;}
._1f{width:41.856000pt;}
._1b{width:43.648000pt;}
._1c{width:44.800000pt;}
._4c{width:46.400000pt;}
._2a{width:47.658667pt;}
._2b{width:48.885333pt;}
._31{width:50.145280pt;}
._32{width:51.207680pt;}
._3b{width:53.184000pt;}
._3e{width:56.331520pt;}
._47{width:60.758187pt;}
._39{width:62.528000pt;}
._3a{width:63.552000pt;}
._24{width:66.688000pt;}
._2f{width:67.626667pt;}
._20{width:68.672000pt;}
._21{width:69.568000pt;}
._17{width:70.784000pt;}
._46{width:73.344000pt;}
._1d{width:75.147520pt;}
._27{width:78.528000pt;}
._42{width:79.627520pt;}
._4a{width:81.099520pt;}
._49{width:83.200000pt;}
._48{width:84.096000pt;}
._23{width:86.208000pt;}
._43{width:90.048000pt;}
._40{width:92.224000pt;}
._41{width:93.312000pt;}
._4e{width:96.512000pt;}
._4d{width:100.096000pt;}
._33{width:111.168000pt;}
._18{width:116.928000pt;}
._44{width:124.928000pt;}
._45{width:125.824000pt;}
._38{width:145.696000pt;}
._3f{width:153.408000pt;}
._19{width:169.792000pt;}
._3c{width:173.568000pt;}
._25{width:179.840000pt;}
._26{width:180.864000pt;}
._53{width:182.351360pt;}
._51{width:227.251200pt;}
._52{width:228.480000pt;}
._4b{width:302.336000pt;}
._50{width:771.916800pt;}
._4f{width:789.816320pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:50.880000pt;}
.y3{bottom:69.280000pt;}
.y2{bottom:86.592000pt;}
.yd1{bottom:109.952000pt;}
.y93{bottom:113.792000pt;}
.y60{bottom:123.232000pt;}
.y73{bottom:124.832000pt;}
.y32{bottom:126.592000pt;}
.y92{bottom:134.906667pt;}
.yb3{bottom:136.026667pt;}
.y5f{bottom:144.346667pt;}
.y72{bottom:145.946667pt;}
.y31{bottom:147.706667pt;}
.yd0{bottom:152.986667pt;}
.y91{bottom:156.026667pt;}
.yb2{bottom:160.986667pt;}
.y5e{bottom:165.466667pt;}
.y71{bottom:167.066667pt;}
.y30{bottom:168.986667pt;}
.ycf{bottom:169.786667pt;}
.y90{bottom:177.146667pt;}
.yb1{bottom:177.786667pt;}
.yce{bottom:186.586667pt;}
.y5d{bottom:186.746667pt;}
.y70{bottom:188.186667pt;}
.y2f{bottom:190.106667pt;}
.yb0{bottom:194.586667pt;}
.y8f{bottom:198.426667pt;}
.ycd{bottom:203.546667pt;}
.y5c{bottom:207.866667pt;}
.y6f{bottom:209.466667pt;}
.y2e{bottom:211.226667pt;}
.yaf{bottom:211.546667pt;}
.y8e{bottom:219.546667pt;}
.ycc{bottom:220.346667pt;}
.yae{bottom:228.346667pt;}
.y5b{bottom:228.986667pt;}
.y6e{bottom:230.586667pt;}
.y2d{bottom:232.346667pt;}
.ycb{bottom:237.306667pt;}
.y8d{bottom:240.666667pt;}
.yad{bottom:245.306667pt;}
.y5a{bottom:250.106667pt;}
.y6d{bottom:251.706667pt;}
.y2c{bottom:253.466667pt;}
.yca{bottom:254.106667pt;}
.y8c{bottom:261.786667pt;}
.yac{bottom:262.106667pt;}
.y59{bottom:271.226667pt;}
.y6c{bottom:272.826667pt;}
.y2b{bottom:274.746667pt;}
.yc9{bottom:278.906667pt;}
.y8b{bottom:283.066667pt;}
.yab{bottom:286.906667pt;}
.y79{bottom:291.066667pt;}
.y58{bottom:292.506667pt;}
.y6b{bottom:293.946667pt;}
.y2a{bottom:295.546667pt;}
.y33{bottom:295.866667pt;}
.yaa{bottom:303.866667pt;}
.y8a{bottom:304.186667pt;}
.y78{bottom:307.866667pt;}
.yc8{bottom:312.666667pt;}
.y57{bottom:313.626667pt;}
.y29{bottom:314.306667pt;}
.y6a{bottom:315.266667pt;}
.ya9{bottom:320.706667pt;}
.y77{bottom:324.866667pt;}
.y89{bottom:325.346667pt;}
.yc7{bottom:329.666667pt;}
.y28{bottom:332.706667pt;}
.y69{bottom:336.386667pt;}
.ya8{bottom:337.666667pt;}
.y56{bottom:339.426667pt;}
.y76{bottom:341.666667pt;}
.y88{bottom:346.466667pt;}
.y27{bottom:351.106667pt;}
.ya7{bottom:354.466667pt;}
.y55{bottom:354.786667pt;}
.y75{bottom:354.946667pt;}
.y68{bottom:357.506667pt;}
.yc6{bottom:363.266667pt;}
.y87{bottom:367.746667pt;}
.y26{bottom:369.186667pt;}
.y54{bottom:370.146667pt;}
.ya6{bottom:370.946667pt;}
.y67{bottom:378.626667pt;}
.yc5{bottom:380.226667pt;}
.y53{bottom:385.346667pt;}
.y25{bottom:387.906667pt;}
.ya5{bottom:388.226667pt;}
.y86{bottom:388.866667pt;}
.yc4{bottom:397.026667pt;}
.y66{bottom:399.906667pt;}
.y52{bottom:400.706667pt;}
.y24{bottom:406.306667pt;}
.y85{bottom:409.986667pt;}
.ya4{bottom:413.026667pt;}
.yc3{bottom:413.986667pt;}
.y51{bottom:416.066667pt;}
.y65{bottom:421.026667pt;}
.y23{bottom:424.706667pt;}
.ya3{bottom:429.986667pt;}
.y84{bottom:431.106667pt;}
.y50{bottom:431.426667pt;}
.yc2{bottom:438.786667pt;}
.y64{bottom:441.826667pt;}
.y94{bottom:442.146667pt;}
.y22{bottom:443.106667pt;}
.y4f{bottom:446.786667pt;}
.y83{bottom:452.386667pt;}
.yc1{bottom:455.586667pt;}
.y21{bottom:461.506667pt;}
.y4e{bottom:462.146667pt;}
.y63{bottom:463.266667pt;}
.ya2{bottom:463.586667pt;}
.yc0{bottom:472.546667pt;}
.y82{bottom:473.506667pt;}
.y4d{bottom:477.346667pt;}
.y20{bottom:479.906667pt;}
.ya1{bottom:480.546667pt;}
.y62{bottom:484.546667pt;}
.ybf{bottom:489.346667pt;}
.y4c{bottom:492.706667pt;}
.y81{bottom:494.626667pt;}
.ya0{bottom:497.346667pt;}
.y1f{bottom:498.306667pt;}
.y61{bottom:505.666667pt;}
.ybe{bottom:506.306667pt;}
.y4b{bottom:508.066667pt;}
.y9f{bottom:514.306667pt;}
.y80{bottom:515.746667pt;}
.y1e{bottom:516.706667pt;}
.ybd{bottom:523.106667pt;}
.y4a{bottom:526.786667pt;}
.y9e{bottom:531.106667pt;}
.y1d{bottom:535.106667pt;}
.y7f{bottom:537.026667pt;}
.ybc{bottom:539.906667pt;}
.y49{bottom:547.933333pt;}
.y1c{bottom:553.533333pt;}
.y9d{bottom:555.933333pt;}
.y7e{bottom:558.173333pt;}
.ybb{bottom:564.893333pt;}
.y48{bottom:569.213333pt;}
.y1b{bottom:571.613333pt;}
.y9c{bottom:572.893333pt;}
.yba{bottom:581.693333pt;}
.y7d{bottom:585.693333pt;}
.y9b{bottom:589.693333pt;}
.y95{bottom:590.013333pt;}
.y1a{bottom:590.333333pt;}
.yb9{bottom:598.653333pt;}
.y7c{bottom:603.933333pt;}
.y9a{bottom:606.653333pt;}
.y19{bottom:608.413333pt;}
.y47{bottom:611.453333pt;}
.yb8{bottom:615.453333pt;}
.y7b{bottom:620.733333pt;}
.y99{bottom:623.453333pt;}
.yb7{bottom:632.413333pt;}
.y46{bottom:632.573333pt;}
.y7a{bottom:634.013333pt;}
.y98{bottom:640.413333pt;}
.y18{bottom:645.533333pt;}
.yb6{bottom:648.893333pt;}
.y45{bottom:653.853333pt;}
.y17{bottom:663.933333pt;}
.y97{bottom:665.373333pt;}
.yb5{bottom:666.013333pt;}
.y44{bottom:674.973333pt;}
.y16{bottom:682.013333pt;}
.y96{bottom:690.653333pt;}
.yb4{bottom:690.973333pt;}
.y43{bottom:696.093333pt;}
.y15{bottom:700.733333pt;}
.y42{bottom:717.213333pt;}
.y14{bottom:719.133333pt;}
.y13{bottom:737.533333pt;}
.y41{bottom:738.333333pt;}
.y12{bottom:755.933333pt;}
.y40{bottom:759.613333pt;}
.y11{bottom:774.333333pt;}
.y3f{bottom:780.773333pt;}
.y10{bottom:792.773333pt;}
.y3e{bottom:801.893333pt;}
.yf{bottom:811.173333pt;}
.y3d{bottom:823.013333pt;}
.ye{bottom:829.573333pt;}
.y3c{bottom:844.293333pt;}
.yd{bottom:847.973333pt;}
.y3b{bottom:865.413333pt;}
.yc{bottom:866.373333pt;}
.yb{bottom:884.453333pt;}
.y3a{bottom:886.533333pt;}
.ya{bottom:903.173333pt;}
.y39{bottom:907.653333pt;}
.y9{bottom:921.573333pt;}
.y74{bottom:928.613333pt;}
.y38{bottom:928.933333pt;}
.y8{bottom:939.973333pt;}
.y37{bottom:950.053333pt;}
.y36{bottom:971.173333pt;}
.y7{bottom:976.773333pt;}
.y35{bottom:992.293333pt;}
.y6{bottom:994.853333pt;}
.y5{bottom:1013.253333pt;}
.y34{bottom:1013.600000pt;}
.y1{bottom:1065.600000pt;}
.h2{height:42.084375pt;}
.h6{height:52.134375pt;}
.h9{height:57.375000pt;}
.h7{height:57.787500pt;}
.h8{height:59.340000pt;}
.h5{height:62.781250pt;}
.h3{height:62.812500pt;}
.h4{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x7{left:151.226655pt;}
.x4{left:162.106655pt;}
.x3{left:233.186655pt;}
.x1{left:377.053322pt;}
.x5{left:396.893322pt;}
.x6{left:420.573322pt;}
.x8{left:680.319988pt;}
}




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