
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f359fef5372b777450531df5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.061035;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_a787632fbea5077aa5bb4893.woff')format("woff");}.ff3{font-family:ff3;line-height:0.876465;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_72b554f9532e42e820ec905f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_0918e66bf1f6a5e1ec0e7cd9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966797;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_ed72ca8cd15add106949ced6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_29dcc99299bc3860071c4314.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_441684008fcb03dbb749aa07.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d0d654ea329ac6386639828e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.957031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2e4f9e0c6f71e7c2ecc8bc20.woff')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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;}
.ls9{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012960px;}
.lsc{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.864000px;}
.lsf{letter-spacing:1.440000px;}
.ls12{letter-spacing:2.160000px;}
.ls13{letter-spacing:5.760000px;}
.lse{letter-spacing:7.920000px;}
.ls11{letter-spacing:9.360000px;}
.ls15{letter-spacing:12.240000px;}
.ls14{letter-spacing:28.080000px;}
.lsd{letter-spacing:33.960000px;}
.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;}
}
.ws7{word-spacing:-18.864000px;}
.ws5{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.160160px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-4.741334px;}
._b{margin-left:-3.504860px;}
._3{margin-left:-2.389591px;}
._0{margin-left:-1.138409px;}
._1{width:1.062515px;}
._15{width:2.068456px;}
._2{width:3.086352px;}
._7{width:4.142591px;}
._9{width:5.217409px;}
._8{width:6.480000px;}
._6{width:8.352000px;}
._a{width:10.008000px;}
._4{width:11.160000px;}
._5{width:13.044000px;}
._f{width:14.976000px;}
._12{width:16.632000px;}
._10{width:19.008000px;}
._11{width:20.064000px;}
._c{width:21.240000px;}
._d{width:22.498971px;}
._16{width:23.688000px;}
._17{width:24.696000px;}
._13{width:26.208000px;}
._14{width:27.305485px;}
._18{width:28.525029px;}
._19{width:30.729941px;}
._1a{width:32.544000px;}
._1b{width:34.032000px;}
._1c{width:108.696000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(0,176,240);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,0);}
.fc1{color:rgb(79,129,189);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:75.893905px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.600000px;}
.y2{bottom:56.340000px;}
.y70{bottom:75.636000px;}
.y51{bottom:81.216000px;}
.yf6{bottom:86.976000px;}
.y27{bottom:87.516000px;}
.yb3{bottom:90.576000px;}
.y10f{bottom:92.376000px;}
.yd1{bottom:92.736000px;}
.y6f{bottom:96.336000px;}
.y50{bottom:101.916000px;}
.yeb{bottom:107.676000px;}
.yb2{bottom:111.276000px;}
.yd0{bottom:113.436000px;}
.y6e{bottom:117.036000px;}
.y4f{bottom:122.616000px;}
.y26{bottom:123.336000px;}
.y9b{bottom:129.276000px;}
.yb1{bottom:131.976000px;}
.y10e{bottom:133.956000px;}
.ycf{bottom:134.136000px;}
.y6d{bottom:137.736000px;}
.y4e{bottom:143.316000px;}
.y9a{bottom:149.976000px;}
.yb0{bottom:152.670000px;}
.yce{bottom:154.830000px;}
.y6c{bottom:158.430000px;}
.y25{bottom:158.970000px;}
.y4d{bottom:164.010000px;}
.y99{bottom:170.670000px;}
.yaf{bottom:173.370000px;}
.ycd{bottom:175.530000px;}
.y10d{bottom:175.710000px;}
.y6b{bottom:179.130000px;}
.yf5{bottom:184.710000px;}
.y98{bottom:191.370000px;}
.yae{bottom:194.070000px;}
.y24{bottom:194.610000px;}
.y4c{bottom:199.830000px;}
.yf4{bottom:205.410000px;}
.ycc{bottom:211.170000px;}
.y97{bottom:212.070000px;}
.yad{bottom:214.770000px;}
.y10c{bottom:217.470000px;}
.y4b{bottom:220.530000px;}
.yf3{bottom:226.110000px;}
.y23{bottom:230.250000px;}
.y96{bottom:232.770000px;}
.yac{bottom:235.470000px;}
.y4a{bottom:241.230000px;}
.ycb{bottom:246.810000px;}
.y10b{bottom:253.110000px;}
.y95{bottom:253.470000px;}
.ye2{bottom:256.170000px;}
.y49{bottom:261.930000px;}
.y22{bottom:266.070000px;}
.yca{bottom:267.510000px;}
.yab{bottom:271.110000px;}
.y94{bottom:274.170000px;}
.y6a{bottom:276.870000px;}
.y48{bottom:282.630000px;}
.y21{bottom:286.770000px;}
.yc9{bottom:288.210000px;}
.y10a{bottom:288.750000px;}
.y93{bottom:294.870000px;}
.y69{bottom:297.570000px;}
.y47{bottom:303.330000px;}
.yaa{bottom:306.930000px;}
.y20{bottom:307.470000px;}
.yc8{bottom:308.910000px;}
.y109{bottom:309.450000px;}
.y92{bottom:315.570000px;}
.y68{bottom:318.315000px;}
.y46{bottom:324.075000px;}
.ya9{bottom:327.675000px;}
.y1f{bottom:328.215000px;}
.yc7{bottom:329.655000px;}
.y91{bottom:336.315000px;}
.y67{bottom:339.015000px;}
.y45{bottom:344.595000px;}
.y108{bottom:345.315000px;}
.ya8{bottom:348.375000px;}
.y1e{bottom:348.915000px;}
.yc6{bottom:350.355000px;}
.y90{bottom:357.015000px;}
.ye1{bottom:359.715000px;}
.y44{bottom:365.295000px;}
.ya7{bottom:369.075000px;}
.y1d{bottom:369.615000px;}
.yc5{bottom:371.055000px;}
.y66{bottom:374.655000px;}
.y8f{bottom:377.715000px;}
.ye0{bottom:380.415000px;}
.y107{bottom:380.955000px;}
.y43{bottom:385.995000px;}
.ya6{bottom:389.595000px;}
.y1c{bottom:390.315000px;}
.yc4{bottom:391.755000px;}
.y65{bottom:395.355000px;}
.y8e{bottom:398.415000px;}
.ydc{bottom:401.115000px;}
.y106{bottom:401.655000px;}
.y42{bottom:406.695000px;}
.ya5{bottom:410.295000px;}
.y1b{bottom:411.015000px;}
.y64{bottom:416.055000px;}
.y8d{bottom:419.115000px;}
.yea{bottom:421.815000px;}
.y41{bottom:427.395000px;}
.ya4{bottom:430.995000px;}
.y1a{bottom:431.715000px;}
.y63{bottom:436.755000px;}
.y105{bottom:437.295000px;}
.y8c{bottom:439.815000px;}
.ye9{bottom:442.515000px;}
.y40{bottom:448.095000px;}
.y19{bottom:452.415000px;}
.y62{bottom:457.455000px;}
.y104{bottom:457.995000px;}
.y8b{bottom:460.515000px;}
.yc3{bottom:463.215000px;}
.ya3{bottom:466.815000px;}
.y3f{bottom:468.795000px;}
.y18{bottom:473.115000px;}
.y61{bottom:478.155000px;}
.yc2{bottom:483.915000px;}
.ya2{bottom:487.515000px;}
.y3e{bottom:489.495000px;}
.y17{bottom:493.815000px;}
.y8a{bottom:496.155000px;}
.ydb{bottom:498.855000px;}
.yc1{bottom:504.615000px;}
.ya1{bottom:508.215000px;}
.y3d{bottom:510.195000px;}
.y60{bottom:513.795000px;}
.y16{bottom:514.515000px;}
.y89{bottom:516.855000px;}
.yda{bottom:519.555000px;}
.yc0{bottom:525.315000px;}
.ya0{bottom:528.915000px;}
.y103{bottom:529.455000px;}
.y3c{bottom:530.895000px;}
.y5f{bottom:534.495000px;}
.y15{bottom:535.215000px;}
.y88{bottom:537.555000px;}
.ydf{bottom:540.255000px;}
.ybf{bottom:546.015000px;}
.y9f{bottom:549.615000px;}
.y3b{bottom:551.595000px;}
.y5e{bottom:555.195000px;}
.y14{bottom:555.915000px;}
.y87{bottom:558.255000px;}
.yde{bottom:560.955000px;}
.y102{bottom:565.095000px;}
.ybe{bottom:566.715000px;}
.y9e{bottom:570.345000px;}
.y3a{bottom:572.325000px;}
.y5d{bottom:575.925000px;}
.y13{bottom:576.645000px;}
.y86{bottom:578.985000px;}
.ydd{bottom:581.685000px;}
.ye8{bottom:587.445000px;}
.y9d{bottom:591.045000px;}
.y5c{bottom:596.625000px;}
.y85{bottom:599.685000px;}
.y101{bottom:600.945000px;}
.ybd{bottom:602.385000px;}
.y39{bottom:608.145000px;}
.y9c{bottom:611.745000px;}
.y12{bottom:612.285000px;}
.yd9{bottom:617.325000px;}
.y84{bottom:620.385000px;}
.ybc{bottom:623.085000px;}
.ye7{bottom:628.845000px;}
.y5b{bottom:632.445000px;}
.y100{bottom:636.585000px;}
.yd8{bottom:638.025000px;}
.y38{bottom:643.785000px;}
.y11{bottom:647.925000px;}
.ye6{bottom:649.545000px;}
.y5a{bottom:653.145000px;}
.y83{bottom:656.025000px;}
.yd7{bottom:658.725000px;}
.ybb{bottom:664.485000px;}
.ye5{bottom:670.245000px;}
.yff{bottom:672.225000px;}
.y59{bottom:673.845000px;}
.y82{bottom:676.725000px;}
.y37{bottom:679.425000px;}
.y10{bottom:683.745000px;}
.yba{bottom:685.185000px;}
.yfe{bottom:692.925000px;}
.y58{bottom:694.545000px;}
.y81{bottom:697.425000px;}
.yd6{bottom:700.125000px;}
.yb9{bottom:705.885000px;}
.y36{bottom:715.245000px;}
.y80{bottom:718.125000px;}
.yf{bottom:719.385000px;}
.yd5{bottom:720.825000px;}
.yb8{bottom:726.585000px;}
.yfd{bottom:728.745000px;}
.y35{bottom:735.945000px;}
.y7f{bottom:738.825000px;}
.yd4{bottom:741.525000px;}
.yb7{bottom:747.285000px;}
.ye{bottom:755.025000px;}
.y34{bottom:756.645000px;}
.y7e{bottom:759.525000px;}
.yd3{bottom:762.225000px;}
.yfc{bottom:764.385000px;}
.yb6{bottom:767.985000px;}
.y33{bottom:777.345000px;}
.y7d{bottom:780.225000px;}
.yd2{bottom:782.925000px;}
.yb5{bottom:788.685000px;}
.yd{bottom:790.845000px;}
.y32{bottom:798.045000px;}
.yfb{bottom:800.025000px;}
.y7c{bottom:800.925000px;}
.ye4{bottom:803.625000px;}
.y31{bottom:818.745000px;}
.y7b{bottom:821.670000px;}
.yb4{bottom:824.370000px;}
.yc{bottom:826.530000px;}
.yfa{bottom:835.890000px;}
.y30{bottom:839.490000px;}
.y7a{bottom:842.370000px;}
.ye3{bottom:845.070000px;}
.yf9{bottom:856.590000px;}
.y2f{bottom:860.190000px;}
.yb{bottom:862.170000px;}
.y79{bottom:863.070000px;}
.yf2{bottom:865.770000px;}
.yed{bottom:875.130000px;}
.y2e{bottom:880.890000px;}
.y78{bottom:883.770000px;}
.yf1{bottom:886.470000px;}
.yf8{bottom:892.230000px;}
.yec{bottom:895.830000px;}
.ya{bottom:897.990000px;}
.y2d{bottom:901.590000px;}
.y77{bottom:904.470000px;}
.yf0{bottom:907.170000px;}
.yf7{bottom:912.930000px;}
.y57{bottom:916.530000px;}
.y2c{bottom:922.290000px;}
.y76{bottom:925.170000px;}
.yef{bottom:927.870000px;}
.y9{bottom:933.630000px;}
.y56{bottom:937.230000px;}
.y2b{bottom:942.990000px;}
.y75{bottom:945.870000px;}
.yee{bottom:948.570000px;}
.y55{bottom:957.930000px;}
.y2a{bottom:963.690000px;}
.y74{bottom:966.570000px;}
.y8{bottom:969.270000px;}
.y54{bottom:978.630000px;}
.y29{bottom:984.390000px;}
.y73{bottom:987.270000px;}
.y53{bottom:999.330000px;}
.y7{bottom:1005.090000px;}
.y72{bottom:1007.970000px;}
.y52{bottom:1020.030000px;}
.y28{bottom:1025.790000px;}
.y71{bottom:1028.670000px;}
.y6{bottom:1040.730000px;}
.y5{bottom:1061.430000px;}
.y1{bottom:1082.700000px;}
.y3{bottom:1106.100000px;}
.h2{height:21.600000px;}
.h4{height:53.367188px;}
.h3{height:60.515013px;}
.h5{height:63.175781px;}
.h1{height:65.884219px;}
.h0{height:1188.000000px;}
.w2{width:699.225000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:46.974000px;}
.x1{left:108.035986px;}
.x2{left:109.476000px;}
.x5{left:116.855986px;}
.xf{left:135.035986px;}
.x4{left:162.209986px;}
.x8{left:315.614986px;}
.xd{left:330.194986px;}
.x7{left:356.474986px;}
.x9{left:361.514986px;}
.xc{left:382.034986px;}
.xe{left:387.974986px;}
.xa{left:409.574986px;}
.xb{left:442.514986px;}
.x6{left:459.074986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.011520pt;}
.lsc{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.768000pt;}
.lsf{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.920000pt;}
.ls13{letter-spacing:5.120000pt;}
.lse{letter-spacing:7.040000pt;}
.ls11{letter-spacing:8.320000pt;}
.ls15{letter-spacing:10.880000pt;}
.ls14{letter-spacing:24.960000pt;}
.lsd{letter-spacing:30.186667pt;}
.ws7{word-spacing:-16.768000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.697920pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-4.214519pt;}
._b{margin-left:-3.115431pt;}
._3{margin-left:-2.124081pt;}
._0{margin-left:-1.011919pt;}
._1{width:0.944457pt;}
._15{width:1.838628pt;}
._2{width:2.743424pt;}
._7{width:3.682304pt;}
._9{width:4.637696pt;}
._8{width:5.760000pt;}
._6{width:7.424000pt;}
._a{width:8.896000pt;}
._4{width:9.920000pt;}
._5{width:11.594667pt;}
._f{width:13.312000pt;}
._12{width:14.784000pt;}
._10{width:16.896000pt;}
._11{width:17.834667pt;}
._c{width:18.880000pt;}
._d{width:19.999085pt;}
._16{width:21.056000pt;}
._17{width:21.952000pt;}
._13{width:23.296000pt;}
._14{width:24.271543pt;}
._18{width:25.355582pt;}
._19{width:27.315503pt;}
._1a{width:28.928000pt;}
._1b{width:30.250667pt;}
._1c{width:96.618667pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:67.461249pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.200000pt;}
.y2{bottom:50.080000pt;}
.y70{bottom:67.232000pt;}
.y51{bottom:72.192000pt;}
.yf6{bottom:77.312000pt;}
.y27{bottom:77.792000pt;}
.yb3{bottom:80.512000pt;}
.y10f{bottom:82.112000pt;}
.yd1{bottom:82.432000pt;}
.y6f{bottom:85.632000pt;}
.y50{bottom:90.592000pt;}
.yeb{bottom:95.712000pt;}
.yb2{bottom:98.912000pt;}
.yd0{bottom:100.832000pt;}
.y6e{bottom:104.032000pt;}
.y4f{bottom:108.992000pt;}
.y26{bottom:109.632000pt;}
.y9b{bottom:114.912000pt;}
.yb1{bottom:117.312000pt;}
.y10e{bottom:119.072000pt;}
.ycf{bottom:119.232000pt;}
.y6d{bottom:122.432000pt;}
.y4e{bottom:127.392000pt;}
.y9a{bottom:133.312000pt;}
.yb0{bottom:135.706667pt;}
.yce{bottom:137.626667pt;}
.y6c{bottom:140.826667pt;}
.y25{bottom:141.306667pt;}
.y4d{bottom:145.786667pt;}
.y99{bottom:151.706667pt;}
.yaf{bottom:154.106667pt;}
.ycd{bottom:156.026667pt;}
.y10d{bottom:156.186667pt;}
.y6b{bottom:159.226667pt;}
.yf5{bottom:164.186667pt;}
.y98{bottom:170.106667pt;}
.yae{bottom:172.506667pt;}
.y24{bottom:172.986667pt;}
.y4c{bottom:177.626667pt;}
.yf4{bottom:182.586667pt;}
.ycc{bottom:187.706667pt;}
.y97{bottom:188.506667pt;}
.yad{bottom:190.906667pt;}
.y10c{bottom:193.306667pt;}
.y4b{bottom:196.026667pt;}
.yf3{bottom:200.986667pt;}
.y23{bottom:204.666667pt;}
.y96{bottom:206.906667pt;}
.yac{bottom:209.306667pt;}
.y4a{bottom:214.426667pt;}
.ycb{bottom:219.386667pt;}
.y10b{bottom:224.986667pt;}
.y95{bottom:225.306667pt;}
.ye2{bottom:227.706667pt;}
.y49{bottom:232.826667pt;}
.y22{bottom:236.506667pt;}
.yca{bottom:237.786667pt;}
.yab{bottom:240.986667pt;}
.y94{bottom:243.706667pt;}
.y6a{bottom:246.106667pt;}
.y48{bottom:251.226667pt;}
.y21{bottom:254.906667pt;}
.yc9{bottom:256.186667pt;}
.y10a{bottom:256.666667pt;}
.y93{bottom:262.106667pt;}
.y69{bottom:264.506667pt;}
.y47{bottom:269.626667pt;}
.yaa{bottom:272.826667pt;}
.y20{bottom:273.306667pt;}
.yc8{bottom:274.586667pt;}
.y109{bottom:275.066667pt;}
.y92{bottom:280.506667pt;}
.y68{bottom:282.946667pt;}
.y46{bottom:288.066667pt;}
.ya9{bottom:291.266667pt;}
.y1f{bottom:291.746667pt;}
.yc7{bottom:293.026667pt;}
.y91{bottom:298.946667pt;}
.y67{bottom:301.346667pt;}
.y45{bottom:306.306667pt;}
.y108{bottom:306.946667pt;}
.ya8{bottom:309.666667pt;}
.y1e{bottom:310.146667pt;}
.yc6{bottom:311.426667pt;}
.y90{bottom:317.346667pt;}
.ye1{bottom:319.746667pt;}
.y44{bottom:324.706667pt;}
.ya7{bottom:328.066667pt;}
.y1d{bottom:328.546667pt;}
.yc5{bottom:329.826667pt;}
.y66{bottom:333.026667pt;}
.y8f{bottom:335.746667pt;}
.ye0{bottom:338.146667pt;}
.y107{bottom:338.626667pt;}
.y43{bottom:343.106667pt;}
.ya6{bottom:346.306667pt;}
.y1c{bottom:346.946667pt;}
.yc4{bottom:348.226667pt;}
.y65{bottom:351.426667pt;}
.y8e{bottom:354.146667pt;}
.ydc{bottom:356.546667pt;}
.y106{bottom:357.026667pt;}
.y42{bottom:361.506667pt;}
.ya5{bottom:364.706667pt;}
.y1b{bottom:365.346667pt;}
.y64{bottom:369.826667pt;}
.y8d{bottom:372.546667pt;}
.yea{bottom:374.946667pt;}
.y41{bottom:379.906667pt;}
.ya4{bottom:383.106667pt;}
.y1a{bottom:383.746667pt;}
.y63{bottom:388.226667pt;}
.y105{bottom:388.706667pt;}
.y8c{bottom:390.946667pt;}
.ye9{bottom:393.346667pt;}
.y40{bottom:398.306667pt;}
.y19{bottom:402.146667pt;}
.y62{bottom:406.626667pt;}
.y104{bottom:407.106667pt;}
.y8b{bottom:409.346667pt;}
.yc3{bottom:411.746667pt;}
.ya3{bottom:414.946667pt;}
.y3f{bottom:416.706667pt;}
.y18{bottom:420.546667pt;}
.y61{bottom:425.026667pt;}
.yc2{bottom:430.146667pt;}
.ya2{bottom:433.346667pt;}
.y3e{bottom:435.106667pt;}
.y17{bottom:438.946667pt;}
.y8a{bottom:441.026667pt;}
.ydb{bottom:443.426667pt;}
.yc1{bottom:448.546667pt;}
.ya1{bottom:451.746667pt;}
.y3d{bottom:453.506667pt;}
.y60{bottom:456.706667pt;}
.y16{bottom:457.346667pt;}
.y89{bottom:459.426667pt;}
.yda{bottom:461.826667pt;}
.yc0{bottom:466.946667pt;}
.ya0{bottom:470.146667pt;}
.y103{bottom:470.626667pt;}
.y3c{bottom:471.906667pt;}
.y5f{bottom:475.106667pt;}
.y15{bottom:475.746667pt;}
.y88{bottom:477.826667pt;}
.ydf{bottom:480.226667pt;}
.ybf{bottom:485.346667pt;}
.y9f{bottom:488.546667pt;}
.y3b{bottom:490.306667pt;}
.y5e{bottom:493.506667pt;}
.y14{bottom:494.146667pt;}
.y87{bottom:496.226667pt;}
.yde{bottom:498.626667pt;}
.y102{bottom:502.306667pt;}
.ybe{bottom:503.746667pt;}
.y9e{bottom:506.973333pt;}
.y3a{bottom:508.733333pt;}
.y5d{bottom:511.933333pt;}
.y13{bottom:512.573333pt;}
.y86{bottom:514.653333pt;}
.ydd{bottom:517.053333pt;}
.ye8{bottom:522.173333pt;}
.y9d{bottom:525.373333pt;}
.y5c{bottom:530.333333pt;}
.y85{bottom:533.053333pt;}
.y101{bottom:534.173333pt;}
.ybd{bottom:535.453333pt;}
.y39{bottom:540.573333pt;}
.y9c{bottom:543.773333pt;}
.y12{bottom:544.253333pt;}
.yd9{bottom:548.733333pt;}
.y84{bottom:551.453333pt;}
.ybc{bottom:553.853333pt;}
.ye7{bottom:558.973333pt;}
.y5b{bottom:562.173333pt;}
.y100{bottom:565.853333pt;}
.yd8{bottom:567.133333pt;}
.y38{bottom:572.253333pt;}
.y11{bottom:575.933333pt;}
.ye6{bottom:577.373333pt;}
.y5a{bottom:580.573333pt;}
.y83{bottom:583.133333pt;}
.yd7{bottom:585.533333pt;}
.ybb{bottom:590.653333pt;}
.ye5{bottom:595.773333pt;}
.yff{bottom:597.533333pt;}
.y59{bottom:598.973333pt;}
.y82{bottom:601.533333pt;}
.y37{bottom:603.933333pt;}
.y10{bottom:607.773333pt;}
.yba{bottom:609.053333pt;}
.yfe{bottom:615.933333pt;}
.y58{bottom:617.373333pt;}
.y81{bottom:619.933333pt;}
.yd6{bottom:622.333333pt;}
.yb9{bottom:627.453333pt;}
.y36{bottom:635.773333pt;}
.y80{bottom:638.333333pt;}
.yf{bottom:639.453333pt;}
.yd5{bottom:640.733333pt;}
.yb8{bottom:645.853333pt;}
.yfd{bottom:647.773333pt;}
.y35{bottom:654.173333pt;}
.y7f{bottom:656.733333pt;}
.yd4{bottom:659.133333pt;}
.yb7{bottom:664.253333pt;}
.ye{bottom:671.133333pt;}
.y34{bottom:672.573333pt;}
.y7e{bottom:675.133333pt;}
.yd3{bottom:677.533333pt;}
.yfc{bottom:679.453333pt;}
.yb6{bottom:682.653333pt;}
.y33{bottom:690.973333pt;}
.y7d{bottom:693.533333pt;}
.yd2{bottom:695.933333pt;}
.yb5{bottom:701.053333pt;}
.yd{bottom:702.973333pt;}
.y32{bottom:709.373333pt;}
.yfb{bottom:711.133333pt;}
.y7c{bottom:711.933333pt;}
.ye4{bottom:714.333333pt;}
.y31{bottom:727.773333pt;}
.y7b{bottom:730.373333pt;}
.yb4{bottom:732.773333pt;}
.yc{bottom:734.693333pt;}
.yfa{bottom:743.013333pt;}
.y30{bottom:746.213333pt;}
.y7a{bottom:748.773333pt;}
.ye3{bottom:751.173333pt;}
.yf9{bottom:761.413333pt;}
.y2f{bottom:764.613333pt;}
.yb{bottom:766.373333pt;}
.y79{bottom:767.173333pt;}
.yf2{bottom:769.573333pt;}
.yed{bottom:777.893333pt;}
.y2e{bottom:783.013333pt;}
.y78{bottom:785.573333pt;}
.yf1{bottom:787.973333pt;}
.yf8{bottom:793.093333pt;}
.yec{bottom:796.293333pt;}
.ya{bottom:798.213333pt;}
.y2d{bottom:801.413333pt;}
.y77{bottom:803.973333pt;}
.yf0{bottom:806.373333pt;}
.yf7{bottom:811.493333pt;}
.y57{bottom:814.693333pt;}
.y2c{bottom:819.813333pt;}
.y76{bottom:822.373333pt;}
.yef{bottom:824.773333pt;}
.y9{bottom:829.893333pt;}
.y56{bottom:833.093333pt;}
.y2b{bottom:838.213333pt;}
.y75{bottom:840.773333pt;}
.yee{bottom:843.173333pt;}
.y55{bottom:851.493333pt;}
.y2a{bottom:856.613333pt;}
.y74{bottom:859.173333pt;}
.y8{bottom:861.573333pt;}
.y54{bottom:869.893333pt;}
.y29{bottom:875.013333pt;}
.y73{bottom:877.573333pt;}
.y53{bottom:888.293333pt;}
.y7{bottom:893.413333pt;}
.y72{bottom:895.973333pt;}
.y52{bottom:906.693333pt;}
.y28{bottom:911.813333pt;}
.y71{bottom:914.373333pt;}
.y6{bottom:925.093333pt;}
.y5{bottom:943.493333pt;}
.y1{bottom:962.400000pt;}
.y3{bottom:983.200000pt;}
.h2{height:19.200000pt;}
.h4{height:47.437500pt;}
.h3{height:53.791123pt;}
.h5{height:56.156250pt;}
.h1{height:58.563750pt;}
.h0{height:1056.000000pt;}
.w2{width:621.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:41.754667pt;}
.x1{left:96.031988pt;}
.x2{left:97.312000pt;}
.x5{left:103.871988pt;}
.xf{left:120.031988pt;}
.x4{left:144.186655pt;}
.x8{left:280.546655pt;}
.xd{left:293.506655pt;}
.x7{left:316.866655pt;}
.x9{left:321.346655pt;}
.xc{left:339.586655pt;}
.xe{left:344.866655pt;}
.xa{left:364.066655pt;}
.xb{left:393.346655pt;}
.x6{left:408.066655pt;}
}




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