
    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_fb30d252875babd811e5ca2f.woff')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_8b61bfd0c1dba3eb50bebd2f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.976074;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_17f443e2b2a2d8220a9457dc.woff')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_db20ef8ec5097d3d0b0e4c5b.woff')format("woff");}.ff6{font-family:ff6;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;}
}
.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;}
.ws3{word-spacing:-9.689941px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:441.210941px;}
.ws6{word-spacing:525.023438px;}
._9{margin-left:-7.904972px;}
._2{margin-left:-5.734865px;}
._23{margin-left:-4.482418px;}
._45{margin-left:-2.408734px;}
._1{margin-left:-1.393941px;}
._5{width:1.230472px;}
._4{width:2.984931px;}
._0{width:4.804100px;}
._20{width:6.245563px;}
._48{width:7.265601px;}
._8{width:8.270529px;}
._19{width:9.430743px;}
._30{width:10.629459px;}
._27{width:11.665969px;}
._3{width:12.826124px;}
._1c{width:14.214796px;}
._7{width:15.720681px;}
._6{width:16.830231px;}
._37{width:17.923706px;}
._2a{width:20.097633px;}
._1d{width:21.485479px;}
._2d{width:22.710938px;}
._1f{width:24.597633px;}
._2c{width:25.985481px;}
._3c{width:27.221970px;}
._31{width:28.230467px;}
._32{width:29.729873px;}
._1a{width:30.867188px;}
._2b{width:32.055815px;}
._3b{width:33.100387px;}
._41{width:34.486474px;}
._35{width:36.239216px;}
._c{width:37.560884px;}
._29{width:39.121834px;}
._1e{width:40.423213px;}
._36{width:42.867137px;}
._d{width:44.648434px;}
._26{width:46.589035px;}
._22{width:47.680661px;}
._2f{width:49.511672px;}
._39{width:51.058549px;}
._28{width:52.066404px;}
._46{width:53.451503px;}
._1b{width:54.885908px;}
._34{width:56.545256px;}
._40{width:59.132808px;}
._3f{width:60.396630px;}
._24{width:62.070671px;}
._25{width:63.132472px;}
._3e{width:66.410156px;}
._3d{width:68.097655px;}
._44{width:73.529292px;}
._2e{width:75.199218px;}
._42{width:79.189449px;}
._43{width:83.327651px;}
._21{width:85.141093px;}
._47{width:87.867140px;}
._33{width:92.724605px;}
._38{width:103.382784px;}
._3a{width:133.710888px;}
._f{width:264.638683px;}
._e{width:297.421862px;}
._15{width:304.998056px;}
._16{width:322.061120px;}
._11{width:330.521470px;}
._14{width:344.935533px;}
._10{width:360.544884px;}
._13{width:396.404279px;}
._b{width:488.860795px;}
._17{width:599.853490px;}
._18{width:615.239596px;}
._a{width:644.326168px;}
._12{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;}
.y29{bottom:52.330066px;}
.yf7{bottom:78.205065px;}
.y28{bottom:86.080064px;}
.yd5{bottom:93.955064px;}
.y27{bottom:95.080064px;}
.y73{bottom:96.205064px;}
.yf6{bottom:98.455064px;}
.yd4{bottom:114.205063px;}
.y26{bottom:115.330063px;}
.y72{bottom:116.455063px;}
.yf5{bottom:118.705063px;}
.y25{bottom:126.580063px;}
.yd3{bottom:134.455062px;}
.y71{bottom:136.705062px;}
.yf4{bottom:138.955062px;}
.y94{bottom:143.455062px;}
.y55{bottom:145.705062px;}
.y24{bottom:149.080062px;}
.yd2{bottom:154.705062px;}
.y70{bottom:156.955061px;}
.yf3{bottom:159.205061px;}
.y23{bottom:160.330061px;}
.y93{bottom:163.705061px;}
.y54{bottom:165.955061px;}
.yd1{bottom:174.955061px;}
.yf2{bottom:179.455061px;}
.y92{bottom:183.955060px;}
.y53{bottom:186.205060px;}
.y6f{bottom:188.455060px;}
.yd0{bottom:195.205060px;}
.y107{bottom:199.705060px;}
.y91{bottom:204.205059px;}
.y52{bottom:206.455059px;}
.yf1{bottom:213.205059px;}
.ycf{bottom:215.455059px;}
.y106{bottom:219.955059px;}
.y6e{bottom:222.205059px;}
.y90{bottom:224.455059px;}
.y51{bottom:226.705059px;}
.yab{bottom:235.705058px;}
.y105{bottom:240.205058px;}
.y8f{bottom:244.705058px;}
.y50{bottom:246.955058px;}
.yf0{bottom:255.955057px;}
.y104{bottom:260.455057px;}
.y6d{bottom:264.955057px;}
.yaa{bottom:267.205057px;}
.yef{bottom:276.205056px;}
.y4f{bottom:278.455056px;}
.y103{bottom:280.705056px;}
.y6c{bottom:285.205056px;}
.ya9{bottom:287.455056px;}
.yee{bottom:296.455056px;}
.y102{bottom:300.955055px;}
.y6b{bottom:305.455055px;}
.ya8{bottom:307.705055px;}
.y4e{bottom:309.955055px;}
.y8e{bottom:316.705055px;}
.y101{bottom:321.205055px;}
.y6a{bottom:325.705054px;}
.ya7{bottom:327.955054px;}
.y4d{bottom:330.205054px;}
.yed{bottom:336.955054px;}
.y100{bottom:341.455054px;}
.y69{bottom:345.955054px;}
.y8d{bottom:348.205053px;}
.y4c{bottom:350.455053px;}
.yec{bottom:357.205053px;}
.yff{bottom:361.705053px;}
.y68{bottom:366.205053px;}
.y8c{bottom:368.455053px;}
.y4b{bottom:370.705053px;}
.yeb{bottom:377.455052px;}
.ya6{bottom:379.705052px;}
.yfe{bottom:381.955052px;}
.y67{bottom:386.455052px;}
.y8b{bottom:388.705052px;}
.y4a{bottom:390.955052px;}
.yea{bottom:397.705051px;}
.yfd{bottom:402.205051px;}
.y66{bottom:406.705051px;}
.y8a{bottom:408.955051px;}
.y49{bottom:411.205051px;}
.ye9{bottom:417.955051px;}
.yce{bottom:420.205050px;}
.yfc{bottom:422.455050px;}
.y89{bottom:429.205050px;}
.y48{bottom:431.455050px;}
.y65{bottom:438.205050px;}
.ycd{bottom:440.455050px;}
.y88{bottom:449.455049px;}
.ya5{bottom:451.705049px;}
.yfb{bottom:453.955049px;}
.y64{bottom:458.455049px;}
.ycc{bottom:460.705049px;}
.y47{bottom:462.955049px;}
.y87{bottom:469.705048px;}
.ya4{bottom:471.955048px;}
.yfa{bottom:474.205048px;}
.y22{bottom:476.455048px;}
.y63{bottom:478.705048px;}
.ycb{bottom:480.955048px;}
.y86{bottom:489.955048px;}
.ya3{bottom:492.205047px;}
.y46{bottom:494.455047px;}
.y21{bottom:496.705047px;}
.y62{bottom:498.955047px;}
.yca{bottom:501.205047px;}
.y85{bottom:510.205047px;}
.ye8{bottom:512.455047px;}
.y45{bottom:514.705047px;}
.y20{bottom:516.955046px;}
.y61{bottom:519.205046px;}
.yc9{bottom:521.455046px;}
.ya2{bottom:523.705046px;}
.y44{bottom:534.955046px;}
.y1f{bottom:537.205046px;}
.y60{bottom:539.455046px;}
.y84{bottom:541.705045px;}
.y43{bottom:555.205045px;}
.y1e{bottom:557.455045px;}
.y5f{bottom:559.705045px;}
.yc8{bottom:561.955045px;}
.yb4{bottom:573.205044px;}
.y42{bottom:575.455044px;}
.y1d{bottom:577.705044px;}
.y5e{bottom:579.955044px;}
.yc7{bottom:582.205044px;}
.yb3{bottom:593.455043px;}
.y41{bottom:595.705043px;}
.y5d{bottom:600.205043px;}
.yc6{bottom:602.455043px;}
.y1c{bottom:608.080043px;}
.yb2{bottom:613.705042px;}
.y40{bottom:615.955042px;}
.y5c{bottom:620.455042px;}
.yc5{bottom:622.705042px;}
.yb1{bottom:633.955042px;}
.y3f{bottom:636.205041px;}
.yc4{bottom:642.955041px;}
.y10f{bottom:645.205041px;}
.y5b{bottom:651.955041px;}
.yb0{bottom:654.205041px;}
.y1b{bottom:655.330041px;}
.ye7{bottom:656.455041px;}
.yc3{bottom:663.205040px;}
.y10e{bottom:665.455040px;}
.y3e{bottom:667.705040px;}
.y5a{bottom:672.205040px;}
.y1a{bottom:675.580040px;}
.ye6{bottom:676.705040px;}
.yaf{bottom:683.455040px;}
.y10d{bottom:685.705039px;}
.y3d{bottom:687.955039px;}
.y59{bottom:692.455039px;}
.ye5{bottom:696.955039px;}
.ya1{bottom:699.205039px;}
.yae{bottom:703.705039px;}
.y10c{bottom:705.955039px;}
.y19{bottom:707.080039px;}
.y58{bottom:712.705038px;}
.ye4{bottom:717.205038px;}
.ya0{bottom:719.455038px;}
.y3c{bottom:721.705038px;}
.yad{bottom:723.955038px;}
.y10b{bottom:726.205038px;}
.y18{bottom:727.330038px;}
.y57{bottom:732.955037px;}
.yc2{bottom:737.455037px;}
.y9f{bottom:739.705037px;}
.yac{bottom:744.205037px;}
.y10a{bottom:746.455037px;}
.y17{bottom:747.580037px;}
.y9e{bottom:759.955036px;}
.y3b{bottom:764.455036px;}
.y109{bottom:766.705036px;}
.y16{bottom:767.830036px;}
.ye3{bottom:768.955036px;}
.yc1{bottom:780.205035px;}
.y3a{bottom:784.705035px;}
.y15{bottom:788.080035px;}
.ye2{bottom:789.205035px;}
.y9d{bottom:791.455035px;}
.y83{bottom:795.955035px;}
.yc0{bottom:800.455035px;}
.y39{bottom:804.955034px;}
.y14{bottom:808.330034px;}
.ye1{bottom:809.455034px;}
.y82{bottom:816.205034px;}
.ybf{bottom:820.705034px;}
.y38{bottom:825.205034px;}
.y13{bottom:828.580033px;}
.ye0{bottom:829.705033px;}
.y81{bottom:836.455033px;}
.ybe{bottom:840.955033px;}
.y37{bottom:845.455033px;}
.y12{bottom:848.830033px;}
.ydf{bottom:849.955033px;}
.y80{bottom:856.705032px;}
.y36{bottom:865.705032px;}
.y9c{bottom:867.955032px;}
.y11{bottom:869.080032px;}
.yde{bottom:870.205032px;}
.ybd{bottom:872.455032px;}
.y35{bottom:885.955031px;}
.y7f{bottom:888.205031px;}
.y10{bottom:889.330031px;}
.ydd{bottom:890.455031px;}
.y108{bottom:892.705031px;}
.ybc{bottom:903.955030px;}
.y34{bottom:906.205030px;}
.y7e{bottom:908.455030px;}
.ydc{bottom:910.705030px;}
.ybb{bottom:924.205029px;}
.y33{bottom:926.455029px;}
.y9b{bottom:928.705029px;}
.yf{bottom:929.830029px;}
.ydb{bottom:930.955029px;}
.y7d{bottom:939.955029px;}
.yba{bottom:944.455029px;}
.y56{bottom:946.705029px;}
.y9a{bottom:948.955028px;}
.yda{bottom:951.205028px;}
.ye{bottom:954.580028px;}
.y32{bottom:957.955028px;}
.y7c{bottom:960.205028px;}
.yb9{bottom:964.705028px;}
.yd9{bottom:971.455028px;}
.yd{bottom:975.955027px;}
.y31{bottom:978.205027px;}
.y7b{bottom:980.455027px;}
.yd8{bottom:991.705027px;}
.yb8{bottom:996.205026px;}
.y30{bottom:998.455026px;}
.yb{bottom:1000.705026px;}
.yc{bottom:1007.455026px;}
.y99{bottom:1011.955026px;}
.y2f{bottom:1018.705026px;}
.y7a{bottom:1020.955025px;}
.yf9{bottom:1023.205025px;}
.yb7{bottom:1027.705025px;}
.y98{bottom:1032.205025px;}
.ya{bottom:1033.330025px;}
.y2e{bottom:1038.955025px;}
.y79{bottom:1041.205025px;}
.yf8{bottom:1043.455025px;}
.yb6{bottom:1047.955024px;}
.y97{bottom:1052.455024px;}
.y2d{bottom:1059.205024px;}
.y9{bottom:1061.455024px;}
.yd7{bottom:1063.705024px;}
.yb5{bottom:1068.205023px;}
.y78{bottom:1072.705023px;}
.y2c{bottom:1079.455023px;}
.yd6{bottom:1083.955023px;}
.y96{bottom:1092.955022px;}
.y2b{bottom:1099.705022px;}
.y77{bottom:1104.205022px;}
.y95{bottom:1113.205022px;}
.y4{bottom:1116.580021px;}
.y76{bottom:1124.455021px;}
.y8{bottom:1126.705021px;}
.y7{bottom:1131.205021px;}
.y2a{bottom:1133.455021px;}
.y3{bottom:1143.580020px;}
.y75{bottom:1144.705020px;}
.y6{bottom:1157.080020px;}
.y2{bottom:1177.330019px;}
.y74{bottom:1198.705018px;}
.y5{bottom:1205.455018px;}
.hd{height:21.677783px;}
.h8{height:27.527343px;}
.h5{height:27.703124px;}
.hf{height:30.968260px;}
.he{height:31.166014px;}
.hb{height:36.129637px;}
.h12{height:36.336094px;}
.h4{height:41.291014px;}
.hc{height:41.554686px;}
.h7{height:42.749998px;}
.h10{height:45.420115px;}
.h11{height:56.429997px;}
.h6{height:63.269998px;}
.ha{height:64.124997px;}
.h9{height:87.209996px;}
.h13{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;}
.x8{left:62.683591px;}
.x21{left:65.179685px;}
.x12{left:92.074215px;}
.xe{left:94.324215px;}
.x14{left:100.037105px;}
.x10{left:102.199214px;}
.x16{left:104.343746px;}
.xf{left:105.574214px;}
.x7{left:107.701167px;}
.x9{left:112.148433px;}
.x15{left:125.314448px;}
.x18{left:131.994135px;}
.x17{left:140.660150px;}
.x11{left:166.183587px;}
.x1{left:232.558584px;}
.x19{left:240.486324px;}
.xa{left:278.419916px;}
.x3{left:319.359362px;}
.x1a{left:334.265611px;}
.xd{left:338.009757px;}
.x13{left:381.550765px;}
.x2{left:391.113265px;}
.xb{left:405.544911px;}
.x23{left:446.607409px;}
.x22{left:469.107408px;}
.xc{left:470.865220px;}
.x1b{left:524.179666px;}
.x1c{left:527.994124px;}
.x1d{left:538.558571px;}
.x1e{left:543.480446px;}
.x1f{left:554.044904px;}
.x6{left:696.093721px;}
.x5{left:701.437471px;}
.x4{left:718.523408px;}
.x20{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;}
.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;}
.ws3{word-spacing:-8.613281pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:392.187503pt;}
.ws6{word-spacing:466.687501pt;}
._9{margin-left:-7.026642pt;}
._2{margin-left:-5.097658pt;}
._23{margin-left:-3.984371pt;}
._45{margin-left:-2.141097pt;}
._1{margin-left:-1.239059pt;}
._5{width:1.093753pt;}
._4{width:2.653272pt;}
._0{width:4.270311pt;}
._20{width:5.551611pt;}
._48{width:6.458312pt;}
._8{width:7.351582pt;}
._19{width:8.382883pt;}
._30{width:9.448408pt;}
._27{width:10.369750pt;}
._3{width:11.400999pt;}
._1c{width:12.635374pt;}
._7{width:13.973939pt;}
._6{width:14.960205pt;}
._37{width:15.932183pt;}
._2a{width:17.864563pt;}
._1d{width:19.098204pt;}
._2d{width:20.187500pt;}
._1f{width:21.864562pt;}
._2c{width:23.098205pt;}
._3c{width:24.197307pt;}
._31{width:25.093748pt;}
._32{width:26.426553pt;}
._1a{width:27.437501pt;}
._2b{width:28.494058pt;}
._3b{width:29.422566pt;}
._41{width:30.654644pt;}
._35{width:32.212636pt;}
._c{width:33.387452pt;}
._29{width:34.774964pt;}
._1e{width:35.931745pt;}
._36{width:38.104122pt;}
._d{width:39.687497pt;}
._26{width:41.412476pt;}
._22{width:42.382810pt;}
._2f{width:44.010375pt;}
._39{width:45.385377pt;}
._28{width:46.281248pt;}
._46{width:47.512447pt;}
._1b{width:48.787474pt;}
._34{width:50.262450pt;}
._40{width:52.562496pt;}
._3f{width:53.685894pt;}
._24{width:55.173929pt;}
._25{width:56.117753pt;}
._3e{width:59.031249pt;}
._3d{width:60.531249pt;}
._44{width:65.359371pt;}
._2e{width:66.843750pt;}
._42{width:70.390621pt;}
._43{width:74.069023pt;}
._21{width:75.680971pt;}
._47{width:78.104124pt;}
._33{width:82.421871pt;}
._38{width:91.895808pt;}
._3a{width:118.854122pt;}
._f{width:235.234385pt;}
._e{width:264.374989pt;}
._15{width:271.109383pt;}
._16{width:286.276551pt;}
._11{width:293.796863pt;}
._14{width:306.609362pt;}
._10{width:320.484342pt;}
._13{width:352.359359pt;}
._b{width:434.542929pt;}
._17{width:533.203103pt;}
._18{width:546.879641pt;}
._a{width:572.734371pt;}
._12{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;}
.y29{bottom:46.515614pt;}
.yf7{bottom:69.515613pt;}
.y28{bottom:76.515613pt;}
.yd5{bottom:83.515613pt;}
.y27{bottom:84.515612pt;}
.y73{bottom:85.515612pt;}
.yf6{bottom:87.515612pt;}
.yd4{bottom:101.515612pt;}
.y26{bottom:102.515612pt;}
.y72{bottom:103.515612pt;}
.yf5{bottom:105.515612pt;}
.y25{bottom:112.515611pt;}
.yd3{bottom:119.515611pt;}
.y71{bottom:121.515611pt;}
.yf4{bottom:123.515611pt;}
.y94{bottom:127.515611pt;}
.y55{bottom:129.515611pt;}
.y24{bottom:132.515610pt;}
.yd2{bottom:137.515610pt;}
.y70{bottom:139.515610pt;}
.yf3{bottom:141.515610pt;}
.y23{bottom:142.515610pt;}
.y93{bottom:145.515610pt;}
.y54{bottom:147.515610pt;}
.yd1{bottom:155.515610pt;}
.yf2{bottom:159.515609pt;}
.y92{bottom:163.515609pt;}
.y53{bottom:165.515609pt;}
.y6f{bottom:167.515609pt;}
.yd0{bottom:173.515609pt;}
.y107{bottom:177.515609pt;}
.y91{bottom:181.515608pt;}
.y52{bottom:183.515608pt;}
.yf1{bottom:189.515608pt;}
.ycf{bottom:191.515608pt;}
.y106{bottom:195.515608pt;}
.y6e{bottom:197.515608pt;}
.y90{bottom:199.515608pt;}
.y51{bottom:201.515608pt;}
.yab{bottom:209.515607pt;}
.y105{bottom:213.515607pt;}
.y8f{bottom:217.515607pt;}
.y50{bottom:219.515607pt;}
.yf0{bottom:227.515607pt;}
.y104{bottom:231.515606pt;}
.y6d{bottom:235.515606pt;}
.yaa{bottom:237.515606pt;}
.yef{bottom:245.515606pt;}
.y4f{bottom:247.515606pt;}
.y103{bottom:249.515606pt;}
.y6c{bottom:253.515605pt;}
.ya9{bottom:255.515605pt;}
.yee{bottom:263.515605pt;}
.y102{bottom:267.515605pt;}
.y6b{bottom:271.515605pt;}
.ya8{bottom:273.515605pt;}
.y4e{bottom:275.515605pt;}
.y8e{bottom:281.515604pt;}
.y101{bottom:285.515604pt;}
.y6a{bottom:289.515604pt;}
.ya7{bottom:291.515604pt;}
.y4d{bottom:293.515604pt;}
.yed{bottom:299.515604pt;}
.y100{bottom:303.515603pt;}
.y69{bottom:307.515603pt;}
.y8d{bottom:309.515603pt;}
.y4c{bottom:311.515603pt;}
.yec{bottom:317.515603pt;}
.yff{bottom:321.515603pt;}
.y68{bottom:325.515602pt;}
.y8c{bottom:327.515602pt;}
.y4b{bottom:329.515602pt;}
.yeb{bottom:335.515602pt;}
.ya6{bottom:337.515602pt;}
.yfe{bottom:339.515602pt;}
.y67{bottom:343.515602pt;}
.y8b{bottom:345.515602pt;}
.y4a{bottom:347.515602pt;}
.yea{bottom:353.515601pt;}
.yfd{bottom:357.515601pt;}
.y66{bottom:361.515601pt;}
.y8a{bottom:363.515601pt;}
.y49{bottom:365.515601pt;}
.ye9{bottom:371.515601pt;}
.yce{bottom:373.515600pt;}
.yfc{bottom:375.515600pt;}
.y89{bottom:381.515600pt;}
.y48{bottom:383.515600pt;}
.y65{bottom:389.515600pt;}
.ycd{bottom:391.515600pt;}
.y88{bottom:399.515599pt;}
.ya5{bottom:401.515599pt;}
.yfb{bottom:403.515599pt;}
.y64{bottom:407.515599pt;}
.ycc{bottom:409.515599pt;}
.y47{bottom:411.515599pt;}
.y87{bottom:417.515599pt;}
.ya4{bottom:419.515599pt;}
.yfa{bottom:421.515598pt;}
.y22{bottom:423.515598pt;}
.y63{bottom:425.515598pt;}
.ycb{bottom:427.515598pt;}
.y86{bottom:435.515598pt;}
.ya3{bottom:437.515598pt;}
.y46{bottom:439.515598pt;}
.y21{bottom:441.515598pt;}
.y62{bottom:443.515598pt;}
.yca{bottom:445.515597pt;}
.y85{bottom:453.515597pt;}
.ye8{bottom:455.515597pt;}
.y45{bottom:457.515597pt;}
.y20{bottom:459.515597pt;}
.y61{bottom:461.515597pt;}
.yc9{bottom:463.515597pt;}
.ya2{bottom:465.515597pt;}
.y44{bottom:475.515596pt;}
.y1f{bottom:477.515596pt;}
.y60{bottom:479.515596pt;}
.y84{bottom:481.515596pt;}
.y43{bottom:493.515595pt;}
.y1e{bottom:495.515595pt;}
.y5f{bottom:497.515595pt;}
.yc8{bottom:499.515595pt;}
.yb4{bottom:509.515595pt;}
.y42{bottom:511.515595pt;}
.y1d{bottom:513.515595pt;}
.y5e{bottom:515.515595pt;}
.yc7{bottom:517.515594pt;}
.yb3{bottom:527.515594pt;}
.y41{bottom:529.515594pt;}
.y5d{bottom:533.515594pt;}
.yc6{bottom:535.515594pt;}
.y1c{bottom:540.515593pt;}
.yb2{bottom:545.515593pt;}
.y40{bottom:547.515593pt;}
.y5c{bottom:551.515593pt;}
.yc5{bottom:553.515593pt;}
.yb1{bottom:563.515593pt;}
.y3f{bottom:565.515592pt;}
.yc4{bottom:571.515592pt;}
.y10f{bottom:573.515592pt;}
.y5b{bottom:579.515592pt;}
.yb0{bottom:581.515592pt;}
.y1b{bottom:582.515592pt;}
.ye7{bottom:583.515592pt;}
.yc3{bottom:589.515591pt;}
.y10e{bottom:591.515591pt;}
.y3e{bottom:593.515591pt;}
.y5a{bottom:597.515591pt;}
.y1a{bottom:600.515591pt;}
.ye6{bottom:601.515591pt;}
.yaf{bottom:607.515591pt;}
.y10d{bottom:609.515591pt;}
.y3d{bottom:611.515591pt;}
.y59{bottom:615.515590pt;}
.ye5{bottom:619.515590pt;}
.ya1{bottom:621.515590pt;}
.yae{bottom:625.515590pt;}
.y10c{bottom:627.515590pt;}
.y19{bottom:628.515590pt;}
.y58{bottom:633.515590pt;}
.ye4{bottom:637.515589pt;}
.ya0{bottom:639.515589pt;}
.y3c{bottom:641.515589pt;}
.yad{bottom:643.515589pt;}
.y10b{bottom:645.515589pt;}
.y18{bottom:646.515589pt;}
.y57{bottom:651.515589pt;}
.yc2{bottom:655.515589pt;}
.y9f{bottom:657.515589pt;}
.yac{bottom:661.515588pt;}
.y10a{bottom:663.515588pt;}
.y17{bottom:664.515588pt;}
.y9e{bottom:675.515588pt;}
.y3b{bottom:679.515588pt;}
.y109{bottom:681.515588pt;}
.y16{bottom:682.515588pt;}
.ye3{bottom:683.515588pt;}
.yc1{bottom:693.515587pt;}
.y3a{bottom:697.515587pt;}
.y15{bottom:700.515587pt;}
.ye2{bottom:701.515587pt;}
.y9d{bottom:703.515587pt;}
.y83{bottom:707.515587pt;}
.yc0{bottom:711.515586pt;}
.y39{bottom:715.515586pt;}
.y14{bottom:718.515586pt;}
.ye1{bottom:719.515586pt;}
.y82{bottom:725.515586pt;}
.ybf{bottom:729.515586pt;}
.y38{bottom:733.515585pt;}
.y13{bottom:736.515585pt;}
.ye0{bottom:737.515585pt;}
.y81{bottom:743.515585pt;}
.ybe{bottom:747.515585pt;}
.y37{bottom:751.515585pt;}
.y12{bottom:754.515585pt;}
.ydf{bottom:755.515585pt;}
.y80{bottom:761.515584pt;}
.y36{bottom:769.515584pt;}
.y9c{bottom:771.515584pt;}
.y11{bottom:772.515584pt;}
.yde{bottom:773.515584pt;}
.ybd{bottom:775.515584pt;}
.y35{bottom:787.515583pt;}
.y7f{bottom:789.515583pt;}
.y10{bottom:790.515583pt;}
.ydd{bottom:791.515583pt;}
.y108{bottom:793.515583pt;}
.ybc{bottom:803.515583pt;}
.y34{bottom:805.515582pt;}
.y7e{bottom:807.515582pt;}
.ydc{bottom:809.515582pt;}
.ybb{bottom:821.515582pt;}
.y33{bottom:823.515582pt;}
.y9b{bottom:825.515582pt;}
.yf{bottom:826.515582pt;}
.ydb{bottom:827.515582pt;}
.y7d{bottom:835.515581pt;}
.yba{bottom:839.515581pt;}
.y56{bottom:841.515581pt;}
.y9a{bottom:843.515581pt;}
.yda{bottom:845.515581pt;}
.ye{bottom:848.515581pt;}
.y32{bottom:851.515581pt;}
.y7c{bottom:853.515580pt;}
.yb9{bottom:857.515580pt;}
.yd9{bottom:863.515580pt;}
.yd{bottom:867.515580pt;}
.y31{bottom:869.515580pt;}
.y7b{bottom:871.515580pt;}
.yd8{bottom:881.515579pt;}
.yb8{bottom:885.515579pt;}
.y30{bottom:887.515579pt;}
.yb{bottom:889.515579pt;}
.yc{bottom:895.515579pt;}
.y99{bottom:899.515579pt;}
.y2f{bottom:905.515578pt;}
.y7a{bottom:907.515578pt;}
.yf9{bottom:909.515578pt;}
.yb7{bottom:913.515578pt;}
.y98{bottom:917.515578pt;}
.ya{bottom:918.515578pt;}
.y2e{bottom:923.515578pt;}
.y79{bottom:925.515577pt;}
.yf8{bottom:927.515577pt;}
.yb6{bottom:931.515577pt;}
.y97{bottom:935.515577pt;}
.y2d{bottom:941.515577pt;}
.y9{bottom:943.515577pt;}
.yd7{bottom:945.515577pt;}
.yb5{bottom:949.515576pt;}
.y78{bottom:953.515576pt;}
.y2c{bottom:959.515576pt;}
.yd6{bottom:963.515576pt;}
.y96{bottom:971.515576pt;}
.y2b{bottom:977.515575pt;}
.y77{bottom:981.515575pt;}
.y95{bottom:989.515575pt;}
.y4{bottom:992.515575pt;}
.y76{bottom:999.515574pt;}
.y8{bottom:1001.515574pt;}
.y7{bottom:1005.515574pt;}
.y2a{bottom:1007.515574pt;}
.y3{bottom:1016.515574pt;}
.y75{bottom:1017.515574pt;}
.y6{bottom:1028.515573pt;}
.y2{bottom:1046.515572pt;}
.y74{bottom:1065.515572pt;}
.y5{bottom:1071.515571pt;}
.hd{height:19.269140pt;}
.h8{height:24.468749pt;}
.h5{height:24.624999pt;}
.hf{height:27.527343pt;}
.he{height:27.703124pt;}
.hb{height:32.115233pt;}
.h12{height:32.298750pt;}
.h4{height:36.703123pt;}
.hc{height:36.937498pt;}
.h7{height:37.999998pt;}
.h10{height:40.373435pt;}
.h11{height:50.159997pt;}
.h6{height:56.239998pt;}
.ha{height:56.999998pt;}
.h9{height:77.519997pt;}
.h13{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;}
.x8{left:55.718748pt;}
.x21{left:57.937498pt;}
.x12{left:81.843747pt;}
.xe{left:83.843747pt;}
.x14{left:88.921871pt;}
.x10{left:90.843746pt;}
.x16{left:92.749996pt;}
.xf{left:93.843746pt;}
.x7{left:95.734371pt;}
.x9{left:99.687496pt;}
.x15{left:111.390620pt;}
.x18{left:117.328120pt;}
.x17{left:125.031245pt;}
.x11{left:147.718744pt;}
.x1{left:206.718741pt;}
.x19{left:213.765621pt;}
.xa{left:247.484370pt;}
.x3{left:283.874988pt;}
.x1a{left:297.124988pt;}
.xd{left:300.453117pt;}
.x13{left:339.156236pt;}
.x2{left:347.656236pt;}
.xb{left:360.484365pt;}
.x23{left:396.984363pt;}
.x22{left:416.984363pt;}
.xc{left:418.546863pt;}
.x1b{left:465.937481pt;}
.x1c{left:469.328110pt;}
.x1d{left:478.718730pt;}
.x1e{left:483.093730pt;}
.x1f{left:492.484359pt;}
.x6{left:618.749974pt;}
.x5{left:623.499974pt;}
.x4{left:638.687473pt;}
.x20{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; }
  