
    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_55fabc919fd1161065080f3c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_4c82f8cdb12fdaed658fed2f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_138935cd4fc1f6a3a9fc1c47.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_ea771893c83ec36dd6d205aa.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1d{letter-spacing:-0.894000px;}
.lsd{letter-spacing:-0.786000px;}
.ls1a{letter-spacing:-0.780000px;}
.ls3{letter-spacing:-0.463800px;}
.lsc{letter-spacing:-0.414000px;}
.lsf{letter-spacing:-0.326400px;}
.ls9{letter-spacing:-0.175800px;}
.ls2{letter-spacing:-0.132600px;}
.ls5{letter-spacing:-0.107400px;}
.ls18{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.055440px;}
.ls1b{letter-spacing:-0.043920px;}
.ls1c{letter-spacing:-0.041040px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.038880px;}
.ls8{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.150000px;}
.lsa{letter-spacing:0.186600px;}
.lsb{letter-spacing:0.209520px;}
.ls19{letter-spacing:0.376800px;}
.lse{letter-spacing:0.493200px;}
.ls7{letter-spacing:0.666000px;}
.ls14{letter-spacing:12.186720px;}
.ls13{letter-spacing:13.626720px;}
.ls15{letter-spacing:13.854240px;}
.ls16{letter-spacing:14.346720px;}
.ls12{letter-spacing:42.570720px;}
.ls10{letter-spacing:43.290720px;}
.ls11{letter-spacing:44.010720px;}
.ls17{letter-spacing:121.602720px;}
.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:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws6{word-spacing:-14.171760px;}
.wsb{word-spacing:-13.882560px;}
.wsd{word-spacing:-13.692360px;}
.ws7{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.464720px;}
.wse{word-spacing:-13.461840px;}
.ws5{word-spacing:-13.450320px;}
.wsa{word-spacing:-13.447440px;}
.ws4{word-spacing:-13.398360px;}
.wsc{word-spacing:-12.725760px;}
.ws9{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._22{margin-left:-196.738560px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._27{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._26{margin-left:-144.360000px;}
._10{margin-left:-141.758400px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._23{margin-left:-120.382560px;}
._11{margin-left:-116.062560px;}
._25{margin-left:-110.154240px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._24{margin-left:-80.453040px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._1a{margin-left:-31.530240px;}
._28{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._29{width:1.317240px;}
._30{width:2.455440px;}
._31{width:3.585600px;}
._34{width:4.692840px;}
._2e{width:5.808240px;}
._2c{width:6.990480px;}
._2d{width:8.043840px;}
._33{width:9.047520px;}
._36{width:10.324800px;}
._32{width:11.533680px;}
._2f{width:15.119280px;}
._35{width:16.411320px;}
._37{width:18.167040px;}
._38{width:24.182520px;}
._39{width:26.256240px;}
._2a{width:32.845680px;}
._2b{width:34.569360px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:61.416000px;}
.y73{bottom:90.396000px;}
.y8a{bottom:90.936000px;}
.yf5{bottom:92.196000px;}
.y61{bottom:92.376000px;}
.yaf{bottom:95.796000px;}
.y2f{bottom:109.656000px;}
.y72{bottom:111.456000px;}
.y89{bottom:111.996000px;}
.yf4{bottom:113.256000px;}
.yae{bottom:116.856000px;}
.y60{bottom:122.436000px;}
.yd1{bottom:125.496000px;}
.y71{bottom:128.736000px;}
.y2e{bottom:130.716000px;}
.y88{bottom:133.056000px;}
.yf3{bottom:134.316000px;}
.yad{bottom:137.916000px;}
.yd0{bottom:146.556000px;}
.y2d{bottom:151.770000px;}
.y5f{bottom:152.490000px;}
.y87{bottom:154.110000px;}
.yf2{bottom:155.370000px;}
.yac{bottom:158.970000px;}
.ycf{bottom:167.610000px;}
.y2c{bottom:172.830000px;}
.y5e{bottom:173.550000px;}
.y86{bottom:175.170000px;}
.yf1{bottom:176.430000px;}
.yab{bottom:180.030000px;}
.yce{bottom:188.670000px;}
.y2b{bottom:193.890000px;}
.y5d{bottom:194.610000px;}
.y85{bottom:196.230000px;}
.yf0{bottom:197.490000px;}
.yaa{bottom:201.090000px;}
.ycd{bottom:209.730000px;}
.y2a{bottom:214.950000px;}
.y5c{bottom:215.670000px;}
.yef{bottom:218.550000px;}
.ya9{bottom:222.150000px;}
.ycc{bottom:230.790000px;}
.y29{bottom:236.010000px;}
.y5b{bottom:236.730000px;}
.yee{bottom:239.610000px;}
.ya8{bottom:243.210000px;}
.ycb{bottom:251.850000px;}
.y28{bottom:257.070000px;}
.y5a{bottom:257.790000px;}
.yed{bottom:260.670000px;}
.ya7{bottom:264.270000px;}
.y84{bottom:266.970000px;}
.yca{bottom:272.910000px;}
.y27{bottom:278.130000px;}
.y59{bottom:278.850000px;}
.yec{bottom:281.730000px;}
.ya6{bottom:285.330000px;}
.yc9{bottom:293.970000px;}
.y26{bottom:299.190000px;}
.yeb{bottom:302.790000px;}
.ya5{bottom:306.390000px;}
.y58{bottom:308.910000px;}
.yc8{bottom:315.030000px;}
.y25{bottom:320.250000px;}
.yea{bottom:323.850000px;}
.ya4{bottom:327.450000px;}
.y57{bottom:330.015000px;}
.yc7{bottom:336.135000px;}
.y83{bottom:337.755000px;}
.y24{bottom:341.355000px;}
.ye9{bottom:344.955000px;}
.ya3{bottom:348.555000px;}
.y56{bottom:351.075000px;}
.yc6{bottom:357.195000px;}
.y82{bottom:358.815000px;}
.y23{bottom:362.415000px;}
.ye8{bottom:366.015000px;}
.ya2{bottom:369.615000px;}
.y55{bottom:372.135000px;}
.yc5{bottom:378.255000px;}
.y81{bottom:379.875000px;}
.y22{bottom:383.475000px;}
.ye7{bottom:387.075000px;}
.ya1{bottom:390.675000px;}
.y54{bottom:393.195000px;}
.yc4{bottom:399.315000px;}
.y80{bottom:400.935000px;}
.y21{bottom:404.355000px;}
.ye6{bottom:408.135000px;}
.ya0{bottom:411.735000px;}
.yc3{bottom:420.375000px;}
.y7f{bottom:421.995000px;}
.y53{bottom:423.255000px;}
.ye5{bottom:429.195000px;}
.y9f{bottom:432.795000px;}
.yc2{bottom:441.435000px;}
.y7e{bottom:443.055000px;}
.y52{bottom:444.315000px;}
.y20{bottom:448.815000px;}
.ye4{bottom:450.255000px;}
.yc1{bottom:462.495000px;}
.y9e{bottom:462.855000px;}
.y7d{bottom:464.115000px;}
.y51{bottom:465.375000px;}
.ye3{bottom:471.315000px;}
.y1f{bottom:478.875000px;}
.yc0{bottom:483.555000px;}
.y50{bottom:486.435000px;}
.ye2{bottom:492.375000px;}
.y1e{bottom:499.935000px;}
.ybf{bottom:504.615000px;}
.y4f{bottom:507.495000px;}
.ye1{bottom:513.435000px;}
.y1d{bottom:520.995000px;}
.y9d{bottom:524.235000px;}
.ybe{bottom:525.675000px;}
.y4e{bottom:528.555000px;}
.y7c{bottom:533.775000px;}
.ye0{bottom:534.495000px;}
.y1c{bottom:542.055000px;}
.ybd{bottom:546.735000px;}
.y4d{bottom:549.615000px;}
.ydf{bottom:555.555000px;}
.y1b{bottom:563.115000px;}
.ybc{bottom:567.795000px;}
.y70{bottom:570.675000px;}
.yde{bottom:576.615000px;}
.y4c{bottom:579.675000px;}
.y1a{bottom:584.175000px;}
.y9c{bottom:585.615000px;}
.ybb{bottom:588.855000px;}
.y6f{bottom:591.735000px;}
.ydd{bottom:597.705000px;}
.y4b{bottom:600.765000px;}
.y7b{bottom:603.465000px;}
.y19{bottom:605.265000px;}
.y9b{bottom:606.705000px;}
.yba{bottom:609.945000px;}
.y6e{bottom:612.825000px;}
.ydc{bottom:618.765000px;}
.y4a{bottom:621.825000px;}
.y7a{bottom:624.525000px;}
.y18{bottom:626.325000px;}
.y9a{bottom:627.765000px;}
.yb9{bottom:631.005000px;}
.y6d{bottom:633.885000px;}
.ydb{bottom:639.825000px;}
.y49{bottom:642.885000px;}
.y79{bottom:645.585000px;}
.y17{bottom:647.385000px;}
.y99{bottom:648.825000px;}
.yb8{bottom:652.065000px;}
.y6c{bottom:654.945000px;}
.yda{bottom:660.885000px;}
.y48{bottom:663.945000px;}
.y78{bottom:666.645000px;}
.y16{bottom:668.445000px;}
.y98{bottom:669.885000px;}
.yb7{bottom:673.125000px;}
.yd9{bottom:681.945000px;}
.y47{bottom:685.005000px;}
.y77{bottom:687.705000px;}
.y15{bottom:689.505000px;}
.y97{bottom:690.945000px;}
.yb6{bottom:694.185000px;}
.yd8{bottom:703.005000px;}
.y6b{bottom:706.065000px;}
.y76{bottom:708.765000px;}
.y14{bottom:710.565000px;}
.y96{bottom:712.005000px;}
.y46{bottom:715.065000px;}
.yb5{bottom:715.245000px;}
.yd7{bottom:724.065000px;}
.y6a{bottom:727.125000px;}
.y75{bottom:729.825000px;}
.y13{bottom:731.625000px;}
.y95{bottom:733.065000px;}
.y45{bottom:736.125000px;}
.yb4{bottom:736.305000px;}
.yd6{bottom:745.125000px;}
.y74{bottom:746.745000px;}
.y69{bottom:748.005000px;}
.y12{bottom:752.685000px;}
.y44{bottom:757.005000px;}
.yb3{bottom:757.365000px;}
.yd5{bottom:766.005000px;}
.y68{bottom:769.065000px;}
.y11{bottom:773.745000px;}
.y43{bottom:778.065000px;}
.yb2{bottom:778.425000px;}
.yd4{bottom:787.065000px;}
.y67{bottom:790.125000px;}
.y10{bottom:794.805000px;}
.y94{bottom:797.865000px;}
.y42{bottom:799.125000px;}
.yb1{bottom:799.485000px;}
.yd3{bottom:808.125000px;}
.yf{bottom:815.865000px;}
.y41{bottom:820.185000px;}
.yd2{bottom:829.185000px;}
.ye{bottom:836.745000px;}
.y66{bottom:841.245000px;}
.y40{bottom:850.245000px;}
.yd{bottom:860.145000px;}
.y65{bottom:862.350000px;}
.y93{bottom:862.710000px;}
.y3f{bottom:871.350000px;}
.yc{bottom:881.250000px;}
.y64{bottom:883.410000px;}
.y92{bottom:883.770000px;}
.y3e{bottom:892.410000px;}
.yb{bottom:903.030000px;}
.y63{bottom:904.470000px;}
.y91{bottom:904.830000px;}
.y3d{bottom:913.470000px;}
.ya{bottom:925.530000px;}
.y90{bottom:925.890000px;}
.y3c{bottom:934.530000px;}
.y62{bottom:946.590000px;}
.y8f{bottom:946.950000px;}
.y9{bottom:950.730000px;}
.y3b{bottom:955.590000px;}
.y8e{bottom:968.010000px;}
.yb0{bottom:972.150000px;}
.y3a{bottom:976.650000px;}
.y8{bottom:984.390000px;}
.y8d{bottom:989.070000px;}
.y39{bottom:997.710000px;}
.y8c{bottom:1010.130000px;}
.y7{bottom:1018.050000px;}
.y38{bottom:1018.770000px;}
.y37{bottom:1039.830000px;}
.y5{bottom:1058.190000px;}
.y36{bottom:1060.890000px;}
.y8b{bottom:1067.010000px;}
.y35{bottom:1081.950000px;}
.y4{bottom:1090.410000px;}
.y34{bottom:1103.010000px;}
.y3{bottom:1122.630000px;}
.y33{bottom:1124.070000px;}
.y32{bottom:1145.160000px;}
.y2{bottom:1154.700000px;}
.y31{bottom:1173.060000px;}
.y1{bottom:1188.720000px;}
.y30{bottom:1193.220000px;}
.h8{height:48.088125px;}
.h7{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:53.999987px;}
.x7{left:75.599987px;}
.xf{left:80.999987px;}
.x10{left:108.035987px;}
.x5{left:181.469987px;}
.x3{left:272.189987px;}
.x9{left:325.874987px;}
.x2{left:350.534987px;}
.x4{left:419.114987px;}
.x1{left:479.264987px;}
.xd{left:598.604987px;}
.xc{left:627.224987px;}
.xa{left:629.564987px;}
.xb{left:636.584987px;}
.xe{left:689.909987px;}
.x8{left:734.189987px;}
@media print{
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1d{letter-spacing:-0.794667pt;}
.lsd{letter-spacing:-0.698667pt;}
.ls1a{letter-spacing:-0.693333pt;}
.ls3{letter-spacing:-0.412267pt;}
.lsc{letter-spacing:-0.368000pt;}
.lsf{letter-spacing:-0.290133pt;}
.ls9{letter-spacing:-0.156267pt;}
.ls2{letter-spacing:-0.117867pt;}
.ls5{letter-spacing:-0.095467pt;}
.ls18{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.049280pt;}
.ls1b{letter-spacing:-0.039040pt;}
.ls1c{letter-spacing:-0.036480pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.034560pt;}
.ls8{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.133333pt;}
.lsa{letter-spacing:0.165867pt;}
.lsb{letter-spacing:0.186240pt;}
.ls19{letter-spacing:0.334933pt;}
.lse{letter-spacing:0.438400pt;}
.ls7{letter-spacing:0.592000pt;}
.ls14{letter-spacing:10.832640pt;}
.ls13{letter-spacing:12.112640pt;}
.ls15{letter-spacing:12.314880pt;}
.ls16{letter-spacing:12.752640pt;}
.ls12{letter-spacing:37.840640pt;}
.ls10{letter-spacing:38.480640pt;}
.ls11{letter-spacing:39.120640pt;}
.ls17{letter-spacing:108.091307pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws6{word-spacing:-12.597120pt;}
.wsb{word-spacing:-12.340053pt;}
.wsd{word-spacing:-12.170987pt;}
.ws7{word-spacing:-12.005120pt;}
.wsf{word-spacing:-11.968640pt;}
.wse{word-spacing:-11.966080pt;}
.ws5{word-spacing:-11.955840pt;}
.wsa{word-spacing:-11.953280pt;}
.ws4{word-spacing:-11.909653pt;}
.wsc{word-spacing:-11.311787pt;}
.ws9{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._22{margin-left:-174.878720pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._27{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._26{margin-left:-128.320000pt;}
._10{margin-left:-126.007467pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._23{margin-left:-107.006720pt;}
._11{margin-left:-103.166720pt;}
._25{margin-left:-97.914880pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._24{margin-left:-71.513813pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._1a{margin-left:-28.026880pt;}
._28{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._29{width:1.170880pt;}
._30{width:2.182613pt;}
._31{width:3.187200pt;}
._34{width:4.171413pt;}
._2e{width:5.162880pt;}
._2c{width:6.213760pt;}
._2d{width:7.150080pt;}
._33{width:8.042240pt;}
._36{width:9.177600pt;}
._32{width:10.252160pt;}
._2f{width:13.439360pt;}
._35{width:14.587840pt;}
._37{width:16.148480pt;}
._38{width:21.495573pt;}
._39{width:23.338880pt;}
._2a{width:29.196160pt;}
._2b{width:30.728320pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:54.592000pt;}
.y73{bottom:80.352000pt;}
.y8a{bottom:80.832000pt;}
.yf5{bottom:81.952000pt;}
.y61{bottom:82.112000pt;}
.yaf{bottom:85.152000pt;}
.y2f{bottom:97.472000pt;}
.y72{bottom:99.072000pt;}
.y89{bottom:99.552000pt;}
.yf4{bottom:100.672000pt;}
.yae{bottom:103.872000pt;}
.y60{bottom:108.832000pt;}
.yd1{bottom:111.552000pt;}
.y71{bottom:114.432000pt;}
.y2e{bottom:116.192000pt;}
.y88{bottom:118.272000pt;}
.yf3{bottom:119.392000pt;}
.yad{bottom:122.592000pt;}
.yd0{bottom:130.272000pt;}
.y2d{bottom:134.906667pt;}
.y5f{bottom:135.546667pt;}
.y87{bottom:136.986667pt;}
.yf2{bottom:138.106667pt;}
.yac{bottom:141.306667pt;}
.ycf{bottom:148.986667pt;}
.y2c{bottom:153.626667pt;}
.y5e{bottom:154.266667pt;}
.y86{bottom:155.706667pt;}
.yf1{bottom:156.826667pt;}
.yab{bottom:160.026667pt;}
.yce{bottom:167.706667pt;}
.y2b{bottom:172.346667pt;}
.y5d{bottom:172.986667pt;}
.y85{bottom:174.426667pt;}
.yf0{bottom:175.546667pt;}
.yaa{bottom:178.746667pt;}
.ycd{bottom:186.426667pt;}
.y2a{bottom:191.066667pt;}
.y5c{bottom:191.706667pt;}
.yef{bottom:194.266667pt;}
.ya9{bottom:197.466667pt;}
.ycc{bottom:205.146667pt;}
.y29{bottom:209.786667pt;}
.y5b{bottom:210.426667pt;}
.yee{bottom:212.986667pt;}
.ya8{bottom:216.186667pt;}
.ycb{bottom:223.866667pt;}
.y28{bottom:228.506667pt;}
.y5a{bottom:229.146667pt;}
.yed{bottom:231.706667pt;}
.ya7{bottom:234.906667pt;}
.y84{bottom:237.306667pt;}
.yca{bottom:242.586667pt;}
.y27{bottom:247.226667pt;}
.y59{bottom:247.866667pt;}
.yec{bottom:250.426667pt;}
.ya6{bottom:253.626667pt;}
.yc9{bottom:261.306667pt;}
.y26{bottom:265.946667pt;}
.yeb{bottom:269.146667pt;}
.ya5{bottom:272.346667pt;}
.y58{bottom:274.586667pt;}
.yc8{bottom:280.026667pt;}
.y25{bottom:284.666667pt;}
.yea{bottom:287.866667pt;}
.ya4{bottom:291.066667pt;}
.y57{bottom:293.346667pt;}
.yc7{bottom:298.786667pt;}
.y83{bottom:300.226667pt;}
.y24{bottom:303.426667pt;}
.ye9{bottom:306.626667pt;}
.ya3{bottom:309.826667pt;}
.y56{bottom:312.066667pt;}
.yc6{bottom:317.506667pt;}
.y82{bottom:318.946667pt;}
.y23{bottom:322.146667pt;}
.ye8{bottom:325.346667pt;}
.ya2{bottom:328.546667pt;}
.y55{bottom:330.786667pt;}
.yc5{bottom:336.226667pt;}
.y81{bottom:337.666667pt;}
.y22{bottom:340.866667pt;}
.ye7{bottom:344.066667pt;}
.ya1{bottom:347.266667pt;}
.y54{bottom:349.506667pt;}
.yc4{bottom:354.946667pt;}
.y80{bottom:356.386667pt;}
.y21{bottom:359.426667pt;}
.ye6{bottom:362.786667pt;}
.ya0{bottom:365.986667pt;}
.yc3{bottom:373.666667pt;}
.y7f{bottom:375.106667pt;}
.y53{bottom:376.226667pt;}
.ye5{bottom:381.506667pt;}
.y9f{bottom:384.706667pt;}
.yc2{bottom:392.386667pt;}
.y7e{bottom:393.826667pt;}
.y52{bottom:394.946667pt;}
.y20{bottom:398.946667pt;}
.ye4{bottom:400.226667pt;}
.yc1{bottom:411.106667pt;}
.y9e{bottom:411.426667pt;}
.y7d{bottom:412.546667pt;}
.y51{bottom:413.666667pt;}
.ye3{bottom:418.946667pt;}
.y1f{bottom:425.666667pt;}
.yc0{bottom:429.826667pt;}
.y50{bottom:432.386667pt;}
.ye2{bottom:437.666667pt;}
.y1e{bottom:444.386667pt;}
.ybf{bottom:448.546667pt;}
.y4f{bottom:451.106667pt;}
.ye1{bottom:456.386667pt;}
.y1d{bottom:463.106667pt;}
.y9d{bottom:465.986667pt;}
.ybe{bottom:467.266667pt;}
.y4e{bottom:469.826667pt;}
.y7c{bottom:474.466667pt;}
.ye0{bottom:475.106667pt;}
.y1c{bottom:481.826667pt;}
.ybd{bottom:485.986667pt;}
.y4d{bottom:488.546667pt;}
.ydf{bottom:493.826667pt;}
.y1b{bottom:500.546667pt;}
.ybc{bottom:504.706667pt;}
.y70{bottom:507.266667pt;}
.yde{bottom:512.546667pt;}
.y4c{bottom:515.266667pt;}
.y1a{bottom:519.266667pt;}
.y9c{bottom:520.546667pt;}
.ybb{bottom:523.426667pt;}
.y6f{bottom:525.986667pt;}
.ydd{bottom:531.293333pt;}
.y4b{bottom:534.013333pt;}
.y7b{bottom:536.413333pt;}
.y19{bottom:538.013333pt;}
.y9b{bottom:539.293333pt;}
.yba{bottom:542.173333pt;}
.y6e{bottom:544.733333pt;}
.ydc{bottom:550.013333pt;}
.y4a{bottom:552.733333pt;}
.y7a{bottom:555.133333pt;}
.y18{bottom:556.733333pt;}
.y9a{bottom:558.013333pt;}
.yb9{bottom:560.893333pt;}
.y6d{bottom:563.453333pt;}
.ydb{bottom:568.733333pt;}
.y49{bottom:571.453333pt;}
.y79{bottom:573.853333pt;}
.y17{bottom:575.453333pt;}
.y99{bottom:576.733333pt;}
.yb8{bottom:579.613333pt;}
.y6c{bottom:582.173333pt;}
.yda{bottom:587.453333pt;}
.y48{bottom:590.173333pt;}
.y78{bottom:592.573333pt;}
.y16{bottom:594.173333pt;}
.y98{bottom:595.453333pt;}
.yb7{bottom:598.333333pt;}
.yd9{bottom:606.173333pt;}
.y47{bottom:608.893333pt;}
.y77{bottom:611.293333pt;}
.y15{bottom:612.893333pt;}
.y97{bottom:614.173333pt;}
.yb6{bottom:617.053333pt;}
.yd8{bottom:624.893333pt;}
.y6b{bottom:627.613333pt;}
.y76{bottom:630.013333pt;}
.y14{bottom:631.613333pt;}
.y96{bottom:632.893333pt;}
.y46{bottom:635.613333pt;}
.yb5{bottom:635.773333pt;}
.yd7{bottom:643.613333pt;}
.y6a{bottom:646.333333pt;}
.y75{bottom:648.733333pt;}
.y13{bottom:650.333333pt;}
.y95{bottom:651.613333pt;}
.y45{bottom:654.333333pt;}
.yb4{bottom:654.493333pt;}
.yd6{bottom:662.333333pt;}
.y74{bottom:663.773333pt;}
.y69{bottom:664.893333pt;}
.y12{bottom:669.053333pt;}
.y44{bottom:672.893333pt;}
.yb3{bottom:673.213333pt;}
.yd5{bottom:680.893333pt;}
.y68{bottom:683.613333pt;}
.y11{bottom:687.773333pt;}
.y43{bottom:691.613333pt;}
.yb2{bottom:691.933333pt;}
.yd4{bottom:699.613333pt;}
.y67{bottom:702.333333pt;}
.y10{bottom:706.493333pt;}
.y94{bottom:709.213333pt;}
.y42{bottom:710.333333pt;}
.yb1{bottom:710.653333pt;}
.yd3{bottom:718.333333pt;}
.yf{bottom:725.213333pt;}
.y41{bottom:729.053333pt;}
.yd2{bottom:737.053333pt;}
.ye{bottom:743.773333pt;}
.y66{bottom:747.773333pt;}
.y40{bottom:755.773333pt;}
.yd{bottom:764.573333pt;}
.y65{bottom:766.533333pt;}
.y93{bottom:766.853333pt;}
.y3f{bottom:774.533333pt;}
.yc{bottom:783.333333pt;}
.y64{bottom:785.253333pt;}
.y92{bottom:785.573333pt;}
.y3e{bottom:793.253333pt;}
.yb{bottom:802.693333pt;}
.y63{bottom:803.973333pt;}
.y91{bottom:804.293333pt;}
.y3d{bottom:811.973333pt;}
.ya{bottom:822.693333pt;}
.y90{bottom:823.013333pt;}
.y3c{bottom:830.693333pt;}
.y62{bottom:841.413333pt;}
.y8f{bottom:841.733333pt;}
.y9{bottom:845.093333pt;}
.y3b{bottom:849.413333pt;}
.y8e{bottom:860.453333pt;}
.yb0{bottom:864.133333pt;}
.y3a{bottom:868.133333pt;}
.y8{bottom:875.013333pt;}
.y8d{bottom:879.173333pt;}
.y39{bottom:886.853333pt;}
.y8c{bottom:897.893333pt;}
.y7{bottom:904.933333pt;}
.y38{bottom:905.573333pt;}
.y37{bottom:924.293333pt;}
.y5{bottom:940.613333pt;}
.y36{bottom:943.013333pt;}
.y8b{bottom:948.453333pt;}
.y35{bottom:961.733333pt;}
.y4{bottom:969.253333pt;}
.y34{bottom:980.453333pt;}
.y3{bottom:997.893333pt;}
.y33{bottom:999.173333pt;}
.y32{bottom:1017.920000pt;}
.y2{bottom:1026.400000pt;}
.y31{bottom:1042.720000pt;}
.y1{bottom:1056.640000pt;}
.y30{bottom:1060.640000pt;}
.h8{height:42.745000pt;}
.h7{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:47.999988pt;}
.x7{left:67.199988pt;}
.xf{left:71.999988pt;}
.x10{left:96.031988pt;}
.x5{left:161.306655pt;}
.x3{left:241.946655pt;}
.x9{left:289.666655pt;}
.x2{left:311.586655pt;}
.x4{left:372.546655pt;}
.x1{left:426.013322pt;}
.xd{left:532.093322pt;}
.xc{left:557.533322pt;}
.xa{left:559.613322pt;}
.xb{left:565.853322pt;}
.xe{left:613.253322pt;}
.x8{left:652.613322pt;}
}




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