
    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_d7fc7895508077d49e8eb4ea.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100000;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_4ea61b2968107e882d0aae8b.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_8dc2368642d002e62d2adb7d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.991000;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_21afd2f41c02a67d9969d74e.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_d0e45c31243e115f2b727208.woff')format("woff");}.ff7{font-family:ff7;line-height:0.991000;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_747034db631a9aa6db386b75.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;}
.v1{vertical-align:4.500000px;}
.v2{vertical-align:49.499998px;}
.v4{vertical-align:54.631006px;}
.v3{vertical-align:57.868270px;}
.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;}
.ws4{word-spacing:-16.595999px;}
.ws3{word-spacing:-16.450784px;}
.ws5{word-spacing:-15.263999px;}
.ws6{word-spacing:-15.168599px;}
.ws1{word-spacing:-12.446999px;}
.ws7{word-spacing:-12.446992px;}
.ws8{word-spacing:-11.374542px;}
.ws9{word-spacing:0.000000px;}
._b{margin-left:-11.701429px;}
._a{margin-left:-8.093706px;}
._3{margin-left:-5.156870px;}
._2{margin-left:-3.590270px;}
._4{margin-left:-2.511416px;}
._0{margin-left:-1.240642px;}
._1{width:1.381834px;}
._7{width:538.488521px;}
._9{width:644.388851px;}
._5{width:868.285191px;}
._8{width:893.280961px;}
._6{width:923.170316px;}
.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);}
.fs18{font-size:35.915397px;}
.fs15{font-size:36.790197px;}
.fs10{font-size:49.347256px;}
.fs16{font-size:53.999961px;}
.fse{font-size:53.999965px;}
.fs3{font-size:53.999998px;}
.fs2{font-size:59.984997px;}
.fs5{font-size:69.299995px;}
.fs17{font-size:71.190328px;}
.fs7{font-size:71.369996px;}
.fs9{font-size:71.549995px;}
.fsb{font-size:71.999997px;}
.fsa{font-size:77.984997px;}
.fs14{font-size:79.957361px;}
.fsc{font-size:101.969996px;}
.fs4{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;}
.y60{bottom:2.548942px;}
.y69{bottom:2.625118px;}
.y55{bottom:3.201522px;}
.y66{bottom:3.431659px;}
.y5a{bottom:3.475039px;}
.y50{bottom:3.475049px;}
.y5d{bottom:8.167404px;}
.y52{bottom:9.255323px;}
.y57{bottom:9.781164px;}
.y4c{bottom:10.021488px;}
.y5c{bottom:10.605728px;}
.y2{bottom:11.594793px;}
.y4a{bottom:13.875011px;}
.y25{bottom:15.749999px;}
.y68{bottom:17.405117px;}
.y5f{bottom:18.644653px;}
.y54{bottom:19.974499px;}
.y65{bottom:21.431646px;}
.y59{bottom:21.475027px;}
.y4f{bottom:21.475038px;}
.y3b{bottom:25.874999px;}
.y43{bottom:26.999999px;}
.y10{bottom:27.921779px;}
.y3d{bottom:38.249998px;}
.y41{bottom:39.374998px;}
.y64{bottom:39.431633px;}
.y4e{bottom:39.475026px;}
.y24{bottom:40.499998px;}
.y49{bottom:40.875010px;}
.yf{bottom:45.921778px;}
.y3e{bottom:50.624998px;}
.y42{bottom:51.749998px;}
.y63{bottom:57.431620px;}
.ye{bottom:63.921777px;}
.y23{bottom:65.249997px;}
.y62{bottom:75.431608px;}
.y9{bottom:86.679140px;}
.y22{bottom:89.999996px;}
.y8{bottom:104.679140px;}
.y21{bottom:114.749995px;}
.y7{bottom:122.679139px;}
.y20{bottom:139.499994px;}
.y6{bottom:143.454018px;}
.y1f{bottom:164.249993px;}
.y1e{bottom:188.999992px;}
.yd{bottom:196.192252px;}
.y1d{bottom:213.749991px;}
.yc{bottom:214.192251px;}
.yb{bottom:232.192250px;}
.y27{bottom:238.499990px;}
.ya{bottom:259.342189px;}
.y19{bottom:297.112128px;}
.y18{bottom:318.487127px;}
.y17{bottom:339.862126px;}
.y16{bottom:361.237125px;}
.y15{bottom:382.612124px;}
.y14{bottom:403.987123px;}
.y13{bottom:425.362122px;}
.y12{bottom:446.737121px;}
.y11{bottom:468.112120px;}
.y1b{bottom:489.832360px;}
.y4d{bottom:546.659985px;}
.y61{bottom:562.139984px;}
.y58{bottom:564.659984px;}
.y53{bottom:566.819984px;}
.y5b{bottom:598.499983px;}
.y4b{bottom:602.819983px;}
.y56{bottom:603.539983px;}
.y51{bottom:606.419982px;}
.y5e{bottom:668.339980px;}
.y67{bottom:671.579980px;}
.y47{bottom:708.852794px;}
.y46{bottom:798.852790px;}
.y45{bottom:888.852787px;}
.y44{bottom:978.852783px;}
.y40{bottom:1068.537779px;}
.y3f{bottom:1159.662775px;}
.y3c{bottom:1249.662772px;}
.y3a{bottom:1339.662768px;}
.y48{bottom:1417.782873px;}
.y37{bottom:1518.673545px;}
.y36{bottom:1529.765792px;}
.y35{bottom:1582.731582px;}
.y34{bottom:1593.014514px;}
.y33{bottom:1659.164439px;}
.y30{bottom:1711.163161px;}
.y32{bottom:1712.446021px;}
.y2f{bottom:1735.913160px;}
.y31{bottom:1737.196020px;}
.y2e{bottom:1777.628950px;}
.y2d{bottom:1802.378949px;}
.y2c{bottom:1845.219739px;}
.y2b{bottom:1869.969738px;}
.y2a{bottom:1924.060528px;}
.y39{bottom:1990.642957px;}
.y38{bottom:2017.642956px;}
.y26{bottom:2092.604292px;}
.y1c{bottom:2119.031419px;}
.y29{bottom:2389.492387px;}
.y28{bottom:2420.992386px;}
.y1a{bottom:2505.674758px;}
.y6c{bottom:2551.919045px;}
.y6b{bottom:2576.669044px;}
.y6a{bottom:2601.419043px;}
.y1{bottom:2663.099897px;}
.y5{bottom:2666.549882px;}
.y4{bottom:2720.549879px;}
.h33{height:29.666118px;}
.h2e{height:30.388703px;}
.h23{height:31.679999px;}
.h27{height:34.199999px;}
.h2c{height:38.159998px;}
.h24{height:40.760833px;}
.h2a{height:41.399998px;}
.h20{height:44.603971px;}
.h21{height:47.519998px;}
.h25{height:49.679998px;}
.h31{height:50.165964px;}
.h7{height:50.165998px;}
.h1d{height:50.399998px;}
.h30{height:51.299963px;}
.h1f{height:52.199998px;}
.h28{height:53.639998px;}
.h6{height:55.726062px;}
.h2{height:58.679998px;}
.h32{height:58.803211px;}
.h18{height:59.471998px;}
.h19{height:62.999997px;}
.h9{height:64.379696px;}
.ha{height:65.834996px;}
.h2d{height:66.044780px;}
.hd{height:66.302726px;}
.h10{height:66.469946px;}
.h12{height:66.887997px;}
.h14{height:67.519725px;}
.h11{height:72.448062px;}
.h1c{height:73.124997px;}
.h17{height:84.227216px;}
.h1a{height:87.749996px;}
.h2f{height:87.839996px;}
.h1b{height:88.874996px;}
.h8{height:111.452125px;}
.h13{height:116.387995px;}
.h16{height:121.519003px;}
.hb{height:122.614060px;}
.h15{height:124.756267px;}
.hf{height:128.459518px;}
.h2b{height:133.547972px;}
.h5{height:144.896124px;}
.h22{height:153.621424px;}
.h26{height:161.286865px;}
.h3{height:163.199091px;}
.h1e{height:163.204935px;}
.h29{height:173.086697px;}
.hc{height:240.749990px;}
.he{height:265.499989px;}
.h4{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w11{width:37.439998px;}
.wb{width:42.839998px;}
.wd{width:44.999998px;}
.w9{width:45.719998px;}
.wf{width:48.239998px;}
.wc{width:65.519997px;}
.we{width:74.519997px;}
.w12{width:83.519997px;}
.w10{width:88.199996px;}
.wa{width:97.199996px;}
.w15{width:132.479994px;}
.w1{width:159.839993px;}
.w14{width:240.119990px;}
.w13{width:259.919989px;}
.w5{width:266.624989px;}
.w6{width:290.250010px;}
.w8{width:323.999987px;}
.w7{width:379.124941px;}
.w4{width:417.374939px;}
.w3{width:417.374983px;}
.w2{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x1c{left:1.164064px;}
.x2b{left:3.442102px;}
.x22{left:6.408971px;}
.x2d{left:7.612235px;}
.x1e{left:14.084224px;}
.x16{left:16.875002px;}
.x4{left:24.118931px;}
.x5{left:25.524664px;}
.x1b{left:27.582917px;}
.x15{left:28.933246px;}
.x1f{left:30.801010px;}
.x10{left:34.423881px;}
.x11{left:35.566604px;}
.xa{left:37.775389px;}
.x9{left:53.801986px;}
.x1d{left:58.679998px;}
.x1{left:65.159997px;}
.x14{left:76.922530px;}
.x18{left:84.041012px;}
.x29{left:91.007443px;}
.xe{left:148.715611px;}
.x1a{left:170.173817px;}
.x21{left:179.279993px;}
.xf{left:182.377719px;}
.x28{left:186.839992px;}
.x20{left:190.799992px;}
.x24{left:279.719988px;}
.x23{left:293.399988px;}
.x17{left:297.777710px;}
.x2e{left:308.937623px;}
.x26{left:388.439984px;}
.x13{left:390.004087px;}
.x12{left:391.734696px;}
.x2{left:393.392972px;}
.x25{left:408.959983px;}
.x3{left:466.605859px;}
.x27{left:503.279979px;}
.xb{left:507.036820px;}
.xc{left:527.269241px;}
.x19{left:589.822755px;}
.x6{left:634.341071px;}
.xd{left:655.800486px;}
.x2a{left:681.839972px;}
.x2c{left:727.199970px;}
.x7{left:762.257081px;}
.x8{left:779.571533px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.000000pt;}
.v2{vertical-align:43.999998pt;}
.v4{vertical-align:48.560894pt;}
.v3{vertical-align:51.438462pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-110.819076pt;}
.ws2{word-spacing:-24.871839pt;}
.ws4{word-spacing:-14.751999pt;}
.ws3{word-spacing:-14.622919pt;}
.ws5{word-spacing:-13.567999pt;}
.ws6{word-spacing:-13.483199pt;}
.ws1{word-spacing:-11.064000pt;}
.ws7{word-spacing:-11.063993pt;}
.ws8{word-spacing:-10.110704pt;}
.ws9{word-spacing:0.000000pt;}
._b{margin-left:-10.401270pt;}
._a{margin-left:-7.194405pt;}
._3{margin-left:-4.583885pt;}
._2{margin-left:-3.191351pt;}
._4{margin-left:-2.232370pt;}
._0{margin-left:-1.102793pt;}
._1{width:1.228297pt;}
._7{width:478.656463pt;}
._9{width:572.790090pt;}
._5{width:771.809059pt;}
._8{width:794.027521pt;}
._6{width:820.595836pt;}
.fs18{font-size:31.924798pt;}
.fs15{font-size:32.702397pt;}
.fs10{font-size:43.864227pt;}
.fs16{font-size:47.999966pt;}
.fse{font-size:47.999969pt;}
.fs3{font-size:47.999998pt;}
.fs2{font-size:53.319997pt;}
.fs5{font-size:61.599996pt;}
.fs17{font-size:63.280292pt;}
.fs7{font-size:63.439996pt;}
.fs9{font-size:63.599996pt;}
.fsb{font-size:63.999997pt;}
.fsa{font-size:69.319997pt;}
.fs14{font-size:71.073210pt;}
.fsc{font-size:90.639996pt;}
.fs4{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;}
.y60{bottom:2.265726pt;}
.y69{bottom:2.333438pt;}
.y55{bottom:2.845797pt;}
.y66{bottom:3.050363pt;}
.y5a{bottom:3.088923pt;}
.y50{bottom:3.088933pt;}
.y5d{bottom:7.259915pt;}
.y52{bottom:8.226954pt;}
.y57{bottom:8.694368pt;}
.y4c{bottom:8.907989pt;}
.y5c{bottom:9.427314pt;}
.y2{bottom:10.306483pt;}
.y4a{bottom:12.333343pt;}
.y25{bottom:13.999999pt;}
.y68{bottom:15.471215pt;}
.y5f{bottom:16.573025pt;}
.y54{bottom:17.755110pt;}
.y65{bottom:19.050352pt;}
.y59{bottom:19.088913pt;}
.y4f{bottom:19.088922pt;}
.y3b{bottom:22.999999pt;}
.y43{bottom:23.999999pt;}
.y10{bottom:24.819359pt;}
.y3d{bottom:33.999999pt;}
.y41{bottom:34.999999pt;}
.y64{bottom:35.050341pt;}
.y4e{bottom:35.088912pt;}
.y24{bottom:35.999998pt;}
.y49{bottom:36.333342pt;}
.yf{bottom:40.819358pt;}
.y3e{bottom:44.999998pt;}
.y42{bottom:45.999998pt;}
.y63{bottom:51.050329pt;}
.ye{bottom:56.819358pt;}
.y23{bottom:57.999998pt;}
.y62{bottom:67.050318pt;}
.y9{bottom:77.048125pt;}
.y22{bottom:79.999997pt;}
.y8{bottom:93.048124pt;}
.y21{bottom:101.999996pt;}
.y7{bottom:109.048123pt;}
.y20{bottom:123.999995pt;}
.y6{bottom:127.514683pt;}
.y1f{bottom:145.999994pt;}
.y1e{bottom:167.999993pt;}
.yd{bottom:174.393113pt;}
.y1d{bottom:189.999992pt;}
.yc{bottom:190.393112pt;}
.yb{bottom:206.393111pt;}
.y27{bottom:211.999991pt;}
.ya{bottom:230.526390pt;}
.y19{bottom:264.099669pt;}
.y18{bottom:283.099668pt;}
.y17{bottom:302.099667pt;}
.y16{bottom:321.099667pt;}
.y15{bottom:340.099666pt;}
.y14{bottom:359.099665pt;}
.y13{bottom:378.099664pt;}
.y12{bottom:397.099663pt;}
.y11{bottom:416.099663pt;}
.y1b{bottom:435.406542pt;}
.y4d{bottom:485.919987pt;}
.y61{bottom:499.679986pt;}
.y58{bottom:501.919986pt;}
.y53{bottom:503.839986pt;}
.y5b{bottom:531.999985pt;}
.y4b{bottom:535.839985pt;}
.y56{bottom:536.479984pt;}
.y51{bottom:539.039984pt;}
.y5e{bottom:594.079982pt;}
.y67{bottom:596.959982pt;}
.y47{bottom:630.091373pt;}
.y46{bottom:710.091369pt;}
.y45{bottom:790.091366pt;}
.y44{bottom:870.091363pt;}
.y40{bottom:949.811359pt;}
.y3f{bottom:1030.811356pt;}
.y3c{bottom:1110.811353pt;}
.y3a{bottom:1190.811349pt;}
.y48{bottom:1260.251442pt;}
.y37{bottom:1349.932040pt;}
.y36{bottom:1359.791815pt;}
.y35{bottom:1406.872517pt;}
.y34{bottom:1416.012901pt;}
.y33{bottom:1474.812835pt;}
.y30{bottom:1521.033921pt;}
.y32{bottom:1522.174241pt;}
.y2f{bottom:1543.033920pt;}
.y31{bottom:1544.174240pt;}
.y2e{bottom:1580.114622pt;}
.y2d{bottom:1602.114621pt;}
.y2c{bottom:1640.195324pt;}
.y2b{bottom:1662.195323pt;}
.y2a{bottom:1710.276025pt;}
.y39{bottom:1769.460406pt;}
.y38{bottom:1793.460405pt;}
.y26{bottom:1860.092704pt;}
.y1c{bottom:1883.583484pt;}
.y29{bottom:2123.993233pt;}
.y28{bottom:2151.993232pt;}
.y1a{bottom:2227.266451pt;}
.y6c{bottom:2268.372485pt;}
.y6b{bottom:2290.372484pt;}
.y6a{bottom:2312.372483pt;}
.y1{bottom:2367.199908pt;}
.y5{bottom:2370.266561pt;}
.y4{bottom:2418.266559pt;}
.h33{height:26.369883pt;}
.h2e{height:27.012180pt;}
.h23{height:28.159999pt;}
.h27{height:30.399999pt;}
.h2c{height:33.919999pt;}
.h24{height:36.231852pt;}
.h2a{height:36.799998pt;}
.h20{height:39.647974pt;}
.h21{height:42.239998pt;}
.h25{height:44.159998pt;}
.h31{height:44.591968pt;}
.h7{height:44.591998pt;}
.h1d{height:44.799998pt;}
.h30{height:45.599967pt;}
.h1f{height:46.399998pt;}
.h28{height:47.679998pt;}
.h6{height:49.534278pt;}
.h2{height:52.159998pt;}
.h32{height:52.269521pt;}
.h18{height:52.863998pt;}
.h19{height:55.999998pt;}
.h9{height:57.226396pt;}
.ha{height:58.519996pt;}
.h2d{height:58.706471pt;}
.hd{height:58.935756pt;}
.h10{height:59.084396pt;}
.h12{height:59.455998pt;}
.h14{height:60.017533pt;}
.h11{height:64.398277pt;}
.h1c{height:64.999997pt;}
.h17{height:74.868637pt;}
.h1a{height:77.999997pt;}
.h2f{height:78.079997pt;}
.h1b{height:78.999997pt;}
.h8{height:99.068556pt;}
.h13{height:103.455996pt;}
.h16{height:108.016891pt;}
.hb{height:108.990275pt;}
.h15{height:110.894459pt;}
.hf{height:114.186239pt;}
.h2b{height:118.709309pt;}
.h5{height:128.796555pt;}
.h22{height:136.552376pt;}
.h26{height:143.366103pt;}
.h3{height:145.065859pt;}
.h1e{height:145.071053pt;}
.h29{height:153.854842pt;}
.hc{height:213.999991pt;}
.he{height:235.999990pt;}
.h4{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w11{width:33.279999pt;}
.wb{width:38.079998pt;}
.wd{width:39.999998pt;}
.w9{width:40.639998pt;}
.wf{width:42.879998pt;}
.wc{width:58.239998pt;}
.we{width:66.239997pt;}
.w12{width:74.239997pt;}
.w10{width:78.399997pt;}
.wa{width:86.399996pt;}
.w15{width:117.759995pt;}
.w1{width:142.079994pt;}
.w14{width:213.439991pt;}
.w13{width:231.039990pt;}
.w5{width:236.999990pt;}
.w6{width:258.000008pt;}
.w8{width:287.999988pt;}
.w7{width:336.999948pt;}
.w4{width:370.999946pt;}
.w3{width:370.999985pt;}
.w2{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:1.034723pt;}
.x2b{left:3.059646pt;}
.x22{left:5.696863pt;}
.x2d{left:6.766431pt;}
.x1e{left:12.519310pt;}
.x16{left:15.000002pt;}
.x4{left:21.439049pt;}
.x5{left:22.688590pt;}
.x1b{left:24.518148pt;}
.x15{left:25.718441pt;}
.x1f{left:27.378676pt;}
.x10{left:30.599005pt;}
.x11{left:31.614759pt;}
.xa{left:33.578124pt;}
.x9{left:47.823987pt;}
.x1d{left:52.159998pt;}
.x1{left:57.919998pt;}
.x14{left:68.375583pt;}
.x18{left:74.703122pt;}
.x29{left:80.895505pt;}
.xe{left:132.191655pt;}
.x1a{left:151.265615pt;}
.x21{left:159.359993pt;}
.xf{left:162.113528pt;}
.x28{left:166.079993pt;}
.x20{left:169.599993pt;}
.x24{left:248.639990pt;}
.x23{left:260.799989pt;}
.x17{left:264.691298pt;}
.x2e{left:274.611221pt;}
.x26{left:345.279986pt;}
.x13{left:346.670299pt;}
.x12{left:348.208619pt;}
.x2{left:349.682641pt;}
.x25{left:363.519985pt;}
.x3{left:414.760764pt;}
.x27{left:447.359981pt;}
.xb{left:450.699396pt;}
.xc{left:468.683770pt;}
.x19{left:524.286893pt;}
.x6{left:563.858730pt;}
.xd{left:582.933765pt;}
.x2a{left:606.079975pt;}
.x2c{left:646.399973pt;}
.x7{left:677.561850pt;}
.x8{left:692.952474pt;}
}




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