
    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_c4742e96561c132dec5c9d2c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0298fc26dcb342b456d13f10.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_30c5e230e0765515b9bdc8e5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.776758;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_d1454503d19ff7b395dc7b39.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_5e1c423f676ad417c44201f7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_612043ada6b7b63441104734.woff')format("woff");}.ff6{font-family:ff6;line-height:1.031000;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_7b53c6490dc4163cf21ea2eb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.697000;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_dfd1da1fdc79fad55ed84c5f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.913086;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.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);}
.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);}
.vc{vertical-align:-56.699993px;}
.va{vertical-align:-40.500001px;}
.v9{vertical-align:-37.462497px;}
.vb{vertical-align:-36.000001px;}
.v7{vertical-align:-33.750001px;}
.v4{vertical-align:-24.750001px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v5{vertical-align:24.750001px;}
.v6{vertical-align:29.250001px;}
.v1{vertical-align:31.500001px;}
.v8{vertical-align:33.750001px;}
.v2{vertical-align:40.500001px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000043px;}
.ls8{letter-spacing:0.000088px;}
.ls5{letter-spacing:107.966423px;}
.ls7{letter-spacing:107.974911px;}
.ls2{letter-spacing:107.974983px;}
.ls4{letter-spacing:108.000354px;}
.ls1{letter-spacing:108.000426px;}
.ls3{letter-spacing:278.089976px;}
.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;}
}
.ws13{word-spacing:-30.240001px;}
.ws7{word-spacing:-29.916001px;}
.ws14{word-spacing:-28.224002px;}
.wsc{word-spacing:-27.972000px;}
.wse{word-spacing:-26.880002px;}
.ws11{word-spacing:-25.428603px;}
.wsb{word-spacing:-25.200001px;}
.ws3{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.160002px;}
.wsd{word-spacing:-18.648001px;}
.ws5{word-spacing:-18.480001px;}
.wsf{word-spacing:-17.920002px;}
.ws10{word-spacing:-17.136003px;}
.wsa{word-spacing:-16.800001px;}
.ws6{word-spacing:-16.800000px;}
.ws12{word-spacing:-16.620000px;}
.ws8{word-spacing:-16.500001px;}
.ws1{word-spacing:-14.000001px;}
.ws9{word-spacing:-11.000001px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:165.693335px;}
._c{margin-left:-10.476001px;}
._d{margin-left:-9.266401px;}
._5{margin-left:-7.194000px;}
._0{margin-left:-5.101200px;}
._2{margin-left:-3.531600px;}
._1{margin-left:-1.962000px;}
._4{width:1.746000px;}
._a{width:3.000000px;}
._3{width:4.986000px;}
._e{width:7.408800px;}
._f{width:105.005077px;}
._10{width:186.710558px;}
._b{width:235.493096px;}
._9{width:243.907898px;}
._6{width:288.474112px;}
._7{width:345.066148px;}
._8{width:464.262143px;}
.fcb{color:transparent;}
.fca{color:rgb(255,153,0);}
.fc9{color:rgb(204,0,0);}
.fc8{color:rgb(17,85,204);}
.fc7{color:rgb(28,69,135);}
.fc5{color:rgb(181,71,255);}
.fc6{color:rgb(106,168,79);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,0);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:44.000005px;}
.fs18{font-size:48.000003px;}
.fse{font-size:52.000006px;}
.fs6{font-size:56.000003px;}
.fs0{font-size:60.000000px;}
.fs10{font-size:60.000005px;}
.fs17{font-size:61.200011px;}
.fs14{font-size:64.000007px;}
.fsb{font-size:66.000004px;}
.fs12{font-size:66.600002px;}
.fsa{font-size:72.000002px;}
.fs7{font-size:72.000006px;}
.fs9{font-size:78.000005px;}
.fs5{font-size:84.000000px;}
.fsf{font-size:90.000003px;}
.fs16{font-size:91.800012px;}
.fs13{font-size:96.000006px;}
.fs11{font-size:99.899999px;}
.fs15{font-size:100.800008px;}
.fsd{font-size:102.000000px;}
.fs2{font-size:108.000003px;}
.fs8{font-size:109.800004px;}
.fs1{font-size:130.799992px;}
.fs3{font-size:132.000007px;}
.fs4{font-size:151.200005px;}
.y10{bottom:-305.290829px;}
.yf{bottom:-287.290829px;}
.y0{bottom:0.000000px;}
.y60{bottom:7.988718px;}
.y79{bottom:18.206869px;}
.y1{bottom:28.082245px;}
.y69{bottom:31.824094px;}
.y35{bottom:33.243619px;}
.y14{bottom:44.793297px;}
.y27{bottom:52.358855px;}
.y78{bottom:57.509532px;}
.y5c{bottom:62.735889px;}
.y2f{bottom:75.155844px;}
.y13{bottom:76.086287px;}
.y26{bottom:88.358856px;}
.y68{bottom:92.624924px;}
.y3c{bottom:95.820621px;}
.y5b{bottom:99.995890px;}
.y6d{bottom:101.255890px;}
.y5f{bottom:101.799209px;}
.y74{bottom:102.515924px;}
.y25{bottom:106.358856px;}
.y12{bottom:107.379283px;}
.y2e{bottom:109.175868px;}
.y34{bottom:119.022851px;}
.y24{bottom:124.358857px;}
.y67{bottom:127.090447px;}
.y5a{bottom:137.255891px;}
.y6c{bottom:138.515891px;}
.y11{bottom:138.672277px;}
.y73{bottom:139.775914px;}
.y51{bottom:141.982545px;}
.y23{bottom:142.358858px;}
.y2d{bottom:143.195891px;}
.y33{bottom:144.222850px;}
.y66{bottom:161.555971px;}
.y50{bottom:168.145546px;}
.y59{bottom:174.515892px;}
.y6b{bottom:175.775892px;}
.y72{bottom:177.035915px;}
.y2c{bottom:177.215915px;}
.y15{bottom:179.279986px;}
.y5e{bottom:179.946128px;}
.y22{bottom:181.952345px;}
.y48{bottom:188.735904px;}
.y76{bottom:189.719987px;}
.y4f{bottom:194.308547px;}
.y5d{bottom:194.346127px;}
.y65{bottom:196.021472px;}
.y21{bottom:199.952346px;}
.y30{bottom:207.549212px;}
.y32{bottom:207.764992px;}
.y58{bottom:211.775894px;}
.y6a{bottom:213.035894px;}
.y71{bottom:214.295905px;}
.y77{bottom:214.604875px;}
.y20{bottom:217.952346px;}
.y47{bottom:221.855905px;}
.ye{bottom:225.917380px;}
.y64{bottom:230.486962px;}
.y31{bottom:232.964990px;}
.y4e{bottom:235.471533px;}
.y1f{bottom:235.952347px;}
.y57{bottom:249.035895px;}
.y1e{bottom:253.952347px;}
.y46{bottom:254.975912px;}
.yd{bottom:256.697381px;}
.y4d{bottom:261.634534px;}
.y63{bottom:264.952440px;}
.y70{bottom:269.555895px;}
.y2b{bottom:281.255918px;}
.y56{bottom:286.295896px;}
.yc{bottom:287.477382px;}
.y45{bottom:288.095903px;}
.y1d{bottom:296.068222px;}
.y62{bottom:299.417930px;}
.y37{bottom:305.764247px;}
.y43{bottom:314.555886px;}
.y2a{bottom:315.275897px;}
.yb{bottom:318.257384px;}
.y44{bottom:321.215897px;}
.y55{bottom:323.555886px;}
.y6f{bottom:324.815897px;}
.y75{bottom:332.602371px;}
.y61{bottom:333.883420px;}
.y3b{bottom:342.000008px;}
.y4c{bottom:343.960518px;}
.y6{bottom:345.481417px;}
.y1c{bottom:346.104082px;}
.ya{bottom:348.172678px;}
.y29{bottom:349.295898px;}
.y1a{bottom:349.344082px;}
.y42{bottom:351.815887px;}
.y54{bottom:360.815887px;}
.y1b{bottom:365.904082px;}
.y19{bottom:367.344082px;}
.y3f{bottom:368.348917px;}
.y4b{bottom:370.123514px;}
.y3a{bottom:373.049999px;}
.y6e{bottom:380.075899px;}
.y28{bottom:383.315899px;}
.y41{bottom:389.075899px;}
.y9{bottom:391.597553px;}
.y53{bottom:398.075900px;}
.y3e{bottom:402.814411px;}
.y39{bottom:404.099999px;}
.y5{bottom:405.179989px;}
.y17{bottom:407.299955px;}
.y4a{bottom:411.286518px;}
.y16{bottom:425.659955px;}
.y40{bottom:426.335900px;}
.y18{bottom:427.099955px;}
.y8{bottom:428.857554px;}
.y36{bottom:429.800664px;}
.y38{bottom:435.149996px;}
.y52{bottom:435.335901px;}
.y3d{bottom:437.279903px;}
.y49{bottom:437.449516px;}
.y4{bottom:437.579995px;}
.y3{bottom:508.472983px;}
.y7{bottom:526.524993px;}
.y2{bottom:547.712985px;}
.h1c{height:34.359377px;}
.h1f{height:34.968752px;}
.h1{height:43.710938px;}
.h9{height:45.585938px;}
.he{height:46.260000px;}
.h1e{height:48.082034px;}
.hf{height:50.886003px;}
.h1d{height:52.453127px;}
.hd{height:52.866003px;}
.h11{height:55.300785px;}
.hb{height:56.824223px;}
.hc{height:58.626003px;}
.h12{height:60.128906px;}
.h13{height:67.132818px;}
.h14{height:69.390002px;}
.h7{height:70.382815px;}
.h1a{height:70.777809px;}
.h18{height:74.016005px;}
.h19{height:76.896005px;}
.h16{height:77.022899px;}
.h15{height:78.679690px;}
.h17{height:80.019899px;}
.h3{height:80.050784px;}
.h6{height:83.268003px;}
.ha{height:84.655803px;}
.h1b{height:86.508003px;}
.h10{height:86.579993px;}
.h8{height:96.012006px;}
.h2{height:100.846794px;}
.h4{height:101.772006px;}
.h5{height:116.575204px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1d{left:17.909913px;}
.x24{left:19.125001px;}
.x2e{left:20.816895px;}
.x5{left:22.632876px;}
.x21{left:28.939962px;}
.x22{left:30.631855px;}
.x16{left:41.066896px;}
.x26{left:45.014730px;}
.x6{left:46.939963px;}
.x7{left:57.118075px;}
.x1e{left:58.500002px;}
.x30{left:60.189039px;}
.x2f{left:64.125002px;}
.x2{left:66.542833px;}
.x2a{left:72.000002px;}
.x23{left:73.939962px;}
.x25{left:82.125003px;}
.x20{left:83.250003px;}
.x17{left:84.375003px;}
.x27{left:88.322837px;}
.x8{left:100.426183px;}
.x2c{left:128.853787px;}
.x3{left:153.806348px;}
.x2d{left:168.767724px;}
.x35{left:250.880914px;}
.x11{left:280.595613px;}
.xd{left:282.311154px;}
.x12{left:285.940891px;}
.x15{left:294.015216px;}
.x14{left:295.957015px;}
.x13{left:304.656996px;}
.xe{left:388.408490px;}
.x33{left:519.950795px;}
.x1f{left:639.000020px;}
.xf{left:647.439028px;}
.xb{left:718.391976px;}
.x18{left:727.875023px;}
.x29{left:731.241136px;}
.xc{left:734.625024px;}
.xa{left:737.339651px;}
.x1b{left:743.430174px;}
.x34{left:762.189032px;}
.x1a{left:778.500025px;}
.x1c{left:820.142745px;}
.x9{left:833.179189px;}
.x10{left:843.469564px;}
.x31{left:866.258915px;}
.x4{left:882.007453px;}
.x32{left:902.741654px;}
.x19{left:936.115185px;}
.x28{left:1038.688064px;}
.x2b{left:1039.801339px;}
.x1{left:1047.027099px;}
@media print{
.vc{vertical-align:-50.399994pt;}
.va{vertical-align:-36.000001pt;}
.v9{vertical-align:-33.299997pt;}
.vb{vertical-align:-32.000001pt;}
.v7{vertical-align:-30.000001pt;}
.v4{vertical-align:-22.000001pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v5{vertical-align:22.000001pt;}
.v6{vertical-align:26.000001pt;}
.v1{vertical-align:28.000001pt;}
.v8{vertical-align:30.000001pt;}
.v2{vertical-align:36.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000038pt;}
.ls8{letter-spacing:0.000078pt;}
.ls5{letter-spacing:95.970153pt;}
.ls7{letter-spacing:95.977698pt;}
.ls2{letter-spacing:95.977763pt;}
.ls4{letter-spacing:96.000315pt;}
.ls1{letter-spacing:96.000379pt;}
.ls3{letter-spacing:247.191089pt;}
.ws13{word-spacing:-26.880001pt;}
.ws7{word-spacing:-26.592001pt;}
.ws14{word-spacing:-25.088002pt;}
.wsc{word-spacing:-24.864000pt;}
.wse{word-spacing:-23.893335pt;}
.ws11{word-spacing:-22.603203pt;}
.wsb{word-spacing:-22.400001pt;}
.ws3{word-spacing:-18.720000pt;}
.ws2{word-spacing:-17.920001pt;}
.wsd{word-spacing:-16.576001pt;}
.ws5{word-spacing:-16.426668pt;}
.wsf{word-spacing:-15.928891pt;}
.ws10{word-spacing:-15.232003pt;}
.wsa{word-spacing:-14.933335pt;}
.ws6{word-spacing:-14.933333pt;}
.ws12{word-spacing:-14.773333pt;}
.ws8{word-spacing:-14.666667pt;}
.ws1{word-spacing:-12.444445pt;}
.ws9{word-spacing:-9.777779pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:147.282965pt;}
._c{margin-left:-9.312001pt;}
._d{margin-left:-8.236801pt;}
._5{margin-left:-6.394667pt;}
._0{margin-left:-4.534400pt;}
._2{margin-left:-3.139200pt;}
._1{margin-left:-1.744000pt;}
._4{width:1.552000pt;}
._a{width:2.666667pt;}
._3{width:4.432000pt;}
._e{width:6.585600pt;}
._f{width:93.337846pt;}
._10{width:165.964940pt;}
._b{width:209.327197pt;}
._9{width:216.807020pt;}
._6{width:256.421433pt;}
._7{width:306.725465pt;}
._8{width:412.677460pt;}
.fsc{font-size:39.111115pt;}
.fs18{font-size:42.666669pt;}
.fse{font-size:46.222228pt;}
.fs6{font-size:49.777780pt;}
.fs0{font-size:53.333334pt;}
.fs10{font-size:53.333338pt;}
.fs17{font-size:54.400010pt;}
.fs14{font-size:56.888895pt;}
.fsb{font-size:58.666670pt;}
.fs12{font-size:59.200002pt;}
.fsa{font-size:64.000002pt;}
.fs7{font-size:64.000005pt;}
.fs9{font-size:69.333338pt;}
.fs5{font-size:74.666666pt;}
.fsf{font-size:80.000003pt;}
.fs16{font-size:81.600011pt;}
.fs13{font-size:85.333339pt;}
.fs11{font-size:88.799999pt;}
.fs15{font-size:89.600007pt;}
.fsd{font-size:90.666667pt;}
.fs2{font-size:96.000003pt;}
.fs8{font-size:97.600003pt;}
.fs1{font-size:116.266660pt;}
.fs3{font-size:117.333340pt;}
.fs4{font-size:134.400004pt;}
.y10{bottom:-271.369626pt;}
.yf{bottom:-255.369625pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:7.101083pt;}
.y79{bottom:16.183883pt;}
.y1{bottom:24.961996pt;}
.y69{bottom:28.288084pt;}
.y35{bottom:29.549884pt;}
.y14{bottom:39.816264pt;}
.y27{bottom:46.541204pt;}
.y78{bottom:51.119584pt;}
.y5c{bottom:55.765235pt;}
.y2f{bottom:66.805195pt;}
.y13{bottom:67.632255pt;}
.y26{bottom:78.541205pt;}
.y68{bottom:82.333265pt;}
.y3c{bottom:85.173885pt;}
.y5b{bottom:88.885236pt;}
.y6d{bottom:90.005236pt;}
.y5f{bottom:90.488186pt;}
.y74{bottom:91.125266pt;}
.y25{bottom:94.541206pt;}
.y12{bottom:95.448252pt;}
.y2e{bottom:97.045216pt;}
.y34{bottom:105.798090pt;}
.y24{bottom:110.541206pt;}
.y67{bottom:112.969286pt;}
.y5a{bottom:122.005237pt;}
.y6c{bottom:123.125237pt;}
.y11{bottom:123.264247pt;}
.y73{bottom:124.245257pt;}
.y51{bottom:126.206707pt;}
.y23{bottom:126.541207pt;}
.y2d{bottom:127.285237pt;}
.y33{bottom:128.198089pt;}
.y66{bottom:143.605307pt;}
.y50{bottom:149.462708pt;}
.y59{bottom:155.125238pt;}
.y6b{bottom:156.245238pt;}
.y72{bottom:157.365258pt;}
.y2c{bottom:157.525258pt;}
.y15{bottom:159.359988pt;}
.y5e{bottom:159.952114pt;}
.y22{bottom:161.735418pt;}
.y48{bottom:167.765248pt;}
.y76{bottom:168.639988pt;}
.y4f{bottom:172.718708pt;}
.y5d{bottom:172.752113pt;}
.y65{bottom:174.241308pt;}
.y21{bottom:177.735418pt;}
.y30{bottom:184.488189pt;}
.y32{bottom:184.679993pt;}
.y58{bottom:188.245239pt;}
.y6a{bottom:189.365239pt;}
.y71{bottom:190.485249pt;}
.y77{bottom:190.759889pt;}
.y20{bottom:193.735419pt;}
.y47{bottom:197.205249pt;}
.ye{bottom:200.815449pt;}
.y64{bottom:204.877299pt;}
.y31{bottom:207.079991pt;}
.y4e{bottom:209.308029pt;}
.y1f{bottom:209.735419pt;}
.y57{bottom:221.365240pt;}
.y1e{bottom:225.735420pt;}
.y46{bottom:226.645255pt;}
.yd{bottom:228.175450pt;}
.y4d{bottom:232.564030pt;}
.y63{bottom:235.513280pt;}
.y70{bottom:239.605240pt;}
.y2b{bottom:250.005261pt;}
.y56{bottom:254.485241pt;}
.yc{bottom:255.535451pt;}
.y45{bottom:256.085247pt;}
.y1d{bottom:263.171753pt;}
.y62{bottom:266.149271pt;}
.y37{bottom:271.790441pt;}
.y43{bottom:279.605232pt;}
.y2a{bottom:280.245242pt;}
.yb{bottom:282.895453pt;}
.y44{bottom:285.525242pt;}
.y55{bottom:287.605232pt;}
.y6f{bottom:288.725242pt;}
.y75{bottom:295.646552pt;}
.y61{bottom:296.785262pt;}
.y3b{bottom:304.000007pt;}
.y4c{bottom:305.742683pt;}
.y6{bottom:307.094593pt;}
.y1c{bottom:307.648073pt;}
.ya{bottom:309.486825pt;}
.y29{bottom:310.485243pt;}
.y1a{bottom:310.528073pt;}
.y42{bottom:312.725233pt;}
.y54{bottom:320.725233pt;}
.y1b{bottom:325.248073pt;}
.y19{bottom:326.528073pt;}
.y3f{bottom:327.421259pt;}
.y4b{bottom:328.998679pt;}
.y3a{bottom:331.599999pt;}
.y6e{bottom:337.845244pt;}
.y28{bottom:340.725244pt;}
.y41{bottom:345.845244pt;}
.y9{bottom:348.086714pt;}
.y53{bottom:353.845244pt;}
.y3e{bottom:358.057254pt;}
.y39{bottom:359.199999pt;}
.y5{bottom:360.159990pt;}
.y17{bottom:362.044404pt;}
.y4a{bottom:365.588016pt;}
.y16{bottom:378.364405pt;}
.y40{bottom:378.965245pt;}
.y18{bottom:379.644405pt;}
.y8{bottom:381.206715pt;}
.y36{bottom:382.045035pt;}
.y38{bottom:386.799996pt;}
.y52{bottom:386.965245pt;}
.y3d{bottom:388.693247pt;}
.y49{bottom:388.844014pt;}
.y4{bottom:388.959995pt;}
.y3{bottom:451.975985pt;}
.y7{bottom:468.022216pt;}
.y2{bottom:486.855986pt;}
.h1c{height:30.541669pt;}
.h1f{height:31.083335pt;}
.h1{height:38.854167pt;}
.h9{height:40.520834pt;}
.he{height:41.120000pt;}
.h1e{height:42.739586pt;}
.hf{height:45.232002pt;}
.h1d{height:46.625001pt;}
.hd{height:46.992003pt;}
.h11{height:49.156254pt;}
.hb{height:50.510420pt;}
.hc{height:52.112003pt;}
.h12{height:53.447916pt;}
.h13{height:59.673616pt;}
.h14{height:61.680002pt;}
.h7{height:62.562502pt;}
.h1a{height:62.913608pt;}
.h18{height:65.792004pt;}
.h19{height:68.352004pt;}
.h16{height:68.464799pt;}
.h15{height:69.937502pt;}
.h17{height:71.128799pt;}
.h3{height:71.156252pt;}
.h6{height:74.016002pt;}
.ha{height:75.249602pt;}
.h1b{height:76.896002pt;}
.h10{height:76.959993pt;}
.h8{height:85.344005pt;}
.h2{height:89.641595pt;}
.h4{height:90.464005pt;}
.h5{height:103.622403pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:15.919923pt;}
.x24{left:17.000001pt;}
.x2e{left:18.503907pt;}
.x5{left:20.118112pt;}
.x21{left:25.724411pt;}
.x22{left:27.228316pt;}
.x16{left:36.503907pt;}
.x26{left:40.013093pt;}
.x6{left:41.724411pt;}
.x7{left:50.771623pt;}
.x1e{left:52.000002pt;}
.x30{left:53.501368pt;}
.x2f{left:57.000002pt;}
.x2{left:59.149185pt;}
.x2a{left:64.000002pt;}
.x23{left:65.724411pt;}
.x25{left:73.000002pt;}
.x20{left:74.000002pt;}
.x17{left:75.000002pt;}
.x27{left:78.509189pt;}
.x8{left:89.267718pt;}
.x2c{left:114.536700pt;}
.x3{left:136.716753pt;}
.x2d{left:150.015755pt;}
.x35{left:223.005257pt;}
.x11{left:249.418323pt;}
.xd{left:250.943248pt;}
.x12{left:254.169681pt;}
.x15{left:261.346858pt;}
.x14{left:263.072902pt;}
.x13{left:270.806219pt;}
.xe{left:345.251991pt;}
.x33{left:462.178485pt;}
.x1f{left:568.000018pt;}
.xf{left:575.501358pt;}
.xb{left:638.570645pt;}
.x18{left:647.000021pt;}
.x29{left:649.992121pt;}
.xc{left:653.000021pt;}
.xa{left:655.413023pt;}
.x1b{left:660.826821pt;}
.x34{left:677.501362pt;}
.x1a{left:692.000022pt;}
.x1c{left:729.015773pt;}
.x9{left:740.603724pt;}
.x10{left:749.750724pt;}
.x31{left:770.007925pt;}
.x4{left:784.006625pt;}
.x32{left:802.437026pt;}
.x19{left:832.102387pt;}
.x28{left:923.278280pt;}
.x2b{left:924.267857pt;}
.x1{left:930.690755pt;}
}




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