
    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_568a03293a75a91405b89080.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.835938;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_6b7cc42458e90a69c215dd54.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.041992;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_9e85df211aa2b97068847cc2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.056000;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_ed61a3a4285c6aecf29e2f1d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_ea8787a6299e55fe9d5e4506.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.012695;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_95a3baff0a2400ecbee78984.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_2b93c803f819759008b2d86e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_2cdb208a03fa7ceee2598fc2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.032715;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_e10a2c23fd953005727ed37a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926270;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);}
.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);}
.v1{vertical-align:-25.759891px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:29.226385px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.041211px;}
.ls1{letter-spacing:0.045554px;}
.ls2{letter-spacing:0.045599px;}
.ls4{letter-spacing:0.075299px;}
.ls3{letter-spacing:108.028776px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,153,0),0 0.015em rgb(255,153,0),0.015em 0 rgb(255,153,0),0 -0.015em  rgb(255,153,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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,153,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-38.400000px;}
.ws4{word-spacing:-32.604002px;}
.ws2{word-spacing:-26.784001px;}
.ws5{word-spacing:-26.592002px;}
.ws3{word-spacing:-23.808002px;}
.ws8{word-spacing:-11.634000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:57.366008px;}
.ws6{word-spacing:167.519990px;}
._7{margin-left:-20.160001px;}
._6{margin-left:-16.992001px;}
._e{margin-left:-14.400000px;}
._b{margin-left:-10.764001px;}
._8{margin-left:-9.360001px;}
._0{margin-left:-7.080000px;}
._5{margin-left:-5.472000px;}
._4{margin-left:-3.348000px;}
._2{margin-left:-1.710000px;}
._1{width:1.312070px;}
._9{width:2.538994px;}
._d{width:30.039582px;}
._a{width:84.993161px;}
._3{width:108.039657px;}
._c{width:3098.569919px;}
.fc3{color:rgb(255,153,0);}
.fc2{color:transparent;}
.fc1{color:rgb(17,85,204);}
.fc5{color:rgb(165,165,165);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:42.000000px;}
.fsc{font-size:60.000000px;}
.fs6{font-size:72.000002px;}
.fsa{font-size:84.000000px;}
.fs3{font-size:90.000003px;}
.fs8{font-size:96.000006px;}
.fs5{font-size:108.000003px;}
.fs2{font-size:120.000001px;}
.fs1{font-size:144.000005px;}
.fs4{font-size:156.000011px;}
.fs9{font-size:216.000007px;}
.fs7{font-size:288.000009px;}
.fs0{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y92{bottom:9.835080px;}
.y56{bottom:9.980643px;}
.y5{bottom:15.485426px;}
.yaa{bottom:22.100038px;}
.y91{bottom:22.435103px;}
.y5c{bottom:24.579094px;}
.y35{bottom:38.149947px;}
.y55{bottom:39.230644px;}
.y33{bottom:40.690480px;}
.y29{bottom:41.477719px;}
.ya9{bottom:47.300061px;}
.y1e{bottom:47.409777px;}
.y4f{bottom:47.536745px;}
.y90{bottom:47.635126px;}
.y40{bottom:51.207035px;}
.y60{bottom:66.286760px;}
.y21{bottom:67.332864px;}
.y37{bottom:70.332845px;}
.ya8{bottom:72.500107px;}
.y8f{bottom:72.835149px;}
.y3f{bottom:77.902903px;}
.y5b{bottom:78.209718px;}
.ye{bottom:84.126246px;}
.y1d{bottom:85.659783px;}
.y4{bottom:89.246087px;}
.ya7{bottom:97.700108px;}
.y8e{bottom:98.035161px;}
.y5e{bottom:100.435398px;}
.y28{bottom:102.551530px;}
.y7f{bottom:103.651275px;}
.y54{bottom:108.617467px;}
.y8d{bottom:110.635162px;}
.y3e{bottom:120.652904px;}
.y5a{bottom:120.959714px;}
.y8c{bottom:123.235162px;}
.y1c{bottom:123.909784px;}
.y3{bottom:131.996089px;}
.yd{bottom:132.501247px;}
.y45{bottom:134.282809px;}
.ya6{bottom:135.500166px;}
.y8b{bottom:135.835157px;}
.y5d{bottom:143.185395px;}
.y8a{bottom:148.435152px;}
.y53{bottom:151.367464px;}
.y4e{bottom:155.613541px;}
.ya5{bottom:160.700189px;}
.y89{bottom:161.035152px;}
.y1b{bottom:162.159781px;}
.y7e{bottom:162.712303px;}
.y3d{bottom:163.402906px;}
.y27{bottom:163.625352px;}
.y88{bottom:173.635147px;}
.y44{bottom:177.032810px;}
.y5f{bottom:182.953089px;}
.yac{bottom:184.301435px;}
.ya4{bottom:185.900223px;}
.y87{bottom:186.235144px;}
.y34{bottom:189.582039px;}
.y59{bottom:192.286449px;}
.y3c{bottom:206.152907px;}
.yc{bottom:206.776360px;}
.y22{bottom:210.607727px;}
.y86{bottom:211.435145px;}
.y2{bottom:215.909042px;}
.y7d{bottom:216.735930px;}
.y4d{bottom:218.009193px;}
.y43{bottom:219.782811px;}
.y75{bottom:222.274709px;}
.y52{bottom:222.694244px;}
.ya3{bottom:223.700258px;}
.y85{bottom:224.035144px;}
.y26{bottom:224.699163px;}
.y11{bottom:232.676437px;}
.y57{bottom:234.574247px;}
.y2c{bottom:239.578103px;}
.y20{bottom:242.010101px;}
.y48{bottom:243.559487px;}
.y1a{bottom:245.204993px;}
.y74{bottom:247.474704px;}
.ya2{bottom:248.900293px;}
.y3b{bottom:248.902913px;}
.y69{bottom:250.372317px;}
.y58{bottom:251.271016px;}
.y6b{bottom:254.400897px;}
.yb{bottom:255.151361px;}
.y16{bottom:261.517493px;}
.y42{bottom:262.532817px;}
.y13{bottom:266.136818px;}
.y32{bottom:266.616489px;}
.y2b{bottom:268.828099px;}
.y73{bottom:272.674703px;}
.ya1{bottom:274.100316px;}
.y62{bottom:274.465277px;}
.y1f{bottom:274.635102px;}
.y19{bottom:277.829994px;}
.yad{bottom:278.560300px;}
.y4c{bottom:280.404878px;}
.y10{bottom:281.051438px;}
.y2f{bottom:282.044649px;}
.y25{bottom:285.772985px;}
.y3a{bottom:291.652914px;}
.y51{bottom:294.021012px;}
.y15{bottom:294.142494px;}
.y72{bottom:297.874701px;}
.y2a{bottom:298.078100px;}
.ya0{bottom:299.300340px;}
.y47{bottom:300.532895px;}
.y31{bottom:304.866490px;}
.y41{bottom:305.282819px;}
.y6f{bottom:305.504057px;}
.y18{bottom:310.454995px;}
.yf{bottom:312.699321px;}
.y2e{bottom:320.294646px;}
.y1{bottom:323.909046px;}
.y9f{bottom:324.500374px;}
.y46{bottom:325.282898px;}
.y14{bottom:326.767496px;}
.y71{bottom:328.752747px;}
.ya{bottom:329.426440px;}
.y4b{bottom:336.652916px;}
.y70{bottom:341.352746px;}
.y17{bottom:343.079994px;}
.y30{bottom:343.116487px;}
.y6e{bottom:343.304049px;}
.y24{bottom:346.846795px;}
.y6c{bottom:351.664373px;}
.y6a{bottom:356.863347px;}
.y7c{bottom:358.170504px;}
.y50{bottom:360.635190px;}
.y61{bottom:361.090280px;}
.y39{bottom:361.402912px;}
.y9e{bottom:374.900432px;}
.y9{bottom:377.801441px;}
.y68{bottom:377.848501px;}
.y6d{bottom:381.104049px;}
.y36{bottom:387.165705px;}
.y9d{bottom:387.500444px;}
.y4a{bottom:388.402913px;}
.y2d{bottom:398.357240px;}
.y23{bottom:407.920617px;}
.y7b{bottom:421.170573px;}
.y84{bottom:431.303124px;}
.y67{bottom:434.902092px;}
.y38{bottom:435.948767px;}
.y9c{bottom:437.900479px;}
.y12{bottom:443.481830px;}
.y8{bottom:445.607241px;}
.y83{bottom:449.303125px;}
.y9b{bottom:450.500479px;}
.y9a{bottom:463.100480px;}
.y82{bottom:467.303126px;}
.y66{bottom:472.702104px;}
.y7a{bottom:484.170609px;}
.y99{bottom:488.300469px;}
.y98{bottom:500.900470px;}
.y81{bottom:503.303127px;}
.y65{bottom:510.502094px;}
.y97{bottom:513.500464px;}
.y80{bottom:521.303128px;}
.y96{bottom:526.100462px;}
.y95{bottom:538.700463px;}
.y79{bottom:547.170594px;}
.y64{bottom:548.302086px;}
.y7{bottom:548.775001px;}
.y94{bottom:551.300462px;}
.y93{bottom:563.900462px;}
.y49{bottom:567.995432px;}
.y78{bottom:572.370593px;}
.y6{bottom:575.775000px;}
.yab{bottom:583.887478px;}
.y77{bottom:584.970592px;}
.y63{bottom:586.102086px;}
.y76{bottom:597.570591px;}
.h13{height:30.597656px;}
.h14{height:43.710938px;}
.h7{height:58.176002px;}
.hf{height:61.195312px;}
.h4{height:67.324221px;}
.he{height:69.890629px;}
.h11{height:71.812505px;}
.hc{height:75.843755px;}
.h12{height:77.062505px;}
.ha{height:78.000005px;}
.h6{height:87.750003px;}
.h3{height:89.765626px;}
.h10{height:90.421697px;}
.hb{height:97.500001px;}
.h2{height:107.718753px;}
.h5{height:116.695321px;}
.h9{height:126.048009px;}
.hd{height:143.964848px;}
.h8{height:215.437507px;}
.h1{height:269.296884px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4c{left:8.244388px;}
.x36{left:10.125000px;}
.x45{left:12.240356px;}
.x3f{left:16.951772px;}
.x44{left:27.000595px;}
.x51{left:32.890458px;}
.x23{left:49.449204px;}
.x27{left:63.716364px;}
.xd{left:68.831545px;}
.x38{left:72.377954px;}
.x9{left:83.249702px;}
.x25{left:102.549214px;}
.xa{left:117.711617px;}
.xc{left:126.563520px;}
.x28{left:128.065761px;}
.x21{left:147.656255px;}
.x35{left:156.307100px;}
.x11{left:161.986822px;}
.x3c{left:167.660443px;}
.x3d{left:172.600408px;}
.x10{left:175.196784px;}
.x40{left:176.251302px;}
.x3e{left:186.797560px;}
.x32{left:189.914069px;}
.x1{left:194.633792px;}
.x34{left:201.115869px;}
.x19{left:202.377841px;}
.x42{left:207.492194px;}
.x29{left:219.631901px;}
.x46{left:244.530064px;}
.x3b{left:251.204138px;}
.x1d{left:259.787528px;}
.x1c{left:264.566580px;}
.x3a{left:267.363290px;}
.x2d{left:293.695873px;}
.x24{left:302.129231px;}
.x53{left:317.065443px;}
.x22{left:349.812065px;}
.x33{left:357.812449px;}
.x2b{left:360.144687px;}
.x2{left:361.713882px;}
.x4e{left:392.015232px;}
.x4d{left:397.020129px;}
.x8{left:406.983825px;}
.xf{left:414.415732px;}
.x43{left:434.882826px;}
.x52{left:451.987876px;}
.x1a{left:465.005993px;}
.xb{left:471.862757px;}
.x47{left:476.315981px;}
.x14{left:480.573491px;}
.x12{left:484.825201px;}
.x13{left:491.852056px;}
.x1b{left:493.258437px;}
.x2c{left:500.837596px;}
.x39{left:503.657229px;}
.x31{left:504.887709px;}
.x20{left:506.777360px;}
.xe{left:516.665042px;}
.x5{left:562.845506px;}
.x4f{left:581.250011px;}
.x2f{left:592.461660px;}
.x18{left:603.649651px;}
.x50{left:635.250013px;}
.x30{left:648.750058px;}
.x1e{left:679.729806px;}
.x48{left:685.667609px;}
.x2a{left:689.766772px;}
.x37{left:694.488172px;}
.x4b{left:703.125135px;}
.x1f{left:708.470044px;}
.x6{left:729.166514px;}
.x4{left:730.913383px;}
.x2e{left:743.766774px;}
.x3{left:750.864557px;}
.x17{left:816.786593px;}
.x15{left:818.276340px;}
.x16{left:838.928440px;}
.x7{left:851.607477px;}
.x41{left:870.758915px;}
.x26{left:903.301229px;}
.x4a{left:909.856717px;}
.x49{left:943.295205px;}
@media print{
.v1{vertical-align:-22.897681pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:25.979009pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.036632pt;}
.ls1{letter-spacing:0.040493pt;}
.ls2{letter-spacing:0.040533pt;}
.ls4{letter-spacing:0.066932pt;}
.ls3{letter-spacing:96.025578pt;}
.ws0{word-spacing:-34.133334pt;}
.ws4{word-spacing:-28.981335pt;}
.ws2{word-spacing:-23.808001pt;}
.ws5{word-spacing:-23.637335pt;}
.ws3{word-spacing:-21.162668pt;}
.ws8{word-spacing:-10.341333pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:50.992007pt;}
.ws6{word-spacing:148.906658pt;}
._7{margin-left:-17.920001pt;}
._6{margin-left:-15.104000pt;}
._e{margin-left:-12.800000pt;}
._b{margin-left:-9.568001pt;}
._8{margin-left:-8.320001pt;}
._0{margin-left:-6.293333pt;}
._5{margin-left:-4.864000pt;}
._4{margin-left:-2.976000pt;}
._2{margin-left:-1.520000pt;}
._1{width:1.166285pt;}
._9{width:2.256884pt;}
._d{width:26.701850pt;}
._a{width:75.549476pt;}
._3{width:96.035251pt;}
._c{width:2754.284372pt;}
.fsb{font-size:37.333333pt;}
.fsc{font-size:53.333334pt;}
.fs6{font-size:64.000002pt;}
.fsa{font-size:74.666666pt;}
.fs3{font-size:80.000003pt;}
.fs8{font-size:85.333339pt;}
.fs5{font-size:96.000003pt;}
.fs2{font-size:106.666667pt;}
.fs1{font-size:128.000004pt;}
.fs4{font-size:138.666676pt;}
.fs9{font-size:192.000006pt;}
.fs7{font-size:256.000008pt;}
.fs0{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:8.742293pt;}
.y56{bottom:8.871683pt;}
.y5{bottom:13.764823pt;}
.yaa{bottom:19.644478pt;}
.y91{bottom:19.942313pt;}
.y5c{bottom:21.848083pt;}
.y35{bottom:33.911064pt;}
.y55{bottom:34.871684pt;}
.y33{bottom:36.169316pt;}
.y29{bottom:36.869084pt;}
.ya9{bottom:42.044499pt;}
.y1e{bottom:42.142024pt;}
.y4f{bottom:42.254884pt;}
.y90{bottom:42.342334pt;}
.y40{bottom:45.517364pt;}
.y60{bottom:58.921565pt;}
.y21{bottom:59.851435pt;}
.y37{bottom:62.518085pt;}
.ya8{bottom:64.444540pt;}
.y8f{bottom:64.742355pt;}
.y3f{bottom:69.247025pt;}
.y5b{bottom:69.519749pt;}
.ye{bottom:74.778885pt;}
.y1d{bottom:76.142029pt;}
.y4{bottom:79.329855pt;}
.ya7{bottom:86.844540pt;}
.y8e{bottom:87.142366pt;}
.y5e{bottom:89.275910pt;}
.y28{bottom:91.156916pt;}
.y7f{bottom:92.134467pt;}
.y54{bottom:96.548860pt;}
.y8d{bottom:98.342366pt;}
.y3e{bottom:107.247026pt;}
.y5a{bottom:107.519746pt;}
.y8c{bottom:109.542366pt;}
.y1c{bottom:110.142030pt;}
.y3{bottom:117.329856pt;}
.yd{bottom:117.778886pt;}
.y45{bottom:119.362497pt;}
.ya6{bottom:120.444592pt;}
.y8b{bottom:120.742362pt;}
.y5d{bottom:127.275907pt;}
.y8a{bottom:131.942357pt;}
.y53{bottom:134.548857pt;}
.y4e{bottom:138.323147pt;}
.ya5{bottom:142.844612pt;}
.y89{bottom:143.142357pt;}
.y1b{bottom:144.142027pt;}
.y7e{bottom:144.633158pt;}
.y3d{bottom:145.247027pt;}
.y27{bottom:145.444757pt;}
.y88{bottom:154.342353pt;}
.y44{bottom:157.362498pt;}
.y5f{bottom:162.624968pt;}
.yac{bottom:163.823498pt;}
.ya4{bottom:165.244643pt;}
.y87{bottom:165.542350pt;}
.y34{bottom:168.517368pt;}
.y59{bottom:170.921288pt;}
.y3c{bottom:183.247029pt;}
.yc{bottom:183.801209pt;}
.y22{bottom:187.206869pt;}
.y86{bottom:187.942351pt;}
.y2{bottom:191.919149pt;}
.y7d{bottom:192.654160pt;}
.y4d{bottom:193.785949pt;}
.y43{bottom:195.362499pt;}
.y75{bottom:197.577519pt;}
.y52{bottom:197.950439pt;}
.ya3{bottom:198.844674pt;}
.y85{bottom:199.142350pt;}
.y26{bottom:199.732589pt;}
.y11{bottom:206.823499pt;}
.y57{bottom:208.510441pt;}
.y2c{bottom:212.958314pt;}
.y20{bottom:215.120090pt;}
.y48{bottom:216.497322pt;}
.y1a{bottom:217.959994pt;}
.y74{bottom:219.977515pt;}
.ya2{bottom:221.244705pt;}
.y3b{bottom:221.247034pt;}
.y69{bottom:222.553171pt;}
.y58{bottom:223.352014pt;}
.y6b{bottom:226.134131pt;}
.yb{bottom:226.801210pt;}
.y16{bottom:232.459994pt;}
.y42{bottom:233.362504pt;}
.y13{bottom:236.566060pt;}
.y32{bottom:236.992434pt;}
.y2b{bottom:238.958310pt;}
.y73{bottom:242.377513pt;}
.ya1{bottom:243.644726pt;}
.y62{bottom:243.969136pt;}
.y1f{bottom:244.120091pt;}
.y19{bottom:246.959995pt;}
.yad{bottom:247.609156pt;}
.y4c{bottom:249.248781pt;}
.y10{bottom:249.823501pt;}
.y2f{bottom:250.706355pt;}
.y25{bottom:254.020431pt;}
.y3a{bottom:259.247035pt;}
.y51{bottom:261.352011pt;}
.y15{bottom:261.459995pt;}
.y72{bottom:264.777512pt;}
.y2a{bottom:264.958311pt;}
.ya0{bottom:266.044746pt;}
.y47{bottom:267.140351pt;}
.y31{bottom:270.992435pt;}
.y41{bottom:271.362505pt;}
.y6f{bottom:271.559161pt;}
.y18{bottom:275.959996pt;}
.yf{bottom:277.954952pt;}
.y2e{bottom:284.706352pt;}
.y1{bottom:287.919152pt;}
.y9f{bottom:288.444777pt;}
.y46{bottom:289.140354pt;}
.y14{bottom:290.459996pt;}
.y71{bottom:292.224664pt;}
.ya{bottom:292.823502pt;}
.y4b{bottom:299.247036pt;}
.y70{bottom:303.424663pt;}
.y17{bottom:304.959994pt;}
.y30{bottom:304.992432pt;}
.y6e{bottom:305.159154pt;}
.y24{bottom:308.308263pt;}
.y6c{bottom:312.590554pt;}
.y6a{bottom:317.211864pt;}
.y7c{bottom:318.373781pt;}
.y50{bottom:320.564613pt;}
.y61{bottom:320.969138pt;}
.y39{bottom:321.247033pt;}
.y9e{bottom:333.244828pt;}
.y9{bottom:335.823503pt;}
.y68{bottom:335.865334pt;}
.y6d{bottom:338.759155pt;}
.y36{bottom:344.147294pt;}
.y9d{bottom:344.444839pt;}
.y4a{bottom:345.247034pt;}
.y2d{bottom:354.095324pt;}
.y23{bottom:362.596104pt;}
.y7b{bottom:374.373843pt;}
.y84{bottom:383.380555pt;}
.y67{bottom:386.579637pt;}
.y38{bottom:387.510015pt;}
.y9c{bottom:389.244870pt;}
.y12{bottom:394.206071pt;}
.y8{bottom:396.095325pt;}
.y83{bottom:399.380556pt;}
.y9b{bottom:400.444871pt;}
.y9a{bottom:411.644871pt;}
.y82{bottom:415.380556pt;}
.y66{bottom:420.179648pt;}
.y7a{bottom:430.373875pt;}
.y99{bottom:434.044862pt;}
.y98{bottom:445.244862pt;}
.y81{bottom:447.380557pt;}
.y65{bottom:453.779639pt;}
.y97{bottom:456.444857pt;}
.y80{bottom:463.380559pt;}
.y96{bottom:467.644855pt;}
.y95{bottom:478.844856pt;}
.y79{bottom:486.373861pt;}
.y64{bottom:487.379632pt;}
.y7{bottom:487.800001pt;}
.y94{bottom:490.044855pt;}
.y93{bottom:501.244855pt;}
.y49{bottom:504.884828pt;}
.y78{bottom:508.773860pt;}
.y6{bottom:511.800000pt;}
.yab{bottom:519.011091pt;}
.y77{bottom:519.973860pt;}
.y63{bottom:520.979632pt;}
.y76{bottom:531.173859pt;}
.h13{height:27.197917pt;}
.h14{height:38.854167pt;}
.h7{height:51.712002pt;}
.hf{height:54.395833pt;}
.h4{height:59.843752pt;}
.he{height:62.125004pt;}
.h11{height:63.833337pt;}
.hc{height:67.416671pt;}
.h12{height:68.500004pt;}
.ha{height:69.333338pt;}
.h6{height:78.000002pt;}
.h3{height:79.791667pt;}
.h10{height:80.374842pt;}
.hb{height:86.666667pt;}
.h2{height:95.750003pt;}
.h5{height:103.729174pt;}
.h9{height:112.042675pt;}
.hd{height:127.968754pt;}
.h8{height:191.500006pt;}
.h1{height:239.375008pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:7.328345pt;}
.x36{left:9.000000pt;}
.x45{left:10.880317pt;}
.x3f{left:15.068242pt;}
.x44{left:24.000529pt;}
.x51{left:29.235963pt;}
.x23{left:43.954848pt;}
.x27{left:56.636768pt;}
.xd{left:61.183596pt;}
.x38{left:64.335959pt;}
.x9{left:73.999735pt;}
.x25{left:91.154857pt;}
.xa{left:104.632548pt;}
.xc{left:112.500907pt;}
.x28{left:113.836232pt;}
.x21{left:131.250004pt;}
.x35{left:138.939644pt;}
.x11{left:143.988287pt;}
.x3c{left:149.031505pt;}
.x3d{left:153.422585pt;}
.x10{left:155.730475pt;}
.x40{left:156.667824pt;}
.x3e{left:166.042275pt;}
.x32{left:168.812505pt;}
.x1{left:173.007816pt;}
.x34{left:178.769662pt;}
.x19{left:179.891414pt;}
.x42{left:184.437506pt;}
.x29{left:195.228356pt;}
.x46{left:217.360057pt;}
.x3b{left:223.292567pt;}
.x1d{left:230.922247pt;}
.x1c{left:235.170294pt;}
.x3a{left:237.656258pt;}
.x2d{left:261.062998pt;}
.x24{left:268.559317pt;}
.x53{left:281.835949pt;}
.x22{left:310.944058pt;}
.x33{left:318.055510pt;}
.x2b{left:320.128610pt;}
.x2{left:321.523450pt;}
.x4e{left:348.457984pt;}
.x4d{left:352.906781pt;}
.x8{left:361.763400pt;}
.xf{left:368.369540pt;}
.x43{left:386.562512pt;}
.x52{left:401.767001pt;}
.x1a{left:413.338660pt;}
.xb{left:419.433561pt;}
.x47{left:423.391984pt;}
.x14{left:427.176437pt;}
.x12{left:430.955734pt;}
.x13{left:437.201828pt;}
.x1b{left:438.451944pt;}
.x2c{left:445.188974pt;}
.x39{left:447.695314pt;}
.x31{left:448.789074pt;}
.x20{left:450.468764pt;}
.xe{left:459.257815pt;}
.x5{left:500.307116pt;}
.x4f{left:516.666677pt;}
.x2f{left:526.632587pt;}
.x18{left:536.577467pt;}
.x50{left:564.666678pt;}
.x30{left:576.666718pt;}
.x1e{left:604.204272pt;}
.x48{left:609.482320pt;}
.x2a{left:613.126020pt;}
.x37{left:617.322820pt;}
.x4b{left:625.000120pt;}
.x1f{left:629.751150pt;}
.x6{left:648.148013pt;}
.x4{left:649.700785pt;}
.x2e{left:661.126021pt;}
.x3{left:667.435161pt;}
.x17{left:726.032527pt;}
.x15{left:727.356746pt;}
.x16{left:745.714169pt;}
.x7{left:756.984424pt;}
.x41{left:774.007925pt;}
.x26{left:802.934426pt;}
.x4a{left:808.761526pt;}
.x49{left:838.484627pt;}
}




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