
    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_4fcdcc390e7a762f5d803d79.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_7887c417bf713de6215bdad2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5b674f792735df4857d7b4f9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_8ce45c9e6533f22f86c1dce3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_d7b7d53c4243bd554e7b88d5.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2881121b65bfcea6518f2169.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_302d4165b1b0f671aa7c0da2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.999512;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_2e87065ac7508ffdc026e592.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_5fe7fe50f6fbfff23f861524.woff')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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:ffe;src:url('chunks/assets/font_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffe{font-family:ffe;line-height:1.035156;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:fff;src:url('chunks/assets/font_2c2f39922f582a2ca92785f4.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_74f6376787b80f09cf645ace.woff')format("woff");}.ff10{font-family:ff10;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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsc{letter-spacing:-0.936000px;}
.lsd{letter-spacing:-0.414600px;}
.ls9{letter-spacing:-0.190200px;}
.lsb{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.114000px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.025920px;}
.ls2{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.078000px;}
.ls6{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.187200px;}
.lsf{letter-spacing:0.262200px;}
.lse{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.567600px;}
.ls3{letter-spacing:0.576000px;}
.ls16{letter-spacing:6.761280px;}
.ls17{letter-spacing:6.785280px;}
.ls10{letter-spacing:28.800000px;}
.ls13{letter-spacing:39.881280px;}
.ls14{letter-spacing:39.905280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-24.062880px;}
.ws6{word-spacing:-19.465920px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws7{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.127600px;}
.ws9{word-spacing:-16.865400px;}
.wse{word-spacing:-16.822200px;}
.wsd{word-spacing:-16.712400px;}
.wsa{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.145400px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.wsb{word-spacing:0.000000px;}
._2d{margin-left:-2.116560px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._4{width:2.848320px;}
._5{width:4.040640px;}
._1d{width:5.172480px;}
._7{width:6.460560px;}
._6{width:7.683840px;}
._2{width:9.538560px;}
._3{width:10.746720px;}
._8{width:11.856960px;}
._f{width:12.987360px;}
._15{width:13.988160px;}
._1f{width:15.057360px;}
._23{width:17.588880px;}
._17{width:19.342080px;}
._24{width:21.263040px;}
._11{width:22.455360px;}
._10{width:24.243840px;}
._14{width:25.603920px;}
._9{width:26.694720px;}
._a{width:27.953280px;}
._1e{width:29.027520px;}
._28{width:30.205440px;}
._e{width:31.892400px;}
._d{width:33.221520px;}
._18{width:34.312320px;}
._2a{width:35.372160px;}
._1a{width:37.328400px;}
._1b{width:38.423520px;}
._16{width:39.810240px;}
._13{width:41.863680px;}
._12{width:42.893760px;}
._b{width:44.778240px;}
._c{width:46.103040px;}
._26{width:48.222720px;}
._27{width:49.384080px;}
._2c{width:50.439600px;}
._1c{width:51.468480px;}
._25{width:52.660800px;}
._2f{width:53.752320px;}
._35{width:55.774080px;}
._31{width:56.782560px;}
._19{width:58.194000px;}
._34{width:59.549760px;}
._2e{width:60.874560px;}
._3b{width:62.025360px;}
._29{width:63.228240px;}
._48{width:65.528160px;}
._30{width:66.960000px;}
._32{width:70.214400px;}
._33{width:72.132240px;}
._36{width:73.296720px;}
._37{width:74.384400px;}
._3c{width:76.277520px;}
._4f{width:77.434560px;}
._50{width:79.087440px;}
._2b{width:80.945280px;}
._47{width:87.247680px;}
._39{width:89.159040px;}
._3a{width:90.878160px;}
._4e{width:92.341680px;}
._3e{width:94.723200px;}
._3f{width:96.376080px;}
._38{width:102.539520px;}
._3d{width:103.665600px;}
._51{width:113.983920px;}
._45{width:115.916880px;}
._4c{width:117.440400px;}
._4d{width:131.300400px;}
._4b{width:132.744960px;}
._40{width:142.217280px;}
._46{width:149.235600px;}
._22{width:152.893440px;}
._41{width:158.048640px;}
._42{width:159.174720px;}
._20{width:189.617520px;}
._21{width:197.647200px;}
._49{width:207.593040px;}
._53{width:210.047040px;}
._43{width:302.183760px;}
._4a{width:310.479600px;}
._44{width:368.423760px;}
._52{width:496.071360px;}
._54{width:847.596000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(192,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsb{font-size:36.000000px;}
.fs7{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ye{bottom:22.860000px;}
.y15{bottom:26.685000px;}
.y5{bottom:33.120000px;}
.y1{bottom:51.480000px;}
.y14{bottom:55.485000px;}
.y3c{bottom:75.240000px;}
.y13{bottom:80.865000px;}
.y12{bottom:98.685000px;}
.y54{bottom:121.320000px;}
.y38{bottom:123.300000px;}
.y87{bottom:133.740000px;}
.y76{bottom:134.100000px;}
.y53{bottom:145.980000px;}
.y37{bottom:147.960000px;}
.y75{bottom:158.760000px;}
.y52{bottom:170.640000px;}
.y36{bottom:172.620000px;}
.y74{bottom:183.420000px;}
.y51{bottom:195.300000px;}
.y35{bottom:197.280000px;}
.y73{bottom:208.110000px;}
.y50{bottom:219.990000px;}
.y34{bottom:221.970000px;}
.y72{bottom:232.770000px;}
.y4f{bottom:244.650000px;}
.y33{bottom:246.630000px;}
.y80{bottom:257.070000px;}
.y71{bottom:257.430000px;}
.y4e{bottom:268.950000px;}
.y32{bottom:271.290000px;}
.y70{bottom:282.090000px;}
.y4d{bottom:293.610000px;}
.y31{bottom:295.950000px;}
.y6f{bottom:306.750000px;}
.y4c{bottom:318.270000px;}
.y30{bottom:320.610000px;}
.y86{bottom:331.050000px;}
.y6e{bottom:331.410000px;}
.y4b{bottom:343.290000px;}
.y2f{bottom:345.270000px;}
.y6d{bottom:356.070000px;}
.y4a{bottom:367.590000px;}
.y2e{bottom:369.930000px;}
.y6c{bottom:380.730000px;}
.y49{bottom:388.650000px;}
.y2d{bottom:394.590000px;}
.y6b{bottom:405.030000px;}
.y7f{bottom:405.390000px;}
.y2c{bottom:419.250000px;}
.y85{bottom:429.690000px;}
.y6a{bottom:430.050000px;}
.y2b{bottom:443.955000px;}
.y7e{bottom:454.395000px;}
.y69{bottom:454.755000px;}
.y2a{bottom:468.615000px;}
.y7d{bottom:479.235000px;}
.y68{bottom:479.595000px;}
.y29{bottom:493.275000px;}
.y7c{bottom:503.895000px;}
.y67{bottom:504.255000px;}
.y28{bottom:517.935000px;}
.y66{bottom:528.915000px;}
.y27{bottom:542.235000px;}
.y39{bottom:542.595000px;}
.y65{bottom:553.575000px;}
.y26{bottom:566.895000px;}
.y64{bottom:578.235000px;}
.y25{bottom:594.075000px;}
.y63{bottom:602.895000px;}
.y24{bottom:623.415000px;}
.y62{bottom:627.555000px;}
.y8c{bottom:646.995000px;}
.y23{bottom:648.075000px;}
.y84{bottom:651.855000px;}
.y61{bottom:652.215000px;}
.y22{bottom:672.735000px;}
.y8b{bottom:674.355000px;}
.y7b{bottom:676.545000px;}
.y60{bottom:676.905000px;}
.y21{bottom:697.425000px;}
.y8a{bottom:700.125000px;}
.y5f{bottom:701.565000px;}
.y20{bottom:722.085000px;}
.y89{bottom:726.045000px;}
.y5e{bottom:726.225000px;}
.y1f{bottom:746.745000px;}
.y5d{bottom:750.525000px;}
.y7a{bottom:750.885000px;}
.y88{bottom:751.965000px;}
.y1e{bottom:771.405000px;}
.y83{bottom:775.185000px;}
.y5c{bottom:775.545000px;}
.y1d{bottom:796.065000px;}
.y82{bottom:799.845000px;}
.y5b{bottom:800.205000px;}
.y1c{bottom:820.725000px;}
.y79{bottom:824.505000px;}
.y5a{bottom:824.865000px;}
.y1b{bottom:845.385000px;}
.y59{bottom:849.525000px;}
.y1a{bottom:869.685000px;}
.y58{bottom:874.185000px;}
.y19{bottom:888.945000px;}
.y17{bottom:897.585000px;}
.y48{bottom:898.485000px;}
.y57{bottom:898.845000px;}
.y11{bottom:904.785000px;}
.y16{bottom:908.925043px;}
.y47{bottom:923.190000px;}
.y56{bottom:923.550000px;}
.y46{bottom:948.210000px;}
.y45{bottom:972.870000px;}
.y44{bottom:997.530000px;}
.y81{bottom:1021.830000px;}
.y43{bottom:1022.190000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.y55{bottom:1046.490000px;}
.y42{bottom:1046.850000px;}
.y41{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y40{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y3f{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y78{bottom:1145.130000px;}
.y3e{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y77{bottom:1169.820000px;}
.y3d{bottom:1170.180000px;}
.y3b{bottom:1187.280000px;}
.y3a{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h17{height:7.200000px;}
.hd{height:13.324219px;}
.h18{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1e{height:30.480469px;}
.h19{height:36.861328px;}
.he{height:41.025000px;}
.h14{height:44.496211px;}
.h1d{height:46.251562px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1f{height:58.621992px;}
.hb{height:60.960938px;}
.h21{height:61.423863px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h1a{height:64.978594px;}
.h1c{height:65.010937px;}
.h1b{height:66.757500px;}
.h20{height:68.084282px;}
.h6{height:71.324297px;}
.h16{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3{height:103.530000px;}
.h12{height:124.402500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1d{left:113.976000px;}
.x1f{left:123.516000px;}
.x15{left:132.823500px;}
.x14{left:139.123500px;}
.x20{left:150.510000px;}
.x19{left:162.030000px;}
.x13{left:164.908500px;}
.x4{left:168.885000px;}
.x16{left:195.328500px;}
.x1e{left:202.710000px;}
.x6{left:209.010000px;}
.x17{left:324.965515px;}
.x12{left:335.578500px;}
.x1c{left:364.035000px;}
.xa{left:445.620000px;}
.x1a{left:473.505000px;}
.x22{left:488.985000px;}
.x21{left:515.985000px;}
.x1b{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:761.010000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsc{letter-spacing:-0.832000pt;}
.lsd{letter-spacing:-0.368533pt;}
.ls9{letter-spacing:-0.169067pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.101333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.023040pt;}
.ls2{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.069333pt;}
.ls6{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.166400pt;}
.lsf{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.504533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls16{letter-spacing:6.010027pt;}
.ls17{letter-spacing:6.031360pt;}
.ls10{letter-spacing:25.600000pt;}
.ls13{letter-spacing:35.450027pt;}
.ls14{letter-spacing:35.471360pt;}
.wsc{word-spacing:-21.389227pt;}
.ws6{word-spacing:-17.303040pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws7{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.224533pt;}
.ws9{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.953067pt;}
.wsd{word-spacing:-14.855467pt;}
.wsa{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.351467pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsb{word-spacing:0.000000pt;}
._2d{margin-left:-1.881387pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._4{width:2.531840pt;}
._5{width:3.591680pt;}
._1d{width:4.597760pt;}
._7{width:5.742720pt;}
._6{width:6.830080pt;}
._2{width:8.478720pt;}
._3{width:9.552640pt;}
._8{width:10.539520pt;}
._f{width:11.544320pt;}
._15{width:12.433920pt;}
._1f{width:13.384320pt;}
._23{width:15.634560pt;}
._17{width:17.192960pt;}
._24{width:18.900480pt;}
._11{width:19.960320pt;}
._10{width:21.550080pt;}
._14{width:22.759040pt;}
._9{width:23.728640pt;}
._a{width:24.847360pt;}
._1e{width:25.802240pt;}
._28{width:26.849280pt;}
._e{width:28.348800pt;}
._d{width:29.530240pt;}
._18{width:30.499840pt;}
._2a{width:31.441920pt;}
._1a{width:33.180800pt;}
._1b{width:34.154240pt;}
._16{width:35.386880pt;}
._13{width:37.212160pt;}
._12{width:38.127787pt;}
._b{width:39.802880pt;}
._c{width:40.980480pt;}
._26{width:42.864640pt;}
._27{width:43.896960pt;}
._2c{width:44.835200pt;}
._1c{width:45.749760pt;}
._25{width:46.809600pt;}
._2f{width:47.779840pt;}
._35{width:49.576960pt;}
._31{width:50.473387pt;}
._19{width:51.728000pt;}
._34{width:52.933120pt;}
._2e{width:54.110720pt;}
._3b{width:55.133653pt;}
._29{width:56.202880pt;}
._48{width:58.247253pt;}
._30{width:59.520000pt;}
._32{width:62.412800pt;}
._33{width:64.117547pt;}
._36{width:65.152640pt;}
._37{width:66.119467pt;}
._3c{width:67.802240pt;}
._4f{width:68.830720pt;}
._50{width:70.299947pt;}
._2b{width:71.951360pt;}
._47{width:77.553493pt;}
._39{width:79.252480pt;}
._3a{width:80.780587pt;}
._4e{width:82.081493pt;}
._3e{width:84.198400pt;}
._3f{width:85.667627pt;}
._38{width:91.146240pt;}
._3d{width:92.147200pt;}
._51{width:101.319040pt;}
._45{width:103.037227pt;}
._4c{width:104.391467pt;}
._4d{width:116.711467pt;}
._4b{width:117.995520pt;}
._40{width:126.415360pt;}
._46{width:132.653867pt;}
._22{width:135.905280pt;}
._41{width:140.487680pt;}
._42{width:141.488640pt;}
._20{width:168.548907pt;}
._21{width:175.686400pt;}
._49{width:184.527147pt;}
._53{width:186.708480pt;}
._43{width:268.607787pt;}
._4a{width:275.981867pt;}
._44{width:327.487787pt;}
._52{width:440.952320pt;}
._54{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ye{bottom:20.320000pt;}
.y15{bottom:23.720000pt;}
.y5{bottom:29.440000pt;}
.y1{bottom:45.760000pt;}
.y14{bottom:49.320000pt;}
.y3c{bottom:66.880000pt;}
.y13{bottom:71.880000pt;}
.y12{bottom:87.720000pt;}
.y54{bottom:107.840000pt;}
.y38{bottom:109.600000pt;}
.y87{bottom:118.880000pt;}
.y76{bottom:119.200000pt;}
.y53{bottom:129.760000pt;}
.y37{bottom:131.520000pt;}
.y75{bottom:141.120000pt;}
.y52{bottom:151.680000pt;}
.y36{bottom:153.440000pt;}
.y74{bottom:163.040000pt;}
.y51{bottom:173.600000pt;}
.y35{bottom:175.360000pt;}
.y73{bottom:184.986667pt;}
.y50{bottom:195.546667pt;}
.y34{bottom:197.306667pt;}
.y72{bottom:206.906667pt;}
.y4f{bottom:217.466667pt;}
.y33{bottom:219.226667pt;}
.y80{bottom:228.506667pt;}
.y71{bottom:228.826667pt;}
.y4e{bottom:239.066667pt;}
.y32{bottom:241.146667pt;}
.y70{bottom:250.746667pt;}
.y4d{bottom:260.986667pt;}
.y31{bottom:263.066667pt;}
.y6f{bottom:272.666667pt;}
.y4c{bottom:282.906667pt;}
.y30{bottom:284.986667pt;}
.y86{bottom:294.266667pt;}
.y6e{bottom:294.586667pt;}
.y4b{bottom:305.146667pt;}
.y2f{bottom:306.906667pt;}
.y6d{bottom:316.506667pt;}
.y4a{bottom:326.746667pt;}
.y2e{bottom:328.826667pt;}
.y6c{bottom:338.426667pt;}
.y49{bottom:345.466667pt;}
.y2d{bottom:350.746667pt;}
.y6b{bottom:360.026667pt;}
.y7f{bottom:360.346667pt;}
.y2c{bottom:372.666667pt;}
.y85{bottom:381.946667pt;}
.y6a{bottom:382.266667pt;}
.y2b{bottom:394.626667pt;}
.y7e{bottom:403.906667pt;}
.y69{bottom:404.226667pt;}
.y2a{bottom:416.546667pt;}
.y7d{bottom:425.986667pt;}
.y68{bottom:426.306667pt;}
.y29{bottom:438.466667pt;}
.y7c{bottom:447.906667pt;}
.y67{bottom:448.226667pt;}
.y28{bottom:460.386667pt;}
.y66{bottom:470.146667pt;}
.y27{bottom:481.986667pt;}
.y39{bottom:482.306667pt;}
.y65{bottom:492.066667pt;}
.y26{bottom:503.906667pt;}
.y64{bottom:513.986667pt;}
.y25{bottom:528.066667pt;}
.y63{bottom:535.906667pt;}
.y24{bottom:554.146667pt;}
.y62{bottom:557.826667pt;}
.y8c{bottom:575.106667pt;}
.y23{bottom:576.066667pt;}
.y84{bottom:579.426667pt;}
.y61{bottom:579.746667pt;}
.y22{bottom:597.986667pt;}
.y8b{bottom:599.426667pt;}
.y7b{bottom:601.373333pt;}
.y60{bottom:601.693333pt;}
.y21{bottom:619.933333pt;}
.y8a{bottom:622.333333pt;}
.y5f{bottom:623.613333pt;}
.y20{bottom:641.853333pt;}
.y89{bottom:645.373333pt;}
.y5e{bottom:645.533333pt;}
.y1f{bottom:663.773333pt;}
.y5d{bottom:667.133333pt;}
.y7a{bottom:667.453333pt;}
.y88{bottom:668.413333pt;}
.y1e{bottom:685.693333pt;}
.y83{bottom:689.053333pt;}
.y5c{bottom:689.373333pt;}
.y1d{bottom:707.613333pt;}
.y82{bottom:710.973333pt;}
.y5b{bottom:711.293333pt;}
.y1c{bottom:729.533333pt;}
.y79{bottom:732.893333pt;}
.y5a{bottom:733.213333pt;}
.y1b{bottom:751.453333pt;}
.y59{bottom:755.133333pt;}
.y1a{bottom:773.053333pt;}
.y58{bottom:777.053333pt;}
.y19{bottom:790.173333pt;}
.y17{bottom:797.853333pt;}
.y48{bottom:798.653333pt;}
.y57{bottom:798.973333pt;}
.y11{bottom:804.253333pt;}
.y16{bottom:807.933372pt;}
.y47{bottom:820.613333pt;}
.y56{bottom:820.933333pt;}
.y46{bottom:842.853333pt;}
.y45{bottom:864.773333pt;}
.y44{bottom:886.693333pt;}
.y81{bottom:908.293333pt;}
.y43{bottom:908.613333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.y55{bottom:930.213333pt;}
.y42{bottom:930.533333pt;}
.y41{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y40{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y3f{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y78{bottom:1017.893333pt;}
.y3e{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y77{bottom:1039.840000pt;}
.y3d{bottom:1040.160000pt;}
.y3b{bottom:1055.360000pt;}
.y3a{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h17{height:6.400000pt;}
.hd{height:11.843750pt;}
.h18{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1e{height:27.093750pt;}
.h19{height:32.765625pt;}
.he{height:36.466667pt;}
.h14{height:39.552188pt;}
.h1d{height:41.112500pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1f{height:52.108438pt;}
.hb{height:54.187500pt;}
.h21{height:54.598989pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h1a{height:57.758750pt;}
.h1c{height:57.787500pt;}
.h1b{height:59.340000pt;}
.h20{height:60.519362pt;}
.h6{height:63.399375pt;}
.h16{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3{height:92.026667pt;}
.h12{height:110.580000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1d{left:101.312000pt;}
.x1f{left:109.792000pt;}
.x15{left:118.065333pt;}
.x14{left:123.665333pt;}
.x20{left:133.786667pt;}
.x19{left:144.026667pt;}
.x13{left:146.585333pt;}
.x4{left:150.120000pt;}
.x16{left:173.625333pt;}
.x1e{left:180.186667pt;}
.x6{left:185.786667pt;}
.x17{left:288.858236pt;}
.x12{left:298.292000pt;}
.x1c{left:323.586667pt;}
.xa{left:396.106667pt;}
.x1a{left:420.893333pt;}
.x22{left:434.653333pt;}
.x21{left:458.653333pt;}
.x1b{left:468.893333pt;}
.x7{left:642.213333pt;}
.x1{left:676.453333pt;}
}




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