
    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_9570f6b5b8341013ca07cb3b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_0307e239951d5a3fbbfa7da9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.963667;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_dc6cebfd4343e01a8a372c12.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948500;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_f1f98fc842a6736b193a2af2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.965500;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_2606654fef640f61feaf2027.woff')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_626433212fd58104754b45fa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.773000;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_7f2f76d09011f4e8ed3d18ed.woff')format("woff");}.ff7{font-family:ff7;line-height:0.804000;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_a6a1c95728f770d3e3db5594.woff')format("woff");}.ff8{font-family:ff8;line-height:0.903500;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_408c8bc6cb80f4b178d6ddda.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0e3fab151e5e5929a732d69f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.726000;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);}
.v2{vertical-align:-53.970000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:37.482000px;}
.v4{vertical-align:44.988000px;}
.v3{vertical-align:53.970000px;}
.v1{vertical-align:77.718000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.005707px;}
.ls1{letter-spacing:2.986430px;}
.ls5{letter-spacing:2.988008px;}
.ls2{letter-spacing:2.989224px;}
.ls0{letter-spacing:2.990649px;}
.ls3{letter-spacing:41.307795px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-281.300335px;}
.ws3{word-spacing:-178.490640px;}
.ws1{word-spacing:-159.561746px;}
.ws24{word-spacing:-148.722300px;}
.ws1e{word-spacing:-140.115152px;}
.ws32{word-spacing:-137.437793px;}
.ws12{word-spacing:-135.652886px;}
.ws15{word-spacing:-120.762508px;}
.ws16{word-spacing:-117.936784px;}
.ws20{word-spacing:-117.193172px;}
.ws6{word-spacing:-116.895728px;}
.ws25{word-spacing:-116.300839px;}
.ws17{word-spacing:-116.003394px;}
.ws14{word-spacing:-115.259782px;}
.wse{word-spacing:-115.111060px;}
.ws36{word-spacing:-114.218726px;}
.ws18{word-spacing:-114.070004px;}
.ws1d{word-spacing:-113.772559px;}
.ws13{word-spacing:-112.731503px;}
.ws1f{word-spacing:-112.582781px;}
.ws35{word-spacing:-112.136614px;}
.ws22{word-spacing:-111.541725px;}
.ws2{word-spacing:-110.798113px;}
.ws21{word-spacing:-110.649391px;}
.ws8{word-spacing:-108.716001px;}
.wsa{word-spacing:-108.418557px;}
.ws33{word-spacing:-108.269834px;}
.ws4{word-spacing:-106.633889px;}
.ws7{word-spacing:-105.741555px;}
.wsd{word-spacing:-105.592833px;}
.ws10{word-spacing:-105.295388px;}
.ws1a{word-spacing:-103.361999px;}
.ws27{word-spacing:-103.292640px;}
.ws9{word-spacing:-101.279886px;}
.wsf{word-spacing:-100.090108px;}
.ws3f{word-spacing:-99.495219px;}
.ws11{word-spacing:-98.751607px;}
.ws40{word-spacing:-98.156718px;}
.ws19{word-spacing:-96.818217px;}
.wsb{word-spacing:-96.223328px;}
.wsc{word-spacing:-95.182272px;}
.ws38{word-spacing:-94.887099px;}
.ws1b{word-spacing:-90.377862px;}
.ws5{word-spacing:-90.274436px;}
.ws3c{word-spacing:-86.455940px;}
.ws31{word-spacing:-84.596672px;}
.ws3a{word-spacing:-84.286794px;}
.ws3d{word-spacing:-80.981430px;}
.ws2a{word-spacing:-78.243350px;}
.ws3e{word-spacing:-77.469480px;}
.ws39{word-spacing:-75.816798px;}
.ws26{word-spacing:-75.300335px;}
.ws29{word-spacing:-73.957530px;}
.ws2f{word-spacing:-73.544360px;}
.ws2e{word-spacing:-72.408141px;}
.ws2d{word-spacing:-70.135703px;}
.ws28{word-spacing:-65.900704px;}
.ws30{word-spacing:-63.885084px;}
.ws2b{word-spacing:-63.008510px;}
.ws3b{word-spacing:-49.591003px;}
.ws2c{word-spacing:-41.213763px;}
.ws37{word-spacing:-0.148722px;}
.ws41{word-spacing:0.000000px;}
.ws1c{word-spacing:37.928696px;}
.ws23{word-spacing:40.238696px;}
.ws34{word-spacing:81.442580px;}
._31{margin-left:-24.687902px;}
._22{margin-left:-17.549231px;}
._23{margin-left:-15.177326px;}
._26{margin-left:-12.114892px;}
._20{margin-left:-10.828514px;}
._21{margin-left:-8.639102px;}
._5{margin-left:-6.481435px;}
._13{margin-left:-5.463512px;}
._4{margin-left:-4.441584px;}
._1{margin-left:-3.331188px;}
._2{margin-left:-1.480528px;}
._2a{width:2.583034px;}
._28{width:3.839188px;}
._36{width:5.643117px;}
._1f{width:6.754098px;}
._35{width:13.770884px;}
._2c{width:15.864027px;}
._34{width:17.468406px;}
._37{width:19.294680px;}
._38{width:20.925368px;}
._29{width:23.128946px;}
._39{width:24.168086px;}
._25{width:26.167469px;}
._27{width:27.280257px;}
._d{width:28.547987px;}
._1c{width:29.704290px;}
._1e{width:31.947081px;}
._17{width:33.144988px;}
._6{width:34.899529px;}
._11{width:36.545516px;}
._7{width:37.713118px;}
._8{width:38.769656px;}
._f{width:40.214319px;}
._e{width:41.932994px;}
._9{width:43.318359px;}
._16{width:44.378543px;}
._18{width:46.394663px;}
._14{width:49.227081px;}
._1a{width:50.849637px;}
._19{width:53.500815px;}
._c{width:55.648920px;}
._b{width:57.406808px;}
._10{width:61.594464px;}
._a{width:63.315530px;}
._24{width:65.454441px;}
._15{width:68.405563px;}
._1d{width:73.617539px;}
._12{width:75.206619px;}
._0{width:78.097856px;}
._3{width:79.208252px;}
._2f{width:80.756209px;}
._2b{width:82.142980px;}
._1b{width:93.688354px;}
._30{width:101.551508px;}
._2e{width:138.180052px;}
._32{width:406.262161px;}
._33{width:1925.973870px;}
._2d{width:2813.012486px;}
._3a{width:7327.779005px;}
.fc5{color:rgb(0,124,146);}
.fc4{color:rgb(224,79,57);}
.fc3{color:rgb(23,94,84);}
.fc1{color:rgb(140,21,21);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:71.731020px;}
.fs6{font-size:86.077200px;}
.fs7{font-size:103.292640px;}
.fs3{font-size:123.975120px;}
.fs4{font-size:148.722300px;}
.fs2{font-size:149.923080px;}
.fs5{font-size:178.490640px;}
.fs1{font-size:214.176840px;}
.fs0{font-size:370.132020px;}
.y0{bottom:0.000000px;}
.y72{bottom:34.596000px;}
.y4f{bottom:191.161500px;}
.y4e{bottom:232.050000px;}
.y20{bottom:249.897000px;}
.y4d{bottom:264.927000px;}
.y4c{bottom:305.817000px;}
.y4b{bottom:338.692500px;}
.y1f{bottom:348.450000px;}
.y4a{bottom:379.582500px;}
.y1e{bottom:385.809000px;}
.y49{bottom:412.459500px;}
.y48{bottom:453.348000px;}
.y71{bottom:478.176000px;}
.y47{bottom:494.236500px;}
.y70{bottom:523.008000px;}
.y46{bottom:535.126500px;}
.y45{bottom:576.015000px;}
.y44{bottom:608.892000px;}
.y43{bottom:649.780500px;}
.y42{bottom:690.670500px;}
.y6f{bottom:702.195000px;}
.y6e{bottom:735.070500px;}
.y6d{bottom:767.947500px;}
.y41{bottom:773.202000px;}
.y6c{bottom:800.824500px;}
.y6b{bottom:833.701500px;}
.y6a{bottom:903.385500px;}
.y40{bottom:913.510500px;}
.y3f{bottom:958.342500px;}
.y3e{bottom:1003.174500px;}
.y69{bottom:1003.711500px;}
.y3d{bottom:1048.006500px;}
.y68{bottom:1048.543500px;}
.y67{bottom:1116.355500px;}
.y3c{bottom:1118.808000px;}
.y3b{bottom:1203.058500px;}
.y66{bottom:1216.114500px;}
.y3a{bottom:1247.890500px;}
.y65{bottom:1270.195500px;}
.y39{bottom:1292.722500px;}
.y64{bottom:1315.027500px;}
.y38{bottom:1363.524000px;}
.y63{bottom:1369.108500px;}
.y62{bottom:1423.188000px;}
.y37{bottom:1447.774500px;}
.y36{bottom:1492.606500px;}
.y1d{bottom:1499.334000px;}
.y61{bottom:1523.325000px;}
.y35{bottom:1537.438500px;}
.y1c{bottom:1544.166000px;}
.y34{bottom:1608.238500px;}
.y1b{bottom:1611.978000px;}
.y60{bottom:1671.343500px;}
.y33{bottom:1692.490500px;}
.y1a{bottom:1693.240500px;}
.y5f{bottom:1716.174000px;}
.y32{bottom:1737.322500px;}
.y19{bottom:1738.071000px;}
.y5e{bottom:1761.006000px;}
.y31{bottom:1782.153000px;}
.y18{bottom:1782.903000px;}
.y17{bottom:1827.735000px;}
.y5d{bottom:1850.670000px;}
.y30{bottom:1852.954500px;}
.y16{bottom:1872.567000px;}
.y5c{bottom:1895.502000px;}
.y2f{bottom:1937.205000px;}
.y5b{bottom:1940.334000px;}
.y15{bottom:1940.379000px;}
.y2e{bottom:1982.037000px;}
.y2d{bottom:2026.869000px;}
.y5a{bottom:2029.998000px;}
.y14{bottom:2039.952000px;}
.y59{bottom:2074.830000px;}
.y2c{bottom:2097.670500px;}
.y58{bottom:2119.662000px;}
.y13{bottom:2158.774500px;}
.y2b{bottom:2181.921000px;}
.y12{bottom:2203.606500px;}
.y57{bottom:2209.326000px;}
.y2a{bottom:2226.753000px;}
.y11{bottom:2248.438500px;}
.y56{bottom:2254.158000px;}
.y29{bottom:2271.585000px;}
.y10{bottom:2293.270500px;}
.yf{bottom:2338.102500px;}
.y28{bottom:2342.386500px;}
.y55{bottom:2343.820500px;}
.ye{bottom:2382.934500px;}
.y54{bottom:2388.652500px;}
.y27{bottom:2426.637000px;}
.yd{bottom:2427.766500px;}
.y53{bottom:2433.484500px;}
.y26{bottom:2471.469000px;}
.yc{bottom:2472.598500px;}
.y52{bottom:2523.148500px;}
.yb{bottom:2535.927000px;}
.y25{bottom:2542.270500px;}
.y51{bottom:2567.980500px;}
.ya{bottom:2580.759000px;}
.y9{bottom:2625.591000px;}
.y24{bottom:2626.521000px;}
.y8{bottom:2670.423000px;}
.y23{bottom:2671.353000px;}
.y50{bottom:2676.328500px;}
.y7{bottom:2715.255000px;}
.y22{bottom:2716.185000px;}
.y6{bottom:2760.087000px;}
.y21{bottom:2786.986500px;}
.y5{bottom:2804.919000px;}
.y4{bottom:2886.558000px;}
.y3{bottom:3091.155000px;}
.y2{bottom:3150.391500px;}
.y1{bottom:3241.882500px;}
.hc{height:78.812284px;}
.h4{height:91.741589px;}
.he{height:92.212768px;}
.hb{height:94.593017px;}
.hf{height:110.054502px;}
.ha{height:110.664904px;}
.h6{height:113.475115px;}
.h8{height:115.334144px;}
.h7{height:116.747006px;}
.h5{height:132.083074px;}
.hd{height:138.419491px;}
.h9{height:148.563017px;}
.h3{height:188.661079px;}
.h2{height:273.897695px;}
.h1{height:3401.250000px;}
.h0{height:3401.575500px;}
.w1{width:5102.250000px;}
.w0{width:5102.362500px;}
.x0{left:0.000000px;}
.x7{left:127.548000px;}
.x5{left:146.044500px;}
.x18{left:155.971500px;}
.x6{left:298.111500px;}
.x4{left:792.463500px;}
.x1{left:1585.090500px;}
.xe{left:1785.819000px;}
.xc{left:1800.796500px;}
.x9{left:1804.317000px;}
.xa{left:1840.317000px;}
.xd{left:1847.476500px;}
.x3{left:2085.162000px;}
.x8{left:2226.930000px;}
.xb{left:2248.192500px;}
.x2{left:2281.678500px;}
.x15{left:3444.090000px;}
.x17{left:3462.588000px;}
.x10{left:3479.335500px;}
.x14{left:3509.545500px;}
.xf{left:3862.555500px;}
.x13{left:3943.234500px;}
.x16{left:4008.360000px;}
.x11{left:4243.321500px;}
.x12{left:4244.698500px;}
@media print{
.v2{vertical-align:-47.973333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:33.317333pt;}
.v4{vertical-align:39.989333pt;}
.v3{vertical-align:47.973333pt;}
.v1{vertical-align:69.082667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.005073pt;}
.ls1{letter-spacing:2.654605pt;}
.ls5{letter-spacing:2.656007pt;}
.ls2{letter-spacing:2.657088pt;}
.ls0{letter-spacing:2.658354pt;}
.ls3{letter-spacing:36.718040pt;}
.ws0{word-spacing:-250.044742pt;}
.ws3{word-spacing:-158.658347pt;}
.ws1{word-spacing:-141.832663pt;}
.ws24{word-spacing:-132.197600pt;}
.ws1e{word-spacing:-124.546802pt;}
.ws32{word-spacing:-122.166927pt;}
.ws12{word-spacing:-120.580343pt;}
.ws15{word-spacing:-107.344451pt;}
.ws16{word-spacing:-104.832697pt;}
.ws20{word-spacing:-104.171709pt;}
.ws6{word-spacing:-103.907314pt;}
.ws25{word-spacing:-103.378523pt;}
.ws17{word-spacing:-103.114128pt;}
.ws14{word-spacing:-102.453140pt;}
.wse{word-spacing:-102.320942pt;}
.ws36{word-spacing:-101.527757pt;}
.ws18{word-spacing:-101.395559pt;}
.ws1d{word-spacing:-101.131164pt;}
.ws13{word-spacing:-100.205781pt;}
.ws1f{word-spacing:-100.073583pt;}
.ws35{word-spacing:-99.676990pt;}
.ws22{word-spacing:-99.148200pt;}
.ws2{word-spacing:-98.487212pt;}
.ws21{word-spacing:-98.355014pt;}
.ws8{word-spacing:-96.636446pt;}
.wsa{word-spacing:-96.372050pt;}
.ws33{word-spacing:-96.239853pt;}
.ws4{word-spacing:-94.785679pt;}
.ws7{word-spacing:-93.992494pt;}
.wsd{word-spacing:-93.860296pt;}
.ws10{word-spacing:-93.595901pt;}
.ws1a{word-spacing:-91.877332pt;}
.ws27{word-spacing:-91.815680pt;}
.ws9{word-spacing:-90.026566pt;}
.wsf{word-spacing:-88.968985pt;}
.ws3f{word-spacing:-88.440194pt;}
.ws11{word-spacing:-87.779206pt;}
.ws40{word-spacing:-87.250416pt;}
.ws19{word-spacing:-86.060638pt;}
.wsb{word-spacing:-85.531847pt;}
.wsc{word-spacing:-84.606464pt;}
.ws38{word-spacing:-84.344088pt;}
.ws1b{word-spacing:-80.335878pt;}
.ws5{word-spacing:-80.243943pt;}
.ws3c{word-spacing:-76.849724pt;}
.ws31{word-spacing:-75.197042pt;}
.ws3a{word-spacing:-74.921595pt;}
.ws3d{word-spacing:-71.983493pt;}
.ws2a{word-spacing:-69.549644pt;}
.ws3e{word-spacing:-68.861760pt;}
.ws39{word-spacing:-67.392709pt;}
.ws26{word-spacing:-66.933631pt;}
.ws29{word-spacing:-65.740027pt;}
.ws2f{word-spacing:-65.372764pt;}
.ws2e{word-spacing:-64.362792pt;}
.ws2d{word-spacing:-62.342847pt;}
.ws28{word-spacing:-58.578404pt;}
.ws30{word-spacing:-56.786742pt;}
.ws2b{word-spacing:-56.007565pt;}
.ws3b{word-spacing:-44.080892pt;}
.ws2c{word-spacing:-36.634456pt;}
.ws37{word-spacing:-0.132198pt;}
.ws41{word-spacing:0.000000pt;}
.ws1c{word-spacing:33.714397pt;}
.ws23{word-spacing:35.767730pt;}
.ws34{word-spacing:72.393404pt;}
._31{margin-left:-21.944802pt;}
._22{margin-left:-15.599317pt;}
._23{margin-left:-13.490957pt;}
._26{margin-left:-10.768793pt;}
._20{margin-left:-9.625346pt;}
._21{margin-left:-7.679201pt;}
._5{margin-left:-5.761275pt;}
._13{margin-left:-4.856455pt;}
._4{margin-left:-3.948075pt;}
._1{margin-left:-2.961056pt;}
._2{margin-left:-1.316025pt;}
._2a{width:2.296030pt;}
._28{width:3.412612pt;}
._36{width:5.016104pt;}
._1f{width:6.003643pt;}
._35{width:12.240786pt;}
._2c{width:14.101358pt;}
._34{width:15.527472pt;}
._37{width:17.150826pt;}
._38{width:18.600327pt;}
._29{width:20.559063pt;}
._39{width:21.482743pt;}
._25{width:23.259972pt;}
._27{width:24.249117pt;}
._d{width:25.375988pt;}
._1c{width:26.403814pt;}
._1e{width:28.397405pt;}
._17{width:29.462212pt;}
._6{width:31.021803pt;}
._11{width:32.484903pt;}
._7{width:33.522771pt;}
._8{width:34.461916pt;}
._f{width:35.746061pt;}
._e{width:37.273772pt;}
._9{width:38.505208pt;}
._16{width:39.447594pt;}
._18{width:41.239700pt;}
._14{width:43.757406pt;}
._1a{width:45.199677pt;}
._19{width:47.556280pt;}
._c{width:49.465707pt;}
._b{width:51.028274pt;}
._10{width:54.750635pt;}
._a{width:56.280471pt;}
._24{width:58.181725pt;}
._15{width:60.804945pt;}
._1d{width:65.437812pt;}
._12{width:66.850328pt;}
._0{width:69.420317pt;}
._3{width:70.407335pt;}
._2f{width:71.783297pt;}
._2b{width:73.015982pt;}
._1b{width:83.278537pt;}
._30{width:90.268007pt;}
._2e{width:122.826713pt;}
._32{width:361.121921pt;}
._33{width:1711.976773pt;}
._2d{width:2500.455543pt;}
._3a{width:6513.581338pt;}
.fs8{font-size:63.760907pt;}
.fs6{font-size:76.513067pt;}
.fs7{font-size:91.815680pt;}
.fs3{font-size:110.200107pt;}
.fs4{font-size:132.197600pt;}
.fs2{font-size:133.264960pt;}
.fs5{font-size:158.658347pt;}
.fs1{font-size:190.379413pt;}
.fs0{font-size:329.006240pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:30.752000pt;}
.y4f{bottom:169.921333pt;}
.y4e{bottom:206.266667pt;}
.y20{bottom:222.130667pt;}
.y4d{bottom:235.490667pt;}
.y4c{bottom:271.837333pt;}
.y4b{bottom:301.060000pt;}
.y1f{bottom:309.733333pt;}
.y4a{bottom:337.406667pt;}
.y1e{bottom:342.941333pt;}
.y49{bottom:366.630667pt;}
.y48{bottom:402.976000pt;}
.y71{bottom:425.045333pt;}
.y47{bottom:439.321333pt;}
.y70{bottom:464.896000pt;}
.y46{bottom:475.668000pt;}
.y45{bottom:512.013333pt;}
.y44{bottom:541.237333pt;}
.y43{bottom:577.582667pt;}
.y42{bottom:613.929333pt;}
.y6f{bottom:624.173333pt;}
.y6e{bottom:653.396000pt;}
.y6d{bottom:682.620000pt;}
.y41{bottom:687.290667pt;}
.y6c{bottom:711.844000pt;}
.y6b{bottom:741.068000pt;}
.y6a{bottom:803.009333pt;}
.y40{bottom:812.009333pt;}
.y3f{bottom:851.860000pt;}
.y3e{bottom:891.710667pt;}
.y69{bottom:892.188000pt;}
.y3d{bottom:931.561333pt;}
.y68{bottom:932.038667pt;}
.y67{bottom:992.316000pt;}
.y3c{bottom:994.496000pt;}
.y3b{bottom:1069.385333pt;}
.y66{bottom:1080.990667pt;}
.y3a{bottom:1109.236000pt;}
.y65{bottom:1129.062667pt;}
.y39{bottom:1149.086667pt;}
.y64{bottom:1168.913333pt;}
.y38{bottom:1212.021333pt;}
.y63{bottom:1216.985333pt;}
.y62{bottom:1265.056000pt;}
.y37{bottom:1286.910667pt;}
.y36{bottom:1326.761333pt;}
.y1d{bottom:1332.741333pt;}
.y61{bottom:1354.066667pt;}
.y35{bottom:1366.612000pt;}
.y1c{bottom:1372.592000pt;}
.y34{bottom:1429.545333pt;}
.y1b{bottom:1432.869333pt;}
.y60{bottom:1485.638667pt;}
.y33{bottom:1504.436000pt;}
.y1a{bottom:1505.102667pt;}
.y5f{bottom:1525.488000pt;}
.y32{bottom:1544.286667pt;}
.y19{bottom:1544.952000pt;}
.y5e{bottom:1565.338667pt;}
.y31{bottom:1584.136000pt;}
.y18{bottom:1584.802667pt;}
.y17{bottom:1624.653333pt;}
.y5d{bottom:1645.040000pt;}
.y30{bottom:1647.070667pt;}
.y16{bottom:1664.504000pt;}
.y5c{bottom:1684.890667pt;}
.y2f{bottom:1721.960000pt;}
.y5b{bottom:1724.741333pt;}
.y15{bottom:1724.781333pt;}
.y2e{bottom:1761.810667pt;}
.y2d{bottom:1801.661333pt;}
.y5a{bottom:1804.442667pt;}
.y14{bottom:1813.290667pt;}
.y59{bottom:1844.293333pt;}
.y2c{bottom:1864.596000pt;}
.y58{bottom:1884.144000pt;}
.y13{bottom:1918.910667pt;}
.y2b{bottom:1939.485333pt;}
.y12{bottom:1958.761333pt;}
.y57{bottom:1963.845333pt;}
.y2a{bottom:1979.336000pt;}
.y11{bottom:1998.612000pt;}
.y56{bottom:2003.696000pt;}
.y29{bottom:2019.186667pt;}
.y10{bottom:2038.462667pt;}
.yf{bottom:2078.313333pt;}
.y28{bottom:2082.121333pt;}
.y55{bottom:2083.396000pt;}
.ye{bottom:2118.164000pt;}
.y54{bottom:2123.246667pt;}
.y27{bottom:2157.010667pt;}
.yd{bottom:2158.014667pt;}
.y53{bottom:2163.097333pt;}
.y26{bottom:2196.861333pt;}
.yc{bottom:2197.865333pt;}
.y52{bottom:2242.798667pt;}
.yb{bottom:2254.157333pt;}
.y25{bottom:2259.796000pt;}
.y51{bottom:2282.649333pt;}
.ya{bottom:2294.008000pt;}
.y9{bottom:2333.858667pt;}
.y24{bottom:2334.685333pt;}
.y8{bottom:2373.709333pt;}
.y23{bottom:2374.536000pt;}
.y50{bottom:2378.958667pt;}
.y7{bottom:2413.560000pt;}
.y22{bottom:2414.386667pt;}
.y6{bottom:2453.410667pt;}
.y21{bottom:2477.321333pt;}
.y5{bottom:2493.261333pt;}
.y4{bottom:2565.829333pt;}
.y3{bottom:2747.693333pt;}
.y2{bottom:2800.348000pt;}
.y1{bottom:2881.673333pt;}
.hc{height:70.055364pt;}
.h4{height:81.548079pt;}
.he{height:81.966905pt;}
.hb{height:84.082681pt;}
.hf{height:97.826224pt;}
.ha{height:98.368803pt;}
.h6{height:100.866769pt;}
.h8{height:102.519239pt;}
.h7{height:103.775116pt;}
.h5{height:117.407177pt;}
.hd{height:123.039548pt;}
.h9{height:132.056015pt;}
.h3{height:167.698737pt;}
.h2{height:243.464618pt;}
.h1{height:3023.333333pt;}
.h0{height:3023.622667pt;}
.w1{width:4535.333333pt;}
.w0{width:4535.433333pt;}
.x0{left:0.000000pt;}
.x7{left:113.376000pt;}
.x5{left:129.817333pt;}
.x18{left:138.641333pt;}
.x6{left:264.988000pt;}
.x4{left:704.412000pt;}
.x1{left:1408.969333pt;}
.xe{left:1587.394667pt;}
.xc{left:1600.708000pt;}
.x9{left:1603.837333pt;}
.xa{left:1635.837333pt;}
.xd{left:1642.201333pt;}
.x3{left:1853.477333pt;}
.x8{left:1979.493333pt;}
.xb{left:1998.393333pt;}
.x2{left:2028.158667pt;}
.x15{left:3061.413333pt;}
.x17{left:3077.856000pt;}
.x10{left:3092.742667pt;}
.x14{left:3119.596000pt;}
.xf{left:3433.382667pt;}
.x13{left:3505.097333pt;}
.x16{left:3562.986667pt;}
.x11{left:3771.841333pt;}
.x12{left:3773.065333pt;}
}




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