
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_d38cb439c33357ab45b88d85.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ee2228425df1d7be49eb174c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b1106bb479b2195c33cd69f2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9bce5680bba31f2a01bfdae1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_eca4fe0e3f7f2de5c6c055ef.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0fe0022ca0872c851a9d2ca5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.762207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3f71676872728c5f7f53db3f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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:ffb;src:url('chunks/assets/font_e4879e7a962cbe9fdecfb4f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.762207;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:ffc;src:url('chunks/assets/font_0fe0022ca0872c851a9d2ca5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.762207;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:ffd;src:url('chunks/assets/font_4c2df51694fe0bd80a13365c.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:-61.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls4{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.226200px;}
.ls8{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.lse{letter-spacing:0.978000px;}
.lsf{letter-spacing:46.026720px;}
.lsc{letter-spacing:182.826720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.284000px;}
.ws6{word-spacing:-12.888000px;}
.ws2{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws8{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._12{margin-left:-2.151360px;}
._0{margin-left:-1.093680px;}
._1{width:1.374480px;}
._3{width:2.862000px;}
._2{width:4.135680px;}
._4{width:5.752560px;}
._9{width:7.182000px;}
._8{width:8.331600px;}
._7{width:9.450000px;}
._d{width:10.577520px;}
._c{width:12.474000px;}
._10{width:13.820400px;}
._6{width:15.557520px;}
._5{width:16.794000px;}
._f{width:18.100080px;}
._e{width:20.079360px;}
._b{width:21.486720px;}
._a{width:22.518000px;}
._13{width:24.203040px;}
._11{width:25.218720px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs4{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fsc{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.440000px;}
.y4f{bottom:2.700000px;}
.y45{bottom:3.765000px;}
.y5d{bottom:5.010000px;}
.y4e{bottom:10.260000px;}
.y2{bottom:14.040000px;}
.y5b{bottom:14.760000px;}
.y44{bottom:21.045000px;}
.y4{bottom:32.760000px;}
.y5a{bottom:35.280000px;}
.y43{bottom:38.325000px;}
.y4d{bottom:40.320000px;}
.y59{bottom:50.760000px;}
.y4c{bottom:52.020000px;}
.y42{bottom:55.425000px;}
.y3{bottom:56.370000px;}
.y7{bottom:57.600000px;}
.y4b{bottom:64.980000px;}
.y58{bottom:68.220000px;}
.y41{bottom:72.345000px;}
.y4a{bottom:78.120000px;}
.y57{bottom:84.060000px;}
.y46{bottom:90.540000px;}
.yef{bottom:96.480000px;}
.y56{bottom:96.660000px;}
.y40{bottom:98.985000px;}
.y49{bottom:99.900000px;}
.y55{bottom:103.140000px;}
.y94{bottom:105.480000px;}
.yee{bottom:113.580000px;}
.y3f{bottom:116.265000px;}
.y54{bottom:118.980000px;}
.y93{bottom:122.580000px;}
.yed{bottom:130.860000px;}
.y3e{bottom:133.545000px;}
.y53{bottom:134.670000px;}
.y92{bottom:139.500000px;}
.yc5{bottom:139.860000px;}
.yec{bottom:148.140000px;}
.y52{bottom:150.150000px;}
.y3d{bottom:150.645000px;}
.yc4{bottom:157.140000px;}
.y48{bottom:162.030000px;}
.yeb{bottom:165.420000px;}
.y51{bottom:165.630000px;}
.y91{bottom:166.140000px;}
.y3c{bottom:167.970000px;}
.y47{bottom:172.650000px;}
.yc3{bottom:174.420000px;}
.y50{bottom:180.750000px;}
.yea{bottom:182.700000px;}
.y90{bottom:183.420000px;}
.y3b{bottom:185.250000px;}
.yc2{bottom:191.340000px;}
.ye9{bottom:199.980000px;}
.y8f{bottom:200.700000px;}
.y3a{bottom:202.530000px;}
.ye8{bottom:217.110000px;}
.y8e{bottom:218.010000px;}
.y39{bottom:219.810000px;}
.ye7{bottom:234.390000px;}
.y8d{bottom:234.750000px;}
.yc1{bottom:235.110000px;}
.y38{bottom:236.730000px;}
.ye6{bottom:251.310000px;}
.yc0{bottom:252.390000px;}
.y37{bottom:258.330000px;}
.y8c{bottom:261.390000px;}
.ybf{bottom:269.670000px;}
.y36{bottom:273.810000px;}
.ye5{bottom:277.950000px;}
.y8b{bottom:278.670000px;}
.ybe{bottom:286.590000px;}
.y35{bottom:289.290000px;}
.yd{bottom:293.085000px;}
.ye4{bottom:295.230000px;}
.y8a{bottom:295.950000px;}
.y34{bottom:304.950000px;}
.ye3{bottom:312.510000px;}
.y89{bottom:313.230000px;}
.y33{bottom:320.430000px;}
.ye2{bottom:329.610000px;}
.y88{bottom:330.150000px;}
.ybd{bottom:330.510000px;}
.y32{bottom:335.910000px;}
.ye1{bottom:346.890000px;}
.ybc{bottom:347.610000px;}
.y31{bottom:351.390000px;}
.y87{bottom:356.610000px;}
.ye0{bottom:363.810000px;}
.ybb{bottom:364.890000px;}
.y30{bottom:367.050000px;}
.y86{bottom:373.890000px;}
.yba{bottom:382.170000px;}
.y2f{bottom:382.530000px;}
.y1b{bottom:390.120000px;}
.ydf{bottom:390.450000px;}
.y85{bottom:391.170000px;}
.y2e{bottom:398.040000px;}
.yb9{bottom:399.450000px;}
.y1a{bottom:405.960000px;}
.yde{bottom:407.730000px;}
.y84{bottom:408.450000px;}
.y2d{bottom:413.520000px;}
.yb8{bottom:416.730000px;}
.ydd{bottom:424.830000px;}
.y83{bottom:425.370000px;}
.y2c{bottom:429.180000px;}
.y19{bottom:430.080000px;}
.yb7{bottom:433.830000px;}
.ydc{bottom:442.110000px;}
.y2b{bottom:444.660000px;}
.yb6{bottom:451.155000px;}
.y82{bottom:451.875000px;}
.y18{bottom:454.200000px;}
.ydb{bottom:459.075000px;}
.y2a{bottom:460.140000px;}
.yb5{bottom:468.435000px;}
.y81{bottom:469.155000px;}
.y29{bottom:475.620000px;}
.y17{bottom:478.320000px;}
.yb4{bottom:485.715000px;}
.y80{bottom:486.435000px;}
.y28{bottom:491.100000px;}
.y16{bottom:502.440000px;}
.yb3{bottom:502.635000px;}
.yda{bottom:502.995000px;}
.y7f{bottom:503.715000px;}
.y27{bottom:506.760000px;}
.yd9{bottom:520.275000px;}
.y7e{bottom:520.635000px;}
.y26{bottom:522.240000px;}
.y15{bottom:526.740000px;}
.yb2{bottom:529.275000px;}
.yd8{bottom:537.375000px;}
.y25{bottom:537.720000px;}
.yb1{bottom:546.375000px;}
.y7d{bottom:547.275000px;}
.y14{bottom:550.860000px;}
.y24{bottom:553.200000px;}
.yd7{bottom:554.655000px;}
.yb0{bottom:563.655000px;}
.y7c{bottom:564.375000px;}
.y23{bottom:568.860000px;}
.yd6{bottom:571.575000px;}
.y13{bottom:574.980000px;}
.yaf{bottom:580.935000px;}
.y7b{bottom:581.655000px;}
.y22{bottom:584.340000px;}
.yae{bottom:598.215000px;}
.y7a{bottom:598.935000px;}
.y12{bottom:599.100000px;}
.y21{bottom:599.820000px;}
.yf5{bottom:602.535000px;}
.yad{bottom:615.135000px;}
.y20{bottom:615.300000px;}
.yd5{bottom:615.495000px;}
.y79{bottom:616.215000px;}
.yf4{bottom:622.695000px;}
.y11{bottom:623.220000px;}
.y1f{bottom:631.005000px;}
.yd4{bottom:632.775000px;}
.y78{bottom:633.135000px;}
.yac{bottom:641.775000px;}
.yf3{bottom:642.495000px;}
.y1e{bottom:646.485000px;}
.y10{bottom:647.385000px;}
.yd3{bottom:649.875000px;}
.yab{bottom:658.875000px;}
.y77{bottom:659.775000px;}
.y1d{bottom:661.965000px;}
.yd2{bottom:667.155000px;}
.yf{bottom:671.505000px;}
.yaa{bottom:676.155000px;}
.y76{bottom:676.875000px;}
.yd1{bottom:684.105000px;}
.y1c{bottom:692.745000px;}
.ya9{bottom:693.465000px;}
.y75{bottom:694.185000px;}
.ye{bottom:695.805000px;}
.ya8{bottom:710.745000px;}
.y74{bottom:711.465000px;}
.ya7{bottom:727.665000px;}
.yd0{bottom:728.025000px;}
.y73{bottom:728.385000px;}
.yf2{bottom:728.745000px;}
.ycf{bottom:745.305000px;}
.yf1{bottom:745.665000px;}
.ya6{bottom:754.305000px;}
.y72{bottom:755.025000px;}
.yce{bottom:762.405000px;}
.ya5{bottom:771.405000px;}
.y71{bottom:772.305000px;}
.ycd{bottom:779.685000px;}
.ya4{bottom:788.685000px;}
.y70{bottom:789.405000px;}
.ycc{bottom:796.605000px;}
.ya3{bottom:805.965000px;}
.y6f{bottom:806.685000px;}
.ya2{bottom:823.245000px;}
.y6e{bottom:823.965000px;}
.ya1{bottom:840.165000px;}
.ycb{bottom:840.525000px;}
.y6d{bottom:841.245000px;}
.yca{bottom:857.625000px;}
.y6c{bottom:858.525000px;}
.ya0{bottom:866.625000px;}
.yc9{bottom:874.905000px;}
.y6b{bottom:875.625000px;}
.y9f{bottom:883.905000px;}
.yc8{bottom:892.185000px;}
.y6a{bottom:892.905000px;}
.y9e{bottom:901.185000px;}
.yc7{bottom:909.105000px;}
.y69{bottom:910.185000px;}
.y9d{bottom:918.510000px;}
.y68{bottom:927.510000px;}
.y9c{bottom:935.790000px;}
.y67{bottom:944.790000px;}
.y9b{bottom:953.070000px;}
.y66{bottom:962.070000px;}
.y9a{bottom:970.170000px;}
.y65{bottom:979.170000px;}
.y99{bottom:987.450000px;}
.y64{bottom:996.450000px;}
.yc{bottom:1000.950000px;}
.yc6{bottom:1004.370000px;}
.y98{bottom:1004.730000px;}
.yb{bottom:1006.170000px;}
.y63{bottom:1013.730000px;}
.y97{bottom:1022.010000px;}
.ya{bottom:1022.910000px;}
.y62{bottom:1031.010000px;}
.y96{bottom:1039.290000px;}
.y61{bottom:1048.290000px;}
.y9{bottom:1053.690000px;}
.y95{bottom:1056.210000px;}
.y60{bottom:1065.570000px;}
.y8{bottom:1081.950000px;}
.y5f{bottom:1082.670000px;}
.y5c{bottom:1085.400000px;}
.yf0{bottom:1099.590000px;}
.y5e{bottom:1099.950000px;}
.y6{bottom:1113.810000px;}
.y1{bottom:1115.250000px;}
.h18{height:5.650313px;}
.h11{height:5.653125px;}
.h8{height:5.729063px;}
.hd{height:5.805000px;}
.h7{height:17.903320px;}
.h1c{height:27.540000px;}
.h16{height:29.678906px;}
.h15{height:35.332031px;}
.h10{height:40.985156px;}
.h1e{height:41.726953px;}
.hf{height:42.086250px;}
.h1b{height:42.690322px;}
.h13{height:44.507812px;}
.h20{height:44.820000px;}
.h12{height:52.971680px;}
.h1a{height:52.998047px;}
.h19{height:53.332031px;}
.h17{height:54.421875px;}
.h9{height:57.324375px;}
.h5{height:58.651172px;}
.hc{height:59.038594px;}
.hb{height:60.226875px;}
.h1f{height:61.423863px;}
.h1d{height:64.002656px;}
.h6{height:65.010937px;}
.h3{height:65.884219px;}
.ha{height:84.898125px;}
.h2{height:93.270000px;}
.h4{height:117.180000px;}
.h14{height:201.810000px;}
.he{height:705.330000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x19{left:8.085000px;}
.x4{left:12.765000px;}
.x6{left:13.845000px;}
.x17{left:16.011000px;}
.x5{left:18.885000px;}
.x16{left:21.771000px;}
.x15{left:26.091000px;}
.x1c{left:29.151000px;}
.x10{left:43.731000px;}
.x1b{left:47.691000px;}
.x11{left:50.751000px;}
.xf{left:55.071000px;}
.x1d{left:66.225000px;}
.x13{left:77.025000px;}
.x1{left:78.300000px;}
.xb{left:86.436000px;}
.x14{left:94.125000px;}
.x2{left:95.790000px;}
.x1e{left:102.765000px;}
.x1a{left:106.725000px;}
.x20{left:113.436000px;}
.x12{left:124.545000px;}
.x8{left:140.436000px;}
.x3{left:182.385000px;}
.x18{left:219.105000px;}
.x7{left:311.100000px;}
.xd{left:494.205000px;}
.xc{left:698.910000px;}
.xa{left:766.050000px;}
.x9{left:799.380000px;}
.xe{left:806.940000px;}
@media print{
.v2{vertical-align:-54.400000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls4{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.201067pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.869333pt;}
.lsf{letter-spacing:40.912640pt;}
.lsc{letter-spacing:162.512640pt;}
.ws1{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.640000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.456000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws8{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._12{margin-left:-1.912320pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.221760pt;}
._3{width:2.544000pt;}
._2{width:3.676160pt;}
._4{width:5.113387pt;}
._9{width:6.384000pt;}
._8{width:7.405867pt;}
._7{width:8.400000pt;}
._d{width:9.402240pt;}
._c{width:11.088000pt;}
._10{width:12.284800pt;}
._6{width:13.828907pt;}
._5{width:14.928000pt;}
._f{width:16.088960pt;}
._e{width:17.848320pt;}
._b{width:19.099307pt;}
._a{width:20.016000pt;}
._13{width:21.513813pt;}
._11{width:22.416640pt;}
.fs5{font-size:5.120000pt;}
.fs4{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fsc{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.280000pt;}
.y4f{bottom:2.400000pt;}
.y45{bottom:3.346667pt;}
.y5d{bottom:4.453333pt;}
.y4e{bottom:9.120000pt;}
.y2{bottom:12.480000pt;}
.y5b{bottom:13.120000pt;}
.y44{bottom:18.706667pt;}
.y4{bottom:29.120000pt;}
.y5a{bottom:31.360000pt;}
.y43{bottom:34.066667pt;}
.y4d{bottom:35.840000pt;}
.y59{bottom:45.120000pt;}
.y4c{bottom:46.240000pt;}
.y42{bottom:49.266667pt;}
.y3{bottom:50.106667pt;}
.y7{bottom:51.200000pt;}
.y4b{bottom:57.760000pt;}
.y58{bottom:60.640000pt;}
.y41{bottom:64.306667pt;}
.y4a{bottom:69.440000pt;}
.y57{bottom:74.720000pt;}
.y46{bottom:80.480000pt;}
.yef{bottom:85.760000pt;}
.y56{bottom:85.920000pt;}
.y40{bottom:87.986667pt;}
.y49{bottom:88.800000pt;}
.y55{bottom:91.680000pt;}
.y94{bottom:93.760000pt;}
.yee{bottom:100.960000pt;}
.y3f{bottom:103.346667pt;}
.y54{bottom:105.760000pt;}
.y93{bottom:108.960000pt;}
.yed{bottom:116.320000pt;}
.y3e{bottom:118.706667pt;}
.y53{bottom:119.706667pt;}
.y92{bottom:124.000000pt;}
.yc5{bottom:124.320000pt;}
.yec{bottom:131.680000pt;}
.y52{bottom:133.466667pt;}
.y3d{bottom:133.906667pt;}
.yc4{bottom:139.680000pt;}
.y48{bottom:144.026667pt;}
.yeb{bottom:147.040000pt;}
.y51{bottom:147.226667pt;}
.y91{bottom:147.680000pt;}
.y3c{bottom:149.306667pt;}
.y47{bottom:153.466667pt;}
.yc3{bottom:155.040000pt;}
.y50{bottom:160.666667pt;}
.yea{bottom:162.400000pt;}
.y90{bottom:163.040000pt;}
.y3b{bottom:164.666667pt;}
.yc2{bottom:170.080000pt;}
.ye9{bottom:177.760000pt;}
.y8f{bottom:178.400000pt;}
.y3a{bottom:180.026667pt;}
.ye8{bottom:192.986667pt;}
.y8e{bottom:193.786667pt;}
.y39{bottom:195.386667pt;}
.ye7{bottom:208.346667pt;}
.y8d{bottom:208.666667pt;}
.yc1{bottom:208.986667pt;}
.y38{bottom:210.426667pt;}
.ye6{bottom:223.386667pt;}
.yc0{bottom:224.346667pt;}
.y37{bottom:229.626667pt;}
.y8c{bottom:232.346667pt;}
.ybf{bottom:239.706667pt;}
.y36{bottom:243.386667pt;}
.ye5{bottom:247.066667pt;}
.y8b{bottom:247.706667pt;}
.ybe{bottom:254.746667pt;}
.y35{bottom:257.146667pt;}
.yd{bottom:260.520000pt;}
.ye4{bottom:262.426667pt;}
.y8a{bottom:263.066667pt;}
.y34{bottom:271.066667pt;}
.ye3{bottom:277.786667pt;}
.y89{bottom:278.426667pt;}
.y33{bottom:284.826667pt;}
.ye2{bottom:292.986667pt;}
.y88{bottom:293.466667pt;}
.ybd{bottom:293.786667pt;}
.y32{bottom:298.586667pt;}
.ye1{bottom:308.346667pt;}
.ybc{bottom:308.986667pt;}
.y31{bottom:312.346667pt;}
.y87{bottom:316.986667pt;}
.ye0{bottom:323.386667pt;}
.ybb{bottom:324.346667pt;}
.y30{bottom:326.266667pt;}
.y86{bottom:332.346667pt;}
.yba{bottom:339.706667pt;}
.y2f{bottom:340.026667pt;}
.y1b{bottom:346.773333pt;}
.ydf{bottom:347.066667pt;}
.y85{bottom:347.706667pt;}
.y2e{bottom:353.813333pt;}
.yb9{bottom:355.066667pt;}
.y1a{bottom:360.853333pt;}
.yde{bottom:362.426667pt;}
.y84{bottom:363.066667pt;}
.y2d{bottom:367.573333pt;}
.yb8{bottom:370.426667pt;}
.ydd{bottom:377.626667pt;}
.y83{bottom:378.106667pt;}
.y2c{bottom:381.493333pt;}
.y19{bottom:382.293333pt;}
.yb7{bottom:385.626667pt;}
.ydc{bottom:392.986667pt;}
.y2b{bottom:395.253333pt;}
.yb6{bottom:401.026667pt;}
.y82{bottom:401.666667pt;}
.y18{bottom:403.733333pt;}
.ydb{bottom:408.066667pt;}
.y2a{bottom:409.013333pt;}
.yb5{bottom:416.386667pt;}
.y81{bottom:417.026667pt;}
.y29{bottom:422.773333pt;}
.y17{bottom:425.173333pt;}
.yb4{bottom:431.746667pt;}
.y80{bottom:432.386667pt;}
.y28{bottom:436.533333pt;}
.y16{bottom:446.613333pt;}
.yb3{bottom:446.786667pt;}
.yda{bottom:447.106667pt;}
.y7f{bottom:447.746667pt;}
.y27{bottom:450.453333pt;}
.yd9{bottom:462.466667pt;}
.y7e{bottom:462.786667pt;}
.y26{bottom:464.213333pt;}
.y15{bottom:468.213333pt;}
.yb2{bottom:470.466667pt;}
.yd8{bottom:477.666667pt;}
.y25{bottom:477.973333pt;}
.yb1{bottom:485.666667pt;}
.y7d{bottom:486.466667pt;}
.y14{bottom:489.653333pt;}
.y24{bottom:491.733333pt;}
.yd7{bottom:493.026667pt;}
.yb0{bottom:501.026667pt;}
.y7c{bottom:501.666667pt;}
.y23{bottom:505.653333pt;}
.yd6{bottom:508.066667pt;}
.y13{bottom:511.093333pt;}
.yaf{bottom:516.386667pt;}
.y7b{bottom:517.026667pt;}
.y22{bottom:519.413333pt;}
.yae{bottom:531.746667pt;}
.y7a{bottom:532.386667pt;}
.y12{bottom:532.533333pt;}
.y21{bottom:533.173333pt;}
.yf5{bottom:535.586667pt;}
.yad{bottom:546.786667pt;}
.y20{bottom:546.933333pt;}
.yd5{bottom:547.106667pt;}
.y79{bottom:547.746667pt;}
.yf4{bottom:553.506667pt;}
.y11{bottom:553.973333pt;}
.y1f{bottom:560.893333pt;}
.yd4{bottom:562.466667pt;}
.y78{bottom:562.786667pt;}
.yac{bottom:570.466667pt;}
.yf3{bottom:571.106667pt;}
.y1e{bottom:574.653333pt;}
.y10{bottom:575.453333pt;}
.yd3{bottom:577.666667pt;}
.yab{bottom:585.666667pt;}
.y77{bottom:586.466667pt;}
.y1d{bottom:588.413333pt;}
.yd2{bottom:593.026667pt;}
.yf{bottom:596.893333pt;}
.yaa{bottom:601.026667pt;}
.y76{bottom:601.666667pt;}
.yd1{bottom:608.093333pt;}
.y1c{bottom:615.773333pt;}
.ya9{bottom:616.413333pt;}
.y75{bottom:617.053333pt;}
.ye{bottom:618.493333pt;}
.ya8{bottom:631.773333pt;}
.y74{bottom:632.413333pt;}
.ya7{bottom:646.813333pt;}
.yd0{bottom:647.133333pt;}
.y73{bottom:647.453333pt;}
.yf2{bottom:647.773333pt;}
.ycf{bottom:662.493333pt;}
.yf1{bottom:662.813333pt;}
.ya6{bottom:670.493333pt;}
.y72{bottom:671.133333pt;}
.yce{bottom:677.693333pt;}
.ya5{bottom:685.693333pt;}
.y71{bottom:686.493333pt;}
.ycd{bottom:693.053333pt;}
.ya4{bottom:701.053333pt;}
.y70{bottom:701.693333pt;}
.ycc{bottom:708.093333pt;}
.ya3{bottom:716.413333pt;}
.y6f{bottom:717.053333pt;}
.ya2{bottom:731.773333pt;}
.y6e{bottom:732.413333pt;}
.ya1{bottom:746.813333pt;}
.ycb{bottom:747.133333pt;}
.y6d{bottom:747.773333pt;}
.yca{bottom:762.333333pt;}
.y6c{bottom:763.133333pt;}
.ya0{bottom:770.333333pt;}
.yc9{bottom:777.693333pt;}
.y6b{bottom:778.333333pt;}
.y9f{bottom:785.693333pt;}
.yc8{bottom:793.053333pt;}
.y6a{bottom:793.693333pt;}
.y9e{bottom:801.053333pt;}
.yc7{bottom:808.093333pt;}
.y69{bottom:809.053333pt;}
.y9d{bottom:816.453333pt;}
.y68{bottom:824.453333pt;}
.y9c{bottom:831.813333pt;}
.y67{bottom:839.813333pt;}
.y9b{bottom:847.173333pt;}
.y66{bottom:855.173333pt;}
.y9a{bottom:862.373333pt;}
.y65{bottom:870.373333pt;}
.y99{bottom:877.733333pt;}
.y64{bottom:885.733333pt;}
.yc{bottom:889.733333pt;}
.yc6{bottom:892.773333pt;}
.y98{bottom:893.093333pt;}
.yb{bottom:894.373333pt;}
.y63{bottom:901.093333pt;}
.y97{bottom:908.453333pt;}
.ya{bottom:909.253333pt;}
.y62{bottom:916.453333pt;}
.y96{bottom:923.813333pt;}
.y61{bottom:931.813333pt;}
.y9{bottom:936.613333pt;}
.y95{bottom:938.853333pt;}
.y60{bottom:947.173333pt;}
.y8{bottom:961.733333pt;}
.y5f{bottom:962.373333pt;}
.y5c{bottom:964.800000pt;}
.yf0{bottom:977.413333pt;}
.y5e{bottom:977.733333pt;}
.y6{bottom:990.053333pt;}
.y1{bottom:991.333333pt;}
.h18{height:5.022500pt;}
.h11{height:5.025000pt;}
.h8{height:5.092500pt;}
.hd{height:5.160000pt;}
.h7{height:15.914062pt;}
.h1c{height:24.480000pt;}
.h16{height:26.381250pt;}
.h15{height:31.406250pt;}
.h10{height:36.431250pt;}
.h1e{height:37.090625pt;}
.hf{height:37.410000pt;}
.h1b{height:37.946952pt;}
.h13{height:39.562500pt;}
.h20{height:39.840000pt;}
.h12{height:47.085938pt;}
.h1a{height:47.109375pt;}
.h19{height:47.406250pt;}
.h17{height:48.375000pt;}
.h9{height:50.955000pt;}
.h5{height:52.134375pt;}
.hc{height:52.478750pt;}
.hb{height:53.535000pt;}
.h1f{height:54.598989pt;}
.h1d{height:56.891250pt;}
.h6{height:57.787500pt;}
.h3{height:58.563750pt;}
.ha{height:75.465000pt;}
.h2{height:82.906667pt;}
.h4{height:104.160000pt;}
.h14{height:179.386667pt;}
.he{height:626.960000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x19{left:7.186667pt;}
.x4{left:11.346667pt;}
.x6{left:12.306667pt;}
.x17{left:14.232000pt;}
.x5{left:16.786667pt;}
.x16{left:19.352000pt;}
.x15{left:23.192000pt;}
.x1c{left:25.912000pt;}
.x10{left:38.872000pt;}
.x1b{left:42.392000pt;}
.x11{left:45.112000pt;}
.xf{left:48.952000pt;}
.x1d{left:58.866667pt;}
.x13{left:68.466667pt;}
.x1{left:69.600000pt;}
.xb{left:76.832000pt;}
.x14{left:83.666667pt;}
.x2{left:85.146667pt;}
.x1e{left:91.346667pt;}
.x1a{left:94.866667pt;}
.x20{left:100.832000pt;}
.x12{left:110.706667pt;}
.x8{left:124.832000pt;}
.x3{left:162.120000pt;}
.x18{left:194.760000pt;}
.x7{left:276.533333pt;}
.xd{left:439.293333pt;}
.xc{left:621.253333pt;}
.xa{left:680.933333pt;}
.x9{left:710.560000pt;}
.xe{left:717.280000pt;}
}




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