
    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_d09499eadf800e71708d5fc0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.024000;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_2178cdfdb4809eff37d44be2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.949000;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_0f86e3b789fa839053f5077e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_de498e2b2b2a478b858b9ffd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.996000;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_92f8fd6277539b4c5dd1fede.woff')format("woff");}.ff5{font-family:ff5;line-height:0.972000;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_8e0ea562c52a893d3985a2b8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_6e5d06d0fda0d25888feb540.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8872b2ec411edacf154881b9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.966000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2175235ef4d689f1b46e80bd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m3{transform:matrix(0.237977,-0.076596,0.076555,0.237990,0,0);-ms-transform:matrix(0.237977,-0.076596,0.076555,0.237990,0,0);-webkit-transform:matrix(0.237977,-0.076596,0.076555,0.237990,0,0);}
.m1{transform:matrix(0.249999,0.000431,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000431,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,0.000431,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.098636px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000018px;}
.ls1{letter-spacing:107.972093px;}
.ls2{letter-spacing:107.986185px;}
.ls4{letter-spacing:107.986253px;}
.ls5{letter-spacing:108.000354px;}
.ls6{letter-spacing:108.000363px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(89,89,89);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-54.000000px;}
.ws2{word-spacing:-27.540000px;}
.ws7{word-spacing:-24.930001px;}
.wsb{word-spacing:-21.600001px;}
.wsc{word-spacing:-20.250001px;}
.ws4{word-spacing:-17.550001px;}
.ws8{word-spacing:-7.425315px;}
.ws6{word-spacing:-7.425270px;}
.ws3{word-spacing:-0.078000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:8.364900px;}
.wsa{word-spacing:896.223696px;}
.ws9{word-spacing:1034.920952px;}
._e{margin-left:-14.201941px;}
._10{margin-left:-8.736001px;}
._1{margin-left:-7.440000px;}
._6{margin-left:-6.160777px;}
._3{margin-left:-5.160000px;}
._5{margin-left:-3.960000px;}
._4{margin-left:-2.700000px;}
._0{margin-left:-1.680000px;}
._11{width:1.080000px;}
._2{width:2.640000px;}
._b{width:37.686229px;}
._c{width:40.677483px;}
._9{width:47.782553px;}
._7{width:53.414036px;}
._8{width:65.029731px;}
._a{width:69.829395px;}
._d{width:120.035974px;}
._f{width:835.258268px;}
.fc8{color:rgb(152,0,0);}
.fc7{color:rgb(53,28,117);}
.fc6{color:rgb(133,32,12);}
.fc5{color:transparent;}
.fc3{color:rgb(17,85,204);}
.fc1{color:rgb(153,0,0);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000003px;}
.fs6{font-size:48.000070px;}
.fs5{font-size:54.000002px;}
.fs10{font-size:66.000004px;}
.fse{font-size:72.000002px;}
.fs12{font-size:78.000005px;}
.fsf{font-size:84.000000px;}
.fs14{font-size:84.000001px;}
.fsb{font-size:90.000003px;}
.fs2{font-size:96.000006px;}
.fs8{font-size:102.000000px;}
.fsa{font-size:108.000003px;}
.fs3{font-size:114.000007px;}
.fs13{font-size:120.000001px;}
.fsc{font-size:129.000001px;}
.fs9{font-size:132.000007px;}
.fs11{font-size:142.019411px;}
.fs7{font-size:154.019417px;}
.fsd{font-size:171.000005px;}
.fs1{font-size:180.000006px;}
.fs0{font-size:240.000002px;}
.y3f{bottom:-2008.091115px;}
.y3e{bottom:-1572.038739px;}
.y0{bottom:0.000000px;}
.y4a{bottom:14.126336px;}
.y33{bottom:18.479400px;}
.y3c{bottom:21.771859px;}
.y61{bottom:23.265218px;}
.y49{bottom:43.376329px;}
.y2b{bottom:44.803692px;}
.y32{bottom:45.389412px;}
.y1d{bottom:48.944322px;}
.y3b{bottom:52.821871px;}
.y47{bottom:54.144680px;}
.y58{bottom:61.197029px;}
.y6{bottom:66.642710px;}
.y3d{bottom:67.118608px;}
.y31{bottom:72.299413px;}
.y48{bottom:72.626330px;}
.y13{bottom:77.704588px;}
.y3a{bottom:83.871861px;}
.y46{bottom:87.264681px;}
.y60{bottom:88.065231px;}
.y57{bottom:92.247030px;}
.y30{bottom:99.209402px;}
.y5{bottom:106.962700px;}
.y12{bottom:112.894589px;}
.y39{bottom:114.921850px;}
.y1b{bottom:125.368335px;}
.y63{bottom:125.658543px;}
.y45{bottom:138.384682px;}
.y2f{bottom:144.119404px;}
.y38{bottom:145.971840px;}
.y56{bottom:154.347032px;}
.y62{bottom:154.640630px;}
.y4{bottom:162.402747px;}
.y1a{bottom:164.743337px;}
.y9{bottom:169.348693px;}
.y2e{bottom:171.029405px;}
.y11{bottom:183.274591px;}
.y55{bottom:185.397056px;}
.y4d{bottom:191.535796px;}
.y37{bottom:199.971842px;}
.y10{bottom:218.464604px;}
.y44{bottom:222.624696px;}
.y36{bottom:226.971843px;}
.y2d{bottom:235.829407px;}
.y5f{bottom:239.984088px;}
.y3{bottom:241.602750px;}
.y19{bottom:244.043386px;}
.y54{bottom:247.497092px;}
.y43{bottom:255.744697px;}
.y5e{bottom:271.034078px;}
.y18{bottom:279.233388px;}
.y2c{bottom:282.629408px;}
.y35{bottom:282.771845px;}
.yf{bottom:288.844606px;}
.y42{bottom:288.864704px;}
.y5d{bottom:302.084068px;}
.y4b{bottom:308.662789px;}
.y53{bottom:309.597071px;}
.y2{bottom:313.602752px;}
.y17{bottom:314.423389px;}
.y20{bottom:314.503877px;}
.y41{bottom:321.984695px;}
.ye{bottom:324.034607px;}
.y52{bottom:340.647061px;}
.y2a{bottom:341.413833px;}
.y1f{bottom:346.903885px;}
.y40{bottom:355.104689px;}
.y4c{bottom:357.527326px;}
.yd{bottom:359.224608px;}
.y5c{bottom:364.184058px;}
.y8{bottom:371.618734px;}
.y1e{bottom:379.303890px;}
.y16{bottom:384.803391px;}
.y1{bottom:385.602758px;}
.y29{bottom:388.393823px;}
.y23{bottom:389.696798px;}
.y5b{bottom:395.234055px;}
.y51{bottom:402.747052px;}
.y15{bottom:419.993389px;}
.y5a{bottom:426.284055px;}
.yc{bottom:429.604607px;}
.y50{bottom:433.797048px;}
.y28{bottom:435.373820px;}
.y22{bottom:438.746811px;}
.y14{bottom:455.183384px;}
.yb{bottom:464.794603px;}
.y4f{bottom:464.847048px;}
.y25{bottom:469.745426px;}
.y59{bottom:475.334052px;}
.y24{bottom:479.825430px;}
.y27{bottom:487.393815px;}
.y1c{bottom:490.624129px;}
.y21{bottom:492.206801px;}
.y4e{bottom:495.897044px;}
.y26{bottom:501.052677px;}
.y7{bottom:561.382559px;}
.ya{bottom:562.403997px;}
.y34{bottom:563.484002px;}
.h5{height:34.968752px;}
.h7{height:34.968801px;}
.h6{height:39.339845px;}
.h12{height:48.082034px;}
.h16{height:52.453127px;}
.h10{height:54.000002px;}
.h20{height:60.128907px;}
.h13{height:60.216004px;}
.h11{height:61.320000px;}
.h1c{height:65.566408px;}
.hd{height:65.700002px;}
.h1e{height:67.500002px;}
.h1d{height:69.480002px;}
.h3{height:69.696004px;}
.h1b{height:70.080004px;}
.h1a{height:72.000005px;}
.h19{height:74.112005px;}
.h9{height:74.460000px;}
.h17{height:74.466750px;}
.h18{height:78.558636px;}
.hc{height:78.679690px;}
.h1f{height:80.244003px;}
.h4{height:82.764005px;}
.ha{height:83.220005px;}
.h15{height:87.600001px;}
.he{height:94.170001px;}
.hb{height:96.360005px;}
.h14{height:100.265704px;}
.h8{height:108.737708px;}
.hf{height:124.830004px;}
.h2{height:130.680004px;}
.h1{height:185.280001px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x19{left:33.493112px;}
.x15{left:35.406496px;}
.x14{left:38.285434px;}
.x18{left:40.883860px;}
.x17{left:46.939963px;}
.x26{left:48.028025px;}
.x12{left:57.241372px;}
.xa{left:60.047074px;}
.x11{left:61.172246px;}
.xb{left:69.797896px;}
.x2{left:78.160550px;}
.x27{left:88.618114px;}
.x28{left:102.028024px;}
.xc{left:112.192919px;}
.x1{left:125.166071px;}
.x29{left:142.618115px;}
.x6{left:211.290584px;}
.x22{left:218.099396px;}
.x21{left:250.299609px;}
.x23{left:305.159067px;}
.x20{left:320.194871px;}
.x3{left:371.171460px;}
.x5{left:385.561966px;}
.x4{left:407.590074px;}
.x1f{left:490.895678px;}
.x1e{left:503.403116px;}
.x1b{left:528.422248px;}
.x1a{left:542.820415px;}
.x2a{left:547.627000px;}
.xd{left:561.729996px;}
.xf{left:570.548814px;}
.x2c{left:595.703798px;}
.x2b{left:601.627002px;}
.xe{left:604.125019px;}
.x16{left:671.294328px;}
.x10{left:685.862324px;}
.x24{left:718.687415px;}
.x9{left:759.231639px;}
.x8{left:767.583700px;}
.x7{left:771.428162px;}
.x13{left:826.559126px;}
.x25{left:843.890927px;}
.x2e{left:856.884273px;}
.x2d{left:866.147969px;}
.x1d{left:2534.357624px;}
.x1c{left:2715.806962px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.643232pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000016pt;}
.ls1{letter-spacing:95.975194pt;}
.ls2{letter-spacing:95.987720pt;}
.ls4{letter-spacing:95.987780pt;}
.ls5{letter-spacing:96.000315pt;}
.ls6{letter-spacing:96.000323pt;}
.ws0{word-spacing:-48.000000pt;}
.ws2{word-spacing:-24.480000pt;}
.ws7{word-spacing:-22.160001pt;}
.wsb{word-spacing:-19.200001pt;}
.wsc{word-spacing:-18.000001pt;}
.ws4{word-spacing:-15.600001pt;}
.ws8{word-spacing:-6.600280pt;}
.ws6{word-spacing:-6.600240pt;}
.ws3{word-spacing:-0.069333pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:7.435467pt;}
.wsa{word-spacing:796.643285pt;}
.ws9{word-spacing:919.929735pt;}
._e{margin-left:-12.623948pt;}
._10{margin-left:-7.765334pt;}
._1{margin-left:-6.613333pt;}
._6{margin-left:-5.476246pt;}
._3{margin-left:-4.586667pt;}
._5{margin-left:-3.520000pt;}
._4{margin-left:-2.400000pt;}
._0{margin-left:-1.493333pt;}
._11{width:0.960000pt;}
._2{width:2.346667pt;}
._b{width:33.498870pt;}
._c{width:36.157763pt;}
._9{width:42.473381pt;}
._7{width:47.479143pt;}
._8{width:57.804206pt;}
._a{width:62.070574pt;}
._d{width:106.698643pt;}
._f{width:742.451794pt;}
.fs4{font-size:42.666669pt;}
.fs6{font-size:42.666729pt;}
.fs5{font-size:48.000002pt;}
.fs10{font-size:58.666670pt;}
.fse{font-size:64.000002pt;}
.fs12{font-size:69.333338pt;}
.fsf{font-size:74.666666pt;}
.fs14{font-size:74.666668pt;}
.fsb{font-size:80.000003pt;}
.fs2{font-size:85.333339pt;}
.fs8{font-size:90.666667pt;}
.fsa{font-size:96.000003pt;}
.fs3{font-size:101.333339pt;}
.fs13{font-size:106.666667pt;}
.fsc{font-size:114.666668pt;}
.fs9{font-size:117.333340pt;}
.fs11{font-size:126.239476pt;}
.fs7{font-size:136.906148pt;}
.fsd{font-size:152.000005pt;}
.fs1{font-size:160.000005pt;}
.fs0{font-size:213.333335pt;}
.y3f{bottom:-1784.969880pt;}
.y3e{bottom:-1397.367768pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:12.556743pt;}
.y33{bottom:16.426133pt;}
.y3c{bottom:19.352763pt;}
.y61{bottom:20.680193pt;}
.y49{bottom:38.556737pt;}
.y2b{bottom:39.825504pt;}
.y32{bottom:40.346144pt;}
.y1d{bottom:43.506064pt;}
.y3b{bottom:46.952774pt;}
.y47{bottom:48.128604pt;}
.y58{bottom:54.397359pt;}
.y6{bottom:59.237965pt;}
.y3d{bottom:59.660985pt;}
.y31{bottom:64.266145pt;}
.y48{bottom:64.556738pt;}
.y13{bottom:69.070745pt;}
.y3a{bottom:74.552765pt;}
.y46{bottom:77.568605pt;}
.y60{bottom:78.280205pt;}
.y57{bottom:81.997360pt;}
.y30{bottom:88.186136pt;}
.y5{bottom:95.077956pt;}
.y12{bottom:100.350746pt;}
.y39{bottom:102.152756pt;}
.y1b{bottom:111.438520pt;}
.y63{bottom:111.696482pt;}
.y45{bottom:123.008607pt;}
.y2f{bottom:128.106137pt;}
.y38{bottom:129.752747pt;}
.y56{bottom:137.197362pt;}
.y62{bottom:137.458338pt;}
.y4{bottom:144.357997pt;}
.y1a{bottom:146.438521pt;}
.y9{bottom:150.532171pt;}
.y2e{bottom:152.026138pt;}
.y11{bottom:162.910748pt;}
.y55{bottom:164.797383pt;}
.y4d{bottom:170.254041pt;}
.y37{bottom:177.752748pt;}
.y10{bottom:194.190759pt;}
.y44{bottom:197.888619pt;}
.y36{bottom:201.752749pt;}
.y2d{bottom:209.626139pt;}
.y5f{bottom:213.319190pt;}
.y3{bottom:214.758000pt;}
.y19{bottom:216.927455pt;}
.y54{bottom:219.997415pt;}
.y43{bottom:227.328620pt;}
.y5e{bottom:240.919180pt;}
.y18{bottom:248.207456pt;}
.y2c{bottom:251.226141pt;}
.y35{bottom:251.352751pt;}
.yf{bottom:256.750761pt;}
.y42{bottom:256.768626pt;}
.y5d{bottom:268.519171pt;}
.y4b{bottom:274.366923pt;}
.y53{bottom:275.197397pt;}
.y2{bottom:278.758002pt;}
.y17{bottom:279.487457pt;}
.y20{bottom:279.559002pt;}
.y41{bottom:286.208618pt;}
.ye{bottom:288.030762pt;}
.y52{bottom:302.797387pt;}
.y2a{bottom:303.478962pt;}
.y1f{bottom:308.359009pt;}
.y40{bottom:315.648613pt;}
.y4c{bottom:317.802068pt;}
.yd{bottom:319.310763pt;}
.y5c{bottom:323.719163pt;}
.y8{bottom:330.327763pt;}
.y1e{bottom:337.159014pt;}
.y16{bottom:342.047459pt;}
.y1{bottom:342.758007pt;}
.y29{bottom:345.238954pt;}
.y23{bottom:346.397154pt;}
.y5b{bottom:351.319160pt;}
.y51{bottom:357.997379pt;}
.y15{bottom:373.327457pt;}
.y5a{bottom:378.919160pt;}
.yc{bottom:381.870762pt;}
.y50{bottom:385.597376pt;}
.y28{bottom:386.998951pt;}
.y22{bottom:389.997165pt;}
.y14{bottom:404.607453pt;}
.yb{bottom:413.150758pt;}
.y4f{bottom:413.197376pt;}
.y25{bottom:417.551490pt;}
.y59{bottom:422.519157pt;}
.y24{bottom:426.511493pt;}
.y27{bottom:433.238947pt;}
.y1c{bottom:436.110337pt;}
.y21{bottom:437.517157pt;}
.y4e{bottom:440.797373pt;}
.y26{bottom:445.380157pt;}
.y7{bottom:499.006719pt;}
.ya{bottom:499.914664pt;}
.y34{bottom:500.874669pt;}
.h5{height:31.083335pt;}
.h7{height:31.083379pt;}
.h6{height:34.968751pt;}
.h12{height:42.739586pt;}
.h16{height:46.625001pt;}
.h10{height:48.000002pt;}
.h20{height:53.447917pt;}
.h13{height:53.525337pt;}
.h11{height:54.506666pt;}
.h1c{height:58.281252pt;}
.hd{height:58.400002pt;}
.h1e{height:60.000002pt;}
.h1d{height:61.760002pt;}
.h3{height:61.952004pt;}
.h1b{height:62.293337pt;}
.h1a{height:64.000004pt;}
.h19{height:65.877338pt;}
.h9{height:66.186667pt;}
.h17{height:66.192667pt;}
.h18{height:69.829899pt;}
.hc{height:69.937502pt;}
.h1f{height:71.328002pt;}
.h4{height:73.568004pt;}
.ha{height:73.973338pt;}
.h15{height:77.866667pt;}
.he{height:83.706667pt;}
.hb{height:85.653338pt;}
.h14{height:89.125070pt;}
.h8{height:96.655741pt;}
.hf{height:110.960004pt;}
.h2{height:116.160004pt;}
.h1{height:164.693334pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x19{left:29.771655pt;}
.x15{left:31.472441pt;}
.x14{left:34.031497pt;}
.x18{left:36.341209pt;}
.x17{left:41.724411pt;}
.x26{left:42.691577pt;}
.x12{left:50.881220pt;}
.xa{left:53.375177pt;}
.x11{left:54.375330pt;}
.xb{left:62.042574pt;}
.x2{left:69.476045pt;}
.x27{left:78.771657pt;}
.x28{left:90.691577pt;}
.xc{left:99.727039pt;}
.x1{left:111.258730pt;}
.x29{left:126.771658pt;}
.x6{left:187.813853pt;}
.x22{left:193.866130pt;}
.x21{left:222.488541pt;}
.x23{left:271.252504pt;}
.x20{left:284.617663pt;}
.x3{left:329.930187pt;}
.x5{left:342.721747pt;}
.x4{left:362.302288pt;}
.x1f{left:436.351714pt;}
.x1e{left:447.469436pt;}
.x1b{left:469.708665pt;}
.x1a{left:482.507035pt;}
.x2a{left:486.779556pt;}
.xd{left:499.315552pt;}
.xf{left:507.154501pt;}
.x2c{left:529.514487pt;}
.x2b{left:534.779557pt;}
.xe{left:537.000017pt;}
.x16{left:596.706069pt;}
.x10{left:609.655400pt;}
.x24{left:638.833257pt;}
.x9{left:674.872568pt;}
.x8{left:682.296622pt;}
.x7{left:685.713922pt;}
.x13{left:734.719224pt;}
.x25{left:750.125268pt;}
.x2e{left:761.674909pt;}
.x2d{left:769.909306pt;}
.x1d{left:2252.762332pt;}
.x1c{left:2414.050633pt;}
}




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