
    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_0d1b09fcefb0f3d0cce00487.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_67b83aae3da464d68b1e0c32.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_5b1d1aac3a72d22f176fdfea.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_21823cb3606a9358d59440dc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_6635df97c55b0d36edb5cfed.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c63f3ddaf19f96d39059cef4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cce8014068fc26ae6917d37e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8ab5b76e9cd1009a841b825d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.091309;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_f38b2e2dd7d9bdc60630cd9f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b46adf5b1c5e704a6ac095c0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249098,0.000000,0.000000,0.250000,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);}
.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);}
.v3{vertical-align:-40.283116px;}
.v5{vertical-align:-22.500000px;}
.v1{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.500000px;}
.v4{vertical-align:22.500000px;}
.ls12{letter-spacing:-6.540000px;}
.ls1b{letter-spacing:-5.628000px;}
.ls17{letter-spacing:-3.270000px;}
.lsf{letter-spacing:-2.250000px;}
.ls18{letter-spacing:-2.034000px;}
.ls20{letter-spacing:-1.230000px;}
.lsd{letter-spacing:-1.128000px;}
.ls8{letter-spacing:-0.876000px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.675000px;}
.ls16{letter-spacing:0.735000px;}
.ls7{letter-spacing:1.128000px;}
.ls1c{letter-spacing:1.233000px;}
.ls1d{letter-spacing:1.465500px;}
.ls9{letter-spacing:1.524000px;}
.ls1{letter-spacing:1.525500px;}
.ls1f{letter-spacing:1.645500px;}
.ls1a{letter-spacing:1.675500px;}
.ls19{letter-spacing:1.705500px;}
.ls0{letter-spacing:2.142000px;}
.ls10{letter-spacing:2.250000px;}
.ls14{letter-spacing:2.370000px;}
.ls15{letter-spacing:3.375000px;}
.lse{letter-spacing:3.378000px;}
.lsb{letter-spacing:3.495000px;}
.lsc{letter-spacing:3.555000px;}
.ls2{letter-spacing:7.875000px;}
.lsa{letter-spacing:12.375000px;}
.ls4{letter-spacing:16.875000px;}
.ls5{letter-spacing:17.055000px;}
.ls3{letter-spacing:61.875000px;}
.ls1e{letter-spacing:172.413000px;}
.ls11{letter-spacing:193.562000px;}
.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:-21.375000px;}
.ws8{word-spacing:-21.267000px;}
.ws3{word-spacing:-20.649000px;}
.ws1{word-spacing:-19.125000px;}
.wsb{word-spacing:-17.895000px;}
.ws9{word-spacing:-17.091000px;}
.ws4{word-spacing:-16.875000px;}
.ws5{word-spacing:-14.625000px;}
.wsa{word-spacing:-12.375000px;}
.ws6{word-spacing:-0.036201px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:0.767850px;}
._35{margin-left:-9.854250px;}
._3{margin-left:-7.879800px;}
._d{margin-left:-6.156000px;}
._6{margin-left:-4.804050px;}
._2{margin-left:-3.340350px;}
._0{margin-left:-1.798650px;}
._1{width:1.456050px;}
._5{width:2.540550px;}
._4{width:4.188000px;}
._b{width:5.399550px;}
._25{width:6.493500px;}
._e{width:7.507950px;}
._f{width:8.718000px;}
._28{width:9.849000px;}
._a{width:11.456700px;}
._7{width:12.981150px;}
._31{width:14.572950px;}
._1a{width:16.084350px;}
._9{width:17.443050px;}
._c{width:20.425500px;}
._8{width:22.074000px;}
._1c{width:24.783300px;}
._1b{width:26.099400px;}
._29{width:27.553950px;}
._1d{width:29.843550px;}
._1e{width:31.267350px;}
._20{width:34.047900px;}
._1f{width:35.554650px;}
._21{width:39.212400px;}
._22{width:40.445550px;}
._11{width:43.940700px;}
._37{width:47.465400px;}
._10{width:49.042500px;}
._24{width:52.664400px;}
._23{width:53.902950px;}
._14{width:57.506100px;}
._13{width:61.362000px;}
._12{width:62.645850px;}
._27{width:66.550800px;}
._36{width:68.053350px;}
._26{width:70.854450px;}
._15{width:75.041400px;}
._17{width:76.087650px;}
._34{width:79.869450px;}
._16{width:81.248100px;}
._32{width:93.421950px;}
._2c{width:98.340000px;}
._33{width:120.015750px;}
._2b{width:139.435800px;}
._30{width:152.430600px;}
._18{width:169.682100px;}
._19{width:170.786250px;}
._2d{width:201.124500px;}
._2e{width:219.899550px;}
._2f{width:272.946300px;}
._2a{width:845.895000px;}
.fc5{color:transparent;}
.fc4{color:rgb(54,95,145);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,80);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:9.000000px;}
.fs7{font-size:36.201018px;}
.fs6{font-size:49.500000px;}
.fs1{font-size:67.500000px;}
.fs5{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.fs9{font-size:94.500000px;}
.fs2{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:0.015000px;}
.y84{bottom:1.140000px;}
.y36{bottom:2.528414px;}
.y37{bottom:4.029816px;}
.y59{bottom:6.750000px;}
.y47{bottom:7.875000px;}
.y4a{bottom:7.905000px;}
.y63{bottom:7.920000px;}
.y38{bottom:10.566325px;}
.y5{bottom:14.662500px;}
.y83{bottom:18.015000px;}
.y6f{bottom:20.250000px;}
.y4d{bottom:20.295000px;}
.y81{bottom:31.545000px;}
.y58{bottom:32.655000px;}
.y3{bottom:32.662500px;}
.y88{bottom:32.670000px;}
.y5d{bottom:33.750000px;}
.y87{bottom:33.780000px;}
.y4e{bottom:33.795000px;}
.y7e{bottom:34.920000px;}
.y7b{bottom:39.405000px;}
.y82{bottom:43.920000px;}
.y73{bottom:45.030000px;}
.y32{bottom:46.853100px;}
.y76{bottom:48.405000px;}
.y79{bottom:52.935000px;}
.y5f{bottom:58.545000px;}
.y57{bottom:58.575000px;}
.y5c{bottom:59.670000px;}
.y62{bottom:59.715000px;}
.y7d{bottom:60.795000px;}
.y39{bottom:61.034938px;}
.y4{bottom:61.912500px;}
.y77{bottom:61.950000px;}
.y7a{bottom:65.310000px;}
.y71{bottom:70.950000px;}
.y31{bottom:72.514309px;}
.y75{bottom:74.325000px;}
.y56{bottom:84.450000px;}
.y5b{bottom:85.575000px;}
.y3a{bottom:86.997049px;}
.y72{bottom:96.855000px;}
.y86{bottom:111.480000px;}
.y30{bottom:119.307229px;}
.y33{bottom:123.933581px;}
.y6d{bottom:126.112500px;}
.y2d{bottom:130.612500px;}
.y54{bottom:132.862500px;}
.y35{bottom:142.730488px;}
.y34{bottom:150.121368px;}
.y6c{bottom:151.995000px;}
.y2c{bottom:156.480000px;}
.y53{bottom:158.775000px;}
.y8f{bottom:166.650000px;}
.y6b{bottom:177.900000px;}
.y2b{bottom:182.400000px;}
.y2f{bottom:183.850484px;}
.y52{bottom:184.650000px;}
.y8e{bottom:192.525000px;}
.y6a{bottom:203.820000px;}
.y2a{bottom:208.320000px;}
.y51{bottom:210.570000px;}
.y8d{bottom:218.445000px;}
.y69{bottom:229.695000px;}
.y3c{bottom:232.370763px;}
.y29{bottom:234.195000px;}
.y50{bottom:236.445000px;}
.y8c{bottom:243.225000px;}
.y68{bottom:255.600000px;}
.y28{bottom:260.100000px;}
.y4f{bottom:262.350000px;}
.y3b{bottom:264.576569px;}
.y8b{bottom:269.100000px;}
.y4c{bottom:281.475000px;}
.y27{bottom:286.005000px;}
.y8a{bottom:295.020000px;}
.y67{bottom:307.380000px;}
.y26{bottom:311.895000px;}
.y89{bottom:320.880000px;}
.y66{bottom:332.175000px;}
.y4b{bottom:333.300000px;}
.y25{bottom:336.675000px;}
.y85{bottom:340.050000px;}
.y65{bottom:358.050000px;}
.y49{bottom:360.300000px;}
.y24{bottom:362.550000px;}
.y64{bottom:383.955000px;}
.y48{bottom:386.205000px;}
.y23{bottom:388.455000px;}
.y61{bottom:403.080000px;}
.y46{bottom:413.250000px;}
.y22{bottom:414.375000px;}
.y21{bottom:440.250000px;}
.y45{bottom:448.125000px;}
.y20{bottom:466.170000px;}
.y80{bottom:469.530000px;}
.y44{bottom:472.920000px;}
.y1f{bottom:492.075000px;}
.y43{bottom:498.825000px;}
.y60{bottom:506.700000px;}
.y1e{bottom:517.950000px;}
.y42{bottom:524.700000px;}
.y7c{bottom:542.730000px;}
.y1d{bottom:543.870000px;}
.y41{bottom:550.620000px;}
.y1c{bottom:569.745000px;}
.y40{bottom:576.525000px;}
.y5e{bottom:585.525000px;}
.y1b{bottom:595.650000px;}
.y3f{bottom:602.400000px;}
.y1a{bottom:621.570000px;}
.y3e{bottom:628.320000px;}
.y19{bottom:646.320000px;}
.y78{bottom:648.570000px;}
.y2e{bottom:649.680000px;}
.y3d{bottom:649.695000px;}
.y5a{bottom:663.225000px;}
.y18{bottom:672.225000px;}
.y17{bottom:698.100000px;}
.y16{bottom:724.005000px;}
.y15{bottom:749.925000px;}
.y74{bottom:764.550000px;}
.y55{bottom:767.925000px;}
.y94{bottom:774.675000px;}
.y14{bottom:775.800000px;}
.y13{bottom:801.705000px;}
.y93{bottom:820.830000px;}
.y12{bottom:827.625000px;}
.y11{bottom:853.500000px;}
.y92{bottom:856.875000px;}
.y10{bottom:879.420000px;}
.y91{bottom:892.920000px;}
.y70{bottom:898.545000px;}
.yf{bottom:905.295000px;}
.y90{bottom:930.075000px;}
.ye{bottom:931.200000px;}
.yd{bottom:957.120000px;}
.yc{bottom:981.870000px;}
.yb{bottom:1007.775000px;}
.ya{bottom:1033.650000px;}
.y6e{bottom:1051.695000px;}
.y9{bottom:1059.570000px;}
.y8{bottom:1085.475000px;}
.y7{bottom:1111.350000px;}
.y6{bottom:1137.255000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1222.830000px;}
.h18{height:8.833008px;}
.he{height:25.875000px;}
.hf{height:25.912500px;}
.hd{height:37.756530px;}
.h5{height:40.537500px;}
.h16{height:50.662500px;}
.h10{height:51.825000px;}
.ha{height:63.052734px;}
.hb{height:66.974854px;}
.h3{height:68.027344px;}
.h1c{height:73.200000px;}
.h8{height:75.043213px;}
.h9{height:75.080566px;}
.h13{height:76.575000px;}
.h7{height:77.097656px;}
.h14{height:77.700000px;}
.h1e{height:78.629945px;}
.h1f{height:84.060791px;}
.h2{height:86.319141px;}
.h20{height:92.746582px;}
.h4{height:95.389453px;}
.h11{height:102.487500px;}
.h12{height:103.575000px;}
.h15{height:103.612500px;}
.h1b{height:104.700000px;}
.h1a{height:114.862500px;}
.h6{height:121.485791px;}
.h1d{height:129.487500px;}
.h19{height:132.862500px;}
.h17{height:152.025000px;}
.hc{height:273.368519px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:75.487500px;}
.wc{width:127.275000px;}
.wa{width:127.297500px;}
.w8{width:137.400000px;}
.w6{width:139.687500px;}
.wd{width:163.305000px;}
.w7{width:177.975000px;}
.wb{width:180.225000px;}
.w9{width:200.520000px;}
.w4{width:209.520000px;}
.w3{width:320.614623px;}
.w5{width:443.820000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:1.821941px;}
.x3{left:6.750000px;}
.x1d{left:7.905000px;}
.x20{left:28.155000px;}
.x1b{left:29.280000px;}
.x16{left:63.907437px;}
.x2c{left:65.324987px;}
.x1{left:108.149987px;}
.x1e{left:117.150000px;}
.xe{left:119.691753px;}
.x1a{left:121.650000px;}
.xd{left:129.524987px;}
.x2b{left:140.812487px;}
.x27{left:145.320000px;}
.x28{left:149.820000px;}
.x23{left:153.195000px;}
.x4{left:158.804987px;}
.x2d{left:161.054987px;}
.x26{left:163.320000px;}
.xf{left:175.485444px;}
.x29{left:181.350000px;}
.x12{left:184.451784px;}
.x8{left:191.474987px;}
.x17{left:203.415075px;}
.xc{left:224.174987px;}
.x14{left:236.394729px;}
.x11{left:245.389172px;}
.x10{left:250.420446px;}
.x1f{left:257.970000px;}
.x18{left:259.199395px;}
.x13{left:280.814188px;}
.xa{left:289.499987px;}
.x2a{left:297.374987px;}
.xb{left:298.499987px;}
.x9{left:305.249987px;}
.x5{left:309.749987px;}
.x7{left:313.154987px;}
.x1c{left:332.295000px;}
.x21{left:437.070000px;}
.x19{left:450.569987px;}
.x6{left:457.319987px;}
.x24{left:461.850000px;}
.x22{left:575.595000px;}
.x25{left:590.250000px;}
.x2{left:802.005000px;}
@media print{
.v3{vertical-align:-35.807214pt;}
.v5{vertical-align:-20.000000pt;}
.v1{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.000000pt;}
.v4{vertical-align:20.000000pt;}
.ls12{letter-spacing:-5.813333pt;}
.ls1b{letter-spacing:-5.002667pt;}
.ls17{letter-spacing:-2.906667pt;}
.lsf{letter-spacing:-2.000000pt;}
.ls18{letter-spacing:-1.808000pt;}
.ls20{letter-spacing:-1.093333pt;}
.lsd{letter-spacing:-1.002667pt;}
.ls8{letter-spacing:-0.778667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.600000pt;}
.ls16{letter-spacing:0.653333pt;}
.ls7{letter-spacing:1.002667pt;}
.ls1c{letter-spacing:1.096000pt;}
.ls1d{letter-spacing:1.302667pt;}
.ls9{letter-spacing:1.354667pt;}
.ls1{letter-spacing:1.356000pt;}
.ls1f{letter-spacing:1.462667pt;}
.ls1a{letter-spacing:1.489333pt;}
.ls19{letter-spacing:1.516000pt;}
.ls0{letter-spacing:1.904000pt;}
.ls10{letter-spacing:2.000000pt;}
.ls14{letter-spacing:2.106667pt;}
.ls15{letter-spacing:3.000000pt;}
.lse{letter-spacing:3.002667pt;}
.lsb{letter-spacing:3.106667pt;}
.lsc{letter-spacing:3.160000pt;}
.ls2{letter-spacing:7.000000pt;}
.lsa{letter-spacing:11.000000pt;}
.ls4{letter-spacing:15.000000pt;}
.ls5{letter-spacing:15.160000pt;}
.ls3{letter-spacing:55.000000pt;}
.ls1e{letter-spacing:153.256000pt;}
.ls11{letter-spacing:172.055111pt;}
.ws7{word-spacing:-19.000000pt;}
.ws8{word-spacing:-18.904000pt;}
.ws3{word-spacing:-18.354667pt;}
.ws1{word-spacing:-17.000000pt;}
.wsb{word-spacing:-15.906667pt;}
.ws9{word-spacing:-15.192000pt;}
.ws4{word-spacing:-15.000000pt;}
.ws5{word-spacing:-13.000000pt;}
.wsa{word-spacing:-11.000000pt;}
.ws6{word-spacing:-0.032179pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:0.682533pt;}
._35{margin-left:-8.759333pt;}
._3{margin-left:-7.004267pt;}
._d{margin-left:-5.472000pt;}
._6{margin-left:-4.270267pt;}
._2{margin-left:-2.969200pt;}
._0{margin-left:-1.598800pt;}
._1{width:1.294267pt;}
._5{width:2.258267pt;}
._4{width:3.722667pt;}
._b{width:4.799600pt;}
._25{width:5.772000pt;}
._e{width:6.673733pt;}
._f{width:7.749333pt;}
._28{width:8.754667pt;}
._a{width:10.183733pt;}
._7{width:11.538800pt;}
._31{width:12.953733pt;}
._1a{width:14.297200pt;}
._9{width:15.504933pt;}
._c{width:18.156000pt;}
._8{width:19.621333pt;}
._1c{width:22.029600pt;}
._1b{width:23.199467pt;}
._29{width:24.492400pt;}
._1d{width:26.527600pt;}
._1e{width:27.793200pt;}
._20{width:30.264800pt;}
._1f{width:31.604133pt;}
._21{width:34.855467pt;}
._22{width:35.951600pt;}
._11{width:39.058400pt;}
._37{width:42.191467pt;}
._10{width:43.593333pt;}
._24{width:46.812800pt;}
._23{width:47.913733pt;}
._14{width:51.116533pt;}
._13{width:54.544000pt;}
._12{width:55.685200pt;}
._27{width:59.156267pt;}
._36{width:60.491867pt;}
._26{width:62.981733pt;}
._15{width:66.703467pt;}
._17{width:67.633467pt;}
._34{width:70.995067pt;}
._16{width:72.220533pt;}
._32{width:83.041733pt;}
._2c{width:87.413333pt;}
._33{width:106.680667pt;}
._2b{width:123.942933pt;}
._30{width:135.493867pt;}
._18{width:150.828533pt;}
._19{width:151.810000pt;}
._2d{width:178.777333pt;}
._2e{width:195.466267pt;}
._2f{width:242.618933pt;}
._2a{width:751.906667pt;}
.fs8{font-size:8.000000pt;}
.fs7{font-size:32.178683pt;}
.fs6{font-size:44.000000pt;}
.fs1{font-size:60.000000pt;}
.fs5{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.fs9{font-size:84.000000pt;}
.fs2{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:0.013333pt;}
.y84{bottom:1.013333pt;}
.y36{bottom:2.247479pt;}
.y37{bottom:3.582059pt;}
.y59{bottom:6.000000pt;}
.y47{bottom:7.000000pt;}
.y4a{bottom:7.026667pt;}
.y63{bottom:7.040000pt;}
.y38{bottom:9.392289pt;}
.y5{bottom:13.033333pt;}
.y83{bottom:16.013333pt;}
.y6f{bottom:18.000000pt;}
.y4d{bottom:18.040000pt;}
.y81{bottom:28.040000pt;}
.y58{bottom:29.026667pt;}
.y3{bottom:29.033333pt;}
.y88{bottom:29.040000pt;}
.y5d{bottom:30.000000pt;}
.y87{bottom:30.026667pt;}
.y4e{bottom:30.040000pt;}
.y7e{bottom:31.040000pt;}
.y7b{bottom:35.026667pt;}
.y82{bottom:39.040000pt;}
.y73{bottom:40.026667pt;}
.y32{bottom:41.647200pt;}
.y76{bottom:43.026667pt;}
.y79{bottom:47.053333pt;}
.y5f{bottom:52.040000pt;}
.y57{bottom:52.066667pt;}
.y5c{bottom:53.040000pt;}
.y62{bottom:53.080000pt;}
.y7d{bottom:54.040000pt;}
.y39{bottom:54.253278pt;}
.y4{bottom:55.033333pt;}
.y77{bottom:55.066667pt;}
.y7a{bottom:58.053333pt;}
.y71{bottom:63.066667pt;}
.y31{bottom:64.457164pt;}
.y75{bottom:66.066667pt;}
.y56{bottom:75.066667pt;}
.y5b{bottom:76.066667pt;}
.y3a{bottom:77.330710pt;}
.y72{bottom:86.093333pt;}
.y86{bottom:99.093333pt;}
.y30{bottom:106.050870pt;}
.y33{bottom:110.163183pt;}
.y6d{bottom:112.100000pt;}
.y2d{bottom:116.100000pt;}
.y54{bottom:118.100000pt;}
.y35{bottom:126.871545pt;}
.y34{bottom:133.441216pt;}
.y6c{bottom:135.106667pt;}
.y2c{bottom:139.093333pt;}
.y53{bottom:141.133333pt;}
.y8f{bottom:148.133333pt;}
.y6b{bottom:158.133333pt;}
.y2b{bottom:162.133333pt;}
.y2f{bottom:163.422653pt;}
.y52{bottom:164.133333pt;}
.y8e{bottom:171.133333pt;}
.y6a{bottom:181.173333pt;}
.y2a{bottom:185.173333pt;}
.y51{bottom:187.173333pt;}
.y8d{bottom:194.173333pt;}
.y69{bottom:204.173333pt;}
.y3c{bottom:206.551790pt;}
.y29{bottom:208.173333pt;}
.y50{bottom:210.173333pt;}
.y8c{bottom:216.200000pt;}
.y68{bottom:227.200000pt;}
.y28{bottom:231.200000pt;}
.y4f{bottom:233.200000pt;}
.y3b{bottom:235.179172pt;}
.y8b{bottom:239.200000pt;}
.y4c{bottom:250.200000pt;}
.y27{bottom:254.226667pt;}
.y8a{bottom:262.240000pt;}
.y67{bottom:273.226667pt;}
.y26{bottom:277.240000pt;}
.y89{bottom:285.226667pt;}
.y66{bottom:295.266667pt;}
.y4b{bottom:296.266667pt;}
.y25{bottom:299.266667pt;}
.y85{bottom:302.266667pt;}
.y65{bottom:318.266667pt;}
.y49{bottom:320.266667pt;}
.y24{bottom:322.266667pt;}
.y64{bottom:341.293333pt;}
.y48{bottom:343.293333pt;}
.y23{bottom:345.293333pt;}
.y61{bottom:358.293333pt;}
.y46{bottom:367.333333pt;}
.y22{bottom:368.333333pt;}
.y21{bottom:391.333333pt;}
.y45{bottom:398.333333pt;}
.y20{bottom:414.373333pt;}
.y80{bottom:417.360000pt;}
.y44{bottom:420.373333pt;}
.y1f{bottom:437.400000pt;}
.y43{bottom:443.400000pt;}
.y60{bottom:450.400000pt;}
.y1e{bottom:460.400000pt;}
.y42{bottom:466.400000pt;}
.y7c{bottom:482.426667pt;}
.y1d{bottom:483.440000pt;}
.y41{bottom:489.440000pt;}
.y1c{bottom:506.440000pt;}
.y40{bottom:512.466667pt;}
.y5e{bottom:520.466667pt;}
.y1b{bottom:529.466667pt;}
.y3f{bottom:535.466667pt;}
.y1a{bottom:552.506667pt;}
.y3e{bottom:558.506667pt;}
.y19{bottom:574.506667pt;}
.y78{bottom:576.506667pt;}
.y2e{bottom:577.493333pt;}
.y3d{bottom:577.506667pt;}
.y5a{bottom:589.533333pt;}
.y18{bottom:597.533333pt;}
.y17{bottom:620.533333pt;}
.y16{bottom:643.560000pt;}
.y15{bottom:666.600000pt;}
.y74{bottom:679.600000pt;}
.y55{bottom:682.600000pt;}
.y94{bottom:688.600000pt;}
.y14{bottom:689.600000pt;}
.y13{bottom:712.626667pt;}
.y93{bottom:729.626667pt;}
.y12{bottom:735.666667pt;}
.y11{bottom:758.666667pt;}
.y92{bottom:761.666667pt;}
.y10{bottom:781.706667pt;}
.y91{bottom:793.706667pt;}
.y70{bottom:798.706667pt;}
.yf{bottom:804.706667pt;}
.y90{bottom:826.733333pt;}
.ye{bottom:827.733333pt;}
.yd{bottom:850.773333pt;}
.yc{bottom:872.773333pt;}
.yb{bottom:895.800000pt;}
.ya{bottom:918.800000pt;}
.y6e{bottom:934.840000pt;}
.y9{bottom:941.840000pt;}
.y8{bottom:964.866667pt;}
.y7{bottom:987.866667pt;}
.y6{bottom:1010.893333pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1086.960000pt;}
.h18{height:7.851562pt;}
.he{height:23.000000pt;}
.hf{height:23.033333pt;}
.hd{height:33.561360pt;}
.h5{height:36.033333pt;}
.h16{height:45.033333pt;}
.h10{height:46.066667pt;}
.ha{height:56.046875pt;}
.hb{height:59.533203pt;}
.h3{height:60.468750pt;}
.h1c{height:65.066667pt;}
.h8{height:66.705078pt;}
.h9{height:66.738281pt;}
.h13{height:68.066667pt;}
.h7{height:68.531250pt;}
.h14{height:69.066667pt;}
.h1e{height:69.893285pt;}
.h1f{height:74.720703pt;}
.h2{height:76.728125pt;}
.h20{height:82.441406pt;}
.h4{height:84.790625pt;}
.h11{height:91.100000pt;}
.h12{height:92.066667pt;}
.h15{height:92.100000pt;}
.h1b{height:93.066667pt;}
.h1a{height:102.100000pt;}
.h6{height:107.987370pt;}
.h1d{height:115.100000pt;}
.h19{height:118.100000pt;}
.h17{height:135.133333pt;}
.hc{height:242.994239pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:67.100000pt;}
.wc{width:113.133333pt;}
.wa{width:113.153333pt;}
.w8{width:122.133333pt;}
.w6{width:124.166667pt;}
.wd{width:145.160000pt;}
.w7{width:158.200000pt;}
.wb{width:160.200000pt;}
.w9{width:178.240000pt;}
.w4{width:186.240000pt;}
.w3{width:284.990776pt;}
.w5{width:394.506667pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:1.619503pt;}
.x3{left:6.000000pt;}
.x1d{left:7.026667pt;}
.x20{left:25.026667pt;}
.x1b{left:26.026667pt;}
.x16{left:56.806611pt;}
.x2c{left:58.066655pt;}
.x1{left:96.133322pt;}
.x1e{left:104.133333pt;}
.xe{left:106.392669pt;}
.x1a{left:108.133333pt;}
.xd{left:115.133322pt;}
.x2b{left:125.166655pt;}
.x27{left:129.173333pt;}
.x28{left:133.173333pt;}
.x23{left:136.173333pt;}
.x4{left:141.159988pt;}
.x2d{left:143.159988pt;}
.x26{left:145.173333pt;}
.xf{left:155.987061pt;}
.x29{left:161.200000pt;}
.x12{left:163.957141pt;}
.x8{left:170.199988pt;}
.x17{left:180.813400pt;}
.xc{left:199.266655pt;}
.x14{left:210.128648pt;}
.x11{left:218.123709pt;}
.x10{left:222.595952pt;}
.x1f{left:229.306667pt;}
.x18{left:230.399463pt;}
.x13{left:249.612612pt;}
.xa{left:257.333322pt;}
.x2a{left:264.333322pt;}
.xb{left:265.333322pt;}
.x9{left:271.333322pt;}
.x5{left:275.333322pt;}
.x7{left:278.359988pt;}
.x1c{left:295.373333pt;}
.x21{left:388.506667pt;}
.x19{left:400.506655pt;}
.x6{left:406.506655pt;}
.x24{left:410.533333pt;}
.x22{left:511.640000pt;}
.x25{left:524.666667pt;}
.x2{left:712.893333pt;}
}




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