
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_bbcfaeb4e3ed75f01aaa0852.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e47dfdcf918ffb80bdbbc4cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_f3ac9df9c5f6cba50db69d33.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e6399f6dc847c736198082dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_2902df19b0b7b96a936d4001.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls26{letter-spacing:-0.431400px;}
.ls14{letter-spacing:-0.414000px;}
.ls9{letter-spacing:-0.240600px;}
.ls12{letter-spacing:-0.214800px;}
.lsa{letter-spacing:-0.115800px;}
.lsb{letter-spacing:-0.107400px;}
.ls2e{letter-spacing:-0.078600px;}
.ls13{letter-spacing:-0.078000px;}
.lsf{letter-spacing:-0.064800px;}
.ls1a{letter-spacing:-0.058320px;}
.ls32{letter-spacing:-0.038160px;}
.ls5{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.017760px;}
.ls34{letter-spacing:0.023760px;}
.ls27{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.174000px;}
.ls2c{letter-spacing:0.175200px;}
.ls19{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.186600px;}
.ls8{letter-spacing:0.190200px;}
.ls7{letter-spacing:0.210000px;}
.ls18{letter-spacing:0.218400px;}
.ls29{letter-spacing:0.259800px;}
.ls33{letter-spacing:0.288600px;}
.ls2d{letter-spacing:0.306000px;}
.ls28{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.393600px;}
.ls35{letter-spacing:0.479520px;}
.ls2a{letter-spacing:0.505200px;}
.ls24{letter-spacing:0.613200px;}
.ls4{letter-spacing:0.617760px;}
.lse{letter-spacing:0.618000px;}
.ls11{letter-spacing:0.637200px;}
.ls2b{letter-spacing:0.642000px;}
.ls1c{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls20{letter-spacing:2.106720px;}
.ls10{letter-spacing:5.706720px;}
.ls31{letter-spacing:12.186720px;}
.ls2f{letter-spacing:17.946720px;}
.lsc{letter-spacing:21.546720px;}
.ls3{letter-spacing:38.106720px;}
.ls30{letter-spacing:42.426720px;}
.ls23{letter-spacing:44.586720px;}
.ls1e{letter-spacing:46.026720px;}
.ls22{letter-spacing:47.466720px;}
.ls1d{letter-spacing:49.626720px;}
.ls25{letter-spacing:51.066720px;}
.ls1f{letter-spacing:56.106720px;}
.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:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws11{word-spacing:-14.147760px;}
.ws10{word-spacing:-14.010960px;}
.ws13{word-spacing:-13.811760px;}
.wsb{word-spacing:-13.724160px;}
.ws12{word-spacing:-13.680960px;}
.ws17{word-spacing:-13.529520px;}
.ws6{word-spacing:-13.505760px;}
.ws16{word-spacing:-13.467600px;}
.wsc{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.427760px;}
.ws14{word-spacing:-13.427160px;}
.ws7{word-spacing:-13.398360px;}
.ws5{word-spacing:-13.389960px;}
.ws9{word-spacing:-13.290960px;}
.ws15{word-spacing:-13.265160px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.wse{word-spacing:-0.419760px;}
.wsf{word-spacing:-0.319560px;}
.wsd{word-spacing:-0.166560px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-581.774400px;}
._6{margin-left:-3.312000px;}
._1d{margin-left:-2.275920px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._c{width:2.430240px;}
._b{width:4.123440px;}
._a{width:5.263200px;}
._d{width:6.454080px;}
._11{width:7.569600px;}
._e{width:9.557280px;}
._8{width:10.619760px;}
._7{width:11.778480px;}
._9{width:13.750560px;}
._12{width:15.657120px;}
._13{width:16.852320px;}
._14{width:18.812160px;}
._15{width:20.203200px;}
._f{width:21.573360px;}
._10{width:22.649040px;}
._1c{width:27.051840px;}
._1b{width:28.077120px;}
._18{width:31.433760px;}
._17{width:47.907600px;}
._16{width:48.933840px;}
._1a{width:66.873120px;}
._19{width:68.224320px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:6.480000px;}
.y6b{bottom:6.660000px;}
.y97{bottom:7.200000px;}
.y68{bottom:7.920000px;}
.y6e{bottom:10.080000px;}
.y6a{bottom:10.260000px;}
.y7e{bottom:17.280000px;}
.y76{bottom:21.420000px;}
.y77{bottom:27.720000px;}
.y96{bottom:28.260000px;}
.y93{bottom:35.640000px;}
.y95{bottom:49.710000px;}
.y6{bottom:61.200000px;}
.y94{bottom:70.770000px;}
.y66{bottom:92.160000px;}
.y31{bottom:103.320000px;}
.y91{bottom:109.800000px;}
.y92{bottom:111.420000px;}
.y65{bottom:113.220000px;}
.y30{bottom:124.380000px;}
.y90{bottom:124.920000px;}
.y64{bottom:134.280000px;}
.y2f{bottom:145.440000px;}
.y8f{bottom:153.750000px;}
.y63{bottom:155.370000px;}
.y2e{bottom:166.530000px;}
.y62{bottom:176.430000px;}
.y8e{bottom:182.730000px;}
.y2d{bottom:187.590000px;}
.y61{bottom:197.490000px;}
.y2c{bottom:208.650000px;}
.y8d{bottom:211.530000px;}
.y60{bottom:218.550000px;}
.y2b{bottom:229.710000px;}
.y5f{bottom:239.610000px;}
.y8c{bottom:240.510000px;}
.y2a{bottom:250.770000px;}
.y5e{bottom:260.670000px;}
.y8b{bottom:269.310000px;}
.y29{bottom:271.830000px;}
.y5d{bottom:281.730000px;}
.y28{bottom:292.890000px;}
.y89{bottom:298.290000px;}
.y5c{bottom:302.790000px;}
.y27{bottom:313.950000px;}
.y5b{bottom:323.850000px;}
.y88{bottom:327.090000px;}
.y26{bottom:335.010000px;}
.y5a{bottom:344.910000px;}
.y87{bottom:355.890000px;}
.y25{bottom:356.070000px;}
.y59{bottom:365.970000px;}
.y24{bottom:377.130000px;}
.y86{bottom:384.870000px;}
.y58{bottom:387.030000px;}
.y23{bottom:398.010000px;}
.y57{bottom:408.135000px;}
.y85{bottom:413.715000px;}
.y22{bottom:419.115000px;}
.y56{bottom:429.195000px;}
.y21{bottom:440.175000px;}
.y84{bottom:442.695000px;}
.y55{bottom:450.255000px;}
.y20{bottom:461.235000px;}
.y54{bottom:471.315000px;}
.y83{bottom:471.495000px;}
.y1f{bottom:482.295000px;}
.y53{bottom:492.375000px;}
.y82{bottom:500.295000px;}
.y1e{bottom:503.355000px;}
.y52{bottom:513.435000px;}
.y1d{bottom:524.415000px;}
.y81{bottom:529.275000px;}
.y51{bottom:534.495000px;}
.y1c{bottom:545.475000px;}
.y50{bottom:555.555000px;}
.y80{bottom:558.075000px;}
.y1b{bottom:569.055000px;}
.y4f{bottom:576.615000px;}
.y7f{bottom:587.055000px;}
.y4e{bottom:597.675000px;}
.y1a{bottom:598.935000px;}
.y7d{bottom:615.855000px;}
.y4d{bottom:618.735000px;}
.y19{bottom:619.995000px;}
.y4c{bottom:639.795000px;}
.y18{bottom:641.055000px;}
.y7c{bottom:658.725000px;}
.y4b{bottom:660.885000px;}
.y17{bottom:662.145000px;}
.y4a{bottom:681.945000px;}
.y16{bottom:683.205000px;}
.y7b{bottom:687.705000px;}
.y49{bottom:703.005000px;}
.y15{bottom:704.265000px;}
.y7a{bottom:716.505000px;}
.y48{bottom:724.065000px;}
.y14{bottom:725.325000px;}
.y47{bottom:745.125000px;}
.y79{bottom:745.305000px;}
.y13{bottom:746.385000px;}
.y46{bottom:766.005000px;}
.y12{bottom:767.445000px;}
.y78{bottom:774.285000px;}
.y45{bottom:787.065000px;}
.y11{bottom:788.505000px;}
.y75{bottom:803.085000px;}
.y44{bottom:808.125000px;}
.y10{bottom:809.565000px;}
.y43{bottom:829.185000px;}
.yf{bottom:830.625000px;}
.y42{bottom:850.245000px;}
.ye{bottom:851.685000px;}
.y74{bottom:854.205000px;}
.y41{bottom:871.305000px;}
.yd{bottom:872.745000px;}
.y73{bottom:883.005000px;}
.y40{bottom:892.365000px;}
.yc{bottom:895.965000px;}
.y72{bottom:912.030000px;}
.y3f{bottom:913.470000px;}
.yb{bottom:922.290000px;}
.y3e{bottom:934.530000px;}
.ya{bottom:939.030000px;}
.y71{bottom:940.830000px;}
.y3d{bottom:955.590000px;}
.y9{bottom:961.350000px;}
.y70{bottom:969.810000px;}
.y3c{bottom:976.650000px;}
.y8{bottom:986.550000px;}
.y3b{bottom:997.710000px;}
.y6f{bottom:998.610000px;}
.y3a{bottom:1018.770000px;}
.y7{bottom:1020.210000px;}
.y6d{bottom:1027.590000px;}
.y39{bottom:1039.830000px;}
.y6c{bottom:1056.390000px;}
.y5{bottom:1060.350000px;}
.y38{bottom:1060.890000px;}
.y37{bottom:1081.950000px;}
.y69{bottom:1085.190000px;}
.y4{bottom:1092.570000px;}
.y36{bottom:1103.010000px;}
.y67{bottom:1114.170000px;}
.y35{bottom:1124.070000px;}
.y3{bottom:1124.610000px;}
.y34{bottom:1145.130000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h12{height:2.864531px;}
.ha{height:23.580000px;}
.hc{height:28.080000px;}
.h10{height:28.116000px;}
.hb{height:28.260000px;}
.hd{height:28.296000px;}
.h7{height:38.671172px;}
.hf{height:42.156000px;}
.h8{height:45.316055px;}
.he{height:50.400000px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h11{height:85.176000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:71.640000px;}
.w6{width:158.940000px;}
.w4{width:203.790000px;}
.w7{width:210.810000px;}
.w5{width:263.955000px;}
.w8{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.xa{left:45.900000px;}
.x1{left:53.999987px;}
.x2{left:75.239987px;}
.x8{left:80.999987px;}
.x3{left:96.876000px;}
.x9{left:108.035987px;}
.x5{left:168.870000px;}
.xb{left:190.290000px;}
.xc{left:256.710000px;}
.x6{left:373.035000px;}
.x7{left:637.350000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls26{letter-spacing:-0.383467pt;}
.ls14{letter-spacing:-0.368000pt;}
.ls9{letter-spacing:-0.213867pt;}
.ls12{letter-spacing:-0.190933pt;}
.lsa{letter-spacing:-0.102933pt;}
.lsb{letter-spacing:-0.095467pt;}
.ls2e{letter-spacing:-0.069867pt;}
.ls13{letter-spacing:-0.069333pt;}
.lsf{letter-spacing:-0.057600pt;}
.ls1a{letter-spacing:-0.051840pt;}
.ls32{letter-spacing:-0.033920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.015787pt;}
.ls34{letter-spacing:0.021120pt;}
.ls27{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.154667pt;}
.ls2c{letter-spacing:0.155733pt;}
.ls19{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.165867pt;}
.ls8{letter-spacing:0.169067pt;}
.ls7{letter-spacing:0.186667pt;}
.ls18{letter-spacing:0.194133pt;}
.ls29{letter-spacing:0.230933pt;}
.ls33{letter-spacing:0.256533pt;}
.ls2d{letter-spacing:0.272000pt;}
.ls28{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.349867pt;}
.ls35{letter-spacing:0.426240pt;}
.ls2a{letter-spacing:0.449067pt;}
.ls24{letter-spacing:0.545067pt;}
.ls4{letter-spacing:0.549120pt;}
.lse{letter-spacing:0.549333pt;}
.ls11{letter-spacing:0.566400pt;}
.ls2b{letter-spacing:0.570667pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls20{letter-spacing:1.872640pt;}
.ls10{letter-spacing:5.072640pt;}
.ls31{letter-spacing:10.832640pt;}
.ls2f{letter-spacing:15.952640pt;}
.lsc{letter-spacing:19.152640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls30{letter-spacing:37.712640pt;}
.ls23{letter-spacing:39.632640pt;}
.ls1e{letter-spacing:40.912640pt;}
.ls22{letter-spacing:42.192640pt;}
.ls1d{letter-spacing:44.112640pt;}
.ls25{letter-spacing:45.392640pt;}
.ls1f{letter-spacing:49.872640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.575787pt;}
.ws10{word-spacing:-12.454187pt;}
.ws13{word-spacing:-12.277120pt;}
.wsb{word-spacing:-12.199253pt;}
.ws12{word-spacing:-12.160853pt;}
.ws17{word-spacing:-12.026240pt;}
.ws6{word-spacing:-12.005120pt;}
.ws16{word-spacing:-11.971200pt;}
.wsc{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.935787pt;}
.ws14{word-spacing:-11.935253pt;}
.ws7{word-spacing:-11.909653pt;}
.ws5{word-spacing:-11.902187pt;}
.ws9{word-spacing:-11.814187pt;}
.ws15{word-spacing:-11.791253pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.wse{word-spacing:-0.373120pt;}
.wsf{word-spacing:-0.284053pt;}
.wsd{word-spacing:-0.148053pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.132800pt;}
._6{margin-left:-2.944000pt;}
._1d{margin-left:-2.023040pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._c{width:2.160213pt;}
._b{width:3.665280pt;}
._a{width:4.678400pt;}
._d{width:5.736960pt;}
._11{width:6.728533pt;}
._e{width:8.495360pt;}
._8{width:9.439787pt;}
._7{width:10.469760pt;}
._9{width:12.222720pt;}
._12{width:13.917440pt;}
._13{width:14.979840pt;}
._14{width:16.721920pt;}
._15{width:17.958400pt;}
._f{width:19.176320pt;}
._10{width:20.132480pt;}
._1c{width:24.046080pt;}
._1b{width:24.957440pt;}
._18{width:27.941120pt;}
._17{width:42.584533pt;}
._16{width:43.496747pt;}
._1a{width:59.442773pt;}
._19{width:60.643840pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:5.760000pt;}
.y6b{bottom:5.920000pt;}
.y97{bottom:6.400000pt;}
.y68{bottom:7.040000pt;}
.y6e{bottom:8.960000pt;}
.y6a{bottom:9.120000pt;}
.y7e{bottom:15.360000pt;}
.y76{bottom:19.040000pt;}
.y77{bottom:24.640000pt;}
.y96{bottom:25.120000pt;}
.y93{bottom:31.680000pt;}
.y95{bottom:44.186667pt;}
.y6{bottom:54.400000pt;}
.y94{bottom:62.906667pt;}
.y66{bottom:81.920000pt;}
.y31{bottom:91.840000pt;}
.y91{bottom:97.600000pt;}
.y92{bottom:99.040000pt;}
.y65{bottom:100.640000pt;}
.y30{bottom:110.560000pt;}
.y90{bottom:111.040000pt;}
.y64{bottom:119.360000pt;}
.y2f{bottom:129.280000pt;}
.y8f{bottom:136.666667pt;}
.y63{bottom:138.106667pt;}
.y2e{bottom:148.026667pt;}
.y62{bottom:156.826667pt;}
.y8e{bottom:162.426667pt;}
.y2d{bottom:166.746667pt;}
.y61{bottom:175.546667pt;}
.y2c{bottom:185.466667pt;}
.y8d{bottom:188.026667pt;}
.y60{bottom:194.266667pt;}
.y2b{bottom:204.186667pt;}
.y5f{bottom:212.986667pt;}
.y8c{bottom:213.786667pt;}
.y2a{bottom:222.906667pt;}
.y5e{bottom:231.706667pt;}
.y8b{bottom:239.386667pt;}
.y29{bottom:241.626667pt;}
.y5d{bottom:250.426667pt;}
.y28{bottom:260.346667pt;}
.y89{bottom:265.146667pt;}
.y5c{bottom:269.146667pt;}
.y27{bottom:279.066667pt;}
.y5b{bottom:287.866667pt;}
.y88{bottom:290.746667pt;}
.y26{bottom:297.786667pt;}
.y5a{bottom:306.586667pt;}
.y87{bottom:316.346667pt;}
.y25{bottom:316.506667pt;}
.y59{bottom:325.306667pt;}
.y24{bottom:335.226667pt;}
.y86{bottom:342.106667pt;}
.y58{bottom:344.026667pt;}
.y23{bottom:353.786667pt;}
.y57{bottom:362.786667pt;}
.y85{bottom:367.746667pt;}
.y22{bottom:372.546667pt;}
.y56{bottom:381.506667pt;}
.y21{bottom:391.266667pt;}
.y84{bottom:393.506667pt;}
.y55{bottom:400.226667pt;}
.y20{bottom:409.986667pt;}
.y54{bottom:418.946667pt;}
.y83{bottom:419.106667pt;}
.y1f{bottom:428.706667pt;}
.y53{bottom:437.666667pt;}
.y82{bottom:444.706667pt;}
.y1e{bottom:447.426667pt;}
.y52{bottom:456.386667pt;}
.y1d{bottom:466.146667pt;}
.y81{bottom:470.466667pt;}
.y51{bottom:475.106667pt;}
.y1c{bottom:484.866667pt;}
.y50{bottom:493.826667pt;}
.y80{bottom:496.066667pt;}
.y1b{bottom:505.826667pt;}
.y4f{bottom:512.546667pt;}
.y7f{bottom:521.826667pt;}
.y4e{bottom:531.266667pt;}
.y1a{bottom:532.386667pt;}
.y7d{bottom:547.426667pt;}
.y4d{bottom:549.986667pt;}
.y19{bottom:551.106667pt;}
.y4c{bottom:568.706667pt;}
.y18{bottom:569.826667pt;}
.y7c{bottom:585.533333pt;}
.y4b{bottom:587.453333pt;}
.y17{bottom:588.573333pt;}
.y4a{bottom:606.173333pt;}
.y16{bottom:607.293333pt;}
.y7b{bottom:611.293333pt;}
.y49{bottom:624.893333pt;}
.y15{bottom:626.013333pt;}
.y7a{bottom:636.893333pt;}
.y48{bottom:643.613333pt;}
.y14{bottom:644.733333pt;}
.y47{bottom:662.333333pt;}
.y79{bottom:662.493333pt;}
.y13{bottom:663.453333pt;}
.y46{bottom:680.893333pt;}
.y12{bottom:682.173333pt;}
.y78{bottom:688.253333pt;}
.y45{bottom:699.613333pt;}
.y11{bottom:700.893333pt;}
.y75{bottom:713.853333pt;}
.y44{bottom:718.333333pt;}
.y10{bottom:719.613333pt;}
.y43{bottom:737.053333pt;}
.yf{bottom:738.333333pt;}
.y42{bottom:755.773333pt;}
.ye{bottom:757.053333pt;}
.y74{bottom:759.293333pt;}
.y41{bottom:774.493333pt;}
.yd{bottom:775.773333pt;}
.y73{bottom:784.893333pt;}
.y40{bottom:793.213333pt;}
.yc{bottom:796.413333pt;}
.y72{bottom:810.693333pt;}
.y3f{bottom:811.973333pt;}
.yb{bottom:819.813333pt;}
.y3e{bottom:830.693333pt;}
.ya{bottom:834.693333pt;}
.y71{bottom:836.293333pt;}
.y3d{bottom:849.413333pt;}
.y9{bottom:854.533333pt;}
.y70{bottom:862.053333pt;}
.y3c{bottom:868.133333pt;}
.y8{bottom:876.933333pt;}
.y3b{bottom:886.853333pt;}
.y6f{bottom:887.653333pt;}
.y3a{bottom:905.573333pt;}
.y7{bottom:906.853333pt;}
.y6d{bottom:913.413333pt;}
.y39{bottom:924.293333pt;}
.y6c{bottom:939.013333pt;}
.y5{bottom:942.533333pt;}
.y38{bottom:943.013333pt;}
.y37{bottom:961.733333pt;}
.y69{bottom:964.613333pt;}
.y4{bottom:971.173333pt;}
.y36{bottom:980.453333pt;}
.y67{bottom:990.373333pt;}
.y35{bottom:999.173333pt;}
.y3{bottom:999.653333pt;}
.y34{bottom:1017.893333pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h12{height:2.546250pt;}
.ha{height:20.960000pt;}
.hc{height:24.960000pt;}
.h10{height:24.992000pt;}
.hb{height:25.120000pt;}
.hd{height:25.152000pt;}
.h7{height:34.374375pt;}
.hf{height:37.472000pt;}
.h8{height:40.280938pt;}
.he{height:44.800000pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h11{height:75.712000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:63.680000pt;}
.w6{width:141.280000pt;}
.w4{width:181.146667pt;}
.w7{width:187.386667pt;}
.w5{width:234.626667pt;}
.w8{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.xa{left:40.800000pt;}
.x1{left:47.999988pt;}
.x2{left:66.879988pt;}
.x8{left:71.999988pt;}
.x3{left:86.112000pt;}
.x9{left:96.031988pt;}
.x5{left:150.106667pt;}
.xb{left:169.146667pt;}
.xc{left:228.186667pt;}
.x6{left:331.586667pt;}
.x7{left:566.533333pt;}
}




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