
    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_8542bbc3a462390308b37b5e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_2a1bbed32a0dffcdd2797197.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_d13abf6c39650789da872683.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_c6de3b223d6b60b5c54cd9fa.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6a6756b6a59045d523ac50d9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.305400px;}
.ls10{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.100200px;}
.lsd{letter-spacing:-0.053280px;}
.ls13{letter-spacing:-0.008640px;}
.ls11{letter-spacing:-0.004320px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.008640px;}
.ls12{letter-spacing:0.012960px;}
.lse{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.119520px;}
.ls16{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.306720px;}
.lsb{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.512000px;}
.ls15{letter-spacing:41.706720px;}
.ls9{letter-spacing:157.050720px;}
.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:-16.254600px;}
.ws1{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.wse{word-spacing:-15.093600px;}
.wsa{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws2{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.732960px;}
.ws3{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.715680px;}
.wsd{word-spacing:-9.711360px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-2809.957920px;}
._7{margin-left:-1579.518720px;}
._5{margin-left:-1402.989120px;}
._6{margin-left:-938.448000px;}
._b{margin-left:-721.550880px;}
._c{margin-left:-694.460160px;}
._8{margin-left:-576.313920px;}
._13{margin-left:-554.814240px;}
._1d{margin-left:-508.440000px;}
._1e{margin-left:-506.736000px;}
._14{margin-left:-429.500160px;}
._17{margin-left:-328.328640px;}
._12{margin-left:-317.487360px;}
._16{margin-left:-232.740000px;}
._1a{margin-left:-216.720000px;}
._d{margin-left:-215.280000px;}
._11{margin-left:-174.240000px;}
._1b{margin-left:-168.183360px;}
._9{margin-left:-149.040000px;}
._18{margin-left:-145.330560px;}
._a{margin-left:-143.280000px;}
._e{margin-left:-132.480000px;}
._10{margin-left:-130.625280px;}
._f{margin-left:-129.600000px;}
._19{margin-left:-82.080000px;}
._15{margin-left:-66.240000px;}
._1c{margin-left:-49.680000px;}
._33{margin-left:-12.060000px;}
._28{margin-left:-4.100400px;}
._27{margin-left:-3.026880px;}
._4{margin-left:-1.059840px;}
._0{width:1.365120px;}
._1{width:2.673360px;}
._2{width:3.697440px;}
._24{width:4.735920px;}
._25{width:6.480000px;}
._26{width:7.768800px;}
._22{width:9.576000px;}
._21{width:10.629360px;}
._1f{width:12.519840px;}
._20{width:13.576080px;}
._23{width:16.965360px;}
._29{width:18.054720px;}
._2e{width:20.088720px;}
._2b{width:22.589280px;}
._2a{width:23.605200px;}
._2d{width:25.756560px;}
._36{width:29.043360px;}
._31{width:40.338000px;}
._2f{width:51.453360px;}
._30{width:57.309840px;}
._35{width:68.245920px;}
._37{width:81.672240px;}
._34{width:124.480080px;}
._2c{width:167.088960px;}
._32{width:431.796000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(47,84,150);}
.fc2{color:rgb(37,37,37);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y70{bottom:3.240000px;}
.y6f{bottom:20.520000px;}
.ybc{bottom:20.880000px;}
.y6e{bottom:37.800000px;}
.y6d{bottom:54.900000px;}
.yda{bottom:55.080000px;}
.y6{bottom:59.256000px;}
.yd9{bottom:72.360000px;}
.ya2{bottom:87.516000px;}
.yd8{bottom:89.640000px;}
.y6b{bottom:102.456000px;}
.y34{bottom:103.896000px;}
.yd7{bottom:106.740000px;}
.ya1{bottom:107.316000px;}
.ycd{bottom:117.036000px;}
.ya0{bottom:122.076000px;}
.y6a{bottom:122.256000px;}
.y33{bottom:123.876000px;}
.yd6{bottom:124.020000px;}
.yf8{bottom:129.636000px;}
.ycc{bottom:136.836000px;}
.y9f{bottom:139.356000px;}
.yd5{bottom:141.345000px;}
.y69{bottom:142.236000px;}
.y32{bottom:143.676000px;}
.yf7{bottom:149.616000px;}
.y9e{bottom:156.630000px;}
.y68{bottom:162.030000px;}
.y31{bottom:163.470000px;}
.yf6{bottom:169.410000px;}
.y9d{bottom:173.910000px;}
.ycb{bottom:176.430000px;}
.y67{bottom:181.830000px;}
.y30{bottom:183.270000px;}
.yf5{bottom:189.210000px;}
.y9c{bottom:191.190000px;}
.yca{bottom:196.230000px;}
.y66{bottom:201.630000px;}
.y2f{bottom:203.070000px;}
.y9b{bottom:208.290000px;}
.yf4{bottom:209.010000px;}
.yc9{bottom:216.210000px;}
.y65{bottom:221.430000px;}
.y2e{bottom:223.050000px;}
.y9a{bottom:225.570000px;}
.yf3{bottom:228.810000px;}
.yc8{bottom:236.010000px;}
.y64{bottom:241.410000px;}
.y2d{bottom:242.850000px;}
.yf2{bottom:248.790000px;}
.yc7{bottom:255.810000px;}
.y99{bottom:260.130000px;}
.y63{bottom:261.210000px;}
.y2c{bottom:262.650000px;}
.yf1{bottom:268.590000px;}
.yc6{bottom:275.610000px;}
.y98{bottom:277.410000px;}
.y62{bottom:281.010000px;}
.y2b{bottom:282.495000px;}
.yf0{bottom:288.435000px;}
.yc5{bottom:290.415000px;}
.y97{bottom:294.735000px;}
.y61{bottom:300.855000px;}
.y2a{bottom:304.635000px;}
.yc4{bottom:307.695000px;}
.yef{bottom:308.235000px;}
.y96{bottom:311.835000px;}
.y60{bottom:320.655000px;}
.y29{bottom:324.435000px;}
.yc3{bottom:324.975000px;}
.yee{bottom:328.035000px;}
.y95{bottom:329.115000px;}
.y5f{bottom:340.635000px;}
.yc2{bottom:342.255000px;}
.y28{bottom:344.235000px;}
.y94{bottom:346.395000px;}
.yed{bottom:348.015000px;}
.y5e{bottom:360.435000px;}
.y93{bottom:363.675000px;}
.y27{bottom:364.035000px;}
.yec{bottom:367.815000px;}
.yc1{bottom:376.635000px;}
.y5d{bottom:380.235000px;}
.y92{bottom:380.955000px;}
.y26{bottom:384.015000px;}
.yeb{bottom:387.615000px;}
.yc0{bottom:393.915000px;}
.y91{bottom:398.055000px;}
.y25{bottom:403.815000px;}
.yea{bottom:407.415000px;}
.y5c{bottom:409.035000px;}
.ybf{bottom:411.195000px;}
.y90{bottom:415.335000px;}
.y24{bottom:423.615000px;}
.ye9{bottom:427.215000px;}
.y5b{bottom:428.835000px;}
.y8f{bottom:432.615000px;}
.y23{bottom:443.415000px;}
.ybe{bottom:445.755000px;}
.ye8{bottom:447.195000px;}
.y5a{bottom:448.815000px;}
.y8e{bottom:449.895000px;}
.y22{bottom:463.215000px;}
.ye7{bottom:466.995000px;}
.y8d{bottom:467.175000px;}
.y59{bottom:468.615000px;}
.ybd{bottom:480.135000px;}
.y21{bottom:483.195000px;}
.y8c{bottom:484.455000px;}
.ye6{bottom:486.795000px;}
.y58{bottom:488.415000px;}
.ybb{bottom:497.415000px;}
.y8b{bottom:501.555000px;}
.y20{bottom:502.995000px;}
.ye5{bottom:506.595000px;}
.y57{bottom:508.215000px;}
.y8a{bottom:518.835000px;}
.y1f{bottom:522.795000px;}
.ye4{bottom:526.395000px;}
.y56{bottom:528.015000px;}
.yba{bottom:533.055000px;}
.y89{bottom:536.115000px;}
.y1e{bottom:542.595000px;}
.ye3{bottom:546.375000px;}
.y55{bottom:547.995000px;}
.y88{bottom:553.395000px;}
.y1d{bottom:562.395000px;}
.ye2{bottom:566.205000px;}
.y54{bottom:567.825000px;}
.y87{bottom:570.705000px;}
.yb9{bottom:574.125000px;}
.y1c{bottom:582.405000px;}
.ye1{bottom:586.005000px;}
.y53{bottom:587.625000px;}
.y86{bottom:587.985000px;}
.yb8{bottom:593.925000px;}
.y1b{bottom:602.205000px;}
.y85{bottom:605.085000px;}
.ye0{bottom:605.805000px;}
.y52{bottom:607.425000px;}
.yb7{bottom:613.905000px;}
.y1a{bottom:622.005000px;}
.y84{bottom:622.365000px;}
.ydf{bottom:625.605000px;}
.y51{bottom:627.225000px;}
.yb6{bottom:633.705000px;}
.y83{bottom:639.645000px;}
.y19{bottom:641.805000px;}
.yde{bottom:645.585000px;}
.y50{bottom:647.205000px;}
.yb5{bottom:653.505000px;}
.y82{bottom:656.925000px;}
.y18{bottom:661.605000px;}
.ydd{bottom:665.385000px;}
.y4f{bottom:667.005000px;}
.yb4{bottom:673.305000px;}
.y81{bottom:674.205000px;}
.y17{bottom:681.585000px;}
.ydc{bottom:685.185000px;}
.y4e{bottom:686.805000px;}
.y80{bottom:691.305000px;}
.yb3{bottom:693.105000px;}
.y16{bottom:701.385000px;}
.ydb{bottom:704.985000px;}
.y4d{bottom:706.605000px;}
.y7f{bottom:708.585000px;}
.yb2{bottom:713.085000px;}
.yd4{bottom:719.745000px;}
.y15{bottom:721.185000px;}
.y4c{bottom:726.405000px;}
.y7e{bottom:726.585000px;}
.yb1{bottom:732.885000px;}
.y14{bottom:740.985000px;}
.y4b{bottom:746.385000px;}
.y7d{bottom:750.345000px;}
.yb0{bottom:752.685000px;}
.y13{bottom:760.785000px;}
.y4a{bottom:766.185000px;}
.y7c{bottom:770.325000px;}
.yaf{bottom:772.485000px;}
.y12{bottom:780.765000px;}
.y49{bottom:785.985000px;}
.y7b{bottom:790.125000px;}
.yae{bottom:792.285000px;}
.y11{bottom:800.385000px;}
.y48{bottom:805.785000px;}
.yad{bottom:807.225000px;}
.y7a{bottom:809.925000px;}
.y10{bottom:822.705000px;}
.yac{bottom:824.325000px;}
.y47{bottom:825.585000px;}
.y79{bottom:829.725000px;}
.yab{bottom:841.605000px;}
.yf{bottom:842.505000px;}
.y46{bottom:845.565000px;}
.y78{bottom:849.570000px;}
.yaa{bottom:858.930000px;}
.y45{bottom:865.410000px;}
.ye{bottom:867.570000px;}
.y77{bottom:869.550000px;}
.yd3{bottom:875.130000px;}
.ya9{bottom:876.210000px;}
.yd{bottom:882.150000px;}
.y44{bottom:885.210000px;}
.y76{bottom:889.350000px;}
.yd2{bottom:892.410000px;}
.ya8{bottom:893.490000px;}
.y43{bottom:905.010000px;}
.yc{bottom:907.170000px;}
.y75{bottom:909.150000px;}
.yd1{bottom:909.510000px;}
.ya7{bottom:910.770000px;}
.yb{bottom:922.470000px;}
.y42{bottom:924.810000px;}
.yd0{bottom:926.790000px;}
.ya6{bottom:927.870000px;}
.y74{bottom:928.950000px;}
.ya{bottom:943.710000px;}
.ycf{bottom:944.070000px;}
.y41{bottom:944.790000px;}
.ya5{bottom:945.150000px;}
.yce{bottom:961.350000px;}
.y73{bottom:961.710000px;}
.ya4{bottom:962.430000px;}
.y40{bottom:964.590000px;}
.y9{bottom:967.110000px;}
.ya3{bottom:980.430000px;}
.y3f{bottom:984.390000px;}
.y72{bottom:996.990000px;}
.y8{bottom:998.790000px;}
.y3e{bottom:1004.190000px;}
.y3d{bottom:1023.990000px;}
.y7{bottom:1030.650000px;}
.y71{bottom:1032.270000px;}
.y3c{bottom:1043.970000px;}
.y3b{bottom:1063.770000px;}
.y6c{bottom:1067.550000px;}
.y5{bottom:1068.990000px;}
.y3a{bottom:1083.570000px;}
.y4{bottom:1099.770000px;}
.y39{bottom:1103.370000px;}
.y38{bottom:1123.170000px;}
.y3{bottom:1130.760000px;}
.y37{bottom:1143.180000px;}
.y2{bottom:1161.540000px;}
.y36{bottom:1172.520000px;}
.y1{bottom:1193.040000px;}
.y35{bottom:1194.300000px;}
.hf{height:17.100000px;}
.he{height:17.280000px;}
.h10{height:17.316000px;}
.h13{height:34.380000px;}
.hd{height:34.560000px;}
.h11{height:34.596000px;}
.h12{height:34.920000px;}
.h7{height:38.158594px;}
.h9{height:58.621992px;}
.h8{height:58.651172px;}
.ha{height:59.038594px;}
.h5{height:60.226875px;}
.hb{height:61.423863px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.hc{height:68.976000px;}
.h2{height:72.562500px;}
.h4{height:96.508125px;}
.h14{height:155.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:42.516000px;}
.w10{width:54.720000px;}
.w11{width:55.620000px;}
.w15{width:63.720000px;}
.wa{width:73.980000px;}
.w19{width:74.556000px;}
.w14{width:81.036000px;}
.w13{width:84.420000px;}
.w12{width:84.456000px;}
.wd{width:102.780000px;}
.w8{width:106.020000px;}
.wc{width:106.056000px;}
.w18{width:113.400000px;}
.w1a{width:114.120000px;}
.w7{width:136.836000px;}
.w4{width:169.590000px;}
.w9{width:175.350000px;}
.w5{width:198.750000px;}
.w3{width:198.930000px;}
.wf{width:222.510000px;}
.w17{width:228.450000px;}
.w16{width:246.675000px;}
.w6{width:283.170000px;}
.wb{width:418.575000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.020000px;}
.x16{left:8.100000px;}
.x1{left:54.179987px;}
.x19{left:57.960000px;}
.x3{left:62.460000px;}
.xf{left:70.200000px;}
.x1e{left:80.999987px;}
.x8{left:95.796000px;}
.x1f{left:108.035987px;}
.x10{left:112.716000px;}
.xc{left:169.770000px;}
.x5{left:262.110000px;}
.x1a{left:304.635000px;}
.x11{left:335.235000px;}
.x9{left:378.975000px;}
.x12{left:389.955000px;}
.x6{left:432.435000px;}
.x13{left:445.575000px;}
.xa{left:515.805000px;}
.x14{left:530.025000px;}
.x1b{left:533.085000px;}
.xd{left:588.345000px;}
.x15{left:614.445000px;}
.xb{left:621.825000px;}
.x7{left:631.905000px;}
.x1c{left:646.485000px;}
.xe{left:694.410000px;}
.x17{left:695.490000px;}
.x1d{left:721.050000px;}
.x18{left:759.210000px;}
.x2{left:795.749987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.089067pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:-0.007680pt;}
.ls11{letter-spacing:-0.003840pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.007680pt;}
.ls12{letter-spacing:0.011520pt;}
.lse{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.106240pt;}
.ls16{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.272640pt;}
.lsb{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.344000pt;}
.ls15{letter-spacing:37.072640pt;}
.ls9{letter-spacing:139.600640pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws2{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.651520pt;}
.ws3{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.636160pt;}
.wsd{word-spacing:-8.632320pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-2497.740373pt;}
._7{margin-left:-1404.016640pt;}
._5{margin-left:-1247.101440pt;}
._6{margin-left:-834.176000pt;}
._b{margin-left:-641.378560pt;}
._c{margin-left:-617.297920pt;}
._8{margin-left:-512.279040pt;}
._13{margin-left:-493.168213pt;}
._1d{margin-left:-451.946667pt;}
._1e{margin-left:-450.432000pt;}
._14{margin-left:-381.777920pt;}
._17{margin-left:-291.847680pt;}
._12{margin-left:-282.210987pt;}
._16{margin-left:-206.880000pt;}
._1a{margin-left:-192.640000pt;}
._d{margin-left:-191.360000pt;}
._11{margin-left:-154.880000pt;}
._1b{margin-left:-149.496320pt;}
._9{margin-left:-132.480000pt;}
._18{margin-left:-129.182720pt;}
._a{margin-left:-127.360000pt;}
._e{margin-left:-117.760000pt;}
._10{margin-left:-116.111360pt;}
._f{margin-left:-115.200000pt;}
._19{margin-left:-72.960000pt;}
._15{margin-left:-58.880000pt;}
._1c{margin-left:-44.160000pt;}
._33{margin-left:-10.720000pt;}
._28{margin-left:-3.644800pt;}
._27{margin-left:-2.690560pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.213440pt;}
._1{width:2.376320pt;}
._2{width:3.286613pt;}
._24{width:4.209707pt;}
._25{width:5.760000pt;}
._26{width:6.905600pt;}
._22{width:8.512000pt;}
._21{width:9.448320pt;}
._1f{width:11.128747pt;}
._20{width:12.067627pt;}
._23{width:15.080320pt;}
._29{width:16.048640pt;}
._2e{width:17.856640pt;}
._2b{width:20.079360pt;}
._2a{width:20.982400pt;}
._2d{width:22.894720pt;}
._36{width:25.816320pt;}
._31{width:35.856000pt;}
._2f{width:45.736320pt;}
._30{width:50.942080pt;}
._35{width:60.663040pt;}
._37{width:72.597547pt;}
._34{width:110.648960pt;}
._2c{width:148.523520pt;}
._32{width:383.818667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:2.880000pt;}
.y6f{bottom:18.240000pt;}
.ybc{bottom:18.560000pt;}
.y6e{bottom:33.600000pt;}
.y6d{bottom:48.800000pt;}
.yda{bottom:48.960000pt;}
.y6{bottom:52.672000pt;}
.yd9{bottom:64.320000pt;}
.ya2{bottom:77.792000pt;}
.yd8{bottom:79.680000pt;}
.y6b{bottom:91.072000pt;}
.y34{bottom:92.352000pt;}
.yd7{bottom:94.880000pt;}
.ya1{bottom:95.392000pt;}
.ycd{bottom:104.032000pt;}
.ya0{bottom:108.512000pt;}
.y6a{bottom:108.672000pt;}
.y33{bottom:110.112000pt;}
.yd6{bottom:110.240000pt;}
.yf8{bottom:115.232000pt;}
.ycc{bottom:121.632000pt;}
.y9f{bottom:123.872000pt;}
.yd5{bottom:125.640000pt;}
.y69{bottom:126.432000pt;}
.y32{bottom:127.712000pt;}
.yf7{bottom:132.992000pt;}
.y9e{bottom:139.226667pt;}
.y68{bottom:144.026667pt;}
.y31{bottom:145.306667pt;}
.yf6{bottom:150.586667pt;}
.y9d{bottom:154.586667pt;}
.ycb{bottom:156.826667pt;}
.y67{bottom:161.626667pt;}
.y30{bottom:162.906667pt;}
.yf5{bottom:168.186667pt;}
.y9c{bottom:169.946667pt;}
.yca{bottom:174.426667pt;}
.y66{bottom:179.226667pt;}
.y2f{bottom:180.506667pt;}
.y9b{bottom:185.146667pt;}
.yf4{bottom:185.786667pt;}
.yc9{bottom:192.186667pt;}
.y65{bottom:196.826667pt;}
.y2e{bottom:198.266667pt;}
.y9a{bottom:200.506667pt;}
.yf3{bottom:203.386667pt;}
.yc8{bottom:209.786667pt;}
.y64{bottom:214.586667pt;}
.y2d{bottom:215.866667pt;}
.yf2{bottom:221.146667pt;}
.yc7{bottom:227.386667pt;}
.y99{bottom:231.226667pt;}
.y63{bottom:232.186667pt;}
.y2c{bottom:233.466667pt;}
.yf1{bottom:238.746667pt;}
.yc6{bottom:244.986667pt;}
.y98{bottom:246.586667pt;}
.y62{bottom:249.786667pt;}
.y2b{bottom:251.106667pt;}
.yf0{bottom:256.386667pt;}
.yc5{bottom:258.146667pt;}
.y97{bottom:261.986667pt;}
.y61{bottom:267.426667pt;}
.y2a{bottom:270.786667pt;}
.yc4{bottom:273.506667pt;}
.yef{bottom:273.986667pt;}
.y96{bottom:277.186667pt;}
.y60{bottom:285.026667pt;}
.y29{bottom:288.386667pt;}
.yc3{bottom:288.866667pt;}
.yee{bottom:291.586667pt;}
.y95{bottom:292.546667pt;}
.y5f{bottom:302.786667pt;}
.yc2{bottom:304.226667pt;}
.y28{bottom:305.986667pt;}
.y94{bottom:307.906667pt;}
.yed{bottom:309.346667pt;}
.y5e{bottom:320.386667pt;}
.y93{bottom:323.266667pt;}
.y27{bottom:323.586667pt;}
.yec{bottom:326.946667pt;}
.yc1{bottom:334.786667pt;}
.y5d{bottom:337.986667pt;}
.y92{bottom:338.626667pt;}
.y26{bottom:341.346667pt;}
.yeb{bottom:344.546667pt;}
.yc0{bottom:350.146667pt;}
.y91{bottom:353.826667pt;}
.y25{bottom:358.946667pt;}
.yea{bottom:362.146667pt;}
.y5c{bottom:363.586667pt;}
.ybf{bottom:365.506667pt;}
.y90{bottom:369.186667pt;}
.y24{bottom:376.546667pt;}
.ye9{bottom:379.746667pt;}
.y5b{bottom:381.186667pt;}
.y8f{bottom:384.546667pt;}
.y23{bottom:394.146667pt;}
.ybe{bottom:396.226667pt;}
.ye8{bottom:397.506667pt;}
.y5a{bottom:398.946667pt;}
.y8e{bottom:399.906667pt;}
.y22{bottom:411.746667pt;}
.ye7{bottom:415.106667pt;}
.y8d{bottom:415.266667pt;}
.y59{bottom:416.546667pt;}
.ybd{bottom:426.786667pt;}
.y21{bottom:429.506667pt;}
.y8c{bottom:430.626667pt;}
.ye6{bottom:432.706667pt;}
.y58{bottom:434.146667pt;}
.ybb{bottom:442.146667pt;}
.y8b{bottom:445.826667pt;}
.y20{bottom:447.106667pt;}
.ye5{bottom:450.306667pt;}
.y57{bottom:451.746667pt;}
.y8a{bottom:461.186667pt;}
.y1f{bottom:464.706667pt;}
.ye4{bottom:467.906667pt;}
.y56{bottom:469.346667pt;}
.yba{bottom:473.826667pt;}
.y89{bottom:476.546667pt;}
.y1e{bottom:482.306667pt;}
.ye3{bottom:485.666667pt;}
.y55{bottom:487.106667pt;}
.y88{bottom:491.906667pt;}
.y1d{bottom:499.906667pt;}
.ye2{bottom:503.293333pt;}
.y54{bottom:504.733333pt;}
.y87{bottom:507.293333pt;}
.yb9{bottom:510.333333pt;}
.y1c{bottom:517.693333pt;}
.ye1{bottom:520.893333pt;}
.y53{bottom:522.333333pt;}
.y86{bottom:522.653333pt;}
.yb8{bottom:527.933333pt;}
.y1b{bottom:535.293333pt;}
.y85{bottom:537.853333pt;}
.ye0{bottom:538.493333pt;}
.y52{bottom:539.933333pt;}
.yb7{bottom:545.693333pt;}
.y1a{bottom:552.893333pt;}
.y84{bottom:553.213333pt;}
.ydf{bottom:556.093333pt;}
.y51{bottom:557.533333pt;}
.yb6{bottom:563.293333pt;}
.y83{bottom:568.573333pt;}
.y19{bottom:570.493333pt;}
.yde{bottom:573.853333pt;}
.y50{bottom:575.293333pt;}
.yb5{bottom:580.893333pt;}
.y82{bottom:583.933333pt;}
.y18{bottom:588.093333pt;}
.ydd{bottom:591.453333pt;}
.y4f{bottom:592.893333pt;}
.yb4{bottom:598.493333pt;}
.y81{bottom:599.293333pt;}
.y17{bottom:605.853333pt;}
.ydc{bottom:609.053333pt;}
.y4e{bottom:610.493333pt;}
.y80{bottom:614.493333pt;}
.yb3{bottom:616.093333pt;}
.y16{bottom:623.453333pt;}
.ydb{bottom:626.653333pt;}
.y4d{bottom:628.093333pt;}
.y7f{bottom:629.853333pt;}
.yb2{bottom:633.853333pt;}
.yd4{bottom:639.773333pt;}
.y15{bottom:641.053333pt;}
.y4c{bottom:645.693333pt;}
.y7e{bottom:645.853333pt;}
.yb1{bottom:651.453333pt;}
.y14{bottom:658.653333pt;}
.y4b{bottom:663.453333pt;}
.y7d{bottom:666.973333pt;}
.yb0{bottom:669.053333pt;}
.y13{bottom:676.253333pt;}
.y4a{bottom:681.053333pt;}
.y7c{bottom:684.733333pt;}
.yaf{bottom:686.653333pt;}
.y12{bottom:694.013333pt;}
.y49{bottom:698.653333pt;}
.y7b{bottom:702.333333pt;}
.yae{bottom:704.253333pt;}
.y11{bottom:711.453333pt;}
.y48{bottom:716.253333pt;}
.yad{bottom:717.533333pt;}
.y7a{bottom:719.933333pt;}
.y10{bottom:731.293333pt;}
.yac{bottom:732.733333pt;}
.y47{bottom:733.853333pt;}
.y79{bottom:737.533333pt;}
.yab{bottom:748.093333pt;}
.yf{bottom:748.893333pt;}
.y46{bottom:751.613333pt;}
.y78{bottom:755.173333pt;}
.yaa{bottom:763.493333pt;}
.y45{bottom:769.253333pt;}
.ye{bottom:771.173333pt;}
.y77{bottom:772.933333pt;}
.yd3{bottom:777.893333pt;}
.ya9{bottom:778.853333pt;}
.yd{bottom:784.133333pt;}
.y44{bottom:786.853333pt;}
.y76{bottom:790.533333pt;}
.yd2{bottom:793.253333pt;}
.ya8{bottom:794.213333pt;}
.y43{bottom:804.453333pt;}
.yc{bottom:806.373333pt;}
.y75{bottom:808.133333pt;}
.yd1{bottom:808.453333pt;}
.ya7{bottom:809.573333pt;}
.yb{bottom:819.973333pt;}
.y42{bottom:822.053333pt;}
.yd0{bottom:823.813333pt;}
.ya6{bottom:824.773333pt;}
.y74{bottom:825.733333pt;}
.ya{bottom:838.853333pt;}
.ycf{bottom:839.173333pt;}
.y41{bottom:839.813333pt;}
.ya5{bottom:840.133333pt;}
.yce{bottom:854.533333pt;}
.y73{bottom:854.853333pt;}
.ya4{bottom:855.493333pt;}
.y40{bottom:857.413333pt;}
.y9{bottom:859.653333pt;}
.ya3{bottom:871.493333pt;}
.y3f{bottom:875.013333pt;}
.y72{bottom:886.213333pt;}
.y8{bottom:887.813333pt;}
.y3e{bottom:892.613333pt;}
.y3d{bottom:910.213333pt;}
.y7{bottom:916.133333pt;}
.y71{bottom:917.573333pt;}
.y3c{bottom:927.973333pt;}
.y3b{bottom:945.573333pt;}
.y6c{bottom:948.933333pt;}
.y5{bottom:950.213333pt;}
.y3a{bottom:963.173333pt;}
.y4{bottom:977.573333pt;}
.y39{bottom:980.773333pt;}
.y38{bottom:998.373333pt;}
.y3{bottom:1005.120000pt;}
.y37{bottom:1016.160000pt;}
.y2{bottom:1032.480000pt;}
.y36{bottom:1042.240000pt;}
.y1{bottom:1060.480000pt;}
.y35{bottom:1061.600000pt;}
.hf{height:15.200000pt;}
.he{height:15.360000pt;}
.h10{height:15.392000pt;}
.h13{height:30.560000pt;}
.hd{height:30.720000pt;}
.h11{height:30.752000pt;}
.h12{height:31.040000pt;}
.h7{height:33.918750pt;}
.h9{height:52.108438pt;}
.h8{height:52.134375pt;}
.ha{height:52.478750pt;}
.h5{height:53.535000pt;}
.hb{height:54.598989pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.hc{height:61.312000pt;}
.h2{height:64.500000pt;}
.h4{height:85.785000pt;}
.h14{height:138.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:37.792000pt;}
.w10{width:48.640000pt;}
.w11{width:49.440000pt;}
.w15{width:56.640000pt;}
.wa{width:65.760000pt;}
.w19{width:66.272000pt;}
.w14{width:72.032000pt;}
.w13{width:75.040000pt;}
.w12{width:75.072000pt;}
.wd{width:91.360000pt;}
.w8{width:94.240000pt;}
.wc{width:94.272000pt;}
.w18{width:100.800000pt;}
.w1a{width:101.440000pt;}
.w7{width:121.632000pt;}
.w4{width:150.746667pt;}
.w9{width:155.866667pt;}
.w5{width:176.666667pt;}
.w3{width:176.826667pt;}
.wf{width:197.786667pt;}
.w17{width:203.066667pt;}
.w16{width:219.266667pt;}
.w6{width:251.706667pt;}
.wb{width:372.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.240000pt;}
.x16{left:7.200000pt;}
.x1{left:48.159988pt;}
.x19{left:51.520000pt;}
.x3{left:55.520000pt;}
.xf{left:62.400000pt;}
.x1e{left:71.999988pt;}
.x8{left:85.152000pt;}
.x1f{left:96.031988pt;}
.x10{left:100.192000pt;}
.xc{left:150.906667pt;}
.x5{left:232.986667pt;}
.x1a{left:270.786667pt;}
.x11{left:297.986667pt;}
.x9{left:336.866667pt;}
.x12{left:346.626667pt;}
.x6{left:384.386667pt;}
.x13{left:396.066667pt;}
.xa{left:458.493333pt;}
.x14{left:471.133333pt;}
.x1b{left:473.853333pt;}
.xd{left:522.973333pt;}
.x15{left:546.173333pt;}
.xb{left:552.733333pt;}
.x7{left:561.693333pt;}
.x1c{left:574.653333pt;}
.xe{left:617.253333pt;}
.x17{left:618.213333pt;}
.x1d{left:640.933333pt;}
.x18{left:674.853333pt;}
.x2{left:707.333322pt;}
}




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