
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c5a1a95030a9c916e1979a75.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945312;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_945074a459dd895d1e09b722.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_950afc9a24e8624ebb5454b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_3f84c1c2822cf8900c3f0f09.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_4c81d7b6c46229d7185c1146.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061035;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_d7de42619fc6a02f9c7a3075.woff2')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_f0972358bf5c86044dcaa0b9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0271b5038b22f70b0712fd93.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_96a4359689a9115e9920a6cc.woff2')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_9981097cb5d0ee1f56fd0f81.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.850586;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_974c96f6831f0650a5ed5cd6.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_c00373cabbf8e1f308493f30.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_21878e449e33fbff9f77d1f2.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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;}
.ls12{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.334200px;}
.ls4{letter-spacing:-0.308400px;}
.ls7{letter-spacing:-0.255000px;}
.ls13{letter-spacing:-0.224400px;}
.ls6{letter-spacing:-0.086400px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.023040px;}
.ls5{letter-spacing:0.083400px;}
.ls1{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.224400px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.310400px;}
.ls9{letter-spacing:1.440000px;}
.ls8{letter-spacing:1.710000px;}
.ls10{letter-spacing:36.920640px;}
.lsd{letter-spacing:36.944640px;}
.lsb{letter-spacing:62.562720px;}
.lsc{letter-spacing:62.586720px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.ws9{word-spacing:-18.990000px;}
.wsa{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.000000px;}
.wse{word-spacing:-17.504400px;}
.wsd{word-spacing:-17.303040px;}
.wsc{word-spacing:-17.280000px;}
.ws3{word-spacing:-17.190600px;}
.wsf{word-spacing:-17.055600px;}
.ws1{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.238600px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.780000px;}
.ws7{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.357800px;}
.ws8{word-spacing:0.000000px;}
._4f{margin-left:-2.350080px;}
._0{margin-left:-1.263600px;}
._2{width:1.529040px;}
._7{width:2.665440px;}
._6{width:3.801600px;}
._5{width:5.391360px;}
._4{width:6.892560px;}
._3{width:8.106480px;}
._11{width:10.022400px;}
._14{width:11.473920px;}
._2d{width:12.566880px;}
._a{width:14.100480px;}
._8{width:15.137280px;}
._9{width:16.174080px;}
._f{width:18.405360px;}
._41{width:19.520640px;}
._c{width:21.012480px;}
._b{width:22.118400px;}
._10{width:23.658480px;}
._12{width:25.087200px;}
._13{width:26.272320px;}
._e{width:27.924480px;}
._48{width:28.961280px;}
._31{width:30.501360px;}
._3f{width:31.503360px;}
._23{width:32.720880px;}
._30{width:33.937920px;}
._4a{width:35.344080px;}
._d{width:36.357120px;}
._1d{width:38.277600px;}
._1c{width:39.450720px;}
._15{width:41.166720px;}
._24{width:42.980880px;}
._35{width:44.098560px;}
._22{width:45.262800px;}
._49{width:46.517760px;}
._37{width:47.761920px;}
._45{width:49.213440px;}
._36{width:51.148800px;}
._16{width:52.185600px;}
._2a{width:53.445120px;}
._2b{width:54.510480px;}
._1e{width:56.523360px;}
._1f{width:57.656400px;}
._28{width:58.811040px;}
._29{width:60.636960px;}
._20{width:61.700880px;}
._21{width:62.783520px;}
._3b{width:64.212480px;}
._42{width:65.337840px;}
._4b{width:66.355200px;}
._3d{width:67.944960px;}
._32{width:69.208560px;}
._3a{width:71.331840px;}
._33{width:72.595440px;}
._25{width:74.858880px;}
._4e{width:76.170240px;}
._47{width:78.796800px;}
._44{width:79.833600px;}
._43{width:80.889120px;}
._46{width:82.064880px;}
._34{width:83.358720px;}
._4c{width:84.594480px;}
._4d{width:85.826160px;}
._38{width:87.546240px;}
._3e{width:94.417920px;}
._1b{width:98.699760px;}
._2e{width:100.219200px;}
._2f{width:102.412560px;}
._39{width:104.302080px;}
._1a{width:107.946000px;}
._19{width:109.242000px;}
._26{width:113.997600px;}
._27{width:114.998880px;}
._17{width:124.070400px;}
._3c{width:125.886960px;}
._18{width:132.356640px;}
._2c{width:133.929360px;}
._40{width:154.759680px;}
._1{width:781.505760px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:81.360000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:2.340000px;}
.y64{bottom:2.685000px;}
.y14{bottom:3.240000px;}
.y4e{bottom:3.420000px;}
.y6{bottom:3.600000px;}
.y38{bottom:3.765000px;}
.yb{bottom:3.960000px;}
.y3c{bottom:5.220000px;}
.y41{bottom:5.400000px;}
.yc{bottom:5.580000px;}
.y48{bottom:5.760000px;}
.y44{bottom:6.120000px;}
.y47{bottom:6.300000px;}
.y11{bottom:10.080000px;}
.y66{bottom:15.660000px;}
.y63{bottom:16.725000px;}
.y5f{bottom:17.805000px;}
.y13{bottom:18.360000px;}
.y4d{bottom:18.570000px;}
.y54{bottom:18.720000px;}
.y3e{bottom:23.040000px;}
.y5{bottom:23.070000px;}
.y3b{bottom:23.085000px;}
.y37{bottom:23.205000px;}
.y5e{bottom:30.045000px;}
.y62{bottom:30.765000px;}
.y53{bottom:34.020000px;}
.y4c{bottom:34.050000px;}
.y57{bottom:34.200000px;}
.y10{bottom:36.000000px;}
.y3a{bottom:41.085000px;}
.y4{bottom:42.330000px;}
.y36{bottom:43.005000px;}
.y61{bottom:44.805000px;}
.y56{bottom:46.620000px;}
.y9{bottom:46.980000px;}
.y52{bottom:48.600000px;}
.y4b{bottom:49.530000px;}
.y67{bottom:51.480000px;}
.y60{bottom:61.005000px;}
.yf{bottom:61.740000px;}
.y5d{bottom:62.445000px;}
.y35{bottom:62.805000px;}
.y51{bottom:63.360000px;}
.y3{bottom:63.390000px;}
.y8{bottom:66.780000px;}
.y34{bottom:83.145000px;}
.ye{bottom:92.160000px;}
.y5b{bottom:94.845000px;}
.y33{bottom:102.945000px;}
.y5a{bottom:110.325000px;}
.y9d{bottom:121.320000px;}
.y8e{bottom:121.680000px;}
.y32{bottom:122.745000px;}
.y59{bottom:125.805000px;}
.y50{bottom:136.260000px;}
.y58{bottom:141.465000px;}
.y31{bottom:142.545000px;}
.y8d{bottom:147.420000px;}
.y65{bottom:148.500000px;}
.y30{bottom:162.390000px;}
.y8c{bottom:173.340000px;}
.y2f{bottom:182.370000px;}
.y8b{bottom:199.080000px;}
.y2e{bottom:202.170000px;}
.y5c{bottom:213.705000px;}
.y2d{bottom:221.970000px;}
.y8a{bottom:224.850000px;}
.y2c{bottom:241.770000px;}
.y9a{bottom:250.230000px;}
.y89{bottom:250.590000px;}
.y2b{bottom:261.570000px;}
.y94{bottom:276.150000px;}
.y88{bottom:276.510000px;}
.y2a{bottom:281.550000px;}
.y15{bottom:288.405000px;}
.y29{bottom:301.350000px;}
.y87{bottom:302.250000px;}
.y28{bottom:321.150000px;}
.y86{bottom:327.990000px;}
.y27{bottom:340.950000px;}
.y85{bottom:353.730000px;}
.y26{bottom:360.750000px;}
.y84{bottom:379.290000px;}
.y93{bottom:379.650000px;}
.y25{bottom:380.730000px;}
.y24{bottom:400.560000px;}
.y83{bottom:405.030000px;}
.y92{bottom:405.390000px;}
.y23{bottom:420.360000px;}
.y82{bottom:431.130000px;}
.y22{bottom:440.160000px;}
.y55{bottom:442.155000px;}
.y97{bottom:456.735000px;}
.y81{bottom:457.095000px;}
.y21{bottom:459.960000px;}
.y20{bottom:479.940000px;}
.y80{bottom:482.835000px;}
.y1f{bottom:499.740000px;}
.y7f{bottom:508.575000px;}
.y4f{bottom:511.455000px;}
.y1e{bottom:519.540000px;}
.y7e{bottom:534.315000px;}
.y1d{bottom:539.340000px;}
.y1c{bottom:559.140000px;}
.y7d{bottom:560.235000px;}
.y1b{bottom:579.120000px;}
.y7c{bottom:585.975000px;}
.y1a{bottom:598.920000px;}
.y7b{bottom:611.715000px;}
.y19{bottom:618.720000px;}
.y7a{bottom:637.455000px;}
.y18{bottom:638.565000px;}
.y17{bottom:658.365000px;}
.y4a{bottom:659.955000px;}
.y79{bottom:663.375000px;}
.y16{bottom:681.045000px;}
.y98{bottom:688.785000px;}
.y78{bottom:689.145000px;}
.y77{bottom:714.885000px;}
.y49{bottom:722.085000px;}
.y46{bottom:739.905000px;}
.y91{bottom:740.265000px;}
.y76{bottom:740.625000px;}
.y45{bottom:757.905000px;}
.y90{bottom:766.185000px;}
.y75{bottom:766.545000px;}
.y43{bottom:775.725000px;}
.y9c{bottom:791.925000px;}
.y74{bottom:792.285000px;}
.y42{bottom:793.545000px;}
.y96{bottom:817.665000px;}
.y73{bottom:818.025000px;}
.y40{bottom:829.185000px;}
.y72{bottom:843.765000px;}
.y3f{bottom:847.185000px;}
.y3d{bottom:865.005000px;}
.y99{bottom:869.325000px;}
.y71{bottom:869.685000px;}
.y9b{bottom:895.065000px;}
.y70{bottom:895.425000px;}
.y39{bottom:900.645000px;}
.y6f{bottom:921.210000px;}
.y6e{bottom:946.950000px;}
.y12{bottom:954.330000px;}
.y6d{bottom:972.870000px;}
.yd{bottom:985.290000px;}
.y6c{bottom:998.610000px;}
.y6b{bottom:1024.350000px;}
.y6a{bottom:1050.090000px;}
.y69{bottom:1075.650000px;}
.y8f{bottom:1076.010000px;}
.ya{bottom:1096.350000px;}
.y68{bottom:1101.390000px;}
.y95{bottom:1101.750000px;}
.y7{bottom:1122.090000px;}
.y1{bottom:1137.570000px;}
.h13{height:17.820000px;}
.h14{height:18.000000px;}
.h7{height:21.045000px;}
.hd{height:30.945000px;}
.h12{height:35.640000px;}
.h1d{height:40.655391px;}
.h1c{height:40.843828px;}
.h1f{height:45.509766px;}
.h23{height:48.262500px;}
.h15{height:51.519375px;}
.h17{height:52.971680px;}
.hf{height:52.998047px;}
.h11{height:53.662500px;}
.he{height:54.421875px;}
.h5{height:56.084062px;}
.h4{height:59.395781px;}
.h8{height:60.960938px;}
.h16{height:62.130000px;}
.h1e{height:65.196000px;}
.h6{height:65.837812px;}
.h3{height:65.884219px;}
.hc{height:67.803750px;}
.h21{height:67.837500px;}
.h19{height:69.285000px;}
.h20{height:69.660000px;}
.h22{height:71.044468px;}
.hb{height:72.562500px;}
.h1b{height:74.685000px;}
.ha{height:81.995625px;}
.h2{height:82.830000px;}
.h9{height:111.045000px;}
.h18{height:148.485000px;}
.h1a{height:153.735000px;}
.h10{height:696.870000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:82.609500px;}
.wa{width:95.601000px;}
.w2{width:115.189500px;}
.w4{width:156.949500px;}
.w7{width:178.219500px;}
.w8{width:515.085000px;}
.w5{width:536.355000px;}
.w3{width:578.115000px;}
.w6{width:693.315000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.130000px;}
.x9{left:14.749500px;}
.x6{left:27.165000px;}
.x14{left:30.229500px;}
.x18{left:36.709500px;}
.x13{left:39.229500px;}
.x4{left:41.745000px;}
.xe{left:78.463500px;}
.xf{left:86.743500px;}
.x16{left:89.083500px;}
.x5{left:96.690000px;}
.x2{left:97.723500px;}
.x1{left:99.946500px;}
.xc{left:100.963500px;}
.x7{left:108.570000px;}
.x15{left:123.823500px;}
.x17{left:129.583500px;}
.x19{left:134.083500px;}
.x1b{left:150.510000px;}
.x1a{left:162.030000px;}
.x12{left:170.128500px;}
.x11{left:182.565000px;}
.x3{left:215.145000px;}
.xd{left:249.328500px;}
.xa{left:256.905000px;}
.x10{left:278.175000px;}
.x1e{left:473.145000px;}
.x1c{left:488.625000px;}
.x1d{left:515.625000px;}
.x1f{left:527.145000px;}
.x8{left:762.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.297067pt;}
.ls4{letter-spacing:-0.274133pt;}
.ls7{letter-spacing:-0.226667pt;}
.ls13{letter-spacing:-0.199467pt;}
.ls6{letter-spacing:-0.076800pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.020480pt;}
.ls5{letter-spacing:0.074133pt;}
.ls1{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.199467pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.164800pt;}
.ls9{letter-spacing:1.280000pt;}
.ls8{letter-spacing:1.520000pt;}
.ls10{letter-spacing:32.818347pt;}
.lsd{letter-spacing:32.839680pt;}
.lsb{letter-spacing:55.611307pt;}
.lsc{letter-spacing:55.632640pt;}
.ws2{word-spacing:-58.880000pt;}
.ws9{word-spacing:-16.880000pt;}
.wsa{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.559467pt;}
.wsd{word-spacing:-15.380480pt;}
.wsc{word-spacing:-15.360000pt;}
.ws3{word-spacing:-15.280533pt;}
.wsf{word-spacing:-15.160533pt;}
.ws1{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.656533pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.360000pt;}
.ws7{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.206933pt;}
.ws8{word-spacing:0.000000pt;}
._4f{margin-left:-2.088960pt;}
._0{margin-left:-1.123200pt;}
._2{width:1.359147pt;}
._7{width:2.369280pt;}
._6{width:3.379200pt;}
._5{width:4.792320pt;}
._4{width:6.126720pt;}
._3{width:7.205760pt;}
._11{width:8.908800pt;}
._14{width:10.199040pt;}
._2d{width:11.170560pt;}
._a{width:12.533760pt;}
._8{width:13.455360pt;}
._9{width:14.376960pt;}
._f{width:16.360320pt;}
._41{width:17.351680pt;}
._c{width:18.677760pt;}
._b{width:19.660800pt;}
._10{width:21.029760pt;}
._12{width:22.299733pt;}
._13{width:23.353173pt;}
._e{width:24.821760pt;}
._48{width:25.743360pt;}
._31{width:27.112320pt;}
._3f{width:28.002987pt;}
._23{width:29.085227pt;}
._30{width:30.167040pt;}
._4a{width:31.416960pt;}
._d{width:32.317440pt;}
._1d{width:34.024533pt;}
._1c{width:35.067307pt;}
._15{width:36.592640pt;}
._24{width:38.205227pt;}
._35{width:39.198720pt;}
._22{width:40.233600pt;}
._49{width:41.349120pt;}
._37{width:42.455040pt;}
._45{width:43.745280pt;}
._36{width:45.465600pt;}
._16{width:46.387200pt;}
._2a{width:47.506773pt;}
._2b{width:48.453760pt;}
._1e{width:50.242987pt;}
._1f{width:51.250133pt;}
._28{width:52.276480pt;}
._29{width:53.899520pt;}
._20{width:54.845227pt;}
._21{width:55.807573pt;}
._3b{width:57.077760pt;}
._42{width:58.078080pt;}
._4b{width:58.982400pt;}
._3d{width:60.395520pt;}
._32{width:61.518720pt;}
._3a{width:63.406080pt;}
._33{width:64.529280pt;}
._25{width:66.541227pt;}
._4e{width:67.706880pt;}
._47{width:70.041600pt;}
._44{width:70.963200pt;}
._43{width:71.901440pt;}
._46{width:72.946560pt;}
._34{width:74.096640pt;}
._4c{width:75.195093pt;}
._4d{width:76.289920pt;}
._38{width:77.818880pt;}
._3e{width:83.927040pt;}
._1b{width:87.733120pt;}
._2e{width:89.083733pt;}
._2f{width:91.033387pt;}
._39{width:92.712960pt;}
._1a{width:95.952000pt;}
._19{width:97.104000pt;}
._26{width:101.331200pt;}
._27{width:102.221227pt;}
._17{width:110.284800pt;}
._3c{width:111.899520pt;}
._18{width:117.650347pt;}
._2c{width:119.048320pt;}
._40{width:137.564160pt;}
._1{width:694.671787pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:72.320000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.080000pt;}
.y64{bottom:2.386667pt;}
.y14{bottom:2.880000pt;}
.y4e{bottom:3.040000pt;}
.y6{bottom:3.200000pt;}
.y38{bottom:3.346667pt;}
.yb{bottom:3.520000pt;}
.y3c{bottom:4.640000pt;}
.y41{bottom:4.800000pt;}
.yc{bottom:4.960000pt;}
.y48{bottom:5.120000pt;}
.y44{bottom:5.440000pt;}
.y47{bottom:5.600000pt;}
.y11{bottom:8.960000pt;}
.y66{bottom:13.920000pt;}
.y63{bottom:14.866667pt;}
.y5f{bottom:15.826667pt;}
.y13{bottom:16.320000pt;}
.y4d{bottom:16.506667pt;}
.y54{bottom:16.640000pt;}
.y3e{bottom:20.480000pt;}
.y5{bottom:20.506667pt;}
.y3b{bottom:20.520000pt;}
.y37{bottom:20.626667pt;}
.y5e{bottom:26.706667pt;}
.y62{bottom:27.346667pt;}
.y53{bottom:30.240000pt;}
.y4c{bottom:30.266667pt;}
.y57{bottom:30.400000pt;}
.y10{bottom:32.000000pt;}
.y3a{bottom:36.520000pt;}
.y4{bottom:37.626667pt;}
.y36{bottom:38.226667pt;}
.y61{bottom:39.826667pt;}
.y56{bottom:41.440000pt;}
.y9{bottom:41.760000pt;}
.y52{bottom:43.200000pt;}
.y4b{bottom:44.026667pt;}
.y67{bottom:45.760000pt;}
.y60{bottom:54.226667pt;}
.yf{bottom:54.880000pt;}
.y5d{bottom:55.506667pt;}
.y35{bottom:55.826667pt;}
.y51{bottom:56.320000pt;}
.y3{bottom:56.346667pt;}
.y8{bottom:59.360000pt;}
.y34{bottom:73.906667pt;}
.ye{bottom:81.920000pt;}
.y5b{bottom:84.306667pt;}
.y33{bottom:91.506667pt;}
.y5a{bottom:98.066667pt;}
.y9d{bottom:107.840000pt;}
.y8e{bottom:108.160000pt;}
.y32{bottom:109.106667pt;}
.y59{bottom:111.826667pt;}
.y50{bottom:121.120000pt;}
.y58{bottom:125.746667pt;}
.y31{bottom:126.706667pt;}
.y8d{bottom:131.040000pt;}
.y65{bottom:132.000000pt;}
.y30{bottom:144.346667pt;}
.y8c{bottom:154.080000pt;}
.y2f{bottom:162.106667pt;}
.y8b{bottom:176.960000pt;}
.y2e{bottom:179.706667pt;}
.y5c{bottom:189.960000pt;}
.y2d{bottom:197.306667pt;}
.y8a{bottom:199.866667pt;}
.y2c{bottom:214.906667pt;}
.y9a{bottom:222.426667pt;}
.y89{bottom:222.746667pt;}
.y2b{bottom:232.506667pt;}
.y94{bottom:245.466667pt;}
.y88{bottom:245.786667pt;}
.y2a{bottom:250.266667pt;}
.y15{bottom:256.360000pt;}
.y29{bottom:267.866667pt;}
.y87{bottom:268.666667pt;}
.y28{bottom:285.466667pt;}
.y86{bottom:291.546667pt;}
.y27{bottom:303.066667pt;}
.y85{bottom:314.426667pt;}
.y26{bottom:320.666667pt;}
.y84{bottom:337.146667pt;}
.y93{bottom:337.466667pt;}
.y25{bottom:338.426667pt;}
.y24{bottom:356.053333pt;}
.y83{bottom:360.026667pt;}
.y92{bottom:360.346667pt;}
.y23{bottom:373.653333pt;}
.y82{bottom:383.226667pt;}
.y22{bottom:391.253333pt;}
.y55{bottom:393.026667pt;}
.y97{bottom:405.986667pt;}
.y81{bottom:406.306667pt;}
.y21{bottom:408.853333pt;}
.y20{bottom:426.613333pt;}
.y80{bottom:429.186667pt;}
.y1f{bottom:444.213333pt;}
.y7f{bottom:452.066667pt;}
.y4f{bottom:454.626667pt;}
.y1e{bottom:461.813333pt;}
.y7e{bottom:474.946667pt;}
.y1d{bottom:479.413333pt;}
.y1c{bottom:497.013333pt;}
.y7d{bottom:497.986667pt;}
.y1b{bottom:514.773333pt;}
.y7c{bottom:520.866667pt;}
.y1a{bottom:532.373333pt;}
.y7b{bottom:543.746667pt;}
.y19{bottom:549.973333pt;}
.y7a{bottom:566.626667pt;}
.y18{bottom:567.613333pt;}
.y17{bottom:585.213333pt;}
.y4a{bottom:586.626667pt;}
.y79{bottom:589.666667pt;}
.y16{bottom:605.373333pt;}
.y98{bottom:612.253333pt;}
.y78{bottom:612.573333pt;}
.y77{bottom:635.453333pt;}
.y49{bottom:641.853333pt;}
.y46{bottom:657.693333pt;}
.y91{bottom:658.013333pt;}
.y76{bottom:658.333333pt;}
.y45{bottom:673.693333pt;}
.y90{bottom:681.053333pt;}
.y75{bottom:681.373333pt;}
.y43{bottom:689.533333pt;}
.y9c{bottom:703.933333pt;}
.y74{bottom:704.253333pt;}
.y42{bottom:705.373333pt;}
.y96{bottom:726.813333pt;}
.y73{bottom:727.133333pt;}
.y40{bottom:737.053333pt;}
.y72{bottom:750.013333pt;}
.y3f{bottom:753.053333pt;}
.y3d{bottom:768.893333pt;}
.y99{bottom:772.733333pt;}
.y71{bottom:773.053333pt;}
.y9b{bottom:795.613333pt;}
.y70{bottom:795.933333pt;}
.y39{bottom:800.573333pt;}
.y6f{bottom:818.853333pt;}
.y6e{bottom:841.733333pt;}
.y12{bottom:848.293333pt;}
.y6d{bottom:864.773333pt;}
.yd{bottom:875.813333pt;}
.y6c{bottom:887.653333pt;}
.y6b{bottom:910.533333pt;}
.y6a{bottom:933.413333pt;}
.y69{bottom:956.133333pt;}
.y8f{bottom:956.453333pt;}
.ya{bottom:974.533333pt;}
.y68{bottom:979.013333pt;}
.y95{bottom:979.333333pt;}
.y7{bottom:997.413333pt;}
.y1{bottom:1011.173333pt;}
.h13{height:15.840000pt;}
.h14{height:16.000000pt;}
.h7{height:18.706667pt;}
.hd{height:27.506667pt;}
.h12{height:31.680000pt;}
.h1d{height:36.138125pt;}
.h1c{height:36.305625pt;}
.h1f{height:40.453125pt;}
.h23{height:42.900000pt;}
.h15{height:45.795000pt;}
.h17{height:47.085938pt;}
.hf{height:47.109375pt;}
.h11{height:47.700000pt;}
.he{height:48.375000pt;}
.h5{height:49.852500pt;}
.h4{height:52.796250pt;}
.h8{height:54.187500pt;}
.h16{height:55.226667pt;}
.h1e{height:57.952000pt;}
.h6{height:58.522500pt;}
.h3{height:58.563750pt;}
.hc{height:60.270000pt;}
.h21{height:60.300000pt;}
.h19{height:61.586667pt;}
.h20{height:61.920000pt;}
.h22{height:63.150638pt;}
.hb{height:64.500000pt;}
.h1b{height:66.386667pt;}
.ha{height:72.885000pt;}
.h2{height:73.626667pt;}
.h9{height:98.706667pt;}
.h18{height:131.986667pt;}
.h1a{height:136.653333pt;}
.h10{height:619.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:73.430667pt;}
.wa{width:84.978667pt;}
.w2{width:102.390667pt;}
.w4{width:139.510667pt;}
.w7{width:158.417333pt;}
.w8{width:457.853333pt;}
.w5{width:476.760000pt;}
.w3{width:513.880000pt;}
.w6{width:616.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.226667pt;}
.x9{left:13.110667pt;}
.x6{left:24.146667pt;}
.x14{left:26.870667pt;}
.x18{left:32.630667pt;}
.x13{left:34.870667pt;}
.x4{left:37.106667pt;}
.xe{left:69.745333pt;}
.xf{left:77.105333pt;}
.x16{left:79.185333pt;}
.x5{left:85.946667pt;}
.x2{left:86.865333pt;}
.x1{left:88.841333pt;}
.xc{left:89.745333pt;}
.x7{left:96.506667pt;}
.x15{left:110.065333pt;}
.x17{left:115.185333pt;}
.x19{left:119.185333pt;}
.x1b{left:133.786667pt;}
.x1a{left:144.026667pt;}
.x12{left:151.225333pt;}
.x11{left:162.280000pt;}
.x3{left:191.240000pt;}
.xd{left:221.625333pt;}
.xa{left:228.360000pt;}
.x10{left:247.266667pt;}
.x1e{left:420.573333pt;}
.x1c{left:434.333333pt;}
.x1d{left:458.333333pt;}
.x1f{left:468.573333pt;}
.x8{left:678.053333pt;}
}




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