
    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_bff701a56744bc0724d06c4e.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_f01aea762d6d9a61053a6378.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_70d4d94fe8868dadf0dd03f9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4ee35b024c7283f340f8429a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_df3bb6b77fa21c1f19fdd79f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ebe634fbc5298779f4238fb1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.909639;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_c87d03f699e8aee35652dc9a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.990000;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_6f2442ab94a920dd7c75aa7b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e96af606cd8606c946feb247.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6ba57b8e9ecfbec837d40b9d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_06796ae43725ee274b24ccad.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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_604add1b7a1c22ff495fd51b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e9da56ac43f9f47220864f5f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_82b22d24308931eab15ca677.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_17c010e36e946913668d56b0.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_41add1ef94dca6bcc0c13234.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_70d4d94fe8868dadf0dd03f9.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_d8178e85d504a59619de3015.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m9{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m4{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);}
.m7{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m5{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);}
.m6{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);}
.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);}
.v1{vertical-align:-4.923600px;}
.v3{vertical-align:-1.402200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.976000px;}
.ls2{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:66.312000px;}
.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;}
}
.wsd{word-spacing:-18.720000px;}
.ws23{word-spacing:-12.312000px;}
.ws17{word-spacing:-12.240000px;}
.wse{word-spacing:-10.913760px;}
.ws38{word-spacing:-10.152000px;}
.ws8{word-spacing:-6.264000px;}
.ws30{word-spacing:-4.608000px;}
.wsf{word-spacing:-4.392000px;}
.ws1{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws1c{word-spacing:0.072000px;}
.ws2d{word-spacing:0.216000px;}
.ws2a{word-spacing:0.576000px;}
.ws39{word-spacing:1.368000px;}
.ws12{word-spacing:1.872000px;}
.ws16{word-spacing:3.312000px;}
.ws3c{word-spacing:4.464000px;}
.ws2f{word-spacing:5.184000px;}
.ws19{word-spacing:5.400000px;}
.ws2b{word-spacing:6.336000px;}
.ws6{word-spacing:7.272000px;}
.ws2e{word-spacing:7.416000px;}
.ws15{word-spacing:7.632000px;}
.ws34{word-spacing:8.208000px;}
.ws25{word-spacing:9.360000px;}
.ws4{word-spacing:10.224000px;}
.ws1d{word-spacing:13.392000px;}
.ws33{word-spacing:13.464000px;}
.ws10{word-spacing:14.184000px;}
.ws22{word-spacing:14.976000px;}
.ws5{word-spacing:16.632000px;}
.ws3{word-spacing:24.264000px;}
.ws2c{word-spacing:30.816000px;}
.ws7{word-spacing:31.680000px;}
.ws11{word-spacing:36.432000px;}
.ws29{word-spacing:39.312000px;}
.ws26{word-spacing:41.328000px;}
.ws9{word-spacing:43.200000px;}
.ws18{word-spacing:43.704000px;}
.wsa{word-spacing:46.821600px;}
.ws3a{word-spacing:47.880000px;}
.ws14{word-spacing:48.312000px;}
.ws13{word-spacing:49.896000px;}
.ws20{word-spacing:51.408000px;}
.ws24{word-spacing:54.576000px;}
.ws35{word-spacing:66.960000px;}
.ws21{word-spacing:70.344000px;}
.ws1b{word-spacing:70.704000px;}
.ws1a{word-spacing:70.848000px;}
.ws37{word-spacing:71.208000px;}
.ws1f{word-spacing:80.280000px;}
.ws28{word-spacing:81.864000px;}
.ws32{word-spacing:86.184000px;}
.ws31{word-spacing:96.336000px;}
.ws36{word-spacing:113.256000px;}
.ws1e{word-spacing:134.712000px;}
.ws27{word-spacing:147.672000px;}
.ws3b{word-spacing:308.520000px;}
.wsb{word-spacing:931.579200px;}
.ws0{word-spacing:1716.003000px;}
._41{margin-left:-58.032000px;}
._24{margin-left:-18.720000px;}
._39{margin-left:-15.076800px;}
._3d{margin-left:-13.968000px;}
._27{margin-left:-12.211200px;}
._2{margin-left:-10.432800px;}
._2a{margin-left:-8.863200px;}
._40{margin-left:-7.862400px;}
._25{margin-left:-6.825600px;}
._4{margin-left:-5.457600px;}
._0{margin-left:-3.918000px;}
._1{margin-left:-2.707200px;}
._a{margin-left:-1.476000px;}
._13{width:1.922400px;}
._7{width:3.585600px;}
._2e{width:4.593600px;}
._10{width:6.170400px;}
._f{width:8.064000px;}
._3a{width:9.475200px;}
._3{width:10.742400px;}
._18{width:12.585600px;}
._8{width:14.428800px;}
._9{width:15.760800px;}
._1a{width:17.172000px;}
._1f{width:19.749600px;}
._2d{width:21.398400px;}
._26{width:22.802400px;}
._21{width:24.163200px;}
._3f{width:26.100000px;}
._3e{width:27.237600px;}
._33{width:28.692000px;}
._31{width:30.117600px;}
._35{width:31.593600px;}
._b{width:33.624000px;}
._32{width:35.546400px;}
._3b{width:36.568800px;}
._12{width:37.699200px;}
._11{width:39.535200px;}
._2f{width:41.112000px;}
._19{width:42.120000px;}
._2b{width:43.948800px;}
._1d{width:45.576000px;}
._16{width:47.016000px;}
._6{width:48.672000px;}
._38{width:50.090400px;}
._29{width:51.804000px;}
._43{width:53.640000px;}
._3c{width:54.648000px;}
._2c{width:55.893600px;}
._23{width:57.283200px;}
._22{width:59.119200px;}
._17{width:60.458400px;}
._42{width:61.466400px;}
._c{width:62.906400px;}
._28{width:64.202400px;}
._5{width:65.390400px;}
._e{width:67.197600px;}
._d{width:69.033600px;}
._15{width:70.306800px;}
._30{width:72.892800px;}
._1b{width:81.252000px;}
._45{width:82.872000px;}
._20{width:88.128000px;}
._14{width:89.244000px;}
._47{width:90.993600px;}
._1c{width:95.184000px;}
._44{width:97.560000px;}
._36{width:99.108000px;}
._34{width:133.164000px;}
._37{width:136.807200px;}
._46{width:156.700800px;}
._1e{width:164.988000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.976000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:63.943200px;}
.y2{bottom:64.760550px;}
.y1{bottom:66.091050px;}
.y57{bottom:93.084300px;}
.y7e{bottom:93.960150px;}
.y56{bottom:115.584300px;}
.y7d{bottom:116.460150px;}
.ya6{bottom:124.710150px;}
.y55{bottom:138.084300px;}
.y7c{bottom:138.960150px;}
.ya5{bottom:147.210150px;}
.y23{bottom:158.443050px;}
.y54{bottom:160.584300px;}
.y7b{bottom:161.460150px;}
.ya4{bottom:169.710150px;}
.y22{bottom:180.943050px;}
.y53{bottom:183.084300px;}
.ya8{bottom:183.960150px;}
.ya3{bottom:192.210150px;}
.y21{bottom:203.443050px;}
.y52{bottom:205.584300px;}
.y7a{bottom:206.460150px;}
.ya2{bottom:214.710150px;}
.y20{bottom:225.943050px;}
.y51{bottom:228.084300px;}
.y79{bottom:228.960150px;}
.ya1{bottom:237.210150px;}
.y1f{bottom:248.443050px;}
.y50{bottom:250.584300px;}
.y78{bottom:251.460150px;}
.ya0{bottom:259.710150px;}
.y1e{bottom:270.943050px;}
.y4f{bottom:273.084300px;}
.y77{bottom:273.960150px;}
.y9f{bottom:282.210150px;}
.y1d{bottom:293.443050px;}
.y4e{bottom:295.584300px;}
.y76{bottom:296.460150px;}
.y9e{bottom:304.710150px;}
.y1c{bottom:315.943050px;}
.y4d{bottom:318.084300px;}
.y75{bottom:318.960150px;}
.y9d{bottom:327.210150px;}
.y1b{bottom:338.443050px;}
.y4c{bottom:340.584300px;}
.y74{bottom:341.460150px;}
.y9c{bottom:349.710150px;}
.y1a{bottom:360.943050px;}
.y4b{bottom:363.084300px;}
.y73{bottom:363.960150px;}
.y9b{bottom:372.210150px;}
.y19{bottom:383.443050px;}
.y4a{bottom:385.584300px;}
.y72{bottom:386.460150px;}
.y18{bottom:405.943050px;}
.y9a{bottom:406.716150px;}
.y49{bottom:408.084300px;}
.y71{bottom:408.960150px;}
.y17{bottom:428.443050px;}
.y99{bottom:428.460150px;}
.y48{bottom:430.584300px;}
.y70{bottom:431.460150px;}
.y98{bottom:450.258150px;}
.y16{bottom:450.943050px;}
.y47{bottom:453.084300px;}
.y6f{bottom:453.960150px;}
.y2c{bottom:456.139950px;}
.y97{bottom:472.002150px;}
.y15{bottom:473.443050px;}
.y46{bottom:475.584300px;}
.y6e{bottom:476.460150px;}
.y2b{bottom:478.639950px;}
.y96{bottom:493.746150px;}
.y45{bottom:498.084300px;}
.y6d{bottom:498.960150px;}
.y2a{bottom:501.139950px;}
.y95{bottom:515.490150px;}
.y14{bottom:518.443050px;}
.y44{bottom:520.584300px;}
.y6c{bottom:521.460150px;}
.y94{bottom:537.234150px;}
.y13{bottom:540.943050px;}
.y29{bottom:541.639950px;}
.y43{bottom:543.084300px;}
.y6b{bottom:543.960150px;}
.y93{bottom:558.978150px;}
.y12{bottom:563.443050px;}
.y42{bottom:565.584300px;}
.y6a{bottom:566.460150px;}
.y92{bottom:580.722150px;}
.y28{bottom:586.639950px;}
.y41{bottom:588.084300px;}
.y69{bottom:588.960150px;}
.y91{bottom:602.466150px;}
.y11{bottom:608.443050px;}
.y40{bottom:610.584300px;}
.y68{bottom:611.460150px;}
.y90{bottom:624.210150px;}
.y27{bottom:627.139950px;}
.y10{bottom:630.943050px;}
.y3f{bottom:633.084300px;}
.y67{bottom:633.960150px;}
.y8f{bottom:645.960150px;}
.yf{bottom:653.443050px;}
.y3e{bottom:655.584300px;}
.y66{bottom:656.460150px;}
.y26{bottom:663.139950px;}
.y8e{bottom:667.740150px;}
.ye{bottom:675.943050px;}
.y3d{bottom:678.084300px;}
.y65{bottom:678.960150px;}
.y8d{bottom:689.484150px;}
.yd{bottom:698.443050px;}
.y25{bottom:699.139950px;}
.y3c{bottom:700.584300px;}
.y64{bottom:701.460150px;}
.y8c{bottom:711.228150px;}
.y3b{bottom:723.084300px;}
.y7f{bottom:723.960150px;}
.y8b{bottom:732.972150px;}
.y24{bottom:735.139950px;}
.yc{bottom:743.443050px;}
.y3a{bottom:745.584300px;}
.y63{bottom:746.460150px;}
.y8a{bottom:754.716150px;}
.yb{bottom:764.437050px;}
.y39{bottom:768.084300px;}
.y62{bottom:768.960150px;}
.y89{bottom:776.460150px;}
.ya{bottom:785.443050px;}
.y38{bottom:790.584300px;}
.y61{bottom:791.460150px;}
.y88{bottom:798.264150px;}
.y9{bottom:806.443050px;}
.y37{bottom:813.084300px;}
.y60{bottom:813.960150px;}
.y87{bottom:820.008150px;}
.y36{bottom:835.584300px;}
.y5f{bottom:836.460150px;}
.y86{bottom:841.752150px;}
.y8{bottom:854.438550px;}
.y35{bottom:858.084300px;}
.y5e{bottom:858.960150px;}
.y85{bottom:863.496150px;}
.y7{bottom:875.443050px;}
.y34{bottom:880.584300px;}
.y5d{bottom:881.460150px;}
.y84{bottom:885.240150px;}
.y6{bottom:896.443050px;}
.y33{bottom:903.084300px;}
.y5c{bottom:903.960150px;}
.y83{bottom:906.984150px;}
.y32{bottom:925.584300px;}
.y5b{bottom:926.460150px;}
.y82{bottom:928.728150px;}
.y5{bottom:945.943050px;}
.y31{bottom:948.084300px;}
.y5a{bottom:948.960150px;}
.y81{bottom:950.472150px;}
.y30{bottom:970.584300px;}
.y59{bottom:971.460150px;}
.y80{bottom:972.216150px;}
.y2f{bottom:993.084300px;}
.y58{bottom:993.960150px;}
.ya7{bottom:993.966150px;}
.y4{bottom:1024.979400px;}
.y2e{bottom:1027.321050px;}
.y3{bottom:1039.979400px;}
.h4{height:32.507812px;}
.h5{height:33.351562px;}
.hb{height:40.634766px;}
.h2{height:41.689453px;}
.h3{height:42.000000px;}
.h8{height:46.200000px;}
.h9{height:50.400000px;}
.hc{height:51.449400px;}
.hd{height:53.250000px;}
.he{height:53.358600px;}
.ha{height:53.359200px;}
.h7{height:54.600000px;}
.h6{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xd{left:65.194200px;}
.xc{left:73.559100px;}
.xe{left:85.039350px;}
.x9{left:224.187900px;}
.xa{left:251.187900px;}
.x5{left:294.446700px;}
.xf{left:374.424150px;}
.x8{left:387.849150px;}
.x10{left:399.930150px;}
.x4{left:412.540200px;}
.x12{left:421.195650px;}
.x14{left:426.935850px;}
.x7{left:498.547650px;}
.xb{left:570.393450px;}
.x3{left:611.464200px;}
.x2{left:632.875800px;}
.x6{left:634.084800px;}
.x13{left:645.457350px;}
.x11{left:710.580450px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v3{vertical-align:-1.246400pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.312000pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:58.944000pt;}
.wsd{word-spacing:-16.640000pt;}
.ws23{word-spacing:-10.944000pt;}
.ws17{word-spacing:-10.880000pt;}
.wse{word-spacing:-9.701120pt;}
.ws38{word-spacing:-9.024000pt;}
.ws8{word-spacing:-5.568000pt;}
.ws30{word-spacing:-4.096000pt;}
.wsf{word-spacing:-3.904000pt;}
.ws1{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.064000pt;}
.ws2d{word-spacing:0.192000pt;}
.ws2a{word-spacing:0.512000pt;}
.ws39{word-spacing:1.216000pt;}
.ws12{word-spacing:1.664000pt;}
.ws16{word-spacing:2.944000pt;}
.ws3c{word-spacing:3.968000pt;}
.ws2f{word-spacing:4.608000pt;}
.ws19{word-spacing:4.800000pt;}
.ws2b{word-spacing:5.632000pt;}
.ws6{word-spacing:6.464000pt;}
.ws2e{word-spacing:6.592000pt;}
.ws15{word-spacing:6.784000pt;}
.ws34{word-spacing:7.296000pt;}
.ws25{word-spacing:8.320000pt;}
.ws4{word-spacing:9.088000pt;}
.ws1d{word-spacing:11.904000pt;}
.ws33{word-spacing:11.968000pt;}
.ws10{word-spacing:12.608000pt;}
.ws22{word-spacing:13.312000pt;}
.ws5{word-spacing:14.784000pt;}
.ws3{word-spacing:21.568000pt;}
.ws2c{word-spacing:27.392000pt;}
.ws7{word-spacing:28.160000pt;}
.ws11{word-spacing:32.384000pt;}
.ws29{word-spacing:34.944000pt;}
.ws26{word-spacing:36.736000pt;}
.ws9{word-spacing:38.400000pt;}
.ws18{word-spacing:38.848000pt;}
.wsa{word-spacing:41.619200pt;}
.ws3a{word-spacing:42.560000pt;}
.ws14{word-spacing:42.944000pt;}
.ws13{word-spacing:44.352000pt;}
.ws20{word-spacing:45.696000pt;}
.ws24{word-spacing:48.512000pt;}
.ws35{word-spacing:59.520000pt;}
.ws21{word-spacing:62.528000pt;}
.ws1b{word-spacing:62.848000pt;}
.ws1a{word-spacing:62.976000pt;}
.ws37{word-spacing:63.296000pt;}
.ws1f{word-spacing:71.360000pt;}
.ws28{word-spacing:72.768000pt;}
.ws32{word-spacing:76.608000pt;}
.ws31{word-spacing:85.632000pt;}
.ws36{word-spacing:100.672000pt;}
.ws1e{word-spacing:119.744000pt;}
.ws27{word-spacing:131.264000pt;}
.ws3b{word-spacing:274.240000pt;}
.wsb{word-spacing:828.070400pt;}
.ws0{word-spacing:1525.336000pt;}
._41{margin-left:-51.584000pt;}
._24{margin-left:-16.640000pt;}
._39{margin-left:-13.401600pt;}
._3d{margin-left:-12.416000pt;}
._27{margin-left:-10.854400pt;}
._2{margin-left:-9.273600pt;}
._2a{margin-left:-7.878400pt;}
._40{margin-left:-6.988800pt;}
._25{margin-left:-6.067200pt;}
._4{margin-left:-4.851200pt;}
._0{margin-left:-3.482667pt;}
._1{margin-left:-2.406400pt;}
._a{margin-left:-1.312000pt;}
._13{width:1.708800pt;}
._7{width:3.187200pt;}
._2e{width:4.083200pt;}
._10{width:5.484800pt;}
._f{width:7.168000pt;}
._3a{width:8.422400pt;}
._3{width:9.548800pt;}
._18{width:11.187200pt;}
._8{width:12.825600pt;}
._9{width:14.009600pt;}
._1a{width:15.264000pt;}
._1f{width:17.555200pt;}
._2d{width:19.020800pt;}
._26{width:20.268800pt;}
._21{width:21.478400pt;}
._3f{width:23.200000pt;}
._3e{width:24.211200pt;}
._33{width:25.504000pt;}
._31{width:26.771200pt;}
._35{width:28.083200pt;}
._b{width:29.888000pt;}
._32{width:31.596800pt;}
._3b{width:32.505600pt;}
._12{width:33.510400pt;}
._11{width:35.142400pt;}
._2f{width:36.544000pt;}
._19{width:37.440000pt;}
._2b{width:39.065600pt;}
._1d{width:40.512000pt;}
._16{width:41.792000pt;}
._6{width:43.264000pt;}
._38{width:44.524800pt;}
._29{width:46.048000pt;}
._43{width:47.680000pt;}
._3c{width:48.576000pt;}
._2c{width:49.683200pt;}
._23{width:50.918400pt;}
._22{width:52.550400pt;}
._17{width:53.740800pt;}
._42{width:54.636800pt;}
._c{width:55.916800pt;}
._28{width:57.068800pt;}
._5{width:58.124800pt;}
._e{width:59.731200pt;}
._d{width:61.363200pt;}
._15{width:62.494933pt;}
._30{width:64.793600pt;}
._1b{width:72.224000pt;}
._45{width:73.664000pt;}
._20{width:78.336000pt;}
._14{width:79.328000pt;}
._47{width:80.883200pt;}
._1c{width:84.608000pt;}
._44{width:86.720000pt;}
._36{width:88.096000pt;}
._34{width:118.368000pt;}
._37{width:121.606400pt;}
._46{width:139.289600pt;}
._1e{width:146.656000pt;}
.fs6{font-size:37.312000pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:56.838400pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.747600pt;}
.y57{bottom:82.741600pt;}
.y7e{bottom:83.520133pt;}
.y56{bottom:102.741600pt;}
.y7d{bottom:103.520133pt;}
.ya6{bottom:110.853467pt;}
.y55{bottom:122.741600pt;}
.y7c{bottom:123.520133pt;}
.ya5{bottom:130.853467pt;}
.y23{bottom:140.838267pt;}
.y54{bottom:142.741600pt;}
.y7b{bottom:143.520133pt;}
.ya4{bottom:150.853467pt;}
.y22{bottom:160.838267pt;}
.y53{bottom:162.741600pt;}
.ya8{bottom:163.520133pt;}
.ya3{bottom:170.853467pt;}
.y21{bottom:180.838267pt;}
.y52{bottom:182.741600pt;}
.y7a{bottom:183.520133pt;}
.ya2{bottom:190.853467pt;}
.y20{bottom:200.838267pt;}
.y51{bottom:202.741600pt;}
.y79{bottom:203.520133pt;}
.ya1{bottom:210.853467pt;}
.y1f{bottom:220.838267pt;}
.y50{bottom:222.741600pt;}
.y78{bottom:223.520133pt;}
.ya0{bottom:230.853467pt;}
.y1e{bottom:240.838267pt;}
.y4f{bottom:242.741600pt;}
.y77{bottom:243.520133pt;}
.y9f{bottom:250.853467pt;}
.y1d{bottom:260.838267pt;}
.y4e{bottom:262.741600pt;}
.y76{bottom:263.520133pt;}
.y9e{bottom:270.853467pt;}
.y1c{bottom:280.838267pt;}
.y4d{bottom:282.741600pt;}
.y75{bottom:283.520133pt;}
.y9d{bottom:290.853467pt;}
.y1b{bottom:300.838267pt;}
.y4c{bottom:302.741600pt;}
.y74{bottom:303.520133pt;}
.y9c{bottom:310.853467pt;}
.y1a{bottom:320.838267pt;}
.y4b{bottom:322.741600pt;}
.y73{bottom:323.520133pt;}
.y9b{bottom:330.853467pt;}
.y19{bottom:340.838267pt;}
.y4a{bottom:342.741600pt;}
.y72{bottom:343.520133pt;}
.y18{bottom:360.838267pt;}
.y9a{bottom:361.525467pt;}
.y49{bottom:362.741600pt;}
.y71{bottom:363.520133pt;}
.y17{bottom:380.838267pt;}
.y99{bottom:380.853467pt;}
.y48{bottom:382.741600pt;}
.y70{bottom:383.520133pt;}
.y98{bottom:400.229467pt;}
.y16{bottom:400.838267pt;}
.y47{bottom:402.741600pt;}
.y6f{bottom:403.520133pt;}
.y2c{bottom:405.457733pt;}
.y97{bottom:419.557467pt;}
.y15{bottom:420.838267pt;}
.y46{bottom:422.741600pt;}
.y6e{bottom:423.520133pt;}
.y2b{bottom:425.457733pt;}
.y96{bottom:438.885467pt;}
.y45{bottom:442.741600pt;}
.y6d{bottom:443.520133pt;}
.y2a{bottom:445.457733pt;}
.y95{bottom:458.213467pt;}
.y14{bottom:460.838267pt;}
.y44{bottom:462.741600pt;}
.y6c{bottom:463.520133pt;}
.y94{bottom:477.541467pt;}
.y13{bottom:480.838267pt;}
.y29{bottom:481.457733pt;}
.y43{bottom:482.741600pt;}
.y6b{bottom:483.520133pt;}
.y93{bottom:496.869467pt;}
.y12{bottom:500.838267pt;}
.y42{bottom:502.741600pt;}
.y6a{bottom:503.520133pt;}
.y92{bottom:516.197467pt;}
.y28{bottom:521.457733pt;}
.y41{bottom:522.741600pt;}
.y69{bottom:523.520133pt;}
.y91{bottom:535.525467pt;}
.y11{bottom:540.838267pt;}
.y40{bottom:542.741600pt;}
.y68{bottom:543.520133pt;}
.y90{bottom:554.853467pt;}
.y27{bottom:557.457733pt;}
.y10{bottom:560.838267pt;}
.y3f{bottom:562.741600pt;}
.y67{bottom:563.520133pt;}
.y8f{bottom:574.186800pt;}
.yf{bottom:580.838267pt;}
.y3e{bottom:582.741600pt;}
.y66{bottom:583.520133pt;}
.y26{bottom:589.457733pt;}
.y8e{bottom:593.546800pt;}
.ye{bottom:600.838267pt;}
.y3d{bottom:602.741600pt;}
.y65{bottom:603.520133pt;}
.y8d{bottom:612.874800pt;}
.yd{bottom:620.838267pt;}
.y25{bottom:621.457733pt;}
.y3c{bottom:622.741600pt;}
.y64{bottom:623.520133pt;}
.y8c{bottom:632.202800pt;}
.y3b{bottom:642.741600pt;}
.y7f{bottom:643.520133pt;}
.y8b{bottom:651.530800pt;}
.y24{bottom:653.457733pt;}
.yc{bottom:660.838267pt;}
.y3a{bottom:662.741600pt;}
.y63{bottom:663.520133pt;}
.y8a{bottom:670.858800pt;}
.yb{bottom:679.499600pt;}
.y39{bottom:682.741600pt;}
.y62{bottom:683.520133pt;}
.y89{bottom:690.186800pt;}
.ya{bottom:698.171600pt;}
.y38{bottom:702.741600pt;}
.y61{bottom:703.520133pt;}
.y88{bottom:709.568133pt;}
.y9{bottom:716.838267pt;}
.y37{bottom:722.741600pt;}
.y60{bottom:723.520133pt;}
.y87{bottom:728.896133pt;}
.y36{bottom:742.741600pt;}
.y5f{bottom:743.520133pt;}
.y86{bottom:748.224133pt;}
.y8{bottom:759.500933pt;}
.y35{bottom:762.741600pt;}
.y5e{bottom:763.520133pt;}
.y85{bottom:767.552133pt;}
.y7{bottom:778.171600pt;}
.y34{bottom:782.741600pt;}
.y5d{bottom:783.520133pt;}
.y84{bottom:786.880133pt;}
.y6{bottom:796.838267pt;}
.y33{bottom:802.741600pt;}
.y5c{bottom:803.520133pt;}
.y83{bottom:806.208133pt;}
.y32{bottom:822.741600pt;}
.y5b{bottom:823.520133pt;}
.y82{bottom:825.536133pt;}
.y5{bottom:840.838267pt;}
.y31{bottom:842.741600pt;}
.y5a{bottom:843.520133pt;}
.y81{bottom:844.864133pt;}
.y30{bottom:862.741600pt;}
.y59{bottom:863.520133pt;}
.y80{bottom:864.192133pt;}
.y2f{bottom:882.741600pt;}
.y58{bottom:883.520133pt;}
.ya7{bottom:883.525467pt;}
.y4{bottom:911.092800pt;}
.y2e{bottom:913.174267pt;}
.y3{bottom:924.426133pt;}
.h4{height:28.895833pt;}
.h5{height:29.645833pt;}
.hb{height:36.119792pt;}
.h2{height:37.057292pt;}
.h3{height:37.333333pt;}
.h8{height:41.066667pt;}
.h9{height:44.800000pt;}
.hc{height:45.732800pt;}
.hd{height:47.333333pt;}
.he{height:47.429867pt;}
.ha{height:47.430400pt;}
.h7{height:48.533333pt;}
.h6{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xd{left:57.950400pt;}
.xc{left:65.385867pt;}
.xe{left:75.590533pt;}
.x9{left:199.278133pt;}
.xa{left:223.278133pt;}
.x5{left:261.730400pt;}
.xf{left:332.821467pt;}
.x8{left:344.754800pt;}
.x10{left:355.493467pt;}
.x4{left:366.702400pt;}
.x12{left:374.396133pt;}
.x14{left:379.498533pt;}
.x7{left:443.153467pt;}
.xb{left:507.016400pt;}
.x3{left:543.523733pt;}
.x2{left:562.556267pt;}
.x6{left:563.630933pt;}
.x13{left:573.739867pt;}
.x11{left:631.627067pt;}
}




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