
    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_c907f1aa06f4c29f7b766614.woff')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_0e37b1efe9ced790e82f30b5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.008000;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_c30d97fe12aa707bdb3d5a73.woff')format("woff");}.ff3{font-family:ff3;line-height:1.017000;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_b23ec6e221199536a8b6b8de.woff')format("woff");}.ff4{font-family:ff4;line-height:1.008000;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_fee9b9f4d4022a41cb22d5a3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.674316;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_5baf2f995966baba1122918b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.670898;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_8fc52dac87439a04eae4c477.woff')format("woff");}.ff7{font-family:ff7;line-height:0.674316;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_45b98f5a7e8dacbc2be48117.woff')format("woff");}.ff8{font-family:ff8;line-height:0.759000;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_30623d0270d3d9349ce476af.woff')format("woff");}.ff9{font-family:ff9;line-height:1.008000;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_984f148fca7832cd3ea4e653.woff')format("woff");}.ffa{font-family:ffa;line-height:0.761000;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_f721d672bd20d283d59e7206.woff')format("woff");}.ffb{font-family:ffb;line-height:1.008000;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.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m3{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-48.960000px;}
.v2{vertical-align:-47.520000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:73.440000px;}
.ls2a{letter-spacing:-0.367200px;}
.ls1f{letter-spacing:-0.336000px;}
.lsd{letter-spacing:-0.302400px;}
.ls18{letter-spacing:-0.280800px;}
.ls28{letter-spacing:-0.250946px;}
.ls26{letter-spacing:-0.237600px;}
.ls20{letter-spacing:-0.218400px;}
.ls11{letter-spacing:-0.216000px;}
.ls2b{letter-spacing:-0.205319px;}
.ls1b{letter-spacing:-0.194400px;}
.ls14{letter-spacing:-0.162228px;}
.ls29{letter-spacing:-0.151200px;}
.ls12{letter-spacing:-0.141949px;}
.ls1c{letter-spacing:-0.129600px;}
.ls17{letter-spacing:-0.121671px;}
.ls1d{letter-spacing:-0.108000px;}
.ls23{letter-spacing:-0.050400px;}
.lsf{letter-spacing:-0.021600px;}
.lsc{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.016800px;}
.lsb{letter-spacing:0.021600px;}
.ls2{letter-spacing:0.064800px;}
.ls6{letter-spacing:0.091253px;}
.ls19{letter-spacing:0.108000px;}
.lse{letter-spacing:0.129600px;}
.ls5{letter-spacing:0.151200px;}
.ls0{letter-spacing:0.156600px;}
.ls10{letter-spacing:0.172800px;}
.ls3{letter-spacing:0.190121px;}
.ls24{letter-spacing:0.194400px;}
.ls4{letter-spacing:0.204000px;}
.ls13{letter-spacing:0.223063px;}
.ls1e{letter-spacing:0.235200px;}
.ls25{letter-spacing:0.237600px;}
.ls15{letter-spacing:0.243341px;}
.ls21{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.264000px;}
.lsa{letter-spacing:0.302400px;}
.ls16{letter-spacing:0.304177px;}
.ls8{letter-spacing:0.306000px;}
.ls1a{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.360000px;}
.ls27{letter-spacing:4.352941px;}
.ls1{letter-spacing:8.400000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(242,242,242),0 0.015em rgb(242,242,242),0.015em 0 rgb(242,242,242),0 -0.015em  rgb(242,242,242);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(242,242,242);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-109.620000px;}
.wsd{word-spacing:-45.662400px;}
.wsc{word-spacing:-45.554400px;}
.ws5{word-spacing:-45.511200px;}
.ws6{word-spacing:-45.424800px;}
.ws11{word-spacing:-45.338400px;}
.ws10{word-spacing:-45.230400px;}
.ws4{word-spacing:-45.144000px;}
.ws7{word-spacing:-45.079200px;}
.wsf{word-spacing:-45.057600px;}
.ws2{word-spacing:-42.828082px;}
.ws1{word-spacing:-42.807803px;}
.ws3{word-spacing:-42.463069px;}
.wsb{word-spacing:-35.582410px;}
.wsa{word-spacing:-34.944010px;}
.wse{word-spacing:-4.588235px;}
.ws9{word-spacing:-0.504000px;}
.ws8{word-spacing:-0.144000px;}
.ws12{word-spacing:0.000000px;}
._1{margin-left:-9.058823px;}
._0{margin-left:-1.374000px;}
._2{width:1.080000px;}
._3{width:3118.366800px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(191,191,191);}
.fc1{color:rgb(242,242,242);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:126.740321px;}
.fs5{font-size:144.000000px;}
.fs6{font-size:168.000048px;}
.fs3{font-size:202.784477px;}
.fs2{font-size:216.000000px;}
.fs4{font-size:228.132586px;}
.fs7{font-size:235.294128px;}
.fs1{font-size:411.764688px;}
.fs0{font-size:522.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:78.360000px;}
.y3f{bottom:119.760000px;}
.y1e{bottom:129.480000px;}
.y3e{bottom:184.200000px;}
.y3d{bottom:248.640000px;}
.y3c{bottom:313.440000px;}
.y27{bottom:332.520000px;}
.y26{bottom:396.960000px;}
.y25{bottom:461.400000px;}
.y24{bottom:569.400000px;}
.y3b{bottom:595.680000px;}
.y23{bottom:633.840000px;}
.y3a{bottom:661.560000px;}
.y22{bottom:700.080000px;}
.y39{bottom:726.000000px;}
.y38{bottom:790.440000px;}
.y21{bottom:828.960000px;}
.y37{bottom:855.240000px;}
.y20{bottom:893.400000px;}
.y36{bottom:919.680000px;}
.y35{bottom:1050.000000px;}
.y34{bottom:1114.440000px;}
.y1d{bottom:1115.520000px;}
.y33{bottom:1179.240000px;}
.y1c{bottom:1179.960000px;}
.y32{bottom:1243.680000px;}
.y1b{bottom:1244.400000px;}
.y31{bottom:1309.560000px;}
.y1a{bottom:1352.400000px;}
.y19{bottom:1418.640000px;}
.y30{bottom:1438.440000px;}
.y18{bottom:1481.640000px;}
.y2f{bottom:1503.240000px;}
.y2e{bottom:1567.680000px;}
.y17{bottom:1611.960000px;}
.y2c{bottom:1635.000000px;}
.y2d{bottom:1635.676800px;}
.y16{bottom:1676.400000px;}
.y2b{bottom:1705.560000px;}
.y2a{bottom:1834.440000px;}
.y29{bottom:1880.880000px;}
.y28{bottom:1945.320000px;}
.y40{bottom:2177.520000px;}
.y12{bottom:2505.480000px;}
.y11{bottom:2569.920000px;}
.y10{bottom:2634.360000px;}
.yf{bottom:2763.240000px;}
.ye{bottom:2829.480000px;}
.yd{bottom:2893.920000px;}
.yc{bottom:2958.360000px;}
.yb{bottom:3022.800000px;}
.y9{bottom:3467.760000px;}
.y8{bottom:3532.560000px;}
.y7{bottom:3662.880150px;}
.y6{bottom:3791.760150px;}
.y5{bottom:3856.560150px;}
.y4{bottom:3986.880150px;}
.y3{bottom:4115.760150px;}
.y15{bottom:4116.120150px;}
.y14{bottom:4180.560150px;}
.y13{bottom:4245.000150px;}
.ya{bottom:4506.720150px;}
.y2{bottom:4652.556150px;}
.y1{bottom:4837.560150px;}
.h9{height:96.069163px;}
.h6{height:127.344036px;}
.h4{height:153.710633px;}
.h3{height:164.160000px;}
.h5{height:173.380766px;}
.h8{height:178.352949px;}
.h7{height:237.600000px;}
.h2{height:312.117634px;}
.h1{height:395.676000px;}
.h0{height:5055.000000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x1a{left:98.055465px;}
.x24{left:116.596365px;}
.x1d{left:153.645450px;}
.x26{left:158.971350px;}
.x23{left:166.373850px;}
.x8{left:183.413400px;}
.x25{left:205.373850px;}
.x1f{left:257.323500px;}
.x6{left:260.385900px;}
.x3{left:281.198400px;}
.x1b{left:282.645450px;}
.x9{left:327.600900px;}
.x1c{left:374.617950px;}
.x5{left:385.823400px;}
.x1e{left:413.992950px;}
.x29{left:417.226500px;}
.x27{left:422.596350px;}
.x18{left:438.742950px;}
.x19{left:443.242950px;}
.x21{left:474.248850px;}
.x22{left:519.721350px;}
.x4{left:542.198400px;}
.x28{left:547.096350px;}
.x2a{left:553.726500px;}
.x7{left:559.635900px;}
.x2c{left:576.226500px;}
.x1{left:653.108250px;}
.x20{left:706.948500px;}
.xa{left:719.101350px;}
.x2b{left:726.039000px;}
.xb{left:1207.546200px;}
.x10{left:1234.261050px;}
.xf{left:1275.511200px;}
.xd{left:1309.733700px;}
.xe{left:1364.948700px;}
.xc{left:1374.511200px;}
.x11{left:1378.823550px;}
.x12{left:1401.046200px;}
.x2{left:1462.687500px;}
.x15{left:1663.557000px;}
.x13{left:1675.369500px;}
.x14{left:1680.334500px;}
.x16{left:2023.557000px;}
.x17{left:2195.869500px;}
.x44{left:2390.317500px;}
.x42{left:2392.378500px;}
.x40{left:2410.567500px;}
.x36{left:2431.029000px;}
.x37{left:2432.806500px;}
.x2f{left:2440.216500px;}
.x32{left:2449.119000px;}
.x2e{left:2472.466500px;}
.x34{left:2480.716500px;}
.x38{left:2484.466500px;}
.x3e{left:2487.279000px;}
.x3b{left:2509.404000px;}
.x3d{left:2521.306500px;}
.x3c{left:2548.591500px;}
.x3a{left:2556.091500px;}
.x39{left:2619.369000px;}
.x43{left:2651.317500px;}
.x2d{left:2689.966500px;}
.x3f{left:2768.904000px;}
.x45{left:2810.032500px;}
.x35{left:2875.029000px;}
.x46{left:2961.735000px;}
.x33{left:2963.619000px;}
.x30{left:3350.716500px;}
.x41{left:3419.880000px;}
.x31{left:3476.154000px;}
@media print{
.v1{vertical-align:-43.520000pt;}
.v2{vertical-align:-42.240000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:65.280000pt;}
.ls2a{letter-spacing:-0.326400pt;}
.ls1f{letter-spacing:-0.298667pt;}
.lsd{letter-spacing:-0.268800pt;}
.ls18{letter-spacing:-0.249600pt;}
.ls28{letter-spacing:-0.223063pt;}
.ls26{letter-spacing:-0.211200pt;}
.ls20{letter-spacing:-0.194133pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls2b{letter-spacing:-0.182506pt;}
.ls1b{letter-spacing:-0.172800pt;}
.ls14{letter-spacing:-0.144202pt;}
.ls29{letter-spacing:-0.134400pt;}
.ls12{letter-spacing:-0.126177pt;}
.ls1c{letter-spacing:-0.115200pt;}
.ls17{letter-spacing:-0.108152pt;}
.ls1d{letter-spacing:-0.096000pt;}
.ls23{letter-spacing:-0.044800pt;}
.lsf{letter-spacing:-0.019200pt;}
.lsc{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.014933pt;}
.lsb{letter-spacing:0.019200pt;}
.ls2{letter-spacing:0.057600pt;}
.ls6{letter-spacing:0.081114pt;}
.ls19{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.115200pt;}
.ls5{letter-spacing:0.134400pt;}
.ls0{letter-spacing:0.139200pt;}
.ls10{letter-spacing:0.153600pt;}
.ls3{letter-spacing:0.168997pt;}
.ls24{letter-spacing:0.172800pt;}
.ls4{letter-spacing:0.181333pt;}
.ls13{letter-spacing:0.198278pt;}
.ls1e{letter-spacing:0.209067pt;}
.ls25{letter-spacing:0.211200pt;}
.ls15{letter-spacing:0.216303pt;}
.ls21{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.234667pt;}
.lsa{letter-spacing:0.268800pt;}
.ls16{letter-spacing:0.270379pt;}
.ls8{letter-spacing:0.272000pt;}
.ls1a{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls27{letter-spacing:3.869281pt;}
.ls1{letter-spacing:7.466666pt;}
.ws0{word-spacing:-97.440000pt;}
.wsd{word-spacing:-40.588800pt;}
.wsc{word-spacing:-40.492800pt;}
.ws5{word-spacing:-40.454400pt;}
.ws6{word-spacing:-40.377600pt;}
.ws11{word-spacing:-40.300800pt;}
.ws10{word-spacing:-40.204800pt;}
.ws4{word-spacing:-40.128000pt;}
.ws7{word-spacing:-40.070400pt;}
.wsf{word-spacing:-40.051200pt;}
.ws2{word-spacing:-38.069406pt;}
.ws1{word-spacing:-38.051381pt;}
.ws3{word-spacing:-37.744951pt;}
.wsb{word-spacing:-31.628809pt;}
.wsa{word-spacing:-31.061342pt;}
.wse{word-spacing:-4.078432pt;}
.ws9{word-spacing:-0.448000pt;}
.ws8{word-spacing:-0.128000pt;}
.ws12{word-spacing:0.000000pt;}
._1{margin-left:-8.052287pt;}
._0{margin-left:-1.221333pt;}
._2{width:0.960000pt;}
._3{width:2771.881600pt;}
.fs8{font-size:112.658063pt;}
.fs5{font-size:128.000000pt;}
.fs6{font-size:149.333376pt;}
.fs3{font-size:180.252868pt;}
.fs2{font-size:192.000000pt;}
.fs4{font-size:202.784521pt;}
.fs7{font-size:209.150336pt;}
.fs1{font-size:366.013056pt;}
.fs0{font-size:464.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:69.653333pt;}
.y3f{bottom:106.453333pt;}
.y1e{bottom:115.093333pt;}
.y3e{bottom:163.733333pt;}
.y3d{bottom:221.013333pt;}
.y3c{bottom:278.613333pt;}
.y27{bottom:295.573333pt;}
.y26{bottom:352.853333pt;}
.y25{bottom:410.133333pt;}
.y24{bottom:506.133333pt;}
.y3b{bottom:529.493333pt;}
.y23{bottom:563.413333pt;}
.y3a{bottom:588.053333pt;}
.y22{bottom:622.293333pt;}
.y39{bottom:645.333333pt;}
.y38{bottom:702.613333pt;}
.y21{bottom:736.853333pt;}
.y37{bottom:760.213333pt;}
.y20{bottom:794.133333pt;}
.y36{bottom:817.493333pt;}
.y35{bottom:933.333333pt;}
.y34{bottom:990.613333pt;}
.y1d{bottom:991.573333pt;}
.y33{bottom:1048.213333pt;}
.y1c{bottom:1048.853333pt;}
.y32{bottom:1105.493333pt;}
.y1b{bottom:1106.133333pt;}
.y31{bottom:1164.053333pt;}
.y1a{bottom:1202.133333pt;}
.y19{bottom:1261.013333pt;}
.y30{bottom:1278.613333pt;}
.y18{bottom:1317.013333pt;}
.y2f{bottom:1336.213333pt;}
.y2e{bottom:1393.493333pt;}
.y17{bottom:1432.853333pt;}
.y2c{bottom:1453.333333pt;}
.y2d{bottom:1453.934933pt;}
.y16{bottom:1490.133333pt;}
.y2b{bottom:1516.053333pt;}
.y2a{bottom:1630.613333pt;}
.y29{bottom:1671.893333pt;}
.y28{bottom:1729.173333pt;}
.y40{bottom:1935.573333pt;}
.y12{bottom:2227.093333pt;}
.y11{bottom:2284.373333pt;}
.y10{bottom:2341.653333pt;}
.yf{bottom:2456.213333pt;}
.ye{bottom:2515.093333pt;}
.yd{bottom:2572.373333pt;}
.yc{bottom:2629.653333pt;}
.yb{bottom:2686.933333pt;}
.y9{bottom:3082.453333pt;}
.y8{bottom:3140.053333pt;}
.y7{bottom:3255.893467pt;}
.y6{bottom:3370.453467pt;}
.y5{bottom:3428.053467pt;}
.y4{bottom:3543.893467pt;}
.y3{bottom:3658.453467pt;}
.y15{bottom:3658.773467pt;}
.y14{bottom:3716.053467pt;}
.y13{bottom:3773.333467pt;}
.ya{bottom:4005.973467pt;}
.y2{bottom:4135.605467pt;}
.y1{bottom:4300.053467pt;}
.h9{height:85.394812pt;}
.h6{height:113.194699pt;}
.h4{height:136.631674pt;}
.h3{height:145.920000pt;}
.h5{height:154.116236pt;}
.h8{height:158.535955pt;}
.h7{height:211.200000pt;}
.h2{height:277.437896pt;}
.h1{height:351.712000pt;}
.h0{height:4493.333333pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1a{left:87.160413pt;}
.x24{left:103.641213pt;}
.x1d{left:136.573733pt;}
.x26{left:141.307867pt;}
.x23{left:147.887867pt;}
.x8{left:163.034133pt;}
.x25{left:182.554533pt;}
.x1f{left:228.732000pt;}
.x6{left:231.454133pt;}
.x3{left:249.954133pt;}
.x1b{left:251.240400pt;}
.x9{left:291.200800pt;}
.x1c{left:332.993733pt;}
.x5{left:342.954133pt;}
.x1e{left:367.993733pt;}
.x29{left:370.868000pt;}
.x27{left:375.641200pt;}
.x18{left:389.993733pt;}
.x19{left:393.993733pt;}
.x21{left:421.554533pt;}
.x22{left:461.974533pt;}
.x4{left:481.954133pt;}
.x28{left:486.307867pt;}
.x2a{left:492.201333pt;}
.x7{left:497.454133pt;}
.x2c{left:512.201333pt;}
.x1{left:580.540667pt;}
.x20{left:628.398667pt;}
.xa{left:639.201200pt;}
.x2b{left:645.368000pt;}
.xb{left:1073.374400pt;}
.x10{left:1097.120933pt;}
.xf{left:1133.787733pt;}
.xd{left:1164.207733pt;}
.xe{left:1213.287733pt;}
.xc{left:1221.787733pt;}
.x11{left:1225.620933pt;}
.x12{left:1245.374400pt;}
.x2{left:1300.166667pt;}
.x15{left:1478.717333pt;}
.x13{left:1489.217333pt;}
.x14{left:1493.630667pt;}
.x16{left:1798.717333pt;}
.x17{left:1951.884000pt;}
.x44{left:2124.726667pt;}
.x42{left:2126.558667pt;}
.x40{left:2142.726667pt;}
.x36{left:2160.914667pt;}
.x37{left:2162.494667pt;}
.x2f{left:2169.081333pt;}
.x32{left:2176.994667pt;}
.x2e{left:2197.748000pt;}
.x34{left:2205.081333pt;}
.x38{left:2208.414667pt;}
.x3e{left:2210.914667pt;}
.x3b{left:2230.581333pt;}
.x3d{left:2241.161333pt;}
.x3c{left:2265.414667pt;}
.x3a{left:2272.081333pt;}
.x39{left:2328.328000pt;}
.x43{left:2356.726667pt;}
.x2d{left:2391.081333pt;}
.x3f{left:2461.248000pt;}
.x45{left:2497.806667pt;}
.x35{left:2555.581333pt;}
.x46{left:2632.653333pt;}
.x33{left:2634.328000pt;}
.x30{left:2978.414667pt;}
.x41{left:3039.893333pt;}
.x31{left:3089.914667pt;}
}




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