
    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_0c5b3092cefb1c7be883d6cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_bdb250055703d3fc04ce7583.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_2f16ae60da06252f14fe1a7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.961648;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_1962bee1b654609fc08803ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911484;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_6e325033dc9db5373cbb35bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_2dec9271855963b08906eb73.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_ea5a3997cc628127a7d48d2c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_e4b5d7898370ff436361ba05.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.974000;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_5c5529a699a978f19165d0e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.968000;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_3e9e1b056cf862d796c9d976.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;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_ed720d57cf6e3cb3c6982d28.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_f56193d973311d0bfb48ef99.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692871;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_6eca5912b82e7140639dc8d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_bdb250055703d3fc04ce7583.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_277a8d7486538d84e1d1d4f3.woff2')format("woff");}.fff{font-family:fff;line-height:0.692871;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_13d630fb03c518295d4d5427.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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;}
.m7{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-4.923600px;}
.v1{vertical-align:-1.402200px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-7.200000px;}
.ls2{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:66.312000px;}
.ls3{letter-spacing:66.323400px;}
.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;}
}
.ws3{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.432000px;}
.ws4{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:0.288000px;}
.wsa{word-spacing:7.200000px;}
.ws6{word-spacing:27.792000px;}
.ws0{word-spacing:31.881600px;}
.wsb{word-spacing:71.550000px;}
.ws1{word-spacing:931.579200px;}
.ws7{word-spacing:1716.003000px;}
._9{margin-left:-18.684000px;}
._47{margin-left:-15.256800px;}
._54{margin-left:-14.003569px;}
._10{margin-left:-12.211631px;}
._2d{margin-left:-10.216800px;}
._38{margin-left:-8.892000px;}
._e{margin-left:-7.228800px;}
._2a{margin-left:-6.069600px;}
._56{margin-left:-4.946400px;}
._16{margin-left:-3.918000px;}
._17{margin-left:-2.707200px;}
._15{margin-left:-1.134000px;}
._19{width:1.368000px;}
._31{width:3.369600px;}
._a{width:4.406400px;}
._48{width:5.601600px;}
._4b{width:7.196400px;}
._36{width:8.812800px;}
._27{width:10.252800px;}
._4a{width:11.289600px;}
._25{width:12.427200px;}
._2b{width:14.400000px;}
._41{width:15.652800px;}
._d{width:16.934400px;}
._11{width:20.383200px;}
._b{width:21.924000px;}
._3{width:22.968000px;}
._21{width:24.199200px;}
._40{width:25.281600px;}
._f{width:26.512800px;}
._4{width:27.784800px;}
._1{width:29.469600px;}
._35{width:30.657600px;}
._39{width:32.832000px;}
._33{width:33.847200px;}
._34{width:35.748000px;}
._5{width:36.907200px;}
._0{width:38.520000px;}
._1b{width:39.830400px;}
._7{width:41.191200px;}
._4e{width:42.242400px;}
._50{width:43.639200px;}
._18{width:45.021600px;}
._2{width:46.036800px;}
._57{width:47.188800px;}
._32{width:48.189600px;}
._8{width:49.960800px;}
._46{width:51.760800px;}
._1c{width:52.783200px;}
._12{width:53.798400px;}
._5c{width:54.842400px;}
._13{width:55.864800px;}
._1d{width:57.816000px;}
._45{width:59.306400px;}
._4f{width:60.602400px;}
._20{width:62.308800px;}
._30{width:63.741600px;}
._52{width:65.052000px;}
._c{width:66.312000px;}
._43{width:67.327200px;}
._42{width:69.602400px;}
._51{width:70.632000px;}
._23{width:71.719200px;}
._1a{width:72.936000px;}
._2f{width:74.772000px;}
._6{width:76.140000px;}
._28{width:77.299200px;}
._4d{width:79.826400px;}
._1f{width:81.216000px;}
._14{width:83.340000px;}
._3f{width:84.571200px;}
._5e{width:86.544000px;}
._2c{width:87.588000px;}
._44{width:89.388000px;}
._55{width:91.800000px;}
._5d{width:96.444000px;}
._4c{width:98.784000px;}
._37{width:100.404000px;}
._5b{width:101.491200px;}
._29{width:102.852000px;}
._58{width:103.903200px;}
._2e{width:105.343200px;}
._3d{width:111.528000px;}
._59{width:113.911200px;}
._53{width:115.776000px;}
._24{width:121.111200px;}
._3b{width:123.444000px;}
._49{width:125.071200px;}
._1e{width:126.360000px;}
._22{width:128.304000px;}
._26{width:129.794400px;}
._5a{width:131.184000px;}
._3a{width:135.648000px;}
._3c{width:145.591200px;}
._3e{width:201.391200px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.943200px;}
.y2d{bottom:64.760550px;}
.y2c{bottom:66.091050px;}
.y57{bottom:93.772950px;}
.y80{bottom:93.960150px;}
.y99{bottom:94.056150px;}
.y56{bottom:116.272950px;}
.y7f{bottom:116.460150px;}
.y98{bottom:116.556150px;}
.y55{bottom:138.772950px;}
.y7e{bottom:138.960150px;}
.y97{bottom:139.056150px;}
.y96{bottom:160.800150px;}
.y54{bottom:161.272950px;}
.y7d{bottom:161.460150px;}
.y22{bottom:179.443050px;}
.y95{bottom:182.544150px;}
.y53{bottom:183.772950px;}
.y7c{bottom:183.960150px;}
.y21{bottom:201.943050px;}
.y94{bottom:204.288150px;}
.y52{bottom:206.272950px;}
.y7b{bottom:206.460150px;}
.y20{bottom:224.443050px;}
.y93{bottom:226.032150px;}
.y51{bottom:228.772950px;}
.y7a{bottom:228.960150px;}
.y1f{bottom:246.943050px;}
.y92{bottom:247.776150px;}
.y50{bottom:251.272950px;}
.y81{bottom:251.460150px;}
.y1e{bottom:269.443050px;}
.y91{bottom:269.520150px;}
.y4f{bottom:273.772950px;}
.y79{bottom:273.960150px;}
.y90{bottom:291.264150px;}
.y1d{bottom:291.943050px;}
.y4e{bottom:296.272950px;}
.y78{bottom:296.460150px;}
.y8f{bottom:313.008150px;}
.y1c{bottom:314.443050px;}
.y4d{bottom:318.772950px;}
.y77{bottom:318.960150px;}
.y8e{bottom:334.752150px;}
.y1b{bottom:336.943050px;}
.y4c{bottom:341.272950px;}
.y76{bottom:341.460150px;}
.y8d{bottom:356.496150px;}
.y1a{bottom:359.443050px;}
.y4b{bottom:363.772950px;}
.y75{bottom:363.960150px;}
.y8c{bottom:378.240150px;}
.y19{bottom:381.943050px;}
.y4a{bottom:386.272950px;}
.y74{bottom:386.460150px;}
.y8b{bottom:399.984150px;}
.y18{bottom:404.443050px;}
.y49{bottom:408.772950px;}
.y73{bottom:408.960150px;}
.y8a{bottom:421.728150px;}
.y17{bottom:426.943050px;}
.y48{bottom:431.272950px;}
.y72{bottom:431.460150px;}
.y89{bottom:443.472150px;}
.y47{bottom:453.772950px;}
.y71{bottom:453.960150px;}
.y2b{bottom:456.139950px;}
.y88{bottom:465.216150px;}
.y16{bottom:471.943050px;}
.y46{bottom:476.272950px;}
.y70{bottom:476.460150px;}
.y2a{bottom:478.639950px;}
.y87{bottom:486.960150px;}
.y15{bottom:494.443050px;}
.y45{bottom:498.772950px;}
.y6f{bottom:498.960150px;}
.y29{bottom:501.139950px;}
.y86{bottom:509.460150px;}
.y14{bottom:516.943050px;}
.y58{bottom:521.272950px;}
.y6e{bottom:521.460150px;}
.y85{bottom:531.960150px;}
.y13{bottom:539.443050px;}
.y28{bottom:541.639950px;}
.y44{bottom:543.772950px;}
.y6d{bottom:543.960150px;}
.y84{bottom:554.460150px;}
.y12{bottom:561.943050px;}
.y43{bottom:566.272950px;}
.y6c{bottom:566.460150px;}
.y83{bottom:576.960150px;}
.y11{bottom:584.443050px;}
.y27{bottom:586.639950px;}
.y42{bottom:588.772950px;}
.y6b{bottom:588.960150px;}
.y82{bottom:599.460150px;}
.y10{bottom:606.943050px;}
.y41{bottom:611.272950px;}
.y6a{bottom:611.460150px;}
.y26{bottom:627.139950px;}
.yf{bottom:629.443050px;}
.y40{bottom:633.772950px;}
.y69{bottom:633.960150px;}
.ye{bottom:651.943050px;}
.y3f{bottom:656.272950px;}
.y68{bottom:656.460150px;}
.y25{bottom:663.139950px;}
.yd{bottom:674.443050px;}
.y3e{bottom:678.772950px;}
.y67{bottom:678.960150px;}
.yc{bottom:696.943050px;}
.y24{bottom:699.139950px;}
.y3d{bottom:701.272950px;}
.y66{bottom:701.460150px;}
.yb{bottom:719.443050px;}
.y3c{bottom:723.772950px;}
.y65{bottom:723.960150px;}
.y23{bottom:735.139950px;}
.ya{bottom:741.943050px;}
.y3b{bottom:746.272950px;}
.y64{bottom:746.460150px;}
.y9{bottom:764.443050px;}
.y3a{bottom:768.772950px;}
.y63{bottom:768.960150px;}
.y8{bottom:786.943050px;}
.y39{bottom:791.272950px;}
.y62{bottom:791.460150px;}
.y7{bottom:809.443050px;}
.y38{bottom:813.772950px;}
.y61{bottom:813.960150px;}
.y37{bottom:836.272950px;}
.y60{bottom:836.460150px;}
.y6{bottom:854.438550px;}
.y36{bottom:858.772950px;}
.y5f{bottom:858.960150px;}
.y5{bottom:875.443050px;}
.y35{bottom:881.272950px;}
.y5e{bottom:881.460150px;}
.y4{bottom:896.443050px;}
.y34{bottom:903.772950px;}
.y5d{bottom:903.960150px;}
.y33{bottom:926.272950px;}
.y5c{bottom:926.460150px;}
.y3{bottom:945.943050px;}
.y32{bottom:948.772950px;}
.y5b{bottom:948.960150px;}
.y31{bottom:971.272950px;}
.y5a{bottom:971.460150px;}
.y30{bottom:993.772950px;}
.y59{bottom:993.960150px;}
.y2f{bottom:1024.979400px;}
.y2{bottom:1027.321050px;}
.y2e{bottom:1039.979400px;}
.hb{height:32.507812px;}
.hc{height:33.351562px;}
.hd{height:37.520508px;}
.h8{height:40.634766px;}
.h9{height:41.689453px;}
.ha{height:42.000000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h2{height:51.449400px;}
.h3{height:53.250000px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x9{left:63.779550px;}
.x2{left:65.194200px;}
.x1{left:74.553000px;}
.xd{left:85.039350px;}
.x17{left:91.031250px;}
.x7{left:224.187900px;}
.xe{left:225.242100px;}
.x6{left:258.653700px;}
.x15{left:264.193650px;}
.x14{left:268.909200px;}
.x16{left:270.359100px;}
.x13{left:301.452900px;}
.x3{left:349.728300px;}
.xf{left:374.424150px;}
.x12{left:399.937500px;}
.xc{left:412.540200px;}
.x10{left:421.195650px;}
.x18{left:426.935850px;}
.x5{left:506.533200px;}
.x4{left:552.576150px;}
.xb{left:611.464200px;}
.xa{left:632.875800px;}
.x11{left:637.213500px;}
.x8{left:710.503950px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v1{vertical-align:-1.246400pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-6.400000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:58.944000pt;}
.ls3{letter-spacing:58.954133pt;}
.ws3{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.384000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:0.256000pt;}
.wsa{word-spacing:6.400000pt;}
.ws6{word-spacing:24.704000pt;}
.ws0{word-spacing:28.339200pt;}
.wsb{word-spacing:63.600000pt;}
.ws1{word-spacing:828.070400pt;}
.ws7{word-spacing:1525.336000pt;}
._9{margin-left:-16.608000pt;}
._47{margin-left:-13.561600pt;}
._54{margin-left:-12.447616pt;}
._10{margin-left:-10.854784pt;}
._2d{margin-left:-9.081600pt;}
._38{margin-left:-7.904000pt;}
._e{margin-left:-6.425600pt;}
._2a{margin-left:-5.395200pt;}
._56{margin-left:-4.396800pt;}
._16{margin-left:-3.482667pt;}
._17{margin-left:-2.406400pt;}
._15{margin-left:-1.008000pt;}
._19{width:1.216000pt;}
._31{width:2.995200pt;}
._a{width:3.916800pt;}
._48{width:4.979200pt;}
._4b{width:6.396800pt;}
._36{width:7.833600pt;}
._27{width:9.113600pt;}
._4a{width:10.035200pt;}
._25{width:11.046400pt;}
._2b{width:12.800000pt;}
._41{width:13.913600pt;}
._d{width:15.052800pt;}
._11{width:18.118400pt;}
._b{width:19.488000pt;}
._3{width:20.416000pt;}
._21{width:21.510400pt;}
._40{width:22.472533pt;}
._f{width:23.566933pt;}
._4{width:24.697600pt;}
._1{width:26.195200pt;}
._35{width:27.251200pt;}
._39{width:29.184000pt;}
._33{width:30.086400pt;}
._34{width:31.776000pt;}
._5{width:32.806400pt;}
._0{width:34.240000pt;}
._1b{width:35.404800pt;}
._7{width:36.614400pt;}
._4e{width:37.548800pt;}
._50{width:38.790400pt;}
._18{width:40.019200pt;}
._2{width:40.921600pt;}
._57{width:41.945600pt;}
._32{width:42.835200pt;}
._8{width:44.409600pt;}
._46{width:46.009600pt;}
._1c{width:46.918400pt;}
._12{width:47.820800pt;}
._5c{width:48.748800pt;}
._13{width:49.657600pt;}
._1d{width:51.392000pt;}
._45{width:52.716800pt;}
._4f{width:53.868800pt;}
._20{width:55.385600pt;}
._30{width:56.659200pt;}
._52{width:57.824000pt;}
._c{width:58.944000pt;}
._43{width:59.846400pt;}
._42{width:61.868800pt;}
._51{width:62.784000pt;}
._23{width:63.750400pt;}
._1a{width:64.832000pt;}
._2f{width:66.464000pt;}
._6{width:67.680000pt;}
._28{width:68.710400pt;}
._4d{width:70.956800pt;}
._1f{width:72.192000pt;}
._14{width:74.080000pt;}
._3f{width:75.174400pt;}
._5e{width:76.928000pt;}
._2c{width:77.856000pt;}
._44{width:79.456000pt;}
._55{width:81.600000pt;}
._5d{width:85.728000pt;}
._4c{width:87.808000pt;}
._37{width:89.248000pt;}
._5b{width:90.214400pt;}
._29{width:91.424000pt;}
._58{width:92.358400pt;}
._2e{width:93.638400pt;}
._3d{width:99.136000pt;}
._59{width:101.254400pt;}
._53{width:102.912000pt;}
._24{width:107.654400pt;}
._3b{width:109.728000pt;}
._49{width:111.174400pt;}
._1e{width:112.320000pt;}
._22{width:114.048000pt;}
._26{width:115.372800pt;}
._5a{width:116.608000pt;}
._3a{width:120.576000pt;}
._3c{width:129.414400pt;}
._3e{width:179.014400pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.838400pt;}
.y2d{bottom:57.564933pt;}
.y2c{bottom:58.747600pt;}
.y57{bottom:83.353733pt;}
.y80{bottom:83.520133pt;}
.y99{bottom:83.605467pt;}
.y56{bottom:103.353733pt;}
.y7f{bottom:103.520133pt;}
.y98{bottom:103.605467pt;}
.y55{bottom:123.353733pt;}
.y7e{bottom:123.520133pt;}
.y97{bottom:123.605467pt;}
.y96{bottom:142.933467pt;}
.y54{bottom:143.353733pt;}
.y7d{bottom:143.520133pt;}
.y22{bottom:159.504933pt;}
.y95{bottom:162.261467pt;}
.y53{bottom:163.353733pt;}
.y7c{bottom:163.520133pt;}
.y21{bottom:179.504933pt;}
.y94{bottom:181.589467pt;}
.y52{bottom:183.353733pt;}
.y7b{bottom:183.520133pt;}
.y20{bottom:199.504933pt;}
.y93{bottom:200.917467pt;}
.y51{bottom:203.353733pt;}
.y7a{bottom:203.520133pt;}
.y1f{bottom:219.504933pt;}
.y92{bottom:220.245467pt;}
.y50{bottom:223.353733pt;}
.y81{bottom:223.520133pt;}
.y1e{bottom:239.504933pt;}
.y91{bottom:239.573467pt;}
.y4f{bottom:243.353733pt;}
.y79{bottom:243.520133pt;}
.y90{bottom:258.901467pt;}
.y1d{bottom:259.504933pt;}
.y4e{bottom:263.353733pt;}
.y78{bottom:263.520133pt;}
.y8f{bottom:278.229467pt;}
.y1c{bottom:279.504933pt;}
.y4d{bottom:283.353733pt;}
.y77{bottom:283.520133pt;}
.y8e{bottom:297.557467pt;}
.y1b{bottom:299.504933pt;}
.y4c{bottom:303.353733pt;}
.y76{bottom:303.520133pt;}
.y8d{bottom:316.885467pt;}
.y1a{bottom:319.504933pt;}
.y4b{bottom:323.353733pt;}
.y75{bottom:323.520133pt;}
.y8c{bottom:336.213467pt;}
.y19{bottom:339.504933pt;}
.y4a{bottom:343.353733pt;}
.y74{bottom:343.520133pt;}
.y8b{bottom:355.541467pt;}
.y18{bottom:359.504933pt;}
.y49{bottom:363.353733pt;}
.y73{bottom:363.520133pt;}
.y8a{bottom:374.869467pt;}
.y17{bottom:379.504933pt;}
.y48{bottom:383.353733pt;}
.y72{bottom:383.520133pt;}
.y89{bottom:394.197467pt;}
.y47{bottom:403.353733pt;}
.y71{bottom:403.520133pt;}
.y2b{bottom:405.457733pt;}
.y88{bottom:413.525467pt;}
.y16{bottom:419.504933pt;}
.y46{bottom:423.353733pt;}
.y70{bottom:423.520133pt;}
.y2a{bottom:425.457733pt;}
.y87{bottom:432.853467pt;}
.y15{bottom:439.504933pt;}
.y45{bottom:443.353733pt;}
.y6f{bottom:443.520133pt;}
.y29{bottom:445.457733pt;}
.y86{bottom:452.853467pt;}
.y14{bottom:459.504933pt;}
.y58{bottom:463.353733pt;}
.y6e{bottom:463.520133pt;}
.y85{bottom:472.853467pt;}
.y13{bottom:479.504933pt;}
.y28{bottom:481.457733pt;}
.y44{bottom:483.353733pt;}
.y6d{bottom:483.520133pt;}
.y84{bottom:492.853467pt;}
.y12{bottom:499.504933pt;}
.y43{bottom:503.353733pt;}
.y6c{bottom:503.520133pt;}
.y83{bottom:512.853467pt;}
.y11{bottom:519.504933pt;}
.y27{bottom:521.457733pt;}
.y42{bottom:523.353733pt;}
.y6b{bottom:523.520133pt;}
.y82{bottom:532.853467pt;}
.y10{bottom:539.504933pt;}
.y41{bottom:543.353733pt;}
.y6a{bottom:543.520133pt;}
.y26{bottom:557.457733pt;}
.yf{bottom:559.504933pt;}
.y40{bottom:563.353733pt;}
.y69{bottom:563.520133pt;}
.ye{bottom:579.504933pt;}
.y3f{bottom:583.353733pt;}
.y68{bottom:583.520133pt;}
.y25{bottom:589.457733pt;}
.yd{bottom:599.504933pt;}
.y3e{bottom:603.353733pt;}
.y67{bottom:603.520133pt;}
.yc{bottom:619.504933pt;}
.y24{bottom:621.457733pt;}
.y3d{bottom:623.353733pt;}
.y66{bottom:623.520133pt;}
.yb{bottom:639.504933pt;}
.y3c{bottom:643.353733pt;}
.y65{bottom:643.520133pt;}
.y23{bottom:653.457733pt;}
.ya{bottom:659.504933pt;}
.y3b{bottom:663.353733pt;}
.y64{bottom:663.520133pt;}
.y9{bottom:679.504933pt;}
.y3a{bottom:683.353733pt;}
.y63{bottom:683.520133pt;}
.y8{bottom:699.504933pt;}
.y39{bottom:703.353733pt;}
.y62{bottom:703.520133pt;}
.y7{bottom:719.504933pt;}
.y38{bottom:723.353733pt;}
.y61{bottom:723.520133pt;}
.y37{bottom:743.353733pt;}
.y60{bottom:743.520133pt;}
.y6{bottom:759.500933pt;}
.y36{bottom:763.353733pt;}
.y5f{bottom:763.520133pt;}
.y5{bottom:778.171600pt;}
.y35{bottom:783.353733pt;}
.y5e{bottom:783.520133pt;}
.y4{bottom:796.838267pt;}
.y34{bottom:803.353733pt;}
.y5d{bottom:803.520133pt;}
.y33{bottom:823.353733pt;}
.y5c{bottom:823.520133pt;}
.y3{bottom:840.838267pt;}
.y32{bottom:843.353733pt;}
.y5b{bottom:843.520133pt;}
.y31{bottom:863.353733pt;}
.y5a{bottom:863.520133pt;}
.y30{bottom:883.353733pt;}
.y59{bottom:883.520133pt;}
.y2f{bottom:911.092800pt;}
.y2{bottom:913.174267pt;}
.y2e{bottom:924.426133pt;}
.hb{height:28.895833pt;}
.hc{height:29.645833pt;}
.hd{height:33.351562pt;}
.h8{height:36.119792pt;}
.h9{height:37.057292pt;}
.ha{height:37.333333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h2{height:45.732800pt;}
.h3{height:47.333333pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x9{left:56.692933pt;}
.x2{left:57.950400pt;}
.x1{left:66.269333pt;}
.xd{left:75.590533pt;}
.x17{left:80.916667pt;}
.x7{left:199.278133pt;}
.xe{left:200.215200pt;}
.x6{left:229.914400pt;}
.x15{left:234.838800pt;}
.x14{left:239.030400pt;}
.x16{left:240.319200pt;}
.x13{left:267.958133pt;}
.x3{left:310.869600pt;}
.xf{left:332.821467pt;}
.x12{left:355.500000pt;}
.xc{left:366.702400pt;}
.x10{left:374.396133pt;}
.x18{left:379.498533pt;}
.x5{left:450.251733pt;}
.x4{left:491.178800pt;}
.xb{left:543.523733pt;}
.xa{left:562.556267pt;}
.x11{left:566.412000pt;}
.x8{left:631.559067pt;}
}




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