
    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_2c87d70034de48282d0a8740.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_2d008f28f34f88a2a6dc724c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_a8e09a81aebd08c2f7b2ba6d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_6c177564d37672e8d16700b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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_3821daa653f6d6e52e2cdaae.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5cff21738b4d9eea20601b8d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fe0f8a81d6544eabd590432e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e9da7da511292b22b64165e6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2f49a65b903f9581f3dbdc22.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_c1174307ca336a62f94cd577.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_28a7b58064a0bdf2e2f6989a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.818359;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_fd4311a8823e5214f86e8037.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.818359;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:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.ls2e{letter-spacing:-1.584000px;}
.ls2a{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-0.936000px;}
.ls12{letter-spacing:-0.864000px;}
.ls1c{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.696000px;}
.ls8{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.263400px;}
.ls11{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.126000px;}
.lsa{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.067200px;}
.ls2{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000003px;}
.lsc{letter-spacing:0.022320px;}
.ls14{letter-spacing:0.036000px;}
.ls16{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.089400px;}
.ls1{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.177840px;}
.lsd{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.288000px;}
.ls31{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.358560px;}
.ls6{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.538560px;}
.ls30{letter-spacing:0.720000px;}
.ls21{letter-spacing:1.337760px;}
.ls2c{letter-spacing:2.309760px;}
.lse{letter-spacing:2.777760px;}
.lsf{letter-spacing:3.168000px;}
.ls10{letter-spacing:4.469760px;}
.ls13{letter-spacing:5.657760px;}
.ls27{letter-spacing:5.909760px;}
.ls29{letter-spacing:6.048000px;}
.ls22{letter-spacing:7.488000px;}
.ls24{letter-spacing:14.297760px;}
.ls25{letter-spacing:15.408000px;}
.ls2b{letter-spacing:18.149760px;}
.ls19{letter-spacing:20.196000px;}
.ls28{letter-spacing:21.497760px;}
.ls1f{letter-spacing:31.824000px;}
.ls9{letter-spacing:32.544000px;}
.ls18{letter-spacing:86.544000px;}
.ls1a{letter-spacing:89.429760px;}
.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;}
}
.ws12{word-spacing:-72.000000px;}
.ws1{word-spacing:-20.160000px;}
.ws0{word-spacing:-20.016000px;}
.ws5{word-spacing:-16.632000px;}
.ws9{word-spacing:-16.488000px;}
.wsc{word-spacing:-16.344000px;}
.wse{word-spacing:-16.272003px;}
.ws4{word-spacing:-16.272000px;}
.ws7{word-spacing:-16.128000px;}
.wsa{word-spacing:-16.056000px;}
.wsb{word-spacing:-15.696000px;}
.ws11{word-spacing:-15.552000px;}
.wsd{word-spacing:-15.226440px;}
.wsf{word-spacing:-15.059640px;}
.ws6{word-spacing:-14.970240px;}
.ws8{word-spacing:-10.924560px;}
.ws3{word-spacing:-10.902240px;}
.ws10{word-spacing:-10.206240px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-4.760160px;}
._c{margin-left:-2.952000px;}
._0{margin-left:-1.126080px;}
._2{width:1.187040px;}
._11{width:2.256960px;}
._12{width:3.893760px;}
._b{width:4.894080px;}
._a{width:6.096000px;}
._4{width:7.272000px;}
._3{width:8.424000px;}
._10{width:9.474240px;}
._5{width:10.716000px;}
._24{width:11.820000px;}
._e{width:13.248000px;}
._d{width:14.710080px;}
._16{width:17.280000px;}
._9{width:18.864000px;}
._8{width:20.088000px;}
._13{width:21.216000px;}
._f{width:22.248000px;}
._22{width:23.279040px;}
._21{width:24.336000px;}
._14{width:26.352000px;}
._25{width:27.746880px;}
._20{width:28.818720px;}
._23{width:30.240000px;}
._26{width:32.268000px;}
._1e{width:34.632000px;}
._1f{width:35.928000px;}
._19{width:37.702560px;}
._17{width:38.784000px;}
._18{width:40.136160px;}
._27{width:41.616000px;}
._1a{width:43.068960px;}
._1b{width:44.244000px;}
._29{width:45.406080px;}
._28{width:46.512000px;}
._2b{width:48.096000px;}
._1c{width:88.896000px;}
._1d{width:89.928960px;}
._7{width:118.752000px;}
._6{width:120.432000px;}
._2a{width:847.884000px;}
._1{width:990.627360px;}
.fc4{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(68,84,106);}
.fc3{color:rgb(31,31,31);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y10{bottom:4.500000px;}
.yf{bottom:52.956000px;}
.ye{bottom:57.636000px;}
.y93{bottom:111.456000px;}
.y7e{bottom:112.176000px;}
.y62{bottom:113.616000px;}
.yc1{bottom:118.836000px;}
.y4d{bottom:125.316000px;}
.y73{bottom:126.396000px;}
.y79{bottom:127.476000px;}
.ya6{bottom:134.856000px;}
.y7a{bottom:141.516000px;}
.y5f{bottom:142.416000px;}
.y3c{bottom:151.230000px;}
.yc2{bottom:151.770000px;}
.yc0{bottom:154.650000px;}
.y28{bottom:155.370000px;}
.y61{bottom:157.530000px;}
.y4c{bottom:169.230000px;}
.y6e{bottom:170.310000px;}
.ya5{bottom:170.490000px;}
.y78{bottom:171.390000px;}
.y6d{bottom:185.430000px;}
.y5e{bottom:186.510000px;}
.ybf{bottom:190.290000px;}
.y3b{bottom:191.730000px;}
.y92{bottom:199.290000px;}
.y6a{bottom:200.370000px;}
.y60{bottom:201.450000px;}
.ya4{bottom:202.350000px;}
.y27{bottom:214.230000px;}
.y77{bottom:215.310000px;}
.ybe{bottom:225.930000px;}
.y4b{bottom:228.270000px;}
.y72{bottom:229.350000px;}
.y63{bottom:230.430000px;}
.y3a{bottom:232.050000px;}
.y69{bottom:244.290000px;}
.y5d{bottom:245.370000px;}
.ya3{bottom:246.270000px;}
.y8c{bottom:258.330000px;}
.y76{bottom:259.230000px;}
.ybd{bottom:261.750000px;}
.y8b{bottom:265.710000px;}
.y26{bottom:273.270000px;}
.y39{bottom:274.350000px;}
.y4a{bottom:287.175000px;}
.y68{bottom:288.255000px;}
.y5c{bottom:289.335000px;}
.ya2{bottom:290.235000px;}
.ybc{bottom:301.215000px;}
.y91{bottom:302.295000px;}
.y75{bottom:303.375000px;}
.y71{bottom:317.235000px;}
.y38{bottom:318.315000px;}
.y89{bottom:323.175000px;}
.y8a{bottom:324.615000px;}
.y25{bottom:332.175000px;}
.y5b{bottom:333.255000px;}
.ybb{bottom:339.375000px;}
.y49{bottom:346.215000px;}
.y74{bottom:347.295000px;}
.ya1{bottom:349.275000px;}
.y70{bottom:361.155000px;}
.y37{bottom:362.235000px;}
.y88{bottom:368.535000px;}
.y67{bottom:376.275000px;}
.y5a{bottom:377.175000px;}
.yba{bottom:377.535000px;}
.y24{bottom:391.215000px;}
.ya0{bottom:393.195000px;}
.y48{bottom:405.075000px;}
.y36{bottom:406.155000px;}
.y87{bottom:412.455000px;}
.yb9{bottom:415.695000px;}
.y66{bottom:420.195000px;}
.y59{bottom:421.275000px;}
.y23{bottom:435.135000px;}
.y9f{bottom:437.115000px;}
.y6f{bottom:449.175000px;}
.y35{bottom:450.075000px;}
.yb8{bottom:453.855000px;}
.y86{bottom:456.375000px;}
.y47{bottom:464.115000px;}
.y58{bottom:465.195000px;}
.y22{bottom:479.055000px;}
.y21{bottom:484.995000px;}
.yb7{bottom:492.015000px;}
.y90{bottom:493.095000px;}
.y34{bottom:494.175000px;}
.y9e{bottom:495.975000px;}
.y6c{bottom:508.035000px;}
.y57{bottom:509.115000px;}
.y85{bottom:513.075000px;}
.y20{bottom:522.975000px;}
.y7d{bottom:524.055000px;}
.yb6{bottom:530.175000px;}
.y33{bottom:538.095000px;}
.y9d{bottom:539.895000px;}
.y8f{bottom:551.955000px;}
.y56{bottom:553.035000px;}
.y1f{bottom:566.925000px;}
.y7c{bottom:568.005000px;}
.yb5{bottom:568.365000px;}
.y84{bottom:570.705000px;}
.y32{bottom:582.045000px;}
.y9c{bottom:584.025000px;}
.y8e{bottom:595.905000px;}
.y55{bottom:596.985000px;}
.yb4{bottom:606.525000px;}
.y1e{bottom:611.025000px;}
.y65{bottom:611.925000px;}
.y83{bottom:614.625000px;}
.yc6{bottom:620.745000px;}
.y31{bottom:625.965000px;}
.yd{bottom:631.185000px;}
.y8d{bottom:639.825000px;}
.y46{bottom:640.905000px;}
.y9b{bottom:642.885000px;}
.yb3{bottom:644.685000px;}
.y1d{bottom:654.945000px;}
.y64{bottom:656.025000px;}
.y82{bottom:658.545000px;}
.yc5{bottom:660.165000px;}
.y30{bottom:669.885000px;}
.yc{bottom:675.645000px;}
.yb2{bottom:682.845000px;}
.y54{bottom:684.825000px;}
.y9a{bottom:686.805000px;}
.yb{bottom:696.345000px;}
.y1c{bottom:698.865000px;}
.y45{bottom:699.945000px;}
.y81{bottom:702.465000px;}
.y2f{bottom:713.805000px;}
.ya{bottom:717.045000px;}
.yb1{bottom:721.005000px;}
.y53{bottom:728.925000px;}
.y1b{bottom:742.785000px;}
.y44{bottom:743.865000px;}
.y99{bottom:745.845000px;}
.y9{bottom:752.325000px;}
.y2e{bottom:757.725000px;}
.y80{bottom:759.165000px;}
.y7b{bottom:771.405000px;}
.y52{bottom:772.845000px;}
.y1a{bottom:786.705000px;}
.y43{bottom:787.785000px;}
.y8{bottom:789.405000px;}
.y98{bottom:789.765000px;}
.yb0{bottom:797.325000px;}
.y2d{bottom:801.825000px;}
.y51{bottom:816.765000px;}
.y6b{bottom:822.705000px;}
.y7{bottom:823.785000px;}
.y19{bottom:830.625000px;}
.y42{bottom:831.705000px;}
.y97{bottom:833.685000px;}
.yaf{bottom:835.485000px;}
.y18{bottom:836.565000px;}
.y2c{bottom:845.745000px;}
.y6{bottom:858.210000px;}
.y50{bottom:860.730000px;}
.yae{bottom:873.690000px;}
.y41{bottom:875.670000px;}
.y17{bottom:889.710000px;}
.y5{bottom:892.410000px;}
.y96{bottom:898.890000px;}
.y4f{bottom:904.650000px;}
.yad{bottom:911.850000px;}
.y40{bottom:919.590000px;}
.y4{bottom:927.330000px;}
.y16{bottom:933.630000px;}
.y15{bottom:939.570000px;}
.y95{bottom:942.630000px;}
.y4e{bottom:948.570000px;}
.yac{bottom:950.010000px;}
.y3{bottom:956.490000px;}
.y3f{bottom:963.690000px;}
.y2b{bottom:977.550000px;}
.y94{bottom:986.550000px;}
.yab{bottom:988.170000px;}
.y14{bottom:992.490000px;}
.y3e{bottom:1007.610000px;}
.y2a{bottom:1021.470000px;}
.yaa{bottom:1026.330000px;}
.y13{bottom:1036.590000px;}
.y3d{bottom:1051.530000px;}
.y7f{bottom:1051.710000px;}
.yc4{bottom:1062.330000px;}
.ya9{bottom:1064.490000px;}
.y29{bottom:1080.510000px;}
.y12{bottom:1095.450000px;}
.yc3{bottom:1100.490000px;}
.ya8{bottom:1102.650000px;}
.y2{bottom:1107.330000px;}
.y11{bottom:1139.400000px;}
.ya7{bottom:1140.840000px;}
.y1{bottom:1141.200000px;}
.h6{height:20.160000px;}
.h9{height:47.980898px;}
.h2{height:65.884219px;}
.ha{height:71.613281px;}
.h8{height:71.740898px;}
.h7{height:73.722656px;}
.hc{height:74.004654px;}
.hb{height:74.953125px;}
.h4{height:75.093750px;}
.hd{height:77.373281px;}
.h5{height:84.034336px;}
.h3{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:8.460000px;}
.w5{width:16.740000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:75.239973px;}
.x7{left:83.699973px;}
.x4{left:92.159973px;}
.x5{left:100.655987px;}
.x1{left:127.655987px;}
.x3{left:151.049987px;}
.x8{left:154.649987px;}
.x6{left:237.449987px;}
.xa{left:323.714987px;}
.xb{left:748.770000px;}
.x2{left:757.050000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.ls2e{letter-spacing:-1.408000pt;}
.ls2a{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls12{letter-spacing:-0.768000pt;}
.ls1c{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.618667pt;}
.ls8{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.234133pt;}
.ls11{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.112000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.059733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000003pt;}
.lsc{letter-spacing:0.019840pt;}
.ls14{letter-spacing:0.032000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.079467pt;}
.ls1{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.158080pt;}
.lsd{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.256000pt;}
.ls31{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.318720pt;}
.ls6{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.478720pt;}
.ls30{letter-spacing:0.640000pt;}
.ls21{letter-spacing:1.189120pt;}
.ls2c{letter-spacing:2.053120pt;}
.lse{letter-spacing:2.469120pt;}
.lsf{letter-spacing:2.816000pt;}
.ls10{letter-spacing:3.973120pt;}
.ls13{letter-spacing:5.029120pt;}
.ls27{letter-spacing:5.253120pt;}
.ls29{letter-spacing:5.376000pt;}
.ls22{letter-spacing:6.656000pt;}
.ls24{letter-spacing:12.709120pt;}
.ls25{letter-spacing:13.696000pt;}
.ls2b{letter-spacing:16.133120pt;}
.ls19{letter-spacing:17.952000pt;}
.ls28{letter-spacing:19.109120pt;}
.ls1f{letter-spacing:28.288000pt;}
.ls9{letter-spacing:28.928000pt;}
.ls18{letter-spacing:76.928000pt;}
.ls1a{letter-spacing:79.493120pt;}
.ws12{word-spacing:-64.000000pt;}
.ws1{word-spacing:-17.920000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws5{word-spacing:-14.784000pt;}
.ws9{word-spacing:-14.656000pt;}
.wsc{word-spacing:-14.528000pt;}
.wse{word-spacing:-14.464003pt;}
.ws4{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.336000pt;}
.wsa{word-spacing:-14.272000pt;}
.wsb{word-spacing:-13.952000pt;}
.ws11{word-spacing:-13.824000pt;}
.wsd{word-spacing:-13.534613pt;}
.wsf{word-spacing:-13.386347pt;}
.ws6{word-spacing:-13.306880pt;}
.ws8{word-spacing:-9.710720pt;}
.ws3{word-spacing:-9.690880pt;}
.ws10{word-spacing:-9.072213pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-4.231253pt;}
._c{margin-left:-2.624000pt;}
._0{margin-left:-1.000960pt;}
._2{width:1.055147pt;}
._11{width:2.006187pt;}
._12{width:3.461120pt;}
._b{width:4.350293pt;}
._a{width:5.418667pt;}
._4{width:6.464000pt;}
._3{width:7.488000pt;}
._10{width:8.421547pt;}
._5{width:9.525333pt;}
._24{width:10.506667pt;}
._e{width:11.776000pt;}
._d{width:13.075627pt;}
._16{width:15.360000pt;}
._9{width:16.768000pt;}
._8{width:17.856000pt;}
._13{width:18.858667pt;}
._f{width:19.776000pt;}
._22{width:20.692480pt;}
._21{width:21.632000pt;}
._14{width:23.424000pt;}
._25{width:24.663893pt;}
._20{width:25.616640pt;}
._23{width:26.880000pt;}
._26{width:28.682667pt;}
._1e{width:30.784000pt;}
._1f{width:31.936000pt;}
._19{width:33.513387pt;}
._17{width:34.474667pt;}
._18{width:35.676587pt;}
._27{width:36.992000pt;}
._1a{width:38.283520pt;}
._1b{width:39.328000pt;}
._29{width:40.360960pt;}
._28{width:41.344000pt;}
._2b{width:42.752000pt;}
._1c{width:79.018667pt;}
._1d{width:79.936853pt;}
._7{width:105.557333pt;}
._6{width:107.050667pt;}
._2a{width:753.674667pt;}
._1{width:880.557653pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:4.000000pt;}
.yf{bottom:47.072000pt;}
.ye{bottom:51.232000pt;}
.y93{bottom:99.072000pt;}
.y7e{bottom:99.712000pt;}
.y62{bottom:100.992000pt;}
.yc1{bottom:105.632000pt;}
.y4d{bottom:111.392000pt;}
.y73{bottom:112.352000pt;}
.y79{bottom:113.312000pt;}
.ya6{bottom:119.872000pt;}
.y7a{bottom:125.792000pt;}
.y5f{bottom:126.592000pt;}
.y3c{bottom:134.426667pt;}
.yc2{bottom:134.906667pt;}
.yc0{bottom:137.466667pt;}
.y28{bottom:138.106667pt;}
.y61{bottom:140.026667pt;}
.y4c{bottom:150.426667pt;}
.y6e{bottom:151.386667pt;}
.ya5{bottom:151.546667pt;}
.y78{bottom:152.346667pt;}
.y6d{bottom:164.826667pt;}
.y5e{bottom:165.786667pt;}
.ybf{bottom:169.146667pt;}
.y3b{bottom:170.426667pt;}
.y92{bottom:177.146667pt;}
.y6a{bottom:178.106667pt;}
.y60{bottom:179.066667pt;}
.ya4{bottom:179.866667pt;}
.y27{bottom:190.426667pt;}
.y77{bottom:191.386667pt;}
.ybe{bottom:200.826667pt;}
.y4b{bottom:202.906667pt;}
.y72{bottom:203.866667pt;}
.y63{bottom:204.826667pt;}
.y3a{bottom:206.266667pt;}
.y69{bottom:217.146667pt;}
.y5d{bottom:218.106667pt;}
.ya3{bottom:218.906667pt;}
.y8c{bottom:229.626667pt;}
.y76{bottom:230.426667pt;}
.ybd{bottom:232.666667pt;}
.y8b{bottom:236.186667pt;}
.y26{bottom:242.906667pt;}
.y39{bottom:243.866667pt;}
.y4a{bottom:255.266667pt;}
.y68{bottom:256.226667pt;}
.y5c{bottom:257.186667pt;}
.ya2{bottom:257.986667pt;}
.ybc{bottom:267.746667pt;}
.y91{bottom:268.706667pt;}
.y75{bottom:269.666667pt;}
.y71{bottom:281.986667pt;}
.y38{bottom:282.946667pt;}
.y89{bottom:287.266667pt;}
.y8a{bottom:288.546667pt;}
.y25{bottom:295.266667pt;}
.y5b{bottom:296.226667pt;}
.ybb{bottom:301.666667pt;}
.y49{bottom:307.746667pt;}
.y74{bottom:308.706667pt;}
.ya1{bottom:310.466667pt;}
.y70{bottom:321.026667pt;}
.y37{bottom:321.986667pt;}
.y88{bottom:327.586667pt;}
.y67{bottom:334.466667pt;}
.y5a{bottom:335.266667pt;}
.yba{bottom:335.586667pt;}
.y24{bottom:347.746667pt;}
.ya0{bottom:349.506667pt;}
.y48{bottom:360.066667pt;}
.y36{bottom:361.026667pt;}
.y87{bottom:366.626667pt;}
.yb9{bottom:369.506667pt;}
.y66{bottom:373.506667pt;}
.y59{bottom:374.466667pt;}
.y23{bottom:386.786667pt;}
.y9f{bottom:388.546667pt;}
.y6f{bottom:399.266667pt;}
.y35{bottom:400.066667pt;}
.yb8{bottom:403.426667pt;}
.y86{bottom:405.666667pt;}
.y47{bottom:412.546667pt;}
.y58{bottom:413.506667pt;}
.y22{bottom:425.826667pt;}
.y21{bottom:431.106667pt;}
.yb7{bottom:437.346667pt;}
.y90{bottom:438.306667pt;}
.y34{bottom:439.266667pt;}
.y9e{bottom:440.866667pt;}
.y6c{bottom:451.586667pt;}
.y57{bottom:452.546667pt;}
.y85{bottom:456.066667pt;}
.y20{bottom:464.866667pt;}
.y7d{bottom:465.826667pt;}
.yb6{bottom:471.266667pt;}
.y33{bottom:478.306667pt;}
.y9d{bottom:479.906667pt;}
.y8f{bottom:490.626667pt;}
.y56{bottom:491.586667pt;}
.y1f{bottom:503.933333pt;}
.y7c{bottom:504.893333pt;}
.yb5{bottom:505.213333pt;}
.y84{bottom:507.293333pt;}
.y32{bottom:517.373333pt;}
.y9c{bottom:519.133333pt;}
.y8e{bottom:529.693333pt;}
.y55{bottom:530.653333pt;}
.yb4{bottom:539.133333pt;}
.y1e{bottom:543.133333pt;}
.y65{bottom:543.933333pt;}
.y83{bottom:546.333333pt;}
.yc6{bottom:551.773333pt;}
.y31{bottom:556.413333pt;}
.yd{bottom:561.053333pt;}
.y8d{bottom:568.733333pt;}
.y46{bottom:569.693333pt;}
.y9b{bottom:571.453333pt;}
.yb3{bottom:573.053333pt;}
.y1d{bottom:582.173333pt;}
.y64{bottom:583.133333pt;}
.y82{bottom:585.373333pt;}
.yc5{bottom:586.813333pt;}
.y30{bottom:595.453333pt;}
.yc{bottom:600.573333pt;}
.yb2{bottom:606.973333pt;}
.y54{bottom:608.733333pt;}
.y9a{bottom:610.493333pt;}
.yb{bottom:618.973333pt;}
.y1c{bottom:621.213333pt;}
.y45{bottom:622.173333pt;}
.y81{bottom:624.413333pt;}
.y2f{bottom:634.493333pt;}
.ya{bottom:637.373333pt;}
.yb1{bottom:640.893333pt;}
.y53{bottom:647.933333pt;}
.y1b{bottom:660.253333pt;}
.y44{bottom:661.213333pt;}
.y99{bottom:662.973333pt;}
.y9{bottom:668.733333pt;}
.y2e{bottom:673.533333pt;}
.y80{bottom:674.813333pt;}
.y7b{bottom:685.693333pt;}
.y52{bottom:686.973333pt;}
.y1a{bottom:699.293333pt;}
.y43{bottom:700.253333pt;}
.y8{bottom:701.693333pt;}
.y98{bottom:702.013333pt;}
.yb0{bottom:708.733333pt;}
.y2d{bottom:712.733333pt;}
.y51{bottom:726.013333pt;}
.y6b{bottom:731.293333pt;}
.y7{bottom:732.253333pt;}
.y19{bottom:738.333333pt;}
.y42{bottom:739.293333pt;}
.y97{bottom:741.053333pt;}
.yaf{bottom:742.653333pt;}
.y18{bottom:743.613333pt;}
.y2c{bottom:751.773333pt;}
.y6{bottom:762.853333pt;}
.y50{bottom:765.093333pt;}
.yae{bottom:776.613333pt;}
.y41{bottom:778.373333pt;}
.y17{bottom:790.853333pt;}
.y5{bottom:793.253333pt;}
.y96{bottom:799.013333pt;}
.y4f{bottom:804.133333pt;}
.yad{bottom:810.533333pt;}
.y40{bottom:817.413333pt;}
.y4{bottom:824.293333pt;}
.y16{bottom:829.893333pt;}
.y15{bottom:835.173333pt;}
.y95{bottom:837.893333pt;}
.y4e{bottom:843.173333pt;}
.yac{bottom:844.453333pt;}
.y3{bottom:850.213333pt;}
.y3f{bottom:856.613333pt;}
.y2b{bottom:868.933333pt;}
.y94{bottom:876.933333pt;}
.yab{bottom:878.373333pt;}
.y14{bottom:882.213333pt;}
.y3e{bottom:895.653333pt;}
.y2a{bottom:907.973333pt;}
.yaa{bottom:912.293333pt;}
.y13{bottom:921.413333pt;}
.y3d{bottom:934.693333pt;}
.y7f{bottom:934.853333pt;}
.yc4{bottom:944.293333pt;}
.ya9{bottom:946.213333pt;}
.y29{bottom:960.453333pt;}
.y12{bottom:973.733333pt;}
.yc3{bottom:978.213333pt;}
.ya8{bottom:980.133333pt;}
.y2{bottom:984.293333pt;}
.y11{bottom:1012.800000pt;}
.ya7{bottom:1014.080000pt;}
.y1{bottom:1014.400000pt;}
.h6{height:17.920000pt;}
.h9{height:42.649687pt;}
.h2{height:58.563750pt;}
.ha{height:63.656250pt;}
.h8{height:63.769688pt;}
.h7{height:65.531250pt;}
.hc{height:65.781915pt;}
.hb{height:66.625000pt;}
.h4{height:66.750000pt;}
.hd{height:68.776250pt;}
.h5{height:74.697187pt;}
.h3{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:7.520000pt;}
.w5{width:14.880000pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:66.879976pt;}
.x7{left:74.399976pt;}
.x4{left:81.919976pt;}
.x5{left:89.471988pt;}
.x1{left:113.471988pt;}
.x3{left:134.266655pt;}
.x8{left:137.466655pt;}
.x6{left:211.066655pt;}
.xa{left:287.746655pt;}
.xb{left:665.573333pt;}
.x2{left:672.933333pt;}
}




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