
    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_3537814e91551e1324bfefce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.680176;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_3ece0c9c9e57ecb3514b20f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.862305;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_09e4cb1ed075007008bb3833.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.863770;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_f095d84ca5bec001f6593181.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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_35d7f1e223fc778eb07bf6ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.837891;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_68376c39ec4a4d24c460071c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_85bfa630a03a828cff22e956.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_9efbc50e6fc98613decb2da3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_10beb02e7f594bd2a5f8531f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.858887;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_fe2f5cb3ca120f42349e4c3f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.863770;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;}
.m8{transform:matrix(0.233026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233026,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.239162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239162,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.239163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239163,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243217,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000175,-0.000175,0.250000,0,0);-ms-transform:matrix(0.250000,0.000175,-0.000175,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000175,-0.000175,0.250000,0,0);}
.m5{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);}
.mb{transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.mc{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;}
.ls0{letter-spacing:-4.787956px;}
.ls1{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:-16.960200px;}
.ws1{word-spacing:-15.332021px;}
.wsb{word-spacing:-9.492000px;}
.wsc{word-spacing:-9.000000px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:0.013568px;}
.ws3{word-spacing:1.696020px;}
.wsf{word-spacing:4.206130px;}
.ws7{word-spacing:7.937374px;}
.ws6{word-spacing:9.362030px;}
.wse{word-spacing:10.854528px;}
.ws5{word-spacing:14.789294px;}
.ws11{word-spacing:27.339842px;}
.ws8{word-spacing:28.289614px;}
.ws9{word-spacing:29.275200px;}
.ws10{word-spacing:33.174151px;}
.ws4{word-spacing:36.634032px;}
.wsa{word-spacing:50.134351px;}
._15{margin-left:-2.903586px;}
._4{margin-left:-1.058316px;}
._0{width:1.485714px;}
._1{width:2.679712px;}
._2{width:3.697324px;}
._9{width:5.529025px;}
._8{width:7.638874px;}
._1b{width:9.117804px;}
._13{width:10.121847px;}
._1c{width:11.532936px;}
._1d{width:13.161115px;}
._1f{width:14.327977px;}
._b{width:16.397121px;}
._7{width:17.652176px;}
._11{width:18.724061px;}
._3{width:20.908535px;}
._12{width:22.584202px;}
._10{width:24.273438px;}
._14{width:25.840561px;}
._5{width:26.898877px;}
._d{width:28.004682px;}
._a{width:29.069783px;}
._c{width:30.874348px;}
._1e{width:31.973369px;}
._20{width:33.194503px;}
._1a{width:36.851123px;}
._18{width:38.031552px;}
._19{width:39.191630px;}
._f{width:41.308263px;}
._e{width:44.313611px;}
._16{width:47.168853px;}
._21{width:48.562155px;}
._6{width:49.869772px;}
._17{width:92.597907px;}
.fc6{color:rgb(79,76,77);}
.fc5{color:rgb(82,84,86);}
.fc8{color:rgb(81,84,85);}
.fc7{color:rgb(85,88,89);}
.fc4{color:rgb(82,85,86);}
.fc3{color:rgb(80,81,82);}
.fc2{color:rgb(158,29,38);}
.fc1{color:rgb(57,53,54);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:29.856600px;}
.fs9{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs5{font-size:43.171200px;}
.fs4{font-size:49.338600px;}
.fs7{font-size:61.673400px;}
.fs1{font-size:67.840800px;}
.fs3{font-size:68.400000px;}
.fs2{font-size:80.175600px;}
.fs0{font-size:251.997662px;}
.y0{bottom:0.000000px;}
.y3f{bottom:27.727350px;}
.y4a{bottom:31.496700px;}
.y49{bottom:43.498200px;}
.y4c{bottom:52.847850px;}
.y48{bottom:55.499700px;}
.y47{bottom:67.501200px;}
.y19{bottom:70.161217px;}
.y4b{bottom:79.502700px;}
.y3e{bottom:80.071876px;}
.y18{bottom:91.157945px;}
.y46{bottom:91.504200px;}
.y3d{bottom:92.667073px;}
.y45{bottom:103.505700px;}
.y3c{bottom:105.262271px;}
.y17{bottom:112.154672px;}
.y44{bottom:115.507200px;}
.y3b{bottom:125.358464px;}
.y43{bottom:127.508700px;}
.y16{bottom:133.151400px;}
.y3a{bottom:138.860257px;}
.y42{bottom:139.510200px;}
.y41{bottom:151.511700px;}
.y39{bottom:152.362050px;}
.y1b{bottom:158.074650px;}
.y40{bottom:163.511700px;}
.y38{bottom:164.961900px;}
.y1a{bottom:179.671950px;}
.y6a{bottom:214.978840px;}
.y25{bottom:227.896843px;}
.y69{bottom:235.975567px;}
.y24{bottom:248.893571px;}
.y68{bottom:256.972295px;}
.y35{bottom:260.595977px;}
.y23{bottom:269.890298px;}
.y67{bottom:277.969022px;}
.y34{bottom:281.592705px;}
.y22{bottom:298.383434px;}
.y66{bottom:298.965750px;}
.y33{bottom:302.589433px;}
.y21{bottom:319.380162px;}
.y32{bottom:323.586160px;}
.y6d{bottom:326.624250px;}
.y20{bottom:340.376890px;}
.y31{bottom:344.582888px;}
.y6c{bottom:348.221550px;}
.y1f{bottom:361.373617px;}
.y6b{bottom:369.818850px;}
.y30{bottom:376.077979px;}
.y1e{bottom:382.370345px;}
.y2f{bottom:397.074707px;}
.y1d{bottom:403.367072px;}
.y2e{bottom:418.071434px;}
.y53{bottom:421.766534px;}
.y1c{bottom:424.363800px;}
.y2d{bottom:439.068162px;}
.y52{bottom:442.763262px;}
.y85{bottom:445.368845px;}
.y27{bottom:452.796750px;}
.y2c{bottom:460.064890px;}
.y51{bottom:463.759990px;}
.y84{bottom:466.365572px;}
.y26{bottom:474.394050px;}
.y2b{bottom:481.061617px;}
.y50{bottom:484.756717px;}
.y83{bottom:487.362300px;}
.y2a{bottom:502.058345px;}
.y4f{bottom:505.753445px;}
.y87{bottom:514.120950px;}
.y29{bottom:523.055072px;}
.y15{bottom:524.110898px;}
.y4e{bottom:526.750172px;}
.y86{bottom:535.718250px;}
.y28{bottom:544.051800px;}
.y14{bottom:545.107626px;}
.y4d{bottom:547.746900px;}
.y13{bottom:566.104354px;}
.y37{bottom:572.440800px;}
.y55{bottom:573.669750px;}
.y80{bottom:585.934812px;}
.y36{bottom:594.038100px;}
.y12{bottom:594.597490px;}
.y54{bottom:595.267050px;}
.y7f{bottom:606.931540px;}
.y11{bottom:615.594217px;}
.y7e{bottom:627.928267px;}
.y10{bottom:636.590945px;}
.yb{bottom:642.001390px;}
.y7d{bottom:648.924995px;}
.yf{bottom:657.587672px;}
.ya{bottom:662.998117px;}
.y7c{bottom:669.921722px;}
.ye{bottom:678.584400px;}
.y9{bottom:683.994845px;}
.y7b{bottom:690.918450px;}
.y8{bottom:704.991572px;}
.yd{bottom:705.518850px;}
.y82{bottom:719.177100px;}
.y7{bottom:725.988300px;}
.yc{bottom:727.116150px;}
.y81{bottom:740.774400px;}
.y78{bottom:781.191967px;}
.y3{bottom:790.099022px;}
.y77{bottom:802.188695px;}
.y2{bottom:811.095750px;}
.y62{bottom:822.416317px;}
.y76{bottom:823.185422px;}
.y4{bottom:835.382850px;}
.y61{bottom:843.413045px;}
.y75{bottom:844.182150px;}
.y60{bottom:864.409772px;}
.y7a{bottom:869.596800px;}
.y5f{bottom:885.406500px;}
.y79{bottom:891.194100px;}
.y65{bottom:908.609550px;}
.y64{bottom:930.206850px;}
.y72{bottom:938.422690px;}
.y63{bottom:951.804150px;}
.y1{bottom:955.109550px;}
.y71{bottom:959.419417px;}
.y70{bottom:980.416145px;}
.y5b{bottom:1000.752162px;}
.y6f{bottom:1001.412872px;}
.y5a{bottom:1021.748890px;}
.y6e{bottom:1022.409600px;}
.y59{bottom:1042.745617px;}
.y74{bottom:1049.165400px;}
.y58{bottom:1063.742345px;}
.y73{bottom:1070.762700px;}
.y57{bottom:1084.739072px;}
.y56{bottom:1105.735800px;}
.y8b{bottom:1119.560617px;}
.y5e{bottom:1133.482200px;}
.y8a{bottom:1140.557345px;}
.y6{bottom:1152.532897px;}
.y5d{bottom:1155.079500px;}
.y89{bottom:1161.554072px;}
.y5{bottom:1172.325450px;}
.y5c{bottom:1176.676800px;}
.y88{bottom:1182.550800px;}
.hf{height:24.363281px;}
.hc{height:24.622948px;}
.ha{height:33.823923px;}
.he{height:34.637695px;}
.hb{height:35.603592px;}
.hd{height:42.219779px;}
.h6{height:45.911791px;}
.h7{height:46.375547px;}
.h4{height:46.441798px;}
.h3{height:46.508048px;}
.h9{height:46.891406px;}
.h5{height:54.964132px;}
.h8{height:55.948785px;}
.h2{height:167.957426px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:38.167950px;}
.x10{left:39.843750px;}
.xe{left:42.034350px;}
.x6{left:44.950950px;}
.x2{left:46.294950px;}
.x9{left:56.163600px;}
.xd{left:77.871150px;}
.x11{left:79.429650px;}
.xf{left:81.583050px;}
.x1{left:85.019850px;}
.xc{left:112.041450px;}
.xa{left:272.737800px;}
.x14{left:457.854450px;}
.x12{left:461.929650px;}
.x5{left:467.953050px;}
.x13{left:501.691350px;}
.x15{left:503.201700px;}
.x7{left:513.099600px;}
.xb{left:566.853450px;}
.x4{left:580.802250px;}
.x3{left:712.092750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:-4.255961pt;}
.ls1{letter-spacing:0.000000pt;}
.ws0{word-spacing:-15.075733pt;}
.ws1{word-spacing:-13.628463pt;}
.wsb{word-spacing:-8.437333pt;}
.wsc{word-spacing:-8.000000pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:0.012061pt;}
.ws3{word-spacing:1.507573pt;}
.wsf{word-spacing:3.738782pt;}
.ws7{word-spacing:7.055443pt;}
.ws6{word-spacing:8.321805pt;}
.wse{word-spacing:9.648469pt;}
.ws5{word-spacing:13.146039pt;}
.ws11{word-spacing:24.302082pt;}
.ws8{word-spacing:25.146323pt;}
.ws9{word-spacing:26.022400pt;}
.ws10{word-spacing:29.488134pt;}
.ws4{word-spacing:32.563584pt;}
.wsa{word-spacing:44.563868pt;}
._15{margin-left:-2.580966pt;}
._4{margin-left:-0.940726pt;}
._0{width:1.320634pt;}
._1{width:2.381966pt;}
._2{width:3.286510pt;}
._9{width:4.914689pt;}
._8{width:6.790110pt;}
._1b{width:8.104714pt;}
._13{width:8.997198pt;}
._1c{width:10.251499pt;}
._1d{width:11.698769pt;}
._1f{width:12.735980pt;}
._b{width:14.575219pt;}
._7{width:15.690823pt;}
._11{width:16.643610pt;}
._3{width:18.585364pt;}
._12{width:20.074847pt;}
._10{width:21.576390pt;}
._14{width:22.969387pt;}
._5{width:23.910113pt;}
._d{width:24.893051pt;}
._a{width:25.839807pt;}
._c{width:27.443865pt;}
._1e{width:28.420772pt;}
._20{width:29.506225pt;}
._1a{width:32.756553pt;}
._18{width:33.805824pt;}
._19{width:34.837005pt;}
._f{width:36.718456pt;}
._e{width:39.389876pt;}
._16{width:41.927869pt;}
._21{width:43.166360pt;}
._6{width:44.328686pt;}
._17{width:82.309251pt;}
.fs6{font-size:26.539200pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs5{font-size:38.374400pt;}
.fs4{font-size:43.856533pt;}
.fs7{font-size:54.820800pt;}
.fs1{font-size:60.302933pt;}
.fs3{font-size:60.800000pt;}
.fs2{font-size:71.267200pt;}
.fs0{font-size:223.997922pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:24.646533pt;}
.y4a{bottom:27.997067pt;}
.y49{bottom:38.665067pt;}
.y4c{bottom:46.975867pt;}
.y48{bottom:49.333067pt;}
.y47{bottom:60.001067pt;}
.y19{bottom:62.365526pt;}
.y4b{bottom:70.669067pt;}
.y3e{bottom:71.175001pt;}
.y18{bottom:81.029284pt;}
.y46{bottom:81.337067pt;}
.y3d{bottom:82.370732pt;}
.y45{bottom:92.005067pt;}
.y3c{bottom:93.566463pt;}
.y17{bottom:99.693042pt;}
.y44{bottom:102.673067pt;}
.y3b{bottom:111.429746pt;}
.y43{bottom:113.341067pt;}
.y16{bottom:118.356800pt;}
.y3a{bottom:123.431340pt;}
.y42{bottom:124.009067pt;}
.y41{bottom:134.677067pt;}
.y39{bottom:135.432933pt;}
.y1b{bottom:140.510800pt;}
.y40{bottom:145.343733pt;}
.y38{bottom:146.632800pt;}
.y1a{bottom:159.708400pt;}
.y6a{bottom:191.092302pt;}
.y25{bottom:202.574972pt;}
.y69{bottom:209.756060pt;}
.y24{bottom:221.238730pt;}
.y68{bottom:228.419818pt;}
.y35{bottom:231.640869pt;}
.y23{bottom:239.902487pt;}
.y67{bottom:247.083575pt;}
.y34{bottom:250.304627pt;}
.y22{bottom:265.229719pt;}
.y66{bottom:265.747333pt;}
.y33{bottom:268.968385pt;}
.y21{bottom:283.893477pt;}
.y32{bottom:287.632142pt;}
.y6d{bottom:290.332667pt;}
.y20{bottom:302.557235pt;}
.y31{bottom:306.295900pt;}
.y6c{bottom:309.530267pt;}
.y1f{bottom:321.220993pt;}
.y6b{bottom:328.727867pt;}
.y30{bottom:334.291537pt;}
.y1e{bottom:339.884751pt;}
.y2f{bottom:352.955295pt;}
.y1d{bottom:358.548509pt;}
.y2e{bottom:371.619053pt;}
.y53{bottom:374.903586pt;}
.y1c{bottom:377.212267pt;}
.y2d{bottom:390.282811pt;}
.y52{bottom:393.567344pt;}
.y85{bottom:395.883418pt;}
.y27{bottom:402.486000pt;}
.y2c{bottom:408.946569pt;}
.y51{bottom:412.231102pt;}
.y84{bottom:414.547175pt;}
.y26{bottom:421.683600pt;}
.y2b{bottom:427.610326pt;}
.y50{bottom:430.894860pt;}
.y83{bottom:433.210933pt;}
.y2a{bottom:446.274084pt;}
.y4f{bottom:449.558618pt;}
.y87{bottom:456.996400pt;}
.y29{bottom:464.937842pt;}
.y15{bottom:465.876354pt;}
.y4e{bottom:468.222375pt;}
.y86{bottom:476.194000pt;}
.y28{bottom:483.601600pt;}
.y14{bottom:484.540112pt;}
.y4d{bottom:486.886133pt;}
.y13{bottom:503.203870pt;}
.y37{bottom:508.836267pt;}
.y55{bottom:509.928667pt;}
.y80{bottom:520.830944pt;}
.y36{bottom:528.033867pt;}
.y12{bottom:528.531102pt;}
.y54{bottom:529.126267pt;}
.y7f{bottom:539.494702pt;}
.y11{bottom:547.194860pt;}
.y7e{bottom:558.158460pt;}
.y10{bottom:565.858618pt;}
.yb{bottom:570.667902pt;}
.y7d{bottom:576.822218pt;}
.yf{bottom:584.522375pt;}
.ya{bottom:589.331660pt;}
.y7c{bottom:595.485975pt;}
.ye{bottom:603.186133pt;}
.y9{bottom:607.995418pt;}
.y7b{bottom:614.149733pt;}
.y8{bottom:626.659175pt;}
.yd{bottom:627.127867pt;}
.y82{bottom:639.268533pt;}
.y7{bottom:645.322933pt;}
.yc{bottom:646.325467pt;}
.y81{bottom:658.466133pt;}
.y78{bottom:694.392860pt;}
.y3{bottom:702.310242pt;}
.y77{bottom:713.056618pt;}
.y2{bottom:720.974000pt;}
.y62{bottom:731.036726pt;}
.y76{bottom:731.720375pt;}
.y4{bottom:742.562533pt;}
.y61{bottom:749.700484pt;}
.y75{bottom:750.384133pt;}
.y60{bottom:768.364242pt;}
.y7a{bottom:772.974933pt;}
.y5f{bottom:787.028000pt;}
.y79{bottom:792.172533pt;}
.y65{bottom:807.652933pt;}
.y64{bottom:826.850533pt;}
.y72{bottom:834.153502pt;}
.y63{bottom:846.048133pt;}
.y1{bottom:848.986267pt;}
.y71{bottom:852.817260pt;}
.y70{bottom:871.481018pt;}
.y5b{bottom:889.557477pt;}
.y6f{bottom:890.144775pt;}
.y5a{bottom:908.221235pt;}
.y6e{bottom:908.808533pt;}
.y59{bottom:926.884993pt;}
.y74{bottom:932.591467pt;}
.y58{bottom:945.548751pt;}
.y73{bottom:951.789067pt;}
.y57{bottom:964.212509pt;}
.y56{bottom:982.876267pt;}
.y8b{bottom:995.164993pt;}
.y5e{bottom:1007.539733pt;}
.y8a{bottom:1013.828751pt;}
.y6{bottom:1024.473686pt;}
.y5d{bottom:1026.737333pt;}
.y89{bottom:1032.492509pt;}
.y5{bottom:1042.067067pt;}
.y5c{bottom:1045.934933pt;}
.y88{bottom:1051.156267pt;}
.hf{height:21.656250pt;}
.hc{height:21.887065pt;}
.ha{height:30.065709pt;}
.he{height:30.789062pt;}
.hb{height:31.647637pt;}
.hd{height:37.528692pt;}
.h6{height:40.810481pt;}
.h7{height:41.222708pt;}
.h4{height:41.281598pt;}
.h3{height:41.340488pt;}
.h9{height:41.681250pt;}
.h5{height:48.857006pt;}
.h8{height:49.732253pt;}
.h2{height:149.295490pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:33.927067pt;}
.x10{left:35.416667pt;}
.xe{left:37.363867pt;}
.x6{left:39.956400pt;}
.x2{left:41.151067pt;}
.x9{left:49.923200pt;}
.xd{left:69.218800pt;}
.x11{left:70.604133pt;}
.xf{left:72.518267pt;}
.x1{left:75.573200pt;}
.xc{left:99.592400pt;}
.xa{left:242.433600pt;}
.x14{left:406.981733pt;}
.x12{left:410.604133pt;}
.x5{left:415.958267pt;}
.x13{left:445.947867pt;}
.x15{left:447.290400pt;}
.x7{left:456.088533pt;}
.xb{left:503.869733pt;}
.x4{left:516.268667pt;}
.x3{left:632.971333pt;}
}




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