
    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_7873be887be46921b4f70242.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_97c438afc6269135bf39d011.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.704000;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_fda358fb5e9e6f220cf62ad5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_a7360981e24d2f9131013e46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_8fc7dc14c7ab503908fa18df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_c855d041c348331bfe9024af.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3a{word-spacing:-18.327288px;}
.ws2a{word-spacing:-3.665458px;}
.ws4f{word-spacing:-3.534548px;}
.ws76{word-spacing:-3.141821px;}
.ws5d{word-spacing:-2.814548px;}
.ws5{word-spacing:-2.094547px;}
.ws14{word-spacing:-1.832729px;}
.ws2e{word-spacing:-1.636365px;}
.wsb{word-spacing:-1.570910px;}
.ws4{word-spacing:-1.374547px;}
.ws83{word-spacing:-1.309092px;}
.ws15{word-spacing:-1.287387px;}
.ws52{word-spacing:-1.243637px;}
.ws6a{word-spacing:-1.112728px;}
.ws2f{word-spacing:-1.093843px;}
.ws4e{word-spacing:-0.916364px;}
.ws37{word-spacing:-0.654546px;}
.ws6c{word-spacing:-0.392728px;}
.ws34{word-spacing:-0.261818px;}
.ws3b{word-spacing:-0.196364px;}
.ws17{word-spacing:0.000000px;}
.ws24{word-spacing:0.130909px;}
.ws2d{word-spacing:0.196364px;}
.wsa{word-spacing:0.392728px;}
.ws41{word-spacing:0.523637px;}
.ws43{word-spacing:0.589091px;}
.ws36{word-spacing:0.916364px;}
.ws77{word-spacing:1.178183px;}
.ws50{word-spacing:1.374547px;}
.ws3e{word-spacing:1.505456px;}
.ws3f{word-spacing:1.543421px;}
.ws1d{word-spacing:1.570910px;}
.ws69{word-spacing:1.636365px;}
.ws6b{word-spacing:1.767274px;}
.ws78{word-spacing:1.785771px;}
.ws35{word-spacing:1.832729px;}
.ws46{word-spacing:1.898183px;}
.ws68{word-spacing:1.963638px;}
.ws4c{word-spacing:2.029093px;}
.ws21{word-spacing:2.225456px;}
.ws1e{word-spacing:2.290911px;}
.ws18{word-spacing:2.356366px;}
.wsc{word-spacing:2.880002px;}
.ws30{word-spacing:3.010912px;}
.ws38{word-spacing:3.141821px;}
.ws67{word-spacing:3.207275px;}
.ws56{word-spacing:3.338185px;}
.ws26{word-spacing:3.403639px;}
.wsd{word-spacing:3.469094px;}
.ws2b{word-spacing:3.534548px;}
.ws79{word-spacing:3.665458px;}
.ws44{word-spacing:3.730912px;}
.ws4b{word-spacing:3.796367px;}
.ws2{word-spacing:3.873474px;}
.ws81{word-spacing:3.927276px;}
.ws1f{word-spacing:3.992731px;}
.ws11{word-spacing:4.123640px;}
.ws7a{word-spacing:4.230900px;}
.ws45{word-spacing:4.385458px;}
.ws5f{word-spacing:4.516367px;}
.ws70{word-spacing:4.712731px;}
.ws16{word-spacing:4.778186px;}
.ws60{word-spacing:4.843640px;}
.ws61{word-spacing:4.894663px;}
.ws66{word-spacing:4.909095px;}
.ws7c{word-spacing:4.924735px;}
.ws74{word-spacing:4.974550px;}
.ws13{word-spacing:5.170913px;}
.ws42{word-spacing:5.367277px;}
.ws29{word-spacing:5.432732px;}
.ws3{word-spacing:5.498186px;}
.ws63{word-spacing:5.563641px;}
.ws20{word-spacing:5.629096px;}
.ws39{word-spacing:5.694550px;}
.ws22{word-spacing:5.825459px;}
.wse{word-spacing:5.890914px;}
.ws4a{word-spacing:6.152732px;}
.ws55{word-spacing:6.283642px;}
.ws10{word-spacing:6.349096px;}
.ws12{word-spacing:6.414551px;}
.ws7f{word-spacing:6.480005px;}
.ws1c{word-spacing:6.741824px;}
.ws54{word-spacing:7.069097px;}
.ws53{word-spacing:7.200006px;}
.ws7d{word-spacing:7.330915px;}
.ws5c{word-spacing:7.396370px;}
.ws58{word-spacing:7.592734px;}
.ws3d{word-spacing:7.789097px;}
.ws1a{word-spacing:7.854552px;}
.ws5e{word-spacing:7.920007px;}
.ws57{word-spacing:7.985461px;}
.ws25{word-spacing:8.116370px;}
.ws65{word-spacing:8.181825px;}
.ws6{word-spacing:8.247280px;}
.ws71{word-spacing:8.312734px;}
.ws59{word-spacing:8.378189px;}
.ws3c{word-spacing:8.509098px;}
.ws6f{word-spacing:8.901826px;}
.ws6d{word-spacing:9.032735px;}
.ws82{word-spacing:9.095279px;}
.ws7e{word-spacing:9.294553px;}
.ws5a{word-spacing:9.687281px;}
.ws40{word-spacing:9.752735px;}
.ws6e{word-spacing:9.883645px;}
.ws4d{word-spacing:10.014554px;}
.ws51{word-spacing:10.341827px;}
.ws73{word-spacing:10.635036px;}
.ws1{word-spacing:10.661850px;}
.ws7b{word-spacing:10.735454px;}
.ws0{word-spacing:10.785825px;}
.ws7{word-spacing:10.930918px;}
.ws27{word-spacing:11.127282px;}
.ws28{word-spacing:11.147202px;}
.ws64{word-spacing:11.192737px;}
.ws62{word-spacing:11.258191px;}
.ws72{word-spacing:11.454555px;}
.ws8{word-spacing:11.716373px;}
.ws1b{word-spacing:11.912737px;}
.ws2c{word-spacing:12.043646px;}
.ws80{word-spacing:12.141587px;}
.ws75{word-spacing:12.240010px;}
.ws5b{word-spacing:12.632738px;}
.ws19{word-spacing:13.156375px;}
.wsf{word-spacing:13.418193px;}
.ws9{word-spacing:13.680011px;}
.ws33{word-spacing:53.410954px;}
.ws32{word-spacing:163.767409px;}
.ws31{word-spacing:263.638219px;}
.ws23{word-spacing:404.100000px;}
.ws47{word-spacing:485.940715px;}
.ws49{word-spacing:673.635733px;}
.ws48{word-spacing:706.365733px;}
._3e{margin-left:-9.687281px;}
._f{margin-left:-8.247280px;}
._16{margin-left:-6.382480px;}
._5{margin-left:-4.941376px;}
._1{margin-left:-3.719250px;}
._2{margin-left:-2.324084px;}
._a{margin-left:-1.210464px;}
._6{width:1.047274px;}
._3{width:2.193175px;}
._0{width:3.843225px;}
._38{width:16.363650px;}
._4{width:18.065470px;}
._20{width:19.523419px;}
._12{width:21.600018px;}
._22{width:23.490355px;}
._15{width:24.938203px;}
._e{width:26.149559px;}
._7{width:27.229114px;}
._11{width:29.115635px;}
._8{width:31.220952px;}
._21{width:32.465482px;}
._d{width:34.232756px;}
._c{width:36.261848px;}
._3b{width:38.225486px;}
._3a{width:40.251164px;}
._10{width:41.302745px;}
._14{width:43.723673px;}
._3d{width:46.047757px;}
._37{width:48.763677px;}
._39{width:50.465497px;}
._3c{width:52.496374px;}
._9{width:54.687764px;}
._b{width:59.499124px;}
._1a{width:72.217935px;}
._2f{width:78.513239px;}
._1f{width:82.603705px;}
._1e{width:96.414626px;}
._24{width:99.425537px;}
._30{width:106.429180px;}
._25{width:128.029198px;}
._1b{width:136.636031px;}
._1c{width:171.229234px;}
._1d{width:191.847433px;}
._18{width:293.353401px;}
._19{width:303.757507px;}
._29{width:309.772940px;}
._23{width:341.581312px;}
._2a{width:343.416605px;}
._2b{width:386.158459px;}
._35{width:390.334863px;}
._34{width:399.662590px;}
._13{width:403.320000px;}
._2c{width:432.107588px;}
._33{width:439.863376px;}
._2d{width:465.751252px;}
._17{width:478.538392px;}
._2e{width:508.493106px;}
._36{width:517.644060px;}
._26{width:608.439580px;}
._31{width:692.457077px;}
._27{width:713.583721px;}
._32{width:724.695721px;}
._28{width:746.313721px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.000000px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:78.000000px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y33{bottom:14.010000px;}
.y32{bottom:36.165000px;}
.y2d{bottom:51.375000px;}
.y2e{bottom:127.170000px;}
.y34{bottom:132.375000px;}
.y1c{bottom:138.829500px;}
.y2f{bottom:202.965000px;}
.y1b{bottom:211.767000px;}
.y95{bottom:216.039000px;}
.y7d{bottom:218.625000px;}
.y1a{bottom:232.090500px;}
.y6f{bottom:236.010000px;}
.y94{bottom:236.362500px;}
.yb2{bottom:237.433500px;}
.y50{bottom:244.042500px;}
.y37{bottom:244.443000px;}
.y19{bottom:252.414000px;}
.y6e{bottom:256.333500px;}
.y93{bottom:256.686000px;}
.yb1{bottom:257.757000px;}
.y36{bottom:264.768000px;}
.y18{bottom:272.739000px;}
.y6d{bottom:276.657000px;}
.y92{bottom:277.009500px;}
.yb0{bottom:278.080500px;}
.y30{bottom:278.775000px;}
.y35{bottom:285.091500px;}
.y4f{bottom:285.106500px;}
.y17{bottom:293.062500px;}
.y6c{bottom:296.982000px;}
.y91{bottom:297.334500px;}
.yaf{bottom:298.404000px;}
.y2c{bottom:314.262000px;}
.y6b{bottom:317.305500px;}
.yae{bottom:318.729000px;}
.y16{bottom:328.030500px;}
.y6a{bottom:337.629000px;}
.y90{bottom:338.398500px;}
.y4e{bottom:338.514000px;}
.yad{bottom:339.052500px;}
.y15{bottom:348.355500px;}
.y31{bottom:354.570000px;}
.y4d{bottom:358.837500px;}
.yac{bottom:359.376000px;}
.y69{bottom:366.177000px;}
.y4c{bottom:379.161000px;}
.yab{bottom:379.699500px;}
.y14{bottom:383.323500px;}
.y8f{bottom:391.806000px;}
.y4b{bottom:399.484500px;}
.yaa{bottom:400.023000px;}
.y13{bottom:403.647000px;}
.y68{bottom:407.337000px;}
.y8e{bottom:412.129500px;}
.y4a{bottom:419.809500px;}
.ya9{bottom:420.348000px;}
.y12{bottom:423.972000px;}
.y8d{bottom:432.453000px;}
.ya8{bottom:440.671500px;}
.y67{bottom:443.587500px;}
.y49{bottom:450.294000px;}
.y8c{bottom:452.776500px;}
.ya7{bottom:460.995000px;}
.y85{bottom:462.840000px;}
.y66{bottom:463.911000px;}
.y48{bottom:470.619000px;}
.y8b{bottom:473.101500px;}
.ya6{bottom:481.318500px;}
.y84{bottom:483.163500px;}
.y65{bottom:484.234500px;}
.y47{bottom:490.942500px;}
.y8a{bottom:493.425000px;}
.ya5{bottom:501.642000px;}
.y83{bottom:503.488500px;}
.y64{bottom:504.559500px;}
.y46{bottom:511.266000px;}
.y89{bottom:513.748500px;}
.y11{bottom:519.040500px;}
.ya4{bottom:521.967000px;}
.y82{bottom:523.812000px;}
.y10{bottom:539.365500px;}
.ya3{bottom:542.290500px;}
.y81{bottom:544.135500px;}
.yf{bottom:559.689000px;}
.y7c{bottom:562.614000px;}
.y63{bottom:563.205000px;}
.y80{bottom:564.459000px;}
.y45{bottom:566.557500px;}
.y88{bottom:568.264500px;}
.ye{bottom:580.012500px;}
.y7b{bottom:582.937500px;}
.ya2{bottom:583.354500px;}
.y62{bottom:583.528500px;}
.y44{bottom:586.881000px;}
.y87{bottom:588.588000px;}
.yd{bottom:600.336000px;}
.y7a{bottom:603.261000px;}
.y61{bottom:603.852000px;}
.y43{bottom:607.204500px;}
.y86{bottom:608.911500px;}
.y7f{bottom:618.975000px;}
.yc{bottom:620.659500px;}
.y79{bottom:623.586000px;}
.y60{bottom:624.175500px;}
.y42{bottom:627.528000px;}
.ya1{bottom:636.762000px;}
.y7e{bottom:639.298500px;}
.yb{bottom:640.984500px;}
.y78{bottom:643.909500px;}
.y5f{bottom:644.500500px;}
.y41{bottom:647.851500px;}
.ya0{bottom:657.085500px;}
.ya{bottom:661.308000px;}
.y77{bottom:664.233000px;}
.y5e{bottom:664.824000px;}
.y40{bottom:676.399500px;}
.y9f{bottom:677.409000px;}
.y9{bottom:681.631500px;}
.y5d{bottom:685.147500px;}
.y9e{bottom:697.734000px;}
.y8{bottom:701.955000px;}
.y3f{bottom:704.619000px;}
.y76{bottom:705.297000px;}
.y5c{bottom:713.694000px;}
.y2b{bottom:715.042500px;}
.y9d{bottom:718.057500px;}
.y7{bottom:722.278500px;}
.y3e{bottom:732.840000px;}
.y2a{bottom:735.366000px;}
.y9c{bottom:738.381000px;}
.y6{bottom:742.603500px;}
.y5b{bottom:754.855500px;}
.y29{bottom:755.689500px;}
.y75{bottom:758.704500px;}
.y3d{bottom:774.000000px;}
.y28{bottom:776.014500px;}
.y74{bottom:779.028000px;}
.y5a{bottom:790.386000px;}
.y3c{bottom:794.323500px;}
.y73{bottom:799.353000px;}
.y59{bottom:810.709500px;}
.y27{bottom:817.078500px;}
.y72{bottom:819.676500px;}
.y3b{bottom:829.837500px;}
.y5{bottom:829.950000px;}
.y58{bottom:831.033000px;}
.y9b{bottom:840.000000px;}
.y3a{bottom:850.162500px;}
.y57{bottom:851.358000px;}
.y9a{bottom:860.323500px;}
.y26{bottom:870.486000px;}
.y56{bottom:871.681500px;}
.y99{bottom:880.647000px;}
.y4{bottom:881.395500px;}
.y25{bottom:890.809500px;}
.y55{bottom:892.005000px;}
.y98{bottom:900.972000px;}
.y24{bottom:911.133000px;}
.y54{bottom:912.328500px;}
.y3{bottom:918.754500px;}
.y97{bottom:921.295500px;}
.y23{bottom:931.456500px;}
.y96{bottom:941.619000px;}
.y53{bottom:947.298000px;}
.y22{bottom:951.780000px;}
.y39{bottom:951.781500px;}
.y2{bottom:956.115000px;}
.y71{bottom:961.942500px;}
.y52{bottom:967.621500px;}
.y21{bottom:972.105000px;}
.y70{bottom:982.266000px;}
.y51{bottom:987.945000px;}
.y20{bottom:992.428500px;}
.y1{bottom:993.474000px;}
.y38{bottom:1002.589500px;}
.y1f{bottom:1022.914500px;}
.y1e{bottom:1043.238000px;}
.y1d{bottom:1063.561500px;}
.h3{height:49.090950px;}
.h7{height:49.096950px;}
.h2{height:59.737577px;}
.h5{height:62.578125px;}
.h6{height:81.351562px;}
.h1{height:92.981250px;}
.h4{height:378.000000px;}
.h0{height:1188.000000px;}
.w1{width:594.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:23.715000px;}
.xc{left:32.865000px;}
.xd{left:41.625000px;}
.x17{left:123.267000px;}
.x8{left:125.182500px;}
.x1{left:131.968500px;}
.x3{left:142.522500px;}
.x1b{left:147.813000px;}
.x1a{left:149.727000px;}
.x19{left:158.106000px;}
.xb{left:162.000000px;}
.x9{left:163.767000px;}
.x7{left:166.090500px;}
.x14{left:173.020500px;}
.x6{left:182.454000px;}
.x11{left:188.362500px;}
.x10{left:195.006000px;}
.x15{left:196.903500px;}
.x2{left:199.891500px;}
.xe{left:248.010000px;}
.x18{left:259.531500px;}
.x16{left:290.520000px;}
.x4{left:305.596500px;}
.x13{left:337.119000px;}
.x12{left:361.524000px;}
.x5{left:394.033500px;}
.xa{left:454.909500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3a{word-spacing:-16.290923pt;}
.ws2a{word-spacing:-3.258185pt;}
.ws4f{word-spacing:-3.141821pt;}
.ws76{word-spacing:-2.792730pt;}
.ws5d{word-spacing:-2.501820pt;}
.ws5{word-spacing:-1.861820pt;}
.ws14{word-spacing:-1.629092pt;}
.ws2e{word-spacing:-1.454547pt;}
.wsb{word-spacing:-1.396365pt;}
.ws4{word-spacing:-1.221819pt;}
.ws83{word-spacing:-1.163637pt;}
.ws15{word-spacing:-1.144344pt;}
.ws52{word-spacing:-1.105455pt;}
.ws6a{word-spacing:-0.989092pt;}
.ws2f{word-spacing:-0.972305pt;}
.ws4e{word-spacing:-0.814546pt;}
.ws37{word-spacing:-0.581819pt;}
.ws6c{word-spacing:-0.349091pt;}
.ws34{word-spacing:-0.232727pt;}
.ws3b{word-spacing:-0.174546pt;}
.ws17{word-spacing:0.000000pt;}
.ws24{word-spacing:0.116364pt;}
.ws2d{word-spacing:0.174546pt;}
.wsa{word-spacing:0.349091pt;}
.ws41{word-spacing:0.465455pt;}
.ws43{word-spacing:0.523637pt;}
.ws36{word-spacing:0.814546pt;}
.ws77{word-spacing:1.047274pt;}
.ws50{word-spacing:1.221819pt;}
.ws3e{word-spacing:1.338183pt;}
.ws3f{word-spacing:1.371930pt;}
.ws1d{word-spacing:1.396365pt;}
.ws69{word-spacing:1.454547pt;}
.ws6b{word-spacing:1.570910pt;}
.ws78{word-spacing:1.587352pt;}
.ws35{word-spacing:1.629092pt;}
.ws46{word-spacing:1.687274pt;}
.ws68{word-spacing:1.745456pt;}
.ws4c{word-spacing:1.803638pt;}
.ws21{word-spacing:1.978183pt;}
.ws1e{word-spacing:2.036365pt;}
.ws18{word-spacing:2.094547pt;}
.wsc{word-spacing:2.560002pt;}
.ws30{word-spacing:2.676366pt;}
.ws38{word-spacing:2.792730pt;}
.ws67{word-spacing:2.850911pt;}
.ws56{word-spacing:2.967275pt;}
.ws26{word-spacing:3.025457pt;}
.wsd{word-spacing:3.083639pt;}
.ws2b{word-spacing:3.141821pt;}
.ws79{word-spacing:3.258185pt;}
.ws44{word-spacing:3.316366pt;}
.ws4b{word-spacing:3.374548pt;}
.ws2{word-spacing:3.443088pt;}
.ws81{word-spacing:3.490912pt;}
.ws1f{word-spacing:3.549094pt;}
.ws11{word-spacing:3.665458pt;}
.ws7a{word-spacing:3.760800pt;}
.ws45{word-spacing:3.898185pt;}
.ws5f{word-spacing:4.014549pt;}
.ws70{word-spacing:4.189094pt;}
.ws16{word-spacing:4.247276pt;}
.ws60{word-spacing:4.305458pt;}
.ws61{word-spacing:4.350811pt;}
.ws66{word-spacing:4.363640pt;}
.ws7c{word-spacing:4.377542pt;}
.ws74{word-spacing:4.421822pt;}
.ws13{word-spacing:4.596367pt;}
.ws42{word-spacing:4.770913pt;}
.ws29{word-spacing:4.829095pt;}
.ws3{word-spacing:4.887277pt;}
.ws63{word-spacing:4.945459pt;}
.ws20{word-spacing:5.003641pt;}
.ws39{word-spacing:5.061822pt;}
.ws22{word-spacing:5.178186pt;}
.wse{word-spacing:5.236368pt;}
.ws4a{word-spacing:5.469095pt;}
.ws55{word-spacing:5.585459pt;}
.ws10{word-spacing:5.643641pt;}
.ws12{word-spacing:5.701823pt;}
.ws7f{word-spacing:5.760005pt;}
.ws1c{word-spacing:5.992732pt;}
.ws54{word-spacing:6.283642pt;}
.ws53{word-spacing:6.400005pt;}
.ws7d{word-spacing:6.516369pt;}
.ws5c{word-spacing:6.574551pt;}
.ws58{word-spacing:6.749097pt;}
.ws3d{word-spacing:6.923642pt;}
.ws1a{word-spacing:6.981824pt;}
.ws5e{word-spacing:7.040006pt;}
.ws57{word-spacing:7.098188pt;}
.ws25{word-spacing:7.214551pt;}
.ws65{word-spacing:7.272733pt;}
.ws6{word-spacing:7.330915pt;}
.ws71{word-spacing:7.389097pt;}
.ws59{word-spacing:7.447279pt;}
.ws3c{word-spacing:7.563643pt;}
.ws6f{word-spacing:7.912734pt;}
.ws6d{word-spacing:8.029098pt;}
.ws82{word-spacing:8.084693pt;}
.ws7e{word-spacing:8.261825pt;}
.ws5a{word-spacing:8.610916pt;}
.ws40{word-spacing:8.669098pt;}
.ws6e{word-spacing:8.785462pt;}
.ws4d{word-spacing:8.901826pt;}
.ws51{word-spacing:9.192735pt;}
.ws73{word-spacing:9.453365pt;}
.ws1{word-spacing:9.477200pt;}
.ws7b{word-spacing:9.542626pt;}
.ws0{word-spacing:9.587400pt;}
.ws7{word-spacing:9.716372pt;}
.ws27{word-spacing:9.890917pt;}
.ws28{word-spacing:9.908624pt;}
.ws64{word-spacing:9.949099pt;}
.ws62{word-spacing:10.007281pt;}
.ws72{word-spacing:10.181827pt;}
.ws8{word-spacing:10.414554pt;}
.ws1b{word-spacing:10.589100pt;}
.ws2c{word-spacing:10.705463pt;}
.ws80{word-spacing:10.792522pt;}
.ws75{word-spacing:10.880009pt;}
.ws5b{word-spacing:11.229100pt;}
.ws19{word-spacing:11.694555pt;}
.wsf{word-spacing:11.927283pt;}
.ws9{word-spacing:12.160010pt;}
.ws33{word-spacing:47.476403pt;}
.ws32{word-spacing:145.571030pt;}
.ws31{word-spacing:234.345083pt;}
.ws23{word-spacing:359.200000pt;}
.ws47{word-spacing:431.947302pt;}
.ws49{word-spacing:598.787318pt;}
.ws48{word-spacing:627.880652pt;}
._3e{margin-left:-8.610916pt;}
._f{margin-left:-7.330915pt;}
._16{margin-left:-5.673316pt;}
._5{margin-left:-4.392334pt;}
._1{margin-left:-3.306000pt;}
._2{margin-left:-2.065853pt;}
._a{margin-left:-1.075968pt;}
._6{width:0.930910pt;}
._3{width:1.949489pt;}
._0{width:3.416200pt;}
._38{width:14.545467pt;}
._4{width:16.058195pt;}
._20{width:17.354150pt;}
._12{width:19.200016pt;}
._22{width:20.880316pt;}
._15{width:22.167291pt;}
._e{width:23.244052pt;}
._7{width:24.203657pt;}
._11{width:25.880564pt;}
._8{width:27.751957pt;}
._21{width:28.858206pt;}
._d{width:30.429116pt;}
._c{width:32.232754pt;}
._3b{width:33.978210pt;}
._3a{width:35.778812pt;}
._10{width:36.713551pt;}
._14{width:38.865487pt;}
._3d{width:40.931340pt;}
._37{width:43.345491pt;}
._39{width:44.858219pt;}
._3c{width:46.663443pt;}
._9{width:48.611346pt;}
._b{width:52.888110pt;}
._1a{width:64.193720pt;}
._2f{width:69.789546pt;}
._1f{width:73.425516pt;}
._1e{width:85.701890pt;}
._24{width:88.378255pt;}
._30{width:94.603715pt;}
._25{width:113.803731pt;}
._1b{width:121.454250pt;}
._1c{width:152.203763pt;}
._1d{width:170.531051pt;}
._18{width:260.758579pt;}
._19{width:270.006673pt;}
._29{width:275.353725pt;}
._23{width:303.627833pt;}
._2a{width:305.259204pt;}
._2b{width:343.251963pt;}
._35{width:346.964323pt;}
._34{width:355.255635pt;}
._13{width:358.506667pt;}
._2c{width:384.095634pt;}
._33{width:390.989668pt;}
._2d{width:414.001113pt;}
._17{width:425.367460pt;}
._2e{width:451.993872pt;}
._36{width:460.128053pt;}
._26{width:540.835182pt;}
._31{width:615.517402pt;}
._27{width:634.296641pt;}
._32{width:644.173974pt;}
._28{width:663.389974pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:69.333333pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:12.453333pt;}
.y32{bottom:32.146667pt;}
.y2d{bottom:45.666667pt;}
.y2e{bottom:113.040000pt;}
.y34{bottom:117.666667pt;}
.y1c{bottom:123.404000pt;}
.y2f{bottom:180.413333pt;}
.y1b{bottom:188.237333pt;}
.y95{bottom:192.034667pt;}
.y7d{bottom:194.333333pt;}
.y1a{bottom:206.302667pt;}
.y6f{bottom:209.786667pt;}
.y94{bottom:210.100000pt;}
.yb2{bottom:211.052000pt;}
.y50{bottom:216.926667pt;}
.y37{bottom:217.282667pt;}
.y19{bottom:224.368000pt;}
.y6e{bottom:227.852000pt;}
.y93{bottom:228.165333pt;}
.yb1{bottom:229.117333pt;}
.y36{bottom:235.349333pt;}
.y18{bottom:242.434667pt;}
.y6d{bottom:245.917333pt;}
.y92{bottom:246.230667pt;}
.yb0{bottom:247.182667pt;}
.y30{bottom:247.800000pt;}
.y35{bottom:253.414667pt;}
.y4f{bottom:253.428000pt;}
.y17{bottom:260.500000pt;}
.y6c{bottom:263.984000pt;}
.y91{bottom:264.297333pt;}
.yaf{bottom:265.248000pt;}
.y2c{bottom:279.344000pt;}
.y6b{bottom:282.049333pt;}
.yae{bottom:283.314667pt;}
.y16{bottom:291.582667pt;}
.y6a{bottom:300.114667pt;}
.y90{bottom:300.798667pt;}
.y4e{bottom:300.901333pt;}
.yad{bottom:301.380000pt;}
.y15{bottom:309.649333pt;}
.y31{bottom:315.173333pt;}
.y4d{bottom:318.966667pt;}
.yac{bottom:319.445333pt;}
.y69{bottom:325.490667pt;}
.y4c{bottom:337.032000pt;}
.yab{bottom:337.510667pt;}
.y14{bottom:340.732000pt;}
.y8f{bottom:348.272000pt;}
.y4b{bottom:355.097333pt;}
.yaa{bottom:355.576000pt;}
.y13{bottom:358.797333pt;}
.y68{bottom:362.077333pt;}
.y8e{bottom:366.337333pt;}
.y4a{bottom:373.164000pt;}
.ya9{bottom:373.642667pt;}
.y12{bottom:376.864000pt;}
.y8d{bottom:384.402667pt;}
.ya8{bottom:391.708000pt;}
.y67{bottom:394.300000pt;}
.y49{bottom:400.261333pt;}
.y8c{bottom:402.468000pt;}
.ya7{bottom:409.773333pt;}
.y85{bottom:411.413333pt;}
.y66{bottom:412.365333pt;}
.y48{bottom:418.328000pt;}
.y8b{bottom:420.534667pt;}
.ya6{bottom:427.838667pt;}
.y84{bottom:429.478667pt;}
.y65{bottom:430.430667pt;}
.y47{bottom:436.393333pt;}
.y8a{bottom:438.600000pt;}
.ya5{bottom:445.904000pt;}
.y83{bottom:447.545333pt;}
.y64{bottom:448.497333pt;}
.y46{bottom:454.458667pt;}
.y89{bottom:456.665333pt;}
.y11{bottom:461.369333pt;}
.ya4{bottom:463.970667pt;}
.y82{bottom:465.610667pt;}
.y10{bottom:479.436000pt;}
.ya3{bottom:482.036000pt;}
.y81{bottom:483.676000pt;}
.yf{bottom:497.501333pt;}
.y7c{bottom:500.101333pt;}
.y63{bottom:500.626667pt;}
.y80{bottom:501.741333pt;}
.y45{bottom:503.606667pt;}
.y88{bottom:505.124000pt;}
.ye{bottom:515.566667pt;}
.y7b{bottom:518.166667pt;}
.ya2{bottom:518.537333pt;}
.y62{bottom:518.692000pt;}
.y44{bottom:521.672000pt;}
.y87{bottom:523.189333pt;}
.yd{bottom:533.632000pt;}
.y7a{bottom:536.232000pt;}
.y61{bottom:536.757333pt;}
.y43{bottom:539.737333pt;}
.y86{bottom:541.254667pt;}
.y7f{bottom:550.200000pt;}
.yc{bottom:551.697333pt;}
.y79{bottom:554.298667pt;}
.y60{bottom:554.822667pt;}
.y42{bottom:557.802667pt;}
.ya1{bottom:566.010667pt;}
.y7e{bottom:568.265333pt;}
.yb{bottom:569.764000pt;}
.y78{bottom:572.364000pt;}
.y5f{bottom:572.889333pt;}
.y41{bottom:575.868000pt;}
.ya0{bottom:584.076000pt;}
.ya{bottom:587.829333pt;}
.y77{bottom:590.429333pt;}
.y5e{bottom:590.954667pt;}
.y40{bottom:601.244000pt;}
.y9f{bottom:602.141333pt;}
.y9{bottom:605.894667pt;}
.y5d{bottom:609.020000pt;}
.y9e{bottom:620.208000pt;}
.y8{bottom:623.960000pt;}
.y3f{bottom:626.328000pt;}
.y76{bottom:626.930667pt;}
.y5c{bottom:634.394667pt;}
.y2b{bottom:635.593333pt;}
.y9d{bottom:638.273333pt;}
.y7{bottom:642.025333pt;}
.y3e{bottom:651.413333pt;}
.y2a{bottom:653.658667pt;}
.y9c{bottom:656.338667pt;}
.y6{bottom:660.092000pt;}
.y5b{bottom:670.982667pt;}
.y29{bottom:671.724000pt;}
.y75{bottom:674.404000pt;}
.y3d{bottom:688.000000pt;}
.y28{bottom:689.790667pt;}
.y74{bottom:692.469333pt;}
.y5a{bottom:702.565333pt;}
.y3c{bottom:706.065333pt;}
.y73{bottom:710.536000pt;}
.y59{bottom:720.630667pt;}
.y27{bottom:726.292000pt;}
.y72{bottom:728.601333pt;}
.y3b{bottom:737.633333pt;}
.y5{bottom:737.733333pt;}
.y58{bottom:738.696000pt;}
.y9b{bottom:746.666667pt;}
.y3a{bottom:755.700000pt;}
.y57{bottom:756.762667pt;}
.y9a{bottom:764.732000pt;}
.y26{bottom:773.765333pt;}
.y56{bottom:774.828000pt;}
.y99{bottom:782.797333pt;}
.y4{bottom:783.462667pt;}
.y25{bottom:791.830667pt;}
.y55{bottom:792.893333pt;}
.y98{bottom:800.864000pt;}
.y24{bottom:809.896000pt;}
.y54{bottom:810.958667pt;}
.y3{bottom:816.670667pt;}
.y97{bottom:818.929333pt;}
.y23{bottom:827.961333pt;}
.y96{bottom:836.994667pt;}
.y53{bottom:842.042667pt;}
.y22{bottom:846.026667pt;}
.y39{bottom:846.028000pt;}
.y2{bottom:849.880000pt;}
.y71{bottom:855.060000pt;}
.y52{bottom:860.108000pt;}
.y21{bottom:864.093333pt;}
.y70{bottom:873.125333pt;}
.y51{bottom:878.173333pt;}
.y20{bottom:882.158667pt;}
.y1{bottom:883.088000pt;}
.y38{bottom:891.190667pt;}
.y1f{bottom:909.257333pt;}
.y1e{bottom:927.322667pt;}
.y1d{bottom:945.388000pt;}
.h3{height:43.636400pt;}
.h7{height:43.641733pt;}
.h2{height:53.100068pt;}
.h5{height:55.625000pt;}
.h6{height:72.312500pt;}
.h1{height:82.650000pt;}
.h4{height:336.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:528.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:21.080000pt;}
.xc{left:29.213333pt;}
.xd{left:37.000000pt;}
.x17{left:109.570667pt;}
.x8{left:111.273333pt;}
.x1{left:117.305333pt;}
.x3{left:126.686667pt;}
.x1b{left:131.389333pt;}
.x1a{left:133.090667pt;}
.x19{left:140.538667pt;}
.xb{left:144.000000pt;}
.x9{left:145.570667pt;}
.x7{left:147.636000pt;}
.x14{left:153.796000pt;}
.x6{left:162.181333pt;}
.x11{left:167.433333pt;}
.x10{left:173.338667pt;}
.x15{left:175.025333pt;}
.x2{left:177.681333pt;}
.xe{left:220.453333pt;}
.x18{left:230.694667pt;}
.x16{left:258.240000pt;}
.x4{left:271.641333pt;}
.x13{left:299.661333pt;}
.x12{left:321.354667pt;}
.x5{left:350.252000pt;}
.xa{left:404.364000pt;}
}




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