
    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_205f77de1e82be5688df0837.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_c0928330d9b9d0eb14146544.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_64835afcf66b67b7eda72134.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_e0b257993a368c472a72ef85.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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);}
.v2{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.838000px;}
.v1{vertical-align:19.800000px;}
.ls57{letter-spacing:-1.260000px;}
.ls64{letter-spacing:-1.080000px;}
.ls6e{letter-spacing:-1.026000px;}
.ls65{letter-spacing:-0.960000px;}
.ls28{letter-spacing:-0.900000px;}
.lse{letter-spacing:-0.840000px;}
.ls11{letter-spacing:-0.816000px;}
.ls44{letter-spacing:-0.768000px;}
.ls49{letter-spacing:-0.756000px;}
.ls43{letter-spacing:-0.720000px;}
.ls48{letter-spacing:-0.702000px;}
.ls67{letter-spacing:-0.684000px;}
.ls2e{letter-spacing:-0.672000px;}
.ls46{letter-spacing:-0.660000px;}
.ls2f{letter-spacing:-0.648000px;}
.ls24{letter-spacing:-0.600000px;}
.ls4d{letter-spacing:-0.594000px;}
.ls25{letter-spacing:-0.540000px;}
.ls3d{letter-spacing:-0.528000px;}
.ls3c{letter-spacing:-0.504000px;}
.ls4e{letter-spacing:-0.491400px;}
.ls3b{letter-spacing:-0.480000px;}
.ls2b{letter-spacing:-0.432000px;}
.ls47{letter-spacing:-0.420000px;}
.ls2c{letter-spacing:-0.384000px;}
.ls72{letter-spacing:-0.378000px;}
.ls39{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.357000px;}
.ls2d{letter-spacing:-0.336000px;}
.ls4a{letter-spacing:-0.324000px;}
.ls27{letter-spacing:-0.315000px;}
.ls26{letter-spacing:-0.300000px;}
.ls38{letter-spacing:-0.288000px;}
.ls71{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.255000px;}
.ls4f{letter-spacing:-0.252000px;}
.ls10{letter-spacing:-0.240000px;}
.ls73{letter-spacing:-0.226800px;}
.ls6f{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.192000px;}
.ls36{letter-spacing:-0.180000px;}
.ls56{letter-spacing:-0.162000px;}
.ls32{letter-spacing:-0.144000px;}
.ls58{letter-spacing:-0.126000px;}
.ls29{letter-spacing:-0.120000px;}
.ls70{letter-spacing:-0.113400px;}
.ls4c{letter-spacing:-0.108000px;}
.ls31{letter-spacing:-0.096000px;}
.ls66{letter-spacing:-0.084000px;}
.ls5a{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.060000px;}
.ls4b{letter-spacing:-0.054000px;}
.lsc{letter-spacing:-0.051000px;}
.ls30{letter-spacing:-0.048000px;}
.ls41{letter-spacing:-0.042000px;}
.ls37{letter-spacing:-0.036000px;}
.ls9{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.024000px;}
.ls5b{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.048000px;}
.ls55{letter-spacing:0.054000px;}
.ls15{letter-spacing:0.060000px;}
.ls22{letter-spacing:0.072000px;}
.ls63{letter-spacing:0.084000px;}
.ls21{letter-spacing:0.096000px;}
.ls1{letter-spacing:0.102000px;}
.ls51{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.120000px;}
.ls20{letter-spacing:0.144000px;}
.ls54{letter-spacing:0.162000px;}
.ls50{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.192000px;}
.ls1d{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.252000px;}
.ls6c{letter-spacing:0.270000px;}
.ls34{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.306000px;}
.ls53{letter-spacing:0.324000px;}
.ls1e{letter-spacing:0.336000px;}
.ls14{letter-spacing:0.360000px;}
.ls52{letter-spacing:0.378000px;}
.ls3a{letter-spacing:0.384000px;}
.lsa{letter-spacing:0.408000px;}
.ls19{letter-spacing:0.420000px;}
.ls35{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.480000px;}
.ls45{letter-spacing:0.486000px;}
.ls61{letter-spacing:0.504000px;}
.ls6a{letter-spacing:0.528000px;}
.ls3e{letter-spacing:0.540000px;}
.ls5d{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.600000px;}
.ls5e{letter-spacing:0.612000px;}
.ls69{letter-spacing:0.624000px;}
.ls5c{letter-spacing:0.630000px;}
.ls17{letter-spacing:0.660000px;}
.ls42{letter-spacing:0.714000px;}
.ls6d{letter-spacing:0.756000px;}
.ls8{letter-spacing:0.768000px;}
.ls40{letter-spacing:0.840000px;}
.ls59{letter-spacing:0.864000px;}
.ls6{letter-spacing:0.900000px;}
.ls23{letter-spacing:0.912000px;}
.ls5f{letter-spacing:0.960000px;}
.ls60{letter-spacing:0.972000px;}
.ls6b{letter-spacing:1.008000px;}
.ls3f{letter-spacing:1.020000px;}
.ls1b{letter-spacing:1.200000px;}
.ls62{letter-spacing:1.296000px;}
.ls68{letter-spacing:1.500000px;}
.ls3{letter-spacing:14.175000px;}
.ls2{letter-spacing:14.340000px;}
.ls13{letter-spacing:15.420000px;}
.ls18{letter-spacing:16.560000px;}
.ls5{letter-spacing:16.860000px;}
.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;}
}
.ws64{word-spacing:-16.020000px;}
.ws66{word-spacing:-15.840000px;}
.ws1d{word-spacing:-15.600000px;}
.wsb0{word-spacing:-15.540000px;}
.ws1f{word-spacing:-15.360000px;}
.wsc8{word-spacing:-15.300000px;}
.ws89{word-spacing:-15.240000px;}
.ws8c{word-spacing:-15.180000px;}
.ws1c{word-spacing:-15.120000px;}
.wsae{word-spacing:-15.060000px;}
.ws1a{word-spacing:-15.000000px;}
.ws1e{word-spacing:-14.940000px;}
.ws88{word-spacing:-14.880000px;}
.ws8a{word-spacing:-14.820000px;}
.ws7a{word-spacing:-14.640000px;}
.wsa2{word-spacing:-14.340000px;}
.wsb3{word-spacing:-14.040000px;}
.ws71{word-spacing:-13.986000px;}
.wsb1{word-spacing:-13.920000px;}
.ws8d{word-spacing:-13.824000px;}
.ws8b{word-spacing:-13.554000px;}
.ws79{word-spacing:-13.500000px;}
.ws74{word-spacing:-13.446000px;}
.ws73{word-spacing:-13.392000px;}
.ws8e{word-spacing:-13.338000px;}
.wsa9{word-spacing:-13.296000px;}
.wsc6{word-spacing:-13.284000px;}
.wscb{word-spacing:-13.230000px;}
.ws23{word-spacing:-13.200000px;}
.ws72{word-spacing:-13.176000px;}
.wsc9{word-spacing:-13.122000px;}
.ws76{word-spacing:-12.960000px;}
.ws9a{word-spacing:-12.912000px;}
.ws75{word-spacing:-12.906000px;}
.ws99{word-spacing:-12.864000px;}
.ws78{word-spacing:-12.798000px;}
.ws70{word-spacing:-12.744000px;}
.wsbd{word-spacing:-12.576000px;}
.wsc1{word-spacing:-12.480000px;}
.wsc5{word-spacing:-12.474000px;}
.wsb5{word-spacing:-12.432000px;}
.ws55{word-spacing:-12.384000px;}
.wsa7{word-spacing:-12.336000px;}
.ws53{word-spacing:-12.288000px;}
.wsbf{word-spacing:-12.240000px;}
.ws26{word-spacing:-12.144000px;}
.ws28{word-spacing:-12.096000px;}
.ws3{word-spacing:-12.048000px;}
.ws21{word-spacing:-12.000000px;}
.ws2d{word-spacing:-11.952000px;}
.ws2c{word-spacing:-11.904000px;}
.ws7d{word-spacing:-11.808000px;}
.ws52{word-spacing:-11.712000px;}
.ws4f{word-spacing:-11.664000px;}
.ws4e{word-spacing:-11.616000px;}
.wsb8{word-spacing:-11.568000px;}
.ws57{word-spacing:-11.520000px;}
.wsba{word-spacing:-11.508000px;}
.ws59{word-spacing:-11.472000px;}
.ws68{word-spacing:-11.280000px;}
.ws1{word-spacing:-11.250000px;}
.ws6a{word-spacing:-11.232000px;}
.ws65{word-spacing:-11.214000px;}
.wsc0{word-spacing:-11.184000px;}
.ws1b{word-spacing:-10.935000px;}
.ws97{word-spacing:-10.836000px;}
.ws2{word-spacing:-10.500000px;}
.ws63{word-spacing:-10.458000px;}
.wsb4{word-spacing:-10.416000px;}
.ws95{word-spacing:-10.374000px;}
.ws96{word-spacing:-10.248000px;}
.ws6f{word-spacing:-10.080000px;}
.wsa8{word-spacing:-9.972000px;}
.ws98{word-spacing:-9.900000px;}
.wsbb{word-spacing:-9.744000px;}
.wsa6{word-spacing:-9.612000px;}
.ws49{word-spacing:-9.450000px;}
.wsc7{word-spacing:-9.336600px;}
.ws56{word-spacing:-9.288000px;}
.ws25{word-spacing:-9.252000px;}
.wsca{word-spacing:-9.223200px;}
.ws29{word-spacing:-9.072000px;}
.ws9c{word-spacing:-9.036000px;}
.ws4d{word-spacing:-9.000000px;}
.ws4c{word-spacing:-8.964000px;}
.ws77{word-spacing:-8.958600px;}
.ws9b{word-spacing:-8.928000px;}
.ws7f{word-spacing:-8.748000px;}
.ws50{word-spacing:-8.712000px;}
.ws51{word-spacing:-8.640000px;}
.ws58{word-spacing:-8.496000px;}
.ws67{word-spacing:-8.460000px;}
.ws2a{word-spacing:-8.352000px;}
.wsb7{word-spacing:-8.316000px;}
.ws69{word-spacing:-8.280000px;}
.ws19{word-spacing:-8.016000px;}
.wsbe{word-spacing:-1.152000px;}
.ws24{word-spacing:-0.960000px;}
.ws85{word-spacing:-0.720000px;}
.wsf{word-spacing:-0.660000px;}
.ws2b{word-spacing:-0.624000px;}
.ws8{word-spacing:-0.612000px;}
.ws36{word-spacing:-0.600000px;}
.ws92{word-spacing:-0.594000px;}
.ws45{word-spacing:-0.576000px;}
.wsa{word-spacing:-0.561000px;}
.ws5b{word-spacing:-0.540000px;}
.ws40{word-spacing:-0.528000px;}
.ws12{word-spacing:-0.495000px;}
.wscf{word-spacing:-0.486000px;}
.ws13{word-spacing:-0.480000px;}
.ws10{word-spacing:-0.462000px;}
.ws3a{word-spacing:-0.432000px;}
.ws84{word-spacing:-0.420000px;}
.ws87{word-spacing:-0.384000px;}
.wsd0{word-spacing:-0.378000px;}
.wsa0{word-spacing:-0.360000px;}
.wsd{word-spacing:-0.357000px;}
.ws5d{word-spacing:-0.336000px;}
.ws82{word-spacing:-0.324000px;}
.ws9e{word-spacing:-0.300000px;}
.ws60{word-spacing:-0.288000px;}
.wsd2{word-spacing:-0.270000px;}
.ws9{word-spacing:-0.255000px;}
.ws42{word-spacing:-0.240000px;}
.wsd3{word-spacing:-0.216000px;}
.ws3b{word-spacing:-0.192000px;}
.ws31{word-spacing:-0.180000px;}
.ws61{word-spacing:-0.144000px;}
.ws80{word-spacing:-0.120000px;}
.wsaa{word-spacing:-0.060000px;}
.wscc{word-spacing:-0.054000px;}
.ws7c{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws3c{word-spacing:0.048000px;}
.ws81{word-spacing:0.054000px;}
.ws11{word-spacing:0.060000px;}
.ws6e{word-spacing:0.096000px;}
.wse{word-spacing:0.120000px;}
.wsc2{word-spacing:0.144000px;}
.wsb{word-spacing:0.153000px;}
.ws33{word-spacing:0.180000px;}
.wsc3{word-spacing:0.192000px;}
.ws62{word-spacing:0.240000px;}
.ws44{word-spacing:0.288000px;}
.ws30{word-spacing:0.294000px;}
.ws5c{word-spacing:0.300000px;}
.ws47{word-spacing:0.336000px;}
.ws6c{word-spacing:0.360000px;}
.wsce{word-spacing:0.378000px;}
.ws48{word-spacing:0.384000px;}
.ws2f{word-spacing:0.420000px;}
.ws18{word-spacing:0.432000px;}
.ws6b{word-spacing:0.480000px;}
.ws9f{word-spacing:0.540000px;}
.wsad{word-spacing:0.576000px;}
.ws16{word-spacing:0.600000px;}
.wsac{word-spacing:0.624000px;}
.ws15{word-spacing:0.630000px;}
.wscd{word-spacing:0.648000px;}
.ws6d{word-spacing:0.660000px;}
.wsc4{word-spacing:0.672000px;}
.ws86{word-spacing:0.720000px;}
.ws39{word-spacing:0.756000px;}
.ws5f{word-spacing:0.768000px;}
.ws93{word-spacing:0.810000px;}
.wsb6{word-spacing:0.816000px;}
.ws35{word-spacing:0.840000px;}
.ws3e{word-spacing:0.864000px;}
.ws6{word-spacing:0.867000px;}
.ws14{word-spacing:0.900000px;}
.ws5e{word-spacing:0.912000px;}
.ws3d{word-spacing:0.960000px;}
.ws37{word-spacing:0.966000px;}
.ws7{word-spacing:0.969000px;}
.ws91{word-spacing:0.972000px;}
.ws3f{word-spacing:1.008000px;}
.ws2e{word-spacing:1.020000px;}
.wsd1{word-spacing:1.026000px;}
.ws43{word-spacing:1.056000px;}
.ws38{word-spacing:1.080000px;}
.ws41{word-spacing:1.104000px;}
.ws94{word-spacing:1.134000px;}
.ws32{word-spacing:1.140000px;}
.ws17{word-spacing:1.152000px;}
.wsc{word-spacing:1.173000px;}
.ws83{word-spacing:1.188000px;}
.ws46{word-spacing:1.200000px;}
.ws5a{word-spacing:1.260000px;}
.wsd4{word-spacing:1.296000px;}
.ws8f{word-spacing:1.320000px;}
.ws34{word-spacing:1.380000px;}
.wsab{word-spacing:1.440000px;}
.ws90{word-spacing:1.500000px;}
.ws7e{word-spacing:2.664000px;}
.ws22{word-spacing:2.820000px;}
.ws0{word-spacing:3.090000px;}
.wsa4{word-spacing:3.726000px;}
.ws7b{word-spacing:3.996000px;}
.ws54{word-spacing:4.056000px;}
.wsa5{word-spacing:4.140000px;}
.ws4b{word-spacing:4.188000px;}
.ws27{word-spacing:4.236000px;}
.wsb2{word-spacing:4.308000px;}
.wsbc{word-spacing:4.548000px;}
.wsa1{word-spacing:5.100000px;}
.wsa3{word-spacing:5.388000px;}
.wsaf{word-spacing:5.868000px;}
.ws4a{word-spacing:18.000000px;}
.ws9d{word-spacing:20.880000px;}
.ws20{word-spacing:36.000000px;}
.ws4{word-spacing:42.000000px;}
.wsb9{word-spacing:101.682000px;}
._b{margin-left:-7.740000px;}
._3{margin-left:-6.660000px;}
._6{margin-left:-5.520000px;}
._2{margin-left:-4.335000px;}
._1{margin-left:-3.213000px;}
._0{margin-left:-1.275000px;}
._7{width:1.173000px;}
._e{width:2.895000px;}
._d{width:6.000000px;}
._a{width:30.000000px;}
._5{width:48.102000px;}
._4{width:53.952000px;}
._c{width:115.182000px;}
._9{width:155.163000px;}
._8{width:924.294000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:36.000000px;}
.fs8{font-size:37.800000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y11f{bottom:54.915000px;}
.yff{bottom:54.939000px;}
.y75{bottom:55.062000px;}
.y58{bottom:55.167000px;}
.y199{bottom:55.317000px;}
.y188{bottom:55.347000px;}
.y162{bottom:55.377000px;}
.y1e{bottom:55.416000px;}
.y98{bottom:55.425000px;}
.yd9{bottom:55.626000px;}
.yba{bottom:55.731000px;}
.y137{bottom:55.944000px;}
.y11e{bottom:69.159000px;}
.yfe{bottom:69.183000px;}
.y74{bottom:69.306000px;}
.y57{bottom:69.423000px;}
.y198{bottom:69.561000px;}
.y187{bottom:69.603000px;}
.y161{bottom:69.621000px;}
.y1d{bottom:69.672000px;}
.y97{bottom:69.681000px;}
.yd8{bottom:69.870000px;}
.yb9{bottom:69.981000px;}
.y136{bottom:70.218000px;}
.yfd{bottom:83.427000px;}
.y73{bottom:83.550000px;}
.y56{bottom:83.667000px;}
.y197{bottom:83.805000px;}
.y186{bottom:83.847000px;}
.y160{bottom:83.877000px;}
.y1c{bottom:83.916000px;}
.y96{bottom:83.937000px;}
.yb8{bottom:84.237000px;}
.y135{bottom:84.474000px;}
.yfc{bottom:97.671000px;}
.y72{bottom:97.806000px;}
.y55{bottom:97.911000px;}
.y196{bottom:98.061000px;}
.y185{bottom:98.091000px;}
.y15f{bottom:98.121000px;}
.y1b{bottom:98.160000px;}
.y95{bottom:98.181000px;}
.yb7{bottom:98.493000px;}
.y134{bottom:98.718000px;}
.yd7{bottom:109.692000px;}
.y11d{bottom:111.915000px;}
.yfb{bottom:111.927000px;}
.y71{bottom:112.074000px;}
.y54{bottom:112.167000px;}
.y195{bottom:112.305000px;}
.y184{bottom:112.347000px;}
.y15e{bottom:112.365000px;}
.y1a{bottom:112.416000px;}
.y94{bottom:112.437000px;}
.yb6{bottom:112.737000px;}
.y133{bottom:112.962000px;}
.yd6{bottom:125.446500px;}
.yfa{bottom:126.171000px;}
.y70{bottom:126.318000px;}
.y53{bottom:126.411000px;}
.y183{bottom:126.591000px;}
.y15d{bottom:126.621000px;}
.y19{bottom:126.660000px;}
.y93{bottom:126.681000px;}
.yb5{bottom:126.981000px;}
.y132{bottom:127.218000px;}
.yf9{bottom:140.415000px;}
.y11c{bottom:140.451000px;}
.y6f{bottom:140.574000px;}
.y52{bottom:140.655000px;}
.y182{bottom:140.835000px;}
.y15c{bottom:140.865000px;}
.y92{bottom:140.925000px;}
.yd5{bottom:141.201000px;}
.yb4{bottom:141.237000px;}
.y131{bottom:141.462000px;}
.yf8{bottom:154.671000px;}
.y11b{bottom:154.695000px;}
.y6e{bottom:154.818000px;}
.y51{bottom:154.911000px;}
.y181{bottom:155.091000px;}
.y15b{bottom:155.109000px;}
.y91{bottom:155.181000px;}
.yb3{bottom:155.481000px;}
.y130{bottom:155.706000px;}
.yd4{bottom:156.955500px;}
.y18{bottom:164.475000px;}
.yf7{bottom:168.915000px;}
.y11a{bottom:168.951000px;}
.y6d{bottom:169.062000px;}
.y50{bottom:169.155000px;}
.y180{bottom:169.335000px;}
.y15a{bottom:169.365000px;}
.y90{bottom:169.425000px;}
.yb2{bottom:169.725000px;}
.y12f{bottom:169.962000px;}
.yd3{bottom:172.710000px;}
.y17{bottom:181.725000px;}
.yf6{bottom:183.159000px;}
.y119{bottom:183.195000px;}
.y6c{bottom:183.318000px;}
.y4f{bottom:183.399000px;}
.y17f{bottom:183.579000px;}
.y159{bottom:183.609000px;}
.yb1{bottom:183.969000px;}
.y12e{bottom:184.206000px;}
.yf5{bottom:197.403000px;}
.y118{bottom:197.439000px;}
.y6b{bottom:197.562000px;}
.y4e{bottom:197.643000px;}
.y17e{bottom:197.835000px;}
.y158{bottom:197.865000px;}
.yb0{bottom:198.225000px;}
.y12d{bottom:198.450000px;}
.y16{bottom:198.975000px;}
.yd2{bottom:203.340000px;}
.y8f{bottom:207.885000px;}
.yf4{bottom:211.647000px;}
.y117{bottom:211.683000px;}
.y6a{bottom:211.806000px;}
.y4d{bottom:211.899000px;}
.y17d{bottom:212.091000px;}
.y157{bottom:212.109000px;}
.y12c{bottom:212.706000px;}
.y15{bottom:216.225000px;}
.yd1{bottom:220.590000px;}
.y8e{bottom:225.135000px;}
.yf3{bottom:225.903000px;}
.y116{bottom:225.927000px;}
.y69{bottom:226.050000px;}
.y4c{bottom:226.155000px;}
.y17c{bottom:226.335000px;}
.y156{bottom:226.365000px;}
.y12b{bottom:226.950000px;}
.y14{bottom:233.475000px;}
.yaf{bottom:236.760000px;}
.yd0{bottom:237.840000px;}
.yf2{bottom:240.147000px;}
.y115{bottom:240.183000px;}
.y68{bottom:240.306000px;}
.y4b{bottom:240.399000px;}
.y17b{bottom:240.579000px;}
.y8d{bottom:242.385000px;}
.y13{bottom:250.725000px;}
.yae{bottom:254.010000px;}
.yf1{bottom:254.391000px;}
.y114{bottom:254.427000px;}
.y67{bottom:254.550000px;}
.y4a{bottom:254.655000px;}
.y17a{bottom:254.835000px;}
.y8c{bottom:259.635000px;}
.y155{bottom:265.491000px;}
.y12{bottom:267.975000px;}
.yf0{bottom:268.647000px;}
.y113{bottom:268.671000px;}
.y66{bottom:268.794000px;}
.y49{bottom:268.911000px;}
.ycf{bottom:269.952000px;}
.yad{bottom:271.260000px;}
.y8b{bottom:276.885000px;}
.y12a{bottom:279.835500px;}
.y154{bottom:281.245500px;}
.yef{bottom:282.891000px;}
.y112{bottom:282.927000px;}
.y65{bottom:283.056000px;}
.y48{bottom:283.155000px;}
.y11{bottom:285.225000px;}
.yce{bottom:285.706500px;}
.y8a{bottom:294.135000px;}
.y179{bottom:295.380000px;}
.y129{bottom:295.590000px;}
.y153{bottom:297.000000px;}
.yac{bottom:297.135000px;}
.y111{bottom:297.171000px;}
.y64{bottom:297.312000px;}
.y47{bottom:297.411000px;}
.ycd{bottom:301.461000px;}
.y10{bottom:302.475000px;}
.y128{bottom:311.344500px;}
.y89{bottom:311.385000px;}
.yee{bottom:311.391000px;}
.y110{bottom:311.409000px;}
.y63{bottom:311.556000px;}
.y46{bottom:311.667000px;}
.y178{bottom:312.630000px;}
.y152{bottom:312.754500px;}
.ycc{bottom:317.215500px;}
.yf{bottom:319.725000px;}
.yed{bottom:325.635000px;}
.y10f{bottom:325.665000px;}
.y62{bottom:325.812000px;}
.y45{bottom:325.911000px;}
.y127{bottom:327.099000px;}
.y151{bottom:328.509000px;}
.y88{bottom:328.635000px;}
.y177{bottom:329.880000px;}
.ycb{bottom:332.970000px;}
.ye{bottom:336.975000px;}
.yec{bottom:339.879000px;}
.y61{bottom:340.056000px;}
.y44{bottom:340.167000px;}
.yab{bottom:340.255500px;}
.y126{bottom:342.853500px;}
.y150{bottom:344.263500px;}
.y87{bottom:345.885000px;}
.y176{bottom:347.130000px;}
.yeb{bottom:354.135000px;}
.y60{bottom:354.300000px;}
.y43{bottom:354.411000px;}
.yaa{bottom:356.010000px;}
.y125{bottom:358.608000px;}
.y14f{bottom:360.018000px;}
.y86{bottom:363.135000px;}
.yca{bottom:363.615000px;}
.y175{bottom:364.380000px;}
.yea{bottom:368.379000px;}
.y5f{bottom:368.556000px;}
.y42{bottom:368.661000px;}
.y10e{bottom:369.885000px;}
.y124{bottom:374.362500px;}
.y14e{bottom:375.772500px;}
.yc9{bottom:380.865000px;}
.y174{bottom:381.630000px;}
.ye9{bottom:382.623000px;}
.y5e{bottom:382.800000px;}
.y41{bottom:382.917000px;}
.y10d{bottom:387.135000px;}
.yd{bottom:388.725000px;}
.ya9{bottom:389.010000px;}
.y123{bottom:390.117000px;}
.y14d{bottom:391.527000px;}
.ye8{bottom:396.879000px;}
.y40{bottom:397.161000px;}
.y85{bottom:397.630500px;}
.yc8{bottom:398.115000px;}
.y173{bottom:398.880000px;}
.yc{bottom:403.742250px;}
.y10c{bottom:404.385000px;}
.y122{bottom:405.871500px;}
.ya8{bottom:406.260000px;}
.y14c{bottom:407.281500px;}
.ye7{bottom:411.123000px;}
.y3f{bottom:411.405000px;}
.y84{bottom:413.385000px;}
.yc7{bottom:415.365000px;}
.y172{bottom:416.130000px;}
.yb{bottom:418.736250px;}
.y121{bottom:421.626000px;}
.y10b{bottom:421.635000px;}
.y14b{bottom:423.036000px;}
.ye6{bottom:425.379000px;}
.y3e{bottom:425.661000px;}
.yc6{bottom:432.615000px;}
.y171{bottom:433.380000px;}
.ya{bottom:433.730250px;}
.y5d{bottom:437.380500px;}
.y14a{bottom:438.790500px;}
.y10a{bottom:438.885000px;}
.ye5{bottom:439.635000px;}
.y3d{bottom:439.893000px;}
.ya7{bottom:440.755500px;}
.y83{bottom:446.385000px;}
.y9{bottom:448.724250px;}
.yc5{bottom:449.865000px;}
.y170{bottom:450.630000px;}
.y5c{bottom:453.135000px;}
.ye4{bottom:453.879000px;}
.y3c{bottom:454.149000px;}
.y149{bottom:454.545000px;}
.y109{bottom:456.135000px;}
.ya6{bottom:456.510000px;}
.y82{bottom:463.635000px;}
.y16f{bottom:467.880000px;}
.ye3{bottom:468.135000px;}
.y3b{bottom:468.411000px;}
.y148{bottom:470.295000px;}
.y108{bottom:473.385000px;}
.y8{bottom:478.725000px;}
.y81{bottom:480.885000px;}
.yc4{bottom:481.990500px;}
.ye2{bottom:482.391000px;}
.y3a{bottom:482.655000px;}
.y5b{bottom:486.135000px;}
.ya5{bottom:489.510000px;}
.y107{bottom:490.635000px;}
.ye1{bottom:496.635000px;}
.yc3{bottom:497.745000px;}
.y16e{bottom:501.673500px;}
.y147{bottom:502.635000px;}
.y120{bottom:503.385000px;}
.y106{bottom:507.885000px;}
.y194{bottom:510.126000px;}
.ye0{bottom:510.879000px;}
.y5a{bottom:512.010000px;}
.y7{bottom:514.731000px;}
.y80{bottom:515.385000px;}
.y16d{bottom:517.428000px;}
.y146{bottom:519.885000px;}
.y39{bottom:520.635000px;}
.ya4{bottom:524.001000px;}
.y105{bottom:525.135000px;}
.ydf{bottom:525.141000px;}
.y193{bottom:525.880500px;}
.yc2{bottom:528.375000px;}
.y6{bottom:529.749000px;}
.y16c{bottom:533.182500px;}
.y145{bottom:537.135000px;}
.y38{bottom:537.885000px;}
.yde{bottom:539.385000px;}
.ya3{bottom:539.755500px;}
.y192{bottom:541.617000px;}
.y104{bottom:542.385000px;}
.y5{bottom:544.743000px;}
.yc1{bottom:545.625000px;}
.y7f{bottom:548.385000px;}
.y16b{bottom:548.937000px;}
.ydd{bottom:553.641000px;}
.y37{bottom:555.135000px;}
.ya2{bottom:555.510000px;}
.y191{bottom:557.371500px;}
.y103{bottom:559.635000px;}
.y4{bottom:559.737000px;}
.yc0{bottom:562.875000px;}
.ydc{bottom:567.897000px;}
.y144{bottom:571.612500px;}
.y36{bottom:572.385000px;}
.y190{bottom:573.126000px;}
.y3{bottom:574.731000px;}
.y16a{bottom:577.449000px;}
.ybf{bottom:580.125000px;}
.ydb{bottom:582.141000px;}
.y7e{bottom:582.867000px;}
.y143{bottom:587.367000px;}
.ya1{bottom:588.510000px;}
.y18f{bottom:588.880500px;}
.y35{bottom:589.635000px;}
.y2{bottom:589.725000px;}
.y169{bottom:593.203500px;}
.y102{bottom:594.126000px;}
.yda{bottom:596.385000px;}
.ybe{bottom:597.375000px;}
.y7d{bottom:598.621500px;}
.y142{bottom:603.121500px;}
.y18e{bottom:604.630500px;}
.y34{bottom:606.885000px;}
.y101{bottom:609.880500px;}
.y7c{bottom:614.376000px;}
.ybd{bottom:614.625000px;}
.y141{bottom:618.876000px;}
.y1{bottom:619.725000px;}
.y18d{bottom:620.385000px;}
.y168{bottom:621.702000px;}
.ya0{bottom:623.001000px;}
.y33{bottom:624.135000px;}
.y100{bottom:625.635000px;}
.y7b{bottom:630.130500px;}
.y140{bottom:634.630500px;}
.y26{bottom:636.030000px;}
.y167{bottom:637.456500px;}
.y9f{bottom:638.755500px;}
.y32{bottom:641.385000px;}
.y7a{bottom:645.885000px;}
.ybc{bottom:646.750500px;}
.y13f{bottom:650.385000px;}
.y166{bottom:653.211000px;}
.y18c{bottom:653.385000px;}
.y9e{bottom:654.510000px;}
.y31{bottom:658.635000px;}
.ybb{bottom:662.505000px;}
.y165{bottom:668.965500px;}
.y30{bottom:675.885000px;}
.y79{bottom:678.885000px;}
.y13e{bottom:683.385000px;}
.y164{bottom:684.720000px;}
.y25{bottom:685.089000px;}
.y9d{bottom:687.510000px;}
.y18b{bottom:687.871500px;}
.y2f{bottom:693.135000px;}
.y24{bottom:699.345000px;}
.y13d{bottom:700.635000px;}
.y18a{bottom:703.626000px;}
.y9c{bottom:704.760000px;}
.y2e{bottom:710.385000px;}
.y78{bottom:713.385000px;}
.y163{bottom:717.045000px;}
.y23{bottom:717.345000px;}
.y189{bottom:719.380500px;}
.y2d{bottom:727.635000px;}
.y13c{bottom:735.112500px;}
.y9b{bottom:739.255500px;}
.y2c{bottom:744.885000px;}
.y77{bottom:746.385000px;}
.y13b{bottom:750.867000px;}
.y59{bottom:753.510000px;}
.y9a{bottom:755.010000px;}
.y2b{bottom:762.135000px;}
.y22{bottom:762.345000px;}
.y13a{bottom:766.621500px;}
.y2a{bottom:779.385000px;}
.y76{bottom:780.885000px;}
.y139{bottom:782.376000px;}
.y21{bottom:786.345000px;}
.y99{bottom:788.010000px;}
.y29{bottom:796.635000px;}
.y138{bottom:798.130500px;}
.y20{bottom:810.345000px;}
.y28{bottom:813.885000px;}
.y1f{bottom:861.345000px;}
.y27{bottom:924.000000px;}
.h9{height:47.085938px;}
.h5{height:47.109375px;}
.h10{height:47.133375px;}
.ha{height:47.157375px;}
.h6{height:48.375000px;}
.h2{height:50.053711px;}
.h1{height:51.398438px;}
.h8{height:52.998047px;}
.he{height:54.918633px;}
.hd{height:54.936633px;}
.hf{height:54.954633px;}
.h13{height:54.990633px;}
.h12{height:55.008633px;}
.h11{height:55.134633px;}
.hc{height:58.857422px;}
.h3{height:58.886719px;}
.hb{height:60.468750px;}
.h4{height:61.020703px;}
.h7{height:94.218750px;}
.h0{height:892.500000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.x6{left:4.500000px;}
.x1{left:74.700000px;}
.x8{left:75.915000px;}
.xd{left:80.736000px;}
.x2{left:91.950000px;}
.x7{left:93.165000px;}
.x3{left:97.200000px;}
.x9{left:98.412000px;}
.xe{left:111.915000px;}
.xc{left:121.212000px;}
.xa{left:122.451000px;}
.xb{left:124.186500px;}
.xf{left:125.415000px;}
.x10{left:159.750000px;}
.x11{left:160.947000px;}
.x5{left:408.120000px;}
.x4{left:412.380000px;}
@media print{
.v2{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.856000pt;}
.v1{vertical-align:17.600000pt;}
.ls57{letter-spacing:-1.120000pt;}
.ls64{letter-spacing:-0.960000pt;}
.ls6e{letter-spacing:-0.912000pt;}
.ls65{letter-spacing:-0.853333pt;}
.ls28{letter-spacing:-0.800000pt;}
.lse{letter-spacing:-0.746667pt;}
.ls11{letter-spacing:-0.725333pt;}
.ls44{letter-spacing:-0.682667pt;}
.ls49{letter-spacing:-0.672000pt;}
.ls43{letter-spacing:-0.640000pt;}
.ls48{letter-spacing:-0.624000pt;}
.ls67{letter-spacing:-0.608000pt;}
.ls2e{letter-spacing:-0.597333pt;}
.ls46{letter-spacing:-0.586667pt;}
.ls2f{letter-spacing:-0.576000pt;}
.ls24{letter-spacing:-0.533333pt;}
.ls4d{letter-spacing:-0.528000pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls3d{letter-spacing:-0.469333pt;}
.ls3c{letter-spacing:-0.448000pt;}
.ls4e{letter-spacing:-0.436800pt;}
.ls3b{letter-spacing:-0.426667pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls47{letter-spacing:-0.373333pt;}
.ls2c{letter-spacing:-0.341333pt;}
.ls72{letter-spacing:-0.336000pt;}
.ls39{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.317333pt;}
.ls2d{letter-spacing:-0.298667pt;}
.ls4a{letter-spacing:-0.288000pt;}
.ls27{letter-spacing:-0.280000pt;}
.ls26{letter-spacing:-0.266667pt;}
.ls38{letter-spacing:-0.256000pt;}
.ls71{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.226667pt;}
.ls4f{letter-spacing:-0.224000pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls73{letter-spacing:-0.201600pt;}
.ls6f{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.170667pt;}
.ls36{letter-spacing:-0.160000pt;}
.ls56{letter-spacing:-0.144000pt;}
.ls32{letter-spacing:-0.128000pt;}
.ls58{letter-spacing:-0.112000pt;}
.ls29{letter-spacing:-0.106667pt;}
.ls70{letter-spacing:-0.100800pt;}
.ls4c{letter-spacing:-0.096000pt;}
.ls31{letter-spacing:-0.085333pt;}
.ls66{letter-spacing:-0.074667pt;}
.ls5a{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls4b{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:-0.045333pt;}
.ls30{letter-spacing:-0.042667pt;}
.ls41{letter-spacing:-0.037333pt;}
.ls37{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.021333pt;}
.ls5b{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.042667pt;}
.ls55{letter-spacing:0.048000pt;}
.ls15{letter-spacing:0.053333pt;}
.ls22{letter-spacing:0.064000pt;}
.ls63{letter-spacing:0.074667pt;}
.ls21{letter-spacing:0.085333pt;}
.ls1{letter-spacing:0.090667pt;}
.ls51{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.106667pt;}
.ls20{letter-spacing:0.128000pt;}
.ls54{letter-spacing:0.144000pt;}
.ls50{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.170667pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.224000pt;}
.ls6c{letter-spacing:0.240000pt;}
.ls34{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.272000pt;}
.ls53{letter-spacing:0.288000pt;}
.ls1e{letter-spacing:0.298667pt;}
.ls14{letter-spacing:0.320000pt;}
.ls52{letter-spacing:0.336000pt;}
.ls3a{letter-spacing:0.341333pt;}
.lsa{letter-spacing:0.362667pt;}
.ls19{letter-spacing:0.373333pt;}
.ls35{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.426667pt;}
.ls45{letter-spacing:0.432000pt;}
.ls61{letter-spacing:0.448000pt;}
.ls6a{letter-spacing:0.469333pt;}
.ls3e{letter-spacing:0.480000pt;}
.ls5d{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls5e{letter-spacing:0.544000pt;}
.ls69{letter-spacing:0.554667pt;}
.ls5c{letter-spacing:0.560000pt;}
.ls17{letter-spacing:0.586667pt;}
.ls42{letter-spacing:0.634667pt;}
.ls6d{letter-spacing:0.672000pt;}
.ls8{letter-spacing:0.682667pt;}
.ls40{letter-spacing:0.746667pt;}
.ls59{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls23{letter-spacing:0.810667pt;}
.ls5f{letter-spacing:0.853333pt;}
.ls60{letter-spacing:0.864000pt;}
.ls6b{letter-spacing:0.896000pt;}
.ls3f{letter-spacing:0.906667pt;}
.ls1b{letter-spacing:1.066667pt;}
.ls62{letter-spacing:1.152000pt;}
.ls68{letter-spacing:1.333333pt;}
.ls3{letter-spacing:12.600000pt;}
.ls2{letter-spacing:12.746667pt;}
.ls13{letter-spacing:13.706667pt;}
.ls18{letter-spacing:14.720000pt;}
.ls5{letter-spacing:14.986667pt;}
.ws64{word-spacing:-14.240000pt;}
.ws66{word-spacing:-14.080000pt;}
.ws1d{word-spacing:-13.866667pt;}
.wsb0{word-spacing:-13.813333pt;}
.ws1f{word-spacing:-13.653333pt;}
.wsc8{word-spacing:-13.600000pt;}
.ws89{word-spacing:-13.546667pt;}
.ws8c{word-spacing:-13.493333pt;}
.ws1c{word-spacing:-13.440000pt;}
.wsae{word-spacing:-13.386667pt;}
.ws1a{word-spacing:-13.333333pt;}
.ws1e{word-spacing:-13.280000pt;}
.ws88{word-spacing:-13.226667pt;}
.ws8a{word-spacing:-13.173333pt;}
.ws7a{word-spacing:-13.013333pt;}
.wsa2{word-spacing:-12.746667pt;}
.wsb3{word-spacing:-12.480000pt;}
.ws71{word-spacing:-12.432000pt;}
.wsb1{word-spacing:-12.373333pt;}
.ws8d{word-spacing:-12.288000pt;}
.ws8b{word-spacing:-12.048000pt;}
.ws79{word-spacing:-12.000000pt;}
.ws74{word-spacing:-11.952000pt;}
.ws73{word-spacing:-11.904000pt;}
.ws8e{word-spacing:-11.856000pt;}
.wsa9{word-spacing:-11.818667pt;}
.wsc6{word-spacing:-11.808000pt;}
.wscb{word-spacing:-11.760000pt;}
.ws23{word-spacing:-11.733333pt;}
.ws72{word-spacing:-11.712000pt;}
.wsc9{word-spacing:-11.664000pt;}
.ws76{word-spacing:-11.520000pt;}
.ws9a{word-spacing:-11.477333pt;}
.ws75{word-spacing:-11.472000pt;}
.ws99{word-spacing:-11.434667pt;}
.ws78{word-spacing:-11.376000pt;}
.ws70{word-spacing:-11.328000pt;}
.wsbd{word-spacing:-11.178667pt;}
.wsc1{word-spacing:-11.093333pt;}
.wsc5{word-spacing:-11.088000pt;}
.wsb5{word-spacing:-11.050667pt;}
.ws55{word-spacing:-11.008000pt;}
.wsa7{word-spacing:-10.965333pt;}
.ws53{word-spacing:-10.922667pt;}
.wsbf{word-spacing:-10.880000pt;}
.ws26{word-spacing:-10.794667pt;}
.ws28{word-spacing:-10.752000pt;}
.ws3{word-spacing:-10.709333pt;}
.ws21{word-spacing:-10.666667pt;}
.ws2d{word-spacing:-10.624000pt;}
.ws2c{word-spacing:-10.581333pt;}
.ws7d{word-spacing:-10.496000pt;}
.ws52{word-spacing:-10.410667pt;}
.ws4f{word-spacing:-10.368000pt;}
.ws4e{word-spacing:-10.325333pt;}
.wsb8{word-spacing:-10.282667pt;}
.ws57{word-spacing:-10.240000pt;}
.wsba{word-spacing:-10.229333pt;}
.ws59{word-spacing:-10.197333pt;}
.ws68{word-spacing:-10.026667pt;}
.ws1{word-spacing:-10.000000pt;}
.ws6a{word-spacing:-9.984000pt;}
.ws65{word-spacing:-9.968000pt;}
.wsc0{word-spacing:-9.941333pt;}
.ws1b{word-spacing:-9.720000pt;}
.ws97{word-spacing:-9.632000pt;}
.ws2{word-spacing:-9.333333pt;}
.ws63{word-spacing:-9.296000pt;}
.wsb4{word-spacing:-9.258667pt;}
.ws95{word-spacing:-9.221333pt;}
.ws96{word-spacing:-9.109333pt;}
.ws6f{word-spacing:-8.960000pt;}
.wsa8{word-spacing:-8.864000pt;}
.ws98{word-spacing:-8.800000pt;}
.wsbb{word-spacing:-8.661333pt;}
.wsa6{word-spacing:-8.544000pt;}
.ws49{word-spacing:-8.400000pt;}
.wsc7{word-spacing:-8.299200pt;}
.ws56{word-spacing:-8.256000pt;}
.ws25{word-spacing:-8.224000pt;}
.wsca{word-spacing:-8.198400pt;}
.ws29{word-spacing:-8.064000pt;}
.ws9c{word-spacing:-8.032000pt;}
.ws4d{word-spacing:-8.000000pt;}
.ws4c{word-spacing:-7.968000pt;}
.ws77{word-spacing:-7.963200pt;}
.ws9b{word-spacing:-7.936000pt;}
.ws7f{word-spacing:-7.776000pt;}
.ws50{word-spacing:-7.744000pt;}
.ws51{word-spacing:-7.680000pt;}
.ws58{word-spacing:-7.552000pt;}
.ws67{word-spacing:-7.520000pt;}
.ws2a{word-spacing:-7.424000pt;}
.wsb7{word-spacing:-7.392000pt;}
.ws69{word-spacing:-7.360000pt;}
.ws19{word-spacing:-7.125333pt;}
.wsbe{word-spacing:-1.024000pt;}
.ws24{word-spacing:-0.853333pt;}
.ws85{word-spacing:-0.640000pt;}
.wsf{word-spacing:-0.586667pt;}
.ws2b{word-spacing:-0.554667pt;}
.ws8{word-spacing:-0.544000pt;}
.ws36{word-spacing:-0.533333pt;}
.ws92{word-spacing:-0.528000pt;}
.ws45{word-spacing:-0.512000pt;}
.wsa{word-spacing:-0.498667pt;}
.ws5b{word-spacing:-0.480000pt;}
.ws40{word-spacing:-0.469333pt;}
.ws12{word-spacing:-0.440000pt;}
.wscf{word-spacing:-0.432000pt;}
.ws13{word-spacing:-0.426667pt;}
.ws10{word-spacing:-0.410667pt;}
.ws3a{word-spacing:-0.384000pt;}
.ws84{word-spacing:-0.373333pt;}
.ws87{word-spacing:-0.341333pt;}
.wsd0{word-spacing:-0.336000pt;}
.wsa0{word-spacing:-0.320000pt;}
.wsd{word-spacing:-0.317333pt;}
.ws5d{word-spacing:-0.298667pt;}
.ws82{word-spacing:-0.288000pt;}
.ws9e{word-spacing:-0.266667pt;}
.ws60{word-spacing:-0.256000pt;}
.wsd2{word-spacing:-0.240000pt;}
.ws9{word-spacing:-0.226667pt;}
.ws42{word-spacing:-0.213333pt;}
.wsd3{word-spacing:-0.192000pt;}
.ws3b{word-spacing:-0.170667pt;}
.ws31{word-spacing:-0.160000pt;}
.ws61{word-spacing:-0.128000pt;}
.ws80{word-spacing:-0.106667pt;}
.wsaa{word-spacing:-0.053333pt;}
.wscc{word-spacing:-0.048000pt;}
.ws7c{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.042667pt;}
.ws81{word-spacing:0.048000pt;}
.ws11{word-spacing:0.053333pt;}
.ws6e{word-spacing:0.085333pt;}
.wse{word-spacing:0.106667pt;}
.wsc2{word-spacing:0.128000pt;}
.wsb{word-spacing:0.136000pt;}
.ws33{word-spacing:0.160000pt;}
.wsc3{word-spacing:0.170667pt;}
.ws62{word-spacing:0.213333pt;}
.ws44{word-spacing:0.256000pt;}
.ws30{word-spacing:0.261333pt;}
.ws5c{word-spacing:0.266667pt;}
.ws47{word-spacing:0.298667pt;}
.ws6c{word-spacing:0.320000pt;}
.wsce{word-spacing:0.336000pt;}
.ws48{word-spacing:0.341333pt;}
.ws2f{word-spacing:0.373333pt;}
.ws18{word-spacing:0.384000pt;}
.ws6b{word-spacing:0.426667pt;}
.ws9f{word-spacing:0.480000pt;}
.wsad{word-spacing:0.512000pt;}
.ws16{word-spacing:0.533333pt;}
.wsac{word-spacing:0.554667pt;}
.ws15{word-spacing:0.560000pt;}
.wscd{word-spacing:0.576000pt;}
.ws6d{word-spacing:0.586667pt;}
.wsc4{word-spacing:0.597333pt;}
.ws86{word-spacing:0.640000pt;}
.ws39{word-spacing:0.672000pt;}
.ws5f{word-spacing:0.682667pt;}
.ws93{word-spacing:0.720000pt;}
.wsb6{word-spacing:0.725333pt;}
.ws35{word-spacing:0.746667pt;}
.ws3e{word-spacing:0.768000pt;}
.ws6{word-spacing:0.770667pt;}
.ws14{word-spacing:0.800000pt;}
.ws5e{word-spacing:0.810667pt;}
.ws3d{word-spacing:0.853333pt;}
.ws37{word-spacing:0.858667pt;}
.ws7{word-spacing:0.861333pt;}
.ws91{word-spacing:0.864000pt;}
.ws3f{word-spacing:0.896000pt;}
.ws2e{word-spacing:0.906667pt;}
.wsd1{word-spacing:0.912000pt;}
.ws43{word-spacing:0.938667pt;}
.ws38{word-spacing:0.960000pt;}
.ws41{word-spacing:0.981333pt;}
.ws94{word-spacing:1.008000pt;}
.ws32{word-spacing:1.013333pt;}
.ws17{word-spacing:1.024000pt;}
.wsc{word-spacing:1.042667pt;}
.ws83{word-spacing:1.056000pt;}
.ws46{word-spacing:1.066667pt;}
.ws5a{word-spacing:1.120000pt;}
.wsd4{word-spacing:1.152000pt;}
.ws8f{word-spacing:1.173333pt;}
.ws34{word-spacing:1.226667pt;}
.wsab{word-spacing:1.280000pt;}
.ws90{word-spacing:1.333333pt;}
.ws7e{word-spacing:2.368000pt;}
.ws22{word-spacing:2.506667pt;}
.ws0{word-spacing:2.746667pt;}
.wsa4{word-spacing:3.312000pt;}
.ws7b{word-spacing:3.552000pt;}
.ws54{word-spacing:3.605333pt;}
.wsa5{word-spacing:3.680000pt;}
.ws4b{word-spacing:3.722667pt;}
.ws27{word-spacing:3.765333pt;}
.wsb2{word-spacing:3.829333pt;}
.wsbc{word-spacing:4.042667pt;}
.wsa1{word-spacing:4.533333pt;}
.wsa3{word-spacing:4.789333pt;}
.wsaf{word-spacing:5.216000pt;}
.ws4a{word-spacing:16.000000pt;}
.ws9d{word-spacing:18.560000pt;}
.ws20{word-spacing:32.000000pt;}
.ws4{word-spacing:37.333333pt;}
.wsb9{word-spacing:90.384000pt;}
._b{margin-left:-6.880000pt;}
._3{margin-left:-5.920000pt;}
._6{margin-left:-4.906667pt;}
._2{margin-left:-3.853333pt;}
._1{margin-left:-2.856000pt;}
._0{margin-left:-1.133333pt;}
._7{width:1.042667pt;}
._e{width:2.573333pt;}
._d{width:5.333333pt;}
._a{width:26.666667pt;}
._5{width:42.757333pt;}
._4{width:47.957333pt;}
._c{width:102.384000pt;}
._9{width:137.922667pt;}
._8{width:821.594667pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:33.600000pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y11f{bottom:48.813333pt;}
.yff{bottom:48.834667pt;}
.y75{bottom:48.944000pt;}
.y58{bottom:49.037333pt;}
.y199{bottom:49.170667pt;}
.y188{bottom:49.197333pt;}
.y162{bottom:49.224000pt;}
.y1e{bottom:49.258667pt;}
.y98{bottom:49.266667pt;}
.yd9{bottom:49.445333pt;}
.yba{bottom:49.538667pt;}
.y137{bottom:49.728000pt;}
.y11e{bottom:61.474667pt;}
.yfe{bottom:61.496000pt;}
.y74{bottom:61.605333pt;}
.y57{bottom:61.709333pt;}
.y198{bottom:61.832000pt;}
.y187{bottom:61.869333pt;}
.y161{bottom:61.885333pt;}
.y1d{bottom:61.930667pt;}
.y97{bottom:61.938667pt;}
.yd8{bottom:62.106667pt;}
.yb9{bottom:62.205333pt;}
.y136{bottom:62.416000pt;}
.yfd{bottom:74.157333pt;}
.y73{bottom:74.266667pt;}
.y56{bottom:74.370667pt;}
.y197{bottom:74.493333pt;}
.y186{bottom:74.530667pt;}
.y160{bottom:74.557333pt;}
.y1c{bottom:74.592000pt;}
.y96{bottom:74.610667pt;}
.yb8{bottom:74.877333pt;}
.y135{bottom:75.088000pt;}
.yfc{bottom:86.818667pt;}
.y72{bottom:86.938667pt;}
.y55{bottom:87.032000pt;}
.y196{bottom:87.165333pt;}
.y185{bottom:87.192000pt;}
.y15f{bottom:87.218667pt;}
.y1b{bottom:87.253333pt;}
.y95{bottom:87.272000pt;}
.yb7{bottom:87.549333pt;}
.y134{bottom:87.749333pt;}
.yd7{bottom:97.504000pt;}
.y11d{bottom:99.480000pt;}
.yfb{bottom:99.490667pt;}
.y71{bottom:99.621333pt;}
.y54{bottom:99.704000pt;}
.y195{bottom:99.826667pt;}
.y184{bottom:99.864000pt;}
.y15e{bottom:99.880000pt;}
.y1a{bottom:99.925333pt;}
.y94{bottom:99.944000pt;}
.yb6{bottom:100.210667pt;}
.y133{bottom:100.410667pt;}
.yd6{bottom:111.508000pt;}
.yfa{bottom:112.152000pt;}
.y70{bottom:112.282667pt;}
.y53{bottom:112.365333pt;}
.y183{bottom:112.525333pt;}
.y15d{bottom:112.552000pt;}
.y19{bottom:112.586667pt;}
.y93{bottom:112.605333pt;}
.yb5{bottom:112.872000pt;}
.y132{bottom:113.082667pt;}
.yf9{bottom:124.813333pt;}
.y11c{bottom:124.845333pt;}
.y6f{bottom:124.954667pt;}
.y52{bottom:125.026667pt;}
.y182{bottom:125.186667pt;}
.y15c{bottom:125.213333pt;}
.y92{bottom:125.266667pt;}
.yd5{bottom:125.512000pt;}
.yb4{bottom:125.544000pt;}
.y131{bottom:125.744000pt;}
.yf8{bottom:137.485333pt;}
.y11b{bottom:137.506667pt;}
.y6e{bottom:137.616000pt;}
.y51{bottom:137.698667pt;}
.y181{bottom:137.858667pt;}
.y15b{bottom:137.874667pt;}
.y91{bottom:137.938667pt;}
.yb3{bottom:138.205333pt;}
.y130{bottom:138.405333pt;}
.yd4{bottom:139.516000pt;}
.y18{bottom:146.200000pt;}
.yf7{bottom:150.146667pt;}
.y11a{bottom:150.178667pt;}
.y6d{bottom:150.277333pt;}
.y50{bottom:150.360000pt;}
.y180{bottom:150.520000pt;}
.y15a{bottom:150.546667pt;}
.y90{bottom:150.600000pt;}
.yb2{bottom:150.866667pt;}
.y12f{bottom:151.077333pt;}
.yd3{bottom:153.520000pt;}
.y17{bottom:161.533333pt;}
.yf6{bottom:162.808000pt;}
.y119{bottom:162.840000pt;}
.y6c{bottom:162.949333pt;}
.y4f{bottom:163.021333pt;}
.y17f{bottom:163.181333pt;}
.y159{bottom:163.208000pt;}
.yb1{bottom:163.528000pt;}
.y12e{bottom:163.738667pt;}
.yf5{bottom:175.469333pt;}
.y118{bottom:175.501333pt;}
.y6b{bottom:175.610667pt;}
.y4e{bottom:175.682667pt;}
.y17e{bottom:175.853333pt;}
.y158{bottom:175.880000pt;}
.yb0{bottom:176.200000pt;}
.y12d{bottom:176.400000pt;}
.y16{bottom:176.866667pt;}
.yd2{bottom:180.746667pt;}
.y8f{bottom:184.786667pt;}
.yf4{bottom:188.130667pt;}
.y117{bottom:188.162667pt;}
.y6a{bottom:188.272000pt;}
.y4d{bottom:188.354667pt;}
.y17d{bottom:188.525333pt;}
.y157{bottom:188.541333pt;}
.y12c{bottom:189.072000pt;}
.y15{bottom:192.200000pt;}
.yd1{bottom:196.080000pt;}
.y8e{bottom:200.120000pt;}
.yf3{bottom:200.802667pt;}
.y116{bottom:200.824000pt;}
.y69{bottom:200.933333pt;}
.y4c{bottom:201.026667pt;}
.y17c{bottom:201.186667pt;}
.y156{bottom:201.213333pt;}
.y12b{bottom:201.733333pt;}
.y14{bottom:207.533333pt;}
.yaf{bottom:210.453333pt;}
.yd0{bottom:211.413333pt;}
.yf2{bottom:213.464000pt;}
.y115{bottom:213.496000pt;}
.y68{bottom:213.605333pt;}
.y4b{bottom:213.688000pt;}
.y17b{bottom:213.848000pt;}
.y8d{bottom:215.453333pt;}
.y13{bottom:222.866667pt;}
.yae{bottom:225.786667pt;}
.yf1{bottom:226.125333pt;}
.y114{bottom:226.157333pt;}
.y67{bottom:226.266667pt;}
.y4a{bottom:226.360000pt;}
.y17a{bottom:226.520000pt;}
.y8c{bottom:230.786667pt;}
.y155{bottom:235.992000pt;}
.y12{bottom:238.200000pt;}
.yf0{bottom:238.797333pt;}
.y113{bottom:238.818667pt;}
.y66{bottom:238.928000pt;}
.y49{bottom:239.032000pt;}
.ycf{bottom:239.957333pt;}
.yad{bottom:241.120000pt;}
.y8b{bottom:246.120000pt;}
.y12a{bottom:248.742667pt;}
.y154{bottom:249.996000pt;}
.yef{bottom:251.458667pt;}
.y112{bottom:251.490667pt;}
.y65{bottom:251.605333pt;}
.y48{bottom:251.693333pt;}
.y11{bottom:253.533333pt;}
.yce{bottom:253.961333pt;}
.y8a{bottom:261.453333pt;}
.y179{bottom:262.560000pt;}
.y129{bottom:262.746667pt;}
.y153{bottom:264.000000pt;}
.yac{bottom:264.120000pt;}
.y111{bottom:264.152000pt;}
.y64{bottom:264.277333pt;}
.y47{bottom:264.365333pt;}
.ycd{bottom:267.965333pt;}
.y10{bottom:268.866667pt;}
.y128{bottom:276.750667pt;}
.y89{bottom:276.786667pt;}
.yee{bottom:276.792000pt;}
.y110{bottom:276.808000pt;}
.y63{bottom:276.938667pt;}
.y46{bottom:277.037333pt;}
.y178{bottom:277.893333pt;}
.y152{bottom:278.004000pt;}
.ycc{bottom:281.969333pt;}
.yf{bottom:284.200000pt;}
.yed{bottom:289.453333pt;}
.y10f{bottom:289.480000pt;}
.y62{bottom:289.610667pt;}
.y45{bottom:289.698667pt;}
.y127{bottom:290.754667pt;}
.y151{bottom:292.008000pt;}
.y88{bottom:292.120000pt;}
.y177{bottom:293.226667pt;}
.ycb{bottom:295.973333pt;}
.ye{bottom:299.533333pt;}
.yec{bottom:302.114667pt;}
.y61{bottom:302.272000pt;}
.y44{bottom:302.370667pt;}
.yab{bottom:302.449333pt;}
.y126{bottom:304.758667pt;}
.y150{bottom:306.012000pt;}
.y87{bottom:307.453333pt;}
.y176{bottom:308.560000pt;}
.yeb{bottom:314.786667pt;}
.y60{bottom:314.933333pt;}
.y43{bottom:315.032000pt;}
.yaa{bottom:316.453333pt;}
.y125{bottom:318.762667pt;}
.y14f{bottom:320.016000pt;}
.y86{bottom:322.786667pt;}
.yca{bottom:323.213333pt;}
.y175{bottom:323.893333pt;}
.yea{bottom:327.448000pt;}
.y5f{bottom:327.605333pt;}
.y42{bottom:327.698667pt;}
.y10e{bottom:328.786667pt;}
.y124{bottom:332.766667pt;}
.y14e{bottom:334.020000pt;}
.yc9{bottom:338.546667pt;}
.y174{bottom:339.226667pt;}
.ye9{bottom:340.109333pt;}
.y5e{bottom:340.266667pt;}
.y41{bottom:340.370667pt;}
.y10d{bottom:344.120000pt;}
.yd{bottom:345.533333pt;}
.ya9{bottom:345.786667pt;}
.y123{bottom:346.770667pt;}
.y14d{bottom:348.024000pt;}
.ye8{bottom:352.781333pt;}
.y40{bottom:353.032000pt;}
.y85{bottom:353.449333pt;}
.yc8{bottom:353.880000pt;}
.y173{bottom:354.560000pt;}
.yc{bottom:358.882000pt;}
.y10c{bottom:359.453333pt;}
.y122{bottom:360.774667pt;}
.ya8{bottom:361.120000pt;}
.y14c{bottom:362.028000pt;}
.ye7{bottom:365.442667pt;}
.y3f{bottom:365.693333pt;}
.y84{bottom:367.453333pt;}
.yc7{bottom:369.213333pt;}
.y172{bottom:369.893333pt;}
.yb{bottom:372.210000pt;}
.y121{bottom:374.778667pt;}
.y10b{bottom:374.786667pt;}
.y14b{bottom:376.032000pt;}
.ye6{bottom:378.114667pt;}
.y3e{bottom:378.365333pt;}
.yc6{bottom:384.546667pt;}
.y171{bottom:385.226667pt;}
.ya{bottom:385.538000pt;}
.y5d{bottom:388.782667pt;}
.y14a{bottom:390.036000pt;}
.y10a{bottom:390.120000pt;}
.ye5{bottom:390.786667pt;}
.y3d{bottom:391.016000pt;}
.ya7{bottom:391.782667pt;}
.y83{bottom:396.786667pt;}
.y9{bottom:398.866000pt;}
.yc5{bottom:399.880000pt;}
.y170{bottom:400.560000pt;}
.y5c{bottom:402.786667pt;}
.ye4{bottom:403.448000pt;}
.y3c{bottom:403.688000pt;}
.y149{bottom:404.040000pt;}
.y109{bottom:405.453333pt;}
.ya6{bottom:405.786667pt;}
.y82{bottom:412.120000pt;}
.y16f{bottom:415.893333pt;}
.ye3{bottom:416.120000pt;}
.y3b{bottom:416.365333pt;}
.y148{bottom:418.040000pt;}
.y108{bottom:420.786667pt;}
.y8{bottom:425.533333pt;}
.y81{bottom:427.453333pt;}
.yc4{bottom:428.436000pt;}
.ye2{bottom:428.792000pt;}
.y3a{bottom:429.026667pt;}
.y5b{bottom:432.120000pt;}
.ya5{bottom:435.120000pt;}
.y107{bottom:436.120000pt;}
.ye1{bottom:441.453333pt;}
.yc3{bottom:442.440000pt;}
.y16e{bottom:445.932000pt;}
.y147{bottom:446.786667pt;}
.y120{bottom:447.453333pt;}
.y106{bottom:451.453333pt;}
.y194{bottom:453.445333pt;}
.ye0{bottom:454.114667pt;}
.y5a{bottom:455.120000pt;}
.y7{bottom:457.538667pt;}
.y80{bottom:458.120000pt;}
.y16d{bottom:459.936000pt;}
.y146{bottom:462.120000pt;}
.y39{bottom:462.786667pt;}
.ya4{bottom:465.778667pt;}
.y105{bottom:466.786667pt;}
.ydf{bottom:466.792000pt;}
.y193{bottom:467.449333pt;}
.yc2{bottom:469.666667pt;}
.y6{bottom:470.888000pt;}
.y16c{bottom:473.940000pt;}
.y145{bottom:477.453333pt;}
.y38{bottom:478.120000pt;}
.yde{bottom:479.453333pt;}
.ya3{bottom:479.782667pt;}
.y192{bottom:481.437333pt;}
.y104{bottom:482.120000pt;}
.y5{bottom:484.216000pt;}
.yc1{bottom:485.000000pt;}
.y7f{bottom:487.453333pt;}
.y16b{bottom:487.944000pt;}
.ydd{bottom:492.125333pt;}
.y37{bottom:493.453333pt;}
.ya2{bottom:493.786667pt;}
.y191{bottom:495.441333pt;}
.y103{bottom:497.453333pt;}
.y4{bottom:497.544000pt;}
.yc0{bottom:500.333333pt;}
.ydc{bottom:504.797333pt;}
.y144{bottom:508.100000pt;}
.y36{bottom:508.786667pt;}
.y190{bottom:509.445333pt;}
.y3{bottom:510.872000pt;}
.y16a{bottom:513.288000pt;}
.ybf{bottom:515.666667pt;}
.ydb{bottom:517.458667pt;}
.y7e{bottom:518.104000pt;}
.y143{bottom:522.104000pt;}
.ya1{bottom:523.120000pt;}
.y18f{bottom:523.449333pt;}
.y35{bottom:524.120000pt;}
.y2{bottom:524.200000pt;}
.y169{bottom:527.292000pt;}
.y102{bottom:528.112000pt;}
.yda{bottom:530.120000pt;}
.ybe{bottom:531.000000pt;}
.y7d{bottom:532.108000pt;}
.y142{bottom:536.108000pt;}
.y18e{bottom:537.449333pt;}
.y34{bottom:539.453333pt;}
.y101{bottom:542.116000pt;}
.y7c{bottom:546.112000pt;}
.ybd{bottom:546.333333pt;}
.y141{bottom:550.112000pt;}
.y1{bottom:550.866667pt;}
.y18d{bottom:551.453333pt;}
.y168{bottom:552.624000pt;}
.ya0{bottom:553.778667pt;}
.y33{bottom:554.786667pt;}
.y100{bottom:556.120000pt;}
.y7b{bottom:560.116000pt;}
.y140{bottom:564.116000pt;}
.y26{bottom:565.360000pt;}
.y167{bottom:566.628000pt;}
.y9f{bottom:567.782667pt;}
.y32{bottom:570.120000pt;}
.y7a{bottom:574.120000pt;}
.ybc{bottom:574.889333pt;}
.y13f{bottom:578.120000pt;}
.y166{bottom:580.632000pt;}
.y18c{bottom:580.786667pt;}
.y9e{bottom:581.786667pt;}
.y31{bottom:585.453333pt;}
.ybb{bottom:588.893333pt;}
.y165{bottom:594.636000pt;}
.y30{bottom:600.786667pt;}
.y79{bottom:603.453333pt;}
.y13e{bottom:607.453333pt;}
.y164{bottom:608.640000pt;}
.y25{bottom:608.968000pt;}
.y9d{bottom:611.120000pt;}
.y18b{bottom:611.441333pt;}
.y2f{bottom:616.120000pt;}
.y24{bottom:621.640000pt;}
.y13d{bottom:622.786667pt;}
.y18a{bottom:625.445333pt;}
.y9c{bottom:626.453333pt;}
.y2e{bottom:631.453333pt;}
.y78{bottom:634.120000pt;}
.y163{bottom:637.373333pt;}
.y23{bottom:637.640000pt;}
.y189{bottom:639.449333pt;}
.y2d{bottom:646.786667pt;}
.y13c{bottom:653.433333pt;}
.y9b{bottom:657.116000pt;}
.y2c{bottom:662.120000pt;}
.y77{bottom:663.453333pt;}
.y13b{bottom:667.437333pt;}
.y59{bottom:669.786667pt;}
.y9a{bottom:671.120000pt;}
.y2b{bottom:677.453333pt;}
.y22{bottom:677.640000pt;}
.y13a{bottom:681.441333pt;}
.y2a{bottom:692.786667pt;}
.y76{bottom:694.120000pt;}
.y139{bottom:695.445333pt;}
.y21{bottom:698.973333pt;}
.y99{bottom:700.453333pt;}
.y29{bottom:708.120000pt;}
.y138{bottom:709.449333pt;}
.y20{bottom:720.306667pt;}
.y28{bottom:723.453333pt;}
.y1f{bottom:765.640000pt;}
.y27{bottom:821.333333pt;}
.h9{height:41.854167pt;}
.h5{height:41.875000pt;}
.h10{height:41.896333pt;}
.ha{height:41.917667pt;}
.h6{height:43.000000pt;}
.h2{height:44.492188pt;}
.h1{height:45.687500pt;}
.h8{height:47.109375pt;}
.he{height:48.816562pt;}
.hd{height:48.832563pt;}
.hf{height:48.848563pt;}
.h13{height:48.880562pt;}
.h12{height:48.896562pt;}
.h11{height:49.008563pt;}
.hc{height:52.317708pt;}
.h3{height:52.343750pt;}
.hb{height:53.750000pt;}
.h4{height:54.240625pt;}
.h7{height:83.750000pt;}
.h0{height:793.333333pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.x6{left:4.000000pt;}
.x1{left:66.400000pt;}
.x8{left:67.480000pt;}
.xd{left:71.765333pt;}
.x2{left:81.733333pt;}
.x7{left:82.813333pt;}
.x3{left:86.400000pt;}
.x9{left:87.477333pt;}
.xe{left:99.480000pt;}
.xc{left:107.744000pt;}
.xa{left:108.845333pt;}
.xb{left:110.388000pt;}
.xf{left:111.480000pt;}
.x10{left:142.000000pt;}
.x11{left:143.064000pt;}
.x5{left:362.773333pt;}
.x4{left:366.560000pt;}
}




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