
    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_3ecc53ddb22c793f25244eea.woff')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_e3e4fdc04f75e1967ce434a6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.927734;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_569dc0fbb3f5e42580865541.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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;}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120072px;}
.v1{vertical-align:27.359973px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.049631px;}
.ls1{letter-spacing:0.053947px;}
.ls2{letter-spacing:0.070650px;}
.ls5{letter-spacing:1.456312px;}
.ls3{letter-spacing:11.537721px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-17.982338px;}
.ws5{word-spacing:-16.543688px;}
.ws4{word-spacing:-14.925263px;}
.ws2{word-spacing:-14.206050px;}
.ws3{word-spacing:-10.429729px;}
.ws1{word-spacing:0.000000px;}
._11{margin-left:-7.912148px;}
._d{margin-left:-6.705164px;}
._18{margin-left:-5.217971px;}
._2{margin-left:-4.207860px;}
._0{margin-left:-2.945502px;}
._1{margin-left:-1.851458px;}
._3{width:1.006449px;}
._4{width:2.733034px;}
._14{width:3.758309px;}
._8{width:4.765881px;}
._7{width:5.970698px;}
._10{width:7.102582px;}
._f{width:8.110596px;}
._5{width:9.189536px;}
._6{width:10.196266px;}
._a{width:11.514034px;}
._b{width:13.255792px;}
._9{width:15.231040px;}
._c{width:16.483847px;}
._19{width:17.619286px;}
._16{width:19.276504px;}
._e{width:20.357692px;}
._12{width:22.064328px;}
._13{width:23.125567px;}
._15{width:28.251095px;}
._17{width:29.312622px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.718915px;}
.fs2{font-size:56.824200px;}
.fs4{font-size:59.701050px;}
.fs5{font-size:66.174750px;}
.fs6{font-size:69.938217px;}
.fs0{font-size:71.929350px;}
.fs1{font-size:84.157196px;}
.y0{bottom:0.000000px;}
.y3{bottom:30.960022px;}
.y2{bottom:51.120002px;}
.y63{bottom:80.639992px;}
.y24{bottom:83.879998px;}
.ya9{bottom:85.139992px;}
.y47{bottom:91.259994px;}
.ye2{bottom:94.139992px;}
.y62{bottom:97.019989px;}
.ycf{bottom:98.639992px;}
.y64{bottom:100.259994px;}
.ya8{bottom:103.139992px;}
.y23{bottom:103.320030px;}
.y7b{bottom:106.379998px;}
.y46{bottom:110.879998px;}
.ye1{bottom:112.139992px;}
.y8a{bottom:113.580025px;}
.y61{bottom:115.019989px;}
.y84{bottom:115.379998px;}
.yce{bottom:116.639992px;}
.y5e{bottom:119.879998px;}
.ya7{bottom:121.139992px;}
.y22{bottom:122.759994px;}
.y7a{bottom:125.820030px;}
.y89{bottom:130.139992px;}
.y45{bottom:130.320030px;}
.ycd{bottom:134.639992px;}
.y83{bottom:134.820030px;}
.ya6{bottom:139.139992px;}
.y5d{bottom:139.320030px;}
.y21{bottom:142.379998px;}
.y79{bottom:145.440033px;}
.y88{bottom:146.519989px;}
.ye0{bottom:148.139992px;}
.y44{bottom:149.759994px;}
.ycc{bottom:152.639992px;}
.y82{bottom:154.259994px;}
.ya5{bottom:157.139992px;}
.y5c{bottom:158.759994px;}
.y20{bottom:161.820030px;}
.y87{bottom:163.080025px;}
.ydf{bottom:166.139992px;}
.y43{bottom:169.379998px;}
.ycb{bottom:170.639992px;}
.y81{bottom:173.879998px;}
.ya4{bottom:175.139992px;}
.y5b{bottom:178.379998px;}
.y71{bottom:179.820030px;}
.y86{bottom:181.080025px;}
.y1f{bottom:181.259994px;}
.yde{bottom:184.139992px;}
.yca{bottom:188.639992px;}
.y42{bottom:188.820030px;}
.ya3{bottom:193.139992px;}
.y80{bottom:193.320030px;}
.y5a{bottom:197.820030px;}
.y70{bottom:199.440033px;}
.y1e{bottom:200.879998px;}
.ydd{bottom:202.139992px;}
.yc9{bottom:206.639992px;}
.y41{bottom:208.259994px;}
.yf9{bottom:209.519989px;}
.ya2{bottom:211.139992px;}
.y7f{bottom:212.759994px;}
.y59{bottom:217.259994px;}
.ydc{bottom:220.139992px;}
.y1d{bottom:220.320030px;}
.yc8{bottom:224.639992px;}
.y40{bottom:227.879998px;}
.ya1{bottom:229.139992px;}
.y7e{bottom:232.559967px;}
.y58{bottom:236.879998px;}
.ydb{bottom:238.139992px;}
.y1c{bottom:239.759994px;}
.yc7{bottom:242.639992px;}
.ya0{bottom:247.139992px;}
.y3f{bottom:247.320030px;}
.yda{bottom:256.139992px;}
.y57{bottom:256.320030px;}
.y1b{bottom:259.379998px;}
.yc6{bottom:260.639992px;}
.y9f{bottom:265.139992px;}
.y3e{bottom:266.759994px;}
.yd9{bottom:274.139992px;}
.y56{bottom:275.759994px;}
.yc5{bottom:278.639992px;}
.y1a{bottom:278.820030px;}
.y9e{bottom:283.139992px;}
.y3d{bottom:286.379998px;}
.yd8{bottom:292.139992px;}
.y55{bottom:295.379998px;}
.yc4{bottom:296.639992px;}
.y19{bottom:298.259994px;}
.y9d{bottom:301.139992px;}
.yf8{bottom:305.639992px;}
.y3c{bottom:305.819995px;}
.yd7{bottom:310.139992px;}
.yc3{bottom:314.639992px;}
.y54{bottom:314.819995px;}
.y18{bottom:317.879998px;}
.y9c{bottom:319.139992px;}
.y3b{bottom:325.259994px;}
.yf7{bottom:328.139992px;}
.yc2{bottom:332.639992px;}
.y53{bottom:334.259994px;}
.y9b{bottom:337.139992px;}
.y17{bottom:337.319995px;}
.y3a{bottom:344.879998px;}
.yf6{bottom:346.139992px;}
.yc1{bottom:350.639992px;}
.y52{bottom:353.879998px;}
.yd6{bottom:355.139992px;}
.y9a{bottom:355.319995px;}
.y16{bottom:356.759994px;}
.yf5{bottom:364.139992px;}
.y39{bottom:364.319995px;}
.yc0{bottom:368.639992px;}
.y6d{bottom:368.819995px;}
.y51{bottom:373.319995px;}
.y99{bottom:374.759994px;}
.y15{bottom:376.379998px;}
.yd5{bottom:377.639992px;}
.y38{bottom:383.759994px;}
.ybf{bottom:386.639992px;}
.y6c{bottom:388.259994px;}
.y50{bottom:392.759994px;}
.y98{bottom:394.379998px;}
.yd4{bottom:395.639992px;}
.y14{bottom:395.819995px;}
.y37{bottom:403.379998px;}
.ybe{bottom:404.639992px;}
.y6b{bottom:407.879998px;}
.yf4{bottom:409.139992px;}
.y4f{bottom:412.379998px;}
.yd3{bottom:413.639992px;}
.y97{bottom:413.819995px;}
.y13{bottom:415.259994px;}
.ybd{bottom:422.639992px;}
.y36{bottom:422.819995px;}
.yf3{bottom:427.139992px;}
.y6a{bottom:427.319995px;}
.yd2{bottom:431.639992px;}
.y4e{bottom:431.819995px;}
.y96{bottom:433.259994px;}
.y12{bottom:434.879998px;}
.ybc{bottom:440.639992px;}
.y78{bottom:442.259994px;}
.yf2{bottom:445.139992px;}
.y35{bottom:446.759994px;}
.yd1{bottom:449.639992px;}
.y4d{bottom:451.259994px;}
.y95{bottom:452.879998px;}
.y11{bottom:454.319995px;}
.ybb{bottom:458.639992px;}
.y77{bottom:461.879998px;}
.yf1{bottom:463.139992px;}
.y34{bottom:466.379998px;}
.y4c{bottom:470.879998px;}
.yd0{bottom:472.139992px;}
.y94{bottom:472.319995px;}
.y10{bottom:473.759994px;}
.yba{bottom:476.639992px;}
.yf0{bottom:481.139992px;}
.y33{bottom:485.819995px;}
.y4b{bottom:490.319995px;}
.y93{bottom:491.759994px;}
.yf{bottom:493.379998px;}
.yb9{bottom:494.639992px;}
.yef{bottom:499.139992px;}
.y32{bottom:505.259994px;}
.y4a{bottom:509.759994px;}
.y92{bottom:511.379998px;}
.yb8{bottom:512.639992px;}
.ye{bottom:512.819995px;}
.yee{bottom:517.139992px;}
.y31{bottom:524.879998px;}
.y85{bottom:525.060001px;}
.y49{bottom:529.379998px;}
.yb7{bottom:530.639992px;}
.y91{bottom:530.819995px;}
.yd{bottom:532.259994px;}
.yed{bottom:535.139992px;}
.y69{bottom:544.319996px;}
.y30{bottom:544.500000px;}
.yb6{bottom:548.639992px;}
.y48{bottom:548.819996px;}
.y90{bottom:550.259994px;}
.yc{bottom:551.879998px;}
.yec{bottom:553.139992px;}
.y76{bottom:563.759994px;}
.y68{bottom:563.939999px;}
.yb5{bottom:566.639992px;}
.y2f{bottom:568.259994px;}
.y6f{bottom:569.879998px;}
.yeb{bottom:571.139992px;}
.yb{bottom:571.319996px;}
.y75{bottom:583.379998px;}
.yb4{bottom:584.639992px;}
.y2e{bottom:587.879998px;}
.yea{bottom:589.139992px;}
.y8f{bottom:589.319996px;}
.y6e{bottom:589.500000px;}
.ya{bottom:590.759994px;}
.yb3{bottom:602.639992px;}
.y74{bottom:602.819996px;}
.ye9{bottom:607.139992px;}
.y2d{bottom:607.319996px;}
.y8e{bottom:608.759994px;}
.y9{bottom:610.379998px;}
.yb2{bottom:620.639992px;}
.y73{bottom:622.259994px;}
.ye8{bottom:625.139992px;}
.y2c{bottom:626.759994px;}
.y60{bottom:628.379998px;}
.y8{bottom:629.819996px;}
.yb1{bottom:638.639992px;}
.y72{bottom:642.060001px;}
.ye7{bottom:643.139992px;}
.y2b{bottom:646.379998px;}
.y8d{bottom:647.819996px;}
.y5f{bottom:648.000000px;}
.y67{bottom:649.259994px;}
.y7{bottom:649.439999px;}
.yb0{bottom:656.639992px;}
.ye6{bottom:661.139992px;}
.y2a{bottom:665.819996px;}
.y8c{bottom:667.259994px;}
.y7d{bottom:668.879998px;}
.yaf{bottom:674.639992px;}
.y6{bottom:677.879998px;}
.ye5{bottom:683.639992px;}
.y29{bottom:685.259994px;}
.y66{bottom:686.879998px;}
.yae{bottom:692.639992px;}
.y5{bottom:697.500000px;}
.ye4{bottom:701.639992px;}
.y28{bottom:704.879998px;}
.y7c{bottom:706.319996px;}
.y65{bottom:706.500000px;}
.yad{bottom:710.639992px;}
.ye3{bottom:724.140000px;}
.y27{bottom:724.319996px;}
.y8b{bottom:725.760003px;}
.y4{bottom:726.120002px;}
.yac{bottom:728.640000px;}
.y26{bottom:743.760003px;}
.yab{bottom:746.640000px;}
.y25{bottom:763.379998px;}
.yaa{bottom:764.640000px;}
.y1{bottom:805.860000px;}
.ha{height:44.816591px;}
.hd{height:47.365384px;}
.h3{height:48.713871px;}
.h7{height:49.964648px;}
.h9{height:50.489365px;}
.hb{height:55.382579px;}
.hc{height:55.964193px;}
.h2{height:56.995132px;}
.h1{height:60.198685px;}
.h4{height:60.830876px;}
.h5{height:62.275120px;}
.h8{height:62.275151px;}
.h6{height:62.275223px;}
.h0{height:864.000000px;}
.w0{width:540.000000px;}
.x0{left:0.000000px;}
.xd{left:63.899999px;}
.x9{left:85.140000px;}
.x8{left:106.379998px;}
.x6{left:145.800007px;}
.x12{left:155.340002px;}
.x13{left:169.740006px;}
.xa{left:195.840002px;}
.x5{left:213.659998px;}
.xe{left:230.939999px;}
.x4{left:235.080008px;}
.x7{left:242.280001px;}
.xf{left:268.020006px;}
.xb{left:272.159998px;}
.xc{left:276.479994px;}
.x10{left:279.900003px;}
.x1{left:287.099997px;}
.x11{left:289.259994px;}
.x2{left:293.399987px;}
.x3{left:297.720017px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440064pt;}
.v1{vertical-align:24.319976pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.044116pt;}
.ls1{letter-spacing:0.047953pt;}
.ls2{letter-spacing:0.062800pt;}
.ls5{letter-spacing:1.294500pt;}
.ls3{letter-spacing:10.255752pt;}
.ws0{word-spacing:-15.984300pt;}
.ws5{word-spacing:-14.705500pt;}
.ws4{word-spacing:-13.266900pt;}
.ws2{word-spacing:-12.627600pt;}
.ws3{word-spacing:-9.270870pt;}
.ws1{word-spacing:0.000000pt;}
._11{margin-left:-7.033021pt;}
._d{margin-left:-5.960146pt;}
._18{margin-left:-4.638196pt;}
._2{margin-left:-3.740320pt;}
._0{margin-left:-2.618224pt;}
._1{margin-left:-1.645741pt;}
._3{width:0.894621pt;}
._4{width:2.429364pt;}
._14{width:3.340719pt;}
._8{width:4.236339pt;}
._7{width:5.307287pt;}
._10{width:6.313406pt;}
._f{width:7.209419pt;}
._5{width:8.168477pt;}
._6{width:9.063348pt;}
._a{width:10.234697pt;}
._b{width:11.782926pt;}
._9{width:13.538702pt;}
._c{width:14.652308pt;}
._19{width:15.661587pt;}
._16{width:17.134670pt;}
._e{width:18.095726pt;}
._12{width:19.612736pt;}
._13{width:20.556060pt;}
._15{width:25.112085pt;}
._17{width:26.055664pt;}
.fs3{font-size:37.083480pt;}
.fs2{font-size:50.510400pt;}
.fs4{font-size:53.067600pt;}
.fs5{font-size:58.822000pt;}
.fs6{font-size:62.167304pt;}
.fs0{font-size:63.937200pt;}
.fs1{font-size:74.806396pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:27.520020pt;}
.y2{bottom:45.440002pt;}
.y63{bottom:71.679993pt;}
.y24{bottom:74.559998pt;}
.ya9{bottom:75.679993pt;}
.y47{bottom:81.119995pt;}
.ye2{bottom:83.679993pt;}
.y62{bottom:86.239990pt;}
.ycf{bottom:87.679993pt;}
.y64{bottom:89.119995pt;}
.ya8{bottom:91.679993pt;}
.y23{bottom:91.840027pt;}
.y7b{bottom:94.559998pt;}
.y46{bottom:98.559998pt;}
.ye1{bottom:99.679993pt;}
.y8a{bottom:100.960022pt;}
.y61{bottom:102.239990pt;}
.y84{bottom:102.559998pt;}
.yce{bottom:103.679993pt;}
.y5e{bottom:106.559998pt;}
.ya7{bottom:107.679993pt;}
.y22{bottom:109.119995pt;}
.y7a{bottom:111.840027pt;}
.y89{bottom:115.679993pt;}
.y45{bottom:115.840027pt;}
.ycd{bottom:119.679993pt;}
.y83{bottom:119.840027pt;}
.ya6{bottom:123.679993pt;}
.y5d{bottom:123.840027pt;}
.y21{bottom:126.559998pt;}
.y79{bottom:129.280029pt;}
.y88{bottom:130.239990pt;}
.ye0{bottom:131.679993pt;}
.y44{bottom:133.119995pt;}
.ycc{bottom:135.679993pt;}
.y82{bottom:137.119995pt;}
.ya5{bottom:139.679993pt;}
.y5c{bottom:141.119995pt;}
.y20{bottom:143.840027pt;}
.y87{bottom:144.960022pt;}
.ydf{bottom:147.679993pt;}
.y43{bottom:150.559998pt;}
.ycb{bottom:151.679993pt;}
.y81{bottom:154.559998pt;}
.ya4{bottom:155.679993pt;}
.y5b{bottom:158.559998pt;}
.y71{bottom:159.840027pt;}
.y86{bottom:160.960022pt;}
.y1f{bottom:161.119995pt;}
.yde{bottom:163.679993pt;}
.yca{bottom:167.679993pt;}
.y42{bottom:167.840027pt;}
.ya3{bottom:171.679993pt;}
.y80{bottom:171.840027pt;}
.y5a{bottom:175.840027pt;}
.y70{bottom:177.280029pt;}
.y1e{bottom:178.559998pt;}
.ydd{bottom:179.679993pt;}
.yc9{bottom:183.679993pt;}
.y41{bottom:185.119995pt;}
.yf9{bottom:186.239990pt;}
.ya2{bottom:187.679993pt;}
.y7f{bottom:189.119995pt;}
.y59{bottom:193.119995pt;}
.ydc{bottom:195.679993pt;}
.y1d{bottom:195.840027pt;}
.yc8{bottom:199.679993pt;}
.y40{bottom:202.559998pt;}
.ya1{bottom:203.679993pt;}
.y7e{bottom:206.719971pt;}
.y58{bottom:210.559998pt;}
.ydb{bottom:211.679993pt;}
.y1c{bottom:213.119995pt;}
.yc7{bottom:215.679993pt;}
.ya0{bottom:219.679993pt;}
.y3f{bottom:219.840027pt;}
.yda{bottom:227.679993pt;}
.y57{bottom:227.840027pt;}
.y1b{bottom:230.559998pt;}
.yc6{bottom:231.679993pt;}
.y9f{bottom:235.679993pt;}
.y3e{bottom:237.119995pt;}
.yd9{bottom:243.679993pt;}
.y56{bottom:245.119995pt;}
.yc5{bottom:247.679993pt;}
.y1a{bottom:247.840027pt;}
.y9e{bottom:251.679993pt;}
.y3d{bottom:254.559998pt;}
.yd8{bottom:259.679993pt;}
.y55{bottom:262.559998pt;}
.yc4{bottom:263.679993pt;}
.y19{bottom:265.119995pt;}
.y9d{bottom:267.679993pt;}
.yf8{bottom:271.679993pt;}
.y3c{bottom:271.839996pt;}
.yd7{bottom:275.679993pt;}
.yc3{bottom:279.679993pt;}
.y54{bottom:279.839996pt;}
.y18{bottom:282.559998pt;}
.y9c{bottom:283.679993pt;}
.y3b{bottom:289.119995pt;}
.yf7{bottom:291.679993pt;}
.yc2{bottom:295.679993pt;}
.y53{bottom:297.119995pt;}
.y9b{bottom:299.679993pt;}
.y17{bottom:299.839996pt;}
.y3a{bottom:306.559998pt;}
.yf6{bottom:307.679993pt;}
.yc1{bottom:311.679993pt;}
.y52{bottom:314.559998pt;}
.yd6{bottom:315.679993pt;}
.y9a{bottom:315.839996pt;}
.y16{bottom:317.119995pt;}
.yf5{bottom:323.679993pt;}
.y39{bottom:323.839996pt;}
.yc0{bottom:327.679993pt;}
.y6d{bottom:327.839996pt;}
.y51{bottom:331.839996pt;}
.y99{bottom:333.119995pt;}
.y15{bottom:334.559998pt;}
.yd5{bottom:335.679993pt;}
.y38{bottom:341.119995pt;}
.ybf{bottom:343.679993pt;}
.y6c{bottom:345.119995pt;}
.y50{bottom:349.119995pt;}
.y98{bottom:350.559998pt;}
.yd4{bottom:351.679993pt;}
.y14{bottom:351.839996pt;}
.y37{bottom:358.559998pt;}
.ybe{bottom:359.679993pt;}
.y6b{bottom:362.559998pt;}
.yf4{bottom:363.679993pt;}
.y4f{bottom:366.559998pt;}
.yd3{bottom:367.679993pt;}
.y97{bottom:367.839996pt;}
.y13{bottom:369.119995pt;}
.ybd{bottom:375.679993pt;}
.y36{bottom:375.839996pt;}
.yf3{bottom:379.679993pt;}
.y6a{bottom:379.839996pt;}
.yd2{bottom:383.679993pt;}
.y4e{bottom:383.839996pt;}
.y96{bottom:385.119995pt;}
.y12{bottom:386.559998pt;}
.ybc{bottom:391.679993pt;}
.y78{bottom:393.119995pt;}
.yf2{bottom:395.679993pt;}
.y35{bottom:397.119995pt;}
.yd1{bottom:399.679993pt;}
.y4d{bottom:401.119995pt;}
.y95{bottom:402.559998pt;}
.y11{bottom:403.839996pt;}
.ybb{bottom:407.679993pt;}
.y77{bottom:410.559998pt;}
.yf1{bottom:411.679993pt;}
.y34{bottom:414.559998pt;}
.y4c{bottom:418.559998pt;}
.yd0{bottom:419.679993pt;}
.y94{bottom:419.839996pt;}
.y10{bottom:421.119995pt;}
.yba{bottom:423.679993pt;}
.yf0{bottom:427.679993pt;}
.y33{bottom:431.839996pt;}
.y4b{bottom:435.839996pt;}
.y93{bottom:437.119995pt;}
.yf{bottom:438.559998pt;}
.yb9{bottom:439.679993pt;}
.yef{bottom:443.679993pt;}
.y32{bottom:449.119995pt;}
.y4a{bottom:453.119995pt;}
.y92{bottom:454.559998pt;}
.yb8{bottom:455.679993pt;}
.ye{bottom:455.839996pt;}
.yee{bottom:459.679993pt;}
.y31{bottom:466.559998pt;}
.y85{bottom:466.720001pt;}
.y49{bottom:470.559998pt;}
.yb7{bottom:471.679993pt;}
.y91{bottom:471.839996pt;}
.yd{bottom:473.119995pt;}
.yed{bottom:475.679993pt;}
.y69{bottom:483.839996pt;}
.y30{bottom:484.000000pt;}
.yb6{bottom:487.679993pt;}
.y48{bottom:487.839996pt;}
.y90{bottom:489.119995pt;}
.yc{bottom:490.559998pt;}
.yec{bottom:491.679993pt;}
.y76{bottom:501.119995pt;}
.y68{bottom:501.279999pt;}
.yb5{bottom:503.679993pt;}
.y2f{bottom:505.119995pt;}
.y6f{bottom:506.559998pt;}
.yeb{bottom:507.679993pt;}
.yb{bottom:507.839996pt;}
.y75{bottom:518.559998pt;}
.yb4{bottom:519.679993pt;}
.y2e{bottom:522.559998pt;}
.yea{bottom:523.679993pt;}
.y8f{bottom:523.839996pt;}
.y6e{bottom:524.000000pt;}
.ya{bottom:525.119995pt;}
.yb3{bottom:535.679993pt;}
.y74{bottom:535.839996pt;}
.ye9{bottom:539.679993pt;}
.y2d{bottom:539.839996pt;}
.y8e{bottom:541.119995pt;}
.y9{bottom:542.559998pt;}
.yb2{bottom:551.679993pt;}
.y73{bottom:553.119995pt;}
.ye8{bottom:555.679993pt;}
.y2c{bottom:557.119995pt;}
.y60{bottom:558.559998pt;}
.y8{bottom:559.839996pt;}
.yb1{bottom:567.679993pt;}
.y72{bottom:570.720001pt;}
.ye7{bottom:571.679993pt;}
.y2b{bottom:574.559998pt;}
.y8d{bottom:575.839996pt;}
.y5f{bottom:576.000000pt;}
.y67{bottom:577.119995pt;}
.y7{bottom:577.279999pt;}
.yb0{bottom:583.679993pt;}
.ye6{bottom:587.679993pt;}
.y2a{bottom:591.839996pt;}
.y8c{bottom:593.119995pt;}
.y7d{bottom:594.559998pt;}
.yaf{bottom:599.679993pt;}
.y6{bottom:602.559998pt;}
.ye5{bottom:607.679993pt;}
.y29{bottom:609.119995pt;}
.y66{bottom:610.559998pt;}
.yae{bottom:615.679993pt;}
.y5{bottom:620.000000pt;}
.ye4{bottom:623.679993pt;}
.y28{bottom:626.559998pt;}
.y7c{bottom:627.839996pt;}
.y65{bottom:628.000000pt;}
.yad{bottom:631.679993pt;}
.ye3{bottom:643.680000pt;}
.y27{bottom:643.839996pt;}
.y8b{bottom:645.120003pt;}
.y4{bottom:645.440002pt;}
.yac{bottom:647.680000pt;}
.y26{bottom:661.120003pt;}
.yab{bottom:663.680000pt;}
.y25{bottom:678.559998pt;}
.yaa{bottom:679.680000pt;}
.y1{bottom:716.320000pt;}
.ha{height:39.836970pt;}
.hd{height:42.102564pt;}
.h3{height:43.301219pt;}
.h7{height:44.413021pt;}
.h9{height:44.879435pt;}
.hb{height:49.228959pt;}
.hc{height:49.745949pt;}
.h2{height:50.662339pt;}
.h1{height:53.509942pt;}
.h4{height:54.071890pt;}
.h5{height:55.355662pt;}
.h8{height:55.355690pt;}
.h6{height:55.355754pt;}
.h0{height:768.000000pt;}
.w0{width:480.000000pt;}
.x0{left:0.000000pt;}
.xd{left:56.799999pt;}
.x9{left:75.680000pt;}
.x8{left:94.559998pt;}
.x6{left:129.600006pt;}
.x12{left:138.080002pt;}
.x13{left:150.880005pt;}
.xa{left:174.080002pt;}
.x5{left:189.919998pt;}
.xe{left:205.279999pt;}
.x4{left:208.960007pt;}
.x7{left:215.360001pt;}
.xf{left:238.240005pt;}
.xb{left:241.919998pt;}
.xc{left:245.759995pt;}
.x10{left:248.800003pt;}
.x1{left:255.199997pt;}
.x11{left:257.119995pt;}
.x2{left:260.799988pt;}
.x3{left:264.640015pt;}
}




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