
    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_74c39cbb79bbaf83a5ad3ad9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1bb19efdddb775f213c06604.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_f0f60066fb8b550ed5cc863b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_78097966395962399c45b985.woff')format("woff");}.ff4{font-family:ff4;line-height:0.952000;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_1421af38e72aced09c37dc5e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.115000;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_433308f9c87dbb2b483a61d4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.115000;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_17405291a4768da2003aa2d5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005000;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_ce44ac4ef8272af80bb16274.woff')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_805ff169a0b6f94f2d02e945.woff')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_54d5c0f175f61932cd47e323.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls29{letter-spacing:-4.824000px;}
.ls33{letter-spacing:-3.600000px;}
.ls18{letter-spacing:-2.448000px;}
.ls30{letter-spacing:-1.440000px;}
.ls40{letter-spacing:-1.296000px;}
.ls20{letter-spacing:-1.224000px;}
.ls5b{letter-spacing:-1.200000px;}
.ls3d{letter-spacing:-1.188000px;}
.ls31{letter-spacing:-0.936000px;}
.ls4d{letter-spacing:-0.792000px;}
.ls3a{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.594000px;}
.ls13{letter-spacing:-0.576000px;}
.ls58{letter-spacing:-0.540000px;}
.ls66{letter-spacing:-0.528000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.480000px;}
.ls14{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.360000px;}
.ls46{letter-spacing:-0.330000px;}
.ls36{letter-spacing:-0.324000px;}
.ls10{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.270000px;}
.ls49{letter-spacing:-0.264000px;}
.ls38{letter-spacing:-0.240000px;}
.ls25{letter-spacing:-0.216000px;}
.ls47{letter-spacing:-0.198000px;}
.ls60{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.168000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls65{letter-spacing:-0.132000px;}
.ls63{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.072000px;}
.ls67{letter-spacing:-0.066000px;}
.ls5c{letter-spacing:-0.060000px;}
.ls8{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.054000px;}
.ls5a{letter-spacing:0.060000px;}
.ls48{letter-spacing:0.066000px;}
.ls45{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.084000px;}
.ls7{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.216000px;}
.lse{letter-spacing:0.240000px;}
.ls4a{letter-spacing:0.264000px;}
.ls16{letter-spacing:0.288000px;}
.ls64{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.360000px;}
.ls4e{letter-spacing:0.396000px;}
.ls57{letter-spacing:0.420000px;}
.ls2f{letter-spacing:0.432000px;}
.ls4b{letter-spacing:0.462000px;}
.lsf{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.482400px;}
.ls3{letter-spacing:0.504000px;}
.ls59{letter-spacing:0.540000px;}
.ls24{letter-spacing:0.576000px;}
.ls2e{letter-spacing:0.594000px;}
.ls42{letter-spacing:0.648000px;}
.ls55{letter-spacing:0.780000px;}
.ls32{letter-spacing:0.792000px;}
.ls43{letter-spacing:0.820800px;}
.ls27{letter-spacing:1.152000px;}
.ls5e{letter-spacing:1.194000px;}
.ls56{letter-spacing:1.200000px;}
.ls62{letter-spacing:1.320000px;}
.ls61{letter-spacing:1.980000px;}
.ls6{letter-spacing:2.376000px;}
.ls3b{letter-spacing:3.600000px;}
.ls1f{letter-spacing:4.752000px;}
.ls2b{letter-spacing:4.773600px;}
.ls23{letter-spacing:5.976000px;}
.ls21{letter-spacing:7.200000px;}
.ls19{letter-spacing:8.352000px;}
.ls3f{letter-spacing:8.496000px;}
.ls54{letter-spacing:8.820000px;}
.ls41{letter-spacing:9.576000px;}
.ls51{letter-spacing:10.008000px;}
.ls2a{letter-spacing:10.800000px;}
.ls2c{letter-spacing:11.808000px;}
.ls3c{letter-spacing:11.952000px;}
.ls22{letter-spacing:13.176000px;}
.ls5f{letter-spacing:15.186000px;}
.ls50{letter-spacing:15.408000px;}
.ls4f{letter-spacing:16.776000px;}
.ls52{letter-spacing:18.000000px;}
.ls28{letter-spacing:19.152000px;}
.ls53{letter-spacing:22.920000px;}
.ls1c{letter-spacing:27.576000px;}
.ls4c{letter-spacing:31.614000px;}
.ls44{letter-spacing:46.002000px;}
.ls5d{letter-spacing:46.380000px;}
.ls3e{letter-spacing:64.008000px;}
.ls1b{letter-spacing:193.176000px;}
.ls39{letter-spacing:194.184000px;}
.ls2d{letter-spacing:215.514000px;}
.ls26{letter-spacing:457.980000px;}
.ls1{letter-spacing:846.780000px;}
.ls2{letter-spacing:874.380000px;}
.ls0{letter-spacing:1335.180000px;}
.ls1a{letter-spacing:1773.576000px;}
.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;}
}
.ws84{word-spacing:-31.614000px;}
.ws2d{word-spacing:-19.800000px;}
.ws68{word-spacing:-19.656000px;}
.ws2{word-spacing:-19.584000px;}
.ws2c{word-spacing:-19.512000px;}
.ws45{word-spacing:-19.440000px;}
.ws4a{word-spacing:-19.368000px;}
.ws79{word-spacing:-19.296000px;}
.ws3c{word-spacing:-19.224000px;}
.ws47{word-spacing:-19.152000px;}
.ws43{word-spacing:-19.080000px;}
.ws78{word-spacing:-18.936000px;}
.ws44{word-spacing:-18.792000px;}
.ws69{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.648000px;}
.ws5d{word-spacing:-18.576000px;}
.ws7{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.640000px;}
.wsa7{word-spacing:-17.358000px;}
.wsa4{word-spacing:-17.340000px;}
.wsa6{word-spacing:-17.094000px;}
.ws88{word-spacing:-16.776000px;}
.ws8c{word-spacing:-16.560000px;}
.ws7b{word-spacing:-16.500000px;}
.ws7c{word-spacing:-16.434000px;}
.ws8a{word-spacing:-16.380000px;}
.ws7a{word-spacing:-16.368000px;}
.ws8d{word-spacing:-16.260000px;}
.ws1{word-spacing:-16.140000px;}
.ws8e{word-spacing:-16.080000px;}
.ws8b{word-spacing:-16.020000px;}
.ws90{word-spacing:-15.960000px;}
.wsa5{word-spacing:-15.900000px;}
.ws4{word-spacing:-15.720000px;}
.ws3{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.ws59{word-spacing:-15.120000px;}
.ws8f{word-spacing:-14.820000px;}
.ws5a{word-spacing:-14.760000px;}
.ws89{word-spacing:-14.640000px;}
.ws4e{word-spacing:-14.094000px;}
.ws5e{word-spacing:-13.554000px;}
.ws5f{word-spacing:-13.500000px;}
.ws34{word-spacing:-13.176000px;}
.ws4c{word-spacing:-12.420000px;}
.ws65{word-spacing:-11.952000px;}
.ws4b{word-spacing:-11.934000px;}
.ws48{word-spacing:-10.800000px;}
.ws76{word-spacing:-9.576000px;}
.ws33{word-spacing:-7.200000px;}
.ws39{word-spacing:-5.976000px;}
.ws30{word-spacing:-4.752000px;}
.ws91{word-spacing:-3.888000px;}
.ws25{word-spacing:-3.816000px;}
.ws63{word-spacing:-3.600000px;}
.ws24{word-spacing:-3.168000px;}
.wsaf{word-spacing:-3.060000px;}
.ws49{word-spacing:-3.024000px;}
.wsb1{word-spacing:-2.940000px;}
.ws32{word-spacing:-2.808000px;}
.ws3b{word-spacing:-2.376000px;}
.wsb0{word-spacing:-2.340000px;}
.ws19{word-spacing:-2.016000px;}
.wsab{word-spacing:-1.980000px;}
.ws77{word-spacing:-1.944000px;}
.ws1a{word-spacing:-1.872000px;}
.ws9b{word-spacing:-1.680000px;}
.ws3d{word-spacing:-1.152000px;}
.ws56{word-spacing:-0.918000px;}
.ws6f{word-spacing:-0.792000px;}
.ws10{word-spacing:-0.660000px;}
.ws14{word-spacing:-0.648000px;}
.ws57{word-spacing:-0.594000px;}
.ws3f{word-spacing:-0.576000px;}
.ws9{word-spacing:-0.540000px;}
.ws4f{word-spacing:-0.504000px;}
.ws11{word-spacing:-0.480000px;}
.ws50{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.420000px;}
.ws86{word-spacing:-0.396000px;}
.ws72{word-spacing:-0.378000px;}
.ws28{word-spacing:-0.360000px;}
.ws27{word-spacing:-0.288000px;}
.ws82{word-spacing:-0.264000px;}
.ws9a{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.216000px;}
.ws29{word-spacing:-0.144000px;}
.ws96{word-spacing:-0.120000px;}
.ws7d{word-spacing:-0.072000px;}
.ws81{word-spacing:-0.066000px;}
.ws98{word-spacing:-0.060000px;}
.ws5c{word-spacing:-0.054000px;}
.wsa{word-spacing:0.000000px;}
.ws12{word-spacing:0.060000px;}
.wsb5{word-spacing:0.066000px;}
.wsf{word-spacing:0.072000px;}
.ws2f{word-spacing:0.144000px;}
.wsb2{word-spacing:0.180000px;}
.ws80{word-spacing:0.198000px;}
.ws3a{word-spacing:0.216000px;}
.wsd{word-spacing:0.252000px;}
.ws73{word-spacing:0.270000px;}
.ws35{word-spacing:0.288000px;}
.ws13{word-spacing:0.300000px;}
.ws7e{word-spacing:0.330000px;}
.ws2e{word-spacing:0.360000px;}
.ws95{word-spacing:0.420000px;}
.ws1b{word-spacing:0.432000px;}
.ws7f{word-spacing:0.462000px;}
.ws93{word-spacing:0.480000px;}
.wse{word-spacing:0.504000px;}
.wsb8{word-spacing:0.528000px;}
.ws26{word-spacing:0.576000px;}
.ws55{word-spacing:0.594000px;}
.ws9f{word-spacing:0.780000px;}
.ws85{word-spacing:0.792000px;}
.ws52{word-spacing:0.936000px;}
.wsac{word-spacing:1.080000px;}
.ws66{word-spacing:1.188000px;}
.ws31{word-spacing:1.224000px;}
.ws99{word-spacing:1.260000px;}
.ws6d{word-spacing:1.296000px;}
.ws67{word-spacing:1.512000px;}
.ws37{word-spacing:1.584000px;}
.ws3e{word-spacing:1.728000px;}
.ws2a{word-spacing:2.448000px;}
.ws6c{word-spacing:2.520000px;}
.ws40{word-spacing:2.952000px;}
.wsb7{word-spacing:3.564000px;}
.ws54{word-spacing:3.600000px;}
.ws9d{word-spacing:3.660000px;}
.ws1f{word-spacing:3.672000px;}
.wsb6{word-spacing:3.960000px;}
.ws36{word-spacing:4.032000px;}
.ws15{word-spacing:4.176000px;}
.ws41{word-spacing:4.824000px;}
.ws42{word-spacing:5.040000px;}
.ws60{word-spacing:5.328000px;}
.ws1e{word-spacing:6.048000px;}
.ws51{word-spacing:6.192000px;}
.ws18{word-spacing:6.552000px;}
.ws22{word-spacing:7.776000px;}
.ws94{word-spacing:8.640000px;}
.ws38{word-spacing:8.784000px;}
.ws16{word-spacing:8.928000px;}
.ws83{word-spacing:9.504000px;}
.ws64{word-spacing:9.648000px;}
.ws74{word-spacing:10.080000px;}
.ws62{word-spacing:10.512000px;}
.ws1d{word-spacing:10.872000px;}
.ws61{word-spacing:11.088000px;}
.ws53{word-spacing:11.160000px;}
.ws5b{word-spacing:11.376000px;}
.ws6e{word-spacing:12.384000px;}
.ws71{word-spacing:12.528000px;}
.wsad{word-spacing:13.740000px;}
.wsb4{word-spacing:14.322000px;}
.ws2b{word-spacing:14.472000px;}
.wsb3{word-spacing:14.850000px;}
.ws1c{word-spacing:14.976000px;}
.wsae{word-spacing:15.600000px;}
.ws70{word-spacing:15.696000px;}
.ws92{word-spacing:16.848000px;}
.ws87{word-spacing:18.432000px;}
.ws75{word-spacing:18.504000px;}
.ws17{word-spacing:22.176000px;}
.ws20{word-spacing:24.408000px;}
.ws21{word-spacing:24.552000px;}
.ws46{word-spacing:27.072000px;}
.ws9c{word-spacing:35.880000px;}
.ws58{word-spacing:37.080000px;}
.wsa1{word-spacing:43.740000px;}
.wsa9{word-spacing:46.260000px;}
.wsaa{word-spacing:46.680000px;}
.wsa8{word-spacing:46.860000px;}
.ws23{word-spacing:49.752000px;}
.ws97{word-spacing:70.860000px;}
.ws6a{word-spacing:72.300000px;}
.ws9e{word-spacing:76.680000px;}
.wsa0{word-spacing:123.660000px;}
.ws4d{word-spacing:189.000000px;}
.wsa2{word-spacing:202.320000px;}
.wsa3{word-spacing:202.860000px;}
.ws6b{word-spacing:307.594200px;}
._2f{margin-left:-32.841600px;}
._2e{margin-left:-31.317000px;}
._25{margin-left:-19.245600px;}
._26{margin-left:-18.216000px;}
._35{margin-left:-16.632000px;}
._36{margin-left:-15.170400px;}
._1c{margin-left:-13.972800px;}
._1b{margin-left:-12.957600px;}
._1d{margin-left:-11.628000px;}
._27{margin-left:-10.461600px;}
._1a{margin-left:-8.452800px;}
._18{margin-left:-7.322400px;}
._19{margin-left:-6.163200px;}
._f{margin-left:-5.095200px;}
._e{margin-left:-3.974400px;}
._6{margin-left:-2.148000px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._7{width:2.260800px;}
._8{width:3.448800px;}
._b{width:4.634400px;}
._17{width:5.664000px;}
._10{width:7.135200px;}
._11{width:8.164800px;}
._21{width:10.116000px;}
._23{width:11.824800px;}
._16{width:13.298400px;}
._9{width:14.853600px;}
._a{width:16.538400px;}
._20{width:17.546400px;}
._13{width:20.361600px;}
._24{width:21.722400px;}
._c{width:23.090400px;}
._d{width:24.386400px;}
._1e{width:28.202400px;}
._1f{width:29.253600px;}
._28{width:30.657600px;}
._30{width:31.765200px;}
._38{width:35.460000px;}
._14{width:37.231200px;}
._15{width:38.344800px;}
._3a{width:44.244000px;}
._31{width:45.858000px;}
._2b{width:67.080000px;}
._37{width:70.260000px;}
._2d{width:72.300000px;}
._39{width:78.420000px;}
._2a{width:82.080000px;}
._29{width:97.080000px;}
._2c{width:102.300000px;}
._32{width:289.674000px;}
._34{width:326.898000px;}
._33{width:360.492000px;}
._22{width:365.964000px;}
._4{width:765.780000px;}
._5{width:918.780000px;}
._2{width:1005.420000px;}
._3{width:1137.480000px;}
._12{width:1233.180000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.y183{bottom:4.233600px;}
.y1ab{bottom:4.500000px;}
.y179{bottom:4.744350px;}
.y176{bottom:4.802850px;}
.y174{bottom:4.832100px;}
.y172{bottom:4.861350px;}
.y180{bottom:4.898100px;}
.y16f{bottom:4.920000px;}
.y16d{bottom:4.949250px;}
.y16b{bottom:4.978350px;}
.y17b{bottom:5.015100px;}
.y7{bottom:5.100000px;}
.yfc{bottom:5.211300px;}
.ya{bottom:6.000000px;}
.y90{bottom:28.500000px;}
.y1a9{bottom:47.100000px;}
.y4{bottom:67.800000px;}
.ye2{bottom:96.906000px;}
.y65{bottom:105.030000px;}
.y8d{bottom:105.096000px;}
.y1e2{bottom:108.000000px;}
.y1b2{bottom:109.800000px;}
.y120{bottom:110.136000px;}
.y1a6{bottom:111.300000px;}
.y14c{bottom:112.254000px;}
.y35{bottom:114.018000px;}
.yaf{bottom:114.900000px;}
.ye1{bottom:120.306000px;}
.y1e1{bottom:127.200000px;}
.y64{bottom:128.124000px;}
.y8c{bottom:128.190000px;}
.y1b1{bottom:133.200000px;}
.y11f{bottom:133.536000px;}
.y14b{bottom:135.348000px;}
.y34{bottom:137.418000px;}
.yae{bottom:138.000000px;}
.ye0{bottom:143.706000px;}
.y1e0{bottom:146.700000px;}
.y63{bottom:151.524000px;}
.y8b{bottom:151.590000px;}
.y1b0{bottom:156.600000px;}
.y11e{bottom:156.630000px;}
.y14a{bottom:158.748000px;}
.y33{bottom:160.818000px;}
.yad{bottom:161.400000px;}
.y1df{bottom:166.200000px;}
.ydf{bottom:166.800000px;}
.y62{bottom:174.924000px;}
.y8a{bottom:174.990000px;}
.y1af{bottom:179.700000px;}
.y11d{bottom:180.030000px;}
.y149{bottom:182.148000px;}
.y32{bottom:183.912000px;}
.yac{bottom:184.800000px;}
.y1de{bottom:185.700000px;}
.yde{bottom:190.200000px;}
.y61{bottom:198.018000px;}
.y89{bottom:198.084000px;}
.y1ae{bottom:203.100000px;}
.y11c{bottom:203.430000px;}
.y1dd{bottom:204.900000px;}
.y148{bottom:205.242000px;}
.y31{bottom:207.312000px;}
.yab{bottom:207.900000px;}
.ydd{bottom:213.600000px;}
.y60{bottom:221.418000px;}
.y88{bottom:221.484000px;}
.y1dc{bottom:224.400000px;}
.y1ad{bottom:224.700000px;}
.y11b{bottom:226.524000px;}
.y147{bottom:228.642000px;}
.y30{bottom:230.712000px;}
.yaa{bottom:231.300000px;}
.ydc{bottom:236.700000px;}
.y1a5{bottom:237.600000px;}
.y1db{bottom:243.900000px;}
.y5f{bottom:244.818000px;}
.y87{bottom:244.884000px;}
.y11a{bottom:249.924000px;}
.y146{bottom:252.042000px;}
.y2f{bottom:253.806000px;}
.ya9{bottom:254.400000px;}
.ydb{bottom:260.100000px;}
.y1da{bottom:263.100000px;}
.y1aa{bottom:263.400000px;}
.y5e{bottom:267.912000px;}
.y86{bottom:267.978000px;}
.y119{bottom:273.324000px;}
.y145{bottom:275.136000px;}
.y2e{bottom:277.206000px;}
.ya8{bottom:277.800000px;}
.y1d9{bottom:282.600000px;}
.yda{bottom:283.500000px;}
.y5d{bottom:291.312000px;}
.y85{bottom:291.378000px;}
.y1ac{bottom:295.500000px;}
.y118{bottom:296.418000px;}
.y144{bottom:298.536000px;}
.y2d{bottom:300.300000px;}
.ya7{bottom:301.200000px;}
.y1d8{bottom:302.100000px;}
.y1a8{bottom:306.298500px;}
.yd9{bottom:306.600000px;}
.y5c{bottom:314.712000px;}
.y84{bottom:314.778000px;}
.y117{bottom:319.818000px;}
.y1d7{bottom:321.300000px;}
.y143{bottom:321.630000px;}
.y2c{bottom:323.700000px;}
.ya6{bottom:324.300000px;}
.y1a7{bottom:327.600000px;}
.yd8{bottom:330.000000px;}
.y5b{bottom:337.806000px;}
.y83{bottom:337.872000px;}
.y1d6{bottom:340.800000px;}
.y116{bottom:343.218000px;}
.y142{bottom:345.030000px;}
.y2b{bottom:347.100000px;}
.ya5{bottom:347.700000px;}
.yd7{bottom:353.100000px;}
.y1d5{bottom:360.300000px;}
.y5a{bottom:361.206000px;}
.y82{bottom:361.272000px;}
.y115{bottom:366.312000px;}
.y2a{bottom:368.400000px;}
.y141{bottom:368.430000px;}
.ya4{bottom:371.100000px;}
.y1a4{bottom:374.086500px;}
.yd6{bottom:376.500000px;}
.y1d4{bottom:379.800000px;}
.y59{bottom:384.300000px;}
.y81{bottom:384.366000px;}
.y29{bottom:385.800000px;}
.y114{bottom:389.712000px;}
.y140{bottom:391.524000px;}
.ya3{bottom:394.200000px;}
.y1a3{bottom:395.388000px;}
.y1d3{bottom:399.000000px;}
.yd5{bottom:399.900000px;}
.y19b{bottom:406.195500px;}
.y28{bottom:407.400000px;}
.y58{bottom:407.700000px;}
.y80{bottom:407.766000px;}
.y113{bottom:413.112000px;}
.y13f{bottom:414.924000px;}
.y1a0{bottom:416.689500px;}
.ya2{bottom:417.600000px;}
.y1d2{bottom:418.500000px;}
.yd4{bottom:423.000000px;}
.y27{bottom:424.836000px;}
.y19a{bottom:427.497000px;}
.y57{bottom:431.100000px;}
.y7f{bottom:431.166000px;}
.y112{bottom:436.206000px;}
.y1d1{bottom:438.000000px;}
.y19f{bottom:438.288000px;}
.y13e{bottom:438.324000px;}
.ya1{bottom:441.000000px;}
.yd3{bottom:446.400000px;}
.y26{bottom:447.930000px;}
.y199{bottom:448.798500px;}
.y56{bottom:452.436000px;}
.y7e{bottom:454.260000px;}
.y1d0{bottom:457.200000px;}
.y19e{bottom:459.589500px;}
.y111{bottom:459.606000px;}
.y13d{bottom:461.418000px;}
.ya0{bottom:464.100000px;}
.yd2{bottom:469.800000px;}
.y55{bottom:469.842000px;}
.y198{bottom:470.100000px;}
.y25{bottom:471.330000px;}
.y1cf{bottom:476.700000px;}
.y7d{bottom:477.660000px;}
.y19d{bottom:480.891000px;}
.y110{bottom:482.700000px;}
.y13c{bottom:484.818000px;}
.y9f{bottom:487.500000px;}
.y204{bottom:487.800000px;}
.y197{bottom:491.698500px;}
.yd1{bottom:492.900000px;}
.y54{bottom:493.242000px;}
.y24{bottom:494.424000px;}
.y1ce{bottom:496.200000px;}
.y7c{bottom:501.060000px;}
.y19c{bottom:502.192500px;}
.y10f{bottom:506.100000px;}
.y13b{bottom:508.218000px;}
.y203{bottom:508.800000px;}
.y9e{bottom:510.900000px;}
.y196{bottom:513.000000px;}
.y1cd{bottom:515.400000px;}
.yd0{bottom:516.300000px;}
.y53{bottom:516.336000px;}
.y23{bottom:517.824000px;}
.y1a2{bottom:523.494000px;}
.y7b{bottom:524.154000px;}
.y202{bottom:528.597000px;}
.y10e{bottom:529.500000px;}
.y13a{bottom:531.312000px;}
.y9d{bottom:534.000000px;}
.y1cc{bottom:534.900000px;}
.ycf{bottom:539.700000px;}
.y52{bottom:539.736000px;}
.y22{bottom:541.224000px;}
.y1a1{bottom:544.795500px;}
.y7a{bottom:547.554000px;}
.y201{bottom:549.898500px;}
.y10d{bottom:552.600000px;}
.y1cb{bottom:554.400000px;}
.y139{bottom:554.712000px;}
.y9c{bottom:557.400000px;}
.yce{bottom:562.800000px;}
.y51{bottom:563.136000px;}
.y21{bottom:564.318000px;}
.y195{bottom:570.924000px;}
.y79{bottom:570.954000px;}
.y200{bottom:571.200000px;}
.y1ca{bottom:573.900000px;}
.y10c{bottom:576.000000px;}
.y138{bottom:577.806000px;}
.y9b{bottom:580.500000px;}
.ycd{bottom:586.200000px;}
.y50{bottom:586.230000px;}
.y20{bottom:587.718000px;}
.y1c9{bottom:592.200000px;}
.y194{bottom:594.018000px;}
.y78{bottom:594.048000px;}
.y1ff{bottom:597.300000px;}
.y10b{bottom:599.400000px;}
.y137{bottom:601.206000px;}
.y9a{bottom:603.912000px;}
.ycc{bottom:607.500000px;}
.y1c8{bottom:609.600000px;}
.y4f{bottom:609.630000px;}
.y1f{bottom:611.118000px;}
.y193{bottom:617.418000px;}
.y77{bottom:617.448000px;}
.yca{bottom:619.800000px;}
.y10a{bottom:622.518000px;}
.y136{bottom:624.606000px;}
.ycb{bottom:624.900000px;}
.y99{bottom:627.312000px;}
.y1c7{bottom:631.200000px;}
.y4e{bottom:633.030000px;}
.y1e{bottom:634.212000px;}
.y1fe{bottom:640.198500px;}
.y192{bottom:640.818000px;}
.y76{bottom:640.848000px;}
.yc9{bottom:643.200000px;}
.y109{bottom:645.918000px;}
.y135{bottom:647.700000px;}
.y1c6{bottom:648.336000px;}
.y98{bottom:650.406000px;}
.yfb{bottom:651.600000px;}
.y4d{bottom:656.124000px;}
.yfa{bottom:657.411300px;}
.y1d{bottom:657.612000px;}
.y1fd{bottom:661.500000px;}
.y191{bottom:663.912000px;}
.y75{bottom:663.942000px;}
.y108{bottom:669.318000px;}
.y134{bottom:671.100000px;}
.y1c5{bottom:671.736000px;}
.y97{bottom:673.806000px;}
.y4c{bottom:679.524000px;}
.y1fc{bottom:680.700000px;}
.y1c{bottom:681.012000px;}
.y190{bottom:687.312000px;}
.y74{bottom:687.342000px;}
.yef{bottom:691.818900px;}
.y107{bottom:692.412000px;}
.y133{bottom:692.700000px;}
.y1fb{bottom:694.200000px;}
.y1c4{bottom:695.136000px;}
.y96{bottom:697.206000px;}
.y4b{bottom:702.924000px;}
.y1b{bottom:704.106000px;}
.y132{bottom:709.800000px;}
.y18f{bottom:710.406000px;}
.y73{bottom:710.436000px;}
.y1fa{bottom:713.400000px;}
.y106{bottom:715.812000px;}
.y1c3{bottom:718.230000px;}
.y95{bottom:720.300000px;}
.yed{bottom:721.324500px;}
.yf0{bottom:721.683600px;}
.ye3{bottom:722.499000px;}
.y4a{bottom:726.018000px;}
.y1a{bottom:727.506000px;}
.y1f9{bottom:732.000000px;}
.y131{bottom:733.200000px;}
.y18e{bottom:733.806000px;}
.y72{bottom:733.836000px;}
.y105{bottom:739.212000px;}
.y1c2{bottom:741.630000px;}
.y94{bottom:743.700000px;}
.ye4{bottom:745.192500px;}
.yf1{bottom:745.551600px;}
.y1f8{bottom:748.500000px;}
.y49{bottom:749.418000px;}
.y19{bottom:750.600000px;}
.y130{bottom:751.500000px;}
.y18d{bottom:757.206000px;}
.y71{bottom:757.236000px;}
.y182{bottom:759.300000px;}
.y104{bottom:762.306000px;}
.y181{bottom:764.133600px;}
.y1c1{bottom:765.030000px;}
.y93{bottom:767.100000px;}
.y1f7{bottom:768.000000px;}
.ye5{bottom:769.060500px;}
.yf2{bottom:769.730100px;}
.y48{bottom:772.512000px;}
.y18{bottom:774.000000px;}
.y18c{bottom:780.300000px;}
.y70{bottom:780.330000px;}
.y103{bottom:785.706000px;}
.y1f6{bottom:787.200000px;}
.y1c0{bottom:788.124000px;}
.y92{bottom:788.400000px;}
.ye6{bottom:791.754000px;}
.yee{bottom:792.928500px;}
.yf3{bottom:793.598100px;}
.y47{bottom:795.912000px;}
.y17{bottom:797.400000px;}
.y8f{bottom:800.700000px;}
.y169{bottom:801.862500px;}
.y18b{bottom:803.700000px;}
.y6f{bottom:803.730000px;}
.y91{bottom:805.800000px;}
.y1f5{bottom:806.700000px;}
.y102{bottom:808.800000px;}
.y1bf{bottom:811.524000px;}
.ye7{bottom:816.796500px;}
.yf4{bottom:817.155600px;}
.y16{bottom:818.700000px;}
.y46{bottom:819.312000px;}
.y16a{bottom:824.400000px;}
.y1f4{bottom:826.200000px;}
.y18a{bottom:827.100000px;}
.y6e{bottom:827.130000px;}
.y15b{bottom:829.003050px;}
.y14d{bottom:829.016550px;}
.y101{bottom:832.200000px;}
.y1be{bottom:834.924000px;}
.y15{bottom:835.200000px;}
.ye8{bottom:840.664500px;}
.yf5{bottom:841.334100px;}
.y45{bottom:842.406000px;}
.y16c{bottom:843.600000px;}
.y1f3{bottom:845.400000px;}
.y8e{bottom:847.200000px;}
.y15c{bottom:848.173050px;}
.y14e{bottom:848.186550px;}
.y189{bottom:850.200000px;}
.y6d{bottom:850.224000px;}
.y14{bottom:854.700000px;}
.y100{bottom:855.600000px;}
.y1bd{bottom:858.018000px;}
.yb9{bottom:860.549850px;}
.y16e{bottom:862.800000px;}
.ye9{bottom:864.532500px;}
.yf6{bottom:864.891600px;}
.y1f2{bottom:864.900000px;}
.y44{bottom:865.806000px;}
.y15d{bottom:867.343050px;}
.y14f{bottom:867.356550px;}
.y13{bottom:873.300000px;}
.y188{bottom:873.600000px;}
.y6c{bottom:873.624000px;}
.yff{bottom:876.900000px;}
.y1bc{bottom:881.418000px;}
.y1f1{bottom:884.400000px;}
.y15e{bottom:886.513050px;}
.y150{bottom:886.526550px;}
.y170{bottom:887.205750px;}
.yea{bottom:888.400500px;}
.yf7{bottom:888.759600px;}
.yfe{bottom:889.200000px;}
.y43{bottom:889.206000px;}
.y12{bottom:889.500000px;}
.yba{bottom:892.693350px;}
.yb0{bottom:896.527350px;}
.y187{bottom:897.000000px;}
.y6b{bottom:897.024000px;}
.y171{bottom:901.200000px;}
.y1f0{bottom:903.600000px;}
.y1bb{bottom:904.512000px;}
.y15f{bottom:905.683050px;}
.y151{bottom:905.696550px;}
.y11{bottom:909.000000px;}
.yeb{bottom:912.268500px;}
.y42{bottom:912.300000px;}
.yfd{bottom:912.600000px;}
.yf8{bottom:912.627600px;}
.y186{bottom:920.100000px;}
.y6a{bottom:920.118000px;}
.y173{bottom:920.400000px;}
.y1ef{bottom:923.100000px;}
.ybb{bottom:923.311350px;}
.y160{bottom:924.853050px;}
.y152{bottom:924.866550px;}
.yb1{bottom:926.821350px;}
.y1ba{bottom:927.912000px;}
.y10{bottom:929.406000px;}
.y41{bottom:935.700000px;}
.yec{bottom:936.136500px;}
.yf9{bottom:936.806100px;}
.y175{bottom:939.600000px;}
.y1ee{bottom:942.600000px;}
.y185{bottom:943.500000px;}
.y69{bottom:943.518000px;}
.y161{bottom:944.023050px;}
.y153{bottom:944.036550px;}
.y121{bottom:944.233950px;}
.y1b9{bottom:951.312000px;}
.yf{bottom:952.500000px;}
.ybc{bottom:953.605350px;}
.y127{bottom:955.155450px;}
.yb2{bottom:957.115350px;}
.y40{bottom:959.100000px;}
.y1ed{bottom:962.100000px;}
.y162{bottom:963.193050px;}
.y154{bottom:963.206550px;}
.y177{bottom:963.888600px;}
.y184{bottom:966.600000px;}
.y68{bottom:966.612000px;}
.yc8{bottom:972.600000px;}
.y1b8{bottom:974.406000px;}
.ye{bottom:976.494000px;}
.y178{bottom:978.000000px;}
.y3f{bottom:980.400000px;}
.y1ec{bottom:981.300000px;}
.y122{bottom:981.628950px;}
.y163{bottom:982.363050px;}
.y155{bottom:982.376550px;}
.ybd{bottom:983.588850px;}
.yb3{bottom:987.409350px;}
.yc7{bottom:990.000000px;}
.y67{bottom:990.012000px;}
.y128{bottom:992.550450px;}
.y17a{bottom:996.900000px;}
.y3e{bottom:997.800000px;}
.y1b7{bottom:997.806000px;}
.y1eb{bottom:1000.800000px;}
.y164{bottom:1001.533050px;}
.y156{bottom:1001.546550px;}
.yd{bottom:1003.794000px;}
.yc6{bottom:1013.400000px;}
.y66{bottom:1013.412000px;}
.ybe{bottom:1014.206850px;}
.y12a{bottom:1015.041450px;}
.yb4{bottom:1017.703350px;}
.y123{bottom:1019.023950px;}
.y3d{bottom:1019.400000px;}
.y1ea{bottom:1020.300000px;}
.y165{bottom:1020.703050px;}
.y157{bottom:1020.716550px;}
.y1b6{bottom:1021.206000px;}
.y17c{bottom:1021.400700px;}
.y129{bottom:1030.552950px;}
.yc{bottom:1030.800000px;}
.yc5{bottom:1036.500000px;}
.y3c{bottom:1036.506000px;}
.y1e9{bottom:1039.500000px;}
.y166{bottom:1039.873050px;}
.y158{bottom:1039.886550px;}
.y17d{bottom:1040.570700px;}
.y1b5{bottom:1044.300000px;}
.ybf{bottom:1044.500850px;}
.yb5{bottom:1047.997350px;}
.y124{bottom:1056.418950px;}
.yb{bottom:1058.100000px;}
.y1e8{bottom:1059.000000px;}
.y167{bottom:1059.043050px;}
.y159{bottom:1059.056550px;}
.y17e{bottom:1059.740700px;}
.yc4{bottom:1059.900000px;}
.y3b{bottom:1059.906000px;}
.y1b4{bottom:1067.700000px;}
.y12b{bottom:1067.961450px;}
.y17f{bottom:1073.700000px;}
.yc0{bottom:1074.484350px;}
.y168{bottom:1078.213050px;}
.y15a{bottom:1078.226550px;}
.yb6{bottom:1078.291350px;}
.y1e7{bottom:1078.500000px;}
.y8{bottom:1079.400000px;}
.yc3{bottom:1083.300000px;}
.y3a{bottom:1083.306000px;}
.y1b3{bottom:1089.300000px;}
.y12d{bottom:1089.844950px;}
.y125{bottom:1093.813950px;}
.y1e6{bottom:1097.700000px;}
.y6{bottom:1103.400000px;}
.yc1{bottom:1105.102350px;}
.y12c{bottom:1105.356450px;}
.y39{bottom:1106.400000px;}
.yb7{bottom:1108.585350px;}
.y12f{bottom:1112.400000px;}
.y1e5{bottom:1117.200000px;}
.y5{bottom:1129.200000px;}
.y38{bottom:1129.800000px;}
.y126{bottom:1131.208950px;}
.yc2{bottom:1135.085850px;}
.y1e4{bottom:1136.700000px;}
.yb8{bottom:1138.879350px;}
.y12e{bottom:1142.157450px;}
.y3{bottom:1144.800000px;}
.y37{bottom:1153.200000px;}
.y1e3{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y36{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h1d{height:19.201500px;}
.h1c{height:19.500000px;}
.h1f{height:20.100000px;}
.h16{height:21.600000px;}
.h14{height:23.400000px;}
.h5{height:23.401500px;}
.h8{height:23.998500px;}
.h4{height:31.320000px;}
.h11{height:37.520508px;}
.h10{height:38.759766px;}
.h17{height:41.689453px;}
.hd{height:41.760000px;}
.h3{height:43.200000px;}
.h2{height:43.920000px;}
.h20{height:45.858398px;}
.hf{height:46.500000px;}
.h7{height:47.400000px;}
.h21{height:48.312000px;}
.h19{height:51.840000px;}
.hc{height:52.200000px;}
.h6{height:52.704000px;}
.h12{height:52.998047px;}
.h23{height:57.420000px;}
.h15{height:58.886719px;}
.ha{height:61.488000px;}
.h24{height:62.578125px;}
.hb{height:62.640000px;}
.h1e{height:64.775391px;}
.h9{height:73.080000px;}
.h1b{height:75.093750px;}
.h22{height:128.100000px;}
.h18{height:258.600000px;}
.he{height:324.000000px;}
.h13{height:326.100000px;}
.h1a{height:357.598500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.wd{width:254.400000px;}
.wc{width:277.201500px;}
.w6{width:330.900000px;}
.w2{width:478.200000px;}
.w9{width:566.100000px;}
.wb{width:567.000000px;}
.w7{width:572.700000px;}
.wa{width:688.500000px;}
.w8{width:694.200000px;}
.w5{width:710.100000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x6f{left:10.409850px;}
.x2a{left:19.800000px;}
.x6b{left:23.564700px;}
.x14{left:27.300000px;}
.x6e{left:31.109700px;}
.x71{left:46.192200px;}
.x3{left:79.800000px;}
.x6c{left:89.227200px;}
.x1{left:91.500000px;}
.x11{left:95.700000px;}
.x9{left:97.800000px;}
.x69{left:99.300000px;}
.x79{left:100.804500px;}
.x24{left:109.273800px;}
.x78{left:112.206000px;}
.x7a{left:114.912000px;}
.x26{left:117.171300px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x7b{left:128.409000px;}
.x40{left:131.581350px;}
.x4e{left:134.100000px;}
.x25{left:136.638300px;}
.x12{left:138.912000px;}
.x7c{left:143.110500px;}
.x10{left:144.600000px;}
.x22{left:152.014800px;}
.x72{left:153.599850px;}
.x50{left:155.418000px;}
.x8d{left:159.054000px;}
.x4a{left:167.534550px;}
.x77{left:169.494000px;}
.x27{left:172.264800px;}
.x23{left:175.504800px;}
.x51{left:182.418000px;}
.x3b{left:185.851350px;}
.x74{left:189.697200px;}
.x6a{left:192.097200px;}
.x49{left:194.359050px;}
.x43{left:205.204200px;}
.xc{left:213.000000px;}
.x28{left:235.498800px;}
.x73{left:239.288100px;}
.xd{left:241.800000px;}
.x4b{left:244.403550px;}
.x3f{left:258.008850px;}
.x6d{left:261.794400px;}
.x4c{left:262.939050px;}
.xb{left:267.000000px;}
.x70{left:281.669400px;}
.x3d{left:325.927350px;}
.x3a{left:334.837350px;}
.x15{left:344.700000px;}
.x21{left:348.817800px;}
.x20{left:351.477300px;}
.x7d{left:354.013500px;}
.x80{left:359.112000px;}
.x7f{left:363.913500px;}
.x7e{left:372.609000px;}
.xe{left:374.100000px;}
.x3c{left:376.160850px;}
.x3e{left:379.900350px;}
.xa{left:382.497000px;}
.x52{left:392.535750px;}
.x68{left:393.998550px;}
.x1f{left:398.862300px;}
.x4f{left:403.200000px;}
.x17{left:411.106800px;}
.x53{left:421.709250px;}
.x54{left:425.030250px;}
.x39{left:429.255900px;}
.x2c{left:432.085950px;}
.x2d{left:433.462950px;}
.x2e{left:437.188950px;}
.x2{left:446.400000px;}
.x2f{left:448.218450px;}
.xf{left:450.000000px;}
.x41{left:451.475850px;}
.x75{left:454.707000px;}
.x18{left:456.655800px;}
.x55{left:461.304750px;}
.x81{left:462.319500px;}
.x44{left:463.495050px;}
.x56{left:464.625750px;}
.x42{left:470.700000px;}
.x16{left:473.100000px;}
.x83{left:477.334500px;}
.x30{left:479.025450px;}
.x31{left:482.670450px;}
.x57{left:484.335750px;}
.x82{left:486.030000px;}
.x58{left:487.656750px;}
.x59{left:497.417250px;}
.x32{left:498.735450px;}
.x5a{left:504.045750px;}
.x5b{left:510.674250px;}
.x5c{left:513.806250px;}
.x76{left:516.300000px;}
.x19{left:526.059300px;}
.x5d{left:527.063250px;}
.x45{left:534.235050px;}
.x5{left:558.000000px;}
.x1c{left:571.608300px;}
.x5e{left:573.098250px;}
.x87{left:581.713500px;}
.x84{left:583.528500px;}
.x85{left:585.327000px;}
.x86{left:592.521000px;}
.x88{left:594.006000px;}
.x5f{left:599.247750px;}
.x60{left:609.197250px;}
.x35{left:611.379450px;}
.x33{left:612.688950px;}
.x34{left:614.875950px;}
.x1a{left:617.157300px;}
.x61{left:632.214750px;}
.x36{left:639.823950px;}
.x62{left:642.353250px;}
.x37{left:649.327950px;}
.x63{left:662.063250px;}
.x1b{left:663.340800px;}
.x46{left:667.237050px;}
.x64{left:671.823750px;}
.x1d{left:674.883300px;}
.x38{left:676.314450px;}
.x47{left:684.611550px;}
.x7{left:685.800000px;}
.x66{left:691.344750px;}
.x65{left:694.841250px;}
.x4d{left:703.200000px;}
.x89{left:705.909000px;}
.x67{left:707.922750px;}
.x8c{left:712.212000px;}
.x8b{left:715.809000px;}
.x13{left:719.100000px;}
.x8a{left:724.504500px;}
.x29{left:725.700000px;}
.x1e{left:731.974800px;}
.x48{left:764.504550px;}
.x2b{left:781.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-4.288000pt;}
.ls33{letter-spacing:-3.200000pt;}
.ls18{letter-spacing:-2.176000pt;}
.ls30{letter-spacing:-1.280000pt;}
.ls40{letter-spacing:-1.152000pt;}
.ls20{letter-spacing:-1.088000pt;}
.ls5b{letter-spacing:-1.066667pt;}
.ls3d{letter-spacing:-1.056000pt;}
.ls31{letter-spacing:-0.832000pt;}
.ls4d{letter-spacing:-0.704000pt;}
.ls3a{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.528000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls58{letter-spacing:-0.480000pt;}
.ls66{letter-spacing:-0.469333pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls14{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls46{letter-spacing:-0.293333pt;}
.ls36{letter-spacing:-0.288000pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.240000pt;}
.ls49{letter-spacing:-0.234667pt;}
.ls38{letter-spacing:-0.213333pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls47{letter-spacing:-0.176000pt;}
.ls60{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.149333pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls65{letter-spacing:-0.117333pt;}
.ls63{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls67{letter-spacing:-0.058667pt;}
.ls5c{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.048000pt;}
.ls5a{letter-spacing:0.053333pt;}
.ls48{letter-spacing:0.058667pt;}
.ls45{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.074667pt;}
.ls7{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.213333pt;}
.ls4a{letter-spacing:0.234667pt;}
.ls16{letter-spacing:0.256000pt;}
.ls64{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls4e{letter-spacing:0.352000pt;}
.ls57{letter-spacing:0.373333pt;}
.ls2f{letter-spacing:0.384000pt;}
.ls4b{letter-spacing:0.410667pt;}
.lsf{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.428800pt;}
.ls3{letter-spacing:0.448000pt;}
.ls59{letter-spacing:0.480000pt;}
.ls24{letter-spacing:0.512000pt;}
.ls2e{letter-spacing:0.528000pt;}
.ls42{letter-spacing:0.576000pt;}
.ls55{letter-spacing:0.693333pt;}
.ls32{letter-spacing:0.704000pt;}
.ls43{letter-spacing:0.729600pt;}
.ls27{letter-spacing:1.024000pt;}
.ls5e{letter-spacing:1.061333pt;}
.ls56{letter-spacing:1.066667pt;}
.ls62{letter-spacing:1.173333pt;}
.ls61{letter-spacing:1.760000pt;}
.ls6{letter-spacing:2.112000pt;}
.ls3b{letter-spacing:3.200000pt;}
.ls1f{letter-spacing:4.224000pt;}
.ls2b{letter-spacing:4.243200pt;}
.ls23{letter-spacing:5.312000pt;}
.ls21{letter-spacing:6.400000pt;}
.ls19{letter-spacing:7.424000pt;}
.ls3f{letter-spacing:7.552000pt;}
.ls54{letter-spacing:7.840000pt;}
.ls41{letter-spacing:8.512000pt;}
.ls51{letter-spacing:8.896000pt;}
.ls2a{letter-spacing:9.600000pt;}
.ls2c{letter-spacing:10.496000pt;}
.ls3c{letter-spacing:10.624000pt;}
.ls22{letter-spacing:11.712000pt;}
.ls5f{letter-spacing:13.498667pt;}
.ls50{letter-spacing:13.696000pt;}
.ls4f{letter-spacing:14.912000pt;}
.ls52{letter-spacing:16.000000pt;}
.ls28{letter-spacing:17.024000pt;}
.ls53{letter-spacing:20.373333pt;}
.ls1c{letter-spacing:24.512000pt;}
.ls4c{letter-spacing:28.101333pt;}
.ls44{letter-spacing:40.890667pt;}
.ls5d{letter-spacing:41.226667pt;}
.ls3e{letter-spacing:56.896000pt;}
.ls1b{letter-spacing:171.712000pt;}
.ls39{letter-spacing:172.608000pt;}
.ls2d{letter-spacing:191.568000pt;}
.ls26{letter-spacing:407.093333pt;}
.ls1{letter-spacing:752.693333pt;}
.ls2{letter-spacing:777.226667pt;}
.ls0{letter-spacing:1186.826667pt;}
.ls1a{letter-spacing:1576.512000pt;}
.ws84{word-spacing:-28.101333pt;}
.ws2d{word-spacing:-17.600000pt;}
.ws68{word-spacing:-17.472000pt;}
.ws2{word-spacing:-17.408000pt;}
.ws2c{word-spacing:-17.344000pt;}
.ws45{word-spacing:-17.280000pt;}
.ws4a{word-spacing:-17.216000pt;}
.ws79{word-spacing:-17.152000pt;}
.ws3c{word-spacing:-17.088000pt;}
.ws47{word-spacing:-17.024000pt;}
.ws43{word-spacing:-16.960000pt;}
.ws78{word-spacing:-16.832000pt;}
.ws44{word-spacing:-16.704000pt;}
.ws69{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.576000pt;}
.ws5d{word-spacing:-16.512000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.680000pt;}
.wsa7{word-spacing:-15.429333pt;}
.wsa4{word-spacing:-15.413333pt;}
.wsa6{word-spacing:-15.194667pt;}
.ws88{word-spacing:-14.912000pt;}
.ws8c{word-spacing:-14.720000pt;}
.ws7b{word-spacing:-14.666667pt;}
.ws7c{word-spacing:-14.608000pt;}
.ws8a{word-spacing:-14.560000pt;}
.ws7a{word-spacing:-14.549333pt;}
.ws8d{word-spacing:-14.453333pt;}
.ws1{word-spacing:-14.346667pt;}
.ws8e{word-spacing:-14.293333pt;}
.ws8b{word-spacing:-14.240000pt;}
.ws90{word-spacing:-14.186667pt;}
.wsa5{word-spacing:-14.133333pt;}
.ws4{word-spacing:-13.973333pt;}
.ws3{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.ws59{word-spacing:-13.440000pt;}
.ws8f{word-spacing:-13.173333pt;}
.ws5a{word-spacing:-13.120000pt;}
.ws89{word-spacing:-13.013333pt;}
.ws4e{word-spacing:-12.528000pt;}
.ws5e{word-spacing:-12.048000pt;}
.ws5f{word-spacing:-12.000000pt;}
.ws34{word-spacing:-11.712000pt;}
.ws4c{word-spacing:-11.040000pt;}
.ws65{word-spacing:-10.624000pt;}
.ws4b{word-spacing:-10.608000pt;}
.ws48{word-spacing:-9.600000pt;}
.ws76{word-spacing:-8.512000pt;}
.ws33{word-spacing:-6.400000pt;}
.ws39{word-spacing:-5.312000pt;}
.ws30{word-spacing:-4.224000pt;}
.ws91{word-spacing:-3.456000pt;}
.ws25{word-spacing:-3.392000pt;}
.ws63{word-spacing:-3.200000pt;}
.ws24{word-spacing:-2.816000pt;}
.wsaf{word-spacing:-2.720000pt;}
.ws49{word-spacing:-2.688000pt;}
.wsb1{word-spacing:-2.613333pt;}
.ws32{word-spacing:-2.496000pt;}
.ws3b{word-spacing:-2.112000pt;}
.wsb0{word-spacing:-2.080000pt;}
.ws19{word-spacing:-1.792000pt;}
.wsab{word-spacing:-1.760000pt;}
.ws77{word-spacing:-1.728000pt;}
.ws1a{word-spacing:-1.664000pt;}
.ws9b{word-spacing:-1.493333pt;}
.ws3d{word-spacing:-1.024000pt;}
.ws56{word-spacing:-0.816000pt;}
.ws6f{word-spacing:-0.704000pt;}
.ws10{word-spacing:-0.586667pt;}
.ws14{word-spacing:-0.576000pt;}
.ws57{word-spacing:-0.528000pt;}
.ws3f{word-spacing:-0.512000pt;}
.ws9{word-spacing:-0.480000pt;}
.ws4f{word-spacing:-0.448000pt;}
.ws11{word-spacing:-0.426667pt;}
.ws50{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.373333pt;}
.ws86{word-spacing:-0.352000pt;}
.ws72{word-spacing:-0.336000pt;}
.ws28{word-spacing:-0.320000pt;}
.ws27{word-spacing:-0.256000pt;}
.ws82{word-spacing:-0.234667pt;}
.ws9a{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.192000pt;}
.ws29{word-spacing:-0.128000pt;}
.ws96{word-spacing:-0.106667pt;}
.ws7d{word-spacing:-0.064000pt;}
.ws81{word-spacing:-0.058667pt;}
.ws98{word-spacing:-0.053333pt;}
.ws5c{word-spacing:-0.048000pt;}
.wsa{word-spacing:0.000000pt;}
.ws12{word-spacing:0.053333pt;}
.wsb5{word-spacing:0.058667pt;}
.wsf{word-spacing:0.064000pt;}
.ws2f{word-spacing:0.128000pt;}
.wsb2{word-spacing:0.160000pt;}
.ws80{word-spacing:0.176000pt;}
.ws3a{word-spacing:0.192000pt;}
.wsd{word-spacing:0.224000pt;}
.ws73{word-spacing:0.240000pt;}
.ws35{word-spacing:0.256000pt;}
.ws13{word-spacing:0.266667pt;}
.ws7e{word-spacing:0.293333pt;}
.ws2e{word-spacing:0.320000pt;}
.ws95{word-spacing:0.373333pt;}
.ws1b{word-spacing:0.384000pt;}
.ws7f{word-spacing:0.410667pt;}
.ws93{word-spacing:0.426667pt;}
.wse{word-spacing:0.448000pt;}
.wsb8{word-spacing:0.469333pt;}
.ws26{word-spacing:0.512000pt;}
.ws55{word-spacing:0.528000pt;}
.ws9f{word-spacing:0.693333pt;}
.ws85{word-spacing:0.704000pt;}
.ws52{word-spacing:0.832000pt;}
.wsac{word-spacing:0.960000pt;}
.ws66{word-spacing:1.056000pt;}
.ws31{word-spacing:1.088000pt;}
.ws99{word-spacing:1.120000pt;}
.ws6d{word-spacing:1.152000pt;}
.ws67{word-spacing:1.344000pt;}
.ws37{word-spacing:1.408000pt;}
.ws3e{word-spacing:1.536000pt;}
.ws2a{word-spacing:2.176000pt;}
.ws6c{word-spacing:2.240000pt;}
.ws40{word-spacing:2.624000pt;}
.wsb7{word-spacing:3.168000pt;}
.ws54{word-spacing:3.200000pt;}
.ws9d{word-spacing:3.253333pt;}
.ws1f{word-spacing:3.264000pt;}
.wsb6{word-spacing:3.520000pt;}
.ws36{word-spacing:3.584000pt;}
.ws15{word-spacing:3.712000pt;}
.ws41{word-spacing:4.288000pt;}
.ws42{word-spacing:4.480000pt;}
.ws60{word-spacing:4.736000pt;}
.ws1e{word-spacing:5.376000pt;}
.ws51{word-spacing:5.504000pt;}
.ws18{word-spacing:5.824000pt;}
.ws22{word-spacing:6.912000pt;}
.ws94{word-spacing:7.680000pt;}
.ws38{word-spacing:7.808000pt;}
.ws16{word-spacing:7.936000pt;}
.ws83{word-spacing:8.448000pt;}
.ws64{word-spacing:8.576000pt;}
.ws74{word-spacing:8.960000pt;}
.ws62{word-spacing:9.344000pt;}
.ws1d{word-spacing:9.664000pt;}
.ws61{word-spacing:9.856000pt;}
.ws53{word-spacing:9.920000pt;}
.ws5b{word-spacing:10.112000pt;}
.ws6e{word-spacing:11.008000pt;}
.ws71{word-spacing:11.136000pt;}
.wsad{word-spacing:12.213333pt;}
.wsb4{word-spacing:12.730667pt;}
.ws2b{word-spacing:12.864000pt;}
.wsb3{word-spacing:13.200000pt;}
.ws1c{word-spacing:13.312000pt;}
.wsae{word-spacing:13.866667pt;}
.ws70{word-spacing:13.952000pt;}
.ws92{word-spacing:14.976000pt;}
.ws87{word-spacing:16.384000pt;}
.ws75{word-spacing:16.448000pt;}
.ws17{word-spacing:19.712000pt;}
.ws20{word-spacing:21.696000pt;}
.ws21{word-spacing:21.824000pt;}
.ws46{word-spacing:24.064000pt;}
.ws9c{word-spacing:31.893333pt;}
.ws58{word-spacing:32.960000pt;}
.wsa1{word-spacing:38.880000pt;}
.wsa9{word-spacing:41.120000pt;}
.wsaa{word-spacing:41.493333pt;}
.wsa8{word-spacing:41.653333pt;}
.ws23{word-spacing:44.224000pt;}
.ws97{word-spacing:62.986667pt;}
.ws6a{word-spacing:64.266667pt;}
.ws9e{word-spacing:68.160000pt;}
.wsa0{word-spacing:109.920000pt;}
.ws4d{word-spacing:168.000000pt;}
.wsa2{word-spacing:179.840000pt;}
.wsa3{word-spacing:180.320000pt;}
.ws6b{word-spacing:273.417067pt;}
._2f{margin-left:-29.192533pt;}
._2e{margin-left:-27.837333pt;}
._25{margin-left:-17.107200pt;}
._26{margin-left:-16.192000pt;}
._35{margin-left:-14.784000pt;}
._36{margin-left:-13.484800pt;}
._1c{margin-left:-12.420267pt;}
._1b{margin-left:-11.517867pt;}
._1d{margin-left:-10.336000pt;}
._27{margin-left:-9.299200pt;}
._1a{margin-left:-7.513600pt;}
._18{margin-left:-6.508800pt;}
._19{margin-left:-5.478400pt;}
._f{margin-left:-4.529067pt;}
._e{margin-left:-3.532800pt;}
._6{margin-left:-1.909333pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._7{width:2.009600pt;}
._8{width:3.065600pt;}
._b{width:4.119467pt;}
._17{width:5.034667pt;}
._10{width:6.342400pt;}
._11{width:7.257600pt;}
._21{width:8.992000pt;}
._23{width:10.510933pt;}
._16{width:11.820800pt;}
._9{width:13.203200pt;}
._a{width:14.700800pt;}
._20{width:15.596800pt;}
._13{width:18.099200pt;}
._24{width:19.308800pt;}
._c{width:20.524800pt;}
._d{width:21.676800pt;}
._1e{width:25.068800pt;}
._1f{width:26.003200pt;}
._28{width:27.251200pt;}
._30{width:28.235733pt;}
._38{width:31.520000pt;}
._14{width:33.094400pt;}
._15{width:34.084267pt;}
._3a{width:39.328000pt;}
._31{width:40.762667pt;}
._2b{width:59.626667pt;}
._37{width:62.453333pt;}
._2d{width:64.266667pt;}
._39{width:69.706667pt;}
._2a{width:72.960000pt;}
._29{width:86.293333pt;}
._2c{width:90.933333pt;}
._32{width:257.488000pt;}
._34{width:290.576000pt;}
._33{width:320.437333pt;}
._22{width:325.301333pt;}
._4{width:680.693333pt;}
._5{width:816.693333pt;}
._2{width:893.706667pt;}
._3{width:1011.093333pt;}
._12{width:1096.160000pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.y183{bottom:3.763200pt;}
.y1ab{bottom:4.000000pt;}
.y179{bottom:4.217200pt;}
.y176{bottom:4.269200pt;}
.y174{bottom:4.295200pt;}
.y172{bottom:4.321200pt;}
.y180{bottom:4.353867pt;}
.y16f{bottom:4.373333pt;}
.y16d{bottom:4.399333pt;}
.y16b{bottom:4.425200pt;}
.y17b{bottom:4.457867pt;}
.y7{bottom:4.533333pt;}
.yfc{bottom:4.632267pt;}
.ya{bottom:5.333333pt;}
.y90{bottom:25.333333pt;}
.y1a9{bottom:41.866667pt;}
.y4{bottom:60.266667pt;}
.ye2{bottom:86.138667pt;}
.y65{bottom:93.360000pt;}
.y8d{bottom:93.418667pt;}
.y1e2{bottom:96.000000pt;}
.y1b2{bottom:97.600000pt;}
.y120{bottom:97.898667pt;}
.y1a6{bottom:98.933333pt;}
.y14c{bottom:99.781333pt;}
.y35{bottom:101.349333pt;}
.yaf{bottom:102.133333pt;}
.ye1{bottom:106.938667pt;}
.y1e1{bottom:113.066667pt;}
.y64{bottom:113.888000pt;}
.y8c{bottom:113.946667pt;}
.y1b1{bottom:118.400000pt;}
.y11f{bottom:118.698667pt;}
.y14b{bottom:120.309333pt;}
.y34{bottom:122.149333pt;}
.yae{bottom:122.666667pt;}
.ye0{bottom:127.738667pt;}
.y1e0{bottom:130.400000pt;}
.y63{bottom:134.688000pt;}
.y8b{bottom:134.746667pt;}
.y1b0{bottom:139.200000pt;}
.y11e{bottom:139.226667pt;}
.y14a{bottom:141.109333pt;}
.y33{bottom:142.949333pt;}
.yad{bottom:143.466667pt;}
.y1df{bottom:147.733333pt;}
.ydf{bottom:148.266667pt;}
.y62{bottom:155.488000pt;}
.y8a{bottom:155.546667pt;}
.y1af{bottom:159.733333pt;}
.y11d{bottom:160.026667pt;}
.y149{bottom:161.909333pt;}
.y32{bottom:163.477333pt;}
.yac{bottom:164.266667pt;}
.y1de{bottom:165.066667pt;}
.yde{bottom:169.066667pt;}
.y61{bottom:176.016000pt;}
.y89{bottom:176.074667pt;}
.y1ae{bottom:180.533333pt;}
.y11c{bottom:180.826667pt;}
.y1dd{bottom:182.133333pt;}
.y148{bottom:182.437333pt;}
.y31{bottom:184.277333pt;}
.yab{bottom:184.800000pt;}
.ydd{bottom:189.866667pt;}
.y60{bottom:196.816000pt;}
.y88{bottom:196.874667pt;}
.y1dc{bottom:199.466667pt;}
.y1ad{bottom:199.733333pt;}
.y11b{bottom:201.354667pt;}
.y147{bottom:203.237333pt;}
.y30{bottom:205.077333pt;}
.yaa{bottom:205.600000pt;}
.ydc{bottom:210.400000pt;}
.y1a5{bottom:211.200000pt;}
.y1db{bottom:216.800000pt;}
.y5f{bottom:217.616000pt;}
.y87{bottom:217.674667pt;}
.y11a{bottom:222.154667pt;}
.y146{bottom:224.037333pt;}
.y2f{bottom:225.605333pt;}
.ya9{bottom:226.133333pt;}
.ydb{bottom:231.200000pt;}
.y1da{bottom:233.866667pt;}
.y1aa{bottom:234.133333pt;}
.y5e{bottom:238.144000pt;}
.y86{bottom:238.202667pt;}
.y119{bottom:242.954667pt;}
.y145{bottom:244.565333pt;}
.y2e{bottom:246.405333pt;}
.ya8{bottom:246.933333pt;}
.y1d9{bottom:251.200000pt;}
.yda{bottom:252.000000pt;}
.y5d{bottom:258.944000pt;}
.y85{bottom:259.002667pt;}
.y1ac{bottom:262.666667pt;}
.y118{bottom:263.482667pt;}
.y144{bottom:265.365333pt;}
.y2d{bottom:266.933333pt;}
.ya7{bottom:267.733333pt;}
.y1d8{bottom:268.533333pt;}
.y1a8{bottom:272.265333pt;}
.yd9{bottom:272.533333pt;}
.y5c{bottom:279.744000pt;}
.y84{bottom:279.802667pt;}
.y117{bottom:284.282667pt;}
.y1d7{bottom:285.600000pt;}
.y143{bottom:285.893333pt;}
.y2c{bottom:287.733333pt;}
.ya6{bottom:288.266667pt;}
.y1a7{bottom:291.200000pt;}
.yd8{bottom:293.333333pt;}
.y5b{bottom:300.272000pt;}
.y83{bottom:300.330667pt;}
.y1d6{bottom:302.933333pt;}
.y116{bottom:305.082667pt;}
.y142{bottom:306.693333pt;}
.y2b{bottom:308.533333pt;}
.ya5{bottom:309.066667pt;}
.yd7{bottom:313.866667pt;}
.y1d5{bottom:320.266667pt;}
.y5a{bottom:321.072000pt;}
.y82{bottom:321.130667pt;}
.y115{bottom:325.610667pt;}
.y2a{bottom:327.466667pt;}
.y141{bottom:327.493333pt;}
.ya4{bottom:329.866667pt;}
.y1a4{bottom:332.521333pt;}
.yd6{bottom:334.666667pt;}
.y1d4{bottom:337.600000pt;}
.y59{bottom:341.600000pt;}
.y81{bottom:341.658667pt;}
.y29{bottom:342.933333pt;}
.y114{bottom:346.410667pt;}
.y140{bottom:348.021333pt;}
.ya3{bottom:350.400000pt;}
.y1a3{bottom:351.456000pt;}
.y1d3{bottom:354.666667pt;}
.yd5{bottom:355.466667pt;}
.y19b{bottom:361.062667pt;}
.y28{bottom:362.133333pt;}
.y58{bottom:362.400000pt;}
.y80{bottom:362.458667pt;}
.y113{bottom:367.210667pt;}
.y13f{bottom:368.821333pt;}
.y1a0{bottom:370.390667pt;}
.ya2{bottom:371.200000pt;}
.y1d2{bottom:372.000000pt;}
.yd4{bottom:376.000000pt;}
.y27{bottom:377.632000pt;}
.y19a{bottom:379.997333pt;}
.y57{bottom:383.200000pt;}
.y7f{bottom:383.258667pt;}
.y112{bottom:387.738667pt;}
.y1d1{bottom:389.333333pt;}
.y19f{bottom:389.589333pt;}
.y13e{bottom:389.621333pt;}
.ya1{bottom:392.000000pt;}
.yd3{bottom:396.800000pt;}
.y26{bottom:398.160000pt;}
.y199{bottom:398.932000pt;}
.y56{bottom:402.165333pt;}
.y7e{bottom:403.786667pt;}
.y1d0{bottom:406.400000pt;}
.y19e{bottom:408.524000pt;}
.y111{bottom:408.538667pt;}
.y13d{bottom:410.149333pt;}
.ya0{bottom:412.533333pt;}
.yd2{bottom:417.600000pt;}
.y55{bottom:417.637333pt;}
.y198{bottom:417.866667pt;}
.y25{bottom:418.960000pt;}
.y1cf{bottom:423.733333pt;}
.y7d{bottom:424.586667pt;}
.y19d{bottom:427.458667pt;}
.y110{bottom:429.066667pt;}
.y13c{bottom:430.949333pt;}
.y9f{bottom:433.333333pt;}
.y204{bottom:433.600000pt;}
.y197{bottom:437.065333pt;}
.yd1{bottom:438.133333pt;}
.y54{bottom:438.437333pt;}
.y24{bottom:439.488000pt;}
.y1ce{bottom:441.066667pt;}
.y7c{bottom:445.386667pt;}
.y19c{bottom:446.393333pt;}
.y10f{bottom:449.866667pt;}
.y13b{bottom:451.749333pt;}
.y203{bottom:452.266667pt;}
.y9e{bottom:454.133333pt;}
.y196{bottom:456.000000pt;}
.y1cd{bottom:458.133333pt;}
.yd0{bottom:458.933333pt;}
.y53{bottom:458.965333pt;}
.y23{bottom:460.288000pt;}
.y1a2{bottom:465.328000pt;}
.y7b{bottom:465.914667pt;}
.y202{bottom:469.864000pt;}
.y10e{bottom:470.666667pt;}
.y13a{bottom:472.277333pt;}
.y9d{bottom:474.666667pt;}
.y1cc{bottom:475.466667pt;}
.ycf{bottom:479.733333pt;}
.y52{bottom:479.765333pt;}
.y22{bottom:481.088000pt;}
.y1a1{bottom:484.262667pt;}
.y7a{bottom:486.714667pt;}
.y201{bottom:488.798667pt;}
.y10d{bottom:491.200000pt;}
.y1cb{bottom:492.800000pt;}
.y139{bottom:493.077333pt;}
.y9c{bottom:495.466667pt;}
.yce{bottom:500.266667pt;}
.y51{bottom:500.565333pt;}
.y21{bottom:501.616000pt;}
.y195{bottom:507.488000pt;}
.y79{bottom:507.514667pt;}
.y200{bottom:507.733333pt;}
.y1ca{bottom:510.133333pt;}
.y10c{bottom:512.000000pt;}
.y138{bottom:513.605333pt;}
.y9b{bottom:516.000000pt;}
.ycd{bottom:521.066667pt;}
.y50{bottom:521.093333pt;}
.y20{bottom:522.416000pt;}
.y1c9{bottom:526.400000pt;}
.y194{bottom:528.016000pt;}
.y78{bottom:528.042667pt;}
.y1ff{bottom:530.933333pt;}
.y10b{bottom:532.800000pt;}
.y137{bottom:534.405333pt;}
.y9a{bottom:536.810667pt;}
.ycc{bottom:540.000000pt;}
.y1c8{bottom:541.866667pt;}
.y4f{bottom:541.893333pt;}
.y1f{bottom:543.216000pt;}
.y193{bottom:548.816000pt;}
.y77{bottom:548.842667pt;}
.yca{bottom:550.933333pt;}
.y10a{bottom:553.349333pt;}
.y136{bottom:555.205333pt;}
.ycb{bottom:555.466667pt;}
.y99{bottom:557.610667pt;}
.y1c7{bottom:561.066667pt;}
.y4e{bottom:562.693333pt;}
.y1e{bottom:563.744000pt;}
.y1fe{bottom:569.065333pt;}
.y192{bottom:569.616000pt;}
.y76{bottom:569.642667pt;}
.yc9{bottom:571.733333pt;}
.y109{bottom:574.149333pt;}
.y135{bottom:575.733333pt;}
.y1c6{bottom:576.298667pt;}
.y98{bottom:578.138667pt;}
.yfb{bottom:579.200000pt;}
.y4d{bottom:583.221333pt;}
.yfa{bottom:584.365600pt;}
.y1d{bottom:584.544000pt;}
.y1fd{bottom:588.000000pt;}
.y191{bottom:590.144000pt;}
.y75{bottom:590.170667pt;}
.y108{bottom:594.949333pt;}
.y134{bottom:596.533333pt;}
.y1c5{bottom:597.098667pt;}
.y97{bottom:598.938667pt;}
.y4c{bottom:604.021333pt;}
.y1fc{bottom:605.066667pt;}
.y1c{bottom:605.344000pt;}
.y190{bottom:610.944000pt;}
.y74{bottom:610.970667pt;}
.yef{bottom:614.950133pt;}
.y107{bottom:615.477333pt;}
.y133{bottom:615.733333pt;}
.y1fb{bottom:617.066667pt;}
.y1c4{bottom:617.898667pt;}
.y96{bottom:619.738667pt;}
.y4b{bottom:624.821333pt;}
.y1b{bottom:625.872000pt;}
.y132{bottom:630.933333pt;}
.y18f{bottom:631.472000pt;}
.y73{bottom:631.498667pt;}
.y1fa{bottom:634.133333pt;}
.y106{bottom:636.277333pt;}
.y1c3{bottom:638.426667pt;}
.y95{bottom:640.266667pt;}
.yed{bottom:641.177333pt;}
.yf0{bottom:641.496533pt;}
.ye3{bottom:642.221333pt;}
.y4a{bottom:645.349333pt;}
.y1a{bottom:646.672000pt;}
.y1f9{bottom:650.666667pt;}
.y131{bottom:651.733333pt;}
.y18e{bottom:652.272000pt;}
.y72{bottom:652.298667pt;}
.y105{bottom:657.077333pt;}
.y1c2{bottom:659.226667pt;}
.y94{bottom:661.066667pt;}
.ye4{bottom:662.393333pt;}
.yf1{bottom:662.712533pt;}
.y1f8{bottom:665.333333pt;}
.y49{bottom:666.149333pt;}
.y19{bottom:667.200000pt;}
.y130{bottom:668.000000pt;}
.y18d{bottom:673.072000pt;}
.y71{bottom:673.098667pt;}
.y182{bottom:674.933333pt;}
.y104{bottom:677.605333pt;}
.y181{bottom:679.229867pt;}
.y1c1{bottom:680.026667pt;}
.y93{bottom:681.866667pt;}
.y1f7{bottom:682.666667pt;}
.ye5{bottom:683.609333pt;}
.yf2{bottom:684.204533pt;}
.y48{bottom:686.677333pt;}
.y18{bottom:688.000000pt;}
.y18c{bottom:693.600000pt;}
.y70{bottom:693.626667pt;}
.y103{bottom:698.405333pt;}
.y1f6{bottom:699.733333pt;}
.y1c0{bottom:700.554667pt;}
.y92{bottom:700.800000pt;}
.ye6{bottom:703.781333pt;}
.yee{bottom:704.825333pt;}
.yf3{bottom:705.420533pt;}
.y47{bottom:707.477333pt;}
.y17{bottom:708.800000pt;}
.y8f{bottom:711.733333pt;}
.y169{bottom:712.766667pt;}
.y18b{bottom:714.400000pt;}
.y6f{bottom:714.426667pt;}
.y91{bottom:716.266667pt;}
.y1f5{bottom:717.066667pt;}
.y102{bottom:718.933333pt;}
.y1bf{bottom:721.354667pt;}
.ye7{bottom:726.041333pt;}
.yf4{bottom:726.360533pt;}
.y16{bottom:727.733333pt;}
.y46{bottom:728.277333pt;}
.y16a{bottom:732.800000pt;}
.y1f4{bottom:734.400000pt;}
.y18a{bottom:735.200000pt;}
.y6e{bottom:735.226667pt;}
.y15b{bottom:736.891600pt;}
.y14d{bottom:736.903600pt;}
.y101{bottom:739.733333pt;}
.y1be{bottom:742.154667pt;}
.y15{bottom:742.400000pt;}
.ye8{bottom:747.257333pt;}
.yf5{bottom:747.852533pt;}
.y45{bottom:748.805333pt;}
.y16c{bottom:749.866667pt;}
.y1f3{bottom:751.466667pt;}
.y8e{bottom:753.066667pt;}
.y15c{bottom:753.931600pt;}
.y14e{bottom:753.943600pt;}
.y189{bottom:755.733333pt;}
.y6d{bottom:755.754667pt;}
.y14{bottom:759.733333pt;}
.y100{bottom:760.533333pt;}
.y1bd{bottom:762.682667pt;}
.yb9{bottom:764.933200pt;}
.y16e{bottom:766.933333pt;}
.ye9{bottom:768.473333pt;}
.yf6{bottom:768.792533pt;}
.y1f2{bottom:768.800000pt;}
.y44{bottom:769.605333pt;}
.y15d{bottom:770.971600pt;}
.y14f{bottom:770.983600pt;}
.y13{bottom:776.266667pt;}
.y188{bottom:776.533333pt;}
.y6c{bottom:776.554667pt;}
.yff{bottom:779.466667pt;}
.y1bc{bottom:783.482667pt;}
.y1f1{bottom:786.133333pt;}
.y15e{bottom:788.011600pt;}
.y150{bottom:788.023600pt;}
.y170{bottom:788.627333pt;}
.yea{bottom:789.689333pt;}
.yf7{bottom:790.008533pt;}
.yfe{bottom:790.400000pt;}
.y43{bottom:790.405333pt;}
.y12{bottom:790.666667pt;}
.yba{bottom:793.505200pt;}
.yb0{bottom:796.913200pt;}
.y187{bottom:797.333333pt;}
.y6b{bottom:797.354667pt;}
.y171{bottom:801.066667pt;}
.y1f0{bottom:803.200000pt;}
.y1bb{bottom:804.010667pt;}
.y15f{bottom:805.051600pt;}
.y151{bottom:805.063600pt;}
.y11{bottom:808.000000pt;}
.yeb{bottom:810.905333pt;}
.y42{bottom:810.933333pt;}
.yfd{bottom:811.200000pt;}
.yf8{bottom:811.224533pt;}
.y186{bottom:817.866667pt;}
.y6a{bottom:817.882667pt;}
.y173{bottom:818.133333pt;}
.y1ef{bottom:820.533333pt;}
.ybb{bottom:820.721200pt;}
.y160{bottom:822.091600pt;}
.y152{bottom:822.103600pt;}
.yb1{bottom:823.841200pt;}
.y1ba{bottom:824.810667pt;}
.y10{bottom:826.138667pt;}
.y41{bottom:831.733333pt;}
.yec{bottom:832.121333pt;}
.yf9{bottom:832.716533pt;}
.y175{bottom:835.200000pt;}
.y1ee{bottom:837.866667pt;}
.y185{bottom:838.666667pt;}
.y69{bottom:838.682667pt;}
.y161{bottom:839.131600pt;}
.y153{bottom:839.143600pt;}
.y121{bottom:839.319067pt;}
.y1b9{bottom:845.610667pt;}
.yf{bottom:846.666667pt;}
.ybc{bottom:847.649200pt;}
.y127{bottom:849.027067pt;}
.yb2{bottom:850.769200pt;}
.y40{bottom:852.533333pt;}
.y1ed{bottom:855.200000pt;}
.y162{bottom:856.171600pt;}
.y154{bottom:856.183600pt;}
.y177{bottom:856.789867pt;}
.y184{bottom:859.200000pt;}
.y68{bottom:859.210667pt;}
.yc8{bottom:864.533333pt;}
.y1b8{bottom:866.138667pt;}
.ye{bottom:867.994667pt;}
.y178{bottom:869.333333pt;}
.y3f{bottom:871.466667pt;}
.y1ec{bottom:872.266667pt;}
.y122{bottom:872.559067pt;}
.y163{bottom:873.211600pt;}
.y155{bottom:873.223600pt;}
.ybd{bottom:874.301200pt;}
.yb3{bottom:877.697200pt;}
.yc7{bottom:880.000000pt;}
.y67{bottom:880.010667pt;}
.y128{bottom:882.267067pt;}
.y17a{bottom:886.133333pt;}
.y3e{bottom:886.933333pt;}
.y1b7{bottom:886.938667pt;}
.y1eb{bottom:889.600000pt;}
.y164{bottom:890.251600pt;}
.y156{bottom:890.263600pt;}
.yd{bottom:892.261333pt;}
.yc6{bottom:900.800000pt;}
.y66{bottom:900.810667pt;}
.ybe{bottom:901.517200pt;}
.y12a{bottom:902.259067pt;}
.yb4{bottom:904.625200pt;}
.y123{bottom:905.799067pt;}
.y3d{bottom:906.133333pt;}
.y1ea{bottom:906.933333pt;}
.y165{bottom:907.291600pt;}
.y157{bottom:907.303600pt;}
.y1b6{bottom:907.738667pt;}
.y17c{bottom:907.911733pt;}
.y129{bottom:916.047067pt;}
.yc{bottom:916.266667pt;}
.yc5{bottom:921.333333pt;}
.y3c{bottom:921.338667pt;}
.y1e9{bottom:924.000000pt;}
.y166{bottom:924.331600pt;}
.y158{bottom:924.343600pt;}
.y17d{bottom:924.951733pt;}
.y1b5{bottom:928.266667pt;}
.ybf{bottom:928.445200pt;}
.yb5{bottom:931.553200pt;}
.y124{bottom:939.039067pt;}
.yb{bottom:940.533333pt;}
.y1e8{bottom:941.333333pt;}
.y167{bottom:941.371600pt;}
.y159{bottom:941.383600pt;}
.y17e{bottom:941.991733pt;}
.yc4{bottom:942.133333pt;}
.y3b{bottom:942.138667pt;}
.y1b4{bottom:949.066667pt;}
.y12b{bottom:949.299067pt;}
.y17f{bottom:954.400000pt;}
.yc0{bottom:955.097200pt;}
.y168{bottom:958.411600pt;}
.y15a{bottom:958.423600pt;}
.yb6{bottom:958.481200pt;}
.y1e7{bottom:958.666667pt;}
.y8{bottom:959.466667pt;}
.yc3{bottom:962.933333pt;}
.y3a{bottom:962.938667pt;}
.y1b3{bottom:968.266667pt;}
.y12d{bottom:968.751067pt;}
.y125{bottom:972.279067pt;}
.y1e6{bottom:975.733333pt;}
.y6{bottom:980.800000pt;}
.yc1{bottom:982.313200pt;}
.y12c{bottom:982.539067pt;}
.y39{bottom:983.466667pt;}
.yb7{bottom:985.409200pt;}
.y12f{bottom:988.800000pt;}
.y1e5{bottom:993.066667pt;}
.y5{bottom:1003.733333pt;}
.y38{bottom:1004.266667pt;}
.y126{bottom:1005.519067pt;}
.yc2{bottom:1008.965200pt;}
.y1e4{bottom:1010.400000pt;}
.yb8{bottom:1012.337200pt;}
.y12e{bottom:1015.251067pt;}
.y3{bottom:1017.600000pt;}
.y37{bottom:1025.066667pt;}
.y1e3{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y36{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h1d{height:17.068000pt;}
.h1c{height:17.333333pt;}
.h1f{height:17.866667pt;}
.h16{height:19.200000pt;}
.h14{height:20.800000pt;}
.h5{height:20.801333pt;}
.h8{height:21.332000pt;}
.h4{height:27.840000pt;}
.h11{height:33.351562pt;}
.h10{height:34.453125pt;}
.h17{height:37.057292pt;}
.hd{height:37.120000pt;}
.h3{height:38.400000pt;}
.h2{height:39.040000pt;}
.h20{height:40.763021pt;}
.hf{height:41.333333pt;}
.h7{height:42.133333pt;}
.h21{height:42.944000pt;}
.h19{height:46.080000pt;}
.hc{height:46.400000pt;}
.h6{height:46.848000pt;}
.h12{height:47.109375pt;}
.h23{height:51.040000pt;}
.h15{height:52.343750pt;}
.ha{height:54.656000pt;}
.h24{height:55.625000pt;}
.hb{height:55.680000pt;}
.h1e{height:57.578125pt;}
.h9{height:64.960000pt;}
.h1b{height:66.750000pt;}
.h22{height:113.866667pt;}
.h18{height:229.866667pt;}
.he{height:288.000000pt;}
.h13{height:289.866667pt;}
.h1a{height:317.865333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.wd{width:226.133333pt;}
.wc{width:246.401333pt;}
.w6{width:294.133333pt;}
.w2{width:425.066667pt;}
.w9{width:503.200000pt;}
.wb{width:504.000000pt;}
.w7{width:509.066667pt;}
.wa{width:612.000000pt;}
.w8{width:617.066667pt;}
.w5{width:631.200000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x6f{left:9.253200pt;}
.x2a{left:17.600000pt;}
.x6b{left:20.946400pt;}
.x14{left:24.266667pt;}
.x6e{left:27.653067pt;}
.x71{left:41.059733pt;}
.x3{left:70.933333pt;}
.x6c{left:79.313067pt;}
.x1{left:81.333333pt;}
.x11{left:85.066667pt;}
.x9{left:86.933333pt;}
.x69{left:88.266667pt;}
.x79{left:89.604000pt;}
.x24{left:97.132267pt;}
.x78{left:99.738667pt;}
.x7a{left:102.144000pt;}
.x26{left:104.152267pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x7b{left:114.141333pt;}
.x40{left:116.961200pt;}
.x4e{left:119.200000pt;}
.x25{left:121.456267pt;}
.x12{left:123.477333pt;}
.x7c{left:127.209333pt;}
.x10{left:128.533333pt;}
.x22{left:135.124267pt;}
.x72{left:136.533200pt;}
.x50{left:138.149333pt;}
.x8d{left:141.381333pt;}
.x4a{left:148.919600pt;}
.x77{left:150.661333pt;}
.x27{left:153.124267pt;}
.x23{left:156.004267pt;}
.x51{left:162.149333pt;}
.x3b{left:165.201200pt;}
.x74{left:168.619733pt;}
.x6a{left:170.753067pt;}
.x49{left:172.763600pt;}
.x43{left:182.403733pt;}
.xc{left:189.333333pt;}
.x28{left:209.332267pt;}
.x73{left:212.700533pt;}
.xd{left:214.933333pt;}
.x4b{left:217.247600pt;}
.x3f{left:229.341200pt;}
.x6d{left:232.706133pt;}
.x4c{left:233.723600pt;}
.xb{left:237.333333pt;}
.x70{left:250.372800pt;}
.x3d{left:289.713200pt;}
.x3a{left:297.633200pt;}
.x15{left:306.400000pt;}
.x21{left:310.060267pt;}
.x20{left:312.424267pt;}
.x7d{left:314.678667pt;}
.x80{left:319.210667pt;}
.x7f{left:323.478667pt;}
.x7e{left:331.208000pt;}
.xe{left:332.533333pt;}
.x3c{left:334.365200pt;}
.x3e{left:337.689200pt;}
.xa{left:339.997333pt;}
.x52{left:348.920667pt;}
.x68{left:350.220933pt;}
.x1f{left:354.544267pt;}
.x4f{left:358.400000pt;}
.x17{left:365.428267pt;}
.x53{left:374.852667pt;}
.x54{left:377.804667pt;}
.x39{left:381.560800pt;}
.x2c{left:384.076400pt;}
.x2d{left:385.300400pt;}
.x2e{left:388.612400pt;}
.x2{left:396.800000pt;}
.x2f{left:398.416400pt;}
.xf{left:400.000000pt;}
.x41{left:401.311867pt;}
.x75{left:404.184000pt;}
.x18{left:405.916267pt;}
.x55{left:410.048667pt;}
.x81{left:410.950667pt;}
.x44{left:411.995600pt;}
.x56{left:413.000667pt;}
.x42{left:418.400000pt;}
.x16{left:420.533333pt;}
.x83{left:424.297333pt;}
.x30{left:425.800400pt;}
.x31{left:429.040400pt;}
.x57{left:430.520667pt;}
.x82{left:432.026667pt;}
.x58{left:433.472667pt;}
.x59{left:442.148667pt;}
.x32{left:443.320400pt;}
.x5a{left:448.040667pt;}
.x5b{left:453.932667pt;}
.x5c{left:456.716667pt;}
.x76{left:458.933333pt;}
.x19{left:467.608267pt;}
.x5d{left:468.500667pt;}
.x45{left:474.875600pt;}
.x5{left:496.000000pt;}
.x1c{left:508.096267pt;}
.x5e{left:509.420667pt;}
.x87{left:517.078667pt;}
.x84{left:518.692000pt;}
.x85{left:520.290667pt;}
.x86{left:526.685333pt;}
.x88{left:528.005333pt;}
.x5f{left:532.664667pt;}
.x60{left:541.508667pt;}
.x35{left:543.448400pt;}
.x33{left:544.612400pt;}
.x34{left:546.556400pt;}
.x1a{left:548.584267pt;}
.x61{left:561.968667pt;}
.x36{left:568.732400pt;}
.x62{left:570.980667pt;}
.x37{left:577.180400pt;}
.x63{left:588.500667pt;}
.x1b{left:589.636267pt;}
.x46{left:593.099600pt;}
.x64{left:597.176667pt;}
.x1d{left:599.896267pt;}
.x38{left:601.168400pt;}
.x47{left:608.543600pt;}
.x7{left:609.600000pt;}
.x66{left:614.528667pt;}
.x65{left:617.636667pt;}
.x4d{left:625.066667pt;}
.x89{left:627.474667pt;}
.x67{left:629.264667pt;}
.x8c{left:633.077333pt;}
.x8b{left:636.274667pt;}
.x13{left:639.200000pt;}
.x8a{left:644.004000pt;}
.x29{left:645.066667pt;}
.x1e{left:650.644267pt;}
.x48{left:679.559600pt;}
.x2b{left:694.666667pt;}
}




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