
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_d773c9fc15236bf7bec7b60d.woff2')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_b3ba758c6a7767535def251f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a09efa4cb57acd3b4f3029ff.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0bbf882b98115fdaf0e4254f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_e486b9a353fa8fb654b36e75.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-0.948000px;}
.ls22{letter-spacing:-0.786000px;}
.ls5{letter-spacing:-0.463800px;}
.ls7{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.228000px;}
.ls9{letter-spacing:-0.115800px;}
.ls24{letter-spacing:-0.115200px;}
.ls29{letter-spacing:-0.107400px;}
.ls11{letter-spacing:-0.078600px;}
.ls16{letter-spacing:-0.067200px;}
.lsb{letter-spacing:-0.064800px;}
.ls21{letter-spacing:-0.058320px;}
.ls13{letter-spacing:-0.001440px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.037200px;}
.ls28{letter-spacing:0.060600px;}
.ls1a{letter-spacing:0.140400px;}
.ls3{letter-spacing:0.174240px;}
.ls10{letter-spacing:0.175200px;}
.ls20{letter-spacing:0.179280px;}
.ls23{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.lsd{letter-spacing:0.306000px;}
.ls15{letter-spacing:0.309000px;}
.lsa{letter-spacing:0.393600px;}
.ls12{letter-spacing:0.479400px;}
.lsc{letter-spacing:0.479520px;}
.ls18{letter-spacing:0.637200px;}
.ls19{letter-spacing:0.858000px;}
.ls1e{letter-spacing:0.894240px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.lse{letter-spacing:2.826720px;}
.ls26{letter-spacing:3.054240px;}
.ls25{letter-spacing:3.774240px;}
.ls27{letter-spacing:12.186720px;}
.ls1b{letter-spacing:22.986720px;}
.ls1f{letter-spacing:42.426720px;}
.ls1d{letter-spacing:131.130720px;}
.ls1c{letter-spacing:134.010720px;}
.lsf{letter-spacing:185.589120px;}
.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:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsf{word-spacing:-13.814760px;}
.wsc{word-spacing:-13.811760px;}
.ws11{word-spacing:-13.685040px;}
.wsb{word-spacing:-13.680960px;}
.ws7{word-spacing:-13.505760px;}
.wse{word-spacing:-13.504320px;}
.ws10{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.427160px;}
.ws13{word-spacing:-13.398360px;}
.ws12{word-spacing:-13.390560px;}
.ws9{word-spacing:-13.389960px;}
.ws8{word-spacing:-13.277760px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.426880px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1003.789440px;}
._5{margin-left:-582.156960px;}
._1d{margin-left:-6.676320px;}
._7{margin-left:-4.329600px;}
._6{margin-left:-3.312000px;}
._14{margin-left:-2.271600px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._a{width:3.104640px;}
._9{width:4.543200px;}
._b{width:6.094080px;}
._d{width:7.351920px;}
._e{width:8.912640px;}
._11{width:10.418880px;}
._c{width:12.050880px;}
._12{width:14.860320px;}
._13{width:16.055520px;}
._18{width:17.079600px;}
._8{width:19.918080px;}
._15{width:20.989200px;}
._f{width:22.111200px;}
._10{width:23.166960px;}
._1b{width:52.037520px;}
._17{width:74.227440px;}
._16{width:78.138000px;}
._1a{width:147.054240px;}
._19{width:149.811840px;}
._1c{width:189.132480px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y86{bottom:3.960000px;}
.y88{bottom:4.140000px;}
.y6e{bottom:6.840000px;}
.y72{bottom:6.876000px;}
.y76{bottom:7.020000px;}
.y79{bottom:7.065000px;}
.y7b{bottom:7.200000px;}
.y94{bottom:8.640000px;}
.ya5{bottom:9.540000px;}
.yb1{bottom:9.720000px;}
.yec{bottom:9.765000px;}
.yaf{bottom:9.900000px;}
.y74{bottom:13.065000px;}
.yf2{bottom:28.260000px;}
.yef{bottom:35.460000px;}
.yf1{bottom:49.500000px;}
.y6{bottom:58.320000px;}
.yf0{bottom:70.770000px;}
.yd0{bottom:86.400000px;}
.ye9{bottom:92.520000px;}
.y31{bottom:103.680000px;}
.y9e{bottom:106.560000px;}
.ycf{bottom:107.460000px;}
.y59{bottom:112.140000px;}
.ye8{bottom:113.580000px;}
.y30{bottom:124.740000px;}
.y9d{bottom:127.656000px;}
.yce{bottom:128.556000px;}
.y58{bottom:133.236000px;}
.ye7{bottom:134.676000px;}
.y2f{bottom:145.836000px;}
.y9c{bottom:148.716000px;}
.ycd{bottom:149.616000px;}
.y71{bottom:150.150000px;}
.y57{bottom:154.290000px;}
.ye6{bottom:155.730000px;}
.y2e{bottom:166.890000px;}
.y9b{bottom:169.770000px;}
.ycc{bottom:170.670000px;}
.y56{bottom:175.350000px;}
.y70{bottom:175.530000px;}
.ye5{bottom:176.790000px;}
.y2d{bottom:187.950000px;}
.y9a{bottom:190.830000px;}
.ycb{bottom:191.730000px;}
.y55{bottom:196.410000px;}
.ye4{bottom:197.850000px;}
.y6f{bottom:200.730000px;}
.y2c{bottom:209.010000px;}
.y99{bottom:211.890000px;}
.yca{bottom:212.790000px;}
.y54{bottom:217.470000px;}
.ye3{bottom:218.910000px;}
.y6d{bottom:226.110000px;}
.y2b{bottom:230.070000px;}
.y98{bottom:232.950000px;}
.yc9{bottom:233.850000px;}
.y53{bottom:238.530000px;}
.ye2{bottom:239.970000px;}
.y2a{bottom:251.130000px;}
.y97{bottom:254.010000px;}
.yc8{bottom:254.730000px;}
.y6c{bottom:258.330000px;}
.y52{bottom:259.590000px;}
.ye1{bottom:261.030000px;}
.y29{bottom:272.190000px;}
.yc7{bottom:275.790000px;}
.y96{bottom:277.770000px;}
.y6b{bottom:279.390000px;}
.y51{bottom:280.650000px;}
.ye0{bottom:282.090000px;}
.y28{bottom:293.250000px;}
.yc6{bottom:296.850000px;}
.y6a{bottom:300.450000px;}
.y50{bottom:301.710000px;}
.y95{bottom:301.890000px;}
.ydf{bottom:303.150000px;}
.y27{bottom:314.310000px;}
.yc5{bottom:317.910000px;}
.y69{bottom:321.510000px;}
.y4f{bottom:322.770000px;}
.yde{bottom:324.210000px;}
.y93{bottom:326.190000px;}
.y26{bottom:335.370000px;}
.yc4{bottom:338.970000px;}
.y4e{bottom:339.870000px;}
.y68{bottom:342.570000px;}
.ydd{bottom:345.270000px;}
.y25{bottom:356.430000px;}
.y92{bottom:357.150000px;}
.yc3{bottom:360.030000px;}
.y67{bottom:363.630000px;}
.ydc{bottom:366.330000px;}
.yc2{bottom:374.790000px;}
.y24{bottom:377.490000px;}
.y91{bottom:378.210000px;}
.y66{bottom:384.735000px;}
.ydb{bottom:387.435000px;}
.yc1{bottom:397.155000px;}
.y23{bottom:398.415000px;}
.y90{bottom:399.315000px;}
.y65{bottom:405.795000px;}
.yda{bottom:408.495000px;}
.yc0{bottom:419.295000px;}
.y22{bottom:419.475000px;}
.y8f{bottom:420.375000px;}
.yd9{bottom:429.555000px;}
.y64{bottom:435.855000px;}
.y21{bottom:440.535000px;}
.y8e{bottom:441.435000px;}
.ybf{bottom:441.615000px;}
.yd8{bottom:450.615000px;}
.y63{bottom:456.915000px;}
.y20{bottom:461.595000px;}
.y8d{bottom:462.495000px;}
.ybe{bottom:463.755000px;}
.yd7{bottom:471.675000px;}
.y62{bottom:477.975000px;}
.y1f{bottom:482.655000px;}
.ybd{bottom:485.895000px;}
.y8c{bottom:492.555000px;}
.yd6{bottom:492.735000px;}
.y61{bottom:499.035000px;}
.y1e{bottom:503.715000px;}
.y8b{bottom:513.615000px;}
.yd5{bottom:513.795000px;}
.y60{bottom:520.095000px;}
.ybc{bottom:520.635000px;}
.y1d{bottom:524.775000px;}
.yd4{bottom:534.855000px;}
.y8a{bottom:537.375000px;}
.y5f{bottom:541.155000px;}
.ybb{bottom:541.695000px;}
.y1c{bottom:545.835000px;}
.yd3{bottom:555.915000px;}
.y5e{bottom:562.215000px;}
.yba{bottom:562.755000px;}
.y1b{bottom:566.895000px;}
.yee{bottom:569.415000px;}
.yd2{bottom:576.975000px;}
.y5d{bottom:583.275000px;}
.yb9{bottom:583.815000px;}
.y89{bottom:587.235000px;}
.y1a{bottom:587.955000px;}
.yd1{bottom:598.035000px;}
.y5c{bottom:604.335000px;}
.yb8{bottom:604.875000px;}
.y19{bottom:609.015000px;}
.y87{bottom:612.255000px;}
.y4d{bottom:619.095000px;}
.y5b{bottom:625.395000px;}
.yb7{bottom:625.935000px;}
.y18{bottom:630.075000px;}
.y85{bottom:637.305000px;}
.y4c{bottom:640.185000px;}
.y5a{bottom:642.345000px;}
.yb6{bottom:647.025000px;}
.y17{bottom:651.165000px;}
.y4b{bottom:661.245000px;}
.yb5{bottom:668.085000px;}
.y84{bottom:669.165000px;}
.y16{bottom:674.385000px;}
.y4a{bottom:682.305000px;}
.yb4{bottom:689.145000px;}
.y83{bottom:690.225000px;}
.y49{bottom:703.365000px;}
.y15{bottom:704.625000px;}
.yb3{bottom:710.205000px;}
.y82{bottom:711.285000px;}
.y48{bottom:724.425000px;}
.y14{bottom:725.685000px;}
.y73{bottom:729.360000px;}
.y81{bottom:732.165000px;}
.yb2{bottom:733.965000px;}
.y47{bottom:745.485000px;}
.y13{bottom:746.745000px;}
.y80{bottom:753.225000px;}
.yb0{bottom:758.985000px;}
.y46{bottom:766.365000px;}
.y12{bottom:767.805000px;}
.y7f{bottom:774.285000px;}
.yae{bottom:784.185000px;}
.y45{bottom:787.425000px;}
.y11{bottom:788.865000px;}
.y7e{bottom:795.345000px;}
.y44{bottom:808.485000px;}
.y10{bottom:809.925000px;}
.y7d{bottom:816.405000px;}
.y43{bottom:829.545000px;}
.yf{bottom:830.985000px;}
.yad{bottom:837.465000px;}
.y7c{bottom:840.165000px;}
.yed{bottom:847.005000px;}
.y42{bottom:850.605000px;}
.ye{bottom:852.045000px;}
.yac{bottom:858.525000px;}
.y7a{bottom:861.765000px;}
.y41{bottom:871.665000px;}
.yd{bottom:872.925000px;}
.yeb{bottom:874.725000px;}
.yab{bottom:879.585000px;}
.y78{bottom:883.725000px;}
.y40{bottom:892.770000px;}
.yc{bottom:896.370000px;}
.yaa{bottom:900.690000px;}
.yea{bottom:902.670000px;}
.y77{bottom:905.550000px;}
.y3f{bottom:913.830000px;}
.ya9{bottom:921.750000px;}
.yb{bottom:922.650000px;}
.y75{bottom:927.330000px;}
.y3e{bottom:934.890000px;}
.ya{bottom:939.390000px;}
.ya8{bottom:942.810000px;}
.y3d{bottom:955.950000px;}
.y9{bottom:961.710000px;}
.ya7{bottom:963.870000px;}
.y3c{bottom:977.010000px;}
.ya6{bottom:984.930000px;}
.y8{bottom:986.730000px;}
.y3b{bottom:998.070000px;}
.ya4{bottom:999.510000px;}
.y3a{bottom:1019.130000px;}
.y7{bottom:1020.390000px;}
.ya3{bottom:1027.230000px;}
.y39{bottom:1040.190000px;}
.ya2{bottom:1049.550000px;}
.y5{bottom:1060.710000px;}
.y38{bottom:1061.250000px;}
.ya1{bottom:1071.870000px;}
.y37{bottom:1082.310000px;}
.y4{bottom:1092.930000px;}
.ya0{bottom:1094.190000px;}
.y36{bottom:1103.370000px;}
.y9f{bottom:1116.330000px;}
.y35{bottom:1124.430000px;}
.y3{bottom:1124.970000px;}
.y34{bottom:1145.520000px;}
.y2{bottom:1157.220000px;}
.y33{bottom:1173.420000px;}
.y1{bottom:1191.780000px;}
.y32{bottom:1193.580000px;}
.h19{height:2.864531px;}
.h10{height:18.180000px;}
.h11{height:18.360000px;}
.h16{height:18.396000px;}
.ha{height:21.060000px;}
.hb{height:21.096000px;}
.hd{height:21.240000px;}
.he{height:21.276000px;}
.hf{height:21.420000px;}
.h12{height:22.860000px;}
.h13{height:23.760000px;}
.h15{height:23.940000px;}
.h17{height:23.976000px;}
.h14{height:24.120000px;}
.hc{height:27.360000px;}
.h7{height:38.671172px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h9{height:61.423863px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h18{height:84.996000px;}
.h4{height:98.051133px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:5.940000px;}
.w6{width:75.456000px;}
.w7{width:82.620000px;}
.wa{width:84.456000px;}
.w9{width:86.220000px;}
.w8{width:93.816000px;}
.w10{width:116.820000px;}
.wf{width:121.140000px;}
.wb{width:134.640000px;}
.w11{width:148.176000px;}
.wd{width:157.170000px;}
.w13{width:169.560000px;}
.w3{width:170.130000px;}
.w14{width:180.210000px;}
.wc{width:185.610000px;}
.w12{width:191.010000px;}
.we{width:193.350000px;}
.w15{width:210.810000px;}
.w4{width:326.775000px;}
.w16{width:581.010000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.460000px;}
.x1{left:53.999987px;}
.x1b{left:59.399987px;}
.x1e{left:60.659987px;}
.x3{left:64.799987px;}
.x2{left:70.199987px;}
.x1c{left:80.999987px;}
.x1d{left:108.035987px;}
.x16{left:188.130000px;}
.x1f{left:191.370000px;}
.x7{left:198.030000px;}
.xb{left:241.590000px;}
.xa{left:251.100000px;}
.x20{left:264.810000px;}
.x19{left:271.515000px;}
.xf{left:293.835000px;}
.x11{left:300.135000px;}
.xc{left:317.595000px;}
.x14{left:320.835000px;}
.x17{left:336.675000px;}
.x9{left:368.535000px;}
.x6{left:400.574987px;}
.x5{left:413.894987px;}
.x10{left:428.835000px;}
.x15{left:438.195000px;}
.x1a{left:441.435000px;}
.x12{left:457.665000px;}
.x13{left:486.105000px;}
.xd{left:494.925000px;}
.x18{left:528.225000px;}
.xe{left:581.685000px;}
.x4{left:710.069987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-0.842667pt;}
.ls22{letter-spacing:-0.698667pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.202667pt;}
.ls9{letter-spacing:-0.102933pt;}
.ls24{letter-spacing:-0.102400pt;}
.ls29{letter-spacing:-0.095467pt;}
.ls11{letter-spacing:-0.069867pt;}
.ls16{letter-spacing:-0.059733pt;}
.lsb{letter-spacing:-0.057600pt;}
.ls21{letter-spacing:-0.051840pt;}
.ls13{letter-spacing:-0.001280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.033067pt;}
.ls28{letter-spacing:0.053867pt;}
.ls1a{letter-spacing:0.124800pt;}
.ls3{letter-spacing:0.154880pt;}
.ls10{letter-spacing:0.155733pt;}
.ls20{letter-spacing:0.159360pt;}
.ls23{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.lsd{letter-spacing:0.272000pt;}
.ls15{letter-spacing:0.274667pt;}
.lsa{letter-spacing:0.349867pt;}
.ls12{letter-spacing:0.426133pt;}
.lsc{letter-spacing:0.426240pt;}
.ls18{letter-spacing:0.566400pt;}
.ls19{letter-spacing:0.762667pt;}
.ls1e{letter-spacing:0.794880pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.lse{letter-spacing:2.512640pt;}
.ls26{letter-spacing:2.714880pt;}
.ls25{letter-spacing:3.354880pt;}
.ls27{letter-spacing:10.832640pt;}
.ls1b{letter-spacing:20.432640pt;}
.ls1f{letter-spacing:37.712640pt;}
.ls1d{letter-spacing:116.560640pt;}
.ls1c{letter-spacing:119.120640pt;}
.lsf{letter-spacing:164.968107pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsf{word-spacing:-12.279787pt;}
.wsc{word-spacing:-12.277120pt;}
.ws11{word-spacing:-12.164480pt;}
.wsb{word-spacing:-12.160853pt;}
.ws7{word-spacing:-12.005120pt;}
.wse{word-spacing:-12.003840pt;}
.ws10{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.935253pt;}
.ws13{word-spacing:-11.909653pt;}
.ws12{word-spacing:-11.902720pt;}
.ws9{word-spacing:-11.902187pt;}
.ws8{word-spacing:-11.802453pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.490560pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-892.257280pt;}
._5{margin-left:-517.472853pt;}
._1d{margin-left:-5.934507pt;}
._7{margin-left:-3.848533pt;}
._6{margin-left:-2.944000pt;}
._14{margin-left:-2.019200pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._a{width:2.759680pt;}
._9{width:4.038400pt;}
._b{width:5.416960pt;}
._d{width:6.535040pt;}
._e{width:7.922347pt;}
._11{width:9.261227pt;}
._c{width:10.711893pt;}
._12{width:13.209173pt;}
._13{width:14.271573pt;}
._18{width:15.181867pt;}
._8{width:17.704960pt;}
._15{width:18.657067pt;}
._f{width:19.654400pt;}
._10{width:20.592853pt;}
._1b{width:46.255573pt;}
._17{width:65.979947pt;}
._16{width:69.456000pt;}
._1a{width:130.714880pt;}
._19{width:133.166080pt;}
._1c{width:168.117760pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:3.520000pt;}
.y88{bottom:3.680000pt;}
.y6e{bottom:6.080000pt;}
.y72{bottom:6.112000pt;}
.y76{bottom:6.240000pt;}
.y79{bottom:6.280000pt;}
.y7b{bottom:6.400000pt;}
.y94{bottom:7.680000pt;}
.ya5{bottom:8.480000pt;}
.yb1{bottom:8.640000pt;}
.yec{bottom:8.680000pt;}
.yaf{bottom:8.800000pt;}
.y74{bottom:11.613333pt;}
.yf2{bottom:25.120000pt;}
.yef{bottom:31.520000pt;}
.yf1{bottom:44.000000pt;}
.y6{bottom:51.840000pt;}
.yf0{bottom:62.906667pt;}
.yd0{bottom:76.800000pt;}
.ye9{bottom:82.240000pt;}
.y31{bottom:92.160000pt;}
.y9e{bottom:94.720000pt;}
.ycf{bottom:95.520000pt;}
.y59{bottom:99.680000pt;}
.ye8{bottom:100.960000pt;}
.y30{bottom:110.880000pt;}
.y9d{bottom:113.472000pt;}
.yce{bottom:114.272000pt;}
.y58{bottom:118.432000pt;}
.ye7{bottom:119.712000pt;}
.y2f{bottom:129.632000pt;}
.y9c{bottom:132.192000pt;}
.ycd{bottom:132.992000pt;}
.y71{bottom:133.466667pt;}
.y57{bottom:137.146667pt;}
.ye6{bottom:138.426667pt;}
.y2e{bottom:148.346667pt;}
.y9b{bottom:150.906667pt;}
.ycc{bottom:151.706667pt;}
.y56{bottom:155.866667pt;}
.y70{bottom:156.026667pt;}
.ye5{bottom:157.146667pt;}
.y2d{bottom:167.066667pt;}
.y9a{bottom:169.626667pt;}
.ycb{bottom:170.426667pt;}
.y55{bottom:174.586667pt;}
.ye4{bottom:175.866667pt;}
.y6f{bottom:178.426667pt;}
.y2c{bottom:185.786667pt;}
.y99{bottom:188.346667pt;}
.yca{bottom:189.146667pt;}
.y54{bottom:193.306667pt;}
.ye3{bottom:194.586667pt;}
.y6d{bottom:200.986667pt;}
.y2b{bottom:204.506667pt;}
.y98{bottom:207.066667pt;}
.yc9{bottom:207.866667pt;}
.y53{bottom:212.026667pt;}
.ye2{bottom:213.306667pt;}
.y2a{bottom:223.226667pt;}
.y97{bottom:225.786667pt;}
.yc8{bottom:226.426667pt;}
.y6c{bottom:229.626667pt;}
.y52{bottom:230.746667pt;}
.ye1{bottom:232.026667pt;}
.y29{bottom:241.946667pt;}
.yc7{bottom:245.146667pt;}
.y96{bottom:246.906667pt;}
.y6b{bottom:248.346667pt;}
.y51{bottom:249.466667pt;}
.ye0{bottom:250.746667pt;}
.y28{bottom:260.666667pt;}
.yc6{bottom:263.866667pt;}
.y6a{bottom:267.066667pt;}
.y50{bottom:268.186667pt;}
.y95{bottom:268.346667pt;}
.ydf{bottom:269.466667pt;}
.y27{bottom:279.386667pt;}
.yc5{bottom:282.586667pt;}
.y69{bottom:285.786667pt;}
.y4f{bottom:286.906667pt;}
.yde{bottom:288.186667pt;}
.y93{bottom:289.946667pt;}
.y26{bottom:298.106667pt;}
.yc4{bottom:301.306667pt;}
.y4e{bottom:302.106667pt;}
.y68{bottom:304.506667pt;}
.ydd{bottom:306.906667pt;}
.y25{bottom:316.826667pt;}
.y92{bottom:317.466667pt;}
.yc3{bottom:320.026667pt;}
.y67{bottom:323.226667pt;}
.ydc{bottom:325.626667pt;}
.yc2{bottom:333.146667pt;}
.y24{bottom:335.546667pt;}
.y91{bottom:336.186667pt;}
.y66{bottom:341.986667pt;}
.ydb{bottom:344.386667pt;}
.yc1{bottom:353.026667pt;}
.y23{bottom:354.146667pt;}
.y90{bottom:354.946667pt;}
.y65{bottom:360.706667pt;}
.yda{bottom:363.106667pt;}
.yc0{bottom:372.706667pt;}
.y22{bottom:372.866667pt;}
.y8f{bottom:373.666667pt;}
.yd9{bottom:381.826667pt;}
.y64{bottom:387.426667pt;}
.y21{bottom:391.586667pt;}
.y8e{bottom:392.386667pt;}
.ybf{bottom:392.546667pt;}
.yd8{bottom:400.546667pt;}
.y63{bottom:406.146667pt;}
.y20{bottom:410.306667pt;}
.y8d{bottom:411.106667pt;}
.ybe{bottom:412.226667pt;}
.yd7{bottom:419.266667pt;}
.y62{bottom:424.866667pt;}
.y1f{bottom:429.026667pt;}
.ybd{bottom:431.906667pt;}
.y8c{bottom:437.826667pt;}
.yd6{bottom:437.986667pt;}
.y61{bottom:443.586667pt;}
.y1e{bottom:447.746667pt;}
.y8b{bottom:456.546667pt;}
.yd5{bottom:456.706667pt;}
.y60{bottom:462.306667pt;}
.ybc{bottom:462.786667pt;}
.y1d{bottom:466.466667pt;}
.yd4{bottom:475.426667pt;}
.y8a{bottom:477.666667pt;}
.y5f{bottom:481.026667pt;}
.ybb{bottom:481.506667pt;}
.y1c{bottom:485.186667pt;}
.yd3{bottom:494.146667pt;}
.y5e{bottom:499.746667pt;}
.yba{bottom:500.226667pt;}
.y1b{bottom:503.906667pt;}
.yee{bottom:506.146667pt;}
.yd2{bottom:512.866667pt;}
.y5d{bottom:518.466667pt;}
.yb9{bottom:518.946667pt;}
.y89{bottom:521.986667pt;}
.y1a{bottom:522.626667pt;}
.yd1{bottom:531.586667pt;}
.y5c{bottom:537.186667pt;}
.yb8{bottom:537.666667pt;}
.y19{bottom:541.346667pt;}
.y87{bottom:544.226667pt;}
.y4d{bottom:550.306667pt;}
.y5b{bottom:555.906667pt;}
.yb7{bottom:556.386667pt;}
.y18{bottom:560.066667pt;}
.y85{bottom:566.493333pt;}
.y4c{bottom:569.053333pt;}
.y5a{bottom:570.973333pt;}
.yb6{bottom:575.133333pt;}
.y17{bottom:578.813333pt;}
.y4b{bottom:587.773333pt;}
.yb5{bottom:593.853333pt;}
.y84{bottom:594.813333pt;}
.y16{bottom:599.453333pt;}
.y4a{bottom:606.493333pt;}
.yb4{bottom:612.573333pt;}
.y83{bottom:613.533333pt;}
.y49{bottom:625.213333pt;}
.y15{bottom:626.333333pt;}
.yb3{bottom:631.293333pt;}
.y82{bottom:632.253333pt;}
.y48{bottom:643.933333pt;}
.y14{bottom:645.053333pt;}
.y73{bottom:648.320000pt;}
.y81{bottom:650.813333pt;}
.yb2{bottom:652.413333pt;}
.y47{bottom:662.653333pt;}
.y13{bottom:663.773333pt;}
.y80{bottom:669.533333pt;}
.yb0{bottom:674.653333pt;}
.y46{bottom:681.213333pt;}
.y12{bottom:682.493333pt;}
.y7f{bottom:688.253333pt;}
.yae{bottom:697.053333pt;}
.y45{bottom:699.933333pt;}
.y11{bottom:701.213333pt;}
.y7e{bottom:706.973333pt;}
.y44{bottom:718.653333pt;}
.y10{bottom:719.933333pt;}
.y7d{bottom:725.693333pt;}
.y43{bottom:737.373333pt;}
.yf{bottom:738.653333pt;}
.yad{bottom:744.413333pt;}
.y7c{bottom:746.813333pt;}
.yed{bottom:752.893333pt;}
.y42{bottom:756.093333pt;}
.ye{bottom:757.373333pt;}
.yac{bottom:763.133333pt;}
.y7a{bottom:766.013333pt;}
.y41{bottom:774.813333pt;}
.yd{bottom:775.933333pt;}
.yeb{bottom:777.533333pt;}
.yab{bottom:781.853333pt;}
.y78{bottom:785.533333pt;}
.y40{bottom:793.573333pt;}
.yc{bottom:796.773333pt;}
.yaa{bottom:800.613333pt;}
.yea{bottom:802.373333pt;}
.y77{bottom:804.933333pt;}
.y3f{bottom:812.293333pt;}
.ya9{bottom:819.333333pt;}
.yb{bottom:820.133333pt;}
.y75{bottom:824.293333pt;}
.y3e{bottom:831.013333pt;}
.ya{bottom:835.013333pt;}
.ya8{bottom:838.053333pt;}
.y3d{bottom:849.733333pt;}
.y9{bottom:854.853333pt;}
.ya7{bottom:856.773333pt;}
.y3c{bottom:868.453333pt;}
.ya6{bottom:875.493333pt;}
.y8{bottom:877.093333pt;}
.y3b{bottom:887.173333pt;}
.ya4{bottom:888.453333pt;}
.y3a{bottom:905.893333pt;}
.y7{bottom:907.013333pt;}
.ya3{bottom:913.093333pt;}
.y39{bottom:924.613333pt;}
.ya2{bottom:932.933333pt;}
.y5{bottom:942.853333pt;}
.y38{bottom:943.333333pt;}
.ya1{bottom:952.773333pt;}
.y37{bottom:962.053333pt;}
.y4{bottom:971.493333pt;}
.ya0{bottom:972.613333pt;}
.y36{bottom:980.773333pt;}
.y9f{bottom:992.293333pt;}
.y35{bottom:999.493333pt;}
.y3{bottom:999.973333pt;}
.y34{bottom:1018.240000pt;}
.y2{bottom:1028.640000pt;}
.y33{bottom:1043.040000pt;}
.y1{bottom:1059.360000pt;}
.y32{bottom:1060.960000pt;}
.h19{height:2.546250pt;}
.h10{height:16.160000pt;}
.h11{height:16.320000pt;}
.h16{height:16.352000pt;}
.ha{height:18.720000pt;}
.hb{height:18.752000pt;}
.hd{height:18.880000pt;}
.he{height:18.912000pt;}
.hf{height:19.040000pt;}
.h12{height:20.320000pt;}
.h13{height:21.120000pt;}
.h15{height:21.280000pt;}
.h17{height:21.312000pt;}
.h14{height:21.440000pt;}
.hc{height:24.320000pt;}
.h7{height:34.374375pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h9{height:54.598989pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h18{height:75.552000pt;}
.h4{height:87.156562pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:5.280000pt;}
.w6{width:67.072000pt;}
.w7{width:73.440000pt;}
.wa{width:75.072000pt;}
.w9{width:76.640000pt;}
.w8{width:83.392000pt;}
.w10{width:103.840000pt;}
.wf{width:107.680000pt;}
.wb{width:119.680000pt;}
.w11{width:131.712000pt;}
.wd{width:139.706667pt;}
.w13{width:150.720000pt;}
.w3{width:151.226667pt;}
.w14{width:160.186667pt;}
.wc{width:164.986667pt;}
.w12{width:169.786667pt;}
.we{width:171.866667pt;}
.w15{width:187.386667pt;}
.w4{width:290.466667pt;}
.w16{width:516.453333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.520000pt;}
.x1{left:47.999988pt;}
.x1b{left:52.799988pt;}
.x1e{left:53.919988pt;}
.x3{left:57.599988pt;}
.x2{left:62.399988pt;}
.x1c{left:71.999988pt;}
.x1d{left:96.031988pt;}
.x16{left:167.226667pt;}
.x1f{left:170.106667pt;}
.x7{left:176.026667pt;}
.xb{left:214.746667pt;}
.xa{left:223.200000pt;}
.x20{left:235.386667pt;}
.x19{left:241.346667pt;}
.xf{left:261.186667pt;}
.x11{left:266.786667pt;}
.xc{left:282.306667pt;}
.x14{left:285.186667pt;}
.x17{left:299.266667pt;}
.x9{left:327.586667pt;}
.x6{left:356.066655pt;}
.x5{left:367.906655pt;}
.x10{left:381.186667pt;}
.x15{left:389.506667pt;}
.x1a{left:392.386667pt;}
.x12{left:406.813333pt;}
.x13{left:432.093333pt;}
.xd{left:439.933333pt;}
.x18{left:469.533333pt;}
.xe{left:517.053333pt;}
.x4{left:631.173322pt;}
}




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