
    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_b4bcbd0c3eca106518a10c7d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_3335a4c2aadfd8eb4f000712.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_77b18edab4f0609b8a4c3680.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_d48cc825f317abdbb7724118.woff')format("woff");}.ff4{font-family:ff4;line-height:0.902344;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_ede92e25e849b9010f1c9522.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_45cc982514e19715c536ec18.woff')format("woff");}.ff6{font-family:ff6;line-height:0.828000;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_7011046acc654d4fc3d8ed87.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_ef62938c32169488596f20e5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916000;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_4a130182c82d149828654ce1.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5d618241b6ec9470423592d6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.082031;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_dc069c3901a58b53558eeea6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.902344;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_a94a8dbda9db2d3bda3913b8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.922852;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_0bbbf2cefc9c6bd56e388be3.woff')format("woff");}.ffd{font-family:ffd;line-height:1.090332;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_ef479e655bf1de942deabc5c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.677246;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_50ee471bc7139f061ab31087.woff')format("woff");}.fff{font-family:fff;line-height:0.677246;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_f854757dbed87d0969070beb.woff')format("woff");}.ff10{font-family:ff10;line-height:0.899414;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_1c10deb4ff5218a98ca5c440.woff')format("woff");}.ff11{font-family:ff11;line-height:0.902344;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_51ddaa6717c55a0204952c7f.woff')format("woff");}.ff12{font-family:ff12;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-23.760000px;}
.v3{vertical-align:-16.830000px;}
.v4{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.840000px;}
.v2{vertical-align:24.192000px;}
.v1{vertical-align:186.000000px;}
.ls33{letter-spacing:-2.808000px;}
.ls36{letter-spacing:-2.352000px;}
.ls43{letter-spacing:-1.872000px;}
.ls22{letter-spacing:-1.656000px;}
.ls17{letter-spacing:-1.368000px;}
.ls18{letter-spacing:-1.224000px;}
.ls6{letter-spacing:-1.200000px;}
.ls1e{letter-spacing:-1.008000px;}
.ls2f{letter-spacing:-0.936000px;}
.ls2b{letter-spacing:-0.864000px;}
.ls15{letter-spacing:-0.792000px;}
.ls19{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.600000px;}
.ls23{letter-spacing:-0.576000px;}
.ls2a{letter-spacing:-0.504000px;}
.ls35{letter-spacing:-0.480000px;}
.lsb{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.300000px;}
.ls34{letter-spacing:-0.288000px;}
.ls42{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.100800px;}
.lsc{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.025800px;}
.lsd{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.119400px;}
.ls4{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.576000px;}
.ls21{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.864000px;}
.ls25{letter-spacing:1.008000px;}
.ls27{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.224000px;}
.ls38{letter-spacing:1.296000px;}
.ls3c{letter-spacing:1.317600px;}
.ls40{letter-spacing:2.654400px;}
.ls12{letter-spacing:2.971200px;}
.ls41{letter-spacing:4.416000px;}
.ls2{letter-spacing:4.560000px;}
.ls3f{letter-spacing:4.752000px;}
.ls3d{letter-spacing:4.874400px;}
.ls3e{letter-spacing:5.767200px;}
.ls1a{letter-spacing:7.380000px;}
.ls29{letter-spacing:8.136000px;}
.ls0{letter-spacing:8.436000px;}
.ls1b{letter-spacing:8.460000px;}
.ls2c{letter-spacing:8.568000px;}
.ls31{letter-spacing:8.640000px;}
.ls32{letter-spacing:8.712000px;}
.ls3a{letter-spacing:9.144000px;}
.ls2e{letter-spacing:9.216000px;}
.ls37{letter-spacing:9.288000px;}
.ls3b{letter-spacing:9.360000px;}
.ls1{letter-spacing:10.740000px;}
.ls3{letter-spacing:10.871694px;}
.ls39{letter-spacing:11.304000px;}
.ls30{letter-spacing:13.796100px;}
.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;}
}
.ws1{word-spacing:-28.440000px;}
.ws68{word-spacing:-25.320000px;}
.ws31{word-spacing:-22.200000px;}
.ws40{word-spacing:-20.376000px;}
.ws32{word-spacing:-20.232000px;}
.ws17{word-spacing:-19.872000px;}
.ws43{word-spacing:-18.432000px;}
.ws48{word-spacing:-18.360000px;}
.ws3f{word-spacing:-18.144000px;}
.ws16{word-spacing:-18.000000px;}
.ws64{word-spacing:-17.856000px;}
.ws15{word-spacing:-17.784000px;}
.ws18{word-spacing:-17.712000px;}
.ws49{word-spacing:-17.640000px;}
.ws41{word-spacing:-17.424000px;}
.ws69{word-spacing:-17.352000px;}
.ws42{word-spacing:-17.136000px;}
.ws19{word-spacing:-17.064000px;}
.ws77{word-spacing:-16.860000px;}
.ws13{word-spacing:-16.260000px;}
.ws72{word-spacing:-14.820000px;}
.ws2{word-spacing:-14.162400px;}
.ws53{word-spacing:-14.061600px;}
.ws70{word-spacing:-13.488000px;}
.ws6a{word-spacing:-12.336000px;}
.ws1a{word-spacing:-11.856000px;}
.ws56{word-spacing:-11.376000px;}
.ws71{word-spacing:-11.328000px;}
.ws60{word-spacing:-11.304000px;}
.ws63{word-spacing:-9.360000px;}
.ws5f{word-spacing:-9.288000px;}
.ws54{word-spacing:-9.216000px;}
.ws62{word-spacing:-9.144000px;}
.ws58{word-spacing:-8.712000px;}
.ws57{word-spacing:-8.640000px;}
.ws0{word-spacing:-8.496000px;}
.ws3d{word-spacing:-8.460000px;}
.ws4f{word-spacing:-8.136000px;}
.ws6f{word-spacing:-2.654400px;}
.ws5a{word-spacing:-2.016000px;}
.ws61{word-spacing:-1.296000px;}
.ws4c{word-spacing:-1.224000px;}
.ws4b{word-spacing:-1.008000px;}
.wse{word-spacing:-0.864000px;}
.ws3c{word-spacing:-0.792000px;}
.wsf{word-spacing:-0.720000px;}
.ws4a{word-spacing:-0.648000px;}
.ws28{word-spacing:-0.576000px;}
.ws4e{word-spacing:-0.504000px;}
.ws2c{word-spacing:-0.432000px;}
.ws44{word-spacing:-0.360000px;}
.ws22{word-spacing:-0.288000px;}
.ws47{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.144000px;}
.ws20{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws11{word-spacing:0.072000px;}
.ws3e{word-spacing:0.144000px;}
.ws1d{word-spacing:0.216000px;}
.ws73{word-spacing:0.240000px;}
.ws5c{word-spacing:0.288000px;}
.wsb{word-spacing:0.360000px;}
.wsa{word-spacing:0.384000px;}
.ws10{word-spacing:0.432000px;}
.ws5d{word-spacing:0.480000px;}
.ws50{word-spacing:0.504000px;}
.ws45{word-spacing:0.576000px;}
.ws8{word-spacing:0.600000px;}
.ws59{word-spacing:0.648000px;}
.ws2e{word-spacing:0.720000px;}
.ws1e{word-spacing:0.792000px;}
.ws51{word-spacing:0.864000px;}
.ws55{word-spacing:0.936000px;}
.ws2b{word-spacing:1.008000px;}
.ws39{word-spacing:1.152000px;}
.ws6{word-spacing:1.200000px;}
.ws2a{word-spacing:1.224000px;}
.ws76{word-spacing:1.248000px;}
.ws38{word-spacing:1.296000px;}
.ws29{word-spacing:1.368000px;}
.ws75{word-spacing:1.440000px;}
.ws2d{word-spacing:1.656000px;}
.ws9{word-spacing:1.800000px;}
.ws74{word-spacing:1.872000px;}
.ws65{word-spacing:1.944000px;}
.ws36{word-spacing:2.016000px;}
.ws35{word-spacing:2.304000px;}
.ws5e{word-spacing:2.352000px;}
.wsd{word-spacing:2.592000px;}
.ws5b{word-spacing:2.808000px;}
.ws37{word-spacing:2.952000px;}
.ws30{word-spacing:2.976000px;}
.ws2f{word-spacing:3.360000px;}
.ws23{word-spacing:3.456000px;}
.ws66{word-spacing:3.528000px;}
.ws27{word-spacing:3.600000px;}
.ws1b{word-spacing:3.720000px;}
.ws24{word-spacing:3.960000px;}
.ws6d{word-spacing:4.032000px;}
.ws26{word-spacing:4.104000px;}
.ws3{word-spacing:4.200000px;}
.ws46{word-spacing:4.680000px;}
.ws6e{word-spacing:5.040000px;}
.ws3b{word-spacing:5.328000px;}
.ws67{word-spacing:5.760000px;}
.ws34{word-spacing:5.976000px;}
.ws3a{word-spacing:6.048000px;}
.ws33{word-spacing:6.840000px;}
.ws7{word-spacing:7.440000px;}
.ws4{word-spacing:8.400000px;}
.ws52{word-spacing:8.640000px;}
.ws6c{word-spacing:8.712000px;}
.ws21{word-spacing:8.856000px;}
.ws4d{word-spacing:8.928000px;}
.ws6b{word-spacing:9.936000px;}
.ws1f{word-spacing:10.080000px;}
.ws25{word-spacing:10.152000px;}
.ws14{word-spacing:35.340000px;}
.ws1c{word-spacing:73.140000px;}
.ws12{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._16{margin-left:-27.420000px;}
._15{margin-left:-19.386000px;}
._c{margin-left:-15.030000px;}
._5{margin-left:-11.952000px;}
._f{margin-left:-10.141200px;}
._1a{margin-left:-8.640000px;}
._d{margin-left:-7.190400px;}
._1{margin-left:-5.964000px;}
._14{margin-left:-4.890000px;}
._17{margin-left:-3.813600px;}
._7{margin-left:-2.736000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._4{width:3.516000px;}
._9{width:5.383200px;}
._6{width:7.200000px;}
._8{width:8.364000px;}
._a{width:10.288800px;}
._b{width:11.362800px;}
._18{width:12.540000px;}
._19{width:13.776000px;}
._1c{width:15.799200px;}
._1b{width:18.261600px;}
._1d{width:21.774000px;}
._e{width:31.646100px;}
._10{width:51.016800px;}
._12{width:73.356000px;}
._11{width:77.604000px;}
._13{width:165.480000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:434.955600px;}
.y0{bottom:0.000000px;}
.y22{bottom:39.000000px;}
.y21{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y20{bottom:117.000000px;}
.yec{bottom:118.110000px;}
.y125{bottom:118.776000px;}
.y156{bottom:119.994150px;}
.y67{bottom:121.207500px;}
.y47{bottom:132.000000px;}
.y124{bottom:134.232000px;}
.y1f{bottom:136.207500px;}
.y155{bottom:138.594150px;}
.yc8{bottom:139.500000px;}
.yeb{bottom:141.204000px;}
.y46{bottom:147.000000px;}
.y123{bottom:149.688000px;}
.y89{bottom:151.207500px;}
.yf1{bottom:156.840000px;}
.y154{bottom:157.194150px;}
.y45{bottom:162.000000px;}
.yea{bottom:164.298000px;}
.y122{bottom:165.144000px;}
.y8b{bottom:166.207500px;}
.y88{bottom:169.500000px;}
.yf0{bottom:171.384000px;}
.y1e{bottom:174.950550px;}
.y153{bottom:175.794150px;}
.y121{bottom:180.600000px;}
.y44{bottom:181.207500px;}
.y66{bottom:184.500000px;}
.yef{bottom:185.928000px;}
.ye9{bottom:187.392000px;}
.y87{bottom:188.707500px;}
.y152{bottom:194.394150px;}
.yab{bottom:194.490000px;}
.y120{bottom:196.056000px;}
.y1d{bottom:198.206550px;}
.y43{bottom:199.500000px;}
.yee{bottom:200.472000px;}
.yc7{bottom:203.707500px;}
.y65{bottom:207.000000px;}
.ye8{bottom:210.486000px;}
.y11f{bottom:211.512000px;}
.y151{bottom:212.994150px;}
.y42{bottom:214.500000px;}
.yaa{bottom:216.684000px;}
.yed{bottom:221.400000px;}
.y1c{bottom:221.462550px;}
.y86{bottom:226.207500px;}
.y11e{bottom:226.968000px;}
.y64{bottom:229.500000px;}
.y150{bottom:231.594150px;}
.ye7{bottom:233.580000px;}
.y41{bottom:233.707500px;}
.ya9{bottom:238.878000px;}
.y11d{bottom:242.424000px;}
.yc6{bottom:242.664000px;}
.y1b{bottom:244.610550px;}
.y40{bottom:252.000000px;}
.ye6{bottom:256.674000px;}
.y14f{bottom:256.776000px;}
.y11c{bottom:257.880000px;}
.ya8{bottom:261.072000px;}
.yc5{bottom:265.470000px;}
.y85{bottom:265.500000px;}
.y1a{bottom:267.866550px;}
.y3f{bottom:271.207500px;}
.y11b{bottom:273.336000px;}
.y63{bottom:274.500000px;}
.y14e{bottom:274.620000px;}
.ye5{bottom:279.768000px;}
.ya7{bottom:283.266000px;}
.y84{bottom:287.550000px;}
.yc4{bottom:288.276000px;}
.y11a{bottom:288.792000px;}
.y19{bottom:291.122550px;}
.y62{bottom:297.000000px;}
.ye4{bottom:302.862000px;}
.y119{bottom:304.248000px;}
.ya6{bottom:305.460000px;}
.y83{bottom:309.600000px;}
.y3e{bottom:310.992000px;}
.yc3{bottom:311.082000px;}
.y18{bottom:314.378550px;}
.y14d{bottom:319.320000px;}
.y8a{bottom:319.500000px;}
.y118{bottom:319.704000px;}
.ye3{bottom:325.956000px;}
.ya5{bottom:327.654000px;}
.y82{bottom:331.650000px;}
.y3d{bottom:333.798000px;}
.yc2{bottom:333.888000px;}
.y14c{bottom:334.176000px;}
.y117{bottom:335.160000px;}
.y17{bottom:337.634550px;}
.y61{bottom:342.000000px;}
.y14b{bottom:349.020000px;}
.ye2{bottom:349.050000px;}
.ya4{bottom:349.848000px;}
.y116{bottom:350.616000px;}
.y81{bottom:353.700000px;}
.y3c{bottom:356.604000px;}
.yc1{bottom:356.694000px;}
.y16{bottom:360.890550px;}
.y14a{bottom:363.864000px;}
.y60{bottom:364.500000px;}
.y115{bottom:366.072000px;}
.ya3{bottom:372.042000px;}
.ye1{bottom:372.144000px;}
.y80{bottom:375.750000px;}
.y149{bottom:378.708000px;}
.y3b{bottom:379.410000px;}
.yc0{bottom:379.482000px;}
.y114{bottom:381.528000px;}
.y15{bottom:384.146550px;}
.y5f{bottom:387.000000px;}
.y148{bottom:393.552000px;}
.ya2{bottom:394.236000px;}
.ye0{bottom:395.238000px;}
.y113{bottom:396.984000px;}
.y7f{bottom:397.800000px;}
.y3a{bottom:402.216000px;}
.ybf{bottom:402.288000px;}
.y14{bottom:407.402550px;}
.y147{bottom:408.408000px;}
.y5e{bottom:409.500000px;}
.y112{bottom:412.440000px;}
.ya1{bottom:416.430000px;}
.ydf{bottom:418.332000px;}
.y7e{bottom:419.850000px;}
.y146{bottom:423.252000px;}
.y39{bottom:425.022000px;}
.ybe{bottom:425.094000px;}
.y111{bottom:427.896000px;}
.y13{bottom:430.658550px;}
.y5d{bottom:432.000000px;}
.y145{bottom:438.096000px;}
.ya0{bottom:438.624000px;}
.yde{bottom:441.426000px;}
.y7d{bottom:441.900000px;}
.y110{bottom:443.352000px;}
.y38{bottom:447.828000px;}
.ybd{bottom:447.900000px;}
.y144{bottom:452.940000px;}
.y12{bottom:453.914550px;}
.y5c{bottom:454.500000px;}
.y10f{bottom:458.808000px;}
.y9f{bottom:460.818000px;}
.y7c{bottom:463.950000px;}
.ydd{bottom:464.520000px;}
.y143{bottom:467.784000px;}
.y37{bottom:470.634000px;}
.ybc{bottom:470.700000px;}
.y10e{bottom:474.264000px;}
.y5b{bottom:477.000000px;}
.y11{bottom:477.170550px;}
.y9e{bottom:483.012000px;}
.y7b{bottom:486.000000px;}
.ydc{bottom:487.614000px;}
.y142{bottom:489.012000px;}
.y10d{bottom:489.720000px;}
.y36{bottom:493.440000px;}
.ybb{bottom:493.500000px;}
.y5a{bottom:499.500000px;}
.y10{bottom:500.426550px;}
.y10c{bottom:505.176000px;}
.y9d{bottom:505.206000px;}
.y7a{bottom:508.050000px;}
.ydb{bottom:510.708000px;}
.y35{bottom:516.246000px;}
.yba{bottom:516.300000px;}
.y10b{bottom:520.632000px;}
.y59{bottom:522.000000px;}
.yf{bottom:523.682550px;}
.y9c{bottom:527.400000px;}
.y79{bottom:530.100000px;}
.y141{bottom:533.712000px;}
.yda{bottom:533.802000px;}
.y10a{bottom:536.088000px;}
.y34{bottom:539.052000px;}
.y168{bottom:540.750000px;}
.y58{bottom:544.500000px;}
.ye{bottom:546.938550px;}
.y140{bottom:548.556000px;}
.y9b{bottom:549.600000px;}
.y109{bottom:551.544000px;}
.y78{bottom:552.150000px;}
.yd9{bottom:556.896000px;}
.y167{bottom:559.500000px;}
.y33{bottom:561.858000px;}
.yb9{bottom:561.888000px;}
.y13f{bottom:563.400000px;}
.y57{bottom:567.000000px;}
.yd{bottom:570.194550px;}
.y77{bottom:574.200000px;}
.y13e{bottom:578.244000px;}
.y166{bottom:578.250000px;}
.yd8{bottom:579.990000px;}
.y108{bottom:582.300000px;}
.y32{bottom:584.664000px;}
.yb8{bottom:584.694000px;}
.y56{bottom:589.500000px;}
.y13d{bottom:593.088000px;}
.yc{bottom:593.450550px;}
.y9a{bottom:594.018000px;}
.y76{bottom:596.250000px;}
.y107{bottom:597.600000px;}
.yd7{bottom:603.084000px;}
.yb7{bottom:607.416000px;}
.y31{bottom:607.470000px;}
.y13c{bottom:607.932000px;}
.y165{bottom:608.250000px;}
.y55{bottom:612.000000px;}
.y106{bottom:612.900000px;}
.y99{bottom:616.212000px;}
.yb{bottom:616.706550px;}
.y9{bottom:616.718550px;}
.y75{bottom:618.300000px;}
.y13b{bottom:622.776000px;}
.yd6{bottom:626.178000px;}
.y105{bottom:628.200000px;}
.yb6{bottom:630.222000px;}
.y30{bottom:630.276000px;}
.y54{bottom:634.500000px;}
.y13a{bottom:637.620000px;}
.y98{bottom:638.406000px;}
.ya{bottom:639.962550px;}
.y74{bottom:640.350000px;}
.y104{bottom:643.500000px;}
.yd5{bottom:649.272000px;}
.y164{bottom:649.500000px;}
.y139{bottom:652.464000px;}
.yb5{bottom:653.028000px;}
.y2f{bottom:653.082000px;}
.y53{bottom:657.000000px;}
.y103{bottom:658.800000px;}
.y97{bottom:660.672000px;}
.y73{bottom:662.400000px;}
.y138{bottom:667.308000px;}
.y163{bottom:668.250000px;}
.yd4{bottom:672.366000px;}
.y102{bottom:674.100000px;}
.yb4{bottom:675.834000px;}
.y2e{bottom:675.888000px;}
.y52{bottom:679.500000px;}
.y137{bottom:682.152000px;}
.y96{bottom:682.866000px;}
.y72{bottom:684.450000px;}
.y162{bottom:687.000000px;}
.y101{bottom:689.400000px;}
.yd3{bottom:695.460000px;}
.y136{bottom:696.996000px;}
.yb3{bottom:698.640000px;}
.y2d{bottom:698.694000px;}
.y51{bottom:702.000000px;}
.y100{bottom:704.700000px;}
.y95{bottom:705.060000px;}
.y161{bottom:705.750000px;}
.y71{bottom:706.500000px;}
.y8{bottom:708.968550px;}
.y135{bottom:711.840000px;}
.yd2{bottom:718.554000px;}
.yff{bottom:720.000000px;}
.yb2{bottom:721.446000px;}
.y2c{bottom:721.476000px;}
.y50{bottom:724.500000px;}
.y134{bottom:726.684000px;}
.y94{bottom:727.254000px;}
.y7{bottom:727.718550px;}
.y70{bottom:728.550000px;}
.yfe{bottom:735.300000px;}
.y133{bottom:741.528000px;}
.yd1{bottom:741.648000px;}
.y160{bottom:743.250000px;}
.yb1{bottom:744.252000px;}
.y2b{bottom:744.282000px;}
.y4f{bottom:747.000000px;}
.y93{bottom:749.448000px;}
.y6f{bottom:750.600000px;}
.y132{bottom:756.372000px;}
.y15f{bottom:762.000000px;}
.yd0{bottom:764.742000px;}
.yfd{bottom:765.900000px;}
.yb0{bottom:767.058000px;}
.y2a{bottom:767.088000px;}
.y4e{bottom:769.500000px;}
.y6{bottom:769.854300px;}
.y131{bottom:771.216000px;}
.y92{bottom:771.642000px;}
.y6e{bottom:772.650000px;}
.y15e{bottom:780.750000px;}
.yfc{bottom:781.200000px;}
.y130{bottom:786.060000px;}
.ycf{bottom:787.836000px;}
.yaf{bottom:789.864000px;}
.y29{bottom:789.894000px;}
.y4d{bottom:792.000000px;}
.y5{bottom:792.354300px;}
.y91{bottom:793.836000px;}
.y6d{bottom:794.700000px;}
.yfb{bottom:796.500000px;}
.y15d{bottom:799.500000px;}
.y12f{bottom:800.904000px;}
.yce{bottom:810.930000px;}
.yfa{bottom:811.800000px;}
.yae{bottom:812.670000px;}
.y28{bottom:812.682000px;}
.y4c{bottom:814.500000px;}
.y12e{bottom:815.748000px;}
.y90{bottom:816.030000px;}
.y6c{bottom:816.750000px;}
.y15c{bottom:818.250000px;}
.yf9{bottom:827.100000px;}
.y12d{bottom:830.592000px;}
.ycd{bottom:834.024000px;}
.yad{bottom:835.476000px;}
.y27{bottom:835.488000px;}
.y4b{bottom:837.000000px;}
.y8f{bottom:838.224000px;}
.y6b{bottom:838.800000px;}
.yf8{bottom:842.400000px;}
.y12c{bottom:845.436000px;}
.y15b{bottom:855.750000px;}
.ycc{bottom:857.118000px;}
.yf7{bottom:857.700000px;}
.yac{bottom:858.282000px;}
.y26{bottom:858.294000px;}
.y4{bottom:859.500000px;}
.y12b{bottom:860.280000px;}
.y8e{bottom:860.418000px;}
.y6a{bottom:860.850000px;}
.yf6{bottom:873.000000px;}
.y15a{bottom:874.500000px;}
.y12a{bottom:875.124000px;}
.ycb{bottom:880.212000px;}
.y25{bottom:881.088000px;}
.y4a{bottom:882.000000px;}
.y8d{bottom:882.612000px;}
.y69{bottom:882.900000px;}
.yf5{bottom:888.300000px;}
.y3{bottom:889.500000px;}
.y129{bottom:889.968000px;}
.y159{bottom:893.250000px;}
.yca{bottom:903.306000px;}
.yf4{bottom:903.600000px;}
.y24{bottom:903.894000px;}
.y49{bottom:904.500000px;}
.y8c{bottom:904.806000px;}
.y128{bottom:904.812000px;}
.y68{bottom:904.950000px;}
.y158{bottom:912.000000px;}
.yf3{bottom:918.900000px;}
.y2{bottom:919.500000px;}
.y127{bottom:919.656000px;}
.yc9{bottom:926.400000px;}
.y23{bottom:926.700000px;}
.y48{bottom:927.000000px;}
.y157{bottom:930.750000px;}
.yf2{bottom:934.200000px;}
.y126{bottom:934.500000px;}
.h9{height:24.630908px;}
.he{height:30.313623px;}
.h15{height:33.117188px;}
.h16{height:39.072000px;}
.ha{height:40.757812px;}
.h1{height:41.396484px;}
.h14{height:43.190400px;}
.h4{height:49.200000px;}
.hf{height:49.675781px;}
.h6{height:50.947266px;}
.h5{height:61.136719px;}
.hc{height:61.208719px;}
.h12{height:61.472719px;}
.h8{height:61.568719px;}
.h11{height:66.267703px;}
.h10{height:66.555703px;}
.hb{height:66.603703px;}
.h13{height:66.627703px;}
.hd{height:66.651703px;}
.h2{height:82.792969px;}
.h3{height:101.894531px;}
.h7{height:304.468920px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x7{left:82.375950px;}
.x2{left:112.500000px;}
.x4{left:127.381950px;}
.x6{left:135.000000px;}
.x3{left:157.082400px;}
.x8{left:180.511950px;}
.x1{left:625.781250px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v3{vertical-align:-14.960000pt;}
.v4{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.080000pt;}
.v2{vertical-align:21.504000pt;}
.v1{vertical-align:165.333333pt;}
.ls33{letter-spacing:-2.496000pt;}
.ls36{letter-spacing:-2.090667pt;}
.ls43{letter-spacing:-1.664000pt;}
.ls22{letter-spacing:-1.472000pt;}
.ls17{letter-spacing:-1.216000pt;}
.ls18{letter-spacing:-1.088000pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls1e{letter-spacing:-0.896000pt;}
.ls2f{letter-spacing:-0.832000pt;}
.ls2b{letter-spacing:-0.768000pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls2a{letter-spacing:-0.448000pt;}
.ls35{letter-spacing:-0.426667pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.266667pt;}
.ls34{letter-spacing:-0.256000pt;}
.ls42{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.089600pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.022933pt;}
.lsd{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.106133pt;}
.ls4{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls21{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.896000pt;}
.ls27{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.088000pt;}
.ls38{letter-spacing:1.152000pt;}
.ls3c{letter-spacing:1.171200pt;}
.ls40{letter-spacing:2.359467pt;}
.ls12{letter-spacing:2.641067pt;}
.ls41{letter-spacing:3.925333pt;}
.ls2{letter-spacing:4.053333pt;}
.ls3f{letter-spacing:4.224000pt;}
.ls3d{letter-spacing:4.332800pt;}
.ls3e{letter-spacing:5.126400pt;}
.ls1a{letter-spacing:6.560000pt;}
.ls29{letter-spacing:7.232000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls1b{letter-spacing:7.520000pt;}
.ls2c{letter-spacing:7.616000pt;}
.ls31{letter-spacing:7.680000pt;}
.ls32{letter-spacing:7.744000pt;}
.ls3a{letter-spacing:8.128000pt;}
.ls2e{letter-spacing:8.192000pt;}
.ls37{letter-spacing:8.256000pt;}
.ls3b{letter-spacing:8.320000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls3{letter-spacing:9.663728pt;}
.ls39{letter-spacing:10.048000pt;}
.ls30{letter-spacing:12.263200pt;}
.ws1{word-spacing:-25.280000pt;}
.ws68{word-spacing:-22.506667pt;}
.ws31{word-spacing:-19.733333pt;}
.ws40{word-spacing:-18.112000pt;}
.ws32{word-spacing:-17.984000pt;}
.ws17{word-spacing:-17.664000pt;}
.ws43{word-spacing:-16.384000pt;}
.ws48{word-spacing:-16.320000pt;}
.ws3f{word-spacing:-16.128000pt;}
.ws16{word-spacing:-16.000000pt;}
.ws64{word-spacing:-15.872000pt;}
.ws15{word-spacing:-15.808000pt;}
.ws18{word-spacing:-15.744000pt;}
.ws49{word-spacing:-15.680000pt;}
.ws41{word-spacing:-15.488000pt;}
.ws69{word-spacing:-15.424000pt;}
.ws42{word-spacing:-15.232000pt;}
.ws19{word-spacing:-15.168000pt;}
.ws77{word-spacing:-14.986667pt;}
.ws13{word-spacing:-14.453333pt;}
.ws72{word-spacing:-13.173333pt;}
.ws2{word-spacing:-12.588800pt;}
.ws53{word-spacing:-12.499200pt;}
.ws70{word-spacing:-11.989333pt;}
.ws6a{word-spacing:-10.965333pt;}
.ws1a{word-spacing:-10.538667pt;}
.ws56{word-spacing:-10.112000pt;}
.ws71{word-spacing:-10.069333pt;}
.ws60{word-spacing:-10.048000pt;}
.ws63{word-spacing:-8.320000pt;}
.ws5f{word-spacing:-8.256000pt;}
.ws54{word-spacing:-8.192000pt;}
.ws62{word-spacing:-8.128000pt;}
.ws58{word-spacing:-7.744000pt;}
.ws57{word-spacing:-7.680000pt;}
.ws0{word-spacing:-7.552000pt;}
.ws3d{word-spacing:-7.520000pt;}
.ws4f{word-spacing:-7.232000pt;}
.ws6f{word-spacing:-2.359467pt;}
.ws5a{word-spacing:-1.792000pt;}
.ws61{word-spacing:-1.152000pt;}
.ws4c{word-spacing:-1.088000pt;}
.ws4b{word-spacing:-0.896000pt;}
.wse{word-spacing:-0.768000pt;}
.ws3c{word-spacing:-0.704000pt;}
.wsf{word-spacing:-0.640000pt;}
.ws4a{word-spacing:-0.576000pt;}
.ws28{word-spacing:-0.512000pt;}
.ws4e{word-spacing:-0.448000pt;}
.ws2c{word-spacing:-0.384000pt;}
.ws44{word-spacing:-0.320000pt;}
.ws22{word-spacing:-0.256000pt;}
.ws47{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.128000pt;}
.ws20{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws11{word-spacing:0.064000pt;}
.ws3e{word-spacing:0.128000pt;}
.ws1d{word-spacing:0.192000pt;}
.ws73{word-spacing:0.213333pt;}
.ws5c{word-spacing:0.256000pt;}
.wsb{word-spacing:0.320000pt;}
.wsa{word-spacing:0.341333pt;}
.ws10{word-spacing:0.384000pt;}
.ws5d{word-spacing:0.426667pt;}
.ws50{word-spacing:0.448000pt;}
.ws45{word-spacing:0.512000pt;}
.ws8{word-spacing:0.533333pt;}
.ws59{word-spacing:0.576000pt;}
.ws2e{word-spacing:0.640000pt;}
.ws1e{word-spacing:0.704000pt;}
.ws51{word-spacing:0.768000pt;}
.ws55{word-spacing:0.832000pt;}
.ws2b{word-spacing:0.896000pt;}
.ws39{word-spacing:1.024000pt;}
.ws6{word-spacing:1.066667pt;}
.ws2a{word-spacing:1.088000pt;}
.ws76{word-spacing:1.109333pt;}
.ws38{word-spacing:1.152000pt;}
.ws29{word-spacing:1.216000pt;}
.ws75{word-spacing:1.280000pt;}
.ws2d{word-spacing:1.472000pt;}
.ws9{word-spacing:1.600000pt;}
.ws74{word-spacing:1.664000pt;}
.ws65{word-spacing:1.728000pt;}
.ws36{word-spacing:1.792000pt;}
.ws35{word-spacing:2.048000pt;}
.ws5e{word-spacing:2.090667pt;}
.wsd{word-spacing:2.304000pt;}
.ws5b{word-spacing:2.496000pt;}
.ws37{word-spacing:2.624000pt;}
.ws30{word-spacing:2.645333pt;}
.ws2f{word-spacing:2.986667pt;}
.ws23{word-spacing:3.072000pt;}
.ws66{word-spacing:3.136000pt;}
.ws27{word-spacing:3.200000pt;}
.ws1b{word-spacing:3.306667pt;}
.ws24{word-spacing:3.520000pt;}
.ws6d{word-spacing:3.584000pt;}
.ws26{word-spacing:3.648000pt;}
.ws3{word-spacing:3.733333pt;}
.ws46{word-spacing:4.160000pt;}
.ws6e{word-spacing:4.480000pt;}
.ws3b{word-spacing:4.736000pt;}
.ws67{word-spacing:5.120000pt;}
.ws34{word-spacing:5.312000pt;}
.ws3a{word-spacing:5.376000pt;}
.ws33{word-spacing:6.080000pt;}
.ws7{word-spacing:6.613333pt;}
.ws4{word-spacing:7.466667pt;}
.ws52{word-spacing:7.680000pt;}
.ws6c{word-spacing:7.744000pt;}
.ws21{word-spacing:7.872000pt;}
.ws4d{word-spacing:7.936000pt;}
.ws6b{word-spacing:8.832000pt;}
.ws1f{word-spacing:8.960000pt;}
.ws25{word-spacing:9.024000pt;}
.ws14{word-spacing:31.413333pt;}
.ws1c{word-spacing:65.013333pt;}
.ws12{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._16{margin-left:-24.373333pt;}
._15{margin-left:-17.232000pt;}
._c{margin-left:-13.360000pt;}
._5{margin-left:-10.624000pt;}
._f{margin-left:-9.014400pt;}
._1a{margin-left:-7.680000pt;}
._d{margin-left:-6.391467pt;}
._1{margin-left:-5.301333pt;}
._14{margin-left:-4.346667pt;}
._17{margin-left:-3.389867pt;}
._7{margin-left:-2.432000pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._4{width:3.125333pt;}
._9{width:4.785067pt;}
._6{width:6.400000pt;}
._8{width:7.434667pt;}
._a{width:9.145600pt;}
._b{width:10.100267pt;}
._18{width:11.146667pt;}
._19{width:12.245333pt;}
._1c{width:14.043733pt;}
._1b{width:16.232533pt;}
._1d{width:19.354667pt;}
._e{width:28.129867pt;}
._10{width:45.348267pt;}
._12{width:65.205333pt;}
._11{width:68.981333pt;}
._13{width:147.093333pt;}
.fs7{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:386.627200pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:34.666667pt;}
.y21{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y20{bottom:104.000000pt;}
.yec{bottom:104.986667pt;}
.y125{bottom:105.578667pt;}
.y156{bottom:106.661467pt;}
.y67{bottom:107.740000pt;}
.y47{bottom:117.333333pt;}
.y124{bottom:119.317333pt;}
.y1f{bottom:121.073333pt;}
.y155{bottom:123.194800pt;}
.yc8{bottom:124.000000pt;}
.yeb{bottom:125.514667pt;}
.y46{bottom:130.666667pt;}
.y123{bottom:133.056000pt;}
.y89{bottom:134.406667pt;}
.yf1{bottom:139.413333pt;}
.y154{bottom:139.728133pt;}
.y45{bottom:144.000000pt;}
.yea{bottom:146.042667pt;}
.y122{bottom:146.794667pt;}
.y8b{bottom:147.740000pt;}
.y88{bottom:150.666667pt;}
.yf0{bottom:152.341333pt;}
.y1e{bottom:155.511600pt;}
.y153{bottom:156.261467pt;}
.y121{bottom:160.533333pt;}
.y44{bottom:161.073333pt;}
.y66{bottom:164.000000pt;}
.yef{bottom:165.269333pt;}
.ye9{bottom:166.570667pt;}
.y87{bottom:167.740000pt;}
.y152{bottom:172.794800pt;}
.yab{bottom:172.880000pt;}
.y120{bottom:174.272000pt;}
.y1d{bottom:176.183600pt;}
.y43{bottom:177.333333pt;}
.yee{bottom:178.197333pt;}
.yc7{bottom:181.073333pt;}
.y65{bottom:184.000000pt;}
.ye8{bottom:187.098667pt;}
.y11f{bottom:188.010667pt;}
.y151{bottom:189.328133pt;}
.y42{bottom:190.666667pt;}
.yaa{bottom:192.608000pt;}
.yed{bottom:196.800000pt;}
.y1c{bottom:196.855600pt;}
.y86{bottom:201.073333pt;}
.y11e{bottom:201.749333pt;}
.y64{bottom:204.000000pt;}
.y150{bottom:205.861467pt;}
.ye7{bottom:207.626667pt;}
.y41{bottom:207.740000pt;}
.ya9{bottom:212.336000pt;}
.y11d{bottom:215.488000pt;}
.yc6{bottom:215.701333pt;}
.y1b{bottom:217.431600pt;}
.y40{bottom:224.000000pt;}
.ye6{bottom:228.154667pt;}
.y14f{bottom:228.245333pt;}
.y11c{bottom:229.226667pt;}
.ya8{bottom:232.064000pt;}
.yc5{bottom:235.973333pt;}
.y85{bottom:236.000000pt;}
.y1a{bottom:238.103600pt;}
.y3f{bottom:241.073333pt;}
.y11b{bottom:242.965333pt;}
.y63{bottom:244.000000pt;}
.y14e{bottom:244.106667pt;}
.ye5{bottom:248.682667pt;}
.ya7{bottom:251.792000pt;}
.y84{bottom:255.600000pt;}
.yc4{bottom:256.245333pt;}
.y11a{bottom:256.704000pt;}
.y19{bottom:258.775600pt;}
.y62{bottom:264.000000pt;}
.ye4{bottom:269.210667pt;}
.y119{bottom:270.442667pt;}
.ya6{bottom:271.520000pt;}
.y83{bottom:275.200000pt;}
.y3e{bottom:276.437333pt;}
.yc3{bottom:276.517333pt;}
.y18{bottom:279.447600pt;}
.y14d{bottom:283.840000pt;}
.y8a{bottom:284.000000pt;}
.y118{bottom:284.181333pt;}
.ye3{bottom:289.738667pt;}
.ya5{bottom:291.248000pt;}
.y82{bottom:294.800000pt;}
.y3d{bottom:296.709333pt;}
.yc2{bottom:296.789333pt;}
.y14c{bottom:297.045333pt;}
.y117{bottom:297.920000pt;}
.y17{bottom:300.119600pt;}
.y61{bottom:304.000000pt;}
.y14b{bottom:310.240000pt;}
.ye2{bottom:310.266667pt;}
.ya4{bottom:310.976000pt;}
.y116{bottom:311.658667pt;}
.y81{bottom:314.400000pt;}
.y3c{bottom:316.981333pt;}
.yc1{bottom:317.061333pt;}
.y16{bottom:320.791600pt;}
.y14a{bottom:323.434667pt;}
.y60{bottom:324.000000pt;}
.y115{bottom:325.397333pt;}
.ya3{bottom:330.704000pt;}
.ye1{bottom:330.794667pt;}
.y80{bottom:334.000000pt;}
.y149{bottom:336.629333pt;}
.y3b{bottom:337.253333pt;}
.yc0{bottom:337.317333pt;}
.y114{bottom:339.136000pt;}
.y15{bottom:341.463600pt;}
.y5f{bottom:344.000000pt;}
.y148{bottom:349.824000pt;}
.ya2{bottom:350.432000pt;}
.ye0{bottom:351.322667pt;}
.y113{bottom:352.874667pt;}
.y7f{bottom:353.600000pt;}
.y3a{bottom:357.525333pt;}
.ybf{bottom:357.589333pt;}
.y14{bottom:362.135600pt;}
.y147{bottom:363.029333pt;}
.y5e{bottom:364.000000pt;}
.y112{bottom:366.613333pt;}
.ya1{bottom:370.160000pt;}
.ydf{bottom:371.850667pt;}
.y7e{bottom:373.200000pt;}
.y146{bottom:376.224000pt;}
.y39{bottom:377.797333pt;}
.ybe{bottom:377.861333pt;}
.y111{bottom:380.352000pt;}
.y13{bottom:382.807600pt;}
.y5d{bottom:384.000000pt;}
.y145{bottom:389.418667pt;}
.ya0{bottom:389.888000pt;}
.yde{bottom:392.378667pt;}
.y7d{bottom:392.800000pt;}
.y110{bottom:394.090667pt;}
.y38{bottom:398.069333pt;}
.ybd{bottom:398.133333pt;}
.y144{bottom:402.613333pt;}
.y12{bottom:403.479600pt;}
.y5c{bottom:404.000000pt;}
.y10f{bottom:407.829333pt;}
.y9f{bottom:409.616000pt;}
.y7c{bottom:412.400000pt;}
.ydd{bottom:412.906667pt;}
.y143{bottom:415.808000pt;}
.y37{bottom:418.341333pt;}
.ybc{bottom:418.400000pt;}
.y10e{bottom:421.568000pt;}
.y5b{bottom:424.000000pt;}
.y11{bottom:424.151600pt;}
.y9e{bottom:429.344000pt;}
.y7b{bottom:432.000000pt;}
.ydc{bottom:433.434667pt;}
.y142{bottom:434.677333pt;}
.y10d{bottom:435.306667pt;}
.y36{bottom:438.613333pt;}
.ybb{bottom:438.666667pt;}
.y5a{bottom:444.000000pt;}
.y10{bottom:444.823600pt;}
.y10c{bottom:449.045333pt;}
.y9d{bottom:449.072000pt;}
.y7a{bottom:451.600000pt;}
.ydb{bottom:453.962667pt;}
.y35{bottom:458.885333pt;}
.yba{bottom:458.933333pt;}
.y10b{bottom:462.784000pt;}
.y59{bottom:464.000000pt;}
.yf{bottom:465.495600pt;}
.y9c{bottom:468.800000pt;}
.y79{bottom:471.200000pt;}
.y141{bottom:474.410667pt;}
.yda{bottom:474.490667pt;}
.y10a{bottom:476.522667pt;}
.y34{bottom:479.157333pt;}
.y168{bottom:480.666667pt;}
.y58{bottom:484.000000pt;}
.ye{bottom:486.167600pt;}
.y140{bottom:487.605333pt;}
.y9b{bottom:488.533333pt;}
.y109{bottom:490.261333pt;}
.y78{bottom:490.800000pt;}
.yd9{bottom:495.018667pt;}
.y167{bottom:497.333333pt;}
.y33{bottom:499.429333pt;}
.yb9{bottom:499.456000pt;}
.y13f{bottom:500.800000pt;}
.y57{bottom:504.000000pt;}
.yd{bottom:506.839600pt;}
.y77{bottom:510.400000pt;}
.y13e{bottom:513.994667pt;}
.y166{bottom:514.000000pt;}
.yd8{bottom:515.546667pt;}
.y108{bottom:517.600000pt;}
.y32{bottom:519.701333pt;}
.yb8{bottom:519.728000pt;}
.y56{bottom:524.000000pt;}
.y13d{bottom:527.189333pt;}
.yc{bottom:527.511600pt;}
.y9a{bottom:528.016000pt;}
.y76{bottom:530.000000pt;}
.y107{bottom:531.200000pt;}
.yd7{bottom:536.074667pt;}
.yb7{bottom:539.925333pt;}
.y31{bottom:539.973333pt;}
.y13c{bottom:540.384000pt;}
.y165{bottom:540.666667pt;}
.y55{bottom:544.000000pt;}
.y106{bottom:544.800000pt;}
.y99{bottom:547.744000pt;}
.yb{bottom:548.183600pt;}
.y9{bottom:548.194267pt;}
.y75{bottom:549.600000pt;}
.y13b{bottom:553.578667pt;}
.yd6{bottom:556.602667pt;}
.y105{bottom:558.400000pt;}
.yb6{bottom:560.197333pt;}
.y30{bottom:560.245333pt;}
.y54{bottom:564.000000pt;}
.y13a{bottom:566.773333pt;}
.y98{bottom:567.472000pt;}
.ya{bottom:568.855600pt;}
.y74{bottom:569.200000pt;}
.y104{bottom:572.000000pt;}
.yd5{bottom:577.130667pt;}
.y164{bottom:577.333333pt;}
.y139{bottom:579.968000pt;}
.yb5{bottom:580.469333pt;}
.y2f{bottom:580.517333pt;}
.y53{bottom:584.000000pt;}
.y103{bottom:585.600000pt;}
.y97{bottom:587.264000pt;}
.y73{bottom:588.800000pt;}
.y138{bottom:593.162667pt;}
.y163{bottom:594.000000pt;}
.yd4{bottom:597.658667pt;}
.y102{bottom:599.200000pt;}
.yb4{bottom:600.741333pt;}
.y2e{bottom:600.789333pt;}
.y52{bottom:604.000000pt;}
.y137{bottom:606.357333pt;}
.y96{bottom:606.992000pt;}
.y72{bottom:608.400000pt;}
.y162{bottom:610.666667pt;}
.y101{bottom:612.800000pt;}
.yd3{bottom:618.186667pt;}
.y136{bottom:619.552000pt;}
.yb3{bottom:621.013333pt;}
.y2d{bottom:621.061333pt;}
.y51{bottom:624.000000pt;}
.y100{bottom:626.400000pt;}
.y95{bottom:626.720000pt;}
.y161{bottom:627.333333pt;}
.y71{bottom:628.000000pt;}
.y8{bottom:630.194267pt;}
.y135{bottom:632.746667pt;}
.yd2{bottom:638.714667pt;}
.yff{bottom:640.000000pt;}
.yb2{bottom:641.285333pt;}
.y2c{bottom:641.312000pt;}
.y50{bottom:644.000000pt;}
.y134{bottom:645.941333pt;}
.y94{bottom:646.448000pt;}
.y7{bottom:646.860933pt;}
.y70{bottom:647.600000pt;}
.yfe{bottom:653.600000pt;}
.y133{bottom:659.136000pt;}
.yd1{bottom:659.242667pt;}
.y160{bottom:660.666667pt;}
.yb1{bottom:661.557333pt;}
.y2b{bottom:661.584000pt;}
.y4f{bottom:664.000000pt;}
.y93{bottom:666.176000pt;}
.y6f{bottom:667.200000pt;}
.y132{bottom:672.330667pt;}
.y15f{bottom:677.333333pt;}
.yd0{bottom:679.770667pt;}
.yfd{bottom:680.800000pt;}
.yb0{bottom:681.829333pt;}
.y2a{bottom:681.856000pt;}
.y4e{bottom:684.000000pt;}
.y6{bottom:684.314933pt;}
.y131{bottom:685.525333pt;}
.y92{bottom:685.904000pt;}
.y6e{bottom:686.800000pt;}
.y15e{bottom:694.000000pt;}
.yfc{bottom:694.400000pt;}
.y130{bottom:698.720000pt;}
.ycf{bottom:700.298667pt;}
.yaf{bottom:702.101333pt;}
.y29{bottom:702.128000pt;}
.y4d{bottom:704.000000pt;}
.y5{bottom:704.314933pt;}
.y91{bottom:705.632000pt;}
.y6d{bottom:706.400000pt;}
.yfb{bottom:708.000000pt;}
.y15d{bottom:710.666667pt;}
.y12f{bottom:711.914667pt;}
.yce{bottom:720.826667pt;}
.yfa{bottom:721.600000pt;}
.yae{bottom:722.373333pt;}
.y28{bottom:722.384000pt;}
.y4c{bottom:724.000000pt;}
.y12e{bottom:725.109333pt;}
.y90{bottom:725.360000pt;}
.y6c{bottom:726.000000pt;}
.y15c{bottom:727.333333pt;}
.yf9{bottom:735.200000pt;}
.y12d{bottom:738.304000pt;}
.ycd{bottom:741.354667pt;}
.yad{bottom:742.645333pt;}
.y27{bottom:742.656000pt;}
.y4b{bottom:744.000000pt;}
.y8f{bottom:745.088000pt;}
.y6b{bottom:745.600000pt;}
.yf8{bottom:748.800000pt;}
.y12c{bottom:751.498667pt;}
.y15b{bottom:760.666667pt;}
.ycc{bottom:761.882667pt;}
.yf7{bottom:762.400000pt;}
.yac{bottom:762.917333pt;}
.y26{bottom:762.928000pt;}
.y4{bottom:764.000000pt;}
.y12b{bottom:764.693333pt;}
.y8e{bottom:764.816000pt;}
.y6a{bottom:765.200000pt;}
.yf6{bottom:776.000000pt;}
.y15a{bottom:777.333333pt;}
.y12a{bottom:777.888000pt;}
.ycb{bottom:782.410667pt;}
.y25{bottom:783.189333pt;}
.y4a{bottom:784.000000pt;}
.y8d{bottom:784.544000pt;}
.y69{bottom:784.800000pt;}
.yf5{bottom:789.600000pt;}
.y3{bottom:790.666667pt;}
.y129{bottom:791.082667pt;}
.y159{bottom:794.000000pt;}
.yca{bottom:802.938667pt;}
.yf4{bottom:803.200000pt;}
.y24{bottom:803.461333pt;}
.y49{bottom:804.000000pt;}
.y8c{bottom:804.272000pt;}
.y128{bottom:804.277333pt;}
.y68{bottom:804.400000pt;}
.y158{bottom:810.666667pt;}
.yf3{bottom:816.800000pt;}
.y2{bottom:817.333333pt;}
.y127{bottom:817.472000pt;}
.yc9{bottom:823.466667pt;}
.y23{bottom:823.733333pt;}
.y48{bottom:824.000000pt;}
.y157{bottom:827.333333pt;}
.yf2{bottom:830.400000pt;}
.y126{bottom:830.666667pt;}
.h9{height:21.894141pt;}
.he{height:26.945443pt;}
.h15{height:29.437500pt;}
.h16{height:34.730667pt;}
.ha{height:36.229167pt;}
.h1{height:36.796875pt;}
.h14{height:38.391467pt;}
.h4{height:43.733333pt;}
.hf{height:44.156250pt;}
.h6{height:45.286458pt;}
.h5{height:54.343750pt;}
.hc{height:54.407750pt;}
.h12{height:54.642417pt;}
.h8{height:54.727750pt;}
.h11{height:58.904625pt;}
.h10{height:59.160625pt;}
.hb{height:59.203292pt;}
.h13{height:59.224625pt;}
.hd{height:59.245958pt;}
.h2{height:73.593750pt;}
.h3{height:90.572917pt;}
.h7{height:270.639040pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x7{left:73.223067pt;}
.x2{left:100.000000pt;}
.x4{left:113.228400pt;}
.x6{left:120.000000pt;}
.x3{left:139.628800pt;}
.x8{left:160.455067pt;}
.x1{left:556.250000pt;}
}




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