
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_e0eb84381ba78f37ac77fac3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.997000;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_ef3070d7efab30465e55ada6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.135000;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_3b6c0bb3b9978772f6e91cc2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c075cb08485ecde3f929f823.woff')format("woff");}.ff6{font-family:ff6;line-height:1.080000;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_6cab8580ef2329c8acfc79cf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.992000;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_30c549dd05d1c9991ef9cdae.woff')format("woff");}.ff8{font-family:ff8;line-height:0.997000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006548px;}
.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:-124.671461px;}
.ws7{word-spacing:-27.980819px;}
.ws3{word-spacing:-16.595999px;}
.ws1{word-spacing:-16.450784px;}
.ws4{word-spacing:-15.263999px;}
.ws2{word-spacing:-15.168599px;}
.ws8{word-spacing:-12.446999px;}
.ws5{word-spacing:-12.446992px;}
.ws6{word-spacing:-11.374542px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-11.705694px;}
._3{margin-left:-7.750284px;}
._6{margin-left:-5.916290px;}
._5{margin-left:-3.636593px;}
._1{margin-left:-2.455822px;}
._0{margin-left:-1.331292px;}
._2{width:1.315450px;}
.fc4{color:transparent;}
.fc3{color:rgb(26,77,125);}
.fc2{color:rgb(1,1,1);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs16{font-size:35.915397px;}
.fs13{font-size:36.790197px;}
.fse{font-size:49.347256px;}
.fs14{font-size:53.999961px;}
.fsc{font-size:53.999965px;}
.fs18{font-size:53.999998px;}
.fs1{font-size:59.984997px;}
.fs3{font-size:65.969996px;}
.fs15{font-size:71.190328px;}
.fs6{font-size:71.369996px;}
.fs5{font-size:71.549995px;}
.fs9{font-size:71.999997px;}
.fs8{font-size:77.984997px;}
.fs12{font-size:79.957361px;}
.fsa{font-size:101.969996px;}
.fs2{font-size:119.969995px;}
.fs17{font-size:131.984995px;}
.fs11{font-size:140.576813px;}
.fs7{font-size:155.519998px;}
.fs4{font-size:155.969994px;}
.fsd{font-size:161.706762px;}
.fsf{font-size:169.775648px;}
.fsb{font-size:171.794668px;}
.fs10{font-size:182.196523px;}
.fs0{font-size:197.577592px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.000008px;}
.y55{bottom:2.546481px;}
.y5e{bottom:2.640411px;}
.y45{bottom:3.073553px;}
.y40{bottom:3.449210px;}
.y50{bottom:3.475049px;}
.y5b{bottom:3.623436px;}
.y4a{bottom:3.707070px;}
.y52{bottom:8.039259px;}
.y42{bottom:9.255323px;}
.y47{bottom:9.781164px;}
.y3c{bottom:10.021488px;}
.y4c{bottom:10.507115px;}
.y3a{bottom:13.875011px;}
.y5d{bottom:17.420410px;}
.y54{bottom:18.642192px;}
.y44{bottom:19.846530px;}
.y24{bottom:21.374999px;}
.y3f{bottom:21.449198px;}
.y4f{bottom:21.475038px;}
.y5a{bottom:21.623423px;}
.y49{bottom:21.707058px;}
.yb{bottom:23.040179px;}
.y2d{bottom:25.874999px;}
.y2f{bottom:38.249998px;}
.y3e{bottom:39.449186px;}
.y4e{bottom:39.475026px;}
.y59{bottom:39.623411px;}
.y1d{bottom:40.499998px;}
.y39{bottom:40.875010px;}
.ya{bottom:43.290178px;}
.y30{bottom:50.624998px;}
.y58{bottom:57.623398px;}
.y9{bottom:63.540177px;}
.y1c{bottom:65.249997px;}
.y32{bottom:75.374997px;}
.y57{bottom:75.623385px;}
.y1b{bottom:89.999996px;}
.y7{bottom:91.124996px;}
.y6{bottom:111.374995px;}
.y1a{bottom:114.749995px;}
.y2{bottom:116.714789px;}
.y5{bottom:131.624995px;}
.y19{bottom:139.499994px;}
.y4{bottom:160.746689px;}
.y18{bottom:164.249993px;}
.y17{bottom:188.999992px;}
.ye{bottom:193.420000px;}
.yd{bottom:213.669999px;}
.y16{bottom:213.749991px;}
.yc{bottom:233.919998px;}
.y20{bottom:238.499990px;}
.y8{bottom:253.420297px;}
.y1f{bottom:263.249989px;}
.y68{bottom:283.315056px;}
.y67{bottom:304.690055px;}
.y66{bottom:326.065054px;}
.y65{bottom:347.440054px;}
.y64{bottom:368.815053px;}
.y63{bottom:390.190052px;}
.y62{bottom:411.565051px;}
.y61{bottom:432.940050px;}
.y60{bottom:454.315049px;}
.y5f{bottom:473.785108px;}
.y3d{bottom:536.579985px;}
.y4d{bottom:537.659985px;}
.y48{bottom:556.019985px;}
.y43{bottom:558.539984px;}
.y56{bottom:561.779984px;}
.y4b{bottom:601.019983px;}
.y3b{bottom:602.819983px;}
.y46{bottom:603.539983px;}
.y41{bottom:606.419982px;}
.y51{bottom:608.939982px;}
.y53{bottom:655.739980px;}
.y5c{bottom:665.459980px;}
.y37{bottom:692.377179px;}
.y36{bottom:782.377175px;}
.y35{bottom:872.377171px;}
.y34{bottom:962.377168px;}
.y33{bottom:1052.377164px;}
.y31{bottom:1142.377160px;}
.y2e{bottom:1257.127155px;}
.y2c{bottom:1347.127152px;}
.y38{bottom:1422.282872px;}
.y75{bottom:1515.982437px;}
.y29{bottom:1531.048544px;}
.y74{bottom:1540.732436px;}
.y73{bottom:1580.933958px;}
.y6b{bottom:1594.948650px;}
.y72{bottom:1605.683957px;}
.y71{bottom:1656.887187px;}
.y28{bottom:1659.480231px;}
.y6a{bottom:1711.321021px;}
.y70{bottom:1717.412112px;}
.y69{bottom:1736.071020px;}
.y23{bottom:1768.111890px;}
.y6f{bottom:1790.290653px;}
.y27{bottom:1843.936879px;}
.y6e{bottom:1844.306383px;}
.y26{bottom:1868.686878px;}
.y6d{bottom:1869.056382px;}
.y6c{bottom:1923.072112px;}
.y25{bottom:1926.002656px;}
.y2b{bottom:1990.642849px;}
.y2a{bottom:2017.642848px;}
.y1e{bottom:2089.949861px;}
.y15{bottom:2123.531419px;}
.y22{bottom:2393.992387px;}
.y21{bottom:2425.492386px;}
.yf{bottom:2502.382813px;}
.y14{bottom:2553.044045px;}
.y1{bottom:2557.979901px;}
.y13{bottom:2577.794044px;}
.y12{bottom:2602.544043px;}
.y11{bottom:2666.549882px;}
.y10{bottom:2720.549879px;}
.h32{height:29.666118px;}
.h2d{height:30.388703px;}
.h21{height:31.679999px;}
.h25{height:34.199999px;}
.h2b{height:38.159998px;}
.h22{height:40.760833px;}
.h29{height:41.039998px;}
.h1e{height:44.603971px;}
.h1f{height:47.519998px;}
.h5{height:49.547608px;}
.h23{height:49.679998px;}
.h30{height:50.165964px;}
.h34{height:50.165998px;}
.h1b{height:50.399998px;}
.h2f{height:51.299963px;}
.h1d{height:51.839998px;}
.h28{height:52.199998px;}
.h26{height:53.279998px;}
.h8{height:54.491217px;}
.h11{height:55.124998px;}
.h6{height:55.726062px;}
.h31{height:58.803211px;}
.h12{height:59.100296px;}
.h14{height:59.471998px;}
.ha{height:61.286127px;}
.h9{height:62.671497px;}
.h16{height:62.999997px;}
.h13{height:64.415607px;}
.h2c{height:66.044780px;}
.he{height:66.302726px;}
.hc{height:66.469946px;}
.h18{height:66.887997px;}
.h1a{height:73.124997px;}
.h15{height:84.227216px;}
.h17{height:87.749996px;}
.h2e{height:88.199996px;}
.h7{height:99.095216px;}
.h33{height:109.019605px;}
.h19{height:112.499995px;}
.hb{height:128.831215px;}
.h2a{height:133.547972px;}
.h10{height:142.145278px;}
.h20{height:153.621424px;}
.h24{height:161.286865px;}
.h3{height:163.199091px;}
.h1c{height:163.204935px;}
.h27{height:173.086697px;}
.h2{height:228.239990px;}
.hd{height:240.749990px;}
.hf{height:290.249988px;}
.h4{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w12{width:37.439998px;}
.wc{width:42.839998px;}
.we{width:44.999998px;}
.wa{width:45.719998px;}
.w10{width:48.239998px;}
.wd{width:68.039997px;}
.wf{width:75.599997px;}
.wb{width:83.519997px;}
.w11{width:89.279996px;}
.w13{width:94.679996px;}
.w16{width:132.119994px;}
.w15{width:196.199992px;}
.w1{width:233.999990px;}
.w6{width:266.624989px;}
.w14{width:279.359988px;}
.w7{width:290.249966px;}
.w5{width:318.374987px;}
.w9{width:323.999987px;}
.w8{width:379.125027px;}
.w3{width:413.999983px;}
.w4{width:415.124983px;}
.w2{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x21{left:1.137274px;}
.x26{left:3.053851px;}
.x23{left:6.186906px;}
.x11{left:13.007812px;}
.x19{left:16.874999px;}
.x2b{left:18.517000px;}
.x4{left:25.015868px;}
.x3{left:26.683246px;}
.x1{left:28.079999px;}
.x32{left:29.362397px;}
.x1d{left:31.672141px;}
.x18{left:33.586462px;}
.x2{left:37.478862px;}
.x1e{left:46.124998px;}
.x10{left:47.670011px;}
.x1f{left:54.316404px;}
.x16{left:66.827984px;}
.xa{left:73.030789px;}
.x22{left:76.679997px;}
.x13{left:83.042903px;}
.x1a{left:85.851559px;}
.x20{left:89.639996px;}
.x17{left:97.009624px;}
.x14{left:98.540447px;}
.x2f{left:101.077525px;}
.x12{left:121.826465px;}
.x15{left:124.616377px;}
.x33{left:144.647627px;}
.xe{left:158.903019px;}
.x1c{left:164.566385px;}
.x25{left:185.759992px;}
.x24{left:195.479992px;}
.xf{left:199.965517px;}
.x2e{left:223.919991px;}
.x28{left:285.839988px;}
.x27{left:298.079988px;}
.x5{left:301.972509px;}
.x8{left:339.428130px;}
.x2a{left:388.799984px;}
.x34{left:391.734696px;}
.x35{left:392.917746px;}
.x6{left:405.261567px;}
.x29{left:407.159983px;}
.x7{left:421.749848px;}
.x9{left:476.045312px;}
.x2d{left:501.839979px;}
.xb{left:524.906874px;}
.x2c{left:529.919978px;}
.xc{left:550.813513px;}
.x1b{left:594.475946px;}
.xd{left:669.799836px;}
.x30{left:686.879971px;}
.x31{left:744.479969px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005820pt;}
.ws0{word-spacing:-110.819076pt;}
.ws7{word-spacing:-24.871839pt;}
.ws3{word-spacing:-14.751999pt;}
.ws1{word-spacing:-14.622919pt;}
.ws4{word-spacing:-13.567999pt;}
.ws2{word-spacing:-13.483199pt;}
.ws8{word-spacing:-11.064000pt;}
.ws5{word-spacing:-11.063993pt;}
.ws6{word-spacing:-10.110704pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-10.405061pt;}
._3{margin-left:-6.889141pt;}
._6{margin-left:-5.258925pt;}
._5{margin-left:-3.232527pt;}
._1{margin-left:-2.182953pt;}
._0{margin-left:-1.183371pt;}
._2{width:1.169289pt;}
.fs16{font-size:31.924798pt;}
.fs13{font-size:32.702397pt;}
.fse{font-size:43.864227pt;}
.fs14{font-size:47.999966pt;}
.fsc{font-size:47.999969pt;}
.fs18{font-size:47.999998pt;}
.fs1{font-size:53.319997pt;}
.fs3{font-size:58.639997pt;}
.fs15{font-size:63.280292pt;}
.fs6{font-size:63.439996pt;}
.fs5{font-size:63.599996pt;}
.fs9{font-size:63.999997pt;}
.fs8{font-size:69.319997pt;}
.fs12{font-size:71.073210pt;}
.fsa{font-size:90.639996pt;}
.fs2{font-size:106.639996pt;}
.fs17{font-size:117.319995pt;}
.fs11{font-size:124.957167pt;}
.fs7{font-size:138.239998pt;}
.fs4{font-size:138.639994pt;}
.fsd{font-size:143.739344pt;}
.fsf{font-size:150.911687pt;}
.fsb{font-size:152.706372pt;}
.fs10{font-size:161.952465pt;}
.fs0{font-size:175.624526pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.000007pt;}
.y55{bottom:2.263539pt;}
.y5e{bottom:2.347032pt;}
.y45{bottom:2.732047pt;}
.y40{bottom:3.065964pt;}
.y50{bottom:3.088933pt;}
.y5b{bottom:3.220832pt;}
.y4a{bottom:3.295173pt;}
.y52{bottom:7.146008pt;}
.y42{bottom:8.226954pt;}
.y47{bottom:8.694368pt;}
.y3c{bottom:8.907989pt;}
.y4c{bottom:9.339657pt;}
.y3a{bottom:12.333343pt;}
.y5d{bottom:15.484809pt;}
.y54{bottom:16.570838pt;}
.y44{bottom:17.641360pt;}
.y24{bottom:18.999999pt;}
.y3f{bottom:19.065954pt;}
.y4f{bottom:19.088922pt;}
.y5a{bottom:19.220821pt;}
.y49{bottom:19.295163pt;}
.yb{bottom:20.480159pt;}
.y2d{bottom:22.999999pt;}
.y2f{bottom:33.999999pt;}
.y3e{bottom:35.065943pt;}
.y4e{bottom:35.088912pt;}
.y59{bottom:35.220809pt;}
.y1d{bottom:35.999998pt;}
.y39{bottom:36.333342pt;}
.ya{bottom:38.480158pt;}
.y30{bottom:44.999998pt;}
.y58{bottom:51.220798pt;}
.y9{bottom:56.480158pt;}
.y1c{bottom:57.999998pt;}
.y32{bottom:66.999997pt;}
.y57{bottom:67.220787pt;}
.y1b{bottom:79.999997pt;}
.y7{bottom:80.999997pt;}
.y6{bottom:98.999996pt;}
.y1a{bottom:101.999996pt;}
.y2{bottom:103.746479pt;}
.y5{bottom:116.999995pt;}
.y19{bottom:123.999995pt;}
.y4{bottom:142.885946pt;}
.y18{bottom:145.999994pt;}
.y17{bottom:167.999993pt;}
.ye{bottom:171.928889pt;}
.yd{bottom:189.928888pt;}
.y16{bottom:189.999992pt;}
.yc{bottom:207.928887pt;}
.y20{bottom:211.999991pt;}
.y8{bottom:225.262487pt;}
.y1f{bottom:233.999990pt;}
.y68{bottom:251.835606pt;}
.y67{bottom:270.835605pt;}
.y66{bottom:289.835604pt;}
.y65{bottom:308.835603pt;}
.y64{bottom:327.835602pt;}
.y63{bottom:346.835602pt;}
.y62{bottom:365.835601pt;}
.y61{bottom:384.835600pt;}
.y60{bottom:403.835599pt;}
.y5f{bottom:421.142318pt;}
.y3d{bottom:476.959987pt;}
.y4d{bottom:477.919987pt;}
.y48{bottom:494.239986pt;}
.y43{bottom:496.479986pt;}
.y56{bottom:499.359986pt;}
.y4b{bottom:534.239985pt;}
.y3b{bottom:535.839985pt;}
.y46{bottom:536.479984pt;}
.y41{bottom:539.039984pt;}
.y51{bottom:541.279984pt;}
.y53{bottom:582.879983pt;}
.y5c{bottom:591.519982pt;}
.y37{bottom:615.446381pt;}
.y36{bottom:695.446378pt;}
.y35{bottom:775.446375pt;}
.y34{bottom:855.446371pt;}
.y33{bottom:935.446368pt;}
.y31{bottom:1015.446365pt;}
.y2e{bottom:1117.446360pt;}
.y2c{bottom:1197.446357pt;}
.y38{bottom:1264.251442pt;}
.y75{bottom:1347.539944pt;}
.y29{bottom:1360.932039pt;}
.y74{bottom:1369.539943pt;}
.y73{bottom:1405.274629pt;}
.y6b{bottom:1417.732133pt;}
.y72{bottom:1427.274629pt;}
.y71{bottom:1472.788611pt;}
.y28{bottom:1475.093539pt;}
.y6a{bottom:1521.174241pt;}
.y70{bottom:1526.588544pt;}
.y69{bottom:1543.174240pt;}
.y23{bottom:1571.655013pt;}
.y6f{bottom:1591.369470pt;}
.y27{bottom:1639.055004pt;}
.y6e{bottom:1639.383452pt;}
.y26{bottom:1661.055003pt;}
.y6d{bottom:1661.383451pt;}
.y6c{bottom:1709.397433pt;}
.y25{bottom:1712.002361pt;}
.y2b{bottom:1769.460310pt;}
.y2a{bottom:1793.460309pt;}
.y1e{bottom:1857.733209pt;}
.y15{bottom:1887.583483pt;}
.y22{bottom:2127.993233pt;}
.y21{bottom:2155.993232pt;}
.yf{bottom:2224.340279pt;}
.y14{bottom:2269.372485pt;}
.y1{bottom:2273.759912pt;}
.y13{bottom:2291.372484pt;}
.y12{bottom:2313.372483pt;}
.y11{bottom:2370.266561pt;}
.y10{bottom:2418.266559pt;}
.h32{height:26.369883pt;}
.h2d{height:27.012180pt;}
.h21{height:28.159999pt;}
.h25{height:30.399999pt;}
.h2b{height:33.919999pt;}
.h22{height:36.231852pt;}
.h29{height:36.479998pt;}
.h1e{height:39.647974pt;}
.h1f{height:42.239998pt;}
.h5{height:44.042318pt;}
.h23{height:44.159998pt;}
.h30{height:44.591968pt;}
.h34{height:44.591998pt;}
.h1b{height:44.799998pt;}
.h2f{height:45.599967pt;}
.h1d{height:46.079998pt;}
.h28{height:46.399998pt;}
.h26{height:47.359998pt;}
.h8{height:48.436637pt;}
.h11{height:48.999998pt;}
.h6{height:49.534278pt;}
.h31{height:52.269521pt;}
.h12{height:52.533596pt;}
.h14{height:52.863998pt;}
.ha{height:54.476557pt;}
.h9{height:55.707997pt;}
.h16{height:55.999998pt;}
.h13{height:57.258318pt;}
.h2c{height:58.706471pt;}
.he{height:58.935756pt;}
.hc{height:59.084396pt;}
.h18{height:59.455998pt;}
.h1a{height:64.999997pt;}
.h15{height:74.868637pt;}
.h17{height:77.999997pt;}
.h2e{height:78.399997pt;}
.h7{height:88.084636pt;}
.h33{height:96.906316pt;}
.h19{height:99.999996pt;}
.hb{height:114.516635pt;}
.h2a{height:118.709309pt;}
.h10{height:126.351358pt;}
.h20{height:136.552376pt;}
.h24{height:143.366103pt;}
.h3{height:145.065859pt;}
.h1c{height:145.071053pt;}
.h27{height:153.854842pt;}
.h2{height:202.879992pt;}
.hd{height:213.999991pt;}
.hf{height:257.999989pt;}
.h4{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w12{width:33.279999pt;}
.wc{width:38.079998pt;}
.we{width:39.999998pt;}
.wa{width:40.639998pt;}
.w10{width:42.879998pt;}
.wd{width:60.479997pt;}
.wf{width:67.199997pt;}
.wb{width:74.239997pt;}
.w11{width:79.359997pt;}
.w13{width:84.159996pt;}
.w16{width:117.439995pt;}
.w15{width:174.399993pt;}
.w1{width:207.999991pt;}
.w6{width:236.999990pt;}
.w14{width:248.319990pt;}
.w7{width:257.999970pt;}
.w5{width:282.999988pt;}
.w9{width:287.999988pt;}
.w8{width:337.000024pt;}
.w3{width:367.999985pt;}
.w4{width:368.999985pt;}
.w2{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x21{left:1.010910pt;}
.x26{left:2.714534pt;}
.x23{left:5.499472pt;}
.x11{left:11.562500pt;}
.x19{left:14.999999pt;}
.x2b{left:16.459556pt;}
.x4{left:22.236327pt;}
.x3{left:23.718441pt;}
.x1{left:24.959999pt;}
.x32{left:26.099909pt;}
.x1d{left:28.153014pt;}
.x18{left:29.854633pt;}
.x2{left:33.314544pt;}
.x1e{left:40.999998pt;}
.x10{left:42.373343pt;}
.x1f{left:48.281248pt;}
.x16{left:59.402653pt;}
.xa{left:64.916256pt;}
.x22{left:68.159997pt;}
.x13{left:73.815914pt;}
.x1a{left:76.312497pt;}
.x20{left:79.679997pt;}
.x17{left:86.230776pt;}
.x14{left:87.591509pt;}
.x2f{left:89.846689pt;}
.x12{left:108.290191pt;}
.x15{left:110.770113pt;}
.x33{left:128.575668pt;}
.xe{left:141.247128pt;}
.x1c{left:146.281231pt;}
.x25{left:165.119993pt;}
.x24{left:173.759993pt;}
.xf{left:177.747126pt;}
.x2e{left:199.039992pt;}
.x28{left:254.079989pt;}
.x27{left:264.959989pt;}
.x5{left:268.420008pt;}
.x8{left:301.713893pt;}
.x2a{left:345.599986pt;}
.x34{left:348.208619pt;}
.x35{left:349.260219pt;}
.x6{left:360.232504pt;}
.x29{left:361.919985pt;}
.x7{left:374.888754pt;}
.x9{left:423.151388pt;}
.x2d{left:446.079981pt;}
.xb{left:466.583888pt;}
.x2c{left:471.039980pt;}
.xc{left:489.612012pt;}
.x1b{left:528.423063pt;}
.xd{left:595.377632pt;}
.x30{left:610.559975pt;}
.x31{left:661.759972pt;}
}




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