
    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_af8ed009842bf699d5d51500.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106000;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_1e0c835766da3aa18697fa2c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.122000;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_6cd8b1bb229dd1b2fd66e93f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.805000;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_95d71a692c9d2e46b5720526.woff')format("woff");}.ff4{font-family:ff4;line-height:0.951000;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8ff9537e41944d7a8e1a8e81.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1ec5562feaef469fa54167de.woff')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_f9713aed258c37109659289f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6eb58b05aa5078d8b175967f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.936523;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_1dab3bb1c452f02b11076b23.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3c44c7f3eb50338c945c007b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.853027;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.400000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:53.700000px;}
.ls4{letter-spacing:54.780000px;}
.lsa{letter-spacing:54.900000px;}
.ls2{letter-spacing:55.054800px;}
.ls8{letter-spacing:56.220000px;}
.ls7{letter-spacing:56.340000px;}
.lsc{letter-spacing:108.075000px;}
.lsb{letter-spacing:108.127500px;}
.ls3{letter-spacing:120.420000px;}
.ls9{letter-spacing:120.472500px;}
.ls1{letter-spacing:120.600000px;}
.ls6{letter-spacing:120.652500px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-148.650000px;}
.ws7{word-spacing:-120.925200px;}
.wsa{word-spacing:-120.805200px;}
.ws13{word-spacing:-119.485200px;}
.ws3{word-spacing:-119.365200px;}
.ws4{word-spacing:-118.285200px;}
.wse{word-spacing:-53.934900px;}
.ws10{word-spacing:-48.883800px;}
.ws11{word-spacing:-48.849900px;}
.ws9{word-spacing:-41.324700px;}
.wsf{word-spacing:-12.373800px;}
.ws6{word-spacing:-10.541700px;}
.ws5{word-spacing:-10.271400px;}
.ws1{word-spacing:-2.794500px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:19.342350px;}
.ws8{word-spacing:27.717300px;}
.wsb{word-spacing:1426.758150px;}
.wsc{word-spacing:3353.958150px;}
.wsd{word-spacing:3370.673400px;}
._21{margin-left:-6240.336750px;}
._1e{margin-left:-4576.149750px;}
._22{margin-left:-10.888950px;}
._5{margin-left:-4.325100px;}
._2{margin-left:-2.882400px;}
._0{margin-left:-1.080900px;}
._1{width:1.441200px;}
._3{width:3.242700px;}
._4{width:5.120400px;}
._23{width:7.565100px;}
._24{width:11.158200px;}
._12{width:16.511100px;}
._11{width:17.639250px;}
._e{width:18.734100px;}
._f{width:20.558850px;}
._c{width:21.653700px;}
._d{width:23.113500px;}
._10{width:24.573300px;}
._1c{width:26.761200px;}
._1d{width:34.147200px;}
._9{width:36.529350px;}
._6{width:37.826250px;}
._7{width:39.771600px;}
._8{width:41.068500px;}
._a{width:42.149250px;}
._b{width:43.336950px;}
._1b{width:46.637100px;}
._19{width:47.816550px;}
._1a{width:49.295400px;}
._15{width:50.400600px;}
._18{width:51.909600px;}
._13{width:53.418600px;}
._16{width:54.625800px;}
._17{width:55.833000px;}
._14{width:57.643800px;}
._20{width:58.938000px;}
._25{width:74.058900px;}
._1f{width:1777.319850px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(53,140,225);}
.fc0{color:rgb(2,27,84);}
.fs4{font-size:121.500000px;}
.fs3{font-size:121.650000px;}
.fsa{font-size:148.650000px;}
.fsb{font-size:180.150000px;}
.fs2{font-size:216.150000px;}
.fsc{font-size:216.300000px;}
.fs9{font-size:238.650000px;}
.fs6{font-size:238.800000px;}
.fs7{font-size:270.150000px;}
.fs8{font-size:270.300000px;}
.fs5{font-size:301.800000px;}
.fs0{font-size:360.300000px;}
.fs1{font-size:360.450000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:25.125000px;}
.y6a{bottom:40.237500px;}
.y4c{bottom:52.012500px;}
.y5f{bottom:53.512500px;}
.y29{bottom:59.287500px;}
.y58{bottom:59.587500px;}
.y46{bottom:63.262500px;}
.y39{bottom:67.162500px;}
.y32{bottom:79.012500px;}
.y69{bottom:93.150000px;}
.y4a{bottom:108.862500px;}
.y31{bottom:138.712500px;}
.y43{bottom:139.612500px;}
.y5d{bottom:181.680000px;}
.y5a{bottom:186.225000px;}
.y42{bottom:220.695000px;}
.y23{bottom:228.045000px;}
.y59{bottom:267.300000px;}
.y68{bottom:267.420000px;}
.y5c{bottom:268.050000px;}
.yb{bottom:293.100000px;}
.y41{bottom:301.755000px;}
.y22{bottom:309.120000px;}
.y12{bottom:309.900000px;}
.ya{bottom:334.770000px;}
.y67{bottom:339.495000px;}
.y27{bottom:369.975000px;}
.y9{bottom:377.580000px;}
.y40{bottom:382.830000px;}
.y21{bottom:390.195000px;}
.y11{bottom:390.975000px;}
.y38{bottom:398.475000px;}
.y1c{bottom:409.425000px;}
.y66{bottom:411.570000px;}
.y19{bottom:413.955000px;}
.y8{bottom:419.250000px;}
.y30{bottom:427.245000px;}
.y5b{bottom:430.275000px;}
.y49{bottom:446.070000px;}
.y7{bottom:460.905000px;}
.y3f{bottom:462.780000px;}
.y20{bottom:471.255000px;}
.y10{bottom:472.050000px;}
.y37{bottom:479.550000px;}
.y65{bottom:483.645000px;}
.y1b{bottom:490.500000px;}
.y18{bottom:495.030000px;}
.y6{bottom:503.700000px;}
.y2f{bottom:507.195000px;}
.y57{bottom:522.780000px;}
.y48{bottom:527.130000px;}
.y3e{bottom:544.995000px;}
.y2a{bottom:545.175000px;}
.y5{bottom:545.355000px;}
.y28{bottom:551.175000px;}
.y1f{bottom:552.330000px;}
.yf{bottom:553.125000px;}
.y64{bottom:555.705000px;}
.y25{bottom:559.545000px;}
.y36{bottom:560.625000px;}
.y1a{bottom:571.575000px;}
.y17{bottom:576.105000px;}
.y2e{bottom:588.270000px;}
.y56{bottom:604.995000px;}
.y47{bottom:608.205000px;}
.y3d{bottom:626.070000px;}
.y4{bottom:627.630000px;}
.y63{bottom:627.750000px;}
.y1e{bottom:633.405000px;}
.ye{bottom:634.200000px;}
.y35{bottom:641.700000px;}
.y2d{bottom:670.455000px;}
.y55{bottom:684.945000px;}
.y62{bottom:699.825000px;}
.y3c{bottom:707.130000px;}
.yd{bottom:715.275000px;}
.y1d{bottom:715.620000px;}
.y16{bottom:717.450000px;}
.y14{bottom:719.775000px;}
.y34{bottom:722.775000px;}
.y4e{bottom:723.120000px;}
.y52{bottom:723.675000px;}
.y50{bottom:724.380000px;}
.y2c{bottom:751.530000px;}
.y3{bottom:762.405000px;}
.y54{bottom:767.145000px;}
.y61{bottom:771.900000px;}
.y3b{bottom:788.205000px;}
.y4d{bottom:789.570000px;}
.y51{bottom:790.125000px;}
.y4f{bottom:790.830000px;}
.y33{bottom:803.850000px;}
.y15{bottom:812.070000px;}
.y13{bottom:814.350000px;}
.y26{bottom:815.400000px;}
.y24{bottom:822.420000px;}
.y60{bottom:843.975000px;}
.y53{bottom:848.205000px;}
.y3a{bottom:869.325000px;}
.y2{bottom:888.525000px;}
.y4b{bottom:904.545000px;}
.y45{bottom:905.670000px;}
.y2b{bottom:980.505000px;}
.y44{bottom:986.745000px;}
.yc{bottom:1014.255000px;}
.y1{bottom:1014.630000px;}
.h4{height:96.833400px;}
.hd{height:107.713184px;}
.h6{height:110.929500px;}
.h5{height:111.066450px;}
.h14{height:125.278271px;}
.he{height:131.113184px;}
.hf{height:179.182397px;}
.h13{height:184.460229px;}
.h3{height:197.344950px;}
.h15{height:214.989038px;}
.h16{height:215.138232px;}
.hc{height:221.321558px;}
.h12{height:221.475146px;}
.h10{height:237.368188px;}
.h8{height:237.517383px;}
.hb{height:244.359888px;}
.h11{height:244.513477px;}
.h9{height:248.808150px;}
.ha{height:248.946300px;}
.h7{height:277.957800px;}
.h1{height:298.688700px;}
.h2{height:298.813050px;}
.h0{height:1215.000000px;}
.w1{width:2159.999968px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x22{left:121.574968px;}
.x17{left:142.499968px;}
.x33{left:145.349968px;}
.x1d{left:150.524968px;}
.xb{left:158.099968px;}
.xc{left:172.574968px;}
.x19{left:181.019968px;}
.x1e{left:201.569968px;}
.x35{left:203.999968px;}
.xd{left:223.619968px;}
.x2d{left:230.174968px;}
.x18{left:246.224968px;}
.x36{left:249.944968px;}
.x2c{left:261.029968px;}
.x12{left:287.399968px;}
.x16{left:335.369968px;}
.xf{left:379.274968px;}
.x30{left:445.154968px;}
.xe{left:451.454968px;}
.x28{left:454.124968px;}
.x2f{left:494.774968px;}
.x1a{left:663.854968px;}
.x1{left:753.794968px;}
.x2{left:756.224968px;}
.x3{left:771.419968px;}
.x34{left:830.624968px;}
.x4{left:854.879968px;}
.x2a{left:856.574968px;}
.x29{left:959.819968px;}
.x13{left:1131.599968px;}
.x23{left:1142.399968px;}
.x11{left:1225.469968px;}
.x25{left:1263.569968px;}
.x10{left:1264.799968px;}
.x26{left:1285.694968px;}
.x14{left:1313.924968px;}
.x27{left:1354.544968px;}
.x15{left:1452.794968px;}
.x2e{left:1476.674968px;}
.x1f{left:1495.274968px;}
.x21{left:1532.204968px;}
.x1c{left:1545.329968px;}
.x20{left:1587.749968px;}
.x2b{left:1596.224968px;}
.x6{left:1609.079968px;}
.x1b{left:1628.669968px;}
.x7{left:1634.249968px;}
.x38{left:1641.074968px;}
.x8{left:1654.424968px;}
.x9{left:1657.229968px;}
.x37{left:1706.174968px;}
.xa{left:1739.249968px;}
.x24{left:1794.644968px;}
.x5{left:1801.694968px;}
.x32{left:1967.249968px;}
.x31{left:1977.824968px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.800000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:47.733333pt;}
.ls4{letter-spacing:48.693333pt;}
.lsa{letter-spacing:48.800000pt;}
.ls2{letter-spacing:48.937600pt;}
.ls8{letter-spacing:49.973333pt;}
.ls7{letter-spacing:50.080000pt;}
.lsc{letter-spacing:96.066667pt;}
.lsb{letter-spacing:96.113333pt;}
.ls3{letter-spacing:107.040000pt;}
.ls9{letter-spacing:107.086667pt;}
.ls1{letter-spacing:107.200000pt;}
.ls6{letter-spacing:107.246667pt;}
.ws12{word-spacing:-132.133333pt;}
.ws7{word-spacing:-107.489067pt;}
.wsa{word-spacing:-107.382400pt;}
.ws13{word-spacing:-106.209067pt;}
.ws3{word-spacing:-106.102400pt;}
.ws4{word-spacing:-105.142400pt;}
.wse{word-spacing:-47.942133pt;}
.ws10{word-spacing:-43.452267pt;}
.ws11{word-spacing:-43.422133pt;}
.ws9{word-spacing:-36.733067pt;}
.wsf{word-spacing:-10.998933pt;}
.ws6{word-spacing:-9.370400pt;}
.ws5{word-spacing:-9.130133pt;}
.ws1{word-spacing:-2.484000pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:17.193200pt;}
.ws8{word-spacing:24.637600pt;}
.wsb{word-spacing:1268.229467pt;}
.wsc{word-spacing:2981.296133pt;}
.wsd{word-spacing:2996.154133pt;}
._21{margin-left:-5546.966000pt;}
._1e{margin-left:-4067.688667pt;}
._22{margin-left:-9.679067pt;}
._5{margin-left:-3.844533pt;}
._2{margin-left:-2.562133pt;}
._0{margin-left:-0.960800pt;}
._1{width:1.281067pt;}
._3{width:2.882400pt;}
._4{width:4.551467pt;}
._23{width:6.724533pt;}
._24{width:9.918400pt;}
._12{width:14.676533pt;}
._11{width:15.679333pt;}
._e{width:16.652533pt;}
._f{width:18.274533pt;}
._c{width:19.247733pt;}
._d{width:20.545333pt;}
._10{width:21.842933pt;}
._1c{width:23.787733pt;}
._1d{width:30.353067pt;}
._9{width:32.470533pt;}
._6{width:33.623333pt;}
._7{width:35.352533pt;}
._8{width:36.505333pt;}
._a{width:37.466000pt;}
._b{width:38.521733pt;}
._1b{width:41.455200pt;}
._19{width:42.503600pt;}
._1a{width:43.818133pt;}
._15{width:44.800533pt;}
._18{width:46.141867pt;}
._13{width:47.483200pt;}
._16{width:48.556267pt;}
._17{width:49.629333pt;}
._14{width:51.238933pt;}
._20{width:52.389333pt;}
._25{width:65.830133pt;}
._1f{width:1579.839867pt;}
.fs4{font-size:108.000000pt;}
.fs3{font-size:108.133333pt;}
.fsa{font-size:132.133333pt;}
.fsb{font-size:160.133333pt;}
.fs2{font-size:192.133333pt;}
.fsc{font-size:192.266667pt;}
.fs9{font-size:212.133333pt;}
.fs6{font-size:212.266667pt;}
.fs7{font-size:240.133333pt;}
.fs8{font-size:240.266667pt;}
.fs5{font-size:268.266667pt;}
.fs0{font-size:320.266667pt;}
.fs1{font-size:320.400000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:22.333333pt;}
.y6a{bottom:35.766667pt;}
.y4c{bottom:46.233333pt;}
.y5f{bottom:47.566667pt;}
.y29{bottom:52.700000pt;}
.y58{bottom:52.966667pt;}
.y46{bottom:56.233333pt;}
.y39{bottom:59.700000pt;}
.y32{bottom:70.233333pt;}
.y69{bottom:82.800000pt;}
.y4a{bottom:96.766667pt;}
.y31{bottom:123.300000pt;}
.y43{bottom:124.100000pt;}
.y5d{bottom:161.493333pt;}
.y5a{bottom:165.533333pt;}
.y42{bottom:196.173333pt;}
.y23{bottom:202.706667pt;}
.y59{bottom:237.600000pt;}
.y68{bottom:237.706667pt;}
.y5c{bottom:238.266667pt;}
.yb{bottom:260.533333pt;}
.y41{bottom:268.226667pt;}
.y22{bottom:274.773333pt;}
.y12{bottom:275.466667pt;}
.ya{bottom:297.573333pt;}
.y67{bottom:301.773333pt;}
.y27{bottom:328.866667pt;}
.y9{bottom:335.626667pt;}
.y40{bottom:340.293333pt;}
.y21{bottom:346.840000pt;}
.y11{bottom:347.533333pt;}
.y38{bottom:354.200000pt;}
.y1c{bottom:363.933333pt;}
.y66{bottom:365.840000pt;}
.y19{bottom:367.960000pt;}
.y8{bottom:372.666667pt;}
.y30{bottom:379.773333pt;}
.y5b{bottom:382.466667pt;}
.y49{bottom:396.506667pt;}
.y7{bottom:409.693333pt;}
.y3f{bottom:411.360000pt;}
.y20{bottom:418.893333pt;}
.y10{bottom:419.600000pt;}
.y37{bottom:426.266667pt;}
.y65{bottom:429.906667pt;}
.y1b{bottom:436.000000pt;}
.y18{bottom:440.026667pt;}
.y6{bottom:447.733333pt;}
.y2f{bottom:450.840000pt;}
.y57{bottom:464.693333pt;}
.y48{bottom:468.560000pt;}
.y3e{bottom:484.440000pt;}
.y2a{bottom:484.600000pt;}
.y5{bottom:484.760000pt;}
.y28{bottom:489.933333pt;}
.y1f{bottom:490.960000pt;}
.yf{bottom:491.666667pt;}
.y64{bottom:493.960000pt;}
.y25{bottom:497.373333pt;}
.y36{bottom:498.333333pt;}
.y1a{bottom:508.066667pt;}
.y17{bottom:512.093333pt;}
.y2e{bottom:522.906667pt;}
.y56{bottom:537.773333pt;}
.y47{bottom:540.626667pt;}
.y3d{bottom:556.506667pt;}
.y4{bottom:557.893333pt;}
.y63{bottom:558.000000pt;}
.y1e{bottom:563.026667pt;}
.ye{bottom:563.733333pt;}
.y35{bottom:570.400000pt;}
.y2d{bottom:595.960000pt;}
.y55{bottom:608.840000pt;}
.y62{bottom:622.066667pt;}
.y3c{bottom:628.560000pt;}
.yd{bottom:635.800000pt;}
.y1d{bottom:636.106667pt;}
.y16{bottom:637.733333pt;}
.y14{bottom:639.800000pt;}
.y34{bottom:642.466667pt;}
.y4e{bottom:642.773333pt;}
.y52{bottom:643.266667pt;}
.y50{bottom:643.893333pt;}
.y2c{bottom:668.026667pt;}
.y3{bottom:677.693333pt;}
.y54{bottom:681.906667pt;}
.y61{bottom:686.133333pt;}
.y3b{bottom:700.626667pt;}
.y4d{bottom:701.840000pt;}
.y51{bottom:702.333333pt;}
.y4f{bottom:702.960000pt;}
.y33{bottom:714.533333pt;}
.y15{bottom:721.840000pt;}
.y13{bottom:723.866667pt;}
.y26{bottom:724.800000pt;}
.y24{bottom:731.040000pt;}
.y60{bottom:750.200000pt;}
.y53{bottom:753.960000pt;}
.y3a{bottom:772.733333pt;}
.y2{bottom:789.800000pt;}
.y4b{bottom:804.040000pt;}
.y45{bottom:805.040000pt;}
.y2b{bottom:871.560000pt;}
.y44{bottom:877.106667pt;}
.yc{bottom:901.560000pt;}
.y1{bottom:901.893333pt;}
.h4{height:86.074133pt;}
.hd{height:95.745052pt;}
.h6{height:98.604000pt;}
.h5{height:98.725733pt;}
.h14{height:111.358464pt;}
.he{height:116.545052pt;}
.hf{height:159.273242pt;}
.h13{height:163.964648pt;}
.h3{height:175.417733pt;}
.h15{height:191.101367pt;}
.h16{height:191.233984pt;}
.hc{height:196.730273pt;}
.h12{height:196.866797pt;}
.h10{height:210.993945pt;}
.h8{height:211.126562pt;}
.hb{height:217.208789pt;}
.h11{height:217.345312pt;}
.h9{height:221.162800pt;}
.ha{height:221.285600pt;}
.h7{height:247.073600pt;}
.h1{height:265.501067pt;}
.h2{height:265.611600pt;}
.h0{height:1080.000000pt;}
.w1{width:1919.999971pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x22{left:108.066638pt;}
.x17{left:126.666638pt;}
.x33{left:129.199971pt;}
.x1d{left:133.799971pt;}
.xb{left:140.533305pt;}
.xc{left:153.399971pt;}
.x19{left:160.906638pt;}
.x1e{left:179.173305pt;}
.x35{left:181.333305pt;}
.xd{left:198.773305pt;}
.x2d{left:204.599971pt;}
.x18{left:218.866638pt;}
.x36{left:222.173305pt;}
.x2c{left:232.026638pt;}
.x12{left:255.466638pt;}
.x16{left:298.106638pt;}
.xf{left:337.133305pt;}
.x30{left:395.693305pt;}
.xe{left:401.293305pt;}
.x28{left:403.666638pt;}
.x2f{left:439.799971pt;}
.x1a{left:590.093305pt;}
.x1{left:670.039971pt;}
.x2{left:672.199971pt;}
.x3{left:685.706638pt;}
.x34{left:738.333305pt;}
.x4{left:759.893305pt;}
.x2a{left:761.399971pt;}
.x29{left:853.173305pt;}
.x13{left:1005.866638pt;}
.x23{left:1015.466638pt;}
.x11{left:1089.306638pt;}
.x25{left:1123.173305pt;}
.x10{left:1124.266638pt;}
.x26{left:1142.839971pt;}
.x14{left:1167.933305pt;}
.x27{left:1204.039971pt;}
.x15{left:1291.373305pt;}
.x2e{left:1312.599971pt;}
.x1f{left:1329.133305pt;}
.x21{left:1361.959971pt;}
.x1c{left:1373.626638pt;}
.x20{left:1411.333305pt;}
.x2b{left:1418.866638pt;}
.x6{left:1430.293305pt;}
.x1b{left:1447.706638pt;}
.x7{left:1452.666638pt;}
.x38{left:1458.733305pt;}
.x8{left:1470.599971pt;}
.x9{left:1473.093305pt;}
.x37{left:1516.599971pt;}
.xa{left:1545.999971pt;}
.x24{left:1595.239971pt;}
.x5{left:1601.506638pt;}
.x32{left:1748.666638pt;}
.x31{left:1758.066638pt;}
}




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