
    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_890686ba0d4489e9227fd01e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937988;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_3ef510a320b07e099abaf1d0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_36ad8af77d5a46df3e1595cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_c1c3e42583dd225b7fc84fb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_a30519724c781ee6c0f33635.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_f9db3e6f91a841aa5ae768ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_33784fef4a3b995b060b66df.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3563958651f60f2ba62e8190.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937988;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls31{letter-spacing:-0.846000px;}
.ls4e{letter-spacing:-0.565200px;}
.ls15{letter-spacing:-0.540000px;}
.ls2f{letter-spacing:-0.460200px;}
.ls20{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.291600px;}
.ls49{letter-spacing:-0.129600px;}
.ls3c{letter-spacing:-0.106800px;}
.ls21{letter-spacing:-0.053280px;}
.ls13{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.045360px;}
.ls37{letter-spacing:0.053280px;}
.ls48{letter-spacing:0.064800px;}
.ls30{letter-spacing:0.106800px;}
.ls59{letter-spacing:0.153600px;}
.ls43{letter-spacing:0.154800px;}
.ls53{letter-spacing:0.174240px;}
.ls0{letter-spacing:0.180000px;}
.ls3d{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls55{letter-spacing:0.298800px;}
.lse{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.476400px;}
.ls25{letter-spacing:0.590400px;}
.ls27{letter-spacing:0.900000px;}
.ls24{letter-spacing:0.979920px;}
.ls17{letter-spacing:1.620000px;}
.ls19{letter-spacing:2.340000px;}
.lsc{letter-spacing:3.060000px;}
.ls38{letter-spacing:3.780000px;}
.lsd{letter-spacing:3.960000px;}
.ls5{letter-spacing:4.500000px;}
.lsf{letter-spacing:5.220000px;}
.ls29{letter-spacing:5.940000px;}
.ls18{letter-spacing:6.660000px;}
.ls3b{letter-spacing:7.380000px;}
.ls1b{letter-spacing:8.100000px;}
.ls8{letter-spacing:8.820000px;}
.ls40{letter-spacing:10.980000px;}
.ls4b{letter-spacing:11.700000px;}
.ls9{letter-spacing:13.140000px;}
.ls2c{letter-spacing:13.860000px;}
.lsa{letter-spacing:15.300000px;}
.ls26{letter-spacing:16.020000px;}
.ls3e{letter-spacing:16.740000px;}
.ls2a{letter-spacing:18.180000px;}
.ls51{letter-spacing:18.666720px;}
.ls22{letter-spacing:18.900000px;}
.ls2d{letter-spacing:19.620000px;}
.ls1{letter-spacing:20.340000px;}
.ls33{letter-spacing:21.060000px;}
.ls39{letter-spacing:22.500000px;}
.ls1f{letter-spacing:23.220000px;}
.ls2e{letter-spacing:23.940000px;}
.ls35{letter-spacing:24.660000px;}
.ls36{letter-spacing:26.220000px;}
.ls4a{letter-spacing:28.260000px;}
.ls3{letter-spacing:29.700000px;}
.ls10{letter-spacing:30.420000px;}
.ls4c{letter-spacing:31.116000px;}
.ls2b{letter-spacing:32.580000px;}
.ls1a{letter-spacing:33.300000px;}
.ls3f{letter-spacing:35.460000px;}
.ls42{letter-spacing:36.180000px;}
.ls57{letter-spacing:36.642720px;}
.ls58{letter-spacing:36.666720px;}
.ls4f{letter-spacing:37.620000px;}
.ls32{letter-spacing:39.780000px;}
.ls1c{letter-spacing:40.500000px;}
.ls1d{letter-spacing:41.220000px;}
.ls7{letter-spacing:42.660000px;}
.ls34{letter-spacing:44.100000px;}
.ls4d{letter-spacing:44.820000px;}
.ls3a{letter-spacing:45.540000px;}
.ls45{letter-spacing:46.260000px;}
.ls23{letter-spacing:46.980000px;}
.ls46{letter-spacing:47.880000px;}
.ls52{letter-spacing:51.300000px;}
.ls4{letter-spacing:54.900000px;}
.lsb{letter-spacing:57.900000px;}
.ls50{letter-spacing:64.260000px;}
.ls56{letter-spacing:66.162720px;}
.ls54{letter-spacing:66.186720px;}
.ls6{letter-spacing:66.600000px;}
.ls11{letter-spacing:67.140000px;}
.ls44{letter-spacing:91.620000px;}
.ls41{letter-spacing:95.220000px;}
.ls47{letter-spacing:100.980000px;}
.ls28{letter-spacing:197.436000px;}
.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;}
}
.ws4{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199920px;}
.ws3{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.wsf{word-spacing:-15.093600px;}
.ws8{word-spacing:-15.046800px;}
.wsb{word-spacing:-15.004800px;}
.wsd{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.648400px;}
.ws7{word-spacing:-14.580000px;}
.ws0{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.105360px;}
.ws5{word-spacing:0.000000px;}
._8{margin-left:-3.168480px;}
._0{margin-left:-1.373280px;}
._1{width:1.075680px;}
._2{width:2.481600px;}
._37{width:3.494400px;}
._13{width:4.513440px;}
._1c{width:5.677200px;}
._b{width:7.350480px;}
._17{width:8.844480px;}
._1e{width:10.278720px;}
._19{width:11.772720px;}
._34{width:12.850800px;}
._18{width:13.863120px;}
._15{width:16.254720px;}
._33{width:17.629200px;}
._3f{width:18.882960px;}
._5{width:20.019600px;}
._4{width:21.339120px;}
._9{width:22.524720px;}
._27{width:23.555040px;}
._12{width:24.621120px;}
._3{width:25.935840px;}
._7{width:27.429840px;}
._1f{width:28.565280px;}
._c{width:30.174960px;}
._26{width:31.194720px;}
._2e{width:32.330160px;}
._11{width:33.525360px;}
._6{width:34.959600px;}
._1a{width:36.692640px;}
._2b{width:37.837440px;}
._25{width:39.620880px;}
._10{width:41.353920px;}
._f{width:42.489360px;}
._20{width:43.744320px;}
._1d{width:44.820000px;}
._28{width:46.132320px;}
._2f{width:47.449440px;}
._21{width:48.644640px;}
._1b{width:49.780080px;}
._3a{width:50.823120px;}
._e{width:52.110720px;}
._43{width:53.425440px;}
._d{width:54.505200px;}
._30{width:56.234160px;}
._16{width:57.250080px;}
._22{width:58.863600px;}
._41{width:60.296640px;}
._2a{width:61.313760px;}
._40{width:63.285840px;}
._2c{width:64.421280px;}
._14{width:65.578320px;}
._29{width:66.866400px;}
._54{width:68.365440px;}
._a{width:69.381360px;}
._31{width:71.233920px;}
._3c{width:72.727920px;}
._51{width:74.640240px;}
._49{width:75.954960px;}
._38{width:77.389200px;}
._55{width:78.942960px;}
._59{width:80.015520px;}
._48{width:81.490800px;}
._4c{width:83.604240px;}
._4f{width:85.240800px;}
._24{width:86.592240px;}
._23{width:87.667920px;}
._5d{width:90.058320px;}
._47{width:91.612080px;}
._3b{width:93.823200px;}
._50{width:95.081520px;}
._42{width:97.169760px;}
._4d{width:98.604000px;}
._3e{width:99.619920px;}
._2d{width:101.173680px;}
._5f{width:105.297120px;}
._58{width:107.388720px;}
._46{width:109.958400px;}
._5a{width:111.751200px;}
._5b{width:113.465280px;}
._52{width:114.892560px;}
._4b{width:117.846720px;}
._45{width:126.691200px;}
._44{width:127.766880px;}
._39{width:136.671120px;}
._3d{width:144.559440px;}
._4e{width:146.412000px;}
._57{width:148.204800px;}
._56{width:149.400000px;}
._5c{width:168.164640px;}
._32{width:174.379680px;}
._4a{width:177.905520px;}
._5e{width:180.714240px;}
._36{width:191.172240px;}
._35{width:192.427200px;}
._53{width:210.773520px;}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(33,33,33);}
.fc2{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.096000px;}
.y54{bottom:90.936000px;}
.y42{bottom:95.616000px;}
.y74{bottom:99.036000px;}
.y53{bottom:108.036000px;}
.y41{bottom:112.896000px;}
.y73{bottom:116.316000px;}
.y52{bottom:125.316000px;}
.y40{bottom:130.176000px;}
.y72{bottom:133.416000px;}
.y51{bottom:142.596000px;}
.y3f{bottom:147.456000px;}
.y71{bottom:150.690000px;}
.y50{bottom:159.870000px;}
.y3e{bottom:164.730000px;}
.y70{bottom:167.970000px;}
.y4f{bottom:177.150000px;}
.y3d{bottom:181.830000px;}
.y6f{bottom:185.250000px;}
.y4e{bottom:194.430000px;}
.y3c{bottom:199.110000px;}
.y6e{bottom:202.530000px;}
.y4d{bottom:211.530000px;}
.y3b{bottom:216.390000px;}
.y6d{bottom:219.810000px;}
.y4c{bottom:228.810000px;}
.y3a{bottom:233.670000px;}
.y6c{bottom:236.910000px;}
.y4b{bottom:246.090000px;}
.y39{bottom:250.950000px;}
.y6b{bottom:254.190000px;}
.y4a{bottom:263.370000px;}
.y38{bottom:268.050000px;}
.y6a{bottom:271.470000px;}
.y49{bottom:280.695000px;}
.y37{bottom:285.375000px;}
.y69{bottom:288.795000px;}
.y48{bottom:297.975000px;}
.y36{bottom:302.655000px;}
.y68{bottom:306.075000px;}
.y47{bottom:315.075000px;}
.y35{bottom:319.935000px;}
.y67{bottom:323.355000px;}
.y46{bottom:332.355000px;}
.y34{bottom:337.215000px;}
.y66{bottom:340.455000px;}
.y45{bottom:349.635000px;}
.y33{bottom:354.495000px;}
.y65{bottom:357.735000px;}
.y44{bottom:366.915000px;}
.y32{bottom:371.595000px;}
.y64{bottom:375.015000px;}
.y43{bottom:380.955000px;}
.y31{bottom:388.875000px;}
.y63{bottom:392.295000px;}
.y30{bottom:406.155000px;}
.y62{bottom:409.575000px;}
.y2f{bottom:423.435000px;}
.y61{bottom:426.675000px;}
.y2e{bottom:440.715000px;}
.y60{bottom:443.955000px;}
.y2d{bottom:457.995000px;}
.y5f{bottom:461.235000px;}
.y78{bottom:467.715000px;}
.y2c{bottom:475.095000px;}
.y5e{bottom:478.515000px;}
.y77{bottom:484.995000px;}
.y2b{bottom:492.375000px;}
.y5d{bottom:495.795000px;}
.y76{bottom:502.095000px;}
.y2a{bottom:509.655000px;}
.y5c{bottom:513.075000px;}
.y29{bottom:526.935000px;}
.y5b{bottom:530.175000px;}
.y75{bottom:540.435000px;}
.y28{bottom:544.215000px;}
.y5a{bottom:547.455000px;}
.y27{bottom:561.345000px;}
.y59{bottom:564.765000px;}
.y26{bottom:578.625000px;}
.y58{bottom:582.045000px;}
.y25{bottom:595.905000px;}
.y57{bottom:599.325000px;}
.y24{bottom:613.185000px;}
.y56{bottom:616.605000px;}
.y23{bottom:630.465000px;}
.y55{bottom:633.705000px;}
.y22{bottom:647.745000px;}
.y21{bottom:664.845000px;}
.y20{bottom:682.125000px;}
.y1f{bottom:699.405000px;}
.y1e{bottom:716.685000px;}
.y1d{bottom:733.965000px;}
.y1c{bottom:751.245000px;}
.y1b{bottom:768.345000px;}
.y1a{bottom:785.625000px;}
.y19{bottom:802.905000px;}
.y18{bottom:820.185000px;}
.y17{bottom:837.465000px;}
.y16{bottom:854.790000px;}
.y15{bottom:871.890000px;}
.y14{bottom:889.170000px;}
.y13{bottom:906.450000px;}
.y12{bottom:923.730000px;}
.y11{bottom:941.010000px;}
.y10{bottom:958.110000px;}
.yf{bottom:975.390000px;}
.ye{bottom:992.670000px;}
.yd{bottom:1009.950000px;}
.yc{bottom:1027.230000px;}
.yb{bottom:1044.510000px;}
.ya{bottom:1061.610000px;}
.y9{bottom:1078.890000px;}
.y8{bottom:1096.170000px;}
.y7{bottom:1113.450000px;}
.y6{bottom:1130.760000px;}
.y5{bottom:1148.040000px;}
.y3{bottom:1166.400000px;}
.y2{bottom:1184.580000px;}
.y1{bottom:1198.440000px;}
.h2{height:39.760312px;}
.h9{height:43.156758px;}
.h8{height:49.255313px;}
.h6{height:51.677227px;}
.h7{height:53.573906px;}
.ha{height:59.439023px;}
.h5{height:64.546875px;}
.h4{height:65.884219px;}
.h3{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x3{left:130.535987px;}
.x9{left:132.695987px;}
.x13{left:142.415987px;}
.x14{left:145.115987px;}
.x17{left:154.649987px;}
.x8{left:156.809987px;}
.x2{left:161.309987px;}
.x6{left:162.929987px;}
.x7{left:171.389987px;}
.xb{left:180.749987px;}
.x4{left:190.109987px;}
.x11{left:266.834987px;}
.xa{left:274.574987px;}
.xf{left:291.314987px;}
.x15{left:299.234987px;}
.x5{left:303.014987px;}
.x16{left:489.164987px;}
.xc{left:499.604987px;}
.xd{left:552.704987px;}
.x10{left:806.939987px;}
.xe{left:814.859987px;}
.x12{left:819.899987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls31{letter-spacing:-0.752000pt;}
.ls4e{letter-spacing:-0.502400pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls2f{letter-spacing:-0.409067pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.259200pt;}
.ls49{letter-spacing:-0.115200pt;}
.ls3c{letter-spacing:-0.094933pt;}
.ls21{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.040320pt;}
.ls37{letter-spacing:0.047360pt;}
.ls48{letter-spacing:0.057600pt;}
.ls30{letter-spacing:0.094933pt;}
.ls59{letter-spacing:0.136533pt;}
.ls43{letter-spacing:0.137600pt;}
.ls53{letter-spacing:0.154880pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3d{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls55{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.423467pt;}
.ls25{letter-spacing:0.524800pt;}
.ls27{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.871040pt;}
.ls17{letter-spacing:1.440000pt;}
.ls19{letter-spacing:2.080000pt;}
.lsc{letter-spacing:2.720000pt;}
.ls38{letter-spacing:3.360000pt;}
.lsd{letter-spacing:3.520000pt;}
.ls5{letter-spacing:4.000000pt;}
.lsf{letter-spacing:4.640000pt;}
.ls29{letter-spacing:5.280000pt;}
.ls18{letter-spacing:5.920000pt;}
.ls3b{letter-spacing:6.560000pt;}
.ls1b{letter-spacing:7.200000pt;}
.ls8{letter-spacing:7.840000pt;}
.ls40{letter-spacing:9.760000pt;}
.ls4b{letter-spacing:10.400000pt;}
.ls9{letter-spacing:11.680000pt;}
.ls2c{letter-spacing:12.320000pt;}
.lsa{letter-spacing:13.600000pt;}
.ls26{letter-spacing:14.240000pt;}
.ls3e{letter-spacing:14.880000pt;}
.ls2a{letter-spacing:16.160000pt;}
.ls51{letter-spacing:16.592640pt;}
.ls22{letter-spacing:16.800000pt;}
.ls2d{letter-spacing:17.440000pt;}
.ls1{letter-spacing:18.080000pt;}
.ls33{letter-spacing:18.720000pt;}
.ls39{letter-spacing:20.000000pt;}
.ls1f{letter-spacing:20.640000pt;}
.ls2e{letter-spacing:21.280000pt;}
.ls35{letter-spacing:21.920000pt;}
.ls36{letter-spacing:23.306667pt;}
.ls4a{letter-spacing:25.120000pt;}
.ls3{letter-spacing:26.400000pt;}
.ls10{letter-spacing:27.040000pt;}
.ls4c{letter-spacing:27.658667pt;}
.ls2b{letter-spacing:28.960000pt;}
.ls1a{letter-spacing:29.600000pt;}
.ls3f{letter-spacing:31.520000pt;}
.ls42{letter-spacing:32.160000pt;}
.ls57{letter-spacing:32.571307pt;}
.ls58{letter-spacing:32.592640pt;}
.ls4f{letter-spacing:33.440000pt;}
.ls32{letter-spacing:35.360000pt;}
.ls1c{letter-spacing:36.000000pt;}
.ls1d{letter-spacing:36.640000pt;}
.ls7{letter-spacing:37.920000pt;}
.ls34{letter-spacing:39.200000pt;}
.ls4d{letter-spacing:39.840000pt;}
.ls3a{letter-spacing:40.480000pt;}
.ls45{letter-spacing:41.120000pt;}
.ls23{letter-spacing:41.760000pt;}
.ls46{letter-spacing:42.560000pt;}
.ls52{letter-spacing:45.600000pt;}
.ls4{letter-spacing:48.800000pt;}
.lsb{letter-spacing:51.466667pt;}
.ls50{letter-spacing:57.120000pt;}
.ls56{letter-spacing:58.811307pt;}
.ls54{letter-spacing:58.832640pt;}
.ls6{letter-spacing:59.200000pt;}
.ls11{letter-spacing:59.680000pt;}
.ls44{letter-spacing:81.440000pt;}
.ls41{letter-spacing:84.640000pt;}
.ls47{letter-spacing:89.760000pt;}
.ls28{letter-spacing:175.498667pt;}
.ws4{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.511040pt;}
.ws3{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.337600pt;}
.wsd{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.020800pt;}
.ws7{word-spacing:-12.960000pt;}
.ws0{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.760320pt;}
.ws5{word-spacing:0.000000pt;}
._8{margin-left:-2.816427pt;}
._0{margin-left:-1.220693pt;}
._1{width:0.956160pt;}
._2{width:2.205867pt;}
._37{width:3.106133pt;}
._13{width:4.011947pt;}
._1c{width:5.046400pt;}
._b{width:6.533760pt;}
._17{width:7.861760pt;}
._1e{width:9.136640pt;}
._19{width:10.464640pt;}
._34{width:11.422933pt;}
._18{width:12.322773pt;}
._15{width:14.448640pt;}
._33{width:15.670400pt;}
._3f{width:16.784853pt;}
._5{width:17.795200pt;}
._4{width:18.968107pt;}
._9{width:20.021973pt;}
._27{width:20.937813pt;}
._12{width:21.885440pt;}
._3{width:23.054080pt;}
._7{width:24.382080pt;}
._1f{width:25.391360pt;}
._c{width:26.822187pt;}
._26{width:27.728640pt;}
._2e{width:28.737920pt;}
._11{width:29.800320pt;}
._6{width:31.075200pt;}
._1a{width:32.615680pt;}
._2b{width:33.633280pt;}
._25{width:35.218560pt;}
._10{width:36.759040pt;}
._f{width:37.768320pt;}
._20{width:38.883840pt;}
._1d{width:39.840000pt;}
._28{width:41.006507pt;}
._2f{width:42.177280pt;}
._21{width:43.239680pt;}
._1b{width:44.248960pt;}
._3a{width:45.176107pt;}
._e{width:46.320640pt;}
._43{width:47.489280pt;}
._d{width:48.449067pt;}
._30{width:49.985920pt;}
._16{width:50.888960pt;}
._22{width:52.323200pt;}
._41{width:53.597013pt;}
._2a{width:54.501120pt;}
._40{width:56.254080pt;}
._2c{width:57.263360pt;}
._14{width:58.291840pt;}
._29{width:59.436800pt;}
._54{width:60.769280pt;}
._a{width:61.672320pt;}
._31{width:63.319040pt;}
._3c{width:64.647040pt;}
._51{width:66.346880pt;}
._49{width:67.515520pt;}
._38{width:68.790400pt;}
._55{width:70.171520pt;}
._59{width:71.124907pt;}
._48{width:72.436267pt;}
._4c{width:74.314880pt;}
._4f{width:75.769600pt;}
._24{width:76.970880pt;}
._23{width:77.927040pt;}
._5d{width:80.051840pt;}
._47{width:81.432960pt;}
._3b{width:83.398400pt;}
._50{width:84.516907pt;}
._42{width:86.373120pt;}
._4d{width:87.648000pt;}
._3e{width:88.551040pt;}
._2d{width:89.932160pt;}
._5f{width:93.597440pt;}
._58{width:95.456640pt;}
._46{width:97.740800pt;}
._5a{width:99.334400pt;}
._5b{width:100.858027pt;}
._52{width:102.126720pt;}
._4b{width:104.752640pt;}
._45{width:112.614400pt;}
._44{width:113.570560pt;}
._39{width:121.485440pt;}
._3d{width:128.497280pt;}
._4e{width:130.144000pt;}
._57{width:131.737600pt;}
._56{width:132.800000pt;}
._5c{width:149.479680pt;}
._32{width:155.004160pt;}
._4a{width:158.138240pt;}
._5e{width:160.634880pt;}
._36{width:169.930880pt;}
._35{width:171.046400pt;}
._53{width:187.354240pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:50.752000pt;}
.y54{bottom:80.832000pt;}
.y42{bottom:84.992000pt;}
.y74{bottom:88.032000pt;}
.y53{bottom:96.032000pt;}
.y41{bottom:100.352000pt;}
.y73{bottom:103.392000pt;}
.y52{bottom:111.392000pt;}
.y40{bottom:115.712000pt;}
.y72{bottom:118.592000pt;}
.y51{bottom:126.752000pt;}
.y3f{bottom:131.072000pt;}
.y71{bottom:133.946667pt;}
.y50{bottom:142.106667pt;}
.y3e{bottom:146.426667pt;}
.y70{bottom:149.306667pt;}
.y4f{bottom:157.466667pt;}
.y3d{bottom:161.626667pt;}
.y6f{bottom:164.666667pt;}
.y4e{bottom:172.826667pt;}
.y3c{bottom:176.986667pt;}
.y6e{bottom:180.026667pt;}
.y4d{bottom:188.026667pt;}
.y3b{bottom:192.346667pt;}
.y6d{bottom:195.386667pt;}
.y4c{bottom:203.386667pt;}
.y3a{bottom:207.706667pt;}
.y6c{bottom:210.586667pt;}
.y4b{bottom:218.746667pt;}
.y39{bottom:223.066667pt;}
.y6b{bottom:225.946667pt;}
.y4a{bottom:234.106667pt;}
.y38{bottom:238.266667pt;}
.y6a{bottom:241.306667pt;}
.y49{bottom:249.506667pt;}
.y37{bottom:253.666667pt;}
.y69{bottom:256.706667pt;}
.y48{bottom:264.866667pt;}
.y36{bottom:269.026667pt;}
.y68{bottom:272.066667pt;}
.y47{bottom:280.066667pt;}
.y35{bottom:284.386667pt;}
.y67{bottom:287.426667pt;}
.y46{bottom:295.426667pt;}
.y34{bottom:299.746667pt;}
.y66{bottom:302.626667pt;}
.y45{bottom:310.786667pt;}
.y33{bottom:315.106667pt;}
.y65{bottom:317.986667pt;}
.y44{bottom:326.146667pt;}
.y32{bottom:330.306667pt;}
.y64{bottom:333.346667pt;}
.y43{bottom:338.626667pt;}
.y31{bottom:345.666667pt;}
.y63{bottom:348.706667pt;}
.y30{bottom:361.026667pt;}
.y62{bottom:364.066667pt;}
.y2f{bottom:376.386667pt;}
.y61{bottom:379.266667pt;}
.y2e{bottom:391.746667pt;}
.y60{bottom:394.626667pt;}
.y2d{bottom:407.106667pt;}
.y5f{bottom:409.986667pt;}
.y78{bottom:415.746667pt;}
.y2c{bottom:422.306667pt;}
.y5e{bottom:425.346667pt;}
.y77{bottom:431.106667pt;}
.y2b{bottom:437.666667pt;}
.y5d{bottom:440.706667pt;}
.y76{bottom:446.306667pt;}
.y2a{bottom:453.026667pt;}
.y5c{bottom:456.066667pt;}
.y29{bottom:468.386667pt;}
.y5b{bottom:471.266667pt;}
.y75{bottom:480.386667pt;}
.y28{bottom:483.746667pt;}
.y5a{bottom:486.626667pt;}
.y27{bottom:498.973333pt;}
.y59{bottom:502.013333pt;}
.y26{bottom:514.333333pt;}
.y58{bottom:517.373333pt;}
.y25{bottom:529.693333pt;}
.y57{bottom:532.733333pt;}
.y24{bottom:545.053333pt;}
.y56{bottom:548.093333pt;}
.y23{bottom:560.413333pt;}
.y55{bottom:563.293333pt;}
.y22{bottom:575.773333pt;}
.y21{bottom:590.973333pt;}
.y20{bottom:606.333333pt;}
.y1f{bottom:621.693333pt;}
.y1e{bottom:637.053333pt;}
.y1d{bottom:652.413333pt;}
.y1c{bottom:667.773333pt;}
.y1b{bottom:682.973333pt;}
.y1a{bottom:698.333333pt;}
.y19{bottom:713.693333pt;}
.y18{bottom:729.053333pt;}
.y17{bottom:744.413333pt;}
.y16{bottom:759.813333pt;}
.y15{bottom:775.013333pt;}
.y14{bottom:790.373333pt;}
.y13{bottom:805.733333pt;}
.y12{bottom:821.093333pt;}
.y11{bottom:836.453333pt;}
.y10{bottom:851.653333pt;}
.yf{bottom:867.013333pt;}
.ye{bottom:882.373333pt;}
.yd{bottom:897.733333pt;}
.yc{bottom:913.093333pt;}
.yb{bottom:928.453333pt;}
.ya{bottom:943.653333pt;}
.y9{bottom:959.013333pt;}
.y8{bottom:974.373333pt;}
.y7{bottom:989.733333pt;}
.y6{bottom:1005.120000pt;}
.y5{bottom:1020.480000pt;}
.y3{bottom:1036.800000pt;}
.y2{bottom:1052.960000pt;}
.y1{bottom:1065.280000pt;}
.h2{height:35.342500pt;}
.h9{height:38.361562pt;}
.h8{height:43.782500pt;}
.h6{height:45.935313pt;}
.h7{height:47.621250pt;}
.ha{height:52.834688pt;}
.h5{height:57.375000pt;}
.h4{height:58.563750pt;}
.h3{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x3{left:116.031988pt;}
.x9{left:117.951988pt;}
.x13{left:126.591988pt;}
.x14{left:128.991988pt;}
.x17{left:137.466655pt;}
.x8{left:139.386655pt;}
.x2{left:143.386655pt;}
.x6{left:144.826655pt;}
.x7{left:152.346655pt;}
.xb{left:160.666655pt;}
.x4{left:168.986655pt;}
.x11{left:237.186655pt;}
.xa{left:244.066655pt;}
.xf{left:258.946655pt;}
.x15{left:265.986655pt;}
.x5{left:269.346655pt;}
.x16{left:434.813322pt;}
.xc{left:444.093322pt;}
.xd{left:491.293322pt;}
.x10{left:717.279988pt;}
.xe{left:724.319988pt;}
.x12{left:728.799988pt;}
}




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