
    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_088f84e6bdf189af13e037c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_6b2402d757236e1d2ec96c34.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_02516c18a91fdabb1525d51a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.096191;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_d4efbf810b420fcce7b4315a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_04704742ba802797c97164e3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.896484;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_c42f471bd9a4f0c766eef36a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_06e50caf6ca2fab069ea0ca5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946857;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_bfaa39baf1531baeceed83ff.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946857;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_c84e4c52130b1f7410b62daf.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v5{vertical-align:-19.836000px;}
.v7{vertical-align:-5.472000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.836000px;}
.v2{vertical-align:22.572000px;}
.v3{vertical-align:25.992001px;}
.v6{vertical-align:28.728001px;}
.v1{vertical-align:36.936001px;}
.lsd{letter-spacing:-0.684000px;}
.ls5{letter-spacing:-0.428070px;}
.ls12{letter-spacing:-0.342000px;}
.lse{letter-spacing:-0.290130px;}
.ls3{letter-spacing:-0.214890px;}
.ls11{letter-spacing:-0.144780px;}
.ls4{letter-spacing:-0.084930px;}
.ls2{letter-spacing:-0.024510px;}
.ls1{letter-spacing:-0.007980px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.068400px;}
.lsc{letter-spacing:0.103740px;}
.ls8{letter-spacing:0.127224px;}
.ls9{letter-spacing:0.145008px;}
.lsb{letter-spacing:0.196992px;}
.ls6{letter-spacing:0.273600px;}
.lsa{letter-spacing:0.342000px;}
.lsf{letter-spacing:37.910017px;}
.ls10{letter-spacing:806.726488px;}
.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;}
}
.wsb{word-spacing:-39.672001px;}
.ws0{word-spacing:-25.650001px;}
.ws7{word-spacing:-17.373600px;}
.ws5{word-spacing:-17.168400px;}
.ws6{word-spacing:-17.100000px;}
.wsa{word-spacing:-15.835740px;}
.ws2{word-spacing:-15.732000px;}
.wsd{word-spacing:-15.587220px;}
.wsc{word-spacing:-15.441870px;}
.wse{word-spacing:-12.483000px;}
.ws9{word-spacing:-9.918000px;}
.ws4{word-spacing:-9.833070px;}
.ws3{word-spacing:-9.703110px;}
.ws8{word-spacing:-9.234000px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-3.775680px;}
._f{margin-left:-2.593177px;}
._1{margin-left:-1.195884px;}
._0{width:1.403346px;}
._3{width:3.410299px;}
._2{width:4.491098px;}
._c{width:5.839214px;}
._12{width:7.032041px;}
._5{width:8.618400px;}
._a{width:10.197324px;}
._11{width:11.201814px;}
._10{width:12.459618px;}
._16{width:13.719626px;}
._4{width:14.756845px;}
._b{width:17.367940px;}
._d{width:19.507743px;}
._14{width:20.571324px;}
._13{width:22.716757px;}
._15{width:23.912766px;}
._19{width:25.234003px;}
._1a{width:26.430704px;}
._17{width:35.428339px;}
._18{width:36.435564px;}
._7{width:456.912009px;}
._9{width:527.957938px;}
._8{width:767.083215px;}
._6{width:775.387935px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.936001px;}
.fs5{font-size:39.672001px;}
.fs6{font-size:45.828001px;}
.fs9{font-size:51.300001px;}
.fs7{font-size:56.772001px;}
.fs0{font-size:62.928001px;}
.fs3{font-size:65.664001px;}
.fs4{font-size:68.400001px;}
.fs2{font-size:73.872001px;}
.fs1{font-size:102.600002px;}
.y0{bottom:0.000000px;}
.y76{bottom:12.312004px;}
.y70{bottom:12.312006px;}
.y68{bottom:12.312008px;}
.y61{bottom:12.312010px;}
.y58{bottom:12.312013px;}
.y50{bottom:12.312015px;}
.y4a{bottom:12.312017px;}
.y44{bottom:12.312018px;}
.y7e{bottom:12.346202px;}
.y1{bottom:27.307500px;}
.y73{bottom:27.702005px;}
.y4d{bottom:27.702016px;}
.y77{bottom:28.215005px;}
.y51{bottom:28.386016px;}
.y75{bottom:31.977005px;}
.y6f{bottom:31.977006px;}
.y67{bottom:31.977008px;}
.y60{bottom:31.977010px;}
.y57{bottom:31.977014px;}
.y4f{bottom:31.977016px;}
.y49{bottom:31.977017px;}
.y43{bottom:32.005519px;}
.y7d{bottom:32.011203px;}
.y5d{bottom:37.449010px;}
.y46{bottom:37.449017px;}
.y64{bottom:37.620008px;}
.y62{bottom:37.962010px;}
.y4b{bottom:37.962017px;}
.y69{bottom:38.133008px;}
.y53{bottom:47.367014px;}
.y79{bottom:47.395503px;}
.y6b{bottom:47.409756px;}
.y59{bottom:47.880014px;}
.y7f{bottom:47.908503px;}
.y71{bottom:47.922756px;}
.y74{bottom:51.642005px;}
.y66{bottom:51.642009px;}
.y56{bottom:51.642014px;}
.y4e{bottom:51.642016px;}
.y48{bottom:51.642017px;}
.y7c{bottom:51.670503px;}
.y5f{bottom:51.670510px;}
.y6e{bottom:51.684757px;}
.y18{bottom:55.404001px;}
.y65{bottom:71.307009px;}
.y55{bottom:71.307014px;}
.y47{bottom:71.307018px;}
.y7b{bottom:71.335503px;}
.y5e{bottom:71.335511px;}
.y6d{bottom:71.349757px;}
.y17{bottom:73.701001px;}
.yad{bottom:85.329002px;}
.y80{bottom:86.355002px;}
.y7a{bottom:91.000504px;}
.y6c{bottom:91.014757px;}
.y54{bottom:91.014765px;}
.yac{bottom:103.455002px;}
.y41{bottom:110.500202px;}
.y15{bottom:111.184202px;}
.yab{bottom:121.444202px;}
.y78{bottom:127.684500px;}
.yaa{bottom:139.399203px;}
.y40{bottom:140.254203px;}
.y14{bottom:146.233503px;}
.y3f{bottom:154.270503px;}
.ya9{bottom:157.519503px;}
.y3e{bottom:168.292503px;}
.ya8{bottom:175.474504px;}
.y3d{bottom:182.485504px;}
.y13{bottom:189.496504px;}
.ya7{bottom:193.600504px;}
.y3c{bottom:210.700504px;}
.ya6{bottom:211.555504px;}
.ya5{bottom:229.510505px;}
.y12{bottom:232.588505px;}
.y72{bottom:235.272000px;}
.y3b{bottom:242.848505px;}
.ya4{bottom:247.636505px;}
.ya3{bottom:265.591505px;}
.y3a{bottom:274.996505px;}
.y11{bottom:275.851506px;}
.ya2{bottom:283.717506px;}
.ya1{bottom:301.672506px;}
.y6a{bottom:303.501000px;}
.y39{bottom:307.144506px;}
.y10{bottom:319.157256px;}
.ya0{bottom:319.670256px;}
.y9f{bottom:337.796257px;}
.y38{bottom:339.164257px;}
.y9e{bottom:355.751257px;}
.y37{bottom:360.026257px;}
.yf{bottom:362.420257px;}
.y9d{bottom:373.877257px;}
.ycb{bottom:374.561257px;}
.y36{bottom:380.717258px;}
.y9c{bottom:391.832258px;}
.y35{bottom:401.408258px;}
.yca{bottom:405.341258px;}
.ye{bottom:405.683258px;}
.y9b{bottom:409.958258px;}
.y63{bottom:411.102750px;}
.y34{bottom:422.099258px;}
.y9a{bottom:427.913259px;}
.yc9{bottom:435.266259px;}
.y33{bottom:442.961259px;}
.y99{bottom:445.868259px;}
.yd{bottom:448.775259px;}
.yc8{bottom:451.340259px;}
.y32{bottom:463.652259px;}
.y98{bottom:463.994259px;}
.yc7{bottom:467.243259px;}
.y97{bottom:481.949260px;}
.yc6{bottom:484.001260px;}
.y31{bottom:484.343260px;}
.yc{bottom:498.878260px;}
.y5c{bottom:499.167750px;}
.y96{bottom:500.075260px;}
.y30{bottom:503.324260px;}
.yc5{bottom:514.781260px;}
.y95{bottom:518.030260px;}
.y2f{bottom:518.372260px;}
.yc4{bottom:533.106761px;}
.y2e{bottom:535.329761px;}
.y94{bottom:536.013761px;}
.yb{bottom:536.526761px;}
.yc3{bottom:551.061761px;}
.y93{bottom:554.139761px;}
.y2d{bottom:556.020761px;}
.yc2{bottom:569.187761px;}
.y92{bottom:572.094761px;}
.y2c{bottom:576.711762px;}
.ya{bottom:580.644762px;}
.yc1{bottom:587.142762px;}
.y91{bottom:590.220762px;}
.y2b{bottom:595.692762px;}
.y5b{bottom:600.309762px;}
.yc0{bottom:605.097762px;}
.y90{bottom:608.175762px;}
.y2a{bottom:612.450762px;}
.y9{bottom:614.844762px;}
.ybf{bottom:623.223762px;}
.y8f{bottom:626.130763px;}
.y5a{bottom:630.576763px;}
.y29{bottom:633.312763px;}
.ybe{bottom:641.178763px;}
.y8{bottom:641.862763px;}
.y8e{bottom:644.256763px;}
.y28{bottom:652.293763px;}
.ybd{bottom:659.304763px;}
.y8d{bottom:662.211763px;}
.y27{bottom:667.341763px;}
.y52{bottom:671.906250px;}
.ybc{bottom:677.259764px;}
.y8c{bottom:680.337764px;}
.y26{bottom:684.099764px;}
.ybb{bottom:695.385764px;}
.y8b{bottom:699.489764px;}
.y25{bottom:704.790764px;}
.yba{bottom:713.340764px;}
.y8a{bottom:718.812764px;}
.y24{bottom:725.652765px;}
.yb9{bottom:731.295765px;}
.y89{bottom:736.981515px;}
.y7{bottom:741.598515px;}
.y23{bottom:746.386515px;}
.yb8{bottom:749.464515px;}
.y88{bottom:754.936515px;}
.y22{bottom:767.077515px;}
.yb7{bottom:767.419515px;}
.y6{bottom:779.218516px;}
.y4c{bottom:779.508000px;}
.yb6{bottom:785.545516px;}
.y21{bottom:787.768516px;}
.y87{bottom:789.820516px;}
.yb5{bottom:803.500516px;}
.y20{bottom:806.749516px;}
.yb4{bottom:821.455516px;}
.y1f{bottom:821.968516px;}
.y5{bottom:823.507516px;}
.y86{bottom:829.663517px;}
.y1e{bottom:838.726517px;}
.y45{bottom:847.908000px;}
.yb3{bottom:852.235517px;}
.y85{bottom:858.220517px;}
.y1d{bottom:859.417517px;}
.y4{bottom:867.625517px;}
.yb2{bottom:870.361517px;}
.y84{bottom:874.636517px;}
.y1c{bottom:880.108518px;}
.yb1{bottom:888.487518px;}
.y1b{bottom:900.799518px;}
.yb0{bottom:906.442518px;}
.y83{bottom:908.152518px;}
.y3{bottom:910.888518px;}
.y1a{bottom:921.661518px;}
.yaf{bottom:924.397518px;}
.y82{bottom:933.802519px;}
.y42{bottom:935.802000px;}
.y2{bottom:942.210019px;}
.y19{bottom:942.381019px;}
.yae{bottom:942.552019px;}
.y81{bottom:954.009019px;}
.y16{bottom:972.306019px;}
.h20{height:32.499352px;}
.h13{height:40.211386px;}
.h12{height:40.837940px;}
.h14{height:42.832829px;}
.h24{height:45.012745px;}
.h1d{height:46.557423px;}
.h15{height:47.914200px;}
.h1a{height:49.814105px;}
.h1f{height:49.952708px;}
.h1e{height:52.335353px;}
.he{height:55.215634px;}
.hf{height:55.369267px;}
.h1b{height:55.508204px;}
.hd{height:56.075978px;}
.h21{height:57.381857px;}
.h10{height:57.924247px;}
.hc{height:60.016993px;}
.h11{height:60.898712px;}
.h17{height:60.952150px;}
.h5{height:62.590009px;}
.h23{height:64.680069px;}
.h7{height:64.818353px;}
.ha{height:64.998704px;}
.h22{height:66.203386px;}
.h18{height:67.545000px;}
.h1c{height:87.073200px;}
.h16{height:87.210000px;}
.h6{height:90.025490px;}
.h9{height:90.275978px;}
.hb{height:91.428224px;}
.h8{height:94.712627px;}
.h19{height:106.909200px;}
.h1{height:1014.750000px;}
.h0{height:1014.840000px;}
.h4{height:1038.141000px;}
.h26{height:1049.250000px;}
.h25{height:1049.470500px;}
.h3{height:1092.750000px;}
.h2{height:1092.756000px;}
.w6{width:82.422000px;}
.w7{width:84.645000px;}
.w5{width:403.317750px;}
.w8{width:730.263000px;}
.w9{width:730.500000px;}
.w4{width:735.129000px;}
.w2{width:773.858550px;}
.w3{width:774.000000px;}
.w0{width:779.947500px;}
.w1{width:780.000000px;}
.x0{left:0.000000px;}
.x10{left:7.353003px;}
.x13{left:16.074012px;}
.x1{left:19.364550px;}
.x2{left:81.088202px;}
.x16{left:88.099202px;}
.x11{left:101.136750px;}
.x19{left:106.738202px;}
.x15{left:121.786202px;}
.x1a{left:132.388203px;}
.x9{left:155.638503px;}
.xf{left:184.237050px;}
.x5{left:205.912504px;}
.x17{left:227.458505px;}
.xc{left:242.207255px;}
.xa{left:250.244255px;}
.xb{left:263.240255px;}
.x7{left:267.344255px;}
.x18{left:274.868255px;}
.x6{left:276.407256px;}
.x4{left:294.191256px;}
.x14{left:355.751257px;}
.xe{left:363.617257px;}
.x3{left:367.550257px;}
.x8{left:380.033258px;}
.xd{left:518.400760px;}
.x12{left:588.253050px;}
@media print{
.v5{vertical-align:-17.632000pt;}
.v7{vertical-align:-4.864000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.632000pt;}
.v2{vertical-align:20.064000pt;}
.v3{vertical-align:23.104000pt;}
.v6{vertical-align:25.536001pt;}
.v1{vertical-align:32.832001pt;}
.lsd{letter-spacing:-0.608000pt;}
.ls5{letter-spacing:-0.380507pt;}
.ls12{letter-spacing:-0.304000pt;}
.lse{letter-spacing:-0.257893pt;}
.ls3{letter-spacing:-0.191013pt;}
.ls11{letter-spacing:-0.128693pt;}
.ls4{letter-spacing:-0.075493pt;}
.ls2{letter-spacing:-0.021787pt;}
.ls1{letter-spacing:-0.007093pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.060800pt;}
.lsc{letter-spacing:0.092213pt;}
.ls8{letter-spacing:0.113088pt;}
.ls9{letter-spacing:0.128896pt;}
.lsb{letter-spacing:0.175104pt;}
.ls6{letter-spacing:0.243200pt;}
.lsa{letter-spacing:0.304000pt;}
.lsf{letter-spacing:33.697793pt;}
.ls10{letter-spacing:717.090212pt;}
.wsb{word-spacing:-35.264001pt;}
.ws0{word-spacing:-22.800000pt;}
.ws7{word-spacing:-15.443200pt;}
.ws5{word-spacing:-15.260800pt;}
.ws6{word-spacing:-15.200000pt;}
.wsa{word-spacing:-14.076214pt;}
.ws2{word-spacing:-13.984000pt;}
.wsd{word-spacing:-13.855307pt;}
.wsc{word-spacing:-13.726107pt;}
.wse{word-spacing:-11.096000pt;}
.ws9{word-spacing:-8.816000pt;}
.ws4{word-spacing:-8.740507pt;}
.ws3{word-spacing:-8.624987pt;}
.ws8{word-spacing:-8.208000pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-3.356160pt;}
._f{margin-left:-2.305046pt;}
._1{margin-left:-1.063008pt;}
._0{width:1.247419pt;}
._3{width:3.031377pt;}
._2{width:3.992087pt;}
._c{width:5.190412pt;}
._12{width:6.250703pt;}
._5{width:7.660800pt;}
._a{width:9.064288pt;}
._11{width:9.957168pt;}
._10{width:11.075216pt;}
._16{width:12.195223pt;}
._4{width:13.117196pt;}
._b{width:15.438169pt;}
._d{width:17.340216pt;}
._14{width:18.285621pt;}
._13{width:20.192673pt;}
._15{width:21.255792pt;}
._19{width:22.430225pt;}
._1a{width:23.493960pt;}
._17{width:31.491857pt;}
._18{width:32.387168pt;}
._7{width:406.144008pt;}
._9{width:469.295945pt;}
._8{width:681.851747pt;}
._6{width:689.233720pt;}
.fs8{font-size:32.832001pt;}
.fs5{font-size:35.264001pt;}
.fs6{font-size:40.736001pt;}
.fs9{font-size:45.600001pt;}
.fs7{font-size:50.464001pt;}
.fs0{font-size:55.936001pt;}
.fs3{font-size:58.368001pt;}
.fs4{font-size:60.800001pt;}
.fs2{font-size:65.664001pt;}
.fs1{font-size:91.200002pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:10.944004pt;}
.y70{bottom:10.944005pt;}
.y68{bottom:10.944007pt;}
.y61{bottom:10.944009pt;}
.y58{bottom:10.944012pt;}
.y50{bottom:10.944014pt;}
.y4a{bottom:10.944015pt;}
.y44{bottom:10.944016pt;}
.y7e{bottom:10.974402pt;}
.y1{bottom:24.273333pt;}
.y73{bottom:24.624004pt;}
.y4d{bottom:24.624014pt;}
.y77{bottom:25.080004pt;}
.y51{bottom:25.232014pt;}
.y75{bottom:28.424004pt;}
.y6f{bottom:28.424005pt;}
.y67{bottom:28.424007pt;}
.y60{bottom:28.424009pt;}
.y57{bottom:28.424012pt;}
.y4f{bottom:28.424014pt;}
.y49{bottom:28.424015pt;}
.y43{bottom:28.449350pt;}
.y7d{bottom:28.454402pt;}
.y5d{bottom:33.288009pt;}
.y46{bottom:33.288015pt;}
.y64{bottom:33.440007pt;}
.y62{bottom:33.744009pt;}
.y4b{bottom:33.744015pt;}
.y69{bottom:33.896008pt;}
.y53{bottom:42.104012pt;}
.y79{bottom:42.129336pt;}
.y6b{bottom:42.142006pt;}
.y59{bottom:42.560012pt;}
.y7f{bottom:42.585336pt;}
.y71{bottom:42.598006pt;}
.y74{bottom:45.904005pt;}
.y66{bottom:45.904008pt;}
.y56{bottom:45.904012pt;}
.y4e{bottom:45.904014pt;}
.y48{bottom:45.904016pt;}
.y7c{bottom:45.929336pt;}
.y5f{bottom:45.929343pt;}
.y6e{bottom:45.942006pt;}
.y18{bottom:49.248001pt;}
.y65{bottom:63.384008pt;}
.y55{bottom:63.384013pt;}
.y47{bottom:63.384016pt;}
.y7b{bottom:63.409336pt;}
.y5e{bottom:63.409343pt;}
.y6d{bottom:63.422006pt;}
.y17{bottom:65.512001pt;}
.yad{bottom:75.848002pt;}
.y80{bottom:76.760002pt;}
.y7a{bottom:80.889337pt;}
.y6c{bottom:80.902007pt;}
.y54{bottom:80.902013pt;}
.yac{bottom:91.960002pt;}
.y41{bottom:98.222402pt;}
.y15{bottom:98.830402pt;}
.yab{bottom:107.950402pt;}
.y78{bottom:113.497333pt;}
.yaa{bottom:123.910402pt;}
.y40{bottom:124.670402pt;}
.y14{bottom:129.985336pt;}
.y3f{bottom:137.129336pt;}
.ya9{bottom:140.017336pt;}
.y3e{bottom:149.593336pt;}
.ya8{bottom:155.977336pt;}
.y3d{bottom:162.209337pt;}
.y13{bottom:168.441337pt;}
.ya7{bottom:172.089337pt;}
.y3c{bottom:187.289337pt;}
.ya6{bottom:188.049337pt;}
.ya5{bottom:204.009337pt;}
.y12{bottom:206.745337pt;}
.y72{bottom:209.130667pt;}
.y3b{bottom:215.865338pt;}
.ya4{bottom:220.121338pt;}
.ya3{bottom:236.081338pt;}
.y3a{bottom:244.441338pt;}
.y11{bottom:245.201338pt;}
.ya2{bottom:252.193338pt;}
.ya1{bottom:268.153339pt;}
.y6a{bottom:269.778667pt;}
.y39{bottom:273.017339pt;}
.y10{bottom:283.695339pt;}
.ya0{bottom:284.151339pt;}
.y9f{bottom:300.263339pt;}
.y38{bottom:301.479339pt;}
.y9e{bottom:316.223340pt;}
.y37{bottom:320.023340pt;}
.yf{bottom:322.151340pt;}
.y9d{bottom:332.335340pt;}
.ycb{bottom:332.943340pt;}
.y36{bottom:338.415340pt;}
.y9c{bottom:348.295340pt;}
.y35{bottom:356.807340pt;}
.yca{bottom:360.303341pt;}
.ye{bottom:360.607341pt;}
.y9b{bottom:364.407341pt;}
.y63{bottom:365.424667pt;}
.y34{bottom:375.199341pt;}
.y9a{bottom:380.367341pt;}
.yc9{bottom:386.903341pt;}
.y33{bottom:393.743341pt;}
.y99{bottom:396.327341pt;}
.yd{bottom:398.911341pt;}
.yc8{bottom:401.191341pt;}
.y32{bottom:412.135342pt;}
.y98{bottom:412.439342pt;}
.yc7{bottom:415.327342pt;}
.y97{bottom:428.399342pt;}
.yc6{bottom:430.223342pt;}
.y31{bottom:430.527342pt;}
.yc{bottom:443.447342pt;}
.y5c{bottom:443.704667pt;}
.y96{bottom:444.511342pt;}
.y30{bottom:447.399342pt;}
.yc5{bottom:457.583342pt;}
.y95{bottom:460.471343pt;}
.y2f{bottom:460.775343pt;}
.yc4{bottom:473.872676pt;}
.y2e{bottom:475.848676pt;}
.y94{bottom:476.456676pt;}
.yb{bottom:476.912676pt;}
.yc3{bottom:489.832676pt;}
.y93{bottom:492.568677pt;}
.y2d{bottom:494.240677pt;}
.yc2{bottom:505.944677pt;}
.y92{bottom:508.528677pt;}
.y2c{bottom:512.632677pt;}
.ya{bottom:516.128677pt;}
.yc1{bottom:521.904677pt;}
.y91{bottom:524.640677pt;}
.y2b{bottom:529.504677pt;}
.y5b{bottom:533.608677pt;}
.yc0{bottom:537.864677pt;}
.y90{bottom:540.600677pt;}
.y2a{bottom:544.400678pt;}
.y9{bottom:546.528678pt;}
.ybf{bottom:553.976678pt;}
.y8f{bottom:556.560678pt;}
.y5a{bottom:560.512678pt;}
.y29{bottom:562.944678pt;}
.ybe{bottom:569.936678pt;}
.y8{bottom:570.544678pt;}
.y8e{bottom:572.672678pt;}
.y28{bottom:579.816678pt;}
.ybd{bottom:586.048678pt;}
.y8d{bottom:588.632678pt;}
.y27{bottom:593.192679pt;}
.y52{bottom:597.250000pt;}
.ybc{bottom:602.008679pt;}
.y8c{bottom:604.744679pt;}
.y26{bottom:608.088679pt;}
.ybb{bottom:618.120679pt;}
.y8b{bottom:621.768679pt;}
.y25{bottom:626.480679pt;}
.yba{bottom:634.080679pt;}
.y8a{bottom:638.944679pt;}
.y24{bottom:645.024680pt;}
.yb9{bottom:650.040680pt;}
.y89{bottom:655.094680pt;}
.y7{bottom:659.198680pt;}
.y23{bottom:663.454680pt;}
.yb8{bottom:666.190680pt;}
.y88{bottom:671.054680pt;}
.y22{bottom:681.846680pt;}
.yb7{bottom:682.150680pt;}
.y6{bottom:692.638681pt;}
.y4c{bottom:692.896000pt;}
.yb6{bottom:698.262681pt;}
.y21{bottom:700.238681pt;}
.y87{bottom:702.062681pt;}
.yb5{bottom:714.222681pt;}
.y20{bottom:717.110681pt;}
.yb4{bottom:730.182681pt;}
.y1f{bottom:730.638681pt;}
.y5{bottom:732.006681pt;}
.y86{bottom:737.478681pt;}
.y1e{bottom:745.534682pt;}
.y45{bottom:753.696000pt;}
.yb3{bottom:757.542682pt;}
.y85{bottom:762.862682pt;}
.y1d{bottom:763.926682pt;}
.y4{bottom:771.222682pt;}
.yb2{bottom:773.654682pt;}
.y84{bottom:777.454682pt;}
.y1c{bottom:782.318682pt;}
.yb1{bottom:789.766682pt;}
.y1b{bottom:800.710683pt;}
.yb0{bottom:805.726683pt;}
.y83{bottom:807.246683pt;}
.y3{bottom:809.678683pt;}
.y1a{bottom:819.254683pt;}
.yaf{bottom:821.686683pt;}
.y82{bottom:830.046683pt;}
.y42{bottom:831.824000pt;}
.y2{bottom:837.520017pt;}
.y19{bottom:837.672017pt;}
.yae{bottom:837.824017pt;}
.y81{bottom:848.008017pt;}
.y16{bottom:864.272017pt;}
.h20{height:28.888313pt;}
.h13{height:35.743454pt;}
.h12{height:36.300391pt;}
.h14{height:38.073626pt;}
.h24{height:40.011329pt;}
.h1d{height:41.384376pt;}
.h15{height:42.590400pt;}
.h1a{height:44.279204pt;}
.h1f{height:44.402407pt;}
.h1e{height:46.520313pt;}
.he{height:49.080563pt;}
.hf{height:49.217126pt;}
.h1b{height:49.340626pt;}
.hd{height:49.845313pt;}
.h21{height:51.006095pt;}
.h10{height:51.488220pt;}
.hc{height:53.348439pt;}
.h11{height:54.132189pt;}
.h17{height:54.179689pt;}
.h5{height:55.635564pt;}
.h23{height:57.493395pt;}
.h7{height:57.616314pt;}
.ha{height:57.776626pt;}
.h22{height:58.847454pt;}
.h18{height:60.040000pt;}
.h1c{height:77.398400pt;}
.h16{height:77.520000pt;}
.h6{height:80.022658pt;}
.h9{height:80.245314pt;}
.hb{height:81.269533pt;}
.h8{height:84.189002pt;}
.h19{height:95.030400pt;}
.h1{height:902.000000pt;}
.h0{height:902.080000pt;}
.h4{height:922.792000pt;}
.h26{height:932.666667pt;}
.h25{height:932.862667pt;}
.h3{height:971.333333pt;}
.h2{height:971.338667pt;}
.w6{width:73.264000pt;}
.w7{width:75.240000pt;}
.w5{width:358.504667pt;}
.w8{width:649.122667pt;}
.w9{width:649.333333pt;}
.w4{width:653.448000pt;}
.w2{width:687.874267pt;}
.w3{width:688.000000pt;}
.w0{width:693.286667pt;}
.w1{width:693.333333pt;}
.x0{left:0.000000pt;}
.x10{left:6.536003pt;}
.x13{left:14.288010pt;}
.x1{left:17.212933pt;}
.x2{left:72.078401pt;}
.x16{left:78.310402pt;}
.x11{left:89.899333pt;}
.x19{left:94.878402pt;}
.x15{left:108.254402pt;}
.x1a{left:117.678402pt;}
.x9{left:138.345336pt;}
.xf{left:163.766267pt;}
.x5{left:183.033337pt;}
.x17{left:202.185337pt;}
.xc{left:215.295338pt;}
.xa{left:222.439338pt;}
.xb{left:233.991338pt;}
.x7{left:237.639338pt;}
.x18{left:244.327338pt;}
.x6{left:245.695338pt;}
.x4{left:261.503339pt;}
.x14{left:316.223340pt;}
.xe{left:323.215340pt;}
.x3{left:326.711340pt;}
.x8{left:337.807340pt;}
.xd{left:460.800676pt;}
.x12{left:522.891600pt;}
}




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