
    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_5a0dff09ea60280dac8a3a60.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.138184;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_ecf8d3d398419a8de316c949.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904785;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_28758cb4c5c49703abcb3acd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.712891;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_a5d57407804b9c5e58770931.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_6fb4f45ae284281421ab4edd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905762;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_db3be23c6e82c0da2bc143c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.902832;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_48cd5910afb3530f78d7047b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_e9bca02350c05dfb19ac3393.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692383;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_2f63719c0af2dcd836ef6d9b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.667480;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_66c2adce85d1e6be0f534a01.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.673000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v6{vertical-align:-37.260000px;}
.v8{vertical-align:-10.260000px;}
.v3{vertical-align:-8.999400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.999400px;}
.v2{vertical-align:17.832600px;}
.v1{vertical-align:19.808400px;}
.v7{vertical-align:27.000000px;}
.v5{vertical-align:37.260000px;}
.ls31{letter-spacing:-8.262000px;}
.ls28{letter-spacing:-8.100000px;}
.ls30{letter-spacing:-4.495500px;}
.ls40{letter-spacing:-1.998000px;}
.ls27{letter-spacing:-1.350000px;}
.ls19{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.054000px;}
.ls1e{letter-spacing:0.060000px;}
.ls75{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.120000px;}
.ls69{letter-spacing:0.126000px;}
.ls3e{letter-spacing:0.144600px;}
.ls2{letter-spacing:0.162000px;}
.ls16{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.199200px;}
.ls5{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.300000px;}
.ls2f{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.378000px;}
.ls24{letter-spacing:0.420000px;}
.ls4{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.486000px;}
.ls44{letter-spacing:0.539400px;}
.ls9{letter-spacing:0.540000px;}
.ls4d{letter-spacing:0.546000px;}
.ls6f{letter-spacing:0.594000px;}
.lsf{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.660000px;}
.ls72{letter-spacing:0.702000px;}
.ls20{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.756000px;}
.ls23{letter-spacing:0.780000px;}
.ls6e{letter-spacing:0.810000px;}
.ls2a{letter-spacing:0.840000px;}
.ls4e{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.900000px;}
.ls0{letter-spacing:0.918000px;}
.ls2c{letter-spacing:0.960000px;}
.ls6b{letter-spacing:0.972000px;}
.ls17{letter-spacing:1.020000px;}
.ls52{letter-spacing:1.026000px;}
.ls14{letter-spacing:1.080000px;}
.ls6d{letter-spacing:1.134000px;}
.lse{letter-spacing:1.140000px;}
.ls74{letter-spacing:1.188000px;}
.lsd{letter-spacing:1.200000px;}
.ls53{letter-spacing:1.242000px;}
.ls18{letter-spacing:1.260000px;}
.ls50{letter-spacing:1.296000px;}
.ls41{letter-spacing:1.320000px;}
.ls1b{letter-spacing:1.380000px;}
.ls46{letter-spacing:1.404000px;}
.ls29{letter-spacing:1.440000px;}
.ls48{letter-spacing:1.458000px;}
.ls21{letter-spacing:1.500000px;}
.ls6c{letter-spacing:1.512000px;}
.lsc{letter-spacing:1.560000px;}
.ls22{letter-spacing:1.620000px;}
.ls4f{letter-spacing:1.674000px;}
.ls25{letter-spacing:1.680000px;}
.ls49{letter-spacing:1.728000px;}
.ls2d{letter-spacing:1.740000px;}
.ls73{letter-spacing:1.782000px;}
.ls42{letter-spacing:1.800000px;}
.ls76{letter-spacing:1.836000px;}
.ls1d{letter-spacing:1.860000px;}
.ls45{letter-spacing:1.890000px;}
.ls6a{letter-spacing:1.920000px;}
.ls47{letter-spacing:1.960200px;}
.ls2b{letter-spacing:1.980000px;}
.ls70{letter-spacing:1.998000px;}
.ls4c{letter-spacing:2.052000px;}
.ls1c{letter-spacing:2.100000px;}
.ls26{letter-spacing:2.160000px;}
.ls34{letter-spacing:2.220000px;}
.ls32{letter-spacing:2.280000px;}
.ls4b{letter-spacing:2.430000px;}
.ls43{letter-spacing:2.460000px;}
.ls51{letter-spacing:2.592000px;}
.ls33{letter-spacing:2.640000px;}
.ls2e{letter-spacing:2.646000px;}
.ls71{letter-spacing:2.808000px;}
.ls4a{letter-spacing:3.132000px;}
.ls79{letter-spacing:34.182000px;}
.ls77{letter-spacing:47.682000px;}
.ls7a{letter-spacing:50.706000px;}
.ls78{letter-spacing:51.678000px;}
.ls7c{letter-spacing:52.704000px;}
.ls7d{letter-spacing:59.670000px;}
.ls7b{letter-spacing:60.696000px;}
.ls80{letter-spacing:61.668000px;}
.ls7e{letter-spacing:64.206000px;}
.ls67{letter-spacing:65.718000px;}
.ls81{letter-spacing:67.176000px;}
.ls68{letter-spacing:68.742000px;}
.ls7f{letter-spacing:73.170000px;}
.ls5e{letter-spacing:77.404200px;}
.ls82{letter-spacing:85.158000px;}
.ls83{letter-spacing:97.092000px;}
.ls66{letter-spacing:105.462000px;}
.ls56{letter-spacing:120.906000px;}
.ls3b{letter-spacing:129.600000px;}
.ls3a{letter-spacing:130.572000px;}
.ls39{letter-spacing:143.100000px;}
.ls54{letter-spacing:168.588000px;}
.ls55{letter-spacing:179.712000px;}
.ls3c{letter-spacing:214.596000px;}
.ls3d{letter-spacing:228.096000px;}
.ls5c{letter-spacing:298.945800px;}
.ls35{letter-spacing:315.576000px;}
.ls38{letter-spacing:316.548000px;}
.ls36{letter-spacing:329.076000px;}
.ls37{letter-spacing:342.576000px;}
.ls3f{letter-spacing:355.698000px;}
.ls58{letter-spacing:421.047000px;}
.ls5d{letter-spacing:488.251800px;}
.ls5f{letter-spacing:491.310000px;}
.ls60{letter-spacing:554.507400px;}
.ls5a{letter-spacing:593.451600px;}
.ls59{letter-spacing:625.356000px;}
.ls5b{letter-spacing:626.410200px;}
.ls63{letter-spacing:645.526800px;}
.ls64{letter-spacing:656.416200px;}
.ls57{letter-spacing:673.396800px;}
.ls65{letter-spacing:716.428200px;}
.ls61{letter-spacing:722.307600px;}
.ls62{letter-spacing:740.501400px;}
.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;}
}
.ws13{word-spacing:-156.600000px;}
.ws34{word-spacing:-60.000000px;}
.ws8{word-spacing:-16.500000px;}
.ws9{word-spacing:-15.720000px;}
.ws7{word-spacing:-15.480000px;}
.ws3f{word-spacing:-15.174000px;}
.wsc{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.418000px;}
.ws3e{word-spacing:-13.770000px;}
.ws2{word-spacing:-13.662000px;}
.ws3{word-spacing:-13.500000px;}
.ws21{word-spacing:-11.046000px;}
.ws35{word-spacing:-10.626000px;}
.ws0{word-spacing:-10.500000px;}
.ws5{word-spacing:-10.287000px;}
.ws1c{word-spacing:-9.450000px;}
.wsa{word-spacing:-1.134000px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:6.196500px;}
.wsb{word-spacing:6.398700px;}
.ws14{word-spacing:13.446000px;}
.ws2c{word-spacing:15.120000px;}
.ws2d{word-spacing:16.368000px;}
.ws33{word-spacing:16.560000px;}
.ws46{word-spacing:20.628000px;}
.ws37{word-spacing:20.682000px;}
.ws29{word-spacing:20.736000px;}
.ws74{word-spacing:20.898000px;}
.ws42{word-spacing:21.600000px;}
.ws4e{word-spacing:22.194000px;}
.ws49{word-spacing:22.626000px;}
.ws71{word-spacing:22.680000px;}
.ws6e{word-spacing:23.706000px;}
.ws2f{word-spacing:24.576000px;}
.ws6c{word-spacing:24.678000px;}
.ws2e{word-spacing:24.960000px;}
.ws75{word-spacing:26.730000px;}
.ws3a{word-spacing:29.700000px;}
.wsf{word-spacing:32.076000px;}
.ws5b{word-spacing:34.128000px;}
.ws24{word-spacing:34.290000px;}
.ws38{word-spacing:34.938000px;}
.ws4b{word-spacing:35.100000px;}
.ws54{word-spacing:35.640000px;}
.ws44{word-spacing:37.206000px;}
.ws31{word-spacing:37.344000px;}
.ws5c{word-spacing:37.476000px;}
.ws65{word-spacing:38.178000px;}
.ws57{word-spacing:39.636000px;}
.ws5e{word-spacing:42.606000px;}
.ws2a{word-spacing:43.092000px;}
.ws40{word-spacing:43.146000px;}
.ws3d{word-spacing:43.200000px;}
.ws4d{word-spacing:45.576000px;}
.ws56{word-spacing:46.170000px;}
.ws5f{word-spacing:46.494000px;}
.ws4a{word-spacing:46.602000px;}
.ws59{word-spacing:47.196000px;}
.ws73{word-spacing:47.682000px;}
.ws5d{word-spacing:47.736000px;}
.ws63{word-spacing:50.706000px;}
.ws25{word-spacing:51.138000px;}
.ws66{word-spacing:51.624000px;}
.ws27{word-spacing:52.110000px;}
.ws39{word-spacing:52.218000px;}
.ws64{word-spacing:52.596000px;}
.wsd{word-spacing:52.920000px;}
.ws51{word-spacing:53.136000px;}
.ws6a{word-spacing:53.676000px;}
.ws43{word-spacing:56.106000px;}
.ws47{word-spacing:59.076000px;}
.ws68{word-spacing:62.694000px;}
.ws50{word-spacing:62.748000px;}
.ws6b{word-spacing:62.910000px;}
.ws4c{word-spacing:64.530000px;}
.ws61{word-spacing:65.124000px;}
.ws3c{word-spacing:69.444000px;}
.ws69{word-spacing:71.658000px;}
.ws2b{word-spacing:73.872000px;}
.ws1b{word-spacing:75.600000px;}
.ws45{word-spacing:79.488000px;}
.wse{word-spacing:82.836000px;}
.ws70{word-spacing:83.592000px;}
.ws58{word-spacing:86.130000px;}
.ws3b{word-spacing:87.426000px;}
.ws48{word-spacing:88.506000px;}
.ws10{word-spacing:102.600000px;}
.ws18{word-spacing:103.572000px;}
.ws15{word-spacing:107.568000px;}
.ws12{word-spacing:116.100000px;}
.ws16{word-spacing:121.068000px;}
.ws11{word-spacing:129.600000px;}
.ws72{word-spacing:146.718000px;}
.ws5a{word-spacing:149.094000px;}
.ws36{word-spacing:181.440000px;}
.ws26{word-spacing:182.412000px;}
.ws1d{word-spacing:187.596000px;}
.ws1e{word-spacing:188.622000px;}
.ws20{word-spacing:201.096000px;}
.ws23{word-spacing:228.744000px;}
.ws6f{word-spacing:265.734000px;}
.ws53{word-spacing:267.354000px;}
.ws60{word-spacing:273.456000px;}
.ws17{word-spacing:277.668000px;}
.ws67{word-spacing:280.746000px;}
.ws4f{word-spacing:282.312000px;}
.ws62{word-spacing:282.474000px;}
.ws19{word-spacing:286.146000px;}
.ws1a{word-spacing:291.168000px;}
.ws52{word-spacing:291.330000px;}
.ws6d{word-spacing:292.734000px;}
.ws55{word-spacing:294.354000px;}
.ws41{word-spacing:297.324000px;}
.ws28{word-spacing:455.814000px;}
.ws1f{word-spacing:461.268000px;}
.ws22{word-spacing:465.804000px;}
.ws30{word-spacing:521.760000px;}
.ws32{word-spacing:532.464000px;}
._46{margin-left:-143.100000px;}
._47{margin-left:-14.124000px;}
._42{margin-left:-12.876000px;}
._9d{margin-left:-10.187400px;}
._c{margin-left:-8.364000px;}
._2{margin-left:-7.104000px;}
._4{margin-left:-5.244000px;}
._1{margin-left:-3.648000px;}
._0{margin-left:-2.496000px;}
._3{margin-left:-1.086600px;}
._5{width:1.056000px;}
._a{width:2.520000px;}
._d{width:3.528000px;}
._57{width:4.572000px;}
._6{width:8.586000px;}
._84{width:20.592000px;}
._8f{width:21.835800px;}
._91{width:24.736200px;}
._83{width:28.560000px;}
._87{width:30.293400px;}
._88{width:32.910600px;}
._4c{width:34.992000px;}
._29{width:36.612000px;}
._7e{width:38.208000px;}
._8d{width:40.452000px;}
._79{width:41.676000px;}
._86{width:43.128000px;}
._7{width:44.550000px;}
._bb{width:45.790200px;}
._b1{width:47.634600px;}
._80{width:49.344000px;}
._ae{width:50.712600px;}
._7c{width:52.014000px;}
._b6{width:53.106000px;}
._12{width:54.114600px;}
._b4{width:55.439400px;}
._64{width:56.592000px;}
._ad{width:59.443200px;}
._aa{width:60.696000px;}
._b3{width:62.849400px;}
._59{width:64.149000px;}
._f{width:65.898600px;}
._7a{width:67.006800px;}
._9b{width:68.742000px;}
._b7{width:69.745200px;}
._99{width:70.787400px;}
._ac{width:72.085200px;}
._5c{width:74.062800px;}
._5b{width:75.573000px;}
._ba{width:76.755600px;}
._4d{width:78.630600px;}
._54{width:80.082000px;}
._3c{width:81.378000px;}
._7b{width:83.742000px;}
._b9{width:85.164600px;}
._21{width:86.491200px;}
._44{width:89.100000px;}
._18{width:91.644600px;}
._5a{width:93.089400px;}
._20{width:94.878000px;}
._b0{width:99.264000px;}
._5d{width:101.230800px;}
._43{width:102.600000px;}
._a8{width:103.854000px;}
._60{width:105.102600px;}
._36{width:108.114600px;}
._b8{width:111.220800px;}
._4e{width:112.644600px;}
._45{width:116.100000px;}
._48{width:117.420000px;}
._85{width:118.525200px;}
._81{width:122.395800px;}
._55{width:123.666600px;}
._3e{width:129.600000px;}
._6a{width:131.959200px;}
._32{width:135.378000px;}
._5e{width:140.792400px;}
._41{width:143.100000px;}
._25{width:145.644600px;}
._a7{width:150.396600px;}
._6b{width:156.222000px;}
._40{width:165.840600px;}
._9a{width:170.874600px;}
._4f{width:172.615800px;}
._90{width:176.125200px;}
._62{width:183.222000px;}
._6e{width:185.220000px;}
._58{width:196.530600px;}
._16{width:199.644600px;}
._52{width:208.338600px;}
._22{width:213.144600px;}
._51{width:214.596000px;}
._7f{width:216.013200px;}
._1a{width:220.812600px;}
._27{width:226.644600px;}
._53{width:228.096000px;}
._96{width:229.518600px;}
._5f{width:236.412000px;}
._9c{width:241.548600px;}
._75{width:244.662600px;}
._7d{width:246.169200px;}
._1f{width:261.312600px;}
._92{width:264.109200px;}
._4a{width:272.646000px;}
._3b{width:274.812600px;}
._a4{width:276.156000px;}
._8b{width:277.309200px;}
._bc{width:279.234000px;}
._49{width:282.318600px;}
._3d{width:286.146000px;}
._b5{width:287.418000px;}
._35{width:288.576000px;}
._a0{width:289.656000px;}
._1d{width:294.222600px;}
._af{width:295.812000px;}
._3f{width:300.270000px;}
._31{width:301.812600px;}
._93{width:305.424000px;}
._8c{width:309.373200px;}
._ab{width:310.824000px;}
._4b{width:313.146000px;}
._11{width:315.312600px;}
._a9{width:322.338000px;}
._14{width:328.812600px;}
._89{width:330.589200px;}
._8a{width:338.749200px;}
._24{width:342.312600px;}
._8e{width:344.029200px;}
._23{width:348.330600px;}
._a6{width:350.952600px;}
._68{width:353.190600px;}
._b2{width:365.088000px;}
._94{width:366.144000px;}
._9f{width:370.926000px;}
._95{width:382.038000px;}
._a2{width:384.702600px;}
._e{width:396.636600px;}
._17{width:417.942600px;}
._82{width:420.750600px;}
._37{width:423.228600px;}
._97{width:427.374600px;}
._56{width:464.946600px;}
._a5{width:466.458600px;}
._a1{width:473.208600px;}
._63{width:476.910600px;}
._1e{width:497.196600px;}
._98{width:501.966600px;}
._26{width:513.720600px;}
._34{width:529.308000px;}
._69{width:542.664600px;}
._6c{width:545.688600px;}
._2a{width:551.304600px;}
._10{width:581.166600px;}
._38{width:585.864600px;}
._1b{width:590.238600px;}
._50{width:592.494600px;}
._78{width:604.332600px;}
._6d{width:610.272600px;}
._19{width:620.886600px;}
._1c{width:623.232600px;}
._2d{width:642.355200px;}
._33{width:644.238600px;}
._66{width:649.206600px;}
._2e{width:653.202600px;}
._13{width:663.732600px;}
._15{width:668.838600px;}
._65{width:679.908600px;}
._67{width:682.200600px;}
._39{width:693.810600px;}
._30{width:699.696600px;}
._71{width:701.323200px;}
._72{width:712.170600px;}
._2b{width:719.136600px;}
._3a{width:724.884000px;}
._61{width:727.860600px;}
._2c{width:737.280600px;}
._2f{width:740.250600px;}
._74{width:757.206600px;}
._28{width:761.256600px;}
._6f{width:778.104600px;}
._70{width:796.248600px;}
._73{width:799.218600px;}
._76{width:802.188600px;}
._77{width:832.158600px;}
._9e{width:873.954600px;}
._8{width:1158.600600px;}
._a3{width:1163.922600px;}
._b{width:1167.657600px;}
._9{width:2482.110000px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(51,102,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:37.800000px;}
.fs4{font-size:40.500000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:74.409450px;}
.y132{bottom:74.413800px;}
.yc7{bottom:74.414250px;}
.y35{bottom:74.414400px;}
.y196{bottom:74.414550px;}
.y26{bottom:118.018200px;}
.y239{bottom:121.138200px;}
.y197{bottom:121.181400px;}
.y158{bottom:121.196250px;}
.yd7{bottom:121.204050px;}
.ybd{bottom:121.208550px;}
.y15d{bottom:121.211250px;}
.ye9{bottom:121.279050px;}
.y146{bottom:121.279950px;}
.y20a{bottom:121.433400px;}
.y1bc{bottom:121.714350px;}
.y79{bottom:121.730250px;}
.y92{bottom:121.763550px;}
.y10d{bottom:121.942950px;}
.y66{bottom:122.120250px;}
.y199{bottom:123.673500px;}
.y19a{bottom:123.685500px;}
.y19b{bottom:123.697500px;}
.y19c{bottom:123.709500px;}
.y19d{bottom:123.733500px;}
.y19e{bottom:123.745500px;}
.y19f{bottom:123.757500px;}
.y1a0{bottom:123.769500px;}
.y1a1{bottom:123.781500px;}
.y1a2{bottom:123.805500px;}
.y1a3{bottom:123.817500px;}
.y1a4{bottom:123.829500px;}
.y28e{bottom:128.895300px;}
.y25{bottom:133.637700px;}
.y238{bottom:135.664200px;}
.yd6{bottom:139.279050px;}
.y145{bottom:139.279950px;}
.ybc{bottom:139.298550px;}
.ye8{bottom:139.339050px;}
.y209{bottom:139.523400px;}
.y157{bottom:139.706250px;}
.y1bb{bottom:139.714350px;}
.y15c{bottom:139.721250px;}
.y78{bottom:139.730250px;}
.y91{bottom:139.763550px;}
.y10c{bottom:139.942950px;}
.y65{bottom:140.120250px;}
.y2c0{bottom:141.747600px;}
.y2de{bottom:143.447850px;}
.y28d{bottom:147.525300px;}
.y24{bottom:149.257200px;}
.y237{bottom:156.940200px;}
.y144{bottom:157.279950px;}
.yd5{bottom:157.354050px;}
.ybb{bottom:157.388550px;}
.ye7{bottom:157.399050px;}
.y208{bottom:157.613400px;}
.y1ba{bottom:157.714350px;}
.y77{bottom:157.730250px;}
.y90{bottom:157.763550px;}
.y10b{bottom:157.942950px;}
.y64{bottom:158.120250px;}
.y156{bottom:158.216250px;}
.y15b{bottom:158.231250px;}
.y2bf{bottom:160.377600px;}
.y2dd{bottom:162.077850px;}
.y23{bottom:162.757200px;}
.y28c{bottom:166.155300px;}
.y236{bottom:171.466200px;}
.y143{bottom:175.279950px;}
.yd4{bottom:175.429050px;}
.ye6{bottom:175.459050px;}
.yba{bottom:175.478550px;}
.y207{bottom:175.703400px;}
.y1b9{bottom:175.714350px;}
.y76{bottom:175.730250px;}
.y8f{bottom:175.763550px;}
.y10a{bottom:175.942950px;}
.y63{bottom:176.120250px;}
.y155{bottom:176.726250px;}
.y15a{bottom:176.741250px;}
.y22{bottom:178.376700px;}
.y2be{bottom:179.007600px;}
.y2dc{bottom:180.707850px;}
.y28b{bottom:184.785300px;}
.y235{bottom:185.992200px;}
.y198{bottom:186.397500px;}
.y21{bottom:191.876700px;}
.y142{bottom:193.279950px;}
.yd3{bottom:193.504050px;}
.ye5{bottom:193.519050px;}
.yb9{bottom:193.568550px;}
.y1b8{bottom:193.714350px;}
.y75{bottom:193.730250px;}
.y8e{bottom:193.763550px;}
.y206{bottom:193.793400px;}
.y109{bottom:193.942950px;}
.y154{bottom:195.236250px;}
.y159{bottom:195.251250px;}
.y2bd{bottom:197.637600px;}
.y2db{bottom:199.337850px;}
.y234{bottom:200.518200px;}
.y28a{bottom:203.415300px;}
.y20{bottom:207.496200px;}
.y141{bottom:211.279950px;}
.yd2{bottom:211.579050px;}
.yb8{bottom:211.658550px;}
.y1b7{bottom:211.714350px;}
.y74{bottom:211.730250px;}
.y8d{bottom:211.763550px;}
.y205{bottom:211.883400px;}
.y62{bottom:212.120250px;}
.y2bc{bottom:216.267600px;}
.y2da{bottom:217.967850px;}
.y233{bottom:221.794200px;}
.y289{bottom:222.045300px;}
.y140{bottom:229.279950px;}
.ye4{bottom:229.639050px;}
.yd1{bottom:229.654050px;}
.y1b6{bottom:229.714350px;}
.y73{bottom:229.730250px;}
.yb7{bottom:229.748550px;}
.y8c{bottom:229.763550px;}
.y204{bottom:229.973400px;}
.y61{bottom:230.120250px;}
.y2bb{bottom:234.897600px;}
.y232{bottom:236.320200px;}
.y2d9{bottom:236.597850px;}
.y288{bottom:240.675300px;}
.y130{bottom:244.173000px;}
.y13f{bottom:247.279950px;}
.ye3{bottom:247.699050px;}
.y1b5{bottom:247.714350px;}
.yd0{bottom:247.729050px;}
.y72{bottom:247.730250px;}
.y8b{bottom:247.763550px;}
.yb6{bottom:247.838550px;}
.y203{bottom:248.063400px;}
.y60{bottom:248.120250px;}
.y231{bottom:250.846200px;}
.y33{bottom:251.698950px;}
.y194{bottom:251.949150px;}
.y2ba{bottom:253.527600px;}
.y2d8{bottom:255.227850px;}
.y287{bottom:259.305300px;}
.y13e{bottom:265.279950px;}
.y230{bottom:265.372200px;}
.y12f{bottom:265.462950px;}
.y1bf{bottom:265.714350px;}
.y71{bottom:265.730250px;}
.ye2{bottom:265.759050px;}
.y8a{bottom:265.763550px;}
.ycf{bottom:265.804050px;}
.yb5{bottom:265.928550px;}
.y5f{bottom:266.120250px;}
.y202{bottom:266.153400px;}
.y32{bottom:269.698950px;}
.y193{bottom:270.579150px;}
.y2b9{bottom:272.157600px;}
.y2d7{bottom:273.857850px;}
.y286{bottom:277.935300px;}
.y13d{bottom:283.279950px;}
.y1b4{bottom:283.714350px;}
.y70{bottom:283.730250px;}
.y89{bottom:283.763550px;}
.ye1{bottom:283.819050px;}
.yce{bottom:283.879050px;}
.yb4{bottom:284.018550px;}
.y5e{bottom:284.120250px;}
.y201{bottom:284.243400px;}
.y12e{bottom:286.765950px;}
.y31{bottom:287.698950px;}
.y192{bottom:289.209150px;}
.y2b8{bottom:290.787600px;}
.y2d6{bottom:292.487850px;}
.y22f{bottom:295.652700px;}
.y285{bottom:296.565300px;}
.y13c{bottom:301.279950px;}
.y1be{bottom:301.714350px;}
.y6f{bottom:301.730250px;}
.y88{bottom:301.763550px;}
.ye0{bottom:301.879050px;}
.ycd{bottom:301.954050px;}
.yb3{bottom:302.108550px;}
.y5d{bottom:302.120250px;}
.y200{bottom:302.333400px;}
.y30{bottom:305.698950px;}
.y191{bottom:307.839150px;}
.y2b7{bottom:309.417600px;}
.y2d5{bottom:311.117850px;}
.y284{bottom:315.195300px;}
.y12d{bottom:316.573950px;}
.y13b{bottom:319.279950px;}
.y1bd{bottom:319.714350px;}
.y6e{bottom:319.730250px;}
.y87{bottom:319.763550px;}
.ydf{bottom:319.939050px;}
.ycc{bottom:320.029050px;}
.y5c{bottom:320.120250px;}
.yb2{bottom:320.198550px;}
.y1ff{bottom:320.423400px;}
.y190{bottom:321.339150px;}
.y2f{bottom:323.698950px;}
.y2b6{bottom:328.047600px;}
.y2d4{bottom:329.747850px;}
.y283{bottom:333.825300px;}
.y13a{bottom:337.279950px;}
.y1b3{bottom:337.714350px;}
.y6d{bottom:337.730250px;}
.y86{bottom:337.763550px;}
.y12c{bottom:337.876950px;}
.yde{bottom:337.999050px;}
.ycb{bottom:338.104050px;}
.y5b{bottom:338.120250px;}
.yb1{bottom:338.288550px;}
.y1fe{bottom:338.513400px;}
.y18f{bottom:339.969150px;}
.y2e{bottom:341.698950px;}
.y22e{bottom:346.183200px;}
.y2b5{bottom:346.677600px;}
.y2d3{bottom:348.377850px;}
.y282{bottom:352.455300px;}
.y139{bottom:355.279950px;}
.y1b2{bottom:355.714350px;}
.y6c{bottom:355.730250px;}
.y85{bottom:355.763550px;}
.ydd{bottom:356.059050px;}
.y5a{bottom:356.120250px;}
.yb0{bottom:356.378550px;}
.y1fd{bottom:356.603400px;}
.y18e{bottom:358.599150px;}
.y12b{bottom:359.176950px;}
.y2d{bottom:359.698950px;}
.y22d{bottom:360.709200px;}
.y2b4{bottom:365.307600px;}
.y2d2{bottom:367.007850px;}
.y281{bottom:371.085300px;}
.y138{bottom:373.279950px;}
.y1b1{bottom:373.714350px;}
.y6b{bottom:373.730250px;}
.y84{bottom:373.763550px;}
.ydc{bottom:374.119050px;}
.y59{bottom:374.120250px;}
.yca{bottom:374.179050px;}
.yaf{bottom:374.468550px;}
.y1fc{bottom:374.693400px;}
.y22c{bottom:375.235200px;}
.y18d{bottom:377.229150px;}
.y2c{bottom:377.698950px;}
.y12a{bottom:380.479950px;}
.y2b3{bottom:383.937600px;}
.y2d1{bottom:385.637850px;}
.y22b{bottom:389.761200px;}
.y137{bottom:391.279950px;}
.y1b0{bottom:391.714350px;}
.y6a{bottom:391.730250px;}
.y83{bottom:391.763550px;}
.y58{bottom:392.120250px;}
.ydb{bottom:392.179050px;}
.yae{bottom:392.558550px;}
.y1fb{bottom:392.783400px;}
.y2b{bottom:395.698950px;}
.y18c{bottom:395.859150px;}
.y280{bottom:400.345650px;}
.y2b2{bottom:402.567600px;}
.y2d0{bottom:404.267850px;}
.y22a{bottom:404.287200px;}
.y129{bottom:406.694400px;}
.y136{bottom:409.279950px;}
.y1af{bottom:409.714350px;}
.y69{bottom:409.730250px;}
.y57{bottom:410.120250px;}
.yda{bottom:410.239050px;}
.yad{bottom:410.648550px;}
.y1fa{bottom:410.873400px;}
.y2a{bottom:413.698950px;}
.y18b{bottom:414.489150px;}
.y27f{bottom:418.341150px;}
.y229{bottom:418.813200px;}
.y2b1{bottom:421.197600px;}
.y2cf{bottom:422.897850px;}
.y135{bottom:427.279950px;}
.y1ae{bottom:427.714350px;}
.y68{bottom:427.730250px;}
.y82{bottom:427.763550px;}
.y128{bottom:427.997400px;}
.y56{bottom:428.120250px;}
.yc9{bottom:428.254050px;}
.yd9{bottom:428.299050px;}
.yac{bottom:428.738550px;}
.y1f9{bottom:428.963400px;}
.y29{bottom:431.698950px;}
.y18a{bottom:433.119150px;}
.y228{bottom:433.339200px;}
.y27e{bottom:436.341150px;}
.y2b0{bottom:439.827600px;}
.y2ce{bottom:441.527850px;}
.y134{bottom:445.279950px;}
.y1ad{bottom:445.714350px;}
.y67{bottom:445.730250px;}
.y81{bottom:445.763550px;}
.y55{bottom:446.120250px;}
.yc8{bottom:446.329050px;}
.yd8{bottom:446.359050px;}
.yab{bottom:446.828550px;}
.y1f8{bottom:447.053400px;}
.y227{bottom:447.865200px;}
.y127{bottom:449.300400px;}
.y28{bottom:449.698950px;}
.y189{bottom:451.749150px;}
.y27d{bottom:454.341150px;}
.y2af{bottom:458.457600px;}
.y2cd{bottom:460.157850px;}
.y226{bottom:462.391200px;}
.y133{bottom:463.279950px;}
.y1ac{bottom:463.714350px;}
.y80{bottom:463.763550px;}
.y54{bottom:464.120250px;}
.yaa{bottom:464.918550px;}
.y1f7{bottom:465.143400px;}
.y27{bottom:467.698950px;}
.y188{bottom:470.379150px;}
.y126{bottom:470.603400px;}
.y7c{bottom:476.541300px;}
.y225{bottom:476.917200px;}
.y2ae{bottom:477.087600px;}
.y2cc{bottom:478.787850px;}
.y1ab{bottom:481.714350px;}
.y7f{bottom:481.763550px;}
.y53{bottom:482.120250px;}
.ya9{bottom:483.008550px;}
.y1f6{bottom:483.233400px;}
.y187{bottom:489.009150px;}
.y7b{bottom:490.041300px;}
.y224{bottom:491.443200px;}
.y108{bottom:493.843650px;}
.y2ad{bottom:495.717600px;}
.y2cb{bottom:497.417850px;}
.y1aa{bottom:499.714350px;}
.y7e{bottom:499.763550px;}
.y52{bottom:500.120250px;}
.y125{bottom:500.411400px;}
.ya8{bottom:501.098550px;}
.y1f5{bottom:501.323400px;}
.y7a{bottom:503.541300px;}
.y223{bottom:505.969200px;}
.y186{bottom:507.639150px;}
.y153{bottom:508.129050px;}
.y107{bottom:512.473650px;}
.y2ac{bottom:514.347600px;}
.y2ca{bottom:516.047850px;}
.y1a9{bottom:517.714350px;}
.y7d{bottom:517.763550px;}
.y51{bottom:518.120250px;}
.ya7{bottom:519.188550px;}
.y25f{bottom:519.245400px;}
.y1f4{bottom:519.413400px;}
.y27c{bottom:519.717900px;}
.y222{bottom:520.495200px;}
.y1e{bottom:521.486100px;}
.y152{bottom:521.629050px;}
.y124{bottom:521.714400px;}
.y185{bottom:526.269150px;}
.y106{bottom:531.103650px;}
.y25e{bottom:532.745400px;}
.y2ab{bottom:532.977600px;}
.y27b{bottom:533.217900px;}
.y2c9{bottom:534.677850px;}
.y1d{bottom:534.986100px;}
.y221{bottom:535.021200px;}
.y151{bottom:535.129050px;}
.y1a8{bottom:535.714350px;}
.y50{bottom:536.120250px;}
.ya6{bottom:537.278550px;}
.y1f3{bottom:537.503400px;}
.y123{bottom:543.017400px;}
.y184{bottom:544.899150px;}
.yc5{bottom:546.871800px;}
.y150{bottom:548.629050px;}
.y220{bottom:549.547200px;}
.y105{bottom:549.733650px;}
.y2aa{bottom:551.607600px;}
.y25d{bottom:552.995400px;}
.y2c8{bottom:553.307850px;}
.y1a7{bottom:553.714350px;}
.y4f{bottom:554.120250px;}
.ya5{bottom:555.368550px;}
.y1f2{bottom:555.593400px;}
.yc4{bottom:560.371800px;}
.y14f{bottom:562.129050px;}
.y183{bottom:563.529150px;}
.y21f{bottom:564.073200px;}
.y122{bottom:564.320400px;}
.y25c{bottom:566.495400px;}
.y104{bottom:568.363650px;}
.y2a9{bottom:570.237600px;}
.y1a6{bottom:571.714350px;}
.y2c7{bottom:571.937850px;}
.y4e{bottom:572.120250px;}
.ya4{bottom:573.458550px;}
.y1f1{bottom:573.683400px;}
.yc3{bottom:573.871800px;}
.y1c{bottom:573.987600px;}
.y14e{bottom:575.629050px;}
.y21e{bottom:578.599200px;}
.y25b{bottom:579.995400px;}
.y182{bottom:582.159150px;}
.y103{bottom:586.993650px;}
.y1b{bottom:587.487600px;}
.y2a8{bottom:588.867600px;}
.y14d{bottom:589.129050px;}
.y1a5{bottom:589.714350px;}
.y2c6{bottom:590.567850px;}
.ya3{bottom:591.548550px;}
.y1f0{bottom:591.773400px;}
.y21d{bottom:593.125200px;}
.y27a{bottom:593.495400px;}
.y121{bottom:594.128400px;}
.y25a{bottom:600.245400px;}
.y181{bottom:600.789150px;}
.y1a{bottom:600.987600px;}
.y14c{bottom:602.629050px;}
.y102{bottom:605.623650px;}
.y279{bottom:606.995400px;}
.y2a7{bottom:607.497600px;}
.y21c{bottom:607.651200px;}
.y4d{bottom:608.120250px;}
.y2c5{bottom:609.197850px;}
.ya2{bottom:609.638550px;}
.y1ef{bottom:609.863400px;}
.y259{bottom:613.745400px;}
.y19{bottom:614.487600px;}
.y120{bottom:615.431400px;}
.y14b{bottom:616.129050px;}
.y180{bottom:619.419150px;}
.y278{bottom:620.495400px;}
.y101{bottom:624.253650px;}
.y2a6{bottom:626.127600px;}
.ya1{bottom:627.728550px;}
.y2c4{bottom:627.827850px;}
.y1ee{bottom:627.953400px;}
.y18{bottom:627.987600px;}
.y14a{bottom:629.629050px;}
.y258{bottom:633.995400px;}
.y11f{bottom:636.734400px;}
.y17f{bottom:638.049150px;}
.y277{bottom:640.745400px;}
.y17{bottom:641.487600px;}
.y100{bottom:642.883650px;}
.y1db{bottom:643.063650px;}
.y149{bottom:643.129050px;}
.y2a5{bottom:644.757600px;}
.ya0{bottom:645.818550px;}
.y1ed{bottom:646.043400px;}
.y2c3{bottom:646.457850px;}
.y257{bottom:647.495400px;}
.y21b{bottom:649.508400px;}
.y276{bottom:654.245400px;}
.y16{bottom:654.987600px;}
.y148{bottom:656.629050px;}
.y17e{bottom:656.679150px;}
.y11e{bottom:658.037400px;}
.y256{bottom:660.995400px;}
.yff{bottom:661.513650px;}
.y1da{bottom:661.693650px;}
.y4c{bottom:662.120250px;}
.y2a4{bottom:663.387600px;}
.y9f{bottom:663.908550px;}
.y1ec{bottom:664.133400px;}
.y2c2{bottom:665.087850px;}
.y275{bottom:667.745400px;}
.y15{bottom:668.487600px;}
.y21a{bottom:668.528400px;}
.y147{bottom:670.129050px;}
.y255{bottom:674.495400px;}
.y17d{bottom:675.309150px;}
.y169{bottom:680.029650px;}
.y4b{bottom:680.120250px;}
.yfe{bottom:680.143650px;}
.y1d9{bottom:680.323650px;}
.y14{bottom:681.987600px;}
.y9e{bottom:681.998550px;}
.y2a3{bottom:682.017600px;}
.y1eb{bottom:682.223400px;}
.y2c1{bottom:683.717850px;}
.y219{bottom:687.548400px;}
.y11d{bottom:687.845400px;}
.y274{bottom:687.995400px;}
.y168{bottom:693.529650px;}
.y17c{bottom:693.939150px;}
.y254{bottom:694.745400px;}
.y13{bottom:695.487600px;}
.y4a{bottom:698.120250px;}
.yfd{bottom:698.773650px;}
.y1d8{bottom:698.953650px;}
.y9d{bottom:700.088550px;}
.y1ea{bottom:700.313400px;}
.y2a2{bottom:700.647600px;}
.y273{bottom:701.495400px;}
.y218{bottom:706.568400px;}
.y167{bottom:707.029650px;}
.y253{bottom:708.245400px;}
.y12{bottom:708.987600px;}
.y11c{bottom:709.148400px;}
.y17b{bottom:713.878650px;}
.y272{bottom:714.995400px;}
.y49{bottom:716.120250px;}
.yfc{bottom:717.403650px;}
.y1d7{bottom:717.583650px;}
.y9c{bottom:718.178550px;}
.y1e9{bottom:718.403400px;}
.y2a1{bottom:719.277600px;}
.y166{bottom:720.529650px;}
.y252{bottom:721.745400px;}
.y217{bottom:725.588400px;}
.y271{bottom:728.495400px;}
.y11b{bottom:730.451400px;}
.y11{bottom:730.965600px;}
.y48{bottom:734.120250px;}
.y251{bottom:735.245400px;}
.yfb{bottom:736.033650px;}
.y1d6{bottom:736.213650px;}
.y9b{bottom:736.268550px;}
.y1e8{bottom:736.493400px;}
.y2a0{bottom:737.907600px;}
.y270{bottom:741.995400px;}
.y10{bottom:744.465600px;}
.y216{bottom:744.608400px;}
.y11a{bottom:751.754400px;}
.y47{bottom:752.120250px;}
.y9a{bottom:754.358550px;}
.y1e7{bottom:754.583400px;}
.yfa{bottom:754.663650px;}
.y1d5{bottom:754.843650px;}
.y250{bottom:755.495400px;}
.y29f{bottom:756.537600px;}
.y17a{bottom:756.553650px;}
.y1d3{bottom:757.408650px;}
.y26f{bottom:762.245400px;}
.y215{bottom:763.628400px;}
.y1d2{bottom:764.158650px;}
.y24f{bottom:768.995400px;}
.y46{bottom:770.120250px;}
.y1d4{bottom:770.908650px;}
.y99{bottom:772.448550px;}
.y1e6{bottom:772.673400px;}
.yf9{bottom:773.293650px;}
.y29e{bottom:775.167600px;}
.y179{bottom:775.182600px;}
.y26e{bottom:775.745400px;}
.y119{bottom:781.562400px;}
.y24e{bottom:782.495400px;}
.y214{bottom:782.648400px;}
.yf{bottom:783.467100px;}
.y45{bottom:788.120250px;}
.y26d{bottom:789.245400px;}
.y98{bottom:790.538550px;}
.y1e5{bottom:790.763400px;}
.yf8{bottom:791.923650px;}
.y29d{bottom:793.797600px;}
.y178{bottom:793.811550px;}
.ye{bottom:796.967100px;}
.y1d1{bottom:798.469950px;}
.y213{bottom:801.668400px;}
.y24d{bottom:802.745400px;}
.y118{bottom:802.865400px;}
.y44{bottom:806.120250px;}
.y97{bottom:808.628550px;}
.y1e4{bottom:808.853400px;}
.yd{bottom:810.467100px;}
.yf7{bottom:810.553650px;}
.y29c{bottom:812.427600px;}
.y177{bottom:812.440350px;}
.y24c{bottom:816.245400px;}
.y212{bottom:820.688400px;}
.y26c{bottom:822.995400px;}
.yc{bottom:823.967100px;}
.y43{bottom:824.120250px;}
.y117{bottom:824.168400px;}
.y96{bottom:826.718550px;}
.y1e3{bottom:826.943400px;}
.yf6{bottom:829.183650px;}
.y24b{bottom:829.745400px;}
.y29b{bottom:831.057600px;}
.y176{bottom:831.069300px;}
.y1cc{bottom:836.188950px;}
.y26b{bottom:836.495400px;}
.yb{bottom:837.467100px;}
.y211{bottom:839.708400px;}
.y42{bottom:842.120250px;}
.y95{bottom:844.808550px;}
.y1e2{bottom:845.033400px;}
.y116{bottom:845.471400px;}
.yf5{bottom:847.813650px;}
.y29a{bottom:849.687600px;}
.y175{bottom:849.698250px;}
.y24a{bottom:849.995400px;}
.ya{bottom:850.967100px;}
.y1cb{bottom:854.818950px;}
.y210{bottom:858.728400px;}
.y41{bottom:860.120250px;}
.y94{bottom:862.898550px;}
.y1e1{bottom:863.123400px;}
.y249{bottom:863.495400px;}
.y9{bottom:864.467100px;}
.yf4{bottom:866.443650px;}
.y299{bottom:868.317600px;}
.y174{bottom:868.327200px;}
.y26a{bottom:870.245400px;}
.y1ca{bottom:873.448950px;}
.y115{bottom:875.279400px;}
.y248{bottom:876.995400px;}
.y20f{bottom:877.748400px;}
.y8{bottom:877.967100px;}
.y40{bottom:878.120250px;}
.y93{bottom:880.988550px;}
.y1e0{bottom:881.213400px;}
.y269{bottom:883.745400px;}
.yf3{bottom:885.073650px;}
.y298{bottom:886.947600px;}
.y173{bottom:886.956150px;}
.y247{bottom:890.495400px;}
.y7{bottom:891.467100px;}
.y1c9{bottom:892.078950px;}
.y3f{bottom:896.120250px;}
.y114{bottom:896.582400px;}
.y20e{bottom:896.768400px;}
.y268{bottom:897.245400px;}
.y1c8{bottom:898.828950px;}
.y1df{bottom:899.303400px;}
.yf2{bottom:903.703650px;}
.y6{bottom:904.967100px;}
.y297{bottom:905.577600px;}
.y172{bottom:905.585100px;}
.y246{bottom:910.745400px;}
.yc2{bottom:913.500150px;}
.y3e{bottom:914.120250px;}
.y20d{bottom:915.788400px;}
.y1de{bottom:917.393400px;}
.y267{bottom:917.495400px;}
.y113{bottom:917.885400px;}
.yf1{bottom:922.333650px;}
.y296{bottom:924.207600px;}
.y1c7{bottom:924.208950px;}
.y171{bottom:924.214050px;}
.y245{bottom:924.245400px;}
.yc1{bottom:927.000150px;}
.y266{bottom:930.995400px;}
.y3d{bottom:932.120250px;}
.y20c{bottom:934.808400px;}
.y1dd{bottom:935.483400px;}
.y244{bottom:937.745400px;}
.y112{bottom:939.188400px;}
.yc0{bottom:940.500150px;}
.yf0{bottom:940.963650px;}
.y295{bottom:942.837600px;}
.y1c6{bottom:942.838950px;}
.y170{bottom:942.843000px;}
.y265{bottom:944.495400px;}
.y3c{bottom:950.120250px;}
.y243{bottom:951.245400px;}
.y1dc{bottom:953.573400px;}
.y20b{bottom:953.828400px;}
.ybf{bottom:954.000150px;}
.y264{bottom:957.995400px;}
.yef{bottom:959.593650px;}
.y5{bottom:960.992100px;}
.y294{bottom:961.467600px;}
.y1c5{bottom:961.468950px;}
.y16f{bottom:961.471800px;}
.y165{bottom:964.744650px;}
.y242{bottom:964.745400px;}
.ybe{bottom:967.500150px;}
.y3b{bottom:968.120250px;}
.y111{bottom:968.996400px;}
.yee{bottom:978.223650px;}
.y164{bottom:978.244650px;}
.y263{bottom:978.245400px;}
.y4{bottom:978.990000px;}
.y293{bottom:980.097600px;}
.y1c4{bottom:980.098950px;}
.y16e{bottom:980.100900px;}
.y241{bottom:984.995400px;}
.y23b{bottom:985.058850px;}
.y3a{bottom:986.120250px;}
.y110{bottom:990.299400px;}
.y163{bottom:991.744650px;}
.y262{bottom:991.745400px;}
.yed{bottom:998.163150px;}
.y240{bottom:998.495400px;}
.y23a{bottom:998.558850px;}
.y292{bottom:998.727600px;}
.y1c3{bottom:998.728950px;}
.y16d{bottom:998.729850px;}
.y39{bottom:1004.120250px;}
.y162{bottom:1005.244650px;}
.y261{bottom:1005.245400px;}
.y10f{bottom:1011.602400px;}
.y23f{bottom:1011.995400px;}
.y3{bottom:1014.000000px;}
.y291{bottom:1017.357600px;}
.y16c{bottom:1017.358200px;}
.y1c2{bottom:1017.358950px;}
.y1d0{bottom:1018.735950px;}
.y161{bottom:1018.744650px;}
.y260{bottom:1018.745400px;}
.yec{bottom:1019.425650px;}
.y38{bottom:1022.120250px;}
.y1cf{bottom:1032.235950px;}
.y160{bottom:1032.244650px;}
.y23e{bottom:1032.245400px;}
.y10e{bottom:1032.905400px;}
.y290{bottom:1035.987600px;}
.y16b{bottom:1035.988200px;}
.y1c1{bottom:1035.988950px;}
.y37{bottom:1040.120250px;}
.y16a{bottom:1045.303200px;}
.y1c0{bottom:1045.303950px;}
.y1ce{bottom:1045.735950px;}
.y15f{bottom:1045.744650px;}
.yeb{bottom:1045.744950px;}
.y23d{bottom:1045.745400px;}
.y2{bottom:1049.007900px;}
.y28f{bottom:1054.617600px;}
.y36{bottom:1058.120250px;}
.y1cd{bottom:1059.235950px;}
.y15e{bottom:1059.244650px;}
.yea{bottom:1059.244950px;}
.y23c{bottom:1059.245400px;}
.y1{bottom:1079.007900px;}
.y131{bottom:1106.016300px;}
.yc6{bottom:1106.016750px;}
.y34{bottom:1106.016900px;}
.y195{bottom:1106.017050px;}
.h15{height:32.976562px;}
.h9{height:36.993164px;}
.h7{height:37.098633px;}
.h19{height:37.731445px;}
.ha{height:41.220703px;}
.h14{height:42.937500px;}
.h8{height:48.304688px;}
.h6{height:50.255859px;}
.he{height:51.633881px;}
.h11{height:51.637481px;}
.h12{height:51.638081px;}
.h10{height:51.639881px;}
.hc{height:51.645881px;}
.hd{height:51.686081px;}
.h4{height:53.671875px;}
.hb{height:55.839844px;}
.h5{height:57.378712px;}
.h16{height:59.952562px;}
.h18{height:64.098633px;}
.h3{height:67.078125px;}
.h17{height:74.358633px;}
.h13{height:75.304688px;}
.hf{height:85.564688px;}
.h2{height:89.343750px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:74.408250px;}
.x11{left:79.056450px;}
.x3e{left:87.737400px;}
.x4{left:90.806250px;}
.x1{left:92.347350px;}
.x9{left:95.657250px;}
.x40{left:111.686400px;}
.x6{left:116.933400px;}
.x3c{left:135.054450px;}
.x7{left:138.249900px;}
.x1a{left:152.848800px;}
.x21{left:154.404000px;}
.xc{left:157.284450px;}
.x42{left:168.985350px;}
.x22{left:182.286900px;}
.x2{left:183.499350px;}
.x20{left:187.858650px;}
.x1e{left:189.984600px;}
.x13{left:195.587250px;}
.x5{left:197.202600px;}
.x23{left:207.798900px;}
.x4b{left:210.049500px;}
.xe{left:221.619450px;}
.x24{left:233.310900px;}
.x4a{left:239.209500px;}
.x19{left:249.994800px;}
.x25{left:258.822900px;}
.x3d{left:260.645400px;}
.x26{left:284.334900px;}
.x3f{left:295.178400px;}
.x12{left:305.396250px;}
.x47{left:308.656350px;}
.x27{left:309.846900px;}
.x1b{left:311.533950px;}
.x17{left:317.411250px;}
.x28{left:331.350900px;}
.x29{left:344.850900px;}
.x16{left:358.788750px;}
.x2a{left:366.366900px;}
.x14{left:374.880750px;}
.x1f{left:378.107100px;}
.x2b{left:387.870900px;}
.x2c{left:401.370900px;}
.x49{left:404.949000px;}
.x10{left:408.429450px;}
.x18{left:417.662250px;}
.x2d{left:422.886900px;}
.x15{left:429.285750px;}
.x3{left:438.956250px;}
.x2e{left:448.398900px;}
.xa{left:457.089000px;}
.xf{left:469.867950px;}
.x2f{left:473.910900px;}
.xb{left:478.374000px;}
.x30{left:499.422900px;}
.x43{left:513.667350px;}
.x31{left:524.934900px;}
.x32{left:550.446900px;}
.x33{left:575.958900px;}
.x48{left:592.410600px;}
.x44{left:594.019350px;}
.x34{left:597.462900px;}
.xd{left:605.905500px;}
.x35{left:610.962900px;}
.x1d{left:614.415300px;}
.x45{left:630.023850px;}
.x36{left:632.478900px;}
.x41{left:639.954900px;}
.x1c{left:644.173200px;}
.x37{left:653.982900px;}
.x38{left:667.482900px;}
.x39{left:688.998900px;}
.x3a{left:714.510900px;}
.x46{left:720.055350px;}
.x3b{left:740.022900px;}
@media print{
.v6{vertical-align:-33.120000pt;}
.v8{vertical-align:-9.120000pt;}
.v3{vertical-align:-7.999467pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.999467pt;}
.v2{vertical-align:15.851200pt;}
.v1{vertical-align:17.607467pt;}
.v7{vertical-align:24.000000pt;}
.v5{vertical-align:33.120000pt;}
.ls31{letter-spacing:-7.344000pt;}
.ls28{letter-spacing:-7.200000pt;}
.ls30{letter-spacing:-3.996000pt;}
.ls40{letter-spacing:-1.776000pt;}
.ls27{letter-spacing:-1.200000pt;}
.ls19{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.048000pt;}
.ls1e{letter-spacing:0.053333pt;}
.ls75{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls69{letter-spacing:0.112000pt;}
.ls3e{letter-spacing:0.128533pt;}
.ls2{letter-spacing:0.144000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.177067pt;}
.ls5{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.266667pt;}
.ls2f{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.336000pt;}
.ls24{letter-spacing:0.373333pt;}
.ls4{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.432000pt;}
.ls44{letter-spacing:0.479467pt;}
.ls9{letter-spacing:0.480000pt;}
.ls4d{letter-spacing:0.485333pt;}
.ls6f{letter-spacing:0.528000pt;}
.lsf{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.586667pt;}
.ls72{letter-spacing:0.624000pt;}
.ls20{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.672000pt;}
.ls23{letter-spacing:0.693333pt;}
.ls6e{letter-spacing:0.720000pt;}
.ls2a{letter-spacing:0.746667pt;}
.ls4e{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls0{letter-spacing:0.816000pt;}
.ls2c{letter-spacing:0.853333pt;}
.ls6b{letter-spacing:0.864000pt;}
.ls17{letter-spacing:0.906667pt;}
.ls52{letter-spacing:0.912000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls6d{letter-spacing:1.008000pt;}
.lse{letter-spacing:1.013333pt;}
.ls74{letter-spacing:1.056000pt;}
.lsd{letter-spacing:1.066667pt;}
.ls53{letter-spacing:1.104000pt;}
.ls18{letter-spacing:1.120000pt;}
.ls50{letter-spacing:1.152000pt;}
.ls41{letter-spacing:1.173333pt;}
.ls1b{letter-spacing:1.226667pt;}
.ls46{letter-spacing:1.248000pt;}
.ls29{letter-spacing:1.280000pt;}
.ls48{letter-spacing:1.296000pt;}
.ls21{letter-spacing:1.333333pt;}
.ls6c{letter-spacing:1.344000pt;}
.lsc{letter-spacing:1.386667pt;}
.ls22{letter-spacing:1.440000pt;}
.ls4f{letter-spacing:1.488000pt;}
.ls25{letter-spacing:1.493333pt;}
.ls49{letter-spacing:1.536000pt;}
.ls2d{letter-spacing:1.546667pt;}
.ls73{letter-spacing:1.584000pt;}
.ls42{letter-spacing:1.600000pt;}
.ls76{letter-spacing:1.632000pt;}
.ls1d{letter-spacing:1.653333pt;}
.ls45{letter-spacing:1.680000pt;}
.ls6a{letter-spacing:1.706667pt;}
.ls47{letter-spacing:1.742400pt;}
.ls2b{letter-spacing:1.760000pt;}
.ls70{letter-spacing:1.776000pt;}
.ls4c{letter-spacing:1.824000pt;}
.ls1c{letter-spacing:1.866667pt;}
.ls26{letter-spacing:1.920000pt;}
.ls34{letter-spacing:1.973333pt;}
.ls32{letter-spacing:2.026667pt;}
.ls4b{letter-spacing:2.160000pt;}
.ls43{letter-spacing:2.186667pt;}
.ls51{letter-spacing:2.304000pt;}
.ls33{letter-spacing:2.346667pt;}
.ls2e{letter-spacing:2.352000pt;}
.ls71{letter-spacing:2.496000pt;}
.ls4a{letter-spacing:2.784000pt;}
.ls79{letter-spacing:30.384000pt;}
.ls77{letter-spacing:42.384000pt;}
.ls7a{letter-spacing:45.072000pt;}
.ls78{letter-spacing:45.936000pt;}
.ls7c{letter-spacing:46.848000pt;}
.ls7d{letter-spacing:53.040000pt;}
.ls7b{letter-spacing:53.952000pt;}
.ls80{letter-spacing:54.816000pt;}
.ls7e{letter-spacing:57.072000pt;}
.ls67{letter-spacing:58.416000pt;}
.ls81{letter-spacing:59.712000pt;}
.ls68{letter-spacing:61.104000pt;}
.ls7f{letter-spacing:65.040000pt;}
.ls5e{letter-spacing:68.803733pt;}
.ls82{letter-spacing:75.696000pt;}
.ls83{letter-spacing:86.304000pt;}
.ls66{letter-spacing:93.744000pt;}
.ls56{letter-spacing:107.472000pt;}
.ls3b{letter-spacing:115.200000pt;}
.ls3a{letter-spacing:116.064000pt;}
.ls39{letter-spacing:127.200000pt;}
.ls54{letter-spacing:149.856000pt;}
.ls55{letter-spacing:159.744000pt;}
.ls3c{letter-spacing:190.752000pt;}
.ls3d{letter-spacing:202.752000pt;}
.ls5c{letter-spacing:265.729600pt;}
.ls35{letter-spacing:280.512000pt;}
.ls38{letter-spacing:281.376000pt;}
.ls36{letter-spacing:292.512000pt;}
.ls37{letter-spacing:304.512000pt;}
.ls3f{letter-spacing:316.176000pt;}
.ls58{letter-spacing:374.264000pt;}
.ls5d{letter-spacing:434.001600pt;}
.ls5f{letter-spacing:436.720000pt;}
.ls60{letter-spacing:492.895467pt;}
.ls5a{letter-spacing:527.512533pt;}
.ls59{letter-spacing:555.872000pt;}
.ls5b{letter-spacing:556.809067pt;}
.ls63{letter-spacing:573.801600pt;}
.ls64{letter-spacing:583.481067pt;}
.ls57{letter-spacing:598.574933pt;}
.ls65{letter-spacing:636.825067pt;}
.ls61{letter-spacing:642.051200pt;}
.ls62{letter-spacing:658.223467pt;}
.ws13{word-spacing:-139.200000pt;}
.ws34{word-spacing:-53.333333pt;}
.ws8{word-spacing:-14.666667pt;}
.ws9{word-spacing:-13.973333pt;}
.ws7{word-spacing:-13.760000pt;}
.ws3f{word-spacing:-13.488000pt;}
.wsc{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.816000pt;}
.ws3e{word-spacing:-12.240000pt;}
.ws2{word-spacing:-12.144000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws21{word-spacing:-9.818667pt;}
.ws35{word-spacing:-9.445333pt;}
.ws0{word-spacing:-9.333333pt;}
.ws5{word-spacing:-9.144000pt;}
.ws1c{word-spacing:-8.400000pt;}
.wsa{word-spacing:-1.008000pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:5.508000pt;}
.wsb{word-spacing:5.687733pt;}
.ws14{word-spacing:11.952000pt;}
.ws2c{word-spacing:13.440000pt;}
.ws2d{word-spacing:14.549333pt;}
.ws33{word-spacing:14.720000pt;}
.ws46{word-spacing:18.336000pt;}
.ws37{word-spacing:18.384000pt;}
.ws29{word-spacing:18.432000pt;}
.ws74{word-spacing:18.576000pt;}
.ws42{word-spacing:19.200000pt;}
.ws4e{word-spacing:19.728000pt;}
.ws49{word-spacing:20.112000pt;}
.ws71{word-spacing:20.160000pt;}
.ws6e{word-spacing:21.072000pt;}
.ws2f{word-spacing:21.845333pt;}
.ws6c{word-spacing:21.936000pt;}
.ws2e{word-spacing:22.186667pt;}
.ws75{word-spacing:23.760000pt;}
.ws3a{word-spacing:26.400000pt;}
.wsf{word-spacing:28.512000pt;}
.ws5b{word-spacing:30.336000pt;}
.ws24{word-spacing:30.480000pt;}
.ws38{word-spacing:31.056000pt;}
.ws4b{word-spacing:31.200000pt;}
.ws54{word-spacing:31.680000pt;}
.ws44{word-spacing:33.072000pt;}
.ws31{word-spacing:33.194667pt;}
.ws5c{word-spacing:33.312000pt;}
.ws65{word-spacing:33.936000pt;}
.ws57{word-spacing:35.232000pt;}
.ws5e{word-spacing:37.872000pt;}
.ws2a{word-spacing:38.304000pt;}
.ws40{word-spacing:38.352000pt;}
.ws3d{word-spacing:38.400000pt;}
.ws4d{word-spacing:40.512000pt;}
.ws56{word-spacing:41.040000pt;}
.ws5f{word-spacing:41.328000pt;}
.ws4a{word-spacing:41.424000pt;}
.ws59{word-spacing:41.952000pt;}
.ws73{word-spacing:42.384000pt;}
.ws5d{word-spacing:42.432000pt;}
.ws63{word-spacing:45.072000pt;}
.ws25{word-spacing:45.456000pt;}
.ws66{word-spacing:45.888000pt;}
.ws27{word-spacing:46.320000pt;}
.ws39{word-spacing:46.416000pt;}
.ws64{word-spacing:46.752000pt;}
.wsd{word-spacing:47.040000pt;}
.ws51{word-spacing:47.232000pt;}
.ws6a{word-spacing:47.712000pt;}
.ws43{word-spacing:49.872000pt;}
.ws47{word-spacing:52.512000pt;}
.ws68{word-spacing:55.728000pt;}
.ws50{word-spacing:55.776000pt;}
.ws6b{word-spacing:55.920000pt;}
.ws4c{word-spacing:57.360000pt;}
.ws61{word-spacing:57.888000pt;}
.ws3c{word-spacing:61.728000pt;}
.ws69{word-spacing:63.696000pt;}
.ws2b{word-spacing:65.664000pt;}
.ws1b{word-spacing:67.200000pt;}
.ws45{word-spacing:70.656000pt;}
.wse{word-spacing:73.632000pt;}
.ws70{word-spacing:74.304000pt;}
.ws58{word-spacing:76.560000pt;}
.ws3b{word-spacing:77.712000pt;}
.ws48{word-spacing:78.672000pt;}
.ws10{word-spacing:91.200000pt;}
.ws18{word-spacing:92.064000pt;}
.ws15{word-spacing:95.616000pt;}
.ws12{word-spacing:103.200000pt;}
.ws16{word-spacing:107.616000pt;}
.ws11{word-spacing:115.200000pt;}
.ws72{word-spacing:130.416000pt;}
.ws5a{word-spacing:132.528000pt;}
.ws36{word-spacing:161.280000pt;}
.ws26{word-spacing:162.144000pt;}
.ws1d{word-spacing:166.752000pt;}
.ws1e{word-spacing:167.664000pt;}
.ws20{word-spacing:178.752000pt;}
.ws23{word-spacing:203.328000pt;}
.ws6f{word-spacing:236.208000pt;}
.ws53{word-spacing:237.648000pt;}
.ws60{word-spacing:243.072000pt;}
.ws17{word-spacing:246.816000pt;}
.ws67{word-spacing:249.552000pt;}
.ws4f{word-spacing:250.944000pt;}
.ws62{word-spacing:251.088000pt;}
.ws19{word-spacing:254.352000pt;}
.ws1a{word-spacing:258.816000pt;}
.ws52{word-spacing:258.960000pt;}
.ws6d{word-spacing:260.208000pt;}
.ws55{word-spacing:261.648000pt;}
.ws41{word-spacing:264.288000pt;}
.ws28{word-spacing:405.168000pt;}
.ws1f{word-spacing:410.016000pt;}
.ws22{word-spacing:414.048000pt;}
.ws30{word-spacing:463.786667pt;}
.ws32{word-spacing:473.301333pt;}
._46{margin-left:-127.200000pt;}
._47{margin-left:-12.554667pt;}
._42{margin-left:-11.445333pt;}
._9d{margin-left:-9.055467pt;}
._c{margin-left:-7.434667pt;}
._2{margin-left:-6.314667pt;}
._4{margin-left:-4.661333pt;}
._1{margin-left:-3.242667pt;}
._0{margin-left:-2.218667pt;}
._3{margin-left:-0.965867pt;}
._5{width:0.938667pt;}
._a{width:2.240000pt;}
._d{width:3.136000pt;}
._57{width:4.064000pt;}
._6{width:7.632000pt;}
._84{width:18.304000pt;}
._8f{width:19.409600pt;}
._91{width:21.987733pt;}
._83{width:25.386667pt;}
._87{width:26.927467pt;}
._88{width:29.253867pt;}
._4c{width:31.104000pt;}
._29{width:32.544000pt;}
._7e{width:33.962667pt;}
._8d{width:35.957333pt;}
._79{width:37.045333pt;}
._86{width:38.336000pt;}
._7{width:39.600000pt;}
._bb{width:40.702400pt;}
._b1{width:42.341867pt;}
._80{width:43.861333pt;}
._ae{width:45.077867pt;}
._7c{width:46.234667pt;}
._b6{width:47.205333pt;}
._12{width:48.101867pt;}
._b4{width:49.279467pt;}
._64{width:50.304000pt;}
._ad{width:52.838400pt;}
._aa{width:53.952000pt;}
._b3{width:55.866133pt;}
._59{width:57.021333pt;}
._f{width:58.576533pt;}
._7a{width:59.561600pt;}
._9b{width:61.104000pt;}
._b7{width:61.995733pt;}
._99{width:62.922133pt;}
._ac{width:64.075733pt;}
._5c{width:65.833600pt;}
._5b{width:67.176000pt;}
._ba{width:68.227200pt;}
._4d{width:69.893867pt;}
._54{width:71.184000pt;}
._3c{width:72.336000pt;}
._7b{width:74.437333pt;}
._b9{width:75.701867pt;}
._21{width:76.881067pt;}
._44{width:79.200000pt;}
._18{width:81.461867pt;}
._5a{width:82.746133pt;}
._20{width:84.336000pt;}
._b0{width:88.234667pt;}
._5d{width:89.982933pt;}
._43{width:91.200000pt;}
._a8{width:92.314667pt;}
._60{width:93.424533pt;}
._36{width:96.101867pt;}
._b8{width:98.862933pt;}
._4e{width:100.128533pt;}
._45{width:103.200000pt;}
._48{width:104.373333pt;}
._85{width:105.355733pt;}
._81{width:108.796267pt;}
._55{width:109.925867pt;}
._3e{width:115.200000pt;}
._6a{width:117.297067pt;}
._32{width:120.336000pt;}
._5e{width:125.148800pt;}
._41{width:127.200000pt;}
._25{width:129.461867pt;}
._a7{width:133.685867pt;}
._6b{width:138.864000pt;}
._40{width:147.413867pt;}
._9a{width:151.888533pt;}
._4f{width:153.436267pt;}
._90{width:156.555733pt;}
._62{width:162.864000pt;}
._6e{width:164.640000pt;}
._58{width:174.693867pt;}
._16{width:177.461867pt;}
._52{width:185.189867pt;}
._22{width:189.461867pt;}
._51{width:190.752000pt;}
._7f{width:192.011733pt;}
._1a{width:196.277867pt;}
._27{width:201.461867pt;}
._53{width:202.752000pt;}
._96{width:204.016533pt;}
._5f{width:210.144000pt;}
._9c{width:214.709867pt;}
._75{width:217.477867pt;}
._7d{width:218.817067pt;}
._1f{width:232.277867pt;}
._92{width:234.763733pt;}
._4a{width:242.352000pt;}
._3b{width:244.277867pt;}
._a4{width:245.472000pt;}
._8b{width:246.497067pt;}
._bc{width:248.208000pt;}
._49{width:250.949867pt;}
._3d{width:254.352000pt;}
._b5{width:255.482667pt;}
._35{width:256.512000pt;}
._a0{width:257.472000pt;}
._1d{width:261.531200pt;}
._af{width:262.944000pt;}
._3f{width:266.906667pt;}
._31{width:268.277867pt;}
._93{width:271.488000pt;}
._8c{width:274.998400pt;}
._ab{width:276.288000pt;}
._4b{width:278.352000pt;}
._11{width:280.277867pt;}
._a9{width:286.522667pt;}
._14{width:292.277867pt;}
._89{width:293.857067pt;}
._8a{width:301.110400pt;}
._24{width:304.277867pt;}
._8e{width:305.803733pt;}
._23{width:309.627200pt;}
._a6{width:311.957867pt;}
._68{width:313.947200pt;}
._b2{width:324.522667pt;}
._94{width:325.461333pt;}
._9f{width:329.712000pt;}
._95{width:339.589333pt;}
._a2{width:341.957867pt;}
._e{width:352.565867pt;}
._17{width:371.504533pt;}
._82{width:374.000533pt;}
._37{width:376.203200pt;}
._97{width:379.888533pt;}
._56{width:413.285867pt;}
._a5{width:414.629867pt;}
._a1{width:420.629867pt;}
._63{width:423.920533pt;}
._1e{width:441.952533pt;}
._98{width:446.192533pt;}
._26{width:456.640533pt;}
._34{width:470.496000pt;}
._69{width:482.368533pt;}
._6c{width:485.056533pt;}
._2a{width:490.048533pt;}
._10{width:516.592533pt;}
._38{width:520.768533pt;}
._1b{width:524.656533pt;}
._50{width:526.661867pt;}
._78{width:537.184533pt;}
._6d{width:542.464533pt;}
._19{width:551.899200pt;}
._1c{width:553.984533pt;}
._2d{width:570.982400pt;}
._33{width:572.656533pt;}
._66{width:577.072533pt;}
._2e{width:580.624533pt;}
._13{width:589.984533pt;}
._15{width:594.523200pt;}
._65{width:604.363200pt;}
._67{width:606.400533pt;}
._39{width:616.720533pt;}
._30{width:621.952533pt;}
._71{width:623.398400pt;}
._72{width:633.040533pt;}
._2b{width:639.232533pt;}
._3a{width:644.341333pt;}
._61{width:646.987200pt;}
._2c{width:655.360533pt;}
._2f{width:658.000533pt;}
._74{width:673.072533pt;}
._28{width:676.672533pt;}
._6f{width:691.648533pt;}
._70{width:707.776533pt;}
._73{width:710.416533pt;}
._76{width:713.056533pt;}
._77{width:739.696533pt;}
._9e{width:776.848533pt;}
._8{width:1029.867200pt;}
._a3{width:1034.597867pt;}
._b{width:1037.917867pt;}
._9{width:2206.320000pt;}
.fs5{font-size:33.600000pt;}
.fs4{font-size:36.000000pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:66.141733pt;}
.y132{bottom:66.145600pt;}
.yc7{bottom:66.146000pt;}
.y35{bottom:66.146133pt;}
.y196{bottom:66.146267pt;}
.y26{bottom:104.905067pt;}
.y239{bottom:107.678400pt;}
.y197{bottom:107.716800pt;}
.y158{bottom:107.730000pt;}
.yd7{bottom:107.736933pt;}
.ybd{bottom:107.740933pt;}
.y15d{bottom:107.743333pt;}
.ye9{bottom:107.803600pt;}
.y146{bottom:107.804400pt;}
.y20a{bottom:107.940800pt;}
.y1bc{bottom:108.190533pt;}
.y79{bottom:108.204667pt;}
.y92{bottom:108.234267pt;}
.y10d{bottom:108.393733pt;}
.y66{bottom:108.551333pt;}
.y199{bottom:109.932000pt;}
.y19a{bottom:109.942667pt;}
.y19b{bottom:109.953333pt;}
.y19c{bottom:109.964000pt;}
.y19d{bottom:109.985333pt;}
.y19e{bottom:109.996000pt;}
.y19f{bottom:110.006667pt;}
.y1a0{bottom:110.017333pt;}
.y1a1{bottom:110.028000pt;}
.y1a2{bottom:110.049333pt;}
.y1a3{bottom:110.060000pt;}
.y1a4{bottom:110.070667pt;}
.y28e{bottom:114.573600pt;}
.y25{bottom:118.789067pt;}
.y238{bottom:120.590400pt;}
.yd6{bottom:123.803600pt;}
.y145{bottom:123.804400pt;}
.ybc{bottom:123.820933pt;}
.ye8{bottom:123.856933pt;}
.y209{bottom:124.020800pt;}
.y157{bottom:124.183333pt;}
.y1bb{bottom:124.190533pt;}
.y15c{bottom:124.196667pt;}
.y78{bottom:124.204667pt;}
.y91{bottom:124.234267pt;}
.y10c{bottom:124.393733pt;}
.y65{bottom:124.551333pt;}
.y2c0{bottom:125.997867pt;}
.y2de{bottom:127.509200pt;}
.y28d{bottom:131.133600pt;}
.y24{bottom:132.673067pt;}
.y237{bottom:139.502400pt;}
.y144{bottom:139.804400pt;}
.yd5{bottom:139.870267pt;}
.ybb{bottom:139.900933pt;}
.ye7{bottom:139.910267pt;}
.y208{bottom:140.100800pt;}
.y1ba{bottom:140.190533pt;}
.y77{bottom:140.204667pt;}
.y90{bottom:140.234267pt;}
.y10b{bottom:140.393733pt;}
.y64{bottom:140.551333pt;}
.y156{bottom:140.636667pt;}
.y15b{bottom:140.650000pt;}
.y2bf{bottom:142.557867pt;}
.y2dd{bottom:144.069200pt;}
.y23{bottom:144.673067pt;}
.y28c{bottom:147.693600pt;}
.y236{bottom:152.414400pt;}
.y143{bottom:155.804400pt;}
.yd4{bottom:155.936933pt;}
.ye6{bottom:155.963600pt;}
.yba{bottom:155.980933pt;}
.y207{bottom:156.180800pt;}
.y1b9{bottom:156.190533pt;}
.y76{bottom:156.204667pt;}
.y8f{bottom:156.234267pt;}
.y10a{bottom:156.393733pt;}
.y63{bottom:156.551333pt;}
.y155{bottom:157.090000pt;}
.y15a{bottom:157.103333pt;}
.y22{bottom:158.557067pt;}
.y2be{bottom:159.117867pt;}
.y2dc{bottom:160.629200pt;}
.y28b{bottom:164.253600pt;}
.y235{bottom:165.326400pt;}
.y198{bottom:165.686667pt;}
.y21{bottom:170.557067pt;}
.y142{bottom:171.804400pt;}
.yd3{bottom:172.003600pt;}
.ye5{bottom:172.016933pt;}
.yb9{bottom:172.060933pt;}
.y1b8{bottom:172.190533pt;}
.y75{bottom:172.204667pt;}
.y8e{bottom:172.234267pt;}
.y206{bottom:172.260800pt;}
.y109{bottom:172.393733pt;}
.y154{bottom:173.543333pt;}
.y159{bottom:173.556667pt;}
.y2bd{bottom:175.677867pt;}
.y2db{bottom:177.189200pt;}
.y234{bottom:178.238400pt;}
.y28a{bottom:180.813600pt;}
.y20{bottom:184.441067pt;}
.y141{bottom:187.804400pt;}
.yd2{bottom:188.070267pt;}
.yb8{bottom:188.140933pt;}
.y1b7{bottom:188.190533pt;}
.y74{bottom:188.204667pt;}
.y8d{bottom:188.234267pt;}
.y205{bottom:188.340800pt;}
.y62{bottom:188.551333pt;}
.y2bc{bottom:192.237867pt;}
.y2da{bottom:193.749200pt;}
.y233{bottom:197.150400pt;}
.y289{bottom:197.373600pt;}
.y140{bottom:203.804400pt;}
.ye4{bottom:204.123600pt;}
.yd1{bottom:204.136933pt;}
.y1b6{bottom:204.190533pt;}
.y73{bottom:204.204667pt;}
.yb7{bottom:204.220933pt;}
.y8c{bottom:204.234267pt;}
.y204{bottom:204.420800pt;}
.y61{bottom:204.551333pt;}
.y2bb{bottom:208.797867pt;}
.y232{bottom:210.062400pt;}
.y2d9{bottom:210.309200pt;}
.y288{bottom:213.933600pt;}
.y130{bottom:217.042667pt;}
.y13f{bottom:219.804400pt;}
.ye3{bottom:220.176933pt;}
.y1b5{bottom:220.190533pt;}
.yd0{bottom:220.203600pt;}
.y72{bottom:220.204667pt;}
.y8b{bottom:220.234267pt;}
.yb6{bottom:220.300933pt;}
.y203{bottom:220.500800pt;}
.y60{bottom:220.551333pt;}
.y231{bottom:222.974400pt;}
.y33{bottom:223.732400pt;}
.y194{bottom:223.954800pt;}
.y2ba{bottom:225.357867pt;}
.y2d8{bottom:226.869200pt;}
.y287{bottom:230.493600pt;}
.y13e{bottom:235.804400pt;}
.y230{bottom:235.886400pt;}
.y12f{bottom:235.967067pt;}
.y1bf{bottom:236.190533pt;}
.y71{bottom:236.204667pt;}
.ye2{bottom:236.230267pt;}
.y8a{bottom:236.234267pt;}
.ycf{bottom:236.270267pt;}
.yb5{bottom:236.380933pt;}
.y5f{bottom:236.551333pt;}
.y202{bottom:236.580800pt;}
.y32{bottom:239.732400pt;}
.y193{bottom:240.514800pt;}
.y2b9{bottom:241.917867pt;}
.y2d7{bottom:243.429200pt;}
.y286{bottom:247.053600pt;}
.y13d{bottom:251.804400pt;}
.y1b4{bottom:252.190533pt;}
.y70{bottom:252.204667pt;}
.y89{bottom:252.234267pt;}
.ye1{bottom:252.283600pt;}
.yce{bottom:252.336933pt;}
.yb4{bottom:252.460933pt;}
.y5e{bottom:252.551333pt;}
.y201{bottom:252.660800pt;}
.y12e{bottom:254.903067pt;}
.y31{bottom:255.732400pt;}
.y192{bottom:257.074800pt;}
.y2b8{bottom:258.477867pt;}
.y2d6{bottom:259.989200pt;}
.y22f{bottom:262.802400pt;}
.y285{bottom:263.613600pt;}
.y13c{bottom:267.804400pt;}
.y1be{bottom:268.190533pt;}
.y6f{bottom:268.204667pt;}
.y88{bottom:268.234267pt;}
.ye0{bottom:268.336933pt;}
.ycd{bottom:268.403600pt;}
.yb3{bottom:268.540933pt;}
.y5d{bottom:268.551333pt;}
.y200{bottom:268.740800pt;}
.y30{bottom:271.732400pt;}
.y191{bottom:273.634800pt;}
.y2b7{bottom:275.037867pt;}
.y2d5{bottom:276.549200pt;}
.y284{bottom:280.173600pt;}
.y12d{bottom:281.399067pt;}
.y13b{bottom:283.804400pt;}
.y1bd{bottom:284.190533pt;}
.y6e{bottom:284.204667pt;}
.y87{bottom:284.234267pt;}
.ydf{bottom:284.390267pt;}
.ycc{bottom:284.470267pt;}
.y5c{bottom:284.551333pt;}
.yb2{bottom:284.620933pt;}
.y1ff{bottom:284.820800pt;}
.y190{bottom:285.634800pt;}
.y2f{bottom:287.732400pt;}
.y2b6{bottom:291.597867pt;}
.y2d4{bottom:293.109200pt;}
.y283{bottom:296.733600pt;}
.y13a{bottom:299.804400pt;}
.y1b3{bottom:300.190533pt;}
.y6d{bottom:300.204667pt;}
.y86{bottom:300.234267pt;}
.y12c{bottom:300.335067pt;}
.yde{bottom:300.443600pt;}
.ycb{bottom:300.536933pt;}
.y5b{bottom:300.551333pt;}
.yb1{bottom:300.700933pt;}
.y1fe{bottom:300.900800pt;}
.y18f{bottom:302.194800pt;}
.y2e{bottom:303.732400pt;}
.y22e{bottom:307.718400pt;}
.y2b5{bottom:308.157867pt;}
.y2d3{bottom:309.669200pt;}
.y282{bottom:313.293600pt;}
.y139{bottom:315.804400pt;}
.y1b2{bottom:316.190533pt;}
.y6c{bottom:316.204667pt;}
.y85{bottom:316.234267pt;}
.ydd{bottom:316.496933pt;}
.y5a{bottom:316.551333pt;}
.yb0{bottom:316.780933pt;}
.y1fd{bottom:316.980800pt;}
.y18e{bottom:318.754800pt;}
.y12b{bottom:319.268400pt;}
.y2d{bottom:319.732400pt;}
.y22d{bottom:320.630400pt;}
.y2b4{bottom:324.717867pt;}
.y2d2{bottom:326.229200pt;}
.y281{bottom:329.853600pt;}
.y138{bottom:331.804400pt;}
.y1b1{bottom:332.190533pt;}
.y6b{bottom:332.204667pt;}
.y84{bottom:332.234267pt;}
.ydc{bottom:332.550267pt;}
.y59{bottom:332.551333pt;}
.yca{bottom:332.603600pt;}
.yaf{bottom:332.860933pt;}
.y1fc{bottom:333.060800pt;}
.y22c{bottom:333.542400pt;}
.y18d{bottom:335.314800pt;}
.y2c{bottom:335.732400pt;}
.y12a{bottom:338.204400pt;}
.y2b3{bottom:341.277867pt;}
.y2d1{bottom:342.789200pt;}
.y22b{bottom:346.454400pt;}
.y137{bottom:347.804400pt;}
.y1b0{bottom:348.190533pt;}
.y6a{bottom:348.204667pt;}
.y83{bottom:348.234267pt;}
.y58{bottom:348.551333pt;}
.ydb{bottom:348.603600pt;}
.yae{bottom:348.940933pt;}
.y1fb{bottom:349.140800pt;}
.y2b{bottom:351.732400pt;}
.y18c{bottom:351.874800pt;}
.y280{bottom:355.862800pt;}
.y2b2{bottom:357.837867pt;}
.y2d0{bottom:359.349200pt;}
.y22a{bottom:359.366400pt;}
.y129{bottom:361.506133pt;}
.y136{bottom:363.804400pt;}
.y1af{bottom:364.190533pt;}
.y69{bottom:364.204667pt;}
.y57{bottom:364.551333pt;}
.yda{bottom:364.656933pt;}
.yad{bottom:365.020933pt;}
.y1fa{bottom:365.220800pt;}
.y2a{bottom:367.732400pt;}
.y18b{bottom:368.434800pt;}
.y27f{bottom:371.858800pt;}
.y229{bottom:372.278400pt;}
.y2b1{bottom:374.397867pt;}
.y2cf{bottom:375.909200pt;}
.y135{bottom:379.804400pt;}
.y1ae{bottom:380.190533pt;}
.y68{bottom:380.204667pt;}
.y82{bottom:380.234267pt;}
.y128{bottom:380.442133pt;}
.y56{bottom:380.551333pt;}
.yc9{bottom:380.670267pt;}
.yd9{bottom:380.710267pt;}
.yac{bottom:381.100933pt;}
.y1f9{bottom:381.300800pt;}
.y29{bottom:383.732400pt;}
.y18a{bottom:384.994800pt;}
.y228{bottom:385.190400pt;}
.y27e{bottom:387.858800pt;}
.y2b0{bottom:390.957867pt;}
.y2ce{bottom:392.469200pt;}
.y134{bottom:395.804400pt;}
.y1ad{bottom:396.190533pt;}
.y67{bottom:396.204667pt;}
.y81{bottom:396.234267pt;}
.y55{bottom:396.551333pt;}
.yc8{bottom:396.736933pt;}
.yd8{bottom:396.763600pt;}
.yab{bottom:397.180933pt;}
.y1f8{bottom:397.380800pt;}
.y227{bottom:398.102400pt;}
.y127{bottom:399.378133pt;}
.y28{bottom:399.732400pt;}
.y189{bottom:401.554800pt;}
.y27d{bottom:403.858800pt;}
.y2af{bottom:407.517867pt;}
.y2cd{bottom:409.029200pt;}
.y226{bottom:411.014400pt;}
.y133{bottom:411.804400pt;}
.y1ac{bottom:412.190533pt;}
.y80{bottom:412.234267pt;}
.y54{bottom:412.551333pt;}
.yaa{bottom:413.260933pt;}
.y1f7{bottom:413.460800pt;}
.y27{bottom:415.732400pt;}
.y188{bottom:418.114800pt;}
.y126{bottom:418.314133pt;}
.y7c{bottom:423.592267pt;}
.y225{bottom:423.926400pt;}
.y2ae{bottom:424.077867pt;}
.y2cc{bottom:425.589200pt;}
.y1ab{bottom:428.190533pt;}
.y7f{bottom:428.234267pt;}
.y53{bottom:428.551333pt;}
.ya9{bottom:429.340933pt;}
.y1f6{bottom:429.540800pt;}
.y187{bottom:434.674800pt;}
.y7b{bottom:435.592267pt;}
.y224{bottom:436.838400pt;}
.y108{bottom:438.972133pt;}
.y2ad{bottom:440.637867pt;}
.y2cb{bottom:442.149200pt;}
.y1aa{bottom:444.190533pt;}
.y7e{bottom:444.234267pt;}
.y52{bottom:444.551333pt;}
.y125{bottom:444.810133pt;}
.ya8{bottom:445.420933pt;}
.y1f5{bottom:445.620800pt;}
.y7a{bottom:447.592267pt;}
.y223{bottom:449.750400pt;}
.y186{bottom:451.234800pt;}
.y153{bottom:451.670267pt;}
.y107{bottom:455.532133pt;}
.y2ac{bottom:457.197867pt;}
.y2ca{bottom:458.709200pt;}
.y1a9{bottom:460.190533pt;}
.y7d{bottom:460.234267pt;}
.y51{bottom:460.551333pt;}
.ya7{bottom:461.500933pt;}
.y25f{bottom:461.551467pt;}
.y1f4{bottom:461.700800pt;}
.y27c{bottom:461.971467pt;}
.y222{bottom:462.662400pt;}
.y1e{bottom:463.543200pt;}
.y152{bottom:463.670267pt;}
.y124{bottom:463.746133pt;}
.y185{bottom:467.794800pt;}
.y106{bottom:472.092133pt;}
.y25e{bottom:473.551467pt;}
.y2ab{bottom:473.757867pt;}
.y27b{bottom:473.971467pt;}
.y2c9{bottom:475.269200pt;}
.y1d{bottom:475.543200pt;}
.y221{bottom:475.574400pt;}
.y151{bottom:475.670267pt;}
.y1a8{bottom:476.190533pt;}
.y50{bottom:476.551333pt;}
.ya6{bottom:477.580933pt;}
.y1f3{bottom:477.780800pt;}
.y123{bottom:482.682133pt;}
.y184{bottom:484.354800pt;}
.yc5{bottom:486.108267pt;}
.y150{bottom:487.670267pt;}
.y220{bottom:488.486400pt;}
.y105{bottom:488.652133pt;}
.y2aa{bottom:490.317867pt;}
.y25d{bottom:491.551467pt;}
.y2c8{bottom:491.829200pt;}
.y1a7{bottom:492.190533pt;}
.y4f{bottom:492.551333pt;}
.ya5{bottom:493.660933pt;}
.y1f2{bottom:493.860800pt;}
.yc4{bottom:498.108267pt;}
.y14f{bottom:499.670267pt;}
.y183{bottom:500.914800pt;}
.y21f{bottom:501.398400pt;}
.y122{bottom:501.618133pt;}
.y25c{bottom:503.551467pt;}
.y104{bottom:505.212133pt;}
.y2a9{bottom:506.877867pt;}
.y1a6{bottom:508.190533pt;}
.y2c7{bottom:508.389200pt;}
.y4e{bottom:508.551333pt;}
.ya4{bottom:509.740933pt;}
.y1f1{bottom:509.940800pt;}
.yc3{bottom:510.108267pt;}
.y1c{bottom:510.211200pt;}
.y14e{bottom:511.670267pt;}
.y21e{bottom:514.310400pt;}
.y25b{bottom:515.551467pt;}
.y182{bottom:517.474800pt;}
.y103{bottom:521.772133pt;}
.y1b{bottom:522.211200pt;}
.y2a8{bottom:523.437867pt;}
.y14d{bottom:523.670267pt;}
.y1a5{bottom:524.190533pt;}
.y2c6{bottom:524.949200pt;}
.ya3{bottom:525.820933pt;}
.y1f0{bottom:526.020800pt;}
.y21d{bottom:527.222400pt;}
.y27a{bottom:527.551467pt;}
.y121{bottom:528.114133pt;}
.y25a{bottom:533.551467pt;}
.y181{bottom:534.034800pt;}
.y1a{bottom:534.211200pt;}
.y14c{bottom:535.670267pt;}
.y102{bottom:538.332133pt;}
.y279{bottom:539.551467pt;}
.y2a7{bottom:539.997867pt;}
.y21c{bottom:540.134400pt;}
.y4d{bottom:540.551333pt;}
.y2c5{bottom:541.509200pt;}
.ya2{bottom:541.900933pt;}
.y1ef{bottom:542.100800pt;}
.y259{bottom:545.551467pt;}
.y19{bottom:546.211200pt;}
.y120{bottom:547.050133pt;}
.y14b{bottom:547.670267pt;}
.y180{bottom:550.594800pt;}
.y278{bottom:551.551467pt;}
.y101{bottom:554.892133pt;}
.y2a6{bottom:556.557867pt;}
.ya1{bottom:557.980933pt;}
.y2c4{bottom:558.069200pt;}
.y1ee{bottom:558.180800pt;}
.y18{bottom:558.211200pt;}
.y14a{bottom:559.670267pt;}
.y258{bottom:563.551467pt;}
.y11f{bottom:565.986133pt;}
.y17f{bottom:567.154800pt;}
.y277{bottom:569.551467pt;}
.y17{bottom:570.211200pt;}
.y100{bottom:571.452133pt;}
.y1db{bottom:571.612133pt;}
.y149{bottom:571.670267pt;}
.y2a5{bottom:573.117867pt;}
.ya0{bottom:574.060933pt;}
.y1ed{bottom:574.260800pt;}
.y2c3{bottom:574.629200pt;}
.y257{bottom:575.551467pt;}
.y21b{bottom:577.340800pt;}
.y276{bottom:581.551467pt;}
.y16{bottom:582.211200pt;}
.y148{bottom:583.670267pt;}
.y17e{bottom:583.714800pt;}
.y11e{bottom:584.922133pt;}
.y256{bottom:587.551467pt;}
.yff{bottom:588.012133pt;}
.y1da{bottom:588.172133pt;}
.y4c{bottom:588.551333pt;}
.y2a4{bottom:589.677867pt;}
.y9f{bottom:590.140933pt;}
.y1ec{bottom:590.340800pt;}
.y2c2{bottom:591.189200pt;}
.y275{bottom:593.551467pt;}
.y15{bottom:594.211200pt;}
.y21a{bottom:594.247467pt;}
.y147{bottom:595.670267pt;}
.y255{bottom:599.551467pt;}
.y17d{bottom:600.274800pt;}
.y169{bottom:604.470800pt;}
.y4b{bottom:604.551333pt;}
.yfe{bottom:604.572133pt;}
.y1d9{bottom:604.732133pt;}
.y14{bottom:606.211200pt;}
.y9e{bottom:606.220933pt;}
.y2a3{bottom:606.237867pt;}
.y1eb{bottom:606.420800pt;}
.y2c1{bottom:607.749200pt;}
.y219{bottom:611.154133pt;}
.y11d{bottom:611.418133pt;}
.y274{bottom:611.551467pt;}
.y168{bottom:616.470800pt;}
.y17c{bottom:616.834800pt;}
.y254{bottom:617.551467pt;}
.y13{bottom:618.211200pt;}
.y4a{bottom:620.551333pt;}
.yfd{bottom:621.132133pt;}
.y1d8{bottom:621.292133pt;}
.y9d{bottom:622.300933pt;}
.y1ea{bottom:622.500800pt;}
.y2a2{bottom:622.797867pt;}
.y273{bottom:623.551467pt;}
.y218{bottom:628.060800pt;}
.y167{bottom:628.470800pt;}
.y253{bottom:629.551467pt;}
.y12{bottom:630.211200pt;}
.y11c{bottom:630.354133pt;}
.y17b{bottom:634.558800pt;}
.y272{bottom:635.551467pt;}
.y49{bottom:636.551333pt;}
.yfc{bottom:637.692133pt;}
.y1d7{bottom:637.852133pt;}
.y9c{bottom:638.380933pt;}
.y1e9{bottom:638.580800pt;}
.y2a1{bottom:639.357867pt;}
.y166{bottom:640.470800pt;}
.y252{bottom:641.551467pt;}
.y217{bottom:644.967467pt;}
.y271{bottom:647.551467pt;}
.y11b{bottom:649.290133pt;}
.y11{bottom:649.747200pt;}
.y48{bottom:652.551333pt;}
.y251{bottom:653.551467pt;}
.yfb{bottom:654.252133pt;}
.y1d6{bottom:654.412133pt;}
.y9b{bottom:654.460933pt;}
.y1e8{bottom:654.660800pt;}
.y2a0{bottom:655.917867pt;}
.y270{bottom:659.551467pt;}
.y10{bottom:661.747200pt;}
.y216{bottom:661.874133pt;}
.y11a{bottom:668.226133pt;}
.y47{bottom:668.551333pt;}
.y9a{bottom:670.540933pt;}
.y1e7{bottom:670.740800pt;}
.yfa{bottom:670.812133pt;}
.y1d5{bottom:670.972133pt;}
.y250{bottom:671.551467pt;}
.y29f{bottom:672.477867pt;}
.y17a{bottom:672.492133pt;}
.y1d3{bottom:673.252133pt;}
.y26f{bottom:677.551467pt;}
.y215{bottom:678.780800pt;}
.y1d2{bottom:679.252133pt;}
.y24f{bottom:683.551467pt;}
.y46{bottom:684.551333pt;}
.y1d4{bottom:685.252133pt;}
.y99{bottom:686.620933pt;}
.y1e6{bottom:686.820800pt;}
.yf9{bottom:687.372133pt;}
.y29e{bottom:689.037867pt;}
.y179{bottom:689.051200pt;}
.y26e{bottom:689.551467pt;}
.y119{bottom:694.722133pt;}
.y24e{bottom:695.551467pt;}
.y214{bottom:695.687467pt;}
.yf{bottom:696.415200pt;}
.y45{bottom:700.551333pt;}
.y26d{bottom:701.551467pt;}
.y98{bottom:702.700933pt;}
.y1e5{bottom:702.900800pt;}
.yf8{bottom:703.932133pt;}
.y29d{bottom:705.597867pt;}
.y178{bottom:705.610267pt;}
.ye{bottom:708.415200pt;}
.y1d1{bottom:709.751067pt;}
.y213{bottom:712.594133pt;}
.y24d{bottom:713.551467pt;}
.y118{bottom:713.658133pt;}
.y44{bottom:716.551333pt;}
.y97{bottom:718.780933pt;}
.y1e4{bottom:718.980800pt;}
.yd{bottom:720.415200pt;}
.yf7{bottom:720.492133pt;}
.y29c{bottom:722.157867pt;}
.y177{bottom:722.169200pt;}
.y24c{bottom:725.551467pt;}
.y212{bottom:729.500800pt;}
.y26c{bottom:731.551467pt;}
.yc{bottom:732.415200pt;}
.y43{bottom:732.551333pt;}
.y117{bottom:732.594133pt;}
.y96{bottom:734.860933pt;}
.y1e3{bottom:735.060800pt;}
.yf6{bottom:737.052133pt;}
.y24b{bottom:737.551467pt;}
.y29b{bottom:738.717867pt;}
.y176{bottom:738.728267pt;}
.y1cc{bottom:743.279067pt;}
.y26b{bottom:743.551467pt;}
.yb{bottom:744.415200pt;}
.y211{bottom:746.407467pt;}
.y42{bottom:748.551333pt;}
.y95{bottom:750.940933pt;}
.y1e2{bottom:751.140800pt;}
.y116{bottom:751.530133pt;}
.yf5{bottom:753.612133pt;}
.y29a{bottom:755.277867pt;}
.y175{bottom:755.287333pt;}
.y24a{bottom:755.551467pt;}
.ya{bottom:756.415200pt;}
.y1cb{bottom:759.839067pt;}
.y210{bottom:763.314133pt;}
.y41{bottom:764.551333pt;}
.y94{bottom:767.020933pt;}
.y1e1{bottom:767.220800pt;}
.y249{bottom:767.551467pt;}
.y9{bottom:768.415200pt;}
.yf4{bottom:770.172133pt;}
.y299{bottom:771.837867pt;}
.y174{bottom:771.846400pt;}
.y26a{bottom:773.551467pt;}
.y1ca{bottom:776.399067pt;}
.y115{bottom:778.026133pt;}
.y248{bottom:779.551467pt;}
.y20f{bottom:780.220800pt;}
.y8{bottom:780.415200pt;}
.y40{bottom:780.551333pt;}
.y93{bottom:783.100933pt;}
.y1e0{bottom:783.300800pt;}
.y269{bottom:785.551467pt;}
.yf3{bottom:786.732133pt;}
.y298{bottom:788.397867pt;}
.y173{bottom:788.405467pt;}
.y247{bottom:791.551467pt;}
.y7{bottom:792.415200pt;}
.y1c9{bottom:792.959067pt;}
.y3f{bottom:796.551333pt;}
.y114{bottom:796.962133pt;}
.y20e{bottom:797.127467pt;}
.y268{bottom:797.551467pt;}
.y1c8{bottom:798.959067pt;}
.y1df{bottom:799.380800pt;}
.yf2{bottom:803.292133pt;}
.y6{bottom:804.415200pt;}
.y297{bottom:804.957867pt;}
.y172{bottom:804.964533pt;}
.y246{bottom:809.551467pt;}
.yc2{bottom:812.000133pt;}
.y3e{bottom:812.551333pt;}
.y20d{bottom:814.034133pt;}
.y1de{bottom:815.460800pt;}
.y267{bottom:815.551467pt;}
.y113{bottom:815.898133pt;}
.yf1{bottom:819.852133pt;}
.y296{bottom:821.517867pt;}
.y1c7{bottom:821.519067pt;}
.y171{bottom:821.523600pt;}
.y245{bottom:821.551467pt;}
.yc1{bottom:824.000133pt;}
.y266{bottom:827.551467pt;}
.y3d{bottom:828.551333pt;}
.y20c{bottom:830.940800pt;}
.y1dd{bottom:831.540800pt;}
.y244{bottom:833.551467pt;}
.y112{bottom:834.834133pt;}
.yc0{bottom:836.000133pt;}
.yf0{bottom:836.412133pt;}
.y295{bottom:838.077867pt;}
.y1c6{bottom:838.079067pt;}
.y170{bottom:838.082667pt;}
.y265{bottom:839.551467pt;}
.y3c{bottom:844.551333pt;}
.y243{bottom:845.551467pt;}
.y1dc{bottom:847.620800pt;}
.y20b{bottom:847.847467pt;}
.ybf{bottom:848.000133pt;}
.y264{bottom:851.551467pt;}
.yef{bottom:852.972133pt;}
.y5{bottom:854.215200pt;}
.y294{bottom:854.637867pt;}
.y1c5{bottom:854.639067pt;}
.y16f{bottom:854.641600pt;}
.y165{bottom:857.550800pt;}
.y242{bottom:857.551467pt;}
.ybe{bottom:860.000133pt;}
.y3b{bottom:860.551333pt;}
.y111{bottom:861.330133pt;}
.yee{bottom:869.532133pt;}
.y164{bottom:869.550800pt;}
.y263{bottom:869.551467pt;}
.y4{bottom:870.213333pt;}
.y293{bottom:871.197867pt;}
.y1c4{bottom:871.199067pt;}
.y16e{bottom:871.200800pt;}
.y241{bottom:875.551467pt;}
.y23b{bottom:875.607867pt;}
.y3a{bottom:876.551333pt;}
.y110{bottom:880.266133pt;}
.y163{bottom:881.550800pt;}
.y262{bottom:881.551467pt;}
.yed{bottom:887.256133pt;}
.y240{bottom:887.551467pt;}
.y23a{bottom:887.607867pt;}
.y292{bottom:887.757867pt;}
.y1c3{bottom:887.759067pt;}
.y16d{bottom:887.759867pt;}
.y39{bottom:892.551333pt;}
.y162{bottom:893.550800pt;}
.y261{bottom:893.551467pt;}
.y10f{bottom:899.202133pt;}
.y23f{bottom:899.551467pt;}
.y3{bottom:901.333333pt;}
.y291{bottom:904.317867pt;}
.y16c{bottom:904.318400pt;}
.y1c2{bottom:904.319067pt;}
.y1d0{bottom:905.543067pt;}
.y161{bottom:905.550800pt;}
.y260{bottom:905.551467pt;}
.yec{bottom:906.156133pt;}
.y38{bottom:908.551333pt;}
.y1cf{bottom:917.543067pt;}
.y160{bottom:917.550800pt;}
.y23e{bottom:917.551467pt;}
.y10e{bottom:918.138133pt;}
.y290{bottom:920.877867pt;}
.y16b{bottom:920.878400pt;}
.y1c1{bottom:920.879067pt;}
.y37{bottom:924.551333pt;}
.y16a{bottom:929.158400pt;}
.y1c0{bottom:929.159067pt;}
.y1ce{bottom:929.543067pt;}
.y15f{bottom:929.550800pt;}
.yeb{bottom:929.551067pt;}
.y23d{bottom:929.551467pt;}
.y2{bottom:932.451467pt;}
.y28f{bottom:937.437867pt;}
.y36{bottom:940.551333pt;}
.y1cd{bottom:941.543067pt;}
.y15e{bottom:941.550800pt;}
.yea{bottom:941.551067pt;}
.y23c{bottom:941.551467pt;}
.y1{bottom:959.118133pt;}
.y131{bottom:983.125600pt;}
.yc6{bottom:983.126000pt;}
.y34{bottom:983.126133pt;}
.y195{bottom:983.126267pt;}
.h15{height:29.312500pt;}
.h9{height:32.882812pt;}
.h7{height:32.976562pt;}
.h19{height:33.539062pt;}
.ha{height:36.640625pt;}
.h14{height:38.166667pt;}
.h8{height:42.937500pt;}
.h6{height:44.671875pt;}
.he{height:45.896783pt;}
.h11{height:45.899983pt;}
.h12{height:45.900517pt;}
.h10{height:45.902117pt;}
.hc{height:45.907450pt;}
.hd{height:45.943183pt;}
.h4{height:47.708333pt;}
.hb{height:49.635417pt;}
.h5{height:51.003300pt;}
.h16{height:53.291167pt;}
.h18{height:56.976562pt;}
.h3{height:59.625000pt;}
.h17{height:66.096563pt;}
.h13{height:66.937500pt;}
.hf{height:76.057500pt;}
.h2{height:79.416667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:66.140667pt;}
.x11{left:70.272400pt;}
.x3e{left:77.988800pt;}
.x4{left:80.716667pt;}
.x1{left:82.086533pt;}
.x9{left:85.028667pt;}
.x40{left:99.276800pt;}
.x6{left:103.940800pt;}
.x3c{left:120.048400pt;}
.x7{left:122.888800pt;}
.x1a{left:135.865600pt;}
.x21{left:137.248000pt;}
.xc{left:139.808400pt;}
.x42{left:150.209200pt;}
.x22{left:162.032800pt;}
.x2{left:163.110533pt;}
.x20{left:166.985467pt;}
.x1e{left:168.875200pt;}
.x13{left:173.855333pt;}
.x5{left:175.291200pt;}
.x23{left:184.710133pt;}
.x4b{left:186.710667pt;}
.xe{left:196.995067pt;}
.x24{left:207.387467pt;}
.x4a{left:212.630667pt;}
.x19{left:222.217600pt;}
.x25{left:230.064800pt;}
.x3d{left:231.684800pt;}
.x26{left:252.742133pt;}
.x3f{left:262.380800pt;}
.x12{left:271.463333pt;}
.x47{left:274.361200pt;}
.x27{left:275.419467pt;}
.x1b{left:276.919067pt;}
.x17{left:282.143333pt;}
.x28{left:294.534133pt;}
.x29{left:306.534133pt;}
.x16{left:318.923333pt;}
.x2a{left:325.659467pt;}
.x14{left:333.227333pt;}
.x1f{left:336.095200pt;}
.x2b{left:344.774133pt;}
.x2c{left:356.774133pt;}
.x49{left:359.954667pt;}
.x10{left:363.048400pt;}
.x18{left:371.255333pt;}
.x2d{left:375.899467pt;}
.x15{left:381.587333pt;}
.x3{left:390.183333pt;}
.x2e{left:398.576800pt;}
.xa{left:406.301333pt;}
.xf{left:417.660400pt;}
.x2f{left:421.254133pt;}
.xb{left:425.221333pt;}
.x30{left:443.931467pt;}
.x43{left:456.593200pt;}
.x31{left:466.608800pt;}
.x32{left:489.286133pt;}
.x33{left:511.963467pt;}
.x48{left:526.587200pt;}
.x44{left:528.017200pt;}
.x34{left:531.078133pt;}
.xd{left:538.582667pt;}
.x35{left:543.078133pt;}
.x1d{left:546.146933pt;}
.x45{left:560.021200pt;}
.x36{left:562.203467pt;}
.x41{left:568.848800pt;}
.x1c{left:572.598400pt;}
.x37{left:581.318133pt;}
.x38{left:593.318133pt;}
.x39{left:612.443467pt;}
.x3a{left:635.120800pt;}
.x46{left:640.049200pt;}
.x3b{left:657.798133pt;}
}




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