
    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_a5649585d173d249203da373.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015137;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_41a37eb3f2a5e9438648de41.woff')format("woff");}.ff2{font-family:ff2;line-height:1.015137;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_ebd97fdf5e650ed9f19f80de.woff')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v7{vertical-align:-65.232000px;}
.v6{vertical-align:-53.136000px;}
.v5{vertical-align:-50.256000px;}
.v2{vertical-align:-43.200000px;}
.v3{vertical-align:-36.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.400000px;}
.v8{vertical-align:22.320000px;}
.v1{vertical-align:43.200000px;}
.v9{vertical-align:79.920000px;}
.lsf{letter-spacing:-0.455363px;}
.ls6{letter-spacing:-0.424200px;}
.lsd{letter-spacing:-0.379470px;}
.ls4{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.168000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.026640px;}
.lsa{letter-spacing:0.088200px;}
.ls5{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.288000px;}
.lse{letter-spacing:0.301200px;}
.lsc{letter-spacing:0.341400px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.368064px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(66,66,66),0 0.015em rgb(66,66,66),0.015em 0 rgb(66,66,66),0 -0.015em  rgb(66,66,66);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(66,66,66);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-167.760000px;}
.wsb{word-spacing:-87.991920px;}
.ws9{word-spacing:-63.847920px;}
.ws4{word-spacing:-52.027920px;}
.ws7{word-spacing:-47.999952px;}
.ws8{word-spacing:-47.952000px;}
.wsa{word-spacing:-42.677280px;}
.ws1{word-spacing:-40.087872px;}
.ws6{word-spacing:-36.011952px;}
.ws3{word-spacing:-35.964000px;}
.ws0{word-spacing:-31.888080px;}
.ws11{word-spacing:-29.569024px;}
.ws12{word-spacing:-28.099872px;}
.ws10{word-spacing:-28.051920px;}
.wsf{word-spacing:-20.664432px;}
.wsd{word-spacing:-0.132000px;}
.ws2{word-spacing:0.000000px;}
.ws14{word-spacing:0.041760px;}
.ws13{word-spacing:0.727823px;}
.wse{word-spacing:13.824000px;}
.wsc{word-spacing:48.384000px;}
._3{margin-left:-4.181760px;}
._2{margin-left:-2.877120px;}
._0{margin-left:-1.438560px;}
._1{width:1.180320px;}
._8{width:2.396160px;}
._11{width:26.976480px;}
._12{width:29.267280px;}
._f{width:30.528000px;}
._6{width:34.572000px;}
._10{width:64.944000px;}
._e{width:145.416480px;}
._9{width:1107.742560px;}
._c{width:3379.374240px;}
._7{width:4056.036000px;}
._5{width:4272.418560px;}
._d{width:4412.873280px;}
._a{width:4542.166560px;}
._b{width:4730.302560px;}
._4{width:4783.474560px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(70,120,134);}
.fc4{color:rgb(66,66,66);}
.fc2{color:rgb(29,80,129);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:80.064000px;}
.fs12{font-size:84.240000px;}
.fs14{font-size:84.384000px;}
.fs13{font-size:88.795869px;}
.fs15{font-size:88.947657px;}
.fs3{font-size:95.760000px;}
.fs7{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fs5{font-size:120.384000px;}
.fs11{font-size:128.160000px;}
.fs2{font-size:144.000000px;}
.fsf{font-size:144.144000px;}
.fs9{font-size:156.240000px;}
.fsa{font-size:156.384000px;}
.fsc{font-size:167.760000px;}
.fsd{font-size:167.904000px;}
.fsb{font-size:192.240000px;}
.fs10{font-size:192.384000px;}
.fse{font-size:216.144000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.fs6{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.yd{bottom:15.012000px;}
.y2b{bottom:27.576000px;}
.y33{bottom:28.296000px;}
.y37{bottom:31.320000px;}
.y4e{bottom:51.300000px;}
.y2a{bottom:65.520000px;}
.y24{bottom:73.764000px;}
.y32{bottom:75.096000px;}
.y1c{bottom:80.496000px;}
.yc{bottom:92.916000px;}
.y45{bottom:95.076000px;}
.y29{bottom:115.920000px;}
.y36{bottom:123.552000px;}
.yb{bottom:125.316000px;}
.y23{bottom:125.460000px;}
.y10{bottom:133.380000px;}
.y66{bottom:140.940000px;}
.y12{bottom:150.915000px;}
.y4d{bottom:152.100000px;}
.ya{bottom:157.755000px;}
.y19{bottom:159.045000px;}
.yf{bottom:165.780000px;}
.y65{bottom:166.140000px;}
.y31{bottom:168.735000px;}
.y25{bottom:180.690000px;}
.y11{bottom:183.315000px;}
.y9{bottom:190.155000px;}
.ye{bottom:198.180000px;}
.y58{bottom:201.060000px;}
.y7{bottom:202.350000px;}
.y18{bottom:205.845000px;}
.y47{bottom:206.250000px;}
.y35{bottom:210.315000px;}
.y28{bottom:210.570000px;}
.y30{bottom:215.535000px;}
.y64{bottom:216.540000px;}
.y22{bottom:225.000000px;}
.y3c{bottom:229.890000px;}
.y63{bottom:241.740000px;}
.y57{bottom:244.260000px;}
.y4c{bottom:252.930000px;}
.y44{bottom:254.130000px;}
.y27{bottom:260.970000px;}
.y6{bottom:268.170000px;}
.y21{bottom:276.690000px;}
.y62{bottom:292.170000px;}
.y34{bottom:295.485000px;}
.y56{bottom:296.490000px;}
.y17{bottom:299.490000px;}
.y4b{bottom:303.330000px;}
.y2f{bottom:309.135000px;}
.y5{bottom:311.400000px;}
.y43{bottom:311.730000px;}
.y61{bottom:317.370000px;}
.y3d{bottom:320.790000px;}
.y3b{bottom:322.380000px;}
.y55{bottom:339.690000px;}
.y60{bottom:367.770000px;}
.y42{bottom:369.360000px;}
.y20{bottom:376.230000px;}
.y54{bottom:391.890000px;}
.y5f{bottom:392.970000px;}
.y16{bottom:393.090000px;}
.y2e{bottom:402.765000px;}
.y4a{bottom:404.175000px;}
.y3a{bottom:414.870000px;}
.y4{bottom:422.100000px;}
.y1f{bottom:427.890000px;}
.y53{bottom:435.090000px;}
.y15{bottom:439.920000px;}
.y5e{bottom:443.370000px;}
.y46{bottom:454.710000px;}
.y5d{bottom:468.615000px;}
.y52{bottom:478.335000px;}
.y3{bottom:494.100000px;}
.y41{bottom:495.330000px;}
.y2d{bottom:496.365000px;}
.y49{bottom:504.975000px;}
.y39{bottom:507.315000px;}
.y1b{bottom:509.250000px;}
.y5c{bottom:519.015000px;}
.y1e{bottom:527.475000px;}
.y51{bottom:530.535000px;}
.y14{bottom:533.520000px;}
.y5b{bottom:544.215000px;}
.y1a{bottom:552.630000px;}
.y40{bottom:558.510000px;}
.y2{bottom:566.130000px;}
.y1d{bottom:579.135000px;}
.y13{bottom:580.320000px;}
.y50{bottom:582.735000px;}
.y2c{bottom:590.010000px;}
.y5a{bottom:594.615000px;}
.y38{bottom:599.790000px;}
.y48{bottom:605.805000px;}
.y3f{bottom:616.140000px;}
.y59{bottom:619.815000px;}
.y4f{bottom:634.935000px;}
.y1{bottom:638.130000px;}
.y8{bottom:718.095000px;}
.y3e{bottom:719.280000px;}
.y26{bottom:720.645000px;}
.h5{height:61.259906px;}
.h14{height:64.455117px;}
.h16{height:64.565297px;}
.h15{height:67.940980px;}
.h17{height:68.057118px;}
.h11{height:73.269492px;}
.h7{height:82.634766px;}
.h8{height:82.744945px;}
.he{height:85.144945px;}
.h4{height:110.179688px;}
.h10{height:110.289867px;}
.h3{height:116.469492px;}
.h9{height:119.544961px;}
.ha{height:119.655141px;}
.hc{height:128.359336px;}
.hd{height:128.469516px;}
.hb{height:147.089883px;}
.h12{height:147.200063px;}
.hf{height:165.379711px;}
.h13{height:177.979922px;}
.h1{height:183.449180px;}
.h2{height:183.559359px;}
.h6{height:202.179727px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x16{left:10.979979px;}
.x14{left:21.023979px;}
.x6{left:26.639979px;}
.x2b{left:59.399979px;}
.x2e{left:61.379979px;}
.x27{left:68.975979px;}
.x1{left:70.631979px;}
.x2{left:81.251979px;}
.x3{left:83.951979px;}
.x34{left:87.047979px;}
.x31{left:90.287979px;}
.x2a{left:96.911979px;}
.x15{left:98.963979px;}
.x4d{left:100.295979px;}
.x29{left:102.671979px;}
.x1f{left:108.683979px;}
.x7{left:118.799979px;}
.x38{left:129.815979px;}
.x36{left:142.847979px;}
.x32{left:157.064979px;}
.x26{left:176.864979px;}
.x37{left:184.784979px;}
.x1e{left:201.059979px;}
.x33{left:221.144979px;}
.x48{left:232.454979px;}
.x49{left:245.234979px;}
.x4a{left:266.294979px;}
.x30{left:276.734979px;}
.x2c{left:308.549979px;}
.x12{left:317.054979px;}
.x4e{left:323.354979px;}
.x13{left:350.174979px;}
.x39{left:384.914979px;}
.x5{left:429.404979px;}
.x4{left:432.464979px;}
.x21{left:486.539979px;}
.x3d{left:522.104979px;}
.x28{left:528.584979px;}
.x20{left:552.239979px;}
.x4f{left:566.384979px;}
.x3f{left:575.744979px;}
.x50{left:579.524979px;}
.x3a{left:581.684979px;}
.x51{left:589.964979px;}
.x3b{left:594.284979px;}
.x10{left:599.369979px;}
.x35{left:614.699979px;}
.x3c{left:625.784979px;}
.x2f{left:629.744979px;}
.x11{left:692.999979px;}
.x40{left:803.309979px;}
.x41{left:816.269979px;}
.x42{left:837.149979px;}
.x23{left:848.909979px;}
.x22{left:903.449979px;}
.xd{left:927.179979px;}
.x2d{left:942.404979px;}
.xe{left:991.979979px;}
.xf{left:994.679979px;}
.x1b{left:1005.149979px;}
.x1a{left:1016.489979px;}
.x17{left:1020.989979px;}
.x43{left:1023.449979px;}
.x19{left:1043.669979px;}
.x47{left:1068.119979px;}
.x18{left:1090.109979px;}
.x1c{left:1120.529979px;}
.x44{left:1121.579979px;}
.x45{left:1134.719979px;}
.x46{left:1155.599979px;}
.x4b{left:1175.219979px;}
.x25{left:1176.869979px;}
.x8{left:1211.219979px;}
.x9{left:1217.159979px;}
.x24{left:1254.629979px;}
.xa{left:1257.479979px;}
.xb{left:1279.799979px;}
.x4c{left:1355.069979px;}
.x3e{left:1381.349979px;}
.x1d{left:1401.914979px;}
.xc{left:1415.549979px;}
@media print{
.v7{vertical-align:-57.984000pt;}
.v6{vertical-align:-47.232000pt;}
.v5{vertical-align:-44.672000pt;}
.v2{vertical-align:-38.400000pt;}
.v3{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.133333pt;}
.v8{vertical-align:19.840000pt;}
.v1{vertical-align:38.400000pt;}
.v9{vertical-align:71.040000pt;}
.lsf{letter-spacing:-0.404767pt;}
.ls6{letter-spacing:-0.377067pt;}
.lsd{letter-spacing:-0.337306pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.149333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.023680pt;}
.lsa{letter-spacing:0.078400pt;}
.ls5{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.267733pt;}
.lsc{letter-spacing:0.303467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.327168pt;}
.ws5{word-spacing:-149.120000pt;}
.wsb{word-spacing:-78.215040pt;}
.ws9{word-spacing:-56.753707pt;}
.ws4{word-spacing:-46.247040pt;}
.ws7{word-spacing:-42.666624pt;}
.ws8{word-spacing:-42.624000pt;}
.wsa{word-spacing:-37.935360pt;}
.ws1{word-spacing:-35.633664pt;}
.ws6{word-spacing:-32.010624pt;}
.ws3{word-spacing:-31.968000pt;}
.ws0{word-spacing:-28.344960pt;}
.ws11{word-spacing:-26.283577pt;}
.ws12{word-spacing:-24.977664pt;}
.ws10{word-spacing:-24.935040pt;}
.wsf{word-spacing:-18.368384pt;}
.wsd{word-spacing:-0.117333pt;}
.ws2{word-spacing:0.000000pt;}
.ws14{word-spacing:0.037120pt;}
.ws13{word-spacing:0.646953pt;}
.wse{word-spacing:12.288000pt;}
.wsc{word-spacing:43.008000pt;}
._3{margin-left:-3.717120pt;}
._2{margin-left:-2.557440pt;}
._0{margin-left:-1.278720pt;}
._1{width:1.049173pt;}
._8{width:2.129920pt;}
._11{width:23.979093pt;}
._12{width:26.015360pt;}
._f{width:27.136000pt;}
._6{width:30.730667pt;}
._10{width:57.728000pt;}
._e{width:129.259093pt;}
._9{width:984.660053pt;}
._c{width:3003.888213pt;}
._7{width:3605.365333pt;}
._5{width:3797.705387pt;}
._d{width:3922.554027pt;}
._a{width:4037.481387pt;}
._b{width:4204.713387pt;}
._4{width:4251.977387pt;}
.fs4{font-size:71.168000pt;}
.fs12{font-size:74.880000pt;}
.fs14{font-size:75.008000pt;}
.fs13{font-size:78.929661pt;}
.fs15{font-size:79.064584pt;}
.fs3{font-size:85.120000pt;}
.fs7{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fs5{font-size:107.008000pt;}
.fs11{font-size:113.920000pt;}
.fs2{font-size:128.000000pt;}
.fsf{font-size:128.128000pt;}
.fs9{font-size:138.880000pt;}
.fsa{font-size:139.008000pt;}
.fsc{font-size:149.120000pt;}
.fsd{font-size:149.248000pt;}
.fsb{font-size:170.880000pt;}
.fs10{font-size:171.008000pt;}
.fse{font-size:192.128000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.fs6{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:13.344000pt;}
.y2b{bottom:24.512000pt;}
.y33{bottom:25.152000pt;}
.y37{bottom:27.840000pt;}
.y4e{bottom:45.600000pt;}
.y2a{bottom:58.240000pt;}
.y24{bottom:65.568000pt;}
.y32{bottom:66.752000pt;}
.y1c{bottom:71.552000pt;}
.yc{bottom:82.592000pt;}
.y45{bottom:84.512000pt;}
.y29{bottom:103.040000pt;}
.y36{bottom:109.824000pt;}
.yb{bottom:111.392000pt;}
.y23{bottom:111.520000pt;}
.y10{bottom:118.560000pt;}
.y66{bottom:125.280000pt;}
.y12{bottom:134.146667pt;}
.y4d{bottom:135.200000pt;}
.ya{bottom:140.226667pt;}
.y19{bottom:141.373333pt;}
.yf{bottom:147.360000pt;}
.y65{bottom:147.680000pt;}
.y31{bottom:149.986667pt;}
.y25{bottom:160.613333pt;}
.y11{bottom:162.946667pt;}
.y9{bottom:169.026667pt;}
.ye{bottom:176.160000pt;}
.y58{bottom:178.720000pt;}
.y7{bottom:179.866667pt;}
.y18{bottom:182.973333pt;}
.y47{bottom:183.333333pt;}
.y35{bottom:186.946667pt;}
.y28{bottom:187.173333pt;}
.y30{bottom:191.586667pt;}
.y64{bottom:192.480000pt;}
.y22{bottom:200.000000pt;}
.y3c{bottom:204.346667pt;}
.y63{bottom:214.880000pt;}
.y57{bottom:217.120000pt;}
.y4c{bottom:224.826667pt;}
.y44{bottom:225.893333pt;}
.y27{bottom:231.973333pt;}
.y6{bottom:238.373333pt;}
.y21{bottom:245.946667pt;}
.y62{bottom:259.706667pt;}
.y34{bottom:262.653333pt;}
.y56{bottom:263.546667pt;}
.y17{bottom:266.213333pt;}
.y4b{bottom:269.626667pt;}
.y2f{bottom:274.786667pt;}
.y5{bottom:276.800000pt;}
.y43{bottom:277.093333pt;}
.y61{bottom:282.106667pt;}
.y3d{bottom:285.146667pt;}
.y3b{bottom:286.560000pt;}
.y55{bottom:301.946667pt;}
.y60{bottom:326.906667pt;}
.y42{bottom:328.320000pt;}
.y20{bottom:334.426667pt;}
.y54{bottom:348.346667pt;}
.y5f{bottom:349.306667pt;}
.y16{bottom:349.413333pt;}
.y2e{bottom:358.013333pt;}
.y4a{bottom:359.266667pt;}
.y3a{bottom:368.773333pt;}
.y4{bottom:375.200000pt;}
.y1f{bottom:380.346667pt;}
.y53{bottom:386.746667pt;}
.y15{bottom:391.040000pt;}
.y5e{bottom:394.106667pt;}
.y46{bottom:404.186667pt;}
.y5d{bottom:416.546667pt;}
.y52{bottom:425.186667pt;}
.y3{bottom:439.200000pt;}
.y41{bottom:440.293333pt;}
.y2d{bottom:441.213333pt;}
.y49{bottom:448.866667pt;}
.y39{bottom:450.946667pt;}
.y1b{bottom:452.666667pt;}
.y5c{bottom:461.346667pt;}
.y1e{bottom:468.866667pt;}
.y51{bottom:471.586667pt;}
.y14{bottom:474.240000pt;}
.y5b{bottom:483.746667pt;}
.y1a{bottom:491.226667pt;}
.y40{bottom:496.453333pt;}
.y2{bottom:503.226667pt;}
.y1d{bottom:514.786667pt;}
.y13{bottom:515.840000pt;}
.y50{bottom:517.986667pt;}
.y2c{bottom:524.453333pt;}
.y5a{bottom:528.546667pt;}
.y38{bottom:533.146667pt;}
.y48{bottom:538.493333pt;}
.y3f{bottom:547.680000pt;}
.y59{bottom:550.946667pt;}
.y4f{bottom:564.386667pt;}
.y1{bottom:567.226667pt;}
.y8{bottom:638.306667pt;}
.y3e{bottom:639.360000pt;}
.y26{bottom:640.573333pt;}
.h5{height:54.453250pt;}
.h14{height:57.293437pt;}
.h16{height:57.391375pt;}
.h15{height:60.391982pt;}
.h17{height:60.495216pt;}
.h11{height:65.128438pt;}
.h7{height:73.453125pt;}
.h8{height:73.551063pt;}
.he{height:75.684396pt;}
.h4{height:97.937500pt;}
.h10{height:98.035438pt;}
.h3{height:103.528438pt;}
.h9{height:106.262187pt;}
.ha{height:106.360125pt;}
.hc{height:114.097187pt;}
.hd{height:114.195125pt;}
.hb{height:130.746563pt;}
.h12{height:130.844500pt;}
.hf{height:147.004187pt;}
.h13{height:158.204375pt;}
.h1{height:163.065937pt;}
.h2{height:163.163875pt;}
.h6{height:179.715313pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x16{left:9.759981pt;}
.x14{left:18.687981pt;}
.x6{left:23.679981pt;}
.x2b{left:52.799981pt;}
.x2e{left:54.559981pt;}
.x27{left:61.311981pt;}
.x1{left:62.783981pt;}
.x2{left:72.223981pt;}
.x3{left:74.623981pt;}
.x34{left:77.375981pt;}
.x31{left:80.255981pt;}
.x2a{left:86.143981pt;}
.x15{left:87.967981pt;}
.x4d{left:89.151981pt;}
.x29{left:91.263981pt;}
.x1f{left:96.607981pt;}
.x7{left:105.599981pt;}
.x38{left:115.391981pt;}
.x36{left:126.975981pt;}
.x32{left:139.613314pt;}
.x26{left:157.213314pt;}
.x37{left:164.253314pt;}
.x1e{left:178.719981pt;}
.x33{left:196.573314pt;}
.x48{left:206.626648pt;}
.x49{left:217.986648pt;}
.x4a{left:236.706648pt;}
.x30{left:245.986648pt;}
.x2c{left:274.266648pt;}
.x12{left:281.826648pt;}
.x4e{left:287.426648pt;}
.x13{left:311.266648pt;}
.x39{left:342.146648pt;}
.x5{left:381.693314pt;}
.x4{left:384.413314pt;}
.x21{left:432.479981pt;}
.x3d{left:464.093314pt;}
.x28{left:469.853314pt;}
.x20{left:490.879981pt;}
.x4f{left:503.453314pt;}
.x3f{left:511.773314pt;}
.x50{left:515.133314pt;}
.x3a{left:517.053314pt;}
.x51{left:524.413314pt;}
.x3b{left:528.253314pt;}
.x10{left:532.773314pt;}
.x35{left:546.399981pt;}
.x3c{left:556.253314pt;}
.x2f{left:559.773314pt;}
.x11{left:615.999981pt;}
.x40{left:714.053314pt;}
.x41{left:725.573314pt;}
.x42{left:744.133314pt;}
.x23{left:754.586648pt;}
.x22{left:803.066648pt;}
.xd{left:824.159981pt;}
.x2d{left:837.693314pt;}
.xe{left:881.759981pt;}
.xf{left:884.159981pt;}
.x1b{left:893.466648pt;}
.x1a{left:903.546648pt;}
.x17{left:907.546648pt;}
.x43{left:909.733314pt;}
.x19{left:927.706648pt;}
.x47{left:949.439981pt;}
.x18{left:968.986648pt;}
.x1c{left:996.026648pt;}
.x44{left:996.959981pt;}
.x45{left:1008.639981pt;}
.x46{left:1027.199981pt;}
.x4b{left:1044.639981pt;}
.x25{left:1046.106648pt;}
.x8{left:1076.639981pt;}
.x9{left:1081.919981pt;}
.x24{left:1115.226648pt;}
.xa{left:1117.759981pt;}
.xb{left:1137.599981pt;}
.x4c{left:1204.506648pt;}
.x3e{left:1227.866648pt;}
.x1d{left:1246.146648pt;}
.xc{left:1258.266648pt;}
}




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