
    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_0cfbf40ff495f18a426219b2.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_08f4339b5b14100028e4da5b.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_953d4b66883b7af495aca9c7.woff')format("woff");}.ff4{font-family:ff4;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c2c5ddb4b0277e6140cdf93b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4039c307953c8e093117d3f6.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b2828ef397b94ce520c682d5.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);}
.v2{vertical-align:-9.631728px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.500000px;}
.v4{vertical-align:8.368272px;}
.v5{vertical-align:34.736543px;}
.v3{vertical-align:44.368126px;}
.ls0{letter-spacing:0.000000px;}
.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;}
.ws2{word-spacing:-27.980819px;}
.ws5{word-spacing:-16.595999px;}
.ws3{word-spacing:-16.450784px;}
.ws6{word-spacing:-15.263999px;}
.ws4{word-spacing:-15.168599px;}
.ws1{word-spacing:-12.446999px;}
.ws8{word-spacing:-12.446992px;}
.ws7{word-spacing:-11.374542px;}
.ws9{word-spacing:0.000000px;}
._b{margin-left:-7.720909px;}
._3{margin-left:-5.156870px;}
._2{margin-left:-3.590270px;}
._4{margin-left:-2.511416px;}
._0{margin-left:-1.240642px;}
._1{width:1.381834px;}
._6{width:28.247012px;}
._7{width:210.680575px;}
._9{width:367.462566px;}
._a{width:479.144811px;}
._5{width:482.579309px;}
._8{width:491.811044px;}
.fc5{color:transparent;}
.fc3{color:rgb(26,77,125);}
.fc4{color:rgb(254,254,254);}
.fc2{color:rgb(1,1,1);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs18{font-size:35.999989px;}
.fs16{font-size:36.000031px;}
.fs10{font-size:49.347256px;}
.fs14{font-size:53.999961px;}
.fse{font-size:53.999965px;}
.fs4{font-size:53.999998px;}
.fs2{font-size:59.984997px;}
.fs5{font-size:63.314996px;}
.fs7{font-size:71.369996px;}
.fs9{font-size:71.549995px;}
.fs15{font-size:71.550061px;}
.fsb{font-size:71.999997px;}
.fsa{font-size:77.984997px;}
.fs17{font-size:83.549975px;}
.fsc{font-size:101.969996px;}
.fs3{font-size:119.969995px;}
.fs6{font-size:131.984995px;}
.fs13{font-size:140.576813px;}
.fs8{font-size:155.519998px;}
.fs1{font-size:155.969994px;}
.fsf{font-size:161.706762px;}
.fs11{font-size:169.775648px;}
.fsd{font-size:171.794668px;}
.fs12{font-size:182.196523px;}
.fs0{font-size:197.577592px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.000008px;}
.y72{bottom:2.302177px;}
.y75{bottom:2.391982px;}
.y5b{bottom:2.965624px;}
.y6c{bottom:3.467167px;}
.y57{bottom:3.599140px;}
.y60{bottom:3.629902px;}
.y66{bottom:3.661015px;}
.y63{bottom:8.066857px;}
.y58{bottom:9.197843px;}
.y54{bottom:9.797015px;}
.y5d{bottom:9.801027px;}
.y62{bottom:10.494634px;}
.y2{bottom:11.594793px;}
.y52{bottom:13.875011px;}
.y10{bottom:14.571755px;}
.y71{bottom:18.052190px;}
.y74{bottom:18.891977px;}
.y5a{bottom:19.738601px;}
.y6b{bottom:21.467154px;}
.y56{bottom:21.599128px;}
.y5f{bottom:21.629890px;}
.y65{bottom:21.661003px;}
.y41{bottom:25.874913px;}
.y45{bottom:25.874999px;}
.y4b{bottom:26.999999px;}
.yf{bottom:34.821755px;}
.y43{bottom:38.249998px;}
.y49{bottom:39.374998px;}
.y6a{bottom:39.467141px;}
.y51{bottom:40.875010px;}
.y2f{bottom:42.749955px;}
.y44{bottom:50.624998px;}
.y4a{bottom:51.749998px;}
.ye{bottom:55.071754px;}
.y69{bottom:57.467128px;}
.y24{bottom:61.874954px;}
.y2e{bottom:67.499954px;}
.y47{bottom:75.374997px;}
.y68{bottom:75.467115px;}
.y9{bottom:80.496897px;}
.y23{bottom:86.624953px;}
.y2d{bottom:92.249953px;}
.y8{bottom:100.746896px;}
.y22{bottom:111.374952px;}
.y2c{bottom:116.999952px;}
.y7{bottom:120.996895px;}
.y21{bottom:136.124951px;}
.y2b{bottom:141.749951px;}
.y6{bottom:150.751398px;}
.y20{bottom:160.874950px;}
.y2a{bottom:166.499950px;}
.yd{bottom:184.942252px;}
.y1f{bottom:185.624949px;}
.y29{bottom:191.249949px;}
.yc{bottom:202.942252px;}
.y1e{bottom:210.374948px;}
.y28{bottom:215.999948px;}
.yb{bottom:220.942251px;}
.y1d{bottom:235.124947px;}
.ya{bottom:240.217190px;}
.y27{bottom:240.749947px;}
.y26{bottom:265.499946px;}
.y19{bottom:272.362129px;}
.y18{bottom:293.737128px;}
.y17{bottom:315.112127px;}
.y16{bottom:336.487126px;}
.y15{bottom:357.862125px;}
.y14{bottom:379.237124px;}
.y13{bottom:400.612123px;}
.y12{bottom:421.987122px;}
.y11{bottom:443.362122px;}
.y1b{bottom:458.182061px;}
.y55{bottom:505.619987px;}
.y5e{bottom:506.699987px;}
.y64{bottom:507.779987px;}
.y59{bottom:508.139987px;}
.y67{bottom:511.739986px;}
.y61{bottom:545.579985px;}
.y5c{bottom:547.379985px;}
.y53{bottom:549.899985px;}
.y73{bottom:607.139982px;}
.y70{bottom:613.979982px;}
.y4f{bottom:663.883936px;}
.y4e{bottom:753.883932px;}
.y4d{bottom:843.883929px;}
.y4c{bottom:933.883925px;}
.y48{bottom:1023.568921px;}
.y46{bottom:1114.693917px;}
.y42{bottom:1229.443912px;}
.y40{bottom:1319.443887px;}
.y50{bottom:1397.563725px;}
.y3d{bottom:1511.954577px;}
.y3c{bottom:1557.854503px;}
.y3b{bottom:1573.920366px;}
.y3a{bottom:1637.011156px;}
.y39{bottom:1692.227053px;}
.y38{bottom:1716.977052px;}
.y37{bottom:1769.784874px;}
.y36{bottom:1823.717732px;}
.y34{bottom:1825.000664px;}
.y35{bottom:1848.467731px;}
.y33{bottom:1849.750663px;}
.y32{bottom:1902.558629px;}
.y3f{bottom:1970.423810px;}
.y3e{bottom:1997.423809px;}
.y1c{bottom:2061.687403px;}
.y25{bottom:2062.070781px;}
.y31{bottom:2373.773323px;}
.y30{bottom:2405.273321px;}
.y1a{bottom:2519.291102px;}
.y6f{bottom:2551.919045px;}
.y6e{bottom:2576.669044px;}
.y6d{bottom:2601.419043px;}
.y1{bottom:2663.099897px;}
.y5{bottom:2666.549882px;}
.y4{bottom:2720.549879px;}
.h35{height:29.735991px;}
.h32{height:29.736025px;}
.h25{height:31.319999px;}
.h21{height:34.199999px;}
.h30{height:34.559999px;}
.h33{height:37.799998px;}
.h26{height:40.760833px;}
.h2b{height:41.039998px;}
.h22{height:44.603971px;}
.h23{height:47.159998px;}
.h6{height:49.547608px;}
.h27{height:49.679998px;}
.h2f{height:50.165964px;}
.h9{height:50.165998px;}
.h1f{height:50.399998px;}
.h2e{height:51.299963px;}
.h29{height:53.279998px;}
.h7{height:55.726062px;}
.h2{height:58.679998px;}
.ha{height:58.819631px;}
.h1a{height:59.100296px;}
.h31{height:59.100350px;}
.h13{height:59.471998px;}
.hb{height:60.149246px;}
.h19{height:62.999911px;}
.he{height:66.302726px;}
.h11{height:66.469946px;}
.h14{height:66.887997px;}
.h34{height:69.012279px;}
.h12{height:71.387997px;}
.h1e{height:73.124997px;}
.h16{height:75.256269px;}
.h18{height:84.227216px;}
.h1b{height:87.749996px;}
.h2d{height:88.199996px;}
.h1d{height:88.874996px;}
.h8{height:99.095216px;}
.h17{height:101.624540px;}
.hc{height:109.019605px;}
.h15{height:111.256123px;}
.h1c{height:112.499995px;}
.h10{height:128.459518px;}
.h5{height:128.831215px;}
.h2c{height:133.547972px;}
.h24{height:153.621424px;}
.h28{height:161.286865px;}
.h3{height:163.199091px;}
.h20{height:163.204935px;}
.h2a{height:173.086697px;}
.hd{height:282.374945px;}
.hf{height:295.874944px;}
.h4{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w10{width:37.079998px;}
.wa{width:42.839998px;}
.wc{width:44.999998px;}
.w8{width:45.359998px;}
.we{width:48.239998px;}
.w11{width:70.199997px;}
.wd{width:73.439997px;}
.wb{width:85.319996px;}
.wf{width:129.959995px;}
.w9{width:130.679995px;}
.w13{width:139.319994px;}
.w1{width:159.839993px;}
.w12{width:196.199992px;}
.w4{width:266.624989px;}
.w14{width:287.639988px;}
.w5{width:290.249988px;}
.w7{width:323.999987px;}
.w6{width:379.125027px;}
.w3{width:413.999983px;}
.w2{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x24{left:1.073954px;}
.x2f{left:2.469365px;}
.x2a{left:6.831709px;}
.x31{left:13.640967px;}
.x1b{left:16.875001px;}
.x27{left:18.616363px;}
.x4{left:20.721652px;}
.x5{left:24.118931px;}
.x6{left:26.683246px;}
.x23{left:30.239999px;}
.xb{left:37.775389px;}
.x12{left:45.388016px;}
.x19{left:46.687498px;}
.x21{left:54.316405px;}
.x20{left:57.902343px;}
.xa{left:60.484051px;}
.x1{left:65.159997px;}
.x14{left:66.455824px;}
.x22{left:73.439997px;}
.x1d{left:81.246090px;}
.x1a{left:84.462887px;}
.x16{left:88.116253px;}
.x37{left:103.124011px;}
.x15{left:109.504650px;}
.x11{left:112.090305px;}
.x17{left:115.535617px;}
.x18{left:117.873758px;}
.xf{left:157.875709px;}
.x1f{left:164.566399px;}
.x26{left:173.519993px;}
.x25{left:188.999992px;}
.x10{left:195.194066px;}
.x36{left:215.639991px;}
.x29{left:283.679988px;}
.x1c{left:289.884188px;}
.x28{left:301.679987px;}
.x32{left:315.705201px;}
.x33{left:322.367310px;}
.x34{left:334.777466px;}
.x7{left:338.637314px;}
.x2{left:365.232817px;}
.x2c{left:380.159984px;}
.x13{left:387.909959px;}
.x2b{left:422.639982px;}
.x8{left:448.588481px;}
.x9{left:464.408793px;}
.x3{left:476.045312px;}
.xc{left:510.141777px;}
.x2e{left:532.439978px;}
.xd{left:538.548026px;}
.x2d{left:545.039977px;}
.x1e{left:581.929208px;}
.xe{left:657.253099px;}
.x30{left:681.119972px;}
.x35{left:728.639970px;}
@media print{
.v2{vertical-align:-8.561536pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.000000pt;}
.v4{vertical-align:7.438464pt;}
.v5{vertical-align:30.876927pt;}
.v3{vertical-align:39.438334pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-110.819076pt;}
.ws2{word-spacing:-24.871839pt;}
.ws5{word-spacing:-14.751999pt;}
.ws3{word-spacing:-14.622919pt;}
.ws6{word-spacing:-13.567999pt;}
.ws4{word-spacing:-13.483199pt;}
.ws1{word-spacing:-11.064000pt;}
.ws8{word-spacing:-11.063993pt;}
.ws7{word-spacing:-10.110704pt;}
.ws9{word-spacing:0.000000pt;}
._b{margin-left:-6.863030pt;}
._3{margin-left:-4.583885pt;}
._2{margin-left:-3.191351pt;}
._4{margin-left:-2.232370pt;}
._0{margin-left:-1.102793pt;}
._1{width:1.228297pt;}
._6{width:25.108455pt;}
._7{width:187.271622pt;}
._9{width:326.633392pt;}
._a{width:425.906499pt;}
._5{width:428.959386pt;}
._8{width:437.165372pt;}
.fs18{font-size:31.999990pt;}
.fs16{font-size:32.000027pt;}
.fs10{font-size:43.864227pt;}
.fs14{font-size:47.999966pt;}
.fse{font-size:47.999969pt;}
.fs4{font-size:47.999998pt;}
.fs2{font-size:53.319997pt;}
.fs5{font-size:56.279996pt;}
.fs7{font-size:63.439996pt;}
.fs9{font-size:63.599996pt;}
.fs15{font-size:63.600054pt;}
.fsb{font-size:63.999997pt;}
.fsa{font-size:69.319997pt;}
.fs17{font-size:74.266645pt;}
.fsc{font-size:90.639996pt;}
.fs3{font-size:106.639996pt;}
.fs6{font-size:117.319995pt;}
.fs13{font-size:124.957167pt;}
.fs8{font-size:138.239998pt;}
.fs1{font-size:138.639994pt;}
.fsf{font-size:143.739344pt;}
.fs11{font-size:150.911687pt;}
.fsd{font-size:152.706372pt;}
.fs12{font-size:161.952465pt;}
.fs0{font-size:175.624526pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.000007pt;}
.y72{bottom:2.046379pt;}
.y75{bottom:2.126206pt;}
.y5b{bottom:2.636110pt;}
.y6c{bottom:3.081926pt;}
.y57{bottom:3.199236pt;}
.y60{bottom:3.226579pt;}
.y66{bottom:3.254236pt;}
.y63{bottom:7.170540pt;}
.y58{bottom:8.175860pt;}
.y54{bottom:8.708458pt;}
.y5d{bottom:8.712024pt;}
.y62{bottom:9.328564pt;}
.y2{bottom:10.306483pt;}
.y52{bottom:12.333343pt;}
.y10{bottom:12.952671pt;}
.y71{bottom:16.046391pt;}
.y74{bottom:16.792869pt;}
.y5a{bottom:17.545423pt;}
.y6b{bottom:19.081915pt;}
.y56{bottom:19.199225pt;}
.y5f{bottom:19.226569pt;}
.y65{bottom:19.254225pt;}
.y41{bottom:22.999922pt;}
.y45{bottom:22.999999pt;}
.y4b{bottom:23.999999pt;}
.yf{bottom:30.952671pt;}
.y43{bottom:33.999999pt;}
.y49{bottom:34.999999pt;}
.y6a{bottom:35.081903pt;}
.y51{bottom:36.333342pt;}
.y2f{bottom:37.999960pt;}
.y44{bottom:44.999998pt;}
.y4a{bottom:45.999998pt;}
.ye{bottom:48.952670pt;}
.y69{bottom:51.081892pt;}
.y24{bottom:54.999959pt;}
.y2e{bottom:59.999959pt;}
.y47{bottom:66.999997pt;}
.y68{bottom:67.081880pt;}
.y9{bottom:71.552797pt;}
.y23{bottom:76.999958pt;}
.y2d{bottom:81.999958pt;}
.y8{bottom:89.552796pt;}
.y22{bottom:98.999957pt;}
.y2c{bottom:103.999957pt;}
.y7{bottom:107.552796pt;}
.y21{bottom:120.999957pt;}
.y2b{bottom:125.999956pt;}
.y6{bottom:134.001242pt;}
.y20{bottom:142.999956pt;}
.y2a{bottom:147.999955pt;}
.yd{bottom:164.393113pt;}
.y1f{bottom:164.999955pt;}
.y29{bottom:169.999955pt;}
.yc{bottom:180.393112pt;}
.y1e{bottom:186.999954pt;}
.y28{bottom:191.999954pt;}
.yb{bottom:196.393112pt;}
.y1d{bottom:208.999953pt;}
.ya{bottom:213.526391pt;}
.y27{bottom:213.999953pt;}
.y26{bottom:235.999952pt;}
.y19{bottom:242.099670pt;}
.y18{bottom:261.099669pt;}
.y17{bottom:280.099668pt;}
.y16{bottom:299.099668pt;}
.y15{bottom:318.099667pt;}
.y14{bottom:337.099666pt;}
.y13{bottom:356.099665pt;}
.y12{bottom:375.099664pt;}
.y11{bottom:394.099664pt;}
.y1b{bottom:407.272943pt;}
.y55{bottom:449.439988pt;}
.y5e{bottom:450.399988pt;}
.y64{bottom:451.359988pt;}
.y59{bottom:451.679988pt;}
.y67{bottom:454.879988pt;}
.y61{bottom:484.959987pt;}
.y5c{bottom:486.559987pt;}
.y53{bottom:488.799986pt;}
.y73{bottom:539.679984pt;}
.y70{bottom:545.759984pt;}
.y4f{bottom:590.119054pt;}
.y4e{bottom:670.119051pt;}
.y4d{bottom:750.119048pt;}
.y4c{bottom:830.119044pt;}
.y48{bottom:909.839041pt;}
.y46{bottom:990.839038pt;}
.y42{bottom:1092.839033pt;}
.y40{bottom:1172.839011pt;}
.y50{bottom:1242.278867pt;}
.y3d{bottom:1343.959624pt;}
.y3c{bottom:1384.759558pt;}
.y3b{bottom:1399.040326pt;}
.y3a{bottom:1455.121027pt;}
.y39{bottom:1504.201825pt;}
.y38{bottom:1526.201824pt;}
.y37{bottom:1573.142110pt;}
.y36{bottom:1621.082428pt;}
.y34{bottom:1622.222812pt;}
.y35{bottom:1643.082428pt;}
.y33{bottom:1644.222811pt;}
.y32{bottom:1691.163226pt;}
.y3f{bottom:1751.487831pt;}
.y3e{bottom:1775.487830pt;}
.y1c{bottom:1832.611025pt;}
.y25{bottom:1832.951806pt;}
.y31{bottom:2110.020731pt;}
.y30{bottom:2138.020730pt;}
.y1a{bottom:2239.369868pt;}
.y6f{bottom:2268.372485pt;}
.y6e{bottom:2290.372484pt;}
.y6d{bottom:2312.372483pt;}
.y1{bottom:2367.199908pt;}
.y5{bottom:2370.266561pt;}
.y4{bottom:2418.266559pt;}
.h35{height:26.431992pt;}
.h32{height:26.432023pt;}
.h25{height:27.839999pt;}
.h21{height:30.399999pt;}
.h30{height:30.719999pt;}
.h33{height:33.599999pt;}
.h26{height:36.231852pt;}
.h2b{height:36.479998pt;}
.h22{height:39.647974pt;}
.h23{height:41.919998pt;}
.h6{height:44.042318pt;}
.h27{height:44.159998pt;}
.h2f{height:44.591968pt;}
.h9{height:44.591998pt;}
.h1f{height:44.799998pt;}
.h2e{height:45.599967pt;}
.h29{height:47.359998pt;}
.h7{height:49.534278pt;}
.h2{height:52.159998pt;}
.ha{height:52.284117pt;}
.h1a{height:52.533596pt;}
.h31{height:52.533645pt;}
.h13{height:52.863998pt;}
.hb{height:53.465997pt;}
.h19{height:55.999921pt;}
.he{height:58.935756pt;}
.h11{height:59.084396pt;}
.h14{height:59.455998pt;}
.h34{height:61.344248pt;}
.h12{height:63.455997pt;}
.h1e{height:64.999997pt;}
.h16{height:66.894461pt;}
.h18{height:74.868637pt;}
.h1b{height:77.999997pt;}
.h2d{height:78.399997pt;}
.h1d{height:78.999997pt;}
.h8{height:88.084636pt;}
.h17{height:90.332924pt;}
.hc{height:96.906316pt;}
.h15{height:98.894332pt;}
.h1c{height:99.999996pt;}
.h10{height:114.186239pt;}
.h5{height:114.516635pt;}
.h2c{height:118.709309pt;}
.h24{height:136.552376pt;}
.h28{height:143.366103pt;}
.h3{height:145.065859pt;}
.h20{height:145.071053pt;}
.h2a{height:153.854842pt;}
.hd{height:250.999951pt;}
.hf{height:262.999951pt;}
.h4{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w10{width:32.959999pt;}
.wa{width:38.079998pt;}
.wc{width:39.999998pt;}
.w8{width:40.319998pt;}
.we{width:42.879998pt;}
.w11{width:62.399997pt;}
.wd{width:65.279997pt;}
.wb{width:75.839997pt;}
.wf{width:115.519995pt;}
.w9{width:116.159995pt;}
.w13{width:123.839995pt;}
.w1{width:142.079994pt;}
.w12{width:174.399993pt;}
.w4{width:236.999990pt;}
.w14{width:255.679989pt;}
.w5{width:257.999989pt;}
.w7{width:287.999988pt;}
.w6{width:337.000024pt;}
.w3{width:367.999985pt;}
.w2{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x24{left:0.954626pt;}
.x2f{left:2.194991pt;}
.x2a{left:6.072630pt;}
.x31{left:12.125304pt;}
.x1b{left:15.000001pt;}
.x27{left:16.547878pt;}
.x4{left:18.419246pt;}
.x5{left:21.439049pt;}
.x6{left:23.718441pt;}
.x23{left:26.879999pt;}
.xb{left:33.578124pt;}
.x12{left:40.344903pt;}
.x19{left:41.499998pt;}
.x21{left:48.281249pt;}
.x20{left:51.468749pt;}
.xa{left:53.763601pt;}
.x1{left:57.919998pt;}
.x14{left:59.071843pt;}
.x22{left:65.279997pt;}
.x1d{left:72.218747pt;}
.x1a{left:75.078122pt;}
.x16{left:78.325558pt;}
.x37{left:91.665788pt;}
.x15{left:97.337467pt;}
.x11{left:99.635826pt;}
.x17{left:102.698326pt;}
.x18{left:104.776674pt;}
.xf{left:140.333963pt;}
.x1f{left:146.281244pt;}
.x26{left:154.239994pt;}
.x25{left:167.999993pt;}
.x10{left:173.505837pt;}
.x36{left:191.679992pt;}
.x29{left:252.159989pt;}
.x1c{left:257.674834pt;}
.x28{left:268.159989pt;}
.x32{left:280.626845pt;}
.x33{left:286.548720pt;}
.x34{left:297.579970pt;}
.x7{left:301.010946pt;}
.x2{left:324.651392pt;}
.x2c{left:337.919986pt;}
.x13{left:344.808853pt;}
.x2b{left:375.679984pt;}
.x8{left:398.745317pt;}
.x9{left:412.807816pt;}
.x3{left:423.151388pt;}
.xc{left:453.459357pt;}
.x2e{left:473.279980pt;}
.xd{left:478.709356pt;}
.x2d{left:484.479980pt;}
.x1e{left:517.270407pt;}
.xe{left:584.224977pt;}
.x30{left:605.439975pt;}
.x35{left:647.679973pt;}
}




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