
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d5b7e1ba104592f4a0700237.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_a32a4c83ad0fe7c39074db1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_da63b6655b128b9996ef839f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_7f1c489dcc4bb1af4afc2b92.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.759766;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_5f1d0c1fff94fb222f9378d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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);}
.v1{vertical-align:-17.999999px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.048960px;}
.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;}
}
.ws3{word-spacing:-28.350000px;}
.ws7{word-spacing:-20.302734px;}
.ws2{word-spacing:-18.984374px;}
.ws8{word-spacing:-16.242188px;}
.ws4{word-spacing:-14.238281px;}
.ws1{word-spacing:-12.656249px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:441.210941px;}
.ws6{word-spacing:525.023438px;}
._3d{margin-left:-18.464737px;}
._6{margin-left:-8.257319px;}
._4{margin-left:-7.149876px;}
._5{margin-left:-6.013369px;}
._2{margin-left:-4.702148px;}
._1{margin-left:-3.585064px;}
._23{margin-left:-2.285156px;}
._0{margin-left:-1.230467px;}
._e{width:1.273917px;}
._3{width:2.333492px;}
._7{width:3.862449px;}
._b{width:5.512458px;}
._d{width:6.862543px;}
._f{width:8.278125px;}
._c{width:10.274416px;}
._10{width:11.975915px;}
._11{width:13.673180px;}
._13{width:14.938180px;}
._15{width:16.069858px;}
._2a{width:17.704673px;}
._27{width:20.671872px;}
._29{width:21.832512px;}
._9{width:23.107198px;}
._a{width:24.702388px;}
._14{width:25.722025px;}
._8{width:26.972948px;}
._34{width:28.270019px;}
._25{width:29.601560px;}
._26{width:31.047915px;}
._2c{width:32.056182px;}
._2d{width:33.796416px;}
._2f{width:35.601536px;}
._31{width:36.604119px;}
._32{width:37.611281px;}
._2b{width:38.946120px;}
._12{width:40.507000px;}
._33{width:42.164016px;}
._35{width:43.330079px;}
._36{width:44.753895px;}
._3c{width:45.791024px;}
._3b{width:47.039059px;}
._28{width:49.148436px;}
._18{width:51.173423px;}
._37{width:53.320287px;}
._3a{width:55.332362px;}
._2e{width:56.728110px;}
._38{width:70.092771px;}
._39{width:71.358393px;}
._3e{width:72.562497px;}
._30{width:85.552731px;}
._1a{width:264.638683px;}
._19{width:297.421862px;}
._20{width:304.998056px;}
._21{width:321.352762px;}
._1c{width:330.521470px;}
._1f{width:344.935533px;}
._1b{width:360.544884px;}
._1e{width:396.404279px;}
._17{width:488.860795px;}
._22{width:599.853490px;}
._24{width:616.130811px;}
._16{width:644.326168px;}
._1d{width:1648.546783px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,8,8);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:28.350000px;}
.fs2{font-size:35.999999px;}
.fs9{font-size:40.499998px;}
.fs4{font-size:44.999998px;}
.fs7{font-size:47.249998px;}
.fsb{font-size:47.520000px;}
.fs1{font-size:53.999998px;}
.fsa{font-size:59.399997px;}
.fs3{font-size:66.599998px;}
.fs6{font-size:67.499997px;}
.fs5{font-size:91.799996px;}
.fsc{font-size:99.900000px;}
.fs0{font-size:107.999996px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.049955px;}
.y36{bottom:52.330066px;}
.yf7{bottom:84.955064px;}
.y35{bottom:86.080064px;}
.y34{bottom:95.080064px;}
.yf6{bottom:105.205064px;}
.ye7{bottom:109.705063px;}
.y33{bottom:115.330063px;}
.yf5{bottom:125.455063px;}
.y32{bottom:126.580063px;}
.ye6{bottom:129.955063px;}
.y60{bottom:132.205062px;}
.y8f{bottom:134.455062px;}
.yfa{bottom:141.205062px;}
.yab{bottom:145.705062px;}
.y31{bottom:149.080062px;}
.yd3{bottom:150.205062px;}
.y5f{bottom:152.455062px;}
.y8e{bottom:154.705062px;}
.yf4{bottom:159.205061px;}
.y30{bottom:160.330061px;}
.yf9{bottom:161.455061px;}
.yaa{bottom:165.955061px;}
.yd2{bottom:170.455061px;}
.y5e{bottom:172.705061px;}
.y8d{bottom:174.955061px;}
.yf8{bottom:181.705060px;}
.ya9{bottom:186.205060px;}
.yd1{bottom:190.705060px;}
.y5d{bottom:192.955060px;}
.y8c{bottom:195.205060px;}
.yf3{bottom:201.955060px;}
.ya8{bottom:206.455059px;}
.yd0{bottom:210.955059px;}
.y2f{bottom:213.205059px;}
.y8b{bottom:215.455059px;}
.yf2{bottom:222.205059px;}
.ya7{bottom:226.705059px;}
.ycf{bottom:231.205058px;}
.y2e{bottom:233.455058px;}
.y8a{bottom:235.705058px;}
.yf1{bottom:242.455058px;}
.ya6{bottom:246.955058px;}
.yce{bottom:251.455058px;}
.y2d{bottom:253.705057px;}
.y89{bottom:255.955057px;}
.yf0{bottom:262.705057px;}
.ya5{bottom:267.205057px;}
.ycd{bottom:271.705057px;}
.y2c{bottom:273.955057px;}
.y88{bottom:276.205056px;}
.yef{bottom:282.955056px;}
.ya4{bottom:287.455056px;}
.ycc{bottom:291.955056px;}
.y2b{bottom:294.205056px;}
.y87{bottom:296.455056px;}
.yee{bottom:303.205055px;}
.ya3{bottom:307.705055px;}
.ycb{bottom:312.205055px;}
.y2a{bottom:314.455055px;}
.y86{bottom:316.705055px;}
.ye5{bottom:323.455055px;}
.ya2{bottom:327.955054px;}
.yca{bottom:332.455054px;}
.y5c{bottom:334.705054px;}
.y85{bottom:336.955054px;}
.ye4{bottom:343.705054px;}
.y29{bottom:344.830054px;}
.ya1{bottom:348.205053px;}
.yc9{bottom:352.705053px;}
.y5b{bottom:354.955053px;}
.y84{bottom:357.205053px;}
.ye3{bottom:363.955053px;}
.ya0{bottom:368.455053px;}
.yc8{bottom:372.955052px;}
.y5a{bottom:375.205052px;}
.y83{bottom:377.455052px;}
.ye2{bottom:384.205052px;}
.y9f{bottom:388.705052px;}
.y28{bottom:392.080052px;}
.yc7{bottom:393.205052px;}
.y59{bottom:395.455052px;}
.y82{bottom:397.705051px;}
.ye1{bottom:404.455051px;}
.y9e{bottom:408.955051px;}
.y27{bottom:412.330051px;}
.yc6{bottom:413.455051px;}
.y58{bottom:415.705051px;}
.y81{bottom:417.955051px;}
.ye0{bottom:424.705050px;}
.y9d{bottom:429.205050px;}
.yc5{bottom:433.705050px;}
.y57{bottom:435.955050px;}
.y80{bottom:438.205050px;}
.y26{bottom:443.830050px;}
.ydf{bottom:444.955049px;}
.y9c{bottom:449.455049px;}
.yc4{bottom:453.955049px;}
.y56{bottom:456.205049px;}
.y7f{bottom:458.455049px;}
.y25{bottom:464.080049px;}
.yde{bottom:465.205049px;}
.y9b{bottom:469.705048px;}
.y55{bottom:476.455048px;}
.y24{bottom:484.330048px;}
.yc3{bottom:485.455048px;}
.y7e{bottom:489.955048px;}
.y54{bottom:496.705047px;}
.y23{bottom:504.580047px;}
.yc2{bottom:505.705047px;}
.y7d{bottom:510.205047px;}
.yed{bottom:516.955046px;}
.y108{bottom:523.705046px;}
.y22{bottom:524.830046px;}
.yc1{bottom:525.955046px;}
.y53{bottom:530.455046px;}
.yec{bottom:537.205046px;}
.y107{bottom:543.955045px;}
.y21{bottom:545.080045px;}
.yc0{bottom:546.205045px;}
.y7c{bottom:550.705045px;}
.yeb{bottom:557.455045px;}
.y20{bottom:565.330044px;}
.ybf{bottom:566.455044px;}
.y7b{bottom:570.955044px;}
.y52{bottom:573.205044px;}
.y106{bottom:575.455044px;}
.yea{bottom:577.705044px;}
.y1f{bottom:585.580044px;}
.ybe{bottom:586.705044px;}
.y7a{bottom:591.205043px;}
.y51{bottom:593.455043px;}
.y105{bottom:595.705043px;}
.ye9{bottom:597.955043px;}
.y1e{bottom:605.830043px;}
.ybd{bottom:606.955043px;}
.y79{bottom:611.455043px;}
.y50{bottom:613.705042px;}
.ye8{bottom:618.205042px;}
.y1d{bottom:626.080042px;}
.ybc{bottom:627.205042px;}
.y78{bottom:631.705042px;}
.y4f{bottom:633.955042px;}
.ydd{bottom:638.455041px;}
.y1c{bottom:646.330041px;}
.ybb{bottom:647.455041px;}
.y77{bottom:651.955041px;}
.y4e{bottom:654.205041px;}
.ydc{bottom:658.705041px;}
.y1b{bottom:666.580040px;}
.yba{bottom:667.705040px;}
.y76{bottom:672.205040px;}
.y4d{bottom:674.455040px;}
.ydb{bottom:678.955040px;}
.y1a{bottom:686.830039px;}
.yb9{bottom:687.955039px;}
.y75{bottom:692.455039px;}
.y4c{bottom:694.705039px;}
.yda{bottom:699.205039px;}
.y19{bottom:707.080039px;}
.yb8{bottom:708.205038px;}
.y74{bottom:712.705038px;}
.y4b{bottom:714.955038px;}
.yd9{bottom:719.455038px;}
.y18{bottom:727.330038px;}
.yb7{bottom:728.455038px;}
.y104{bottom:730.705038px;}
.y73{bottom:732.955037px;}
.y4a{bottom:735.205037px;}
.yd8{bottom:739.705037px;}
.y17{bottom:747.580037px;}
.yb6{bottom:748.705037px;}
.y103{bottom:750.955037px;}
.y72{bottom:753.205037px;}
.y49{bottom:755.455037px;}
.yd7{bottom:759.955036px;}
.y16{bottom:767.830036px;}
.yb5{bottom:768.955036px;}
.y48{bottom:775.705036px;}
.yd6{bottom:780.205035px;}
.y102{bottom:782.455035px;}
.y9a{bottom:784.705035px;}
.y71{bottom:786.955035px;}
.y15{bottom:788.080035px;}
.yb4{bottom:789.205035px;}
.y47{bottom:795.955035px;}
.yd5{bottom:800.455035px;}
.y101{bottom:802.705035px;}
.y99{bottom:804.955034px;}
.y14{bottom:808.330034px;}
.yb3{bottom:809.455034px;}
.y46{bottom:816.205034px;}
.yd4{bottom:820.705034px;}
.y98{bottom:825.205034px;}
.y13{bottom:828.580033px;}
.y70{bottom:829.705033px;}
.y100{bottom:834.205033px;}
.y45{bottom:836.455033px;}
.yb2{bottom:840.955033px;}
.y97{bottom:845.455033px;}
.y12{bottom:848.830033px;}
.y6f{bottom:849.955033px;}
.yff{bottom:854.455032px;}
.y44{bottom:856.705032px;}
.yb1{bottom:861.205032px;}
.y96{bottom:865.705032px;}
.y11{bottom:869.080032px;}
.y6e{bottom:870.205032px;}
.yfe{bottom:874.705032px;}
.y43{bottom:876.955031px;}
.yb0{bottom:881.455031px;}
.y95{bottom:885.955031px;}
.y10{bottom:889.330031px;}
.y6d{bottom:890.455031px;}
.y42{bottom:897.205031px;}
.yaf{bottom:901.705030px;}
.y94{bottom:906.205030px;}
.yf{bottom:909.580030px;}
.y6c{bottom:910.705030px;}
.y41{bottom:917.455030px;}
.yae{bottom:921.955030px;}
.yfd{bottom:926.455029px;}
.y6b{bottom:930.955029px;}
.y40{bottom:937.705029px;}
.y93{bottom:939.955029px;}
.yad{bottom:942.205029px;}
.yfc{bottom:946.705029px;}
.y6a{bottom:951.205028px;}
.ye{bottom:954.580028px;}
.y3f{bottom:957.955028px;}
.yac{bottom:962.455028px;}
.y69{bottom:971.455028px;}
.yd{bottom:975.955027px;}
.y3e{bottom:978.205027px;}
.yfb{bottom:980.455027px;}
.y92{bottom:982.705027px;}
.y68{bottom:991.705027px;}
.y3d{bottom:998.455026px;}
.yb{bottom:1000.705026px;}
.y91{bottom:1002.955026px;}
.yc{bottom:1007.455026px;}
.y3c{bottom:1018.705026px;}
.y67{bottom:1023.205025px;}
.ya{bottom:1033.330025px;}
.y3b{bottom:1038.955025px;}
.y66{bottom:1043.455025px;}
.y3a{bottom:1059.205024px;}
.y9{bottom:1061.455024px;}
.y65{bottom:1063.705024px;}
.y39{bottom:1079.455023px;}
.y64{bottom:1083.955023px;}
.y38{bottom:1099.705022px;}
.y63{bottom:1104.205022px;}
.y4{bottom:1116.580021px;}
.y62{bottom:1124.455021px;}
.y8{bottom:1126.705021px;}
.y7{bottom:1131.205021px;}
.y37{bottom:1133.455021px;}
.y3{bottom:1143.580020px;}
.y61{bottom:1144.705020px;}
.y6{bottom:1157.080020px;}
.y2{bottom:1177.330019px;}
.y90{bottom:1198.705018px;}
.y5{bottom:1205.455018px;}
.hb{height:21.539355px;}
.h5{height:27.527343px;}
.hc{height:30.968260px;}
.ha{height:36.129637px;}
.hf{height:36.336094px;}
.h4{height:41.291014px;}
.h7{height:42.749998px;}
.hd{height:45.420115px;}
.he{height:56.429997px;}
.h6{height:63.269998px;}
.h9{height:64.124997px;}
.h8{height:87.209996px;}
.h10{height:94.905000px;}
.h3{height:102.599996px;}
.h2{height:1262.830015px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1e{left:65.179685px;}
.x5{left:71.279294px;}
.x6{left:78.152340px;}
.x20{left:80.613278px;}
.x4{left:84.076168px;}
.x10{left:92.074215px;}
.xd{left:94.324215px;}
.x12{left:100.037105px;}
.xe{left:102.199214px;}
.x14{left:104.343746px;}
.x13{left:125.314448px;}
.x16{left:138.568354px;}
.x15{left:140.660150px;}
.xf{left:166.183587px;}
.x1{left:232.558584px;}
.x17{left:240.486324px;}
.x3{left:319.359362px;}
.x18{left:334.265611px;}
.xc{left:338.009757px;}
.x11{left:381.550765px;}
.x2{left:391.113265px;}
.x9{left:396.597640px;}
.xa{left:416.408191px;}
.x22{left:446.607409px;}
.xb{left:460.001940px;}
.x1f{left:469.107408px;}
.x19{left:524.179666px;}
.x1a{left:527.994124px;}
.x1b{left:538.558571px;}
.x1c{left:543.480446px;}
.x1d{left:554.044904px;}
.x8{left:701.437471px;}
.x7{left:741.058563px;}
.x21{left:811.160122px;}
@media print{
.v1{vertical-align:-15.999999pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.043520pt;}
.ws3{word-spacing:-25.200000pt;}
.ws7{word-spacing:-18.046874pt;}
.ws2{word-spacing:-16.874999pt;}
.ws8{word-spacing:-14.437500pt;}
.ws4{word-spacing:-12.656249pt;}
.ws1{word-spacing:-11.250000pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:392.187503pt;}
.ws6{word-spacing:466.687501pt;}
._3d{margin-left:-16.413099pt;}
._6{margin-left:-7.339839pt;}
._4{margin-left:-6.355445pt;}
._5{margin-left:-5.345217pt;}
._2{margin-left:-4.179687pt;}
._1{margin-left:-3.186724pt;}
._23{margin-left:-2.031250pt;}
._0{margin-left:-1.093748pt;}
._e{width:1.132370pt;}
._3{width:2.074215pt;}
._7{width:3.433288pt;}
._b{width:4.899963pt;}
._d{width:6.100038pt;}
._f{width:7.358333pt;}
._c{width:9.132815pt;}
._10{width:10.645257pt;}
._11{width:12.153937pt;}
._13{width:13.278382pt;}
._15{width:14.284318pt;}
._2a{width:15.737487pt;}
._27{width:18.374998pt;}
._29{width:19.406677pt;}
._9{width:20.539731pt;}
._a{width:21.957678pt;}
._14{width:22.864023pt;}
._8{width:23.975954pt;}
._34{width:25.128906pt;}
._25{width:26.312498pt;}
._26{width:27.598147pt;}
._2c{width:28.494384pt;}
._2d{width:30.041259pt;}
._2f{width:31.645810pt;}
._31{width:32.536995pt;}
._32{width:33.432250pt;}
._2b{width:34.618773pt;}
._12{width:36.006222pt;}
._33{width:37.479125pt;}
._35{width:38.515626pt;}
._36{width:39.781240pt;}
._3c{width:40.703133pt;}
._3b{width:41.812497pt;}
._28{width:43.687499pt;}
._18{width:45.487487pt;}
._37{width:47.395811pt;}
._3a{width:49.184322pt;}
._2e{width:50.424987pt;}
._38{width:62.304686pt;}
._39{width:63.429683pt;}
._3e{width:64.499997pt;}
._30{width:76.046872pt;}
._1a{width:235.234385pt;}
._19{width:264.374989pt;}
._20{width:271.109383pt;}
._21{width:285.646899pt;}
._1c{width:293.796863pt;}
._1f{width:306.609362pt;}
._1b{width:320.484342pt;}
._1e{width:352.359359pt;}
._17{width:434.542929pt;}
._22{width:533.203103pt;}
._24{width:547.671832pt;}
._16{width:572.734371pt;}
._1d{width:1465.374918pt;}
.fs8{font-size:25.200000pt;}
.fs2{font-size:31.999999pt;}
.fs9{font-size:35.999999pt;}
.fs4{font-size:39.999998pt;}
.fs7{font-size:41.999998pt;}
.fsb{font-size:42.240000pt;}
.fs1{font-size:47.999998pt;}
.fsa{font-size:52.799997pt;}
.fs3{font-size:59.199998pt;}
.fs6{font-size:59.999998pt;}
.fs5{font-size:81.599997pt;}
.fsc{font-size:88.800000pt;}
.fs0{font-size:95.999996pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.044404pt;}
.y36{bottom:46.515614pt;}
.yf7{bottom:75.515613pt;}
.y35{bottom:76.515613pt;}
.y34{bottom:84.515612pt;}
.yf6{bottom:93.515612pt;}
.ye7{bottom:97.515612pt;}
.y33{bottom:102.515612pt;}
.yf5{bottom:111.515611pt;}
.y32{bottom:112.515611pt;}
.ye6{bottom:115.515611pt;}
.y60{bottom:117.515611pt;}
.y8f{bottom:119.515611pt;}
.yfa{bottom:125.515611pt;}
.yab{bottom:129.515611pt;}
.y31{bottom:132.515610pt;}
.yd3{bottom:133.515610pt;}
.y5f{bottom:135.515610pt;}
.y8e{bottom:137.515610pt;}
.yf4{bottom:141.515610pt;}
.y30{bottom:142.515610pt;}
.yf9{bottom:143.515610pt;}
.yaa{bottom:147.515610pt;}
.yd2{bottom:151.515610pt;}
.y5e{bottom:153.515610pt;}
.y8d{bottom:155.515610pt;}
.yf8{bottom:161.515609pt;}
.ya9{bottom:165.515609pt;}
.yd1{bottom:169.515609pt;}
.y5d{bottom:171.515609pt;}
.y8c{bottom:173.515609pt;}
.yf3{bottom:179.515609pt;}
.ya8{bottom:183.515608pt;}
.yd0{bottom:187.515608pt;}
.y2f{bottom:189.515608pt;}
.y8b{bottom:191.515608pt;}
.yf2{bottom:197.515608pt;}
.ya7{bottom:201.515608pt;}
.ycf{bottom:205.515607pt;}
.y2e{bottom:207.515607pt;}
.y8a{bottom:209.515607pt;}
.yf1{bottom:215.515607pt;}
.ya6{bottom:219.515607pt;}
.yce{bottom:223.515607pt;}
.y2d{bottom:225.515607pt;}
.y89{bottom:227.515607pt;}
.yf0{bottom:233.515606pt;}
.ya5{bottom:237.515606pt;}
.ycd{bottom:241.515606pt;}
.y2c{bottom:243.515606pt;}
.y88{bottom:245.515606pt;}
.yef{bottom:251.515606pt;}
.ya4{bottom:255.515605pt;}
.ycc{bottom:259.515605pt;}
.y2b{bottom:261.515605pt;}
.y87{bottom:263.515605pt;}
.yee{bottom:269.515605pt;}
.ya3{bottom:273.515605pt;}
.ycb{bottom:277.515604pt;}
.y2a{bottom:279.515604pt;}
.y86{bottom:281.515604pt;}
.ye5{bottom:287.515604pt;}
.ya2{bottom:291.515604pt;}
.yca{bottom:295.515604pt;}
.y5c{bottom:297.515604pt;}
.y85{bottom:299.515604pt;}
.ye4{bottom:305.515603pt;}
.y29{bottom:306.515603pt;}
.ya1{bottom:309.515603pt;}
.yc9{bottom:313.515603pt;}
.y5b{bottom:315.515603pt;}
.y84{bottom:317.515603pt;}
.ye3{bottom:323.515603pt;}
.ya0{bottom:327.515602pt;}
.yc8{bottom:331.515602pt;}
.y5a{bottom:333.515602pt;}
.y83{bottom:335.515602pt;}
.ye2{bottom:341.515602pt;}
.y9f{bottom:345.515602pt;}
.y28{bottom:348.515601pt;}
.yc7{bottom:349.515601pt;}
.y59{bottom:351.515601pt;}
.y82{bottom:353.515601pt;}
.ye1{bottom:359.515601pt;}
.y9e{bottom:363.515601pt;}
.y27{bottom:366.515601pt;}
.yc6{bottom:367.515601pt;}
.y58{bottom:369.515601pt;}
.y81{bottom:371.515601pt;}
.ye0{bottom:377.515600pt;}
.y9d{bottom:381.515600pt;}
.yc5{bottom:385.515600pt;}
.y57{bottom:387.515600pt;}
.y80{bottom:389.515600pt;}
.y26{bottom:394.515600pt;}
.ydf{bottom:395.515600pt;}
.y9c{bottom:399.515599pt;}
.yc4{bottom:403.515599pt;}
.y56{bottom:405.515599pt;}
.y7f{bottom:407.515599pt;}
.y25{bottom:412.515599pt;}
.yde{bottom:413.515599pt;}
.y9b{bottom:417.515599pt;}
.y55{bottom:423.515598pt;}
.y24{bottom:430.515598pt;}
.yc3{bottom:431.515598pt;}
.y7e{bottom:435.515598pt;}
.y54{bottom:441.515598pt;}
.y23{bottom:448.515597pt;}
.yc2{bottom:449.515597pt;}
.y7d{bottom:453.515597pt;}
.yed{bottom:459.515597pt;}
.y108{bottom:465.515597pt;}
.y22{bottom:466.515597pt;}
.yc1{bottom:467.515597pt;}
.y53{bottom:471.515596pt;}
.yec{bottom:477.515596pt;}
.y107{bottom:483.515596pt;}
.y21{bottom:484.515596pt;}
.yc0{bottom:485.515596pt;}
.y7c{bottom:489.515596pt;}
.yeb{bottom:495.515595pt;}
.y20{bottom:502.515595pt;}
.ybf{bottom:503.515595pt;}
.y7b{bottom:507.515595pt;}
.y52{bottom:509.515595pt;}
.y106{bottom:511.515595pt;}
.yea{bottom:513.515595pt;}
.y1f{bottom:520.515594pt;}
.ybe{bottom:521.515594pt;}
.y7a{bottom:525.515594pt;}
.y51{bottom:527.515594pt;}
.y105{bottom:529.515594pt;}
.ye9{bottom:531.515594pt;}
.y1e{bottom:538.515594pt;}
.ybd{bottom:539.515594pt;}
.y79{bottom:543.515593pt;}
.y50{bottom:545.515593pt;}
.ye8{bottom:549.515593pt;}
.y1d{bottom:556.515593pt;}
.ybc{bottom:557.515593pt;}
.y78{bottom:561.515593pt;}
.y4f{bottom:563.515593pt;}
.ydd{bottom:567.515592pt;}
.y1c{bottom:574.515592pt;}
.ybb{bottom:575.515592pt;}
.y77{bottom:579.515592pt;}
.y4e{bottom:581.515592pt;}
.ydc{bottom:585.515592pt;}
.y1b{bottom:592.515591pt;}
.yba{bottom:593.515591pt;}
.y76{bottom:597.515591pt;}
.y4d{bottom:599.515591pt;}
.ydb{bottom:603.515591pt;}
.y1a{bottom:610.515591pt;}
.yb9{bottom:611.515591pt;}
.y75{bottom:615.515590pt;}
.y4c{bottom:617.515590pt;}
.yda{bottom:621.515590pt;}
.y19{bottom:628.515590pt;}
.yb8{bottom:629.515590pt;}
.y74{bottom:633.515590pt;}
.y4b{bottom:635.515590pt;}
.yd9{bottom:639.515589pt;}
.y18{bottom:646.515589pt;}
.yb7{bottom:647.515589pt;}
.y104{bottom:649.515589pt;}
.y73{bottom:651.515589pt;}
.y4a{bottom:653.515589pt;}
.yd8{bottom:657.515589pt;}
.y17{bottom:664.515588pt;}
.yb6{bottom:665.515588pt;}
.y103{bottom:667.515588pt;}
.y72{bottom:669.515588pt;}
.y49{bottom:671.515588pt;}
.yd7{bottom:675.515588pt;}
.y16{bottom:682.515588pt;}
.yb5{bottom:683.515588pt;}
.y48{bottom:689.515587pt;}
.yd6{bottom:693.515587pt;}
.y102{bottom:695.515587pt;}
.y9a{bottom:697.515587pt;}
.y71{bottom:699.515587pt;}
.y15{bottom:700.515587pt;}
.yb4{bottom:701.515587pt;}
.y47{bottom:707.515587pt;}
.yd5{bottom:711.515586pt;}
.y101{bottom:713.515586pt;}
.y99{bottom:715.515586pt;}
.y14{bottom:718.515586pt;}
.yb3{bottom:719.515586pt;}
.y46{bottom:725.515586pt;}
.yd4{bottom:729.515586pt;}
.y98{bottom:733.515585pt;}
.y13{bottom:736.515585pt;}
.y70{bottom:737.515585pt;}
.y100{bottom:741.515585pt;}
.y45{bottom:743.515585pt;}
.yb2{bottom:747.515585pt;}
.y97{bottom:751.515585pt;}
.y12{bottom:754.515585pt;}
.y6f{bottom:755.515585pt;}
.yff{bottom:759.515584pt;}
.y44{bottom:761.515584pt;}
.yb1{bottom:765.515584pt;}
.y96{bottom:769.515584pt;}
.y11{bottom:772.515584pt;}
.y6e{bottom:773.515584pt;}
.yfe{bottom:777.515584pt;}
.y43{bottom:779.515584pt;}
.yb0{bottom:783.515583pt;}
.y95{bottom:787.515583pt;}
.y10{bottom:790.515583pt;}
.y6d{bottom:791.515583pt;}
.y42{bottom:797.515583pt;}
.yaf{bottom:801.515583pt;}
.y94{bottom:805.515582pt;}
.yf{bottom:808.515582pt;}
.y6c{bottom:809.515582pt;}
.y41{bottom:815.515582pt;}
.yae{bottom:819.515582pt;}
.yfd{bottom:823.515582pt;}
.y6b{bottom:827.515582pt;}
.y40{bottom:833.515581pt;}
.y93{bottom:835.515581pt;}
.yad{bottom:837.515581pt;}
.yfc{bottom:841.515581pt;}
.y6a{bottom:845.515581pt;}
.ye{bottom:848.515581pt;}
.y3f{bottom:851.515581pt;}
.yac{bottom:855.515580pt;}
.y69{bottom:863.515580pt;}
.yd{bottom:867.515580pt;}
.y3e{bottom:869.515580pt;}
.yfb{bottom:871.515580pt;}
.y92{bottom:873.515580pt;}
.y68{bottom:881.515579pt;}
.y3d{bottom:887.515579pt;}
.yb{bottom:889.515579pt;}
.y91{bottom:891.515579pt;}
.yc{bottom:895.515579pt;}
.y3c{bottom:905.515578pt;}
.y67{bottom:909.515578pt;}
.ya{bottom:918.515578pt;}
.y3b{bottom:923.515578pt;}
.y66{bottom:927.515577pt;}
.y3a{bottom:941.515577pt;}
.y9{bottom:943.515577pt;}
.y65{bottom:945.515577pt;}
.y39{bottom:959.515576pt;}
.y64{bottom:963.515576pt;}
.y38{bottom:977.515575pt;}
.y63{bottom:981.515575pt;}
.y4{bottom:992.515575pt;}
.y62{bottom:999.515574pt;}
.y8{bottom:1001.515574pt;}
.y7{bottom:1005.515574pt;}
.y37{bottom:1007.515574pt;}
.y3{bottom:1016.515574pt;}
.y61{bottom:1017.515574pt;}
.y6{bottom:1028.515573pt;}
.y2{bottom:1046.515572pt;}
.y90{bottom:1065.515572pt;}
.y5{bottom:1071.515571pt;}
.hb{height:19.146094pt;}
.h5{height:24.468749pt;}
.hc{height:27.527343pt;}
.ha{height:32.115233pt;}
.hf{height:32.298750pt;}
.h4{height:36.703123pt;}
.h7{height:37.999998pt;}
.hd{height:40.373435pt;}
.he{height:50.159997pt;}
.h6{height:56.239998pt;}
.h9{height:56.999998pt;}
.h8{height:77.519997pt;}
.h10{height:84.360000pt;}
.h3{height:91.199996pt;}
.h2{height:1122.515569pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1e{left:57.937498pt;}
.x5{left:63.359372pt;}
.x6{left:69.468747pt;}
.x20{left:71.656247pt;}
.x4{left:74.734372pt;}
.x10{left:81.843747pt;}
.xd{left:83.843747pt;}
.x12{left:88.921871pt;}
.xe{left:90.843746pt;}
.x14{left:92.749996pt;}
.x13{left:111.390620pt;}
.x16{left:123.171870pt;}
.x15{left:125.031245pt;}
.xf{left:147.718744pt;}
.x1{left:206.718741pt;}
.x17{left:213.765621pt;}
.x3{left:283.874988pt;}
.x18{left:297.124988pt;}
.xc{left:300.453117pt;}
.x11{left:339.156236pt;}
.x2{left:347.656236pt;}
.x9{left:352.531235pt;}
.xa{left:370.140615pt;}
.x22{left:396.984363pt;}
.xb{left:408.890613pt;}
.x1f{left:416.984363pt;}
.x19{left:465.937481pt;}
.x1a{left:469.328110pt;}
.x1b{left:478.718730pt;}
.x1c{left:483.093730pt;}
.x1d{left:492.484359pt;}
.x8{left:623.499974pt;}
.x7{left:658.718723pt;}
.x21{left:721.031220pt;}
}




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