
    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_cee7562812164a2a1201544d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100909;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_8f838ff1aaf6547798406d52.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100909;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_4bda54403de47388947db15d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095455;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_6399d734947df58b7493e36d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.651818;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_1496f6682ec22a039bf29aa0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.140000;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_90b95e2087e9f1c6971848fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113636;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_d6a32f502a93b3fbb40224a4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.915527;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_05eb4476977610dca140fc61.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.903636;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_cee7562812164a2a1201544d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100909;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_cee7562812164a2a1201544d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100909;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_3f639157b3dbf2387bf6aff7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.870909;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_92bfb3cc1498e27cfd9c3d24.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.877930;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_ec378b50413568fcf3ba7864.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.932617;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.223076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223076,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236180,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);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-2.880000px;}
.ls1f{letter-spacing:-2.016000px;}
.ls15{letter-spacing:-1.944000px;}
.ls1c{letter-spacing:-1.800000px;}
.ls19{letter-spacing:-1.620000px;}
.ls5{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.188000px;}
.ls17{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.792000px;}
.ls16{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.756000px;}
.lsc{letter-spacing:0.900000px;}
.ls4{letter-spacing:0.972000px;}
.ls24{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.116000px;}
.ls11{letter-spacing:1.152000px;}
.ls23{letter-spacing:1.332000px;}
.ls3{letter-spacing:1.620000px;}
.lsf{letter-spacing:1.800000px;}
.ls10{letter-spacing:2.016000px;}
.ls14{letter-spacing:2.160000px;}
.ls1a{letter-spacing:2.340000px;}
.ls0{letter-spacing:2.463404px;}
.ls7{letter-spacing:2.520000px;}
.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;}
}
.ws73{word-spacing:-44.820000px;}
.ws3c{word-spacing:-41.040000px;}
.ws4{word-spacing:-40.140000px;}
.ws2d{word-spacing:-28.512000px;}
.ws54{word-spacing:-26.892000px;}
.ws9{word-spacing:-24.084000px;}
.ws1{word-spacing:-23.112000px;}
.ws6{word-spacing:-22.176000px;}
.ws61{word-spacing:-21.924000px;}
.ws55{word-spacing:-17.928000px;}
.ws1e{word-spacing:-17.784000px;}
.ws3d{word-spacing:-17.424000px;}
.ws1a{word-spacing:-16.920000px;}
.ws66{word-spacing:-11.952000px;}
.ws48{word-spacing:-11.520000px;}
.ws32{word-spacing:-11.196000px;}
.ws7d{word-spacing:-10.512000px;}
.ws65{word-spacing:-10.296000px;}
.ws85{word-spacing:-10.260000px;}
.ws2c{word-spacing:-10.080000px;}
.ws53{word-spacing:-9.900000px;}
.ws72{word-spacing:-9.540000px;}
.ws3f{word-spacing:-5.976000px;}
.ws82{word-spacing:-5.400000px;}
.ws6c{word-spacing:-4.824000px;}
.ws59{word-spacing:-4.536000px;}
.ws36{word-spacing:-3.816000px;}
.ws28{word-spacing:-2.808000px;}
.ws3{word-spacing:-2.463404px;}
.ws3e{word-spacing:-2.160000px;}
.ws79{word-spacing:-2.100000px;}
.ws62{word-spacing:-1.800000px;}
.wsa{word-spacing:-1.620000px;}
.ws2e{word-spacing:-1.440000px;}
.ws45{word-spacing:-1.152000px;}
.ws33{word-spacing:-0.972000px;}
.ws56{word-spacing:-0.900000px;}
.ws34{word-spacing:-0.792000px;}
.ws7f{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.648000px;}
.ws1b{word-spacing:-0.504000px;}
.wsc{word-spacing:-0.432000px;}
.ws35{word-spacing:-0.360000px;}
.ws7{word-spacing:-0.336000px;}
.ws7a{word-spacing:-0.300000px;}
.ws16{word-spacing:-0.288000px;}
.ws5{word-spacing:-0.252000px;}
.ws67{word-spacing:-0.240000px;}
.ws2a{word-spacing:-0.216000px;}
.ws68{word-spacing:-0.192000px;}
.ws26{word-spacing:-0.144000px;}
.ws2{word-spacing:0.000000px;}
.ws49{word-spacing:0.072000px;}
.ws81{word-spacing:0.120000px;}
.ws63{word-spacing:0.216000px;}
.ws43{word-spacing:0.288000px;}
.ws74{word-spacing:0.300000px;}
.ws29{word-spacing:0.360000px;}
.ws5f{word-spacing:0.576000px;}
.ws30{word-spacing:0.648000px;}
.ws41{word-spacing:0.720000px;}
.ws77{word-spacing:0.780000px;}
.ws3a{word-spacing:0.792000px;}
.ws6a{word-spacing:0.864000px;}
.wse{word-spacing:1.440000px;}
.ws39{word-spacing:1.566000px;}
.ws1c{word-spacing:1.584000px;}
.ws17{word-spacing:1.656000px;}
.ws51{word-spacing:1.800000px;}
.ws37{word-spacing:1.836000px;}
.ws40{word-spacing:1.944000px;}
.ws70{word-spacing:2.232000px;}
.ws69{word-spacing:2.880000px;}
.ws57{word-spacing:3.096000px;}
.ws27{word-spacing:3.672000px;}
.ws76{word-spacing:3.780000px;}
.ws83{word-spacing:4.380000px;}
.wsf{word-spacing:4.392000px;}
.ws25{word-spacing:5.184000px;}
.ws5d{word-spacing:5.760000px;}
.ws20{word-spacing:6.336000px;}
.ws11{word-spacing:6.840000px;}
.ws18{word-spacing:7.272000px;}
.ws24{word-spacing:7.704000px;}
.ws1f{word-spacing:7.920000px;}
.ws5b{word-spacing:7.992000px;}
.ws6d{word-spacing:8.208000px;}
.ws2f{word-spacing:8.568000px;}
.ws12{word-spacing:8.712000px;}
.ws10{word-spacing:9.288000px;}
.ws6f{word-spacing:9.360000px;}
.ws75{word-spacing:9.420000px;}
.ws38{word-spacing:9.450000px;}
.ws80{word-spacing:9.780000px;}
.ws23{word-spacing:10.224000px;}
.ws7b{word-spacing:10.560000px;}
.ws5e{word-spacing:10.800000px;}
.ws5c{word-spacing:11.808000px;}
.ws42{word-spacing:12.240000px;}
.ws78{word-spacing:12.540000px;}
.ws58{word-spacing:12.960000px;}
.ws4d{word-spacing:14.616000px;}
.ws13{word-spacing:14.832000px;}
.ws22{word-spacing:16.560000px;}
.ws7c{word-spacing:17.478000px;}
.ws2b{word-spacing:17.499600px;}
.ws3b{word-spacing:17.688000px;}
.ws52{word-spacing:17.860800px;}
.ws64{word-spacing:18.106200px;}
.ws50{word-spacing:18.720000px;}
.ws4e{word-spacing:19.368000px;}
.ws84{word-spacing:19.728000px;}
.ws47{word-spacing:19.807200px;}
.ws60{word-spacing:19.896600px;}
.ws21{word-spacing:20.376000px;}
.ws71{word-spacing:20.468400px;}
.ws31{word-spacing:20.469000px;}
.ws5a{word-spacing:21.024000px;}
.ws7e{word-spacing:21.600000px;}
.ws19{word-spacing:25.419000px;}
.wsb{word-spacing:25.942200px;}
.ws4a{word-spacing:26.280000px;}
.ws1d{word-spacing:27.546600px;}
.ws14{word-spacing:27.922800px;}
.ws8{word-spacing:28.184400px;}
.ws0{word-spacing:28.756800px;}
.ws6e{word-spacing:31.608000px;}
.ws44{word-spacing:33.048000px;}
.wsd{word-spacing:37.872000px;}
.ws46{word-spacing:38.808000px;}
.ws4b{word-spacing:41.256000px;}
.ws6b{word-spacing:45.504000px;}
.ws4c{word-spacing:47.088000px;}
.ws4f{word-spacing:53.640000px;}
._8{margin-left:-57.131760px;}
._12{margin-left:-27.522960px;}
._b{margin-left:-25.447200px;}
._16{margin-left:-17.785680px;}
._11{margin-left:-16.173839px;}
._1{margin-left:-15.026767px;}
._2{margin-left:-12.317022px;}
._4{margin-left:-10.692000px;}
._13{margin-left:-9.116160px;}
._d{margin-left:-7.389120px;}
._6{margin-left:-6.070560px;}
._e{margin-left:-4.777440px;}
._3{margin-left:-3.402000px;}
._5{margin-left:-2.191440px;}
._0{margin-left:-1.176960px;}
._a{width:1.477440px;}
._10{width:2.615040px;}
._f{width:4.390560px;}
._15{width:69.696000px;}
._7{width:71.208000px;}
._9{width:72.648000px;}
._17{width:74.088000px;}
._18{width:77.340000px;}
._14{width:78.516000px;}
._c{width:83.472000px;}
._19{width:553.592400px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(87,86,86);}
.fc3{color:transparent;}
.fc6{color:rgb(0,0,0);}
.fc2{color:rgb(227,6,19);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(87,87,86);}
.fsb{font-size:9.942000px;}
.fs0{font-size:36.000000px;}
.fs8{font-size:48.000000px;}
.fsc{font-size:48.586800px;}
.fsa{font-size:51.873000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:62.745600px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:180.000000px;}
.fs1{font-size:273.711600px;}
.y0{bottom:0.000000px;}
.y1{bottom:28.335000px;}
.y24{bottom:49.359000px;}
.ycf{bottom:63.317250px;}
.y80{bottom:66.785550px;}
.y23{bottom:75.417750px;}
.yc{bottom:78.455100px;}
.yf0{bottom:82.497450px;}
.y10{bottom:96.929550px;}
.y7a{bottom:98.563500px;}
.ye7{bottom:99.178050px;}
.yb{bottom:99.455100px;}
.yef{bottom:100.497450px;}
.ya7{bottom:101.332950px;}
.ycd{bottom:102.217050px;}
.ye6{bottom:120.184050px;}
.ya{bottom:120.455100px;}
.y51{bottom:126.923250px;}
.y79{bottom:131.557500px;}
.yb8{bottom:131.574600px;}
.y22{bottom:131.922750px;}
.y11b{bottom:132.502500px;}
.y9{bottom:141.455100px;}
.yb7{bottom:149.574600px;}
.yee{bottom:150.220200px;}
.y50{bottom:150.911250px;}
.yf{bottom:153.419550px;}
.yce{bottom:158.133000px;}
.y8{bottom:162.455100px;}
.y78{bottom:164.551500px;}
.y4f{bottom:171.917250px;}
.yca{bottom:172.116600px;}
.yed{bottom:173.397300px;}
.y7{bottom:183.455100px;}
.ye5{bottom:184.282050px;}
.y77{bottom:185.557500px;}
.y21{bottom:188.427750px;}
.yec{bottom:191.397300px;}
.ycc{bottom:195.359700px;}
.yc9{bottom:197.528850px;}
.ya4{bottom:199.600950px;}
.y5a{bottom:199.632300px;}
.ye4{bottom:202.282050px;}
.y6{bottom:204.455100px;}
.y4e{bottom:204.911250px;}
.y43{bottom:205.759200px;}
.ye{bottom:209.909550px;}
.y119{bottom:214.960350px;}
.yc8{bottom:218.534850px;}
.y76{bottom:218.551500px;}
.ye3{bottom:220.282050px;}
.y118{bottom:223.960350px;}
.yeb{bottom:224.391300px;}
.y4d{bottom:225.917250px;}
.y42{bottom:226.765200px;}
.yf8{bottom:227.648250px;}
.ya6{bottom:228.137100px;}
.y53{bottom:234.039300px;}
.yc7{bottom:239.540850px;}
.y75{bottom:239.557500px;}
.ye2{bottom:241.288050px;}
.y33{bottom:245.322000px;}
.y4c{bottom:246.923250px;}
.y90{bottom:247.521000px;}
.y20{bottom:255.897750px;}
.yea{bottom:257.385300px;}
.y5{bottom:257.968050px;}
.y117{bottom:259.639650px;}
.yb4{bottom:259.700250px;}
.y41{bottom:259.759200px;}
.yc6{bottom:260.546850px;}
.ya5{bottom:260.663100px;}
.ye1{bottom:262.294050px;}
.y1f{bottom:273.897750px;}
.y7e{bottom:274.578150px;}
.y116{bottom:274.639650px;}
.y52{bottom:275.493300px;}
.y8f{bottom:276.033300px;}
.y32{bottom:278.796000px;}
.y4b{bottom:279.917250px;}
.yb3{bottom:280.706250px;}
.yc5{bottom:281.552850px;}
.yf1{bottom:282.474000px;}
.ye0{bottom:283.300050px;}
.y115{bottom:289.639650px;}
.y1e{bottom:291.897750px;}
.y40{bottom:292.753200px;}
.ya3{bottom:293.718450px;}
.y4a{bottom:300.923250px;}
.y102{bottom:302.600550px;}
.y114{bottom:304.639650px;}
.ya2{bottom:305.719950px;}
.y8e{bottom:309.027300px;}
.y1d{bottom:309.897750px;}
.ybb{bottom:310.640850px;}
.y31{bottom:312.270000px;}
.yb2{bottom:313.700250px;}
.y74{bottom:314.725500px;}
.yd3{bottom:316.128900px;}
.y60{bottom:319.285500px;}
.y113{bottom:319.639650px;}
.y101{bottom:323.606550px;}
.y3f{bottom:325.747200px;}
.y1c{bottom:327.897750px;}
.y128{bottom:329.063700px;}
.ya1{bottom:329.722950px;}
.y8d{bottom:330.033300px;}
.y49{bottom:333.917250px;}
.y59{bottom:333.975300px;}
.yb1{bottom:334.706250px;}
.y73{bottom:335.731500px;}
.yd2{bottom:337.134900px;}
.y5f{bottom:337.285500px;}
.ya0{bottom:341.724450px;}
.y112{bottom:343.639650px;}
.y100{bottom:344.612550px;}
.y30{bottom:345.744000px;}
.y1b{bottom:345.897750px;}
.y3e{bottom:346.753200px;}
.y127{bottom:350.063700px;}
.ycb{bottom:351.561600px;}
.y48{bottom:354.923250px;}
.y72{bottom:356.737500px;}
.y5b{bottom:358.275450px;}
.y111{bottom:358.639650px;}
.y8c{bottom:360.039300px;}
.y1a{bottom:363.897750px;}
.yff{bottom:365.618550px;}
.y9f{bottom:365.727450px;}
.ydf{bottom:367.540050px;}
.y58{bottom:367.581300px;}
.yb0{bottom:367.700250px;}
.yc4{bottom:371.750850px;}
.y110{bottom:373.639650px;}
.y9e{bottom:377.728950px;}
.y71{bottom:377.743500px;}
.y2f{bottom:379.218000px;}
.y19{bottom:381.897750px;}
.yde{bottom:385.540050px;}
.yfe{bottom:386.624550px;}
.y34{bottom:387.450150px;}
.y47{bottom:387.917250px;}
.y10f{bottom:388.639650px;}
.yaf{bottom:388.706250px;}
.y57{bottom:389.181300px;}
.y66{bottom:389.254350px;}
.y126{bottom:392.063700px;}
.yc3{bottom:392.756850px;}
.y8b{bottom:393.033300px;}
.y70{bottom:398.749500px;}
.y18{bottom:399.897750px;}
.y9d{bottom:405.005550px;}
.yfd{bottom:407.630550px;}
.y46{bottom:408.923250px;}
.y10e{bottom:412.639650px;}
.y2e{bottom:412.692000px;}
.y125{bottom:413.063700px;}
.yc2{bottom:413.762850px;}
.y8a{bottom:414.039300px;}
.ydd{bottom:415.546050px;}
.y17{bottom:417.897750px;}
.y65{bottom:417.943500px;}
.y6f{bottom:419.755500px;}
.yae{bottom:421.700250px;}
.y56{bottom:422.787300px;}
.y9c{bottom:423.005550px;}
.yfc{bottom:428.636550px;}
.y10d{bottom:429.139650px;}
.ydc{bottom:433.546050px;}
.y124{bottom:434.063700px;}
.yc1{bottom:434.768850px;}
.y6e{bottom:440.761500px;}
.y16{bottom:442.376100px;}
.y89{bottom:444.045300px;}
.y2d{bottom:446.166000px;}
.yfb{bottom:449.642550px;}
.y64{bottom:450.937500px;}
.y10c{bottom:453.139650px;}
.yad{bottom:454.694250px;}
.y9b{bottom:455.999550px;}
.y55{bottom:456.393300px;}
.y11{bottom:458.990550px;}
.yba{bottom:461.372850px;}
.y6d{bottom:461.767500px;}
.ydb{bottom:463.552050px;}
.y3d{bottom:463.882800px;}
.ye9{bottom:471.442500px;}
.y104{bottom:471.815250px;}
.y123{bottom:476.063700px;}
.y54{bottom:477.399300px;}
.y10b{bottom:478.836900px;}
.y2c{bottom:479.640000px;}
.yb9{bottom:482.378850px;}
.y83{bottom:482.700000px;}
.y6c{bottom:482.773500px;}
.y63{bottom:483.931500px;}
.y7f{bottom:484.282350px;}
.yda{bottom:484.558050px;}
.y103{bottom:486.815250px;}
.yac{bottom:487.688250px;}
.yf7{bottom:487.739700px;}
.y9a{bottom:488.993550px;}
.y3c{bottom:490.846800px;}
.y122{bottom:497.063700px;}
.y15{bottom:497.955600px;}
.ye8{bottom:498.442500px;}
.yf6{bottom:502.739700px;}
.y6b{bottom:503.779500px;}
.yab{bottom:508.694250px;}
.y82{bottom:509.700000px;}
.y3b{bottom:511.852800px;}
.y14{bottom:512.955600px;}
.y2b{bottom:513.114000px;}
.yd1{bottom:515.388900px;}
.y93{bottom:518.031450px;}
.y5e{bottom:521.102400px;}
.yf5{bottom:521.747550px;}
.y6a{bottom:524.785500px;}
.y3a{bottom:532.858800px;}
.yd0{bottom:536.394900px;}
.y121{bottom:539.063700px;}
.yf4{bottom:539.747550px;}
.yaa{bottom:541.688250px;}
.y13{bottom:542.955600px;}
.y92{bottom:545.031450px;}
.y69{bottom:545.791500px;}
.y2a{bottom:546.588000px;}
.y5d{bottom:548.102400px;}
.y39{bottom:553.864800px;}
.y12{bottom:557.955600px;}
.y120{bottom:560.063700px;}
.ya9{bottom:562.694250px;}
.y68{bottom:566.797500px;}
.y88{bottom:569.541300px;}
.yc0{bottom:569.552850px;}
.y38{bottom:574.870800px;}
.y5c{bottom:575.102400px;}
.yfa{bottom:579.926550px;}
.y29{bottom:580.062000px;}
.y11f{bottom:581.063700px;}
.yd{bottom:582.029550px;}
.y87{bottom:587.541300px;}
.ybf{bottom:587.552850px;}
.y67{bottom:587.803500px;}
.ya8{bottom:595.688250px;}
.y37{bottom:595.876800px;}
.y99{bottom:598.851750px;}
.yf9{bottom:600.932550px;}
.y4{bottom:602.616450px;}
.y86{bottom:605.541300px;}
.ybe{bottom:605.552850px;}
.yd9{bottom:607.224900px;}
.y109{bottom:611.727000px;}
.y28{bottom:613.536000px;}
.y98{bottom:616.851750px;}
.y36{bottom:616.882800px;}
.y7d{bottom:622.752150px;}
.y11e{bottom:623.063700px;}
.y85{bottom:623.541300px;}
.ybd{bottom:623.552850px;}
.y108{bottom:623.873700px;}
.yd8{bottom:625.224900px;}
.y45{bottom:629.221650px;}
.yf3{bottom:634.769550px;}
.y97{bottom:634.851750px;}
.y107{bottom:636.020400px;}
.yb6{bottom:636.263700px;}
.y84{bottom:641.541300px;}
.ybc{bottom:641.552850px;}
.yd7{bottom:643.224900px;}
.y106{bottom:643.619250px;}
.y11d{bottom:644.063700px;}
.y3{bottom:645.478050px;}
.y27{bottom:647.010000px;}
.y62{bottom:647.677500px;}
.yf2{bottom:652.769550px;}
.y96{bottom:652.851750px;}
.y44{bottom:656.221650px;}
.y7c{bottom:657.025050px;}
.y35{bottom:657.261150px;}
.yb5{bottom:657.263700px;}
.y105{bottom:658.619250px;}
.yd6{bottom:661.224900px;}
.y11c{bottom:665.063700px;}
.y61{bottom:665.677500px;}
.y11a{bottom:668.713350px;}
.y95{bottom:670.851750px;}
.yd5{bottom:679.224900px;}
.y26{bottom:680.484000px;}
.y7b{bottom:684.025050px;}
.y94{bottom:688.851750px;}
.y10a{bottom:693.939000px;}
.yd4{bottom:697.224900px;}
.y81{bottom:702.939000px;}
.y2{bottom:704.782200px;}
.y25{bottom:738.939000px;}
.y91{bottom:740.879250px;}
.h16{height:7.238048px;}
.h2{height:30.141818px;}
.h1b{height:30.829091px;}
.h19{height:33.474597px;}
.h13{height:35.738673px;}
.he{height:40.189091px;}
.h18{height:40.669091px;}
.h10{height:43.229513px;}
.ha{height:45.212727px;}
.hb{height:46.259766px;}
.h15{height:46.832727px;}
.h14{height:48.829091px;}
.hd{height:50.236364px;}
.h17{height:50.836364px;}
.h9{height:52.036364px;}
.hc{height:60.283636px;}
.h12{height:61.003636px;}
.h11{height:61.658182px;}
.hf{height:62.443636px;}
.h8{height:70.330909px;}
.h7{height:71.170909px;}
.h5{height:93.665455px;}
.h1a{height:152.509091px;}
.h6{height:156.109091px;}
.h3{height:229.171258px;}
.h4{height:234.396661px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.x0{left:0.000000px;}
.x1a{left:49.951950px;}
.x1{left:52.724400px;}
.x2{left:54.310050px;}
.x3d{left:55.465950px;}
.x1f{left:57.113250px;}
.x1e{left:62.542350px;}
.x4b{left:64.762924px;}
.x31{left:67.045950px;}
.x3{left:70.303500px;}
.x20{left:75.383850px;}
.x1b{left:81.000000px;}
.x38{left:82.053600px;}
.x42{left:95.641200px;}
.x4a{left:101.083578px;}
.x36{left:111.735600px;}
.x2d{left:114.385500px;}
.x29{left:117.849600px;}
.x4c{left:120.558450px;}
.x2e{left:122.467500px;}
.x43{left:128.329200px;}
.x1d{left:131.590350px;}
.x3e{left:135.439950px;}
.x27{left:136.839600px;}
.x32{left:138.901950px;}
.x28{left:141.213600px;}
.x41{left:147.724350px;}
.x34{left:149.685150px;}
.x39{left:150.936900px;}
.x35{left:160.335600px;}
.x2c{left:163.525500px;}
.x44{left:164.797200px;}
.x3c{left:171.780900px;}
.x33{left:178.953150px;}
.x37{left:185.013600px;}
.x2a{left:187.401600px;}
.x21{left:190.835850px;}
.x23{left:209.501850px;}
.x47{left:216.931950px;}
.x18{left:235.213800px;}
.x3a{left:241.476900px;}
.x49{left:243.850350px;}
.x48{left:248.320650px;}
.x11{left:249.577800px;}
.x45{left:255.517200px;}
.x4{left:256.987200px;}
.x2f{left:262.147500px;}
.x25{left:263.622000px;}
.x22{left:266.075850px;}
.x8{left:287.722650px;}
.x26{left:290.622000px;}
.x9{left:292.657650px;}
.x46{left:295.997550px;}
.x3f{left:298.825950px;}
.xa{left:308.134650px;}
.x40{left:319.606350px;}
.x5{left:325.816650px;}
.x7{left:334.909650px;}
.xf{left:337.336800px;}
.x4d{left:342.993450px;}
.x15{left:352.708800px;}
.xc{left:355.324350px;}
.x6{left:358.786650px;}
.x10{left:363.796800px;}
.x4e{left:379.047450px;}
.xb{left:385.204650px;}
.x14{left:394.687800px;}
.x19{left:407.896800px;}
.x13{left:416.170800px;}
.x17{left:433.726800px;}
.x16{left:435.406800px;}
.x3b{left:439.746750px;}
.xe{left:446.494800px;}
.xd{left:447.901800px;}
.x2b{left:449.689950px;}
.x12{left:458.443800px;}
.x30{left:466.011750px;}
.x24{left:489.793200px;}
.x1c{left:537.620250px;}
.x4f{left:591.748200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-2.560000pt;}
.ls1f{letter-spacing:-1.792000pt;}
.ls15{letter-spacing:-1.728000pt;}
.ls1c{letter-spacing:-1.600000pt;}
.ls19{letter-spacing:-1.440000pt;}
.ls5{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.056000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.672000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls4{letter-spacing:0.864000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls22{letter-spacing:0.992000pt;}
.ls11{letter-spacing:1.024000pt;}
.ls23{letter-spacing:1.184000pt;}
.ls3{letter-spacing:1.440000pt;}
.lsf{letter-spacing:1.600000pt;}
.ls10{letter-spacing:1.792000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:2.080000pt;}
.ls0{letter-spacing:2.189693pt;}
.ls7{letter-spacing:2.240000pt;}
.ws73{word-spacing:-39.840000pt;}
.ws3c{word-spacing:-36.480000pt;}
.ws4{word-spacing:-35.680000pt;}
.ws2d{word-spacing:-25.344000pt;}
.ws54{word-spacing:-23.904000pt;}
.ws9{word-spacing:-21.408000pt;}
.ws1{word-spacing:-20.544000pt;}
.ws6{word-spacing:-19.712000pt;}
.ws61{word-spacing:-19.488000pt;}
.ws55{word-spacing:-15.936000pt;}
.ws1e{word-spacing:-15.808000pt;}
.ws3d{word-spacing:-15.488000pt;}
.ws1a{word-spacing:-15.040000pt;}
.ws66{word-spacing:-10.624000pt;}
.ws48{word-spacing:-10.240000pt;}
.ws32{word-spacing:-9.952000pt;}
.ws7d{word-spacing:-9.344000pt;}
.ws65{word-spacing:-9.152000pt;}
.ws85{word-spacing:-9.120000pt;}
.ws2c{word-spacing:-8.960000pt;}
.ws53{word-spacing:-8.800000pt;}
.ws72{word-spacing:-8.480000pt;}
.ws3f{word-spacing:-5.312000pt;}
.ws82{word-spacing:-4.800000pt;}
.ws6c{word-spacing:-4.288000pt;}
.ws59{word-spacing:-4.032000pt;}
.ws36{word-spacing:-3.392000pt;}
.ws28{word-spacing:-2.496000pt;}
.ws3{word-spacing:-2.189693pt;}
.ws3e{word-spacing:-1.920000pt;}
.ws79{word-spacing:-1.866667pt;}
.ws62{word-spacing:-1.600000pt;}
.wsa{word-spacing:-1.440000pt;}
.ws2e{word-spacing:-1.280000pt;}
.ws45{word-spacing:-1.024000pt;}
.ws33{word-spacing:-0.864000pt;}
.ws56{word-spacing:-0.800000pt;}
.ws34{word-spacing:-0.704000pt;}
.ws7f{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.576000pt;}
.ws1b{word-spacing:-0.448000pt;}
.wsc{word-spacing:-0.384000pt;}
.ws35{word-spacing:-0.320000pt;}
.ws7{word-spacing:-0.298667pt;}
.ws7a{word-spacing:-0.266667pt;}
.ws16{word-spacing:-0.256000pt;}
.ws5{word-spacing:-0.224000pt;}
.ws67{word-spacing:-0.213333pt;}
.ws2a{word-spacing:-0.192000pt;}
.ws68{word-spacing:-0.170667pt;}
.ws26{word-spacing:-0.128000pt;}
.ws2{word-spacing:0.000000pt;}
.ws49{word-spacing:0.064000pt;}
.ws81{word-spacing:0.106667pt;}
.ws63{word-spacing:0.192000pt;}
.ws43{word-spacing:0.256000pt;}
.ws74{word-spacing:0.266667pt;}
.ws29{word-spacing:0.320000pt;}
.ws5f{word-spacing:0.512000pt;}
.ws30{word-spacing:0.576000pt;}
.ws41{word-spacing:0.640000pt;}
.ws77{word-spacing:0.693333pt;}
.ws3a{word-spacing:0.704000pt;}
.ws6a{word-spacing:0.768000pt;}
.wse{word-spacing:1.280000pt;}
.ws39{word-spacing:1.392000pt;}
.ws1c{word-spacing:1.408000pt;}
.ws17{word-spacing:1.472000pt;}
.ws51{word-spacing:1.600000pt;}
.ws37{word-spacing:1.632000pt;}
.ws40{word-spacing:1.728000pt;}
.ws70{word-spacing:1.984000pt;}
.ws69{word-spacing:2.560000pt;}
.ws57{word-spacing:2.752000pt;}
.ws27{word-spacing:3.264000pt;}
.ws76{word-spacing:3.360000pt;}
.ws83{word-spacing:3.893333pt;}
.wsf{word-spacing:3.904000pt;}
.ws25{word-spacing:4.608000pt;}
.ws5d{word-spacing:5.120000pt;}
.ws20{word-spacing:5.632000pt;}
.ws11{word-spacing:6.080000pt;}
.ws18{word-spacing:6.464000pt;}
.ws24{word-spacing:6.848000pt;}
.ws1f{word-spacing:7.040000pt;}
.ws5b{word-spacing:7.104000pt;}
.ws6d{word-spacing:7.296000pt;}
.ws2f{word-spacing:7.616000pt;}
.ws12{word-spacing:7.744000pt;}
.ws10{word-spacing:8.256000pt;}
.ws6f{word-spacing:8.320000pt;}
.ws75{word-spacing:8.373333pt;}
.ws38{word-spacing:8.400000pt;}
.ws80{word-spacing:8.693333pt;}
.ws23{word-spacing:9.088000pt;}
.ws7b{word-spacing:9.386667pt;}
.ws5e{word-spacing:9.600000pt;}
.ws5c{word-spacing:10.496000pt;}
.ws42{word-spacing:10.880000pt;}
.ws78{word-spacing:11.146667pt;}
.ws58{word-spacing:11.520000pt;}
.ws4d{word-spacing:12.992000pt;}
.ws13{word-spacing:13.184000pt;}
.ws22{word-spacing:14.720000pt;}
.ws7c{word-spacing:15.536000pt;}
.ws2b{word-spacing:15.555200pt;}
.ws3b{word-spacing:15.722667pt;}
.ws52{word-spacing:15.876267pt;}
.ws64{word-spacing:16.094400pt;}
.ws50{word-spacing:16.640000pt;}
.ws4e{word-spacing:17.216000pt;}
.ws84{word-spacing:17.536000pt;}
.ws47{word-spacing:17.606400pt;}
.ws60{word-spacing:17.685867pt;}
.ws21{word-spacing:18.112000pt;}
.ws71{word-spacing:18.194133pt;}
.ws31{word-spacing:18.194667pt;}
.ws5a{word-spacing:18.688000pt;}
.ws7e{word-spacing:19.200000pt;}
.ws19{word-spacing:22.594667pt;}
.wsb{word-spacing:23.059733pt;}
.ws4a{word-spacing:23.360000pt;}
.ws1d{word-spacing:24.485867pt;}
.ws14{word-spacing:24.820267pt;}
.ws8{word-spacing:25.052800pt;}
.ws0{word-spacing:25.561600pt;}
.ws6e{word-spacing:28.096000pt;}
.ws44{word-spacing:29.376000pt;}
.wsd{word-spacing:33.664000pt;}
.ws46{word-spacing:34.496000pt;}
.ws4b{word-spacing:36.672000pt;}
.ws6b{word-spacing:40.448000pt;}
.ws4c{word-spacing:41.856000pt;}
.ws4f{word-spacing:47.680000pt;}
._8{margin-left:-50.783787pt;}
._12{margin-left:-24.464853pt;}
._b{margin-left:-22.619733pt;}
._16{margin-left:-15.809493pt;}
._11{margin-left:-14.376746pt;}
._1{margin-left:-13.357126pt;}
._2{margin-left:-10.948464pt;}
._4{margin-left:-9.504000pt;}
._13{margin-left:-8.103253pt;}
._d{margin-left:-6.568106pt;}
._6{margin-left:-5.396053pt;}
._e{margin-left:-4.246613pt;}
._3{margin-left:-3.024000pt;}
._5{margin-left:-1.947947pt;}
._0{margin-left:-1.046187pt;}
._a{width:1.313280pt;}
._10{width:2.324480pt;}
._f{width:3.902720pt;}
._15{width:61.952000pt;}
._7{width:63.296000pt;}
._9{width:64.576000pt;}
._17{width:65.856000pt;}
._18{width:68.746667pt;}
._14{width:69.792000pt;}
._c{width:74.197333pt;}
._19{width:492.082133pt;}
.fsb{font-size:8.837333pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:42.666667pt;}
.fsc{font-size:43.188267pt;}
.fsa{font-size:46.109333pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:55.773867pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:160.000000pt;}
.fs1{font-size:243.299200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:25.186667pt;}
.y24{bottom:43.874667pt;}
.ycf{bottom:56.282000pt;}
.y80{bottom:59.364933pt;}
.y23{bottom:67.038000pt;}
.yc{bottom:69.737867pt;}
.yf0{bottom:73.331067pt;}
.y10{bottom:86.159600pt;}
.y7a{bottom:87.612000pt;}
.ye7{bottom:88.158267pt;}
.yb{bottom:88.404533pt;}
.yef{bottom:89.331067pt;}
.ya7{bottom:90.073733pt;}
.ycd{bottom:90.859600pt;}
.ye6{bottom:106.830267pt;}
.ya{bottom:107.071200pt;}
.y51{bottom:112.820667pt;}
.y79{bottom:116.940000pt;}
.yb8{bottom:116.955200pt;}
.y22{bottom:117.264667pt;}
.y11b{bottom:117.780000pt;}
.y9{bottom:125.737867pt;}
.yb7{bottom:132.955200pt;}
.yee{bottom:133.529067pt;}
.y50{bottom:134.143333pt;}
.yf{bottom:136.372933pt;}
.yce{bottom:140.562667pt;}
.y8{bottom:144.404533pt;}
.y78{bottom:146.268000pt;}
.y4f{bottom:152.815333pt;}
.yca{bottom:152.992533pt;}
.yed{bottom:154.130933pt;}
.y7{bottom:163.071200pt;}
.ye5{bottom:163.806267pt;}
.y77{bottom:164.940000pt;}
.y21{bottom:167.491333pt;}
.yec{bottom:170.130933pt;}
.ycc{bottom:173.653067pt;}
.yc9{bottom:175.581200pt;}
.ya4{bottom:177.423067pt;}
.y5a{bottom:177.450933pt;}
.ye4{bottom:179.806267pt;}
.y6{bottom:181.737867pt;}
.y4e{bottom:182.143333pt;}
.y43{bottom:182.897067pt;}
.ye{bottom:186.586267pt;}
.y119{bottom:191.075867pt;}
.yc8{bottom:194.253200pt;}
.y76{bottom:194.268000pt;}
.ye3{bottom:195.806267pt;}
.y118{bottom:199.075867pt;}
.yeb{bottom:199.458933pt;}
.y4d{bottom:200.815333pt;}
.y42{bottom:201.569067pt;}
.yf8{bottom:202.354000pt;}
.ya6{bottom:202.788533pt;}
.y53{bottom:208.034933pt;}
.yc7{bottom:212.925200pt;}
.y75{bottom:212.940000pt;}
.ye2{bottom:214.478267pt;}
.y33{bottom:218.064000pt;}
.y4c{bottom:219.487333pt;}
.y90{bottom:220.018667pt;}
.y20{bottom:227.464667pt;}
.yea{bottom:228.786933pt;}
.y5{bottom:229.304933pt;}
.y117{bottom:230.790800pt;}
.yb4{bottom:230.844667pt;}
.y41{bottom:230.897067pt;}
.yc6{bottom:231.597200pt;}
.ya5{bottom:231.700533pt;}
.ye1{bottom:233.150267pt;}
.y1f{bottom:243.464667pt;}
.y7e{bottom:244.069467pt;}
.y116{bottom:244.124133pt;}
.y52{bottom:244.882933pt;}
.y8f{bottom:245.362933pt;}
.y32{bottom:247.818667pt;}
.y4b{bottom:248.815333pt;}
.yb3{bottom:249.516667pt;}
.yc5{bottom:250.269200pt;}
.yf1{bottom:251.088000pt;}
.ye0{bottom:251.822267pt;}
.y115{bottom:257.457467pt;}
.y1e{bottom:259.464667pt;}
.y40{bottom:260.225067pt;}
.ya3{bottom:261.083067pt;}
.y4a{bottom:267.487333pt;}
.y102{bottom:268.978267pt;}
.y114{bottom:270.790800pt;}
.ya2{bottom:271.751067pt;}
.y8e{bottom:274.690933pt;}
.y1d{bottom:275.464667pt;}
.ybb{bottom:276.125200pt;}
.y31{bottom:277.573333pt;}
.yb2{bottom:278.844667pt;}
.y74{bottom:279.756000pt;}
.yd3{bottom:281.003467pt;}
.y60{bottom:283.809333pt;}
.y113{bottom:284.124133pt;}
.y101{bottom:287.650267pt;}
.y3f{bottom:289.553067pt;}
.y1c{bottom:291.464667pt;}
.y128{bottom:292.501067pt;}
.ya1{bottom:293.087067pt;}
.y8d{bottom:293.362933pt;}
.y49{bottom:296.815333pt;}
.y59{bottom:296.866933pt;}
.yb1{bottom:297.516667pt;}
.y73{bottom:298.428000pt;}
.yd2{bottom:299.675467pt;}
.y5f{bottom:299.809333pt;}
.ya0{bottom:303.755067pt;}
.y112{bottom:305.457467pt;}
.y100{bottom:306.322267pt;}
.y30{bottom:307.328000pt;}
.y1b{bottom:307.464667pt;}
.y3e{bottom:308.225067pt;}
.y127{bottom:311.167733pt;}
.ycb{bottom:312.499200pt;}
.y48{bottom:315.487333pt;}
.y72{bottom:317.100000pt;}
.y5b{bottom:318.467067pt;}
.y111{bottom:318.790800pt;}
.y8c{bottom:320.034933pt;}
.y1a{bottom:323.464667pt;}
.yff{bottom:324.994267pt;}
.y9f{bottom:325.091067pt;}
.ydf{bottom:326.702267pt;}
.y58{bottom:326.738933pt;}
.yb0{bottom:326.844667pt;}
.yc4{bottom:330.445200pt;}
.y110{bottom:332.124133pt;}
.y9e{bottom:335.759067pt;}
.y71{bottom:335.772000pt;}
.y2f{bottom:337.082667pt;}
.y19{bottom:339.464667pt;}
.yde{bottom:342.702267pt;}
.yfe{bottom:343.666267pt;}
.y34{bottom:344.400133pt;}
.y47{bottom:344.815333pt;}
.y10f{bottom:345.457467pt;}
.yaf{bottom:345.516667pt;}
.y57{bottom:345.938933pt;}
.y66{bottom:346.003867pt;}
.y126{bottom:348.501067pt;}
.yc3{bottom:349.117200pt;}
.y8b{bottom:349.362933pt;}
.y70{bottom:354.444000pt;}
.y18{bottom:355.464667pt;}
.y9d{bottom:360.004933pt;}
.yfd{bottom:362.338267pt;}
.y46{bottom:363.487333pt;}
.y10e{bottom:366.790800pt;}
.y2e{bottom:366.837333pt;}
.y125{bottom:367.167733pt;}
.yc2{bottom:367.789200pt;}
.y8a{bottom:368.034933pt;}
.ydd{bottom:369.374267pt;}
.y17{bottom:371.464667pt;}
.y65{bottom:371.505333pt;}
.y6f{bottom:373.116000pt;}
.yae{bottom:374.844667pt;}
.y56{bottom:375.810933pt;}
.y9c{bottom:376.004933pt;}
.yfc{bottom:381.010267pt;}
.y10d{bottom:381.457467pt;}
.ydc{bottom:385.374267pt;}
.y124{bottom:385.834400pt;}
.yc1{bottom:386.461200pt;}
.y6e{bottom:391.788000pt;}
.y16{bottom:393.223200pt;}
.y89{bottom:394.706933pt;}
.y2d{bottom:396.592000pt;}
.yfb{bottom:399.682267pt;}
.y64{bottom:400.833333pt;}
.y10c{bottom:402.790800pt;}
.yad{bottom:404.172667pt;}
.y9b{bottom:405.332933pt;}
.y55{bottom:405.682933pt;}
.y11{bottom:407.991600pt;}
.yba{bottom:410.109200pt;}
.y6d{bottom:410.460000pt;}
.ydb{bottom:412.046267pt;}
.y3d{bottom:412.340267pt;}
.ye9{bottom:419.060000pt;}
.y104{bottom:419.391333pt;}
.y123{bottom:423.167733pt;}
.y54{bottom:424.354933pt;}
.y10b{bottom:425.632800pt;}
.y2c{bottom:426.346667pt;}
.yb9{bottom:428.781200pt;}
.y83{bottom:429.066667pt;}
.y6c{bottom:429.132000pt;}
.y63{bottom:430.161333pt;}
.y7f{bottom:430.473200pt;}
.yda{bottom:430.718267pt;}
.y103{bottom:432.724667pt;}
.yac{bottom:433.500667pt;}
.yf7{bottom:433.546400pt;}
.y9a{bottom:434.660933pt;}
.y3c{bottom:436.308267pt;}
.y122{bottom:441.834400pt;}
.y15{bottom:442.627200pt;}
.ye8{bottom:443.060000pt;}
.yf6{bottom:446.879733pt;}
.y6b{bottom:447.804000pt;}
.yab{bottom:452.172667pt;}
.y82{bottom:453.066667pt;}
.y3b{bottom:454.980267pt;}
.y14{bottom:455.960533pt;}
.y2b{bottom:456.101333pt;}
.yd1{bottom:458.123467pt;}
.y93{bottom:460.472400pt;}
.y5e{bottom:463.202133pt;}
.yf5{bottom:463.775600pt;}
.y6a{bottom:466.476000pt;}
.y3a{bottom:473.652267pt;}
.yd0{bottom:476.795467pt;}
.y121{bottom:479.167733pt;}
.yf4{bottom:479.775600pt;}
.yaa{bottom:481.500667pt;}
.y13{bottom:482.627200pt;}
.y92{bottom:484.472400pt;}
.y69{bottom:485.148000pt;}
.y2a{bottom:485.856000pt;}
.y5d{bottom:487.202133pt;}
.y39{bottom:492.324267pt;}
.y12{bottom:495.960533pt;}
.y120{bottom:497.834400pt;}
.ya9{bottom:500.172667pt;}
.y68{bottom:503.820000pt;}
.y88{bottom:506.258933pt;}
.yc0{bottom:506.269200pt;}
.y38{bottom:510.996267pt;}
.y5c{bottom:511.202133pt;}
.yfa{bottom:515.490267pt;}
.y29{bottom:515.610667pt;}
.y11f{bottom:516.501067pt;}
.yd{bottom:517.359600pt;}
.y87{bottom:522.258933pt;}
.ybf{bottom:522.269200pt;}
.y67{bottom:522.492000pt;}
.ya8{bottom:529.500667pt;}
.y37{bottom:529.668267pt;}
.y99{bottom:532.312667pt;}
.yf9{bottom:534.162267pt;}
.y4{bottom:535.659067pt;}
.y86{bottom:538.258933pt;}
.ybe{bottom:538.269200pt;}
.yd9{bottom:539.755467pt;}
.y109{bottom:543.757333pt;}
.y28{bottom:545.365333pt;}
.y98{bottom:548.312667pt;}
.y36{bottom:548.340267pt;}
.y7d{bottom:553.557467pt;}
.y11e{bottom:553.834400pt;}
.y85{bottom:554.258933pt;}
.ybd{bottom:554.269200pt;}
.y108{bottom:554.554400pt;}
.yd8{bottom:555.755467pt;}
.y45{bottom:559.308133pt;}
.yf3{bottom:564.239600pt;}
.y97{bottom:564.312667pt;}
.y107{bottom:565.351467pt;}
.yb6{bottom:565.567733pt;}
.y84{bottom:570.258933pt;}
.ybc{bottom:570.269200pt;}
.yd7{bottom:571.755467pt;}
.y106{bottom:572.106000pt;}
.y11d{bottom:572.501067pt;}
.y3{bottom:573.758267pt;}
.y27{bottom:575.120000pt;}
.y62{bottom:575.713333pt;}
.yf2{bottom:580.239600pt;}
.y96{bottom:580.312667pt;}
.y44{bottom:583.308133pt;}
.y7c{bottom:584.022267pt;}
.y35{bottom:584.232133pt;}
.yb5{bottom:584.234400pt;}
.y105{bottom:585.439333pt;}
.yd6{bottom:587.755467pt;}
.y11c{bottom:591.167733pt;}
.y61{bottom:591.713333pt;}
.y11a{bottom:594.411867pt;}
.y95{bottom:596.312667pt;}
.yd5{bottom:603.755467pt;}
.y26{bottom:604.874667pt;}
.y7b{bottom:608.022267pt;}
.y94{bottom:612.312667pt;}
.y10a{bottom:616.834667pt;}
.yd4{bottom:619.755467pt;}
.y81{bottom:624.834667pt;}
.y2{bottom:626.473067pt;}
.y25{bottom:656.834667pt;}
.y91{bottom:658.559333pt;}
.h16{height:6.433820pt;}
.h2{height:26.792727pt;}
.h1b{height:27.403636pt;}
.h19{height:29.755197pt;}
.h13{height:31.767710pt;}
.he{height:35.723636pt;}
.h18{height:36.150303pt;}
.h10{height:38.426233pt;}
.ha{height:40.189091pt;}
.hb{height:41.119792pt;}
.h15{height:41.629091pt;}
.h14{height:43.403636pt;}
.hd{height:44.654545pt;}
.h17{height:45.187879pt;}
.h9{height:46.254545pt;}
.hc{height:53.585455pt;}
.h12{height:54.225455pt;}
.h11{height:54.807273pt;}
.hf{height:55.505455pt;}
.h8{height:62.516364pt;}
.h7{height:63.263030pt;}
.h5{height:83.258182pt;}
.h1a{height:135.563636pt;}
.h6{height:138.763636pt;}
.h3{height:203.707785pt;}
.h4{height:208.352588pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.x0{left:0.000000pt;}
.x1a{left:44.401733pt;}
.x1{left:46.866133pt;}
.x2{left:48.275600pt;}
.x3d{left:49.303067pt;}
.x1f{left:50.767333pt;}
.x1e{left:55.593200pt;}
.x4b{left:57.567044pt;}
.x31{left:59.596400pt;}
.x3{left:62.492000pt;}
.x20{left:67.007867pt;}
.x1b{left:72.000000pt;}
.x38{left:72.936533pt;}
.x42{left:85.014400pt;}
.x4a{left:89.852069pt;}
.x36{left:99.320533pt;}
.x2d{left:101.676000pt;}
.x29{left:104.755200pt;}
.x4c{left:107.163067pt;}
.x2e{left:108.860000pt;}
.x43{left:114.070400pt;}
.x1d{left:116.969200pt;}
.x3e{left:120.391067pt;}
.x27{left:121.635200pt;}
.x32{left:123.468400pt;}
.x28{left:125.523200pt;}
.x41{left:131.310533pt;}
.x34{left:133.053467pt;}
.x39{left:134.166133pt;}
.x35{left:142.520533pt;}
.x2c{left:145.356000pt;}
.x44{left:146.486400pt;}
.x3c{left:152.694133pt;}
.x33{left:159.069467pt;}
.x37{left:164.456533pt;}
.x2a{left:166.579200pt;}
.x21{left:169.631867pt;}
.x23{left:186.223867pt;}
.x47{left:192.828400pt;}
.x18{left:209.078933pt;}
.x3a{left:214.646133pt;}
.x49{left:216.755867pt;}
.x48{left:220.729467pt;}
.x11{left:221.846933pt;}
.x45{left:227.126400pt;}
.x4{left:228.433067pt;}
.x2f{left:233.020000pt;}
.x25{left:234.330667pt;}
.x22{left:236.511867pt;}
.x8{left:255.753467pt;}
.x26{left:258.330667pt;}
.x9{left:260.140133pt;}
.x46{left:263.108933pt;}
.x3f{left:265.623067pt;}
.xa{left:273.897467pt;}
.x40{left:284.094533pt;}
.x5{left:289.614800pt;}
.x7{left:297.697467pt;}
.xf{left:299.854933pt;}
.x4d{left:304.883067pt;}
.x15{left:313.518933pt;}
.xc{left:315.843867pt;}
.x6{left:318.921467pt;}
.x10{left:323.374933pt;}
.x4e{left:336.931067pt;}
.xb{left:342.404133pt;}
.x14{left:350.833600pt;}
.x19{left:362.574933pt;}
.x13{left:369.929600pt;}
.x17{left:385.534933pt;}
.x16{left:387.028267pt;}
.x3b{left:390.886000pt;}
.xe{left:396.884267pt;}
.xd{left:398.134933pt;}
.x2b{left:399.724400pt;}
.x12{left:407.505600pt;}
.x30{left:414.232667pt;}
.x24{left:435.371733pt;}
.x1c{left:477.884667pt;}
.x4f{left:525.998400pt;}
}




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