
    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_102f32fb2bbdfb8a7364a2cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_25e1794a3cee76266d6de5bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3ffd401a8b84c79f83983ea3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.711000;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_a897bae15d0a0e4b99257af0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8dd561209ae7a819d9726e28.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_3dda0e37e29033387ce5cdd7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_66eb93cf6da8c5fce792e346.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_ca578486c3a13e19b32c4de4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_63ce1793e9f1305b390a5ce5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;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:ffa;src:url('chunks/assets/font_6fde79c9e6f8d0a7dec60ef9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.672000;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:ffb;src:url('chunks/assets/font_1abf495eb35f87ae6410e370.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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;}
.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);}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:33.618000px;}
.v2{vertical-align:44.280000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.002690px;}
.ls6{letter-spacing:0.006392px;}
.ls5{letter-spacing:0.014094px;}
.lsc{letter-spacing:2.989289px;}
.ls7{letter-spacing:7.172706px;}
.ls9{letter-spacing:9.098189px;}
.lsb{letter-spacing:10.930918px;}
.ls4{letter-spacing:14.530921px;}
.lsa{letter-spacing:18.130924px;}
.ls8{letter-spacing:32.727300px;}
.ls1{letter-spacing:33.381846px;}
.ls3{letter-spacing:69.683412px;}
.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;}
}
.ws21{word-spacing:-42.637126px;}
.ws24{word-spacing:-31.706208px;}
.ws2e{word-spacing:-3.586912px;}
.ws19{word-spacing:-3.456003px;}
.ws18{word-spacing:-3.194184px;}
.wse{word-spacing:-3.128730px;}
.ws48{word-spacing:-1.426910px;}
.ws3c{word-spacing:-0.772364px;}
.ws35{word-spacing:-0.641455px;}
.ws26{word-spacing:-0.576000px;}
.ws8{word-spacing:-0.466250px;}
.ws2f{word-spacing:-0.052364px;}
.ws23{word-spacing:-0.047821px;}
.ws1a{word-spacing:0.000000px;}
.ws28{word-spacing:0.013091px;}
.ws1b{word-spacing:0.602182px;}
.ws2d{word-spacing:0.929455px;}
.ws9{word-spacing:1.087916px;}
.ws2c{word-spacing:1.845820px;}
.ws42{word-spacing:1.911274px;}
.ws39{word-spacing:2.304002px;}
.ws16{word-spacing:2.696730px;}
.ws41{word-spacing:3.089457px;}
.ws2b{word-spacing:3.220366px;}
.ws43{word-spacing:3.351276px;}
.ws12{word-spacing:3.613094px;}
.wsa{word-spacing:3.658267px;}
.ws29{word-spacing:3.678549px;}
.ws3f{word-spacing:4.071276px;}
.ws17{word-spacing:4.483200px;}
.ws5{word-spacing:5.092881px;}
.ws3d{word-spacing:5.380368px;}
.ws0{word-spacing:5.412522px;}
.ws2{word-spacing:5.630862px;}
.ws30{word-spacing:6.100369px;}
.ws37{word-spacing:6.231278px;}
.ws3e{word-spacing:6.296733px;}
.ws38{word-spacing:6.558551px;}
.wsf{word-spacing:7.082188px;}
.ws46{word-spacing:7.213097px;}
.wsc{word-spacing:7.244803px;}
.ws36{word-spacing:7.344006px;}
.ws7{word-spacing:7.483905px;}
.ws3b{word-spacing:7.540370px;}
.wsb{word-spacing:7.962110px;}
.ws25{word-spacing:8.260371px;}
.ws2a{word-spacing:8.914917px;}
.ws6{word-spacing:8.918520px;}
.ws3{word-spacing:9.396724px;}
.ws1c{word-spacing:9.569463px;}
.ws32{word-spacing:9.700372px;}
.ws1d{word-spacing:9.896736px;}
.ws10{word-spacing:9.962190px;}
.ws13{word-spacing:10.420372px;}
.ws11{word-spacing:10.616736px;}
.ws4{word-spacing:11.070441px;}
.ws1e{word-spacing:11.271282px;}
.ws3a{word-spacing:12.253101px;}
.ws33{word-spacing:12.973102px;}
.ws40{word-spacing:13.169466px;}
.ws34{word-spacing:13.234920px;}
.ws1f{word-spacing:13.889466px;}
.ws14{word-spacing:16.049468px;}
.ws22{word-spacing:17.484038px;}
.ws27{word-spacing:17.607287px;}
.ws49{word-spacing:18.654561px;}
.ws20{word-spacing:21.825697px;}
.ws44{word-spacing:23.105474px;}
.ws47{word-spacing:23.301838px;}
.ws1{word-spacing:23.312640px;}
.ws45{word-spacing:23.367292px;}
.ws31{word-spacing:53.554954px;}
.ws15{word-spacing:58.281600px;}
.wsd{word-spacing:69.937725px;}
._2{margin-left:-8.160100px;}
._b{margin-left:-6.412587px;}
._2d{margin-left:-5.367277px;}
._8{margin-left:-3.904999px;}
._1{margin-left:-2.685602px;}
._3{margin-left:-1.116151px;}
._4{width:1.673717px;}
._0{width:2.685602px;}
._17{width:14.617128px;}
._c{width:17.281978px;}
._16{width:18.656525px;}
._11{width:20.756459px;}
._15{width:21.925327px;}
._2b{width:24.620244px;}
._9{width:25.823059px;}
._2c{width:26.907227px;}
._5{width:28.010872px;}
._e{width:29.648970px;}
._7{width:31.319135px;}
._21{width:32.467445px;}
._14{width:34.494574px;}
._18{width:36.271097px;}
._10{width:38.358359px;}
._a{width:40.468081px;}
._f{width:42.741854px;}
._1f{width:47.131240px;}
._d{width:48.418055px;}
._6{width:50.247395px;}
._2a{width:55.402694px;}
._20{width:57.830406px;}
._13{width:59.853607px;}
._22{width:71.180676px;}
._12{width:80.697600px;}
._27{width:83.520070px;}
._29{width:87.185527px;}
._25{width:111.215287px;}
._26{width:112.647367px;}
._19{width:119.289807px;}
._28{width:127.178288px;}
._1c{width:160.167406px;}
._1e{width:163.832864px;}
._1a{width:197.607437px;}
._24{width:207.786829px;}
._1d{width:228.043826px;}
._1b{width:234.785650px;}
._23{width:367.723943px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y24{bottom:63.168000px;}
.y23{bottom:108.000000px;}
.y68{bottom:111.622500px;}
.y22{bottom:128.323500px;}
.y67{bottom:131.946000px;}
.y44{bottom:148.647000px;}
.y66{bottom:152.269500px;}
.y21{bottom:159.216000px;}
.y43{bottom:168.972000px;}
.y65{bottom:172.594500px;}
.y64{bottom:192.918000px;}
.y42{bottom:199.863000px;}
.y20{bottom:201.988500px;}
.y77{bottom:211.908000px;}
.y63{bottom:213.241500px;}
.y1f{bottom:222.312000px;}
.y76{bottom:232.231500px;}
.y1e{bottom:242.637000px;}
.y41{bottom:243.574500px;}
.y62{bottom:249.769500px;}
.y40{bottom:263.898000px;}
.y1d{bottom:273.528000px;}
.y3f{bottom:294.790500px;}
.y79{bottom:309.049500px;}
.y1c{bottom:310.654500px;}
.y78{bottom:329.373000px;}
.y61{bottom:329.485500px;}
.y3e{bottom:331.915500px;}
.y60{bottom:358.024500px;}
.y1b{bottom:361.167000px;}
.y5f{bottom:378.348000px;}
.y1a{bottom:381.490500px;}
.y3d{bottom:383.365500px;}
.y5e{bottom:398.671500px;}
.y19{bottom:401.814000px;}
.y3c{bottom:403.690500px;}
.y18{bottom:422.137500px;}
.y5d{bottom:427.212000px;}
.y3b{bottom:436.890000px;}
.y17{bottom:442.461000px;}
.y16{bottom:462.786000px;}
.y5c{bottom:468.367500px;}
.y3a{bottom:470.434500px;}
.y15{bottom:483.109500px;}
.y5b{bottom:488.692500px;}
.y14{bottom:503.433000px;}
.y39{bottom:503.979000px;}
.y5a{bottom:509.016000px;}
.y38{bottom:537.178500px;}
.y13{bottom:539.961000px;}
.y59{bottom:541.174500px;}
.y58{bottom:561.498000px;}
.y37{bottom:568.071000px;}
.y57{bottom:581.823000px;}
.y12{bottom:590.473500px;}
.y56{bottom:602.146500px;}
.y11{bottom:608.406000px;}
.y36{bottom:611.781000px;}
.y10{bottom:626.338500px;}
.y35{bottom:632.106000px;}
.y55{bottom:633.037500px;}
.yf{bottom:644.271000px;}
.ye{bottom:662.205000px;}
.y34{bottom:662.997000px;}
.y54{bottom:676.857000px;}
.yd{bottom:680.137500px;}
.y53{bottom:697.180500px;}
.yc{bottom:698.070000px;}
.y33{bottom:706.708500px;}
.yb{bottom:716.002500px;}
.y52{bottom:717.505500px;}
.y32{bottom:727.032000px;}
.ya{bottom:733.935000px;}
.y75{bottom:735.709500px;}
.y31{bottom:747.355500px;}
.y51{bottom:748.396500px;}
.y9{bottom:751.867500px;}
.y74{bottom:756.033000px;}
.y8{bottom:769.801500px;}
.y30{bottom:774.583500px;}
.y73{bottom:776.356500px;}
.y2f{bottom:785.808000px;}
.y7{bottom:787.734000px;}
.y72{bottom:796.680000px;}
.y50{bottom:804.948000px;}
.y6{bottom:808.350000px;}
.y80{bottom:810.645000px;}
.y2e{bottom:812.736000px;}
.y4f{bottom:825.271500px;}
.y7f{bottom:830.968500px;}
.y2d{bottom:833.061000px;}
.y71{bottom:833.208000px;}
.y4e{bottom:845.595000px;}
.y2c{bottom:853.384500px;}
.y5{bottom:862.104000px;}
.y7e{bottom:864.742500px;}
.y4d{bottom:865.918500px;}
.y2b{bottom:884.275500px;}
.y70{bottom:884.767500px;}
.y7d{bottom:885.066000px;}
.y4c{bottom:894.459000px;}
.y4{bottom:898.692000px;}
.y6f{bottom:905.091000px;}
.y4b{bottom:914.782500px;}
.y7c{bottom:918.838500px;}
.y3{bottom:919.614000px;}
.y6e{bottom:925.414500px;}
.y2a{bottom:927.987000px;}
.y4a{bottom:935.106000px;}
.y6d{bottom:945.738000px;}
.y29{bottom:948.310500px;}
.y7b{bottom:952.612500px;}
.y49{bottom:955.429500px;}
.y2{bottom:965.080500px;}
.y6c{bottom:966.061500px;}
.y28{bottom:968.635500px;}
.y7a{bottom:972.936000px;}
.y48{bottom:983.970000px;}
.y6b{bottom:986.386500px;}
.y1{bottom:997.957500px;}
.y27{bottom:999.526500px;}
.y6a{bottom:1006.710000px;}
.y47{bottom:1025.125500px;}
.y69{bottom:1027.033500px;}
.y26{bottom:1043.238000px;}
.y46{bottom:1045.449000px;}
.y25{bottom:1063.561500px;}
.y45{bottom:1065.774000px;}
.h3{height:41.842920px;}
.h4{height:44.831700px;}
.h6{height:49.090950px;}
.h7{height:50.211840px;}
.h2{height:53.798400px;}
.h5{height:60.254040px;}
.h1{height:73.027727px;}
.h9{height:91.043493px;}
.h8{height:93.370950px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.xa{left:133.405500px;}
.x8{left:148.909500px;}
.x1{left:170.250000px;}
.x7{left:171.325500px;}
.x2{left:198.126000px;}
.xf{left:218.974500px;}
.xe{left:242.404500px;}
.x4{left:272.748000px;}
.xc{left:375.085500px;}
.x5{left:386.449500px;}
.x3{left:405.426000px;}
.x6{left:426.123000px;}
.xd{left:427.737000px;}
.xb{left:454.909500px;}
@media print{
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:29.882667pt;}
.v2{vertical-align:39.360000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002391pt;}
.ls6{letter-spacing:0.005681pt;}
.ls5{letter-spacing:0.012528pt;}
.lsc{letter-spacing:2.657146pt;}
.ls7{letter-spacing:6.375739pt;}
.ls9{letter-spacing:8.087279pt;}
.lsb{letter-spacing:9.716372pt;}
.ls4{letter-spacing:12.916374pt;}
.lsa{letter-spacing:16.116377pt;}
.ls8{letter-spacing:29.090933pt;}
.ls1{letter-spacing:29.672752pt;}
.ls3{letter-spacing:61.940811pt;}
.ws21{word-spacing:-37.899668pt;}
.ws24{word-spacing:-28.183296pt;}
.ws2e{word-spacing:-3.188366pt;}
.ws19{word-spacing:-3.072003pt;}
.ws18{word-spacing:-2.839275pt;}
.wse{word-spacing:-2.781093pt;}
.ws48{word-spacing:-1.268365pt;}
.ws3c{word-spacing:-0.686546pt;}
.ws35{word-spacing:-0.570182pt;}
.ws26{word-spacing:-0.512000pt;}
.ws8{word-spacing:-0.414444pt;}
.ws2f{word-spacing:-0.046545pt;}
.ws23{word-spacing:-0.042507pt;}
.ws1a{word-spacing:0.000000pt;}
.ws28{word-spacing:0.011636pt;}
.ws1b{word-spacing:0.535273pt;}
.ws2d{word-spacing:0.826183pt;}
.ws9{word-spacing:0.967036pt;}
.ws2c{word-spacing:1.640729pt;}
.ws42{word-spacing:1.698911pt;}
.ws39{word-spacing:2.048002pt;}
.ws16{word-spacing:2.397093pt;}
.ws41{word-spacing:2.746184pt;}
.ws2b{word-spacing:2.862548pt;}
.ws43{word-spacing:2.978912pt;}
.ws12{word-spacing:3.211639pt;}
.wsa{word-spacing:3.251793pt;}
.ws29{word-spacing:3.269821pt;}
.ws3f{word-spacing:3.618912pt;}
.ws17{word-spacing:3.985067pt;}
.ws5{word-spacing:4.527005pt;}
.ws3d{word-spacing:4.782549pt;}
.ws0{word-spacing:4.811130pt;}
.ws2{word-spacing:5.005210pt;}
.ws30{word-spacing:5.422550pt;}
.ws37{word-spacing:5.538914pt;}
.ws3e{word-spacing:5.597096pt;}
.ws38{word-spacing:5.829823pt;}
.wsf{word-spacing:6.295278pt;}
.ws46{word-spacing:6.411642pt;}
.wsc{word-spacing:6.439825pt;}
.ws36{word-spacing:6.528005pt;}
.ws7{word-spacing:6.652360pt;}
.ws3b{word-spacing:6.702551pt;}
.wsb{word-spacing:7.077431pt;}
.ws25{word-spacing:7.342552pt;}
.ws2a{word-spacing:7.924370pt;}
.ws6{word-spacing:7.927573pt;}
.ws3{word-spacing:8.352644pt;}
.ws1c{word-spacing:8.506189pt;}
.ws32{word-spacing:8.622553pt;}
.ws1d{word-spacing:8.797098pt;}
.ws10{word-spacing:8.855280pt;}
.ws13{word-spacing:9.262553pt;}
.ws11{word-spacing:9.437099pt;}
.ws4{word-spacing:9.840392pt;}
.ws1e{word-spacing:10.018917pt;}
.ws3a{word-spacing:10.891645pt;}
.ws33{word-spacing:11.531646pt;}
.ws40{word-spacing:11.706192pt;}
.ws34{word-spacing:11.764373pt;}
.ws1f{word-spacing:12.346192pt;}
.ws14{word-spacing:14.266194pt;}
.ws22{word-spacing:15.541367pt;}
.ws27{word-spacing:15.650922pt;}
.ws49{word-spacing:16.581832pt;}
.ws20{word-spacing:19.400619pt;}
.ws44{word-spacing:20.538199pt;}
.ws47{word-spacing:20.712745pt;}
.ws1{word-spacing:20.722347pt;}
.ws45{word-spacing:20.770926pt;}
.ws31{word-spacing:47.604403pt;}
.ws15{word-spacing:51.805867pt;}
.wsd{word-spacing:62.166867pt;}
._2{margin-left:-7.253422pt;}
._b{margin-left:-5.700077pt;}
._2d{margin-left:-4.770913pt;}
._8{margin-left:-3.471110pt;}
._1{margin-left:-2.387202pt;}
._3{margin-left:-0.992134pt;}
._4{width:1.487748pt;}
._0{width:2.387202pt;}
._17{width:12.993003pt;}
._c{width:15.361758pt;}
._16{width:16.583578pt;}
._11{width:18.450186pt;}
._15{width:19.489180pt;}
._2b{width:21.884661pt;}
._9{width:22.953830pt;}
._2c{width:23.917535pt;}
._5{width:24.898553pt;}
._e{width:26.354640pt;}
._7{width:27.839231pt;}
._21{width:28.859951pt;}
._14{width:30.661844pt;}
._18{width:32.240975pt;}
._10{width:34.096319pt;}
._a{width:35.971628pt;}
._f{width:37.992759pt;}
._1f{width:41.894435pt;}
._d{width:43.038271pt;}
._6{width:44.664351pt;}
._2a{width:49.246839pt;}
._20{width:51.404805pt;}
._13{width:53.203206pt;}
._22{width:63.271712pt;}
._12{width:71.731200pt;}
._27{width:74.240062pt;}
._29{width:77.498246pt;}
._25{width:98.858033pt;}
._26{width:100.130993pt;}
._19{width:106.035384pt;}
._28{width:113.047367pt;}
._1c{width:142.371028pt;}
._1e{width:145.629212pt;}
._1a{width:175.651055pt;}
._24{width:184.699404pt;}
._1d{width:202.705623pt;}
._1b{width:208.698356pt;}
._23{width:326.865727pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:56.149333pt;}
.y23{bottom:96.000000pt;}
.y68{bottom:99.220000pt;}
.y22{bottom:114.065333pt;}
.y67{bottom:117.285333pt;}
.y44{bottom:132.130667pt;}
.y66{bottom:135.350667pt;}
.y21{bottom:141.525333pt;}
.y43{bottom:150.197333pt;}
.y65{bottom:153.417333pt;}
.y64{bottom:171.482667pt;}
.y42{bottom:177.656000pt;}
.y20{bottom:179.545333pt;}
.y77{bottom:188.362667pt;}
.y63{bottom:189.548000pt;}
.y1f{bottom:197.610667pt;}
.y76{bottom:206.428000pt;}
.y1e{bottom:215.677333pt;}
.y41{bottom:216.510667pt;}
.y62{bottom:222.017333pt;}
.y40{bottom:234.576000pt;}
.y1d{bottom:243.136000pt;}
.y3f{bottom:262.036000pt;}
.y79{bottom:274.710667pt;}
.y1c{bottom:276.137333pt;}
.y78{bottom:292.776000pt;}
.y61{bottom:292.876000pt;}
.y3e{bottom:295.036000pt;}
.y60{bottom:318.244000pt;}
.y1b{bottom:321.037333pt;}
.y5f{bottom:336.309333pt;}
.y1a{bottom:339.102667pt;}
.y3d{bottom:340.769333pt;}
.y5e{bottom:354.374667pt;}
.y19{bottom:357.168000pt;}
.y3c{bottom:358.836000pt;}
.y18{bottom:375.233333pt;}
.y5d{bottom:379.744000pt;}
.y3b{bottom:388.346667pt;}
.y17{bottom:393.298667pt;}
.y16{bottom:411.365333pt;}
.y5c{bottom:416.326667pt;}
.y3a{bottom:418.164000pt;}
.y15{bottom:429.430667pt;}
.y5b{bottom:434.393333pt;}
.y14{bottom:447.496000pt;}
.y39{bottom:447.981333pt;}
.y5a{bottom:452.458667pt;}
.y38{bottom:477.492000pt;}
.y13{bottom:479.965333pt;}
.y59{bottom:481.044000pt;}
.y58{bottom:499.109333pt;}
.y37{bottom:504.952000pt;}
.y57{bottom:517.176000pt;}
.y12{bottom:524.865333pt;}
.y56{bottom:535.241333pt;}
.y11{bottom:540.805333pt;}
.y36{bottom:543.805333pt;}
.y10{bottom:556.745333pt;}
.y35{bottom:561.872000pt;}
.y55{bottom:562.700000pt;}
.yf{bottom:572.685333pt;}
.ye{bottom:588.626667pt;}
.y34{bottom:589.330667pt;}
.y54{bottom:601.650667pt;}
.yd{bottom:604.566667pt;}
.y53{bottom:619.716000pt;}
.yc{bottom:620.506667pt;}
.y33{bottom:628.185333pt;}
.yb{bottom:636.446667pt;}
.y52{bottom:637.782667pt;}
.y32{bottom:646.250667pt;}
.ya{bottom:652.386667pt;}
.y75{bottom:653.964000pt;}
.y31{bottom:664.316000pt;}
.y51{bottom:665.241333pt;}
.y9{bottom:668.326667pt;}
.y74{bottom:672.029333pt;}
.y8{bottom:684.268000pt;}
.y30{bottom:688.518667pt;}
.y73{bottom:690.094667pt;}
.y2f{bottom:698.496000pt;}
.y7{bottom:700.208000pt;}
.y72{bottom:708.160000pt;}
.y50{bottom:715.509333pt;}
.y6{bottom:718.533333pt;}
.y80{bottom:720.573333pt;}
.y2e{bottom:722.432000pt;}
.y4f{bottom:733.574667pt;}
.y7f{bottom:738.638667pt;}
.y2d{bottom:740.498667pt;}
.y71{bottom:740.629333pt;}
.y4e{bottom:751.640000pt;}
.y2c{bottom:758.564000pt;}
.y5{bottom:766.314667pt;}
.y7e{bottom:768.660000pt;}
.y4d{bottom:769.705333pt;}
.y2b{bottom:786.022667pt;}
.y70{bottom:786.460000pt;}
.y7d{bottom:786.725333pt;}
.y4c{bottom:795.074667pt;}
.y4{bottom:798.837333pt;}
.y6f{bottom:804.525333pt;}
.y4b{bottom:813.140000pt;}
.y7c{bottom:816.745333pt;}
.y3{bottom:817.434667pt;}
.y6e{bottom:822.590667pt;}
.y2a{bottom:824.877333pt;}
.y4a{bottom:831.205333pt;}
.y6d{bottom:840.656000pt;}
.y29{bottom:842.942667pt;}
.y7b{bottom:846.766667pt;}
.y49{bottom:849.270667pt;}
.y2{bottom:857.849333pt;}
.y6c{bottom:858.721333pt;}
.y28{bottom:861.009333pt;}
.y7a{bottom:864.832000pt;}
.y48{bottom:874.640000pt;}
.y6b{bottom:876.788000pt;}
.y1{bottom:887.073333pt;}
.y27{bottom:888.468000pt;}
.y6a{bottom:894.853333pt;}
.y47{bottom:911.222667pt;}
.y69{bottom:912.918667pt;}
.y26{bottom:927.322667pt;}
.y46{bottom:929.288000pt;}
.y25{bottom:945.388000pt;}
.y45{bottom:947.354667pt;}
.h3{height:37.193707pt;}
.h4{height:39.850400pt;}
.h6{height:43.636400pt;}
.h7{height:44.632747pt;}
.h2{height:47.820800pt;}
.h5{height:53.559147pt;}
.h1{height:64.913535pt;}
.h9{height:80.927549pt;}
.h8{height:82.996400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.xa{left:118.582667pt;}
.x8{left:132.364000pt;}
.x1{left:151.333333pt;}
.x7{left:152.289333pt;}
.x2{left:176.112000pt;}
.xf{left:194.644000pt;}
.xe{left:215.470667pt;}
.x4{left:242.442667pt;}
.xc{left:333.409333pt;}
.x5{left:343.510667pt;}
.x3{left:360.378667pt;}
.x6{left:378.776000pt;}
.xd{left:380.210667pt;}
.xb{left:404.364000pt;}
}




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