
    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_b869fda24ef45da9eb5019fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.041000;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_6390d9ee5815be14beca071b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.079000;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_98797f2299ed61bd7db45b0f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.079000;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_c28f4e516bd18a84596f9ea2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_d3f64f8b32596af71df6854a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.041000;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_beacce29f0c1e1e3a6d2ecc5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fb45429ef13fad9be07edcf1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.054000;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_6390d9ee5815be14beca071b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.079000;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_766756091eb5f70b6a7e5ba9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.079000;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_bdd8c43dedc2420ee8cd622a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.677490;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_73338f8417a9dde36a4e4e2d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_6390d9ee5815be14beca071b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.079000;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;}
.m3{transform:matrix(0.246922,0.000000,-0.039109,0.246922,0,0);-ms-transform:matrix(0.246922,0.000000,-0.039109,0.246922,0,0);-webkit-transform:matrix(0.246922,0.000000,-0.039109,0.246922,0,0);}
.m1{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);}
.m2{transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-45.960000px;}
.v4{vertical-align:-25.980000px;}
.v5{vertical-align:-19.975800px;}
.v1{vertical-align:-2.976000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.976000px;}
.v8{vertical-align:17.988000px;}
.v2{vertical-align:19.980000px;}
.v7{vertical-align:31.050000px;}
.ls35{letter-spacing:-1.260000px;}
.ls31{letter-spacing:-0.900000px;}
.ls33{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.060000px;}
.ls6{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000120px;}
.ls1e{letter-spacing:0.000360px;}
.ls17{letter-spacing:0.000480px;}
.ls1d{letter-spacing:0.004800px;}
.ls22{letter-spacing:0.018000px;}
.ls19{letter-spacing:0.030000px;}
.lsf{letter-spacing:0.039660px;}
.ls4{letter-spacing:0.060000px;}
.ls26{letter-spacing:0.067380px;}
.ls34{letter-spacing:0.069960px;}
.ls21{letter-spacing:0.081480px;}
.ls18{letter-spacing:0.084000px;}
.ls2a{letter-spacing:0.103980px;}
.ls16{letter-spacing:0.115200px;}
.ls9{letter-spacing:0.120000px;}
.ls1b{letter-spacing:0.139920px;}
.ls1a{letter-spacing:0.140340px;}
.ls1c{letter-spacing:0.163680px;}
.ls2c{letter-spacing:0.167400px;}
.lsb{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.188400px;}
.ls27{letter-spacing:0.196380px;}
.ls5{letter-spacing:0.210000px;}
.ls3{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.300000px;}
.ls25{letter-spacing:0.306000px;}
.ls20{letter-spacing:0.328800px;}
.ls28{letter-spacing:0.351000px;}
.lsa{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.378000px;}
.ls8{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.450000px;}
.ls12{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.720000px;}
.lse{letter-spacing:0.900000px;}
.ls24{letter-spacing:0.978000px;}
.ls1{letter-spacing:1.200000px;}
.ls0{letter-spacing:1.440000px;}
.ls15{letter-spacing:3.708000px;}
.ls32{letter-spacing:3.720000px;}
.ls2b{letter-spacing:3.780000px;}
.ls2e{letter-spacing:154.196076px;}
.ls2d{letter-spacing:168.047076px;}
.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;}
}
.ws0{word-spacing:-15.264000px;}
.ws1{word-spacing:-13.620000px;}
.ws8e{word-spacing:-12.960000px;}
.ws41{word-spacing:-12.720000px;}
.ws4{word-spacing:-12.120000px;}
.ws20{word-spacing:-12.084000px;}
.ws84{word-spacing:-11.160000px;}
.wsb2{word-spacing:-11.100000px;}
.wsc1{word-spacing:-11.040000px;}
.ws74{word-spacing:-10.920000px;}
.ws75{word-spacing:-10.740000px;}
.ws40{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.302000px;}
.wsad{word-spacing:-10.020000px;}
.ws2{word-spacing:-7.415760px;}
.ws85{word-spacing:-6.506280px;}
.wsc2{word-spacing:-6.436320px;}
.ws83{word-spacing:-6.366360px;}
.ws5d{word-spacing:-6.060000px;}
.ws63{word-spacing:-5.940000px;}
.ws99{word-spacing:-4.698000px;}
.wsc0{word-spacing:-2.760000px;}
.ws8a{word-spacing:-2.460000px;}
.wsb9{word-spacing:-2.160000px;}
.ws80{word-spacing:-1.980000px;}
.wsa0{word-spacing:-1.944000px;}
.ws37{word-spacing:-1.800000px;}
.wsb5{word-spacing:-1.620000px;}
.ws2c{word-spacing:-1.560000px;}
.ws23{word-spacing:-1.500000px;}
.ws7{word-spacing:-1.440000px;}
.ws49{word-spacing:-1.320000px;}
.ws1c{word-spacing:-1.260000px;}
.wsba{word-spacing:-1.200000px;}
.ws6d{word-spacing:-1.140000px;}
.ws2d{word-spacing:-1.080000px;}
.ws64{word-spacing:-1.020000px;}
.ws31{word-spacing:-0.960000px;}
.ws89{word-spacing:-0.900000px;}
.wsae{word-spacing:-0.840000px;}
.ws50{word-spacing:-0.780000px;}
.ws6{word-spacing:-0.720000px;}
.ws60{word-spacing:-0.660000px;}
.wsc5{word-spacing:-0.600000px;}
.ws6f{word-spacing:-0.540000px;}
.ws9a{word-spacing:-0.480000px;}
.ws4f{word-spacing:-0.420000px;}
.ws71{word-spacing:-0.360000px;}
.ws3e{word-spacing:-0.300000px;}
.ws59{word-spacing:-0.240000px;}
.ws43{word-spacing:-0.180000px;}
.wsa7{word-spacing:-0.120000px;}
.ws14{word-spacing:-0.102000px;}
.wsa2{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws79{word-spacing:0.060000px;}
.ws53{word-spacing:0.120000px;}
.ws81{word-spacing:0.180000px;}
.ws21{word-spacing:0.240000px;}
.ws57{word-spacing:0.300000px;}
.ws82{word-spacing:0.360000px;}
.ws46{word-spacing:0.480000px;}
.ws6c{word-spacing:0.540000px;}
.ws4a{word-spacing:0.600000px;}
.ws1b{word-spacing:0.660000px;}
.ws5e{word-spacing:0.720000px;}
.ws28{word-spacing:0.780000px;}
.ws38{word-spacing:0.840000px;}
.ws27{word-spacing:0.900000px;}
.ws88{word-spacing:0.960000px;}
.ws24{word-spacing:1.020000px;}
.ws7c{word-spacing:1.080000px;}
.ws55{word-spacing:1.140000px;}
.ws48{word-spacing:1.200000px;}
.ws2a{word-spacing:1.260000px;}
.ws8d{word-spacing:1.320000px;}
.ws26{word-spacing:1.380000px;}
.ws36{word-spacing:1.440000px;}
.wsf{word-spacing:1.479000px;}
.ws45{word-spacing:1.500000px;}
.ws51{word-spacing:1.620000px;}
.ws4c{word-spacing:1.680000px;}
.ws1e{word-spacing:1.740000px;}
.ws7a{word-spacing:1.800000px;}
.ws9b{word-spacing:1.860000px;}
.ws87{word-spacing:1.980000px;}
.ws2e{word-spacing:2.040000px;}
.ws3a{word-spacing:2.100000px;}
.ws7f{word-spacing:2.160000px;}
.ws96{word-spacing:2.220000px;}
.ws12{word-spacing:2.244000px;}
.ws5c{word-spacing:2.340000px;}
.ws58{word-spacing:2.400000px;}
.wsb7{word-spacing:2.460000px;}
.ws19{word-spacing:2.520000px;}
.ws3f{word-spacing:2.580000px;}
.ws29{word-spacing:2.640000px;}
.ws35{word-spacing:2.700000px;}
.wsc{word-spacing:2.754000px;}
.ws93{word-spacing:2.760000px;}
.ws90{word-spacing:2.820000px;}
.ws44{word-spacing:2.880000px;}
.ws33{word-spacing:2.940000px;}
.wse{word-spacing:3.060000px;}
.ws73{word-spacing:3.120000px;}
.ws8f{word-spacing:3.240000px;}
.ws78{word-spacing:3.300000px;}
.wsa{word-spacing:3.315000px;}
.ws47{word-spacing:3.360000px;}
.ws42{word-spacing:3.420000px;}
.ws62{word-spacing:3.480000px;}
.ws56{word-spacing:3.540000px;}
.ws30{word-spacing:3.660000px;}
.ws39{word-spacing:3.720000px;}
.ws54{word-spacing:3.840000px;}
.ws7b{word-spacing:3.900000px;}
.ws7d{word-spacing:3.960000px;}
.ws77{word-spacing:4.020000px;}
.ws52{word-spacing:4.080000px;}
.ws1d{word-spacing:4.140000px;}
.ws4d{word-spacing:4.200000px;}
.wsb4{word-spacing:4.260000px;}
.wsaa{word-spacing:4.320000px;}
.ws7e{word-spacing:4.380000px;}
.ws10{word-spacing:4.437000px;}
.wsb0{word-spacing:4.440000px;}
.ws6b{word-spacing:4.500000px;}
.ws18{word-spacing:4.560000px;}
.ws69{word-spacing:4.680000px;}
.wsb8{word-spacing:4.740000px;}
.ws5f{word-spacing:4.800000px;}
.ws8b{word-spacing:4.860000px;}
.wsbf{word-spacing:4.920000px;}
.ws25{word-spacing:4.980000px;}
.ws8c{word-spacing:5.100000px;}
.ws70{word-spacing:5.160000px;}
.ws4b{word-spacing:5.280000px;}
.ws66{word-spacing:5.340000px;}
.ws3d{word-spacing:5.580000px;}
.wsa1{word-spacing:5.640000px;}
.ws2b{word-spacing:5.760000px;}
.ws76{word-spacing:5.820000px;}
.ws17{word-spacing:5.880000px;}
.wsa6{word-spacing:5.940000px;}
.ws32{word-spacing:6.000000px;}
.ws1a{word-spacing:6.060000px;}
.ws8{word-spacing:6.171000px;}
.wsb1{word-spacing:6.180000px;}
.ws6a{word-spacing:6.240000px;}
.wsb6{word-spacing:6.300000px;}
.ws72{word-spacing:6.480000px;}
.ws5b{word-spacing:6.540000px;}
.wsb3{word-spacing:6.660000px;}
.ws95{word-spacing:6.720000px;}
.wsa9{word-spacing:6.780000px;}
.wsbc{word-spacing:6.960000px;}
.wsc4{word-spacing:7.020000px;}
.ws67{word-spacing:7.080000px;}
.wsac{word-spacing:7.140000px;}
.wsa5{word-spacing:7.200000px;}
.ws2f{word-spacing:7.260000px;}
.ws9{word-spacing:7.497000px;}
.ws3b{word-spacing:7.560000px;}
.wsa8{word-spacing:7.680000px;}
.wsd{word-spacing:7.752000px;}
.ws94{word-spacing:7.860000px;}
.ws3c{word-spacing:7.980000px;}
.ws22{word-spacing:8.040000px;}
.wsbb{word-spacing:8.160000px;}
.ws34{word-spacing:8.220000px;}
.wsa4{word-spacing:8.460000px;}
.ws15{word-spacing:8.670000px;}
.ws92{word-spacing:8.700000px;}
.ws65{word-spacing:8.760000px;}
.ws9c{word-spacing:8.820000px;}
.ws86{word-spacing:9.000000px;}
.wsbe{word-spacing:9.060000px;}
.ws91{word-spacing:9.540000px;}
.wsc3{word-spacing:9.600000px;}
.ws68{word-spacing:10.020000px;}
.ws6e{word-spacing:10.080000px;}
.ws9d{word-spacing:10.380000px;}
.ws13{word-spacing:10.404000px;}
.wsbd{word-spacing:10.560000px;}
.ws5a{word-spacing:10.740000px;}
.ws11{word-spacing:10.761000px;}
.ws16{word-spacing:11.784000px;}
.wsab{word-spacing:12.660000px;}
.wsaf{word-spacing:12.900000px;}
.wsb{word-spacing:13.107000px;}
.ws4e{word-spacing:13.740000px;}
.ws61{word-spacing:13.920000px;}
.ws1f{word-spacing:75.222000px;}
.ws97{word-spacing:111.618000px;}
.ws9e{word-spacing:152.874000px;}
.wsa3{word-spacing:377.460000px;}
.ws9f{word-spacing:391.284000px;}
.ws98{word-spacing:981.666000px;}
._1f{margin-left:-8.734800px;}
._9{margin-left:-7.296000px;}
._a{margin-left:-5.940000px;}
._6{margin-left:-4.406700px;}
._2{margin-left:-2.767200px;}
._1{margin-left:-1.488000px;}
._4{width:1.008000px;}
._3{width:2.008800px;}
._7{width:3.114000px;}
._1e{width:4.256700px;}
._0{width:5.280000px;}
._5{width:7.313400px;}
._15{width:8.549100px;}
._16{width:10.356000px;}
._8{width:13.663200px;}
._c{width:20.760000px;}
._1d{width:24.360000px;}
._b{width:26.112000px;}
._17{width:90.601200px;}
._1a{width:121.638000px;}
._19{width:185.665200px;}
._1c{width:206.755200px;}
._18{width:230.040000px;}
._f{width:234.252000px;}
._13{width:238.710000px;}
._14{width:240.062700px;}
._11{width:251.478000px;}
._1b{width:259.790700px;}
._12{width:630.450000px;}
._10{width:760.027200px;}
._e{width:794.964000px;}
._d{width:819.984000px;}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(100,99,99);}
.fc0{color:rgb(112,111,111);}
.fsb{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fs3{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:62.400000px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:78.972282px;}
.y0{bottom:0.000000px;}
.y29{bottom:48.791400px;}
.y2{bottom:49.541400px;}
.y28{bottom:86.097150px;}
.y80{bottom:86.709450px;}
.y7b{bottom:86.724450px;}
.y54{bottom:86.859450px;}
.y150{bottom:87.009450px;}
.y7d{bottom:87.159450px;}
.y116{bottom:89.406450px;}
.y129{bottom:91.077150px;}
.y164{bottom:92.454450px;}
.y14f{bottom:93.375000px;}
.yc4{bottom:99.060300px;}
.y19b{bottom:100.959450px;}
.y27{bottom:102.297150px;}
.y184{bottom:103.749450px;}
.yc5{bottom:105.555300px;}
.y7f{bottom:106.509450px;}
.y7a{bottom:106.524450px;}
.y53{bottom:106.659450px;}
.y7c{bottom:106.809450px;}
.y115{bottom:109.206450px;}
.y14e{bottom:110.800950px;}
.y128{bottom:110.877150px;}
.y163{bottom:112.254450px;}
.yc3{bottom:113.865300px;}
.y26{bottom:118.497150px;}
.yc0{bottom:118.860300px;}
.y19a{bottom:120.759450px;}
.y13c{bottom:122.183400px;}
.y183{bottom:123.549450px;}
.yc1{bottom:123.852090px;}
.ydf{bottom:124.046550px;}
.ya3{bottom:124.854450px;}
.yc2{bottom:124.860300px;}
.y101{bottom:125.696550px;}
.y7e{bottom:126.309450px;}
.y79{bottom:126.324450px;}
.y52{bottom:126.459450px;}
.y14d{bottom:127.000950px;}
.y114{bottom:129.006450px;}
.y127{bottom:130.677150px;}
.y162{bottom:132.054450px;}
.y199{bottom:140.559450px;}
.y13b{bottom:141.983400px;}
.y182{bottom:143.349450px;}
.yde{bottom:143.846550px;}
.ya2{bottom:144.654450px;}
.y100{bottom:145.496550px;}
.y78{bottom:146.049450px;}
.y51{bottom:146.109450px;}
.y113{bottom:148.806450px;}
.y161{bottom:151.854450px;}
.y198{bottom:160.359450px;}
.y13a{bottom:161.783400px;}
.y181{bottom:163.149450px;}
.ydd{bottom:163.646550px;}
.ya1{bottom:164.454450px;}
.yff{bottom:165.296550px;}
.y50{bottom:165.759450px;}
.y77{bottom:165.774450px;}
.y126{bottom:170.277150px;}
.y160{bottom:171.654450px;}
.y197{bottom:180.159450px;}
.y139{bottom:181.583400px;}
.y180{bottom:182.949450px;}
.ybe{bottom:183.431700px;}
.ydc{bottom:183.446550px;}
.ya0{bottom:184.254450px;}
.yfe{bottom:185.096550px;}
.y4f{bottom:185.409450px;}
.y76{bottom:185.499450px;}
.y125{bottom:185.577150px;}
.y112{bottom:188.406450px;}
.ybf{bottom:189.926700px;}
.y15f{bottom:191.454450px;}
.y25{bottom:192.376950px;}
.y196{bottom:199.959450px;}
.y138{bottom:201.383400px;}
.y17f{bottom:202.749450px;}
.ybd{bottom:203.231700px;}
.ydb{bottom:203.246550px;}
.y9f{bottom:204.054450px;}
.yfd{bottom:204.896550px;}
.y4e{bottom:205.059450px;}
.y75{bottom:205.224450px;}
.y111{bottom:205.832550px;}
.y124{bottom:211.216500px;}
.y15e{bottom:211.254450px;}
.y24{bottom:212.176950px;}
.y195{bottom:219.759450px;}
.y137{bottom:221.183400px;}
.y110{bottom:222.032550px;}
.y17e{bottom:222.549450px;}
.ybc{bottom:223.031700px;}
.yda{bottom:223.046550px;}
.y9e{bottom:223.854450px;}
.yfc{bottom:224.696550px;}
.y4d{bottom:224.709450px;}
.y74{bottom:224.949450px;}
.y15d{bottom:231.054450px;}
.y23{bottom:231.976950px;}
.y123{bottom:232.398000px;}
.y194{bottom:239.559450px;}
.y136{bottom:240.983400px;}
.y17d{bottom:242.349450px;}
.ybb{bottom:242.829750px;}
.yd9{bottom:242.846550px;}
.y4c{bottom:244.359450px;}
.yfb{bottom:244.496550px;}
.y73{bottom:244.674450px;}
.y15c{bottom:250.854450px;}
.y22{bottom:251.776950px;}
.y9d{bottom:252.654450px;}
.y122{bottom:253.578150px;}
.y193{bottom:259.359450px;}
.y135{bottom:260.783400px;}
.y17c{bottom:262.149450px;}
.yba{bottom:262.629750px;}
.y4b{bottom:264.009450px;}
.yfa{bottom:264.296550px;}
.y72{bottom:264.399450px;}
.y15b{bottom:270.654450px;}
.yd8{bottom:271.151550px;}
.y21{bottom:271.576950px;}
.y9c{bottom:272.454450px;}
.y121{bottom:274.759650px;}
.y192{bottom:279.159450px;}
.y134{bottom:280.583400px;}
.y17b{bottom:281.949450px;}
.yb9{bottom:282.429750px;}
.y120{bottom:282.522150px;}
.y4a{bottom:283.659450px;}
.yf9{bottom:284.096550px;}
.y71{bottom:284.124450px;}
.y15a{bottom:290.454450px;}
.y20{bottom:291.376950px;}
.y9b{bottom:292.254450px;}
.y191{bottom:298.959450px;}
.y133{bottom:300.383400px;}
.y17a{bottom:301.749450px;}
.y49{bottom:303.309450px;}
.y70{bottom:303.849450px;}
.yf8{bottom:303.896550px;}
.y159{bottom:310.254450px;}
.yd7{bottom:310.751550px;}
.y1f{bottom:311.176950px;}
.y9a{bottom:312.054450px;}
.y190{bottom:318.759450px;}
.y11f{bottom:319.255500px;}
.y132{bottom:320.183400px;}
.y179{bottom:321.549450px;}
.y48{bottom:322.959450px;}
.y6f{bottom:323.574450px;}
.yf7{bottom:323.696550px;}
.y158{bottom:330.054450px;}
.yd6{bottom:330.551550px;}
.y1e{bottom:330.976950px;}
.y11e{bottom:335.455500px;}
.y18f{bottom:338.559450px;}
.y131{bottom:339.983400px;}
.y99{bottom:340.854450px;}
.y178{bottom:341.349450px;}
.y47{bottom:342.609450px;}
.y6e{bottom:343.299450px;}
.yf6{bottom:343.496550px;}
.y157{bottom:349.854450px;}
.yd5{bottom:350.351550px;}
.y1d{bottom:350.776950px;}
.y18e{bottom:358.359450px;}
.y130{bottom:359.783400px;}
.y177{bottom:361.149450px;}
.y46{bottom:362.259450px;}
.y6d{bottom:363.024450px;}
.yf5{bottom:363.296550px;}
.y98{bottom:369.654450px;}
.yb8{bottom:369.669750px;}
.yd3{bottom:370.151550px;}
.y11d{bottom:371.454450px;}
.yd4{bottom:376.646550px;}
.y18d{bottom:378.159450px;}
.y1c{bottom:379.081950px;}
.y12f{bottom:379.583400px;}
.y176{bottom:380.949450px;}
.y45{bottom:381.909450px;}
.y6c{bottom:382.749450px;}
.y97{bottom:389.454450px;}
.yb7{bottom:389.469750px;}
.y11c{bottom:391.254450px;}
.yf4{bottom:392.096550px;}
.y18c{bottom:397.959450px;}
.y12e{bottom:399.383400px;}
.y175{bottom:400.749450px;}
.y44{bottom:401.559450px;}
.y6b{bottom:402.474450px;}
.y96{bottom:409.254450px;}
.yb5{bottom:409.269750px;}
.y11b{bottom:411.054450px;}
.yf3{bottom:411.896550px;}
.yb6{bottom:415.764750px;}
.y18b{bottom:417.759450px;}
.y1b{bottom:418.678500px;}
.y12d{bottom:419.183400px;}
.y174{bottom:420.549450px;}
.y43{bottom:421.209450px;}
.y6a{bottom:422.199450px;}
.y95{bottom:429.054450px;}
.y11a{bottom:430.854450px;}
.y1a{bottom:434.059500px;}
.y18a{bottom:437.559450px;}
.y173{bottom:440.349450px;}
.yf2{bottom:440.696550px;}
.y42{bottom:440.859450px;}
.y69{bottom:441.924450px;}
.yd2{bottom:445.298100px;}
.y94{bottom:448.854450px;}
.y19{bottom:449.280000px;}
.y189{bottom:457.359450px;}
.y12c{bottom:458.783400px;}
.y119{bottom:459.654450px;}
.y172{bottom:460.149450px;}
.yf1{bottom:460.496550px;}
.y41{bottom:460.509450px;}
.y68{bottom:461.649450px;}
.yd1{bottom:465.098100px;}
.y14c{bottom:467.277150px;}
.y93{bottom:468.654450px;}
.y18{bottom:473.581950px;}
.y12b{bottom:476.209350px;}
.y188{bottom:477.159450px;}
.y171{bottom:479.949450px;}
.y40{bottom:480.159450px;}
.yf0{bottom:480.296550px;}
.y14b{bottom:482.577150px;}
.yd0{bottom:484.898100px;}
.y92{bottom:488.454450px;}
.y17{bottom:488.881950px;}
.y67{bottom:489.879450px;}
.y12a{bottom:492.409350px;}
.yb4{bottom:494.649300px;}
.y187{bottom:496.959450px;}
.y170{bottom:499.749450px;}
.y3f{bottom:499.809450px;}
.y16{bottom:504.181950px;}
.ycf{bottom:504.698100px;}
.y14a{bottom:508.216500px;}
.y91{bottom:508.254450px;}
.yef{bottom:508.601550px;}
.yb1{bottom:514.449150px;}
.yb2{bottom:514.449300px;}
.y186{bottom:516.759450px;}
.y3e{bottom:519.459450px;}
.y15{bottom:519.481950px;}
.y16f{bottom:519.549450px;}
.yb3{bottom:520.944150px;}
.yce{bottom:524.498100px;}
.y90{bottom:528.054450px;}
.y66{bottom:529.329450px;}
.y149{bottom:529.398000px;}
.yb0{bottom:534.249150px;}
.y14{bottom:534.781950px;}
.y185{bottom:536.559450px;}
.y3d{bottom:539.109450px;}
.y16e{bottom:539.349450px;}
.y8f{bottom:547.854450px;}
.yee{bottom:548.201550px;}
.y65{bottom:549.054450px;}
.y13{bottom:550.081950px;}
.y148{bottom:550.578150px;}
.yaf{bottom:554.049150px;}
.y118{bottom:556.359450px;}
.y3c{bottom:558.759450px;}
.y16d{bottom:559.149450px;}
.y12{bottom:565.381950px;}
.y156{bottom:567.654450px;}
.yed{bottom:568.001550px;}
.y64{bottom:568.779450px;}
.y10f{bottom:570.506100px;}
.y147{bottom:571.759650px;}
.y8e{bottom:576.159450px;}
.y3b{bottom:578.409450px;}
.y16c{bottom:578.949450px;}
.y146{bottom:579.522150px;}
.y11{bottom:580.681950px;}
.y155{bottom:587.454450px;}
.yec{bottom:587.801550px;}
.y63{bottom:588.504450px;}
.ycd{bottom:589.553250px;}
.y10e{bottom:590.306100px;}
.y117{bottom:595.959450px;}
.y10{bottom:595.981950px;}
.y3a{bottom:598.059450px;}
.y16b{bottom:598.749450px;}
.y154{bottom:607.254450px;}
.yeb{bottom:607.601550px;}
.y62{bottom:608.229450px;}
.y10d{bottom:610.106100px;}
.yf{bottom:611.281950px;}
.y8d{bottom:615.759450px;}
.y145{bottom:616.255500px;}
.y39{bottom:617.709450px;}
.y16a{bottom:618.549450px;}
.ye{bottom:626.581950px;}
.y153{bottom:627.054450px;}
.yea{bottom:627.401550px;}
.y61{bottom:627.954450px;}
.y10c{bottom:629.906100px;}
.y144{bottom:632.455500px;}
.y8c{bottom:635.559450px;}
.ycc{bottom:636.027150px;}
.y38{bottom:637.359450px;}
.y169{bottom:638.349450px;}
.yd{bottom:641.881950px;}
.y152{bottom:646.854450px;}
.yae{bottom:646.855500px;}
.ye9{bottom:647.201550px;}
.y10b{bottom:649.706100px;}
.y8b{bottom:655.359450px;}
.ycb{bottom:655.827150px;}
.y60{bottom:656.184450px;}
.y37{bottom:657.009450px;}
.yc{bottom:657.181950px;}
.y168{bottom:658.149450px;}
.y151{bottom:666.654450px;}
.yad{bottom:666.655500px;}
.ye8{bottom:667.001550px;}
.y143{bottom:668.454450px;}
.y10a{bottom:669.506100px;}
.yb{bottom:672.481950px;}
.y8a{bottom:675.159450px;}
.yca{bottom:675.627150px;}
.y36{bottom:676.659450px;}
.y167{bottom:677.949450px;}
.yac{bottom:686.454450px;}
.ya{bottom:687.781950px;}
.y142{bottom:688.254450px;}
.y89{bottom:694.959450px;}
.yc9{bottom:695.427150px;}
.y5f{bottom:695.634450px;}
.y35{bottom:696.309450px;}
.y166{bottom:697.749450px;}
.y9{bottom:703.081950px;}
.yab{bottom:706.254450px;}
.ye7{bottom:706.601550px;}
.y141{bottom:708.054450px;}
.y109{bottom:709.106100px;}
.y88{bottom:714.759450px;}
.y5e{bottom:715.359450px;}
.y34{bottom:715.959450px;}
.y165{bottom:717.549450px;}
.y108{bottom:724.406100px;}
.yaa{bottom:726.054450px;}
.y140{bottom:727.854450px;}
.ye6{bottom:732.716100px;}
.y87{bottom:734.559450px;}
.y5d{bottom:735.084450px;}
.y33{bottom:735.609450px;}
.y8{bottom:743.893800px;}
.ya9{bottom:745.854450px;}
.y13f{bottom:747.654450px;}
.y107{bottom:750.045450px;}
.y86{bottom:754.359450px;}
.y5c{bottom:754.809450px;}
.ye5{bottom:754.842600px;}
.y32{bottom:755.259450px;}
.y7{bottom:758.293800px;}
.ya8{bottom:765.654450px;}
.yc8{bottom:766.803600px;}
.y13e{bottom:767.454450px;}
.y106{bottom:771.226950px;}
.y85{bottom:774.159450px;}
.y5b{bottom:774.534450px;}
.y31{bottom:774.909450px;}
.ye4{bottom:776.969100px;}
.y6{bottom:781.197750px;}
.ya7{bottom:785.454450px;}
.yc7{bottom:786.603600px;}
.y105{bottom:792.406950px;}
.y84{bottom:793.959450px;}
.y5a{bottom:794.259450px;}
.y30{bottom:794.559450px;}
.y13d{bottom:796.254450px;}
.ye3{bottom:799.095600px;}
.ya6{bottom:805.254450px;}
.yc6{bottom:806.403600px;}
.y104{bottom:813.588450px;}
.y83{bottom:813.759450px;}
.y59{bottom:813.984450px;}
.y2f{bottom:814.209450px;}
.ye2{bottom:821.222100px;}
.y103{bottom:821.350950px;}
.ya5{bottom:825.054450px;}
.y5{bottom:827.709450px;}
.y82{bottom:833.559450px;}
.y58{bottom:833.709450px;}
.y2e{bottom:833.859450px;}
.ye1{bottom:844.091100px;}
.ya4{bottom:844.854450px;}
.y4{bottom:849.309450px;}
.y81{bottom:853.359450px;}
.y56{bottom:853.434450px;}
.y2d{bottom:853.509450px;}
.y102{bottom:858.084450px;}
.y57{bottom:859.929450px;}
.y3{bottom:870.909450px;}
.y2c{bottom:873.159450px;}
.ye0{bottom:874.284450px;}
.y1{bottom:917.831700px;}
.y2b{bottom:921.999450px;}
.y55{bottom:922.743600px;}
.y2a{bottom:935.499450px;}
.h10{height:28.998420px;}
.h13{height:29.952840px;}
.h8{height:36.771000px;}
.he{height:37.305000px;}
.h15{height:38.934000px;}
.h3{height:39.792000px;}
.h4{height:42.279000px;}
.h16{height:42.432000px;}
.h9{height:43.260000px;}
.hb{height:44.766000px;}
.h19{height:44.771400px;}
.h18{height:44.772000px;}
.hc{height:44.928000px;}
.ha{height:49.740000px;}
.h7{height:49.920000px;}
.h11{height:49.920600px;}
.h12{height:49.927800px;}
.h6{height:51.912000px;}
.h2{height:51.916800px;}
.hf{height:52.635334px;}
.h5{height:56.688000px;}
.hd{height:59.688000px;}
.h14{height:69.720000px;}
.h17{height:69.984000px;}
.h1{height:986.250000px;}
.h0{height:986.457000px;}
.w0{width:671.811000px;}
.w1{width:672.000000px;}
.x0{left:0.000000px;}
.xa{left:80.787300px;}
.x1d{left:92.049450px;}
.xb{left:102.049950px;}
.x20{left:106.299150px;}
.x13{left:114.792450px;}
.x22{left:119.903100px;}
.x8{left:123.487050px;}
.x1f{left:129.869550px;}
.x24{left:130.902000px;}
.x1a{left:139.126110px;}
.x9{left:140.314950px;}
.x23{left:145.414500px;}
.x1{left:160.469250px;}
.x27{left:181.492800px;}
.x16{left:200.524800px;}
.x17{left:211.786800px;}
.xd{left:223.330500px;}
.x18{left:237.115350px;}
.x19{left:248.377350px;}
.x26{left:250.533600px;}
.xc{left:280.638000px;}
.x7{left:299.401350px;}
.x25{left:311.565300px;}
.x14{left:322.194900px;}
.x2{left:323.715900px;}
.xe{left:325.030350px;}
.x3{left:327.579750px;}
.x4{left:331.471350px;}
.x15{left:333.456900px;}
.x1b{left:369.330900px;}
.x1c{left:375.180750px;}
.xf{left:395.113500px;}
.x10{left:406.393800px;}
.x21{left:445.199100px;}
.x1e{left:461.719050px;}
.x5{left:469.393650px;}
.x6{left:473.285250px;}
.x11{left:575.257200px;}
.x12{left:586.537650px;}
@media print{
.v6{vertical-align:-40.853333pt;}
.v4{vertical-align:-23.093333pt;}
.v5{vertical-align:-17.756267pt;}
.v1{vertical-align:-2.645333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.645333pt;}
.v8{vertical-align:15.989333pt;}
.v2{vertical-align:17.760000pt;}
.v7{vertical-align:27.600000pt;}
.ls35{letter-spacing:-1.120000pt;}
.ls31{letter-spacing:-0.800000pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.053333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000107pt;}
.ls1e{letter-spacing:0.000320pt;}
.ls17{letter-spacing:0.000427pt;}
.ls1d{letter-spacing:0.004267pt;}
.ls22{letter-spacing:0.016000pt;}
.ls19{letter-spacing:0.026667pt;}
.lsf{letter-spacing:0.035253pt;}
.ls4{letter-spacing:0.053333pt;}
.ls26{letter-spacing:0.059893pt;}
.ls34{letter-spacing:0.062187pt;}
.ls21{letter-spacing:0.072427pt;}
.ls18{letter-spacing:0.074667pt;}
.ls2a{letter-spacing:0.092427pt;}
.ls16{letter-spacing:0.102400pt;}
.ls9{letter-spacing:0.106667pt;}
.ls1b{letter-spacing:0.124373pt;}
.ls1a{letter-spacing:0.124747pt;}
.ls1c{letter-spacing:0.145493pt;}
.ls2c{letter-spacing:0.148800pt;}
.lsb{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.167467pt;}
.ls27{letter-spacing:0.174560pt;}
.ls5{letter-spacing:0.186667pt;}
.ls3{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls25{letter-spacing:0.272000pt;}
.ls20{letter-spacing:0.292267pt;}
.ls28{letter-spacing:0.312000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.336000pt;}
.ls8{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.400000pt;}
.ls12{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.869333pt;}
.ls1{letter-spacing:1.066667pt;}
.ls0{letter-spacing:1.280000pt;}
.ls15{letter-spacing:3.296000pt;}
.ls32{letter-spacing:3.306667pt;}
.ls2b{letter-spacing:3.360000pt;}
.ls2e{letter-spacing:137.063179pt;}
.ls2d{letter-spacing:149.375179pt;}
.ws0{word-spacing:-13.568000pt;}
.ws1{word-spacing:-12.106667pt;}
.ws8e{word-spacing:-11.520000pt;}
.ws41{word-spacing:-11.306667pt;}
.ws4{word-spacing:-10.773333pt;}
.ws20{word-spacing:-10.741333pt;}
.ws84{word-spacing:-9.920000pt;}
.wsb2{word-spacing:-9.866667pt;}
.wsc1{word-spacing:-9.813333pt;}
.ws74{word-spacing:-9.706667pt;}
.ws75{word-spacing:-9.546667pt;}
.ws40{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.157333pt;}
.wsad{word-spacing:-8.906667pt;}
.ws2{word-spacing:-6.591787pt;}
.ws85{word-spacing:-5.783360pt;}
.wsc2{word-spacing:-5.721173pt;}
.ws83{word-spacing:-5.658987pt;}
.ws5d{word-spacing:-5.386667pt;}
.ws63{word-spacing:-5.280000pt;}
.ws99{word-spacing:-4.176000pt;}
.wsc0{word-spacing:-2.453333pt;}
.ws8a{word-spacing:-2.186667pt;}
.wsb9{word-spacing:-1.920000pt;}
.ws80{word-spacing:-1.760000pt;}
.wsa0{word-spacing:-1.728000pt;}
.ws37{word-spacing:-1.600000pt;}
.wsb5{word-spacing:-1.440000pt;}
.ws2c{word-spacing:-1.386667pt;}
.ws23{word-spacing:-1.333333pt;}
.ws7{word-spacing:-1.280000pt;}
.ws49{word-spacing:-1.173333pt;}
.ws1c{word-spacing:-1.120000pt;}
.wsba{word-spacing:-1.066667pt;}
.ws6d{word-spacing:-1.013333pt;}
.ws2d{word-spacing:-0.960000pt;}
.ws64{word-spacing:-0.906667pt;}
.ws31{word-spacing:-0.853333pt;}
.ws89{word-spacing:-0.800000pt;}
.wsae{word-spacing:-0.746667pt;}
.ws50{word-spacing:-0.693333pt;}
.ws6{word-spacing:-0.640000pt;}
.ws60{word-spacing:-0.586667pt;}
.wsc5{word-spacing:-0.533333pt;}
.ws6f{word-spacing:-0.480000pt;}
.ws9a{word-spacing:-0.426667pt;}
.ws4f{word-spacing:-0.373333pt;}
.ws71{word-spacing:-0.320000pt;}
.ws3e{word-spacing:-0.266667pt;}
.ws59{word-spacing:-0.213333pt;}
.ws43{word-spacing:-0.160000pt;}
.wsa7{word-spacing:-0.106667pt;}
.ws14{word-spacing:-0.090667pt;}
.wsa2{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws79{word-spacing:0.053333pt;}
.ws53{word-spacing:0.106667pt;}
.ws81{word-spacing:0.160000pt;}
.ws21{word-spacing:0.213333pt;}
.ws57{word-spacing:0.266667pt;}
.ws82{word-spacing:0.320000pt;}
.ws46{word-spacing:0.426667pt;}
.ws6c{word-spacing:0.480000pt;}
.ws4a{word-spacing:0.533333pt;}
.ws1b{word-spacing:0.586667pt;}
.ws5e{word-spacing:0.640000pt;}
.ws28{word-spacing:0.693333pt;}
.ws38{word-spacing:0.746667pt;}
.ws27{word-spacing:0.800000pt;}
.ws88{word-spacing:0.853333pt;}
.ws24{word-spacing:0.906667pt;}
.ws7c{word-spacing:0.960000pt;}
.ws55{word-spacing:1.013333pt;}
.ws48{word-spacing:1.066667pt;}
.ws2a{word-spacing:1.120000pt;}
.ws8d{word-spacing:1.173333pt;}
.ws26{word-spacing:1.226667pt;}
.ws36{word-spacing:1.280000pt;}
.wsf{word-spacing:1.314667pt;}
.ws45{word-spacing:1.333333pt;}
.ws51{word-spacing:1.440000pt;}
.ws4c{word-spacing:1.493333pt;}
.ws1e{word-spacing:1.546667pt;}
.ws7a{word-spacing:1.600000pt;}
.ws9b{word-spacing:1.653333pt;}
.ws87{word-spacing:1.760000pt;}
.ws2e{word-spacing:1.813333pt;}
.ws3a{word-spacing:1.866667pt;}
.ws7f{word-spacing:1.920000pt;}
.ws96{word-spacing:1.973333pt;}
.ws12{word-spacing:1.994667pt;}
.ws5c{word-spacing:2.080000pt;}
.ws58{word-spacing:2.133333pt;}
.wsb7{word-spacing:2.186667pt;}
.ws19{word-spacing:2.240000pt;}
.ws3f{word-spacing:2.293333pt;}
.ws29{word-spacing:2.346667pt;}
.ws35{word-spacing:2.400000pt;}
.wsc{word-spacing:2.448000pt;}
.ws93{word-spacing:2.453333pt;}
.ws90{word-spacing:2.506667pt;}
.ws44{word-spacing:2.560000pt;}
.ws33{word-spacing:2.613333pt;}
.wse{word-spacing:2.720000pt;}
.ws73{word-spacing:2.773333pt;}
.ws8f{word-spacing:2.880000pt;}
.ws78{word-spacing:2.933333pt;}
.wsa{word-spacing:2.946667pt;}
.ws47{word-spacing:2.986667pt;}
.ws42{word-spacing:3.040000pt;}
.ws62{word-spacing:3.093333pt;}
.ws56{word-spacing:3.146667pt;}
.ws30{word-spacing:3.253333pt;}
.ws39{word-spacing:3.306667pt;}
.ws54{word-spacing:3.413333pt;}
.ws7b{word-spacing:3.466667pt;}
.ws7d{word-spacing:3.520000pt;}
.ws77{word-spacing:3.573333pt;}
.ws52{word-spacing:3.626667pt;}
.ws1d{word-spacing:3.680000pt;}
.ws4d{word-spacing:3.733333pt;}
.wsb4{word-spacing:3.786667pt;}
.wsaa{word-spacing:3.840000pt;}
.ws7e{word-spacing:3.893333pt;}
.ws10{word-spacing:3.944000pt;}
.wsb0{word-spacing:3.946667pt;}
.ws6b{word-spacing:4.000000pt;}
.ws18{word-spacing:4.053333pt;}
.ws69{word-spacing:4.160000pt;}
.wsb8{word-spacing:4.213333pt;}
.ws5f{word-spacing:4.266667pt;}
.ws8b{word-spacing:4.320000pt;}
.wsbf{word-spacing:4.373333pt;}
.ws25{word-spacing:4.426667pt;}
.ws8c{word-spacing:4.533333pt;}
.ws70{word-spacing:4.586667pt;}
.ws4b{word-spacing:4.693333pt;}
.ws66{word-spacing:4.746667pt;}
.ws3d{word-spacing:4.960000pt;}
.wsa1{word-spacing:5.013333pt;}
.ws2b{word-spacing:5.120000pt;}
.ws76{word-spacing:5.173333pt;}
.ws17{word-spacing:5.226667pt;}
.wsa6{word-spacing:5.280000pt;}
.ws32{word-spacing:5.333333pt;}
.ws1a{word-spacing:5.386667pt;}
.ws8{word-spacing:5.485333pt;}
.wsb1{word-spacing:5.493333pt;}
.ws6a{word-spacing:5.546667pt;}
.wsb6{word-spacing:5.600000pt;}
.ws72{word-spacing:5.760000pt;}
.ws5b{word-spacing:5.813333pt;}
.wsb3{word-spacing:5.920000pt;}
.ws95{word-spacing:5.973333pt;}
.wsa9{word-spacing:6.026667pt;}
.wsbc{word-spacing:6.186667pt;}
.wsc4{word-spacing:6.240000pt;}
.ws67{word-spacing:6.293333pt;}
.wsac{word-spacing:6.346667pt;}
.wsa5{word-spacing:6.400000pt;}
.ws2f{word-spacing:6.453333pt;}
.ws9{word-spacing:6.664000pt;}
.ws3b{word-spacing:6.720000pt;}
.wsa8{word-spacing:6.826667pt;}
.wsd{word-spacing:6.890667pt;}
.ws94{word-spacing:6.986667pt;}
.ws3c{word-spacing:7.093333pt;}
.ws22{word-spacing:7.146667pt;}
.wsbb{word-spacing:7.253333pt;}
.ws34{word-spacing:7.306667pt;}
.wsa4{word-spacing:7.520000pt;}
.ws15{word-spacing:7.706667pt;}
.ws92{word-spacing:7.733333pt;}
.ws65{word-spacing:7.786667pt;}
.ws9c{word-spacing:7.840000pt;}
.ws86{word-spacing:8.000000pt;}
.wsbe{word-spacing:8.053333pt;}
.ws91{word-spacing:8.480000pt;}
.wsc3{word-spacing:8.533333pt;}
.ws68{word-spacing:8.906667pt;}
.ws6e{word-spacing:8.960000pt;}
.ws9d{word-spacing:9.226667pt;}
.ws13{word-spacing:9.248000pt;}
.wsbd{word-spacing:9.386667pt;}
.ws5a{word-spacing:9.546667pt;}
.ws11{word-spacing:9.565333pt;}
.ws16{word-spacing:10.474667pt;}
.wsab{word-spacing:11.253333pt;}
.wsaf{word-spacing:11.466667pt;}
.wsb{word-spacing:11.650667pt;}
.ws4e{word-spacing:12.213333pt;}
.ws61{word-spacing:12.373333pt;}
.ws1f{word-spacing:66.864000pt;}
.ws97{word-spacing:99.216000pt;}
.ws9e{word-spacing:135.888000pt;}
.wsa3{word-spacing:335.520000pt;}
.ws9f{word-spacing:347.808000pt;}
.ws98{word-spacing:872.592000pt;}
._1f{margin-left:-7.764267pt;}
._9{margin-left:-6.485333pt;}
._a{margin-left:-5.280000pt;}
._6{margin-left:-3.917067pt;}
._2{margin-left:-2.459733pt;}
._1{margin-left:-1.322667pt;}
._4{width:0.896000pt;}
._3{width:1.785600pt;}
._7{width:2.768000pt;}
._1e{width:3.783733pt;}
._0{width:4.693333pt;}
._5{width:6.500800pt;}
._15{width:7.599200pt;}
._16{width:9.205333pt;}
._8{width:12.145067pt;}
._c{width:18.453333pt;}
._1d{width:21.653333pt;}
._b{width:23.210667pt;}
._17{width:80.534400pt;}
._1a{width:108.122667pt;}
._19{width:165.035733pt;}
._1c{width:183.782400pt;}
._18{width:204.480000pt;}
._f{width:208.224000pt;}
._13{width:212.186667pt;}
._14{width:213.389067pt;}
._11{width:223.536000pt;}
._1b{width:230.925067pt;}
._12{width:560.400000pt;}
._10{width:675.579733pt;}
._e{width:706.634667pt;}
._d{width:728.874667pt;}
.fsb{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fs3{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:55.466667pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:70.197584pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:43.370133pt;}
.y2{bottom:44.036800pt;}
.y28{bottom:76.530800pt;}
.y80{bottom:77.075067pt;}
.y7b{bottom:77.088400pt;}
.y54{bottom:77.208400pt;}
.y150{bottom:77.341733pt;}
.y7d{bottom:77.475067pt;}
.y116{bottom:79.472400pt;}
.y129{bottom:80.957467pt;}
.y164{bottom:82.181733pt;}
.y14f{bottom:83.000000pt;}
.yc4{bottom:88.053600pt;}
.y19b{bottom:89.741733pt;}
.y27{bottom:90.930800pt;}
.y184{bottom:92.221733pt;}
.yc5{bottom:93.826933pt;}
.y7f{bottom:94.675067pt;}
.y7a{bottom:94.688400pt;}
.y53{bottom:94.808400pt;}
.y7c{bottom:94.941733pt;}
.y115{bottom:97.072400pt;}
.y14e{bottom:98.489733pt;}
.y128{bottom:98.557467pt;}
.y163{bottom:99.781733pt;}
.yc3{bottom:101.213600pt;}
.y26{bottom:105.330800pt;}
.yc0{bottom:105.653600pt;}
.y19a{bottom:107.341733pt;}
.y13c{bottom:108.607467pt;}
.y183{bottom:109.821733pt;}
.yc1{bottom:110.090747pt;}
.ydf{bottom:110.263600pt;}
.ya3{bottom:110.981733pt;}
.yc2{bottom:110.986933pt;}
.y101{bottom:111.730267pt;}
.y7e{bottom:112.275067pt;}
.y79{bottom:112.288400pt;}
.y52{bottom:112.408400pt;}
.y14d{bottom:112.889733pt;}
.y114{bottom:114.672400pt;}
.y127{bottom:116.157467pt;}
.y162{bottom:117.381733pt;}
.y199{bottom:124.941733pt;}
.y13b{bottom:126.207467pt;}
.y182{bottom:127.421733pt;}
.yde{bottom:127.863600pt;}
.ya2{bottom:128.581733pt;}
.y100{bottom:129.330267pt;}
.y78{bottom:129.821733pt;}
.y51{bottom:129.875067pt;}
.y113{bottom:132.272400pt;}
.y161{bottom:134.981733pt;}
.y198{bottom:142.541733pt;}
.y13a{bottom:143.807467pt;}
.y181{bottom:145.021733pt;}
.ydd{bottom:145.463600pt;}
.ya1{bottom:146.181733pt;}
.yff{bottom:146.930267pt;}
.y50{bottom:147.341733pt;}
.y77{bottom:147.355067pt;}
.y126{bottom:151.357467pt;}
.y160{bottom:152.581733pt;}
.y197{bottom:160.141733pt;}
.y139{bottom:161.407467pt;}
.y180{bottom:162.621733pt;}
.ybe{bottom:163.050400pt;}
.ydc{bottom:163.063600pt;}
.ya0{bottom:163.781733pt;}
.yfe{bottom:164.530267pt;}
.y4f{bottom:164.808400pt;}
.y76{bottom:164.888400pt;}
.y125{bottom:164.957467pt;}
.y112{bottom:167.472400pt;}
.ybf{bottom:168.823733pt;}
.y15f{bottom:170.181733pt;}
.y25{bottom:171.001733pt;}
.y196{bottom:177.741733pt;}
.y138{bottom:179.007467pt;}
.y17f{bottom:180.221733pt;}
.ybd{bottom:180.650400pt;}
.ydb{bottom:180.663600pt;}
.y9f{bottom:181.381733pt;}
.yfd{bottom:182.130267pt;}
.y4e{bottom:182.275067pt;}
.y75{bottom:182.421733pt;}
.y111{bottom:182.962267pt;}
.y124{bottom:187.748000pt;}
.y15e{bottom:187.781733pt;}
.y24{bottom:188.601733pt;}
.y195{bottom:195.341733pt;}
.y137{bottom:196.607467pt;}
.y110{bottom:197.362267pt;}
.y17e{bottom:197.821733pt;}
.ybc{bottom:198.250400pt;}
.yda{bottom:198.263600pt;}
.y9e{bottom:198.981733pt;}
.yfc{bottom:199.730267pt;}
.y4d{bottom:199.741733pt;}
.y74{bottom:199.955067pt;}
.y15d{bottom:205.381733pt;}
.y23{bottom:206.201733pt;}
.y123{bottom:206.576000pt;}
.y194{bottom:212.941733pt;}
.y136{bottom:214.207467pt;}
.y17d{bottom:215.421733pt;}
.ybb{bottom:215.848667pt;}
.yd9{bottom:215.863600pt;}
.y4c{bottom:217.208400pt;}
.yfb{bottom:217.330267pt;}
.y73{bottom:217.488400pt;}
.y15c{bottom:222.981733pt;}
.y22{bottom:223.801733pt;}
.y9d{bottom:224.581733pt;}
.y122{bottom:225.402800pt;}
.y193{bottom:230.541733pt;}
.y135{bottom:231.807467pt;}
.y17c{bottom:233.021733pt;}
.yba{bottom:233.448667pt;}
.y4b{bottom:234.675067pt;}
.yfa{bottom:234.930267pt;}
.y72{bottom:235.021733pt;}
.y15b{bottom:240.581733pt;}
.yd8{bottom:241.023600pt;}
.y21{bottom:241.401733pt;}
.y9c{bottom:242.181733pt;}
.y121{bottom:244.230800pt;}
.y192{bottom:248.141733pt;}
.y134{bottom:249.407467pt;}
.y17b{bottom:250.621733pt;}
.yb9{bottom:251.048667pt;}
.y120{bottom:251.130800pt;}
.y4a{bottom:252.141733pt;}
.yf9{bottom:252.530267pt;}
.y71{bottom:252.555067pt;}
.y15a{bottom:258.181733pt;}
.y20{bottom:259.001733pt;}
.y9b{bottom:259.781733pt;}
.y191{bottom:265.741733pt;}
.y133{bottom:267.007467pt;}
.y17a{bottom:268.221733pt;}
.y49{bottom:269.608400pt;}
.y70{bottom:270.088400pt;}
.yf8{bottom:270.130267pt;}
.y159{bottom:275.781733pt;}
.yd7{bottom:276.223600pt;}
.y1f{bottom:276.601733pt;}
.y9a{bottom:277.381733pt;}
.y190{bottom:283.341733pt;}
.y11f{bottom:283.782667pt;}
.y132{bottom:284.607467pt;}
.y179{bottom:285.821733pt;}
.y48{bottom:287.075067pt;}
.y6f{bottom:287.621733pt;}
.yf7{bottom:287.730267pt;}
.y158{bottom:293.381733pt;}
.yd6{bottom:293.823600pt;}
.y1e{bottom:294.201733pt;}
.y11e{bottom:298.182667pt;}
.y18f{bottom:300.941733pt;}
.y131{bottom:302.207467pt;}
.y99{bottom:302.981733pt;}
.y178{bottom:303.421733pt;}
.y47{bottom:304.541733pt;}
.y6e{bottom:305.155067pt;}
.yf6{bottom:305.330267pt;}
.y157{bottom:310.981733pt;}
.yd5{bottom:311.423600pt;}
.y1d{bottom:311.801733pt;}
.y18e{bottom:318.541733pt;}
.y130{bottom:319.807467pt;}
.y177{bottom:321.021733pt;}
.y46{bottom:322.008400pt;}
.y6d{bottom:322.688400pt;}
.yf5{bottom:322.930267pt;}
.y98{bottom:328.581733pt;}
.yb8{bottom:328.595333pt;}
.yd3{bottom:329.023600pt;}
.y11d{bottom:330.181733pt;}
.yd4{bottom:334.796933pt;}
.y18d{bottom:336.141733pt;}
.y1c{bottom:336.961733pt;}
.y12f{bottom:337.407467pt;}
.y176{bottom:338.621733pt;}
.y45{bottom:339.475067pt;}
.y6c{bottom:340.221733pt;}
.y97{bottom:346.181733pt;}
.yb7{bottom:346.195333pt;}
.y11c{bottom:347.781733pt;}
.yf4{bottom:348.530267pt;}
.y18c{bottom:353.741733pt;}
.y12e{bottom:355.007467pt;}
.y175{bottom:356.221733pt;}
.y44{bottom:356.941733pt;}
.y6b{bottom:357.755067pt;}
.y96{bottom:363.781733pt;}
.yb5{bottom:363.795333pt;}
.y11b{bottom:365.381733pt;}
.yf3{bottom:366.130267pt;}
.yb6{bottom:369.568667pt;}
.y18b{bottom:371.341733pt;}
.y1b{bottom:372.158667pt;}
.y12d{bottom:372.607467pt;}
.y174{bottom:373.821733pt;}
.y43{bottom:374.408400pt;}
.y6a{bottom:375.288400pt;}
.y95{bottom:381.381733pt;}
.y11a{bottom:382.981733pt;}
.y1a{bottom:385.830667pt;}
.y18a{bottom:388.941733pt;}
.y173{bottom:391.421733pt;}
.yf2{bottom:391.730267pt;}
.y42{bottom:391.875067pt;}
.y69{bottom:392.821733pt;}
.yd2{bottom:395.820533pt;}
.y94{bottom:398.981733pt;}
.y19{bottom:399.360000pt;}
.y189{bottom:406.541733pt;}
.y12c{bottom:407.807467pt;}
.y119{bottom:408.581733pt;}
.y172{bottom:409.021733pt;}
.yf1{bottom:409.330267pt;}
.y41{bottom:409.341733pt;}
.y68{bottom:410.355067pt;}
.yd1{bottom:413.420533pt;}
.y14c{bottom:415.357467pt;}
.y93{bottom:416.581733pt;}
.y18{bottom:420.961733pt;}
.y12b{bottom:423.297200pt;}
.y188{bottom:424.141733pt;}
.y171{bottom:426.621733pt;}
.y40{bottom:426.808400pt;}
.yf0{bottom:426.930267pt;}
.y14b{bottom:428.957467pt;}
.yd0{bottom:431.020533pt;}
.y92{bottom:434.181733pt;}
.y17{bottom:434.561733pt;}
.y67{bottom:435.448400pt;}
.y12a{bottom:437.697200pt;}
.yb4{bottom:439.688267pt;}
.y187{bottom:441.741733pt;}
.y170{bottom:444.221733pt;}
.y3f{bottom:444.275067pt;}
.y16{bottom:448.161733pt;}
.ycf{bottom:448.620533pt;}
.y14a{bottom:451.748000pt;}
.y91{bottom:451.781733pt;}
.yef{bottom:452.090267pt;}
.yb1{bottom:457.288133pt;}
.yb2{bottom:457.288267pt;}
.y186{bottom:459.341733pt;}
.y3e{bottom:461.741733pt;}
.y15{bottom:461.761733pt;}
.y16f{bottom:461.821733pt;}
.yb3{bottom:463.061467pt;}
.yce{bottom:466.220533pt;}
.y90{bottom:469.381733pt;}
.y66{bottom:470.515067pt;}
.y149{bottom:470.576000pt;}
.yb0{bottom:474.888133pt;}
.y14{bottom:475.361733pt;}
.y185{bottom:476.941733pt;}
.y3d{bottom:479.208400pt;}
.y16e{bottom:479.421733pt;}
.y8f{bottom:486.981733pt;}
.yee{bottom:487.290267pt;}
.y65{bottom:488.048400pt;}
.y13{bottom:488.961733pt;}
.y148{bottom:489.402800pt;}
.yaf{bottom:492.488133pt;}
.y118{bottom:494.541733pt;}
.y3c{bottom:496.675067pt;}
.y16d{bottom:497.021733pt;}
.y12{bottom:502.561733pt;}
.y156{bottom:504.581733pt;}
.yed{bottom:504.890267pt;}
.y64{bottom:505.581733pt;}
.y10f{bottom:507.116533pt;}
.y147{bottom:508.230800pt;}
.y8e{bottom:512.141733pt;}
.y3b{bottom:514.141733pt;}
.y16c{bottom:514.621733pt;}
.y146{bottom:515.130800pt;}
.y11{bottom:516.161733pt;}
.y155{bottom:522.181733pt;}
.yec{bottom:522.490267pt;}
.y63{bottom:523.115067pt;}
.ycd{bottom:524.047333pt;}
.y10e{bottom:524.716533pt;}
.y117{bottom:529.741733pt;}
.y10{bottom:529.761733pt;}
.y3a{bottom:531.608400pt;}
.y16b{bottom:532.221733pt;}
.y154{bottom:539.781733pt;}
.yeb{bottom:540.090267pt;}
.y62{bottom:540.648400pt;}
.y10d{bottom:542.316533pt;}
.yf{bottom:543.361733pt;}
.y8d{bottom:547.341733pt;}
.y145{bottom:547.782667pt;}
.y39{bottom:549.075067pt;}
.y16a{bottom:549.821733pt;}
.ye{bottom:556.961733pt;}
.y153{bottom:557.381733pt;}
.yea{bottom:557.690267pt;}
.y61{bottom:558.181733pt;}
.y10c{bottom:559.916533pt;}
.y144{bottom:562.182667pt;}
.y8c{bottom:564.941733pt;}
.ycc{bottom:565.357467pt;}
.y38{bottom:566.541733pt;}
.y169{bottom:567.421733pt;}
.yd{bottom:570.561733pt;}
.y152{bottom:574.981733pt;}
.yae{bottom:574.982667pt;}
.ye9{bottom:575.290267pt;}
.y10b{bottom:577.516533pt;}
.y8b{bottom:582.541733pt;}
.ycb{bottom:582.957467pt;}
.y60{bottom:583.275067pt;}
.y37{bottom:584.008400pt;}
.yc{bottom:584.161733pt;}
.y168{bottom:585.021733pt;}
.y151{bottom:592.581733pt;}
.yad{bottom:592.582667pt;}
.ye8{bottom:592.890267pt;}
.y143{bottom:594.181733pt;}
.y10a{bottom:595.116533pt;}
.yb{bottom:597.761733pt;}
.y8a{bottom:600.141733pt;}
.yca{bottom:600.557467pt;}
.y36{bottom:601.475067pt;}
.y167{bottom:602.621733pt;}
.yac{bottom:610.181733pt;}
.ya{bottom:611.361733pt;}
.y142{bottom:611.781733pt;}
.y89{bottom:617.741733pt;}
.yc9{bottom:618.157467pt;}
.y5f{bottom:618.341733pt;}
.y35{bottom:618.941733pt;}
.y166{bottom:620.221733pt;}
.y9{bottom:624.961733pt;}
.yab{bottom:627.781733pt;}
.ye7{bottom:628.090267pt;}
.y141{bottom:629.381733pt;}
.y109{bottom:630.316533pt;}
.y88{bottom:635.341733pt;}
.y5e{bottom:635.875067pt;}
.y34{bottom:636.408400pt;}
.y165{bottom:637.821733pt;}
.y108{bottom:643.916533pt;}
.yaa{bottom:645.381733pt;}
.y140{bottom:646.981733pt;}
.ye6{bottom:651.303200pt;}
.y87{bottom:652.941733pt;}
.y5d{bottom:653.408400pt;}
.y33{bottom:653.875067pt;}
.y8{bottom:661.238933pt;}
.ya9{bottom:662.981733pt;}
.y13f{bottom:664.581733pt;}
.y107{bottom:666.707067pt;}
.y86{bottom:670.541733pt;}
.y5c{bottom:670.941733pt;}
.ye5{bottom:670.971200pt;}
.y32{bottom:671.341733pt;}
.y7{bottom:674.038933pt;}
.ya8{bottom:680.581733pt;}
.yc8{bottom:681.603200pt;}
.y13e{bottom:682.181733pt;}
.y106{bottom:685.535067pt;}
.y85{bottom:688.141733pt;}
.y5b{bottom:688.475067pt;}
.y31{bottom:688.808400pt;}
.ye4{bottom:690.639200pt;}
.y6{bottom:694.398000pt;}
.ya7{bottom:698.181733pt;}
.yc7{bottom:699.203200pt;}
.y105{bottom:704.361733pt;}
.y84{bottom:705.741733pt;}
.y5a{bottom:706.008400pt;}
.y30{bottom:706.275067pt;}
.y13d{bottom:707.781733pt;}
.ye3{bottom:710.307200pt;}
.ya6{bottom:715.781733pt;}
.yc6{bottom:716.803200pt;}
.y104{bottom:723.189733pt;}
.y83{bottom:723.341733pt;}
.y59{bottom:723.541733pt;}
.y2f{bottom:723.741733pt;}
.ye2{bottom:729.975200pt;}
.y103{bottom:730.089733pt;}
.ya5{bottom:733.381733pt;}
.y5{bottom:735.741733pt;}
.y82{bottom:740.941733pt;}
.y58{bottom:741.075067pt;}
.y2e{bottom:741.208400pt;}
.ye1{bottom:750.303200pt;}
.ya4{bottom:750.981733pt;}
.y4{bottom:754.941733pt;}
.y81{bottom:758.541733pt;}
.y56{bottom:758.608400pt;}
.y2d{bottom:758.675067pt;}
.y102{bottom:762.741733pt;}
.y57{bottom:764.381733pt;}
.y3{bottom:774.141733pt;}
.y2c{bottom:776.141733pt;}
.ye0{bottom:777.141733pt;}
.y1{bottom:815.850400pt;}
.y2b{bottom:819.555067pt;}
.y55{bottom:820.216533pt;}
.y2a{bottom:831.555067pt;}
.h10{height:25.776373pt;}
.h13{height:26.624747pt;}
.h8{height:32.685333pt;}
.he{height:33.160000pt;}
.h15{height:34.608000pt;}
.h3{height:35.370667pt;}
.h4{height:37.581333pt;}
.h16{height:37.717333pt;}
.h9{height:38.453333pt;}
.hb{height:39.792000pt;}
.h19{height:39.796800pt;}
.h18{height:39.797333pt;}
.hc{height:39.936000pt;}
.ha{height:44.213333pt;}
.h7{height:44.373333pt;}
.h11{height:44.373867pt;}
.h12{height:44.380267pt;}
.h6{height:46.144000pt;}
.h2{height:46.148267pt;}
.hf{height:46.786964pt;}
.h5{height:50.389333pt;}
.hd{height:53.056000pt;}
.h14{height:61.973333pt;}
.h17{height:62.208000pt;}
.h1{height:876.666667pt;}
.h0{height:876.850667pt;}
.w0{width:597.165333pt;}
.w1{width:597.333333pt;}
.x0{left:0.000000pt;}
.xa{left:71.810933pt;}
.x1d{left:81.821733pt;}
.xb{left:90.711067pt;}
.x20{left:94.488133pt;}
.x13{left:102.037733pt;}
.x22{left:106.580533pt;}
.x8{left:109.766267pt;}
.x1f{left:115.439600pt;}
.x24{left:116.357333pt;}
.x1a{left:123.667653pt;}
.x9{left:124.724400pt;}
.x23{left:129.257333pt;}
.x1{left:142.639333pt;}
.x27{left:161.326933pt;}
.x16{left:178.244267pt;}
.x17{left:188.254933pt;}
.xd{left:198.516000pt;}
.x18{left:210.769200pt;}
.x19{left:220.779867pt;}
.x26{left:222.696533pt;}
.xc{left:249.456000pt;}
.x7{left:266.134533pt;}
.x25{left:276.946933pt;}
.x14{left:286.395467pt;}
.x2{left:287.747467pt;}
.xe{left:288.915867pt;}
.x3{left:291.182000pt;}
.x4{left:294.641200pt;}
.x15{left:296.406133pt;}
.x1b{left:328.294133pt;}
.x1c{left:333.494000pt;}
.xf{left:351.212000pt;}
.x10{left:361.238933pt;}
.x21{left:395.732533pt;}
.x1e{left:410.416933pt;}
.x5{left:417.238800pt;}
.x6{left:420.698000pt;}
.x11{left:511.339733pt;}
.x12{left:521.366800pt;}
}




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