
    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_08a6889eb5796a6534a13f61.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_82b45f292c9cec068956852d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065581;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_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_9057d5535988c53c33115543.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.136000;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_85d8d2ad2fd6c2694ba1eddc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.732000;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_d54d7e1d8de6cc26f2613e3e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.924000;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_c9f5ea017015522a478bfdc1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.328000;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_600303e46d95f2afd5da1558.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_da45c7c55f741c179a4079c5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c1106f4aed9bc1c66dd60d49.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_62a9227779042191b56d89ec.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690000;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);}
.v2{vertical-align:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.553806px;}
.v1{vertical-align:24.000000px;}
.ls3d{letter-spacing:-2.601000px;}
.ls46{letter-spacing:-0.714000px;}
.ls33{letter-spacing:-0.480000px;}
.ls2c{letter-spacing:-0.420000px;}
.ls7c{letter-spacing:-0.408000px;}
.lsf{letter-spacing:-0.360000px;}
.ls74{letter-spacing:-0.357000px;}
.ls5c{letter-spacing:-0.306000px;}
.ls32{letter-spacing:-0.300000px;}
.ls78{letter-spacing:-0.255000px;}
.lse{letter-spacing:-0.240000px;}
.ls5d{letter-spacing:-0.204000px;}
.ls12{letter-spacing:-0.180000px;}
.ls75{letter-spacing:-0.153000px;}
.ls11{letter-spacing:-0.120000px;}
.ls7d{letter-spacing:-0.102000px;}
.ls10{letter-spacing:-0.060000px;}
.ls5b{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.030000px;}
.ls63{letter-spacing:0.051000px;}
.ls28{letter-spacing:0.060000px;}
.ls64{letter-spacing:0.102000px;}
.ls26{letter-spacing:0.120000px;}
.ls44{letter-spacing:0.144000px;}
.ls6a{letter-spacing:0.153000px;}
.lsc{letter-spacing:0.178791px;}
.ls9{letter-spacing:0.180000px;}
.ls52{letter-spacing:0.204000px;}
.ls42{letter-spacing:0.222000px;}
.ls2{letter-spacing:0.240000px;}
.ls3e{letter-spacing:0.252000px;}
.lsd{letter-spacing:0.255000px;}
.ls61{letter-spacing:0.264000px;}
.ls27{letter-spacing:0.270000px;}
.ls65{letter-spacing:0.288000px;}
.ls48{letter-spacing:0.299985px;}
.ls4{letter-spacing:0.300000px;}
.ls59{letter-spacing:0.306000px;}
.ls3f{letter-spacing:0.311994px;}
.ls39{letter-spacing:0.330000px;}
.ls62{letter-spacing:0.357000px;}
.ls2a{letter-spacing:0.360000px;}
.ls5f{letter-spacing:0.408000px;}
.ls5{letter-spacing:0.420000px;}
.ls67{letter-spacing:0.433500px;}
.ls38{letter-spacing:0.450000px;}
.ls57{letter-spacing:0.459000px;}
.ls13{letter-spacing:0.480000px;}
.ls55{letter-spacing:0.484500px;}
.ls53{letter-spacing:0.510000px;}
.ls47{letter-spacing:0.516000px;}
.ls58{letter-spacing:0.535500px;}
.ls8{letter-spacing:0.540000px;}
.ls5a{letter-spacing:0.561000px;}
.ls2e{letter-spacing:0.570000px;}
.ls23{letter-spacing:0.600000px;}
.ls56{letter-spacing:0.612000px;}
.ls3a{letter-spacing:0.630000px;}
.ls14{letter-spacing:0.660000px;}
.ls54{letter-spacing:0.663000px;}
.ls69{letter-spacing:0.714000px;}
.ls3{letter-spacing:0.720000px;}
.ls41{letter-spacing:0.750000px;}
.ls6c{letter-spacing:0.765000px;}
.lsb{letter-spacing:0.780000px;}
.ls71{letter-spacing:0.790500px;}
.ls2d{letter-spacing:0.810000px;}
.ls5e{letter-spacing:0.816000px;}
.ls18{letter-spacing:0.833990px;}
.ls21{letter-spacing:0.840000px;}
.ls79{letter-spacing:0.841500px;}
.ls66{letter-spacing:0.867000px;}
.ls30{letter-spacing:0.900000px;}
.ls6b{letter-spacing:0.918000px;}
.ls2f{letter-spacing:0.930000px;}
.ls6{letter-spacing:0.960000px;}
.ls6f{letter-spacing:0.969000px;}
.ls34{letter-spacing:0.990000px;}
.ls25{letter-spacing:1.020000px;}
.ls40{letter-spacing:1.062000px;}
.ls43{letter-spacing:1.068000px;}
.ls60{letter-spacing:1.071000px;}
.ls7{letter-spacing:1.080000px;}
.ls3b{letter-spacing:1.122000px;}
.lsa{letter-spacing:1.140000px;}
.ls35{letter-spacing:1.170000px;}
.ls16{letter-spacing:1.182000px;}
.ls6e{letter-spacing:1.198500px;}
.ls4e{letter-spacing:1.199978px;}
.ls31{letter-spacing:1.200000px;}
.ls76{letter-spacing:1.224000px;}
.ls37{letter-spacing:1.260000px;}
.ls7a{letter-spacing:1.275000px;}
.ls17{letter-spacing:1.320000px;}
.ls7b{letter-spacing:1.326000px;}
.ls6d{letter-spacing:1.377000px;}
.ls29{letter-spacing:1.380000px;}
.ls2b{letter-spacing:1.440000px;}
.ls51{letter-spacing:1.470000px;}
.ls19{letter-spacing:1.500000px;}
.ls77{letter-spacing:1.530000px;}
.ls1c{letter-spacing:1.560000px;}
.ls72{letter-spacing:1.581000px;}
.ls1e{letter-spacing:1.590000px;}
.ls15{letter-spacing:1.620000px;}
.ls22{letter-spacing:1.680000px;}
.ls70{letter-spacing:1.683000px;}
.ls73{letter-spacing:1.734000px;}
.ls1f{letter-spacing:1.740000px;}
.ls4b{letter-spacing:1.800000px;}
.ls24{letter-spacing:1.860000px;}
.ls4c{letter-spacing:1.890000px;}
.ls20{letter-spacing:1.920000px;}
.ls68{letter-spacing:1.938000px;}
.ls1a{letter-spacing:1.974000px;}
.ls3c{letter-spacing:1.980000px;}
.ls4d{letter-spacing:2.040000px;}
.ls4f{letter-spacing:2.100000px;}
.ls49{letter-spacing:2.160000px;}
.ls4a{letter-spacing:2.280000px;}
.ls1b{letter-spacing:2.400000px;}
.ls1d{letter-spacing:2.460000px;}
.ls50{letter-spacing:2.820000px;}
.ls1{letter-spacing:3.990000px;}
.ls45{letter-spacing:667.103339px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.984000px;}
.ws5f{word-spacing:-16.980000px;}
.ws20{word-spacing:-16.920000px;}
.ws88{word-spacing:-16.140000px;}
.ws5e{word-spacing:-15.540000px;}
.ws49{word-spacing:-15.420000px;}
.ws47{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.000000px;}
.ws48{word-spacing:-14.940000px;}
.ws87{word-spacing:-14.820000px;}
.ws3a{word-spacing:-14.640000px;}
.wsb4{word-spacing:-13.719000px;}
.ws94{word-spacing:-13.005000px;}
.ws73{word-spacing:-12.750000px;}
.ws4a{word-spacing:-12.474000px;}
.ws4{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.240000px;}
.ws8{word-spacing:-11.760000px;}
.wsb{word-spacing:-11.520000px;}
.wsa{word-spacing:-11.460000px;}
.ws9{word-spacing:-11.280000px;}
.ws89{word-spacing:-10.276500px;}
.ws3{word-spacing:-9.996000px;}
.ws2{word-spacing:-9.408000px;}
.wse{word-spacing:-8.925000px;}
.ws5{word-spacing:-8.694000px;}
.ws61{word-spacing:-7.500000px;}
.ws78{word-spacing:-6.375000px;}
.wsf{word-spacing:-1.890000px;}
.ws90{word-spacing:-1.560000px;}
.ws15{word-spacing:-1.500000px;}
.ws34{word-spacing:-1.440000px;}
.ws8a{word-spacing:-1.380000px;}
.wsb7{word-spacing:-1.326000px;}
.ws40{word-spacing:-1.320000px;}
.ws93{word-spacing:-1.275000px;}
.ws41{word-spacing:-1.260000px;}
.wsbb{word-spacing:-1.224000px;}
.ws25{word-spacing:-1.200000px;}
.ws79{word-spacing:-1.140000px;}
.wsa5{word-spacing:-1.071000px;}
.ws21{word-spacing:-1.020000px;}
.wsa4{word-spacing:-0.969000px;}
.ws57{word-spacing:-0.960000px;}
.ws53{word-spacing:-0.900000px;}
.ws7a{word-spacing:-0.840000px;}
.ws51{word-spacing:-0.780000px;}
.wsa6{word-spacing:-0.765000px;}
.ws14{word-spacing:-0.720000px;}
.wsa7{word-spacing:-0.714000px;}
.wsba{word-spacing:-0.663000px;}
.ws2b{word-spacing:-0.660000px;}
.ws1f{word-spacing:-0.612000px;}
.ws76{word-spacing:-0.600000px;}
.ws10{word-spacing:-0.570000px;}
.wsb8{word-spacing:-0.561000px;}
.ws3d{word-spacing:-0.540000px;}
.ws42{word-spacing:-0.480000px;}
.ws30{word-spacing:-0.420000px;}
.ws5d{word-spacing:-0.360000px;}
.wsb1{word-spacing:-0.306000px;}
.ws6{word-spacing:-0.300000px;}
.ws9e{word-spacing:-0.264000px;}
.wsaf{word-spacing:-0.255000px;}
.ws3f{word-spacing:-0.240000px;}
.ws18{word-spacing:-0.180000px;}
.ws2e{word-spacing:-0.120000px;}
.wsbd{word-spacing:-0.102000px;}
.wsc{word-spacing:-0.072000px;}
.ws54{word-spacing:-0.060000px;}
.ws9c{word-spacing:-0.051000px;}
.ws1{word-spacing:0.000000px;}
.wsc6{word-spacing:0.051000px;}
.ws52{word-spacing:0.060000px;}
.ws4c{word-spacing:0.120000px;}
.wsca{word-spacing:0.153000px;}
.ws3e{word-spacing:0.180000px;}
.wsb2{word-spacing:0.204000px;}
.ws67{word-spacing:0.240000px;}
.ws91{word-spacing:0.255000px;}
.ws2c{word-spacing:0.300000px;}
.wsab{word-spacing:0.306000px;}
.ws92{word-spacing:0.357000px;}
.ws3c{word-spacing:0.360000px;}
.ws72{word-spacing:0.420000px;}
.ws99{word-spacing:0.459000px;}
.ws1d{word-spacing:0.480000px;}
.ws98{word-spacing:0.510000px;}
.ws24{word-spacing:0.540000px;}
.ws17{word-spacing:0.600000px;}
.wsb5{word-spacing:0.612000px;}
.ws66{word-spacing:0.660000px;}
.wsc7{word-spacing:0.714000px;}
.ws16{word-spacing:0.720000px;}
.ws62{word-spacing:0.780000px;}
.ws44{word-spacing:0.840000px;}
.ws12{word-spacing:0.900000px;}
.ws4b{word-spacing:0.960000px;}
.ws9b{word-spacing:0.969000px;}
.ws1a{word-spacing:1.020000px;}
.ws6d{word-spacing:1.080000px;}
.ws9a{word-spacing:1.122000px;}
.ws6b{word-spacing:1.140000px;}
.wsa2{word-spacing:1.173000px;}
.ws50{word-spacing:1.200000px;}
.ws86{word-spacing:1.260000px;}
.ws96{word-spacing:1.275000px;}
.ws84{word-spacing:1.320000px;}
.ws95{word-spacing:1.326000px;}
.ws1c{word-spacing:1.380000px;}
.ws59{word-spacing:1.440000px;}
.wsa1{word-spacing:1.479000px;}
.ws13{word-spacing:1.500000px;}
.wsa3{word-spacing:1.530000px;}
.ws22{word-spacing:1.560000px;}
.wsc9{word-spacing:1.581000px;}
.ws28{word-spacing:1.620000px;}
.wsae{word-spacing:1.632000px;}
.ws37{word-spacing:1.680000px;}
.ws23{word-spacing:1.740000px;}
.ws33{word-spacing:1.800000px;}
.wsc3{word-spacing:1.836000px;}
.ws38{word-spacing:1.860000px;}
.ws5c{word-spacing:1.920000px;}
.ws35{word-spacing:1.980000px;}
.ws97{word-spacing:1.989000px;}
.ws31{word-spacing:2.040000px;}
.wsac{word-spacing:2.091000px;}
.ws2d{word-spacing:2.100000px;}
.wsb3{word-spacing:2.142000px;}
.ws55{word-spacing:2.160000px;}
.ws71{word-spacing:2.220000px;}
.wsc0{word-spacing:2.244000px;}
.wsbc{word-spacing:2.295000px;}
.ws11{word-spacing:2.340000px;}
.wsaa{word-spacing:2.346000px;}
.ws45{word-spacing:2.400000px;}
.ws43{word-spacing:2.460000px;}
.ws6c{word-spacing:2.520000px;}
.ws19{word-spacing:2.580000px;}
.ws65{word-spacing:2.640000px;}
.wsbf{word-spacing:2.652000px;}
.ws3b{word-spacing:2.700000px;}
.wsc2{word-spacing:2.703000px;}
.wsbe{word-spacing:2.754000px;}
.ws2f{word-spacing:2.760000px;}
.wsb0{word-spacing:2.805000px;}
.ws85{word-spacing:2.820000px;}
.ws8b{word-spacing:2.880000px;}
.wsc8{word-spacing:2.907000px;}
.ws32{word-spacing:2.940000px;}
.ws29{word-spacing:3.000000px;}
.wsb6{word-spacing:3.009000px;}
.ws64{word-spacing:3.060000px;}
.ws56{word-spacing:3.120000px;}
.ws2a{word-spacing:3.180000px;}
.ws1b{word-spacing:3.240000px;}
.wsa9{word-spacing:3.264000px;}
.ws7d{word-spacing:3.300000px;}
.wsb9{word-spacing:3.315000px;}
.wsc1{word-spacing:3.417000px;}
.ws8d{word-spacing:3.420000px;}
.ws9f{word-spacing:3.468000px;}
.ws75{word-spacing:3.480000px;}
.wsa8{word-spacing:3.519000px;}
.ws4e{word-spacing:3.540000px;}
.ws9d{word-spacing:3.570000px;}
.ws6f{word-spacing:3.600000px;}
.ws7c{word-spacing:3.660000px;}
.ws58{word-spacing:3.720000px;}
.ws46{word-spacing:3.840000px;}
.ws4f{word-spacing:3.900000px;}
.ws8e{word-spacing:3.960000px;}
.ws63{word-spacing:4.020000px;}
.ws7b{word-spacing:4.080000px;}
.ws60{word-spacing:4.140000px;}
.ws8c{word-spacing:4.200000px;}
.ws4d{word-spacing:4.260000px;}
.ws5b{word-spacing:4.320000px;}
.wsc4{word-spacing:4.335000px;}
.wsa0{word-spacing:4.539000px;}
.ws36{word-spacing:4.560000px;}
.wsc5{word-spacing:4.641000px;}
.ws5a{word-spacing:4.740000px;}
.ws39{word-spacing:4.860000px;}
.ws70{word-spacing:4.920000px;}
.ws83{word-spacing:5.040000px;}
.ws6e{word-spacing:5.100000px;}
.ws6a{word-spacing:5.160000px;}
.ws77{word-spacing:5.340000px;}
.ws82{word-spacing:5.400000px;}
.ws26{word-spacing:5.460000px;}
.ws27{word-spacing:5.760000px;}
.ws81{word-spacing:6.360000px;}
.ws69{word-spacing:7.200000px;}
.ws8f{word-spacing:7.560000px;}
.wsad{word-spacing:7.650000px;}
.ws68{word-spacing:7.800000px;}
.wscb{word-spacing:13.515000px;}
.wscc{word-spacing:17.595000px;}
.ws1e{word-spacing:72.267000px;}
.ws7f{word-spacing:742.713000px;}
.ws7e{word-spacing:874.038000px;}
.ws80{word-spacing:899.487000px;}
.ws74{word-spacing:1048.917000px;}
._4d{margin-left:-18.717000px;}
._c{margin-left:-16.575000px;}
._48{margin-left:-14.586000px;}
._49{margin-left:-12.699000px;}
._12{margin-left:-11.220000px;}
._35{margin-left:-9.950413px;}
._10{margin-left:-8.817600px;}
._2{margin-left:-7.353600px;}
._9{margin-left:-5.546400px;}
._3{margin-left:-4.284000px;}
._7{margin-left:-3.255600px;}
._1{margin-left:-1.996800px;}
._4{width:1.084800px;}
._a{width:2.122800px;}
._13{width:4.036800px;}
._0{width:5.587200px;}
._44{width:7.242000px;}
._36{width:9.678000px;}
._11{width:10.962000px;}
._43{width:11.992789px;}
._6{width:13.456800px;}
._b{width:15.420000px;}
._8{width:16.439989px;}
._d{width:18.360000px;}
._4b{width:19.846800px;}
._4a{width:21.478800px;}
._46{width:22.942200px;}
._4c{width:24.095400px;}
._45{width:25.245000px;}
._47{width:26.877000px;}
._5{width:39.962402px;}
._e{width:54.621000px;}
._3c{width:60.639000px;}
._3d{width:76.193992px;}
._3a{width:130.203000px;}
._2a{width:157.845000px;}
._2b{width:180.846000px;}
._3b{width:187.731000px;}
._29{width:189.669000px;}
._33{width:194.113800px;}
._26{width:196.765792px;}
._2f{width:226.134000px;}
._39{width:229.194000px;}
._2d{width:237.353984px;}
._25{width:250.818000px;}
._31{width:264.778200px;}
._23{width:265.863000px;}
._27{width:275.241000px;}
._38{width:288.819035px;}
._32{width:306.657000px;}
._2c{width:334.551600px;}
._1f{width:349.451970px;}
._28{width:365.262000px;}
._34{width:378.165000px;}
._20{width:398.078370px;}
._37{width:419.966942px;}
._24{width:436.151985px;}
._2e{width:471.546000px;}
._3f{width:476.798969px;}
._30{width:485.622000px;}
._21{width:498.065369px;}
._16{width:526.880989px;}
._18{width:553.349989px;}
._40{width:586.566554px;}
._41{width:595.958354px;}
._3e{width:693.760754px;}
._22{width:702.065989px;}
._42{width:704.871000px;}
._1d{width:854.301000px;}
._1e{width:911.011322px;}
._17{width:916.783770px;}
._15{width:939.478770px;}
._1a{width:998.682000px;}
._14{width:1004.380170px;}
._1c{width:1035.555000px;}
._19{width:1054.534800px;}
._1b{width:1062.023970px;}
._f{width:2141.745096px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:35.699999px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs6{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y1d{bottom:68.547300px;}
.y1c{bottom:68.829002px;}
.y15{bottom:77.715000px;}
.y1a{bottom:91.590000px;}
.y14{bottom:99.795000px;}
.y5b{bottom:112.938300px;}
.y19{bottom:113.670000px;}
.yd0{bottom:114.735260px;}
.y10a{bottom:114.735294px;}
.ye5{bottom:114.735306px;}
.y16b{bottom:114.874969px;}
.y204{bottom:116.790317px;}
.y138{bottom:119.017056px;}
.y48{bottom:122.461349px;}
.y18c{bottom:126.073056px;}
.y203{bottom:131.784317px;}
.y5a{bottom:133.032303px;}
.y137{bottom:133.191262px;}
.ycf{bottom:133.485260px;}
.y109{bottom:133.485294px;}
.ye4{bottom:133.485306px;}
.y16a{bottom:133.624969px;}
.y10{bottom:133.935000px;}
.y18{bottom:135.750000px;}
.y1c2{bottom:140.709278px;}
.y18b{bottom:141.067056px;}
.y47{bottom:141.211349px;}
.y202{bottom:146.778317px;}
.y59{bottom:150.497553px;}
.yce{bottom:152.235260px;}
.y108{bottom:152.235294px;}
.ye3{bottom:152.235306px;}
.y169{bottom:152.374969px;}
.y16{bottom:154.950000px;}
.y1c1{bottom:155.703278px;}
.yf{bottom:156.015000px;}
.y18a{bottom:156.061056px;}
.y17{bottom:157.830000px;}
.y46{bottom:159.961349px;}
.y201{bottom:161.772317px;}
.y143{bottom:162.116994px;}
.y58{bottom:165.491553px;}
.y1c0{bottom:170.697278px;}
.ycd{bottom:170.985260px;}
.y107{bottom:170.985294px;}
.ye2{bottom:170.985306px;}
.y168{bottom:171.124969px;}
.y200{bottom:176.766317px;}
.y45{bottom:178.711349px;}
.y57{bottom:180.485553px;}
.y142{bottom:180.910494px;}
.y1bf{bottom:185.691278px;}
.y189{bottom:186.061806px;}
.ycc{bottom:189.735260px;}
.y106{bottom:189.735294px;}
.ye1{bottom:189.735306px;}
.y167{bottom:189.874969px;}
.y1ff{bottom:191.760317px;}
.y141{bottom:195.904494px;}
.y44{bottom:197.461349px;}
.y56{bottom:200.579544px;}
.y1be{bottom:200.685278px;}
.y188{bottom:201.055806px;}
.y93{bottom:205.069804px;}
.y1fe{bottom:206.754317px;}
.ycb{bottom:208.485260px;}
.ye0{bottom:208.485306px;}
.y166{bottom:208.624969px;}
.y140{bottom:214.621494px;}
.y1bd{bottom:215.679278px;}
.y187{bottom:216.049806px;}
.y43{bottom:216.211349px;}
.y55{bottom:218.032794px;}
.y92{bottom:220.063804px;}
.y1fd{bottom:221.748317px;}
.yca{bottom:227.235260px;}
.ydf{bottom:227.235306px;}
.y165{bottom:227.374969px;}
.y1bc{bottom:230.673278px;}
.y186{bottom:231.043806px;}
.y13f{bottom:233.338494px;}
.y42{bottom:234.961349px;}
.y91{bottom:235.057804px;}
.y1fc{bottom:236.742317px;}
.y54{bottom:238.126808px;}
.y1bb{bottom:245.667278px;}
.yc9{bottom:245.985260px;}
.yde{bottom:245.985306px;}
.y185{bottom:246.037806px;}
.y164{bottom:246.124969px;}
.y90{bottom:250.051804px;}
.y1fb{bottom:251.736317px;}
.y13e{bottom:252.055494px;}
.y41{bottom:253.711349px;}
.y53{bottom:255.586059px;}
.y1ba{bottom:260.661278px;}
.y184{bottom:261.031806px;}
.y136{bottom:263.419759px;}
.yc8{bottom:264.735260px;}
.ydd{bottom:264.735306px;}
.y163{bottom:264.874969px;}
.y8f{bottom:265.045804px;}
.y1fa{bottom:266.730317px;}
.y52{bottom:270.580059px;}
.y13d{bottom:270.772494px;}
.y40{bottom:272.461349px;}
.y1b9{bottom:275.655278px;}
.y183{bottom:276.025806px;}
.y135{bottom:278.413759px;}
.y8e{bottom:280.039804px;}
.y1f9{bottom:281.724317px;}
.yc7{bottom:283.485260px;}
.ydc{bottom:283.485306px;}
.y162{bottom:283.624969px;}
.y13c{bottom:289.489494px;}
.y1b8{bottom:290.649278px;}
.y51{bottom:290.674049px;}
.y182{bottom:291.019806px;}
.y3f{bottom:291.211349px;}
.y134{bottom:293.407759px;}
.y8d{bottom:295.033804px;}
.y1f8{bottom:296.718317px;}
.yc6{bottom:302.235260px;}
.ydb{bottom:302.235306px;}
.y161{bottom:302.374969px;}
.y1b7{bottom:305.643278px;}
.y181{bottom:306.013806px;}
.y50{bottom:308.133300px;}
.y133{bottom:308.401759px;}
.y3e{bottom:309.961349px;}
.y8c{bottom:310.027804px;}
.y1f7{bottom:311.712317px;}
.y13b{bottom:317.588843px;}
.y1b6{bottom:320.637278px;}
.yc5{bottom:320.985260px;}
.yda{bottom:320.985306px;}
.y180{bottom:321.007806px;}
.y160{bottom:321.124969px;}
.y4f{bottom:323.127300px;}
.y132{bottom:323.395759px;}
.y8b{bottom:325.021804px;}
.y1f6{bottom:326.706317px;}
.y3d{bottom:328.711349px;}
.y13a{bottom:332.582843px;}
.y1b5{bottom:335.631278px;}
.y131{bottom:338.389759px;}
.yc4{bottom:339.735260px;}
.yd9{bottom:339.735306px;}
.y15f{bottom:339.874969px;}
.y8a{bottom:340.015804px;}
.y1f5{bottom:341.700317px;}
.y4e{bottom:343.221291px;}
.ya{bottom:344.680500px;}
.y3c{bottom:347.461349px;}
.y139{bottom:347.576843px;}
.y1b4{bottom:350.625278px;}
.y17f{bottom:351.008556px;}
.y130{bottom:353.383759px;}
.y89{bottom:355.009804px;}
.y1f4{bottom:356.694317px;}
.yc3{bottom:358.485260px;}
.yd8{bottom:358.485306px;}
.y15e{bottom:358.624969px;}
.y4d{bottom:360.680564px;}
.y1b3{bottom:365.619278px;}
.y17e{bottom:366.002556px;}
.y3b{bottom:366.211349px;}
.y1f3{bottom:371.688317px;}
.y4c{bottom:375.674564px;}
.yc2{bottom:377.235260px;}
.yd7{bottom:377.235306px;}
.y15d{bottom:377.374969px;}
.y1b2{bottom:380.613278px;}
.y17d{bottom:380.996556px;}
.y3a{bottom:384.961349px;}
.yd{bottom:386.490000px;}
.y1f2{bottom:386.682317px;}
.y1b1{bottom:395.607278px;}
.y9{bottom:395.689500px;}
.y4b{bottom:395.768555px;}
.yc1{bottom:395.985260px;}
.yd6{bottom:395.985306px;}
.y17c{bottom:395.990556px;}
.y119{bottom:396.124786px;}
.y15c{bottom:396.124969px;}
.y1f1{bottom:401.676317px;}
.y1b0{bottom:410.601278px;}
.y88{bottom:413.415298px;}
.y81{bottom:413.415344px;}
.yc0{bottom:414.735260px;}
.yd5{bottom:414.735306px;}
.y118{bottom:414.874786px;}
.y15b{bottom:414.874969px;}
.y1f0{bottom:416.670317px;}
.y4a{bottom:420.769046px;}
.y39{bottom:422.461349px;}
.y1af{bottom:425.595278px;}
.y17b{bottom:425.991306px;}
.y1ef{bottom:431.664317px;}
.y87{bottom:432.165298px;}
.y80{bottom:432.165344px;}
.ybf{bottom:433.485260px;}
.yd4{bottom:433.485306px;}
.y117{bottom:433.624786px;}
.y15a{bottom:433.624969px;}
.yb{bottom:434.850000px;}
.y49{bottom:435.763046px;}
.y1ae{bottom:440.589278px;}
.y17a{bottom:440.985306px;}
.y1ee{bottom:446.658317px;}
.y8{bottom:446.698500px;}
.y86{bottom:450.915298px;}
.y7f{bottom:450.915344px;}
.ybe{bottom:452.235260px;}
.yd3{bottom:452.235306px;}
.y116{bottom:452.374786px;}
.y159{bottom:452.374969px;}
.yb6{bottom:454.711785px;}
.y1ad{bottom:455.583278px;}
.y1ed{bottom:461.652317px;}
.y85{bottom:469.665298px;}
.y7e{bottom:469.665344px;}
.yb5{bottom:469.705785px;}
.y1ac{bottom:470.577278px;}
.ybd{bottom:470.985260px;}
.yd2{bottom:470.985306px;}
.y115{bottom:471.124786px;}
.y158{bottom:471.124969px;}
.y1ec{bottom:476.646317px;}
.y38{bottom:478.711395px;}
.yb4{bottom:484.699785px;}
.y1ab{bottom:485.571278px;}
.y11{bottom:488.055000px;}
.y84{bottom:488.415298px;}
.y7d{bottom:488.415344px;}
.ybc{bottom:489.735260px;}
.yf2{bottom:489.735306px;}
.y114{bottom:489.874786px;}
.y157{bottom:489.874969px;}
.y1eb{bottom:491.640317px;}
.y7{bottom:497.707500px;}
.yb3{bottom:499.693785px;}
.y1aa{bottom:500.565278px;}
.y1ea{bottom:506.634317px;}
.y7c{bottom:507.165344px;}
.ybb{bottom:508.485260px;}
.yd1{bottom:508.485306px;}
.y113{bottom:508.624786px;}
.y156{bottom:508.624969px;}
.yb2{bottom:514.687785px;}
.y1a9{bottom:515.559278px;}
.y37{bottom:516.211395px;}
.y1e9{bottom:521.628317px;}
.y83{bottom:525.915298px;}
.y7b{bottom:525.915344px;}
.yba{bottom:527.235260px;}
.yf1{bottom:527.235306px;}
.y112{bottom:527.374786px;}
.y155{bottom:527.374969px;}
.yb1{bottom:529.681785px;}
.y1a8{bottom:530.553278px;}
.y36{bottom:534.961395px;}
.y1e8{bottom:536.622317px;}
.y12{bottom:538.230000px;}
.y7a{bottom:544.665344px;}
.yb0{bottom:544.675785px;}
.y1a7{bottom:545.547278px;}
.yb9{bottom:545.985260px;}
.yf0{bottom:545.985306px;}
.y111{bottom:546.124786px;}
.y154{bottom:546.124969px;}
.y6{bottom:548.716500px;}
.y1e7{bottom:551.616317px;}
.y35{bottom:553.711395px;}
.yaf{bottom:559.669785px;}
.y1a6{bottom:560.541278px;}
.y82{bottom:563.415298px;}
.y79{bottom:563.415344px;}
.yb8{bottom:564.735260px;}
.yef{bottom:564.735306px;}
.y110{bottom:564.874786px;}
.y153{bottom:564.874969px;}
.y1e6{bottom:566.610317px;}
.y34{bottom:572.461395px;}
.y1a5{bottom:575.535278px;}
.y147{bottom:577.507792px;}
.y1e5{bottom:581.604317px;}
.y78{bottom:582.165344px;}
.yb7{bottom:583.485260px;}
.yee{bottom:583.485306px;}
.y10f{bottom:583.624786px;}
.y152{bottom:583.624969px;}
.y1b{bottom:589.605000px;}
.y33{bottom:591.211395px;}
.y146{bottom:592.501792px;}
.y1e4{bottom:596.598317px;}
.y5{bottom:599.725500px;}
.y77{bottom:600.915344px;}
.yae{bottom:602.235260px;}
.yed{bottom:602.235306px;}
.y10e{bottom:602.374786px;}
.y151{bottom:602.374969px;}
.y145{bottom:607.495792px;}
.y1a4{bottom:609.285278px;}
.y32{bottom:609.961395px;}
.y1e3{bottom:611.592317px;}
.y76{bottom:619.665344px;}
.yad{bottom:620.985260px;}
.yec{bottom:620.985306px;}
.y10d{bottom:621.124786px;}
.y150{bottom:621.124969px;}
.y144{bottom:622.489792px;}
.y1e2{bottom:626.586317px;}
.y31{bottom:628.711395px;}
.ye{bottom:631.920000px;}
.y75{bottom:638.415344px;}
.yac{bottom:639.735260px;}
.yeb{bottom:639.735306px;}
.y10c{bottom:639.874786px;}
.y14f{bottom:639.874969px;}
.y1e1{bottom:641.580317px;}
.y30{bottom:647.461395px;}
.y1e0{bottom:656.574317px;}
.y74{bottom:657.165344px;}
.yab{bottom:658.485260px;}
.yea{bottom:658.485306px;}
.y10b{bottom:658.624786px;}
.y14e{bottom:658.624969px;}
.y2f{bottom:666.211395px;}
.y1df{bottom:671.568317px;}
.y1a3{bottom:675.078323px;}
.y73{bottom:675.915344px;}
.yaa{bottom:677.235260px;}
.ye9{bottom:677.235306px;}
.y14d{bottom:677.374969px;}
.y2e{bottom:684.961395px;}
.y1de{bottom:686.562317px;}
.y1a2{bottom:690.072323px;}
.y72{bottom:694.665344px;}
.ya9{bottom:695.985260px;}
.ye8{bottom:695.985306px;}
.y14c{bottom:696.124969px;}
.y21c{bottom:701.380823px;}
.y1dd{bottom:701.556317px;}
.y2d{bottom:703.711395px;}
.y1a1{bottom:705.066323px;}
.y71{bottom:713.415344px;}
.ya8{bottom:714.735260px;}
.ye7{bottom:714.735306px;}
.y14b{bottom:714.874969px;}
.y21b{bottom:716.374823px;}
.y1dc{bottom:716.550317px;}
.y11d{bottom:717.127101px;}
.y1a0{bottom:720.060323px;}
.y2c{bottom:722.461395px;}
.y21a{bottom:731.368823px;}
.y1db{bottom:731.544317px;}
.y70{bottom:732.165344px;}
.ya7{bottom:733.485260px;}
.ye6{bottom:733.485306px;}
.y14a{bottom:733.624969px;}
.y19f{bottom:735.054323px;}
.y11c{bottom:736.379601px;}
.y2b{bottom:741.211395px;}
.y219{bottom:746.362823px;}
.y1da{bottom:746.538317px;}
.y19e{bottom:750.048323px;}
.y6f{bottom:750.915344px;}
.ya6{bottom:752.235260px;}
.y105{bottom:752.235306px;}
.y149{bottom:752.374969px;}
.y2a{bottom:759.961395px;}
.y218{bottom:761.356823px;}
.y232{bottom:761.407816px;}
.y1d9{bottom:761.532317px;}
.y12f{bottom:764.125009px;}
.y19d{bottom:765.042323px;}
.y6e{bottom:769.665344px;}
.ya5{bottom:770.985260px;}
.y104{bottom:770.985306px;}
.y148{bottom:771.124969px;}
.y217{bottom:776.350823px;}
.y231{bottom:776.401816px;}
.y1d8{bottom:776.526317px;}
.y4{bottom:778.225500px;}
.y29{bottom:778.711395px;}
.y19c{bottom:780.036323px;}
.y12e{bottom:782.918509px;}
.y6d{bottom:788.415344px;}
.ya4{bottom:789.735260px;}
.y103{bottom:789.735306px;}
.y216{bottom:791.344823px;}
.y1d7{bottom:791.520317px;}
.y19b{bottom:795.030323px;}
.y28{bottom:797.461395px;}
.y12d{bottom:801.635509px;}
.y215{bottom:806.338823px;}
.y230{bottom:806.491815px;}
.y1d6{bottom:806.514317px;}
.y6c{bottom:807.165344px;}
.ya3{bottom:808.485260px;}
.y102{bottom:808.485306px;}
.y19a{bottom:810.024323px;}
.y13{bottom:815.670000px;}
.y16d{bottom:815.875844px;}
.y27{bottom:816.211395px;}
.y12c{bottom:820.314277px;}
.y214{bottom:821.332823px;}
.y22f{bottom:821.485815px;}
.y1d5{bottom:821.508317px;}
.y199{bottom:825.018323px;}
.y6b{bottom:825.915344px;}
.ya2{bottom:827.235260px;}
.y101{bottom:827.235306px;}
.y213{bottom:836.326823px;}
.y22e{bottom:836.479815px;}
.y1d4{bottom:836.502317px;}
.y12b{bottom:839.031277px;}
.y198{bottom:840.012323px;}
.y179{bottom:844.539277px;}
.y6a{bottom:844.665344px;}
.ya1{bottom:845.985260px;}
.y100{bottom:845.985306px;}
.y212{bottom:851.320823px;}
.y22d{bottom:851.473815px;}
.y1d3{bottom:851.496317px;}
.y12a{bottom:857.748277px;}
.y26{bottom:860.394153px;}
.y178{bottom:863.332777px;}
.y69{bottom:863.415344px;}
.ya0{bottom:864.735260px;}
.yff{bottom:864.735306px;}
.y211{bottom:866.314823px;}
.y22c{bottom:866.467815px;}
.y1d2{bottom:866.490317px;}
.y25{bottom:875.388153px;}
.y129{bottom:876.465277px;}
.y197{bottom:877.497323px;}
.y210{bottom:881.308823px;}
.y22b{bottom:881.461815px;}
.y1d1{bottom:881.484317px;}
.y177{bottom:882.049777px;}
.y68{bottom:882.165344px;}
.y9f{bottom:883.485260px;}
.yfe{bottom:883.485306px;}
.y196{bottom:892.491323px;}
.y128{bottom:895.182277px;}
.y20f{bottom:896.302823px;}
.y22a{bottom:896.455815px;}
.y1d0{bottom:896.478317px;}
.y176{bottom:900.766777px;}
.y67{bottom:900.915344px;}
.y9e{bottom:902.235260px;}
.yfd{bottom:902.235306px;}
.y3{bottom:905.716500px;}
.y20e{bottom:911.296823px;}
.y229{bottom:911.449815px;}
.y1cf{bottom:911.472317px;}
.y127{bottom:913.899277px;}
.y24{bottom:917.988190px;}
.y175{bottom:919.483777px;}
.y66{bottom:919.665344px;}
.y9d{bottom:920.985260px;}
.yfc{bottom:920.985306px;}
.y195{bottom:922.492073px;}
.y20d{bottom:926.290823px;}
.y228{bottom:926.443815px;}
.y1ce{bottom:926.466317px;}
.y126{bottom:932.616277px;}
.y23{bottom:936.738190px;}
.y194{bottom:937.486073px;}
.y174{bottom:938.200777px;}
.y65{bottom:938.415344px;}
.y9c{bottom:939.735260px;}
.yfb{bottom:939.735306px;}
.y20c{bottom:941.284823px;}
.y227{bottom:941.437815px;}
.y1cd{bottom:941.460317px;}
.y125{bottom:951.333277px;}
.y193{bottom:952.480073px;}
.y20b{bottom:956.278823px;}
.y226{bottom:956.431815px;}
.y1cc{bottom:956.454317px;}
.y173{bottom:956.917777px;}
.y64{bottom:957.165344px;}
.y9b{bottom:958.485260px;}
.yfa{bottom:958.485306px;}
.y2{bottom:964.228500px;}
.y124{bottom:970.050277px;}
.y20a{bottom:971.272823px;}
.y225{bottom:971.425815px;}
.y1cb{bottom:971.448317px;}
.y172{bottom:975.634777px;}
.y63{bottom:975.915344px;}
.y9a{bottom:977.235260px;}
.yf9{bottom:977.235306px;}
.y22{bottom:981.424622px;}
.y192{bottom:982.480823px;}
.y209{bottom:986.266823px;}
.y224{bottom:986.419815px;}
.y1ca{bottom:986.442317px;}
.y123{bottom:988.767277px;}
.y1{bottom:989.716500px;}
.y171{bottom:994.351777px;}
.y62{bottom:994.665344px;}
.y99{bottom:995.985260px;}
.yf8{bottom:995.985306px;}
.y191{bottom:997.474823px;}
.y208{bottom:1001.260823px;}
.y223{bottom:1001.413815px;}
.y1c9{bottom:1001.436317px;}
.y122{bottom:1007.484277px;}
.y21{bottom:1008.424622px;}
.y170{bottom:1013.068777px;}
.y61{bottom:1013.415344px;}
.y98{bottom:1014.735260px;}
.yf7{bottom:1014.735306px;}
.y207{bottom:1016.254823px;}
.y222{bottom:1016.407815px;}
.y1c8{bottom:1016.430317px;}
.y121{bottom:1026.201277px;}
.y190{bottom:1027.474823px;}
.y206{bottom:1031.248823px;}
.y221{bottom:1031.401815px;}
.y1c7{bottom:1031.424317px;}
.y16f{bottom:1031.785777px;}
.y60{bottom:1032.165344px;}
.y97{bottom:1033.485260px;}
.yf6{bottom:1033.485306px;}
.y205{bottom:1046.242823px;}
.y220{bottom:1046.395815px;}
.y1c6{bottom:1046.418317px;}
.y5f{bottom:1050.915344px;}
.y96{bottom:1052.235260px;}
.yf5{bottom:1052.235306px;}
.y120{bottom:1054.289527px;}
.y16e{bottom:1059.861277px;}
.y16c{bottom:1060.114844px;}
.y18f{bottom:1061.236823px;}
.y21f{bottom:1061.389815px;}
.y1c5{bottom:1061.412317px;}
.y11f{bottom:1069.283527px;}
.y5e{bottom:1069.665344px;}
.y95{bottom:1070.985260px;}
.yf4{bottom:1070.985306px;}
.y11b{bottom:1075.108844px;}
.y20{bottom:1076.132080px;}
.y18e{bottom:1076.230823px;}
.y21e{bottom:1076.383815px;}
.y1c4{bottom:1076.406317px;}
.y11e{bottom:1084.277527px;}
.y5d{bottom:1088.415344px;}
.y94{bottom:1089.735260px;}
.yf3{bottom:1089.735306px;}
.y11a{bottom:1090.102844px;}
.y18d{bottom:1091.224823px;}
.y21d{bottom:1091.377815px;}
.y1c3{bottom:1091.400317px;}
.y1f{bottom:1109.586556px;}
.y1e{bottom:1126.582306px;}
.y5c{bottom:1127.482361px;}
.h18{height:25.204199px;}
.h4{height:33.000000px;}
.h17{height:36.006000px;}
.h16{height:36.855469px;}
.hb{height:42.048000px;}
.h13{height:42.360000px;}
.h11{height:43.260000px;}
.hd{height:44.676000px;}
.h1a{height:45.186000px;}
.h1d{height:45.556254px;}
.h1c{height:45.758005px;}
.h1e{height:45.781223px;}
.h15{height:51.912000px;}
.h1b{height:52.173000px;}
.h12{height:53.160000px;}
.hc{height:54.862258px;}
.he{height:55.461000px;}
.h3{height:58.406250px;}
.h19{height:59.004000px;}
.h14{height:61.380000px;}
.h10{height:64.866000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hf{height:85.056000px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h9{height:1186.299000px;}
.ha{height:1186.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xc{left:76.535402px;}
.x11{left:78.746400px;}
.xd{left:85.181849px;}
.x12{left:93.545402px;}
.x10{left:97.796100px;}
.x1c{left:102.048152px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x13{left:267.874652px;}
.x16{left:272.374613px;}
.x18{left:375.407377px;}
.x19{left:384.396085px;}
.x1b{left:424.560888px;}
.xe{left:459.212540px;}
.xf{left:476.222540px;}
.x1d{left:484.726660px;}
.x1a{left:534.361585px;}
.x14{left:562.067386px;}
.xa{left:728.220612px;}
.x15{left:743.958884px;}
.x17{left:746.712888px;}
.xb{left:755.489868px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.270049pt;}
.v1{vertical-align:21.333333pt;}
.ls3d{letter-spacing:-2.312000pt;}
.ls46{letter-spacing:-0.634667pt;}
.ls33{letter-spacing:-0.426667pt;}
.ls2c{letter-spacing:-0.373333pt;}
.ls7c{letter-spacing:-0.362667pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls74{letter-spacing:-0.317333pt;}
.ls5c{letter-spacing:-0.272000pt;}
.ls32{letter-spacing:-0.266667pt;}
.ls78{letter-spacing:-0.226667pt;}
.lse{letter-spacing:-0.213333pt;}
.ls5d{letter-spacing:-0.181333pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls75{letter-spacing:-0.136000pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls7d{letter-spacing:-0.090667pt;}
.ls10{letter-spacing:-0.053333pt;}
.ls5b{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.026667pt;}
.ls63{letter-spacing:0.045333pt;}
.ls28{letter-spacing:0.053333pt;}
.ls64{letter-spacing:0.090667pt;}
.ls26{letter-spacing:0.106667pt;}
.ls44{letter-spacing:0.128000pt;}
.ls6a{letter-spacing:0.136000pt;}
.lsc{letter-spacing:0.158926pt;}
.ls9{letter-spacing:0.160000pt;}
.ls52{letter-spacing:0.181333pt;}
.ls42{letter-spacing:0.197333pt;}
.ls2{letter-spacing:0.213333pt;}
.ls3e{letter-spacing:0.224000pt;}
.lsd{letter-spacing:0.226667pt;}
.ls61{letter-spacing:0.234667pt;}
.ls27{letter-spacing:0.240000pt;}
.ls65{letter-spacing:0.256000pt;}
.ls48{letter-spacing:0.266654pt;}
.ls4{letter-spacing:0.266667pt;}
.ls59{letter-spacing:0.272000pt;}
.ls3f{letter-spacing:0.277328pt;}
.ls39{letter-spacing:0.293333pt;}
.ls62{letter-spacing:0.317333pt;}
.ls2a{letter-spacing:0.320000pt;}
.ls5f{letter-spacing:0.362667pt;}
.ls5{letter-spacing:0.373333pt;}
.ls67{letter-spacing:0.385333pt;}
.ls38{letter-spacing:0.400000pt;}
.ls57{letter-spacing:0.408000pt;}
.ls13{letter-spacing:0.426667pt;}
.ls55{letter-spacing:0.430667pt;}
.ls53{letter-spacing:0.453333pt;}
.ls47{letter-spacing:0.458667pt;}
.ls58{letter-spacing:0.476000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls5a{letter-spacing:0.498667pt;}
.ls2e{letter-spacing:0.506667pt;}
.ls23{letter-spacing:0.533333pt;}
.ls56{letter-spacing:0.544000pt;}
.ls3a{letter-spacing:0.560000pt;}
.ls14{letter-spacing:0.586667pt;}
.ls54{letter-spacing:0.589333pt;}
.ls69{letter-spacing:0.634667pt;}
.ls3{letter-spacing:0.640000pt;}
.ls41{letter-spacing:0.666667pt;}
.ls6c{letter-spacing:0.680000pt;}
.lsb{letter-spacing:0.693333pt;}
.ls71{letter-spacing:0.702667pt;}
.ls2d{letter-spacing:0.720000pt;}
.ls5e{letter-spacing:0.725333pt;}
.ls18{letter-spacing:0.741324pt;}
.ls21{letter-spacing:0.746667pt;}
.ls79{letter-spacing:0.748000pt;}
.ls66{letter-spacing:0.770667pt;}
.ls30{letter-spacing:0.800000pt;}
.ls6b{letter-spacing:0.816000pt;}
.ls2f{letter-spacing:0.826667pt;}
.ls6{letter-spacing:0.853333pt;}
.ls6f{letter-spacing:0.861333pt;}
.ls34{letter-spacing:0.880000pt;}
.ls25{letter-spacing:0.906667pt;}
.ls40{letter-spacing:0.944000pt;}
.ls43{letter-spacing:0.949333pt;}
.ls60{letter-spacing:0.952000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls3b{letter-spacing:0.997333pt;}
.lsa{letter-spacing:1.013333pt;}
.ls35{letter-spacing:1.040000pt;}
.ls16{letter-spacing:1.050667pt;}
.ls6e{letter-spacing:1.065333pt;}
.ls4e{letter-spacing:1.066647pt;}
.ls31{letter-spacing:1.066667pt;}
.ls76{letter-spacing:1.088000pt;}
.ls37{letter-spacing:1.120000pt;}
.ls7a{letter-spacing:1.133333pt;}
.ls17{letter-spacing:1.173333pt;}
.ls7b{letter-spacing:1.178667pt;}
.ls6d{letter-spacing:1.224000pt;}
.ls29{letter-spacing:1.226667pt;}
.ls2b{letter-spacing:1.280000pt;}
.ls51{letter-spacing:1.306667pt;}
.ls19{letter-spacing:1.333333pt;}
.ls77{letter-spacing:1.360000pt;}
.ls1c{letter-spacing:1.386667pt;}
.ls72{letter-spacing:1.405333pt;}
.ls1e{letter-spacing:1.413333pt;}
.ls15{letter-spacing:1.440000pt;}
.ls22{letter-spacing:1.493333pt;}
.ls70{letter-spacing:1.496000pt;}
.ls73{letter-spacing:1.541333pt;}
.ls1f{letter-spacing:1.546667pt;}
.ls4b{letter-spacing:1.600000pt;}
.ls24{letter-spacing:1.653333pt;}
.ls4c{letter-spacing:1.680000pt;}
.ls20{letter-spacing:1.706667pt;}
.ls68{letter-spacing:1.722667pt;}
.ls1a{letter-spacing:1.754667pt;}
.ls3c{letter-spacing:1.760000pt;}
.ls4d{letter-spacing:1.813333pt;}
.ls4f{letter-spacing:1.866667pt;}
.ls49{letter-spacing:1.920000pt;}
.ls4a{letter-spacing:2.026667pt;}
.ls1b{letter-spacing:2.133333pt;}
.ls1d{letter-spacing:2.186667pt;}
.ls50{letter-spacing:2.506667pt;}
.ls1{letter-spacing:3.546667pt;}
.ls45{letter-spacing:592.980746pt;}
.ws0{word-spacing:-16.874667pt;}
.ws5f{word-spacing:-15.093333pt;}
.ws20{word-spacing:-15.040000pt;}
.ws88{word-spacing:-14.346667pt;}
.ws5e{word-spacing:-13.813333pt;}
.ws49{word-spacing:-13.706667pt;}
.ws47{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.333333pt;}
.ws48{word-spacing:-13.280000pt;}
.ws87{word-spacing:-13.173333pt;}
.ws3a{word-spacing:-13.013333pt;}
.wsb4{word-spacing:-12.194667pt;}
.ws94{word-spacing:-11.560000pt;}
.ws73{word-spacing:-11.333333pt;}
.ws4a{word-spacing:-11.088000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.880000pt;}
.ws8{word-spacing:-10.453333pt;}
.wsb{word-spacing:-10.240000pt;}
.wsa{word-spacing:-10.186667pt;}
.ws9{word-spacing:-10.026667pt;}
.ws89{word-spacing:-9.134667pt;}
.ws3{word-spacing:-8.885333pt;}
.ws2{word-spacing:-8.362667pt;}
.wse{word-spacing:-7.933333pt;}
.ws5{word-spacing:-7.728000pt;}
.ws61{word-spacing:-6.666667pt;}
.ws78{word-spacing:-5.666667pt;}
.wsf{word-spacing:-1.680000pt;}
.ws90{word-spacing:-1.386667pt;}
.ws15{word-spacing:-1.333333pt;}
.ws34{word-spacing:-1.280000pt;}
.ws8a{word-spacing:-1.226667pt;}
.wsb7{word-spacing:-1.178667pt;}
.ws40{word-spacing:-1.173333pt;}
.ws93{word-spacing:-1.133333pt;}
.ws41{word-spacing:-1.120000pt;}
.wsbb{word-spacing:-1.088000pt;}
.ws25{word-spacing:-1.066667pt;}
.ws79{word-spacing:-1.013333pt;}
.wsa5{word-spacing:-0.952000pt;}
.ws21{word-spacing:-0.906667pt;}
.wsa4{word-spacing:-0.861333pt;}
.ws57{word-spacing:-0.853333pt;}
.ws53{word-spacing:-0.800000pt;}
.ws7a{word-spacing:-0.746667pt;}
.ws51{word-spacing:-0.693333pt;}
.wsa6{word-spacing:-0.680000pt;}
.ws14{word-spacing:-0.640000pt;}
.wsa7{word-spacing:-0.634667pt;}
.wsba{word-spacing:-0.589333pt;}
.ws2b{word-spacing:-0.586667pt;}
.ws1f{word-spacing:-0.544000pt;}
.ws76{word-spacing:-0.533333pt;}
.ws10{word-spacing:-0.506667pt;}
.wsb8{word-spacing:-0.498667pt;}
.ws3d{word-spacing:-0.480000pt;}
.ws42{word-spacing:-0.426667pt;}
.ws30{word-spacing:-0.373333pt;}
.ws5d{word-spacing:-0.320000pt;}
.wsb1{word-spacing:-0.272000pt;}
.ws6{word-spacing:-0.266667pt;}
.ws9e{word-spacing:-0.234667pt;}
.wsaf{word-spacing:-0.226667pt;}
.ws3f{word-spacing:-0.213333pt;}
.ws18{word-spacing:-0.160000pt;}
.ws2e{word-spacing:-0.106667pt;}
.wsbd{word-spacing:-0.090667pt;}
.wsc{word-spacing:-0.064000pt;}
.ws54{word-spacing:-0.053333pt;}
.ws9c{word-spacing:-0.045333pt;}
.ws1{word-spacing:0.000000pt;}
.wsc6{word-spacing:0.045333pt;}
.ws52{word-spacing:0.053333pt;}
.ws4c{word-spacing:0.106667pt;}
.wsca{word-spacing:0.136000pt;}
.ws3e{word-spacing:0.160000pt;}
.wsb2{word-spacing:0.181333pt;}
.ws67{word-spacing:0.213333pt;}
.ws91{word-spacing:0.226667pt;}
.ws2c{word-spacing:0.266667pt;}
.wsab{word-spacing:0.272000pt;}
.ws92{word-spacing:0.317333pt;}
.ws3c{word-spacing:0.320000pt;}
.ws72{word-spacing:0.373333pt;}
.ws99{word-spacing:0.408000pt;}
.ws1d{word-spacing:0.426667pt;}
.ws98{word-spacing:0.453333pt;}
.ws24{word-spacing:0.480000pt;}
.ws17{word-spacing:0.533333pt;}
.wsb5{word-spacing:0.544000pt;}
.ws66{word-spacing:0.586667pt;}
.wsc7{word-spacing:0.634667pt;}
.ws16{word-spacing:0.640000pt;}
.ws62{word-spacing:0.693333pt;}
.ws44{word-spacing:0.746667pt;}
.ws12{word-spacing:0.800000pt;}
.ws4b{word-spacing:0.853333pt;}
.ws9b{word-spacing:0.861333pt;}
.ws1a{word-spacing:0.906667pt;}
.ws6d{word-spacing:0.960000pt;}
.ws9a{word-spacing:0.997333pt;}
.ws6b{word-spacing:1.013333pt;}
.wsa2{word-spacing:1.042667pt;}
.ws50{word-spacing:1.066667pt;}
.ws86{word-spacing:1.120000pt;}
.ws96{word-spacing:1.133333pt;}
.ws84{word-spacing:1.173333pt;}
.ws95{word-spacing:1.178667pt;}
.ws1c{word-spacing:1.226667pt;}
.ws59{word-spacing:1.280000pt;}
.wsa1{word-spacing:1.314667pt;}
.ws13{word-spacing:1.333333pt;}
.wsa3{word-spacing:1.360000pt;}
.ws22{word-spacing:1.386667pt;}
.wsc9{word-spacing:1.405333pt;}
.ws28{word-spacing:1.440000pt;}
.wsae{word-spacing:1.450667pt;}
.ws37{word-spacing:1.493333pt;}
.ws23{word-spacing:1.546667pt;}
.ws33{word-spacing:1.600000pt;}
.wsc3{word-spacing:1.632000pt;}
.ws38{word-spacing:1.653333pt;}
.ws5c{word-spacing:1.706667pt;}
.ws35{word-spacing:1.760000pt;}
.ws97{word-spacing:1.768000pt;}
.ws31{word-spacing:1.813333pt;}
.wsac{word-spacing:1.858667pt;}
.ws2d{word-spacing:1.866667pt;}
.wsb3{word-spacing:1.904000pt;}
.ws55{word-spacing:1.920000pt;}
.ws71{word-spacing:1.973333pt;}
.wsc0{word-spacing:1.994667pt;}
.wsbc{word-spacing:2.040000pt;}
.ws11{word-spacing:2.080000pt;}
.wsaa{word-spacing:2.085333pt;}
.ws45{word-spacing:2.133333pt;}
.ws43{word-spacing:2.186667pt;}
.ws6c{word-spacing:2.240000pt;}
.ws19{word-spacing:2.293333pt;}
.ws65{word-spacing:2.346667pt;}
.wsbf{word-spacing:2.357333pt;}
.ws3b{word-spacing:2.400000pt;}
.wsc2{word-spacing:2.402667pt;}
.wsbe{word-spacing:2.448000pt;}
.ws2f{word-spacing:2.453333pt;}
.wsb0{word-spacing:2.493333pt;}
.ws85{word-spacing:2.506667pt;}
.ws8b{word-spacing:2.560000pt;}
.wsc8{word-spacing:2.584000pt;}
.ws32{word-spacing:2.613333pt;}
.ws29{word-spacing:2.666667pt;}
.wsb6{word-spacing:2.674667pt;}
.ws64{word-spacing:2.720000pt;}
.ws56{word-spacing:2.773333pt;}
.ws2a{word-spacing:2.826667pt;}
.ws1b{word-spacing:2.880000pt;}
.wsa9{word-spacing:2.901333pt;}
.ws7d{word-spacing:2.933333pt;}
.wsb9{word-spacing:2.946667pt;}
.wsc1{word-spacing:3.037333pt;}
.ws8d{word-spacing:3.040000pt;}
.ws9f{word-spacing:3.082667pt;}
.ws75{word-spacing:3.093333pt;}
.wsa8{word-spacing:3.128000pt;}
.ws4e{word-spacing:3.146667pt;}
.ws9d{word-spacing:3.173333pt;}
.ws6f{word-spacing:3.200000pt;}
.ws7c{word-spacing:3.253333pt;}
.ws58{word-spacing:3.306667pt;}
.ws46{word-spacing:3.413333pt;}
.ws4f{word-spacing:3.466667pt;}
.ws8e{word-spacing:3.520000pt;}
.ws63{word-spacing:3.573333pt;}
.ws7b{word-spacing:3.626667pt;}
.ws60{word-spacing:3.680000pt;}
.ws8c{word-spacing:3.733333pt;}
.ws4d{word-spacing:3.786667pt;}
.ws5b{word-spacing:3.840000pt;}
.wsc4{word-spacing:3.853333pt;}
.wsa0{word-spacing:4.034667pt;}
.ws36{word-spacing:4.053333pt;}
.wsc5{word-spacing:4.125333pt;}
.ws5a{word-spacing:4.213333pt;}
.ws39{word-spacing:4.320000pt;}
.ws70{word-spacing:4.373333pt;}
.ws83{word-spacing:4.480000pt;}
.ws6e{word-spacing:4.533333pt;}
.ws6a{word-spacing:4.586667pt;}
.ws77{word-spacing:4.746667pt;}
.ws82{word-spacing:4.800000pt;}
.ws26{word-spacing:4.853333pt;}
.ws27{word-spacing:5.120000pt;}
.ws81{word-spacing:5.653333pt;}
.ws69{word-spacing:6.400000pt;}
.ws8f{word-spacing:6.720000pt;}
.wsad{word-spacing:6.800000pt;}
.ws68{word-spacing:6.933333pt;}
.wscb{word-spacing:12.013333pt;}
.wscc{word-spacing:15.640000pt;}
.ws1e{word-spacing:64.237333pt;}
.ws7f{word-spacing:660.189333pt;}
.ws7e{word-spacing:776.922667pt;}
.ws80{word-spacing:799.544000pt;}
.ws74{word-spacing:932.370667pt;}
._4d{margin-left:-16.637333pt;}
._c{margin-left:-14.733333pt;}
._48{margin-left:-12.965333pt;}
._49{margin-left:-11.288000pt;}
._12{margin-left:-9.973333pt;}
._35{margin-left:-8.844812pt;}
._10{margin-left:-7.837867pt;}
._2{margin-left:-6.536533pt;}
._9{margin-left:-4.930133pt;}
._3{margin-left:-3.808000pt;}
._7{margin-left:-2.893867pt;}
._1{margin-left:-1.774933pt;}
._4{width:0.964267pt;}
._a{width:1.886933pt;}
._13{width:3.588267pt;}
._0{width:4.966400pt;}
._44{width:6.437333pt;}
._36{width:8.602667pt;}
._11{width:9.744000pt;}
._43{width:10.660257pt;}
._6{width:11.961600pt;}
._b{width:13.706667pt;}
._8{width:14.613324pt;}
._d{width:16.320000pt;}
._4b{width:17.641600pt;}
._4a{width:19.092267pt;}
._46{width:20.393067pt;}
._4c{width:21.418133pt;}
._45{width:22.440000pt;}
._47{width:23.890667pt;}
._5{width:35.522135pt;}
._e{width:48.552000pt;}
._3c{width:53.901333pt;}
._3d{width:67.727993pt;}
._3a{width:115.736000pt;}
._2a{width:140.306667pt;}
._2b{width:160.752000pt;}
._3b{width:166.872000pt;}
._29{width:168.594667pt;}
._33{width:172.545600pt;}
._26{width:174.902926pt;}
._2f{width:201.008000pt;}
._39{width:203.728000pt;}
._2d{width:210.981319pt;}
._25{width:222.949333pt;}
._31{width:235.358400pt;}
._23{width:236.322667pt;}
._27{width:244.658667pt;}
._38{width:256.728031pt;}
._32{width:272.584000pt;}
._2c{width:297.379200pt;}
._1f{width:310.623973pt;}
._28{width:324.677333pt;}
._34{width:336.146667pt;}
._20{width:353.847440pt;}
._37{width:373.303949pt;}
._24{width:387.690653pt;}
._2e{width:419.152000pt;}
._3f{width:423.821306pt;}
._30{width:431.664000pt;}
._21{width:442.724773pt;}
._16{width:468.338657pt;}
._18{width:491.866657pt;}
._40{width:521.392493pt;}
._41{width:529.740759pt;}
._3e{width:616.676226pt;}
._22{width:624.058657pt;}
._42{width:626.552000pt;}
._1d{width:759.378667pt;}
._1e{width:809.787842pt;}
._17{width:814.918906pt;}
._15{width:835.092240pt;}
._1a{width:887.717333pt;}
._14{width:892.782373pt;}
._1c{width:920.493333pt;}
._19{width:937.364267pt;}
._1b{width:944.021306pt;}
._f{width:1903.773419pt;}
.fsa{font-size:31.733332pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs6{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y1d{bottom:60.930933pt;}
.y1c{bottom:61.181335pt;}
.y15{bottom:69.080000pt;}
.y1a{bottom:81.413333pt;}
.y14{bottom:88.706667pt;}
.y5b{bottom:100.389600pt;}
.y19{bottom:101.040000pt;}
.yd0{bottom:101.986898pt;}
.y10a{bottom:101.986928pt;}
.ye5{bottom:101.986938pt;}
.y16b{bottom:102.111084pt;}
.y204{bottom:103.813615pt;}
.y138{bottom:105.792938pt;}
.y48{bottom:108.854533pt;}
.y18c{bottom:112.064938pt;}
.y203{bottom:117.141615pt;}
.y5a{bottom:118.250936pt;}
.y137{bottom:118.392233pt;}
.ycf{bottom:118.653564pt;}
.y109{bottom:118.653595pt;}
.ye4{bottom:118.653605pt;}
.y16a{bottom:118.777751pt;}
.y10{bottom:119.053333pt;}
.y18{bottom:120.666667pt;}
.y1c2{bottom:125.074914pt;}
.y18b{bottom:125.392938pt;}
.y47{bottom:125.521200pt;}
.y202{bottom:130.469615pt;}
.y59{bottom:133.775603pt;}
.yce{bottom:135.320231pt;}
.y108{bottom:135.320262pt;}
.ye3{bottom:135.320272pt;}
.y169{bottom:135.444417pt;}
.y16{bottom:137.733333pt;}
.y1c1{bottom:138.402914pt;}
.yf{bottom:138.680000pt;}
.y18a{bottom:138.720938pt;}
.y17{bottom:140.293333pt;}
.y46{bottom:142.187866pt;}
.y201{bottom:143.797615pt;}
.y143{bottom:144.103995pt;}
.y58{bottom:147.103603pt;}
.y1c0{bottom:151.730914pt;}
.ycd{bottom:151.986898pt;}
.y107{bottom:151.986928pt;}
.ye2{bottom:151.986938pt;}
.y168{bottom:152.111084pt;}
.y200{bottom:157.125615pt;}
.y45{bottom:158.854533pt;}
.y57{bottom:160.431603pt;}
.y142{bottom:160.809328pt;}
.y1bf{bottom:165.058914pt;}
.y189{bottom:165.388272pt;}
.ycc{bottom:168.653564pt;}
.y106{bottom:168.653595pt;}
.ye1{bottom:168.653605pt;}
.y167{bottom:168.777751pt;}
.y1ff{bottom:170.453615pt;}
.y141{bottom:174.137328pt;}
.y44{bottom:175.521200pt;}
.y56{bottom:178.292928pt;}
.y1be{bottom:178.386914pt;}
.y188{bottom:178.716272pt;}
.y93{bottom:182.284270pt;}
.y1fe{bottom:183.781615pt;}
.ycb{bottom:185.320231pt;}
.ye0{bottom:185.320272pt;}
.y166{bottom:185.444417pt;}
.y140{bottom:190.774662pt;}
.y1bd{bottom:191.714914pt;}
.y187{bottom:192.044272pt;}
.y43{bottom:192.187866pt;}
.y55{bottom:193.806928pt;}
.y92{bottom:195.612270pt;}
.y1fd{bottom:197.109615pt;}
.yca{bottom:201.986898pt;}
.ydf{bottom:201.986938pt;}
.y165{bottom:202.111084pt;}
.y1bc{bottom:205.042914pt;}
.y186{bottom:205.372272pt;}
.y13f{bottom:207.411995pt;}
.y42{bottom:208.854533pt;}
.y91{bottom:208.940270pt;}
.y1fc{bottom:210.437615pt;}
.y54{bottom:211.668274pt;}
.y1bb{bottom:218.370914pt;}
.yc9{bottom:218.653564pt;}
.yde{bottom:218.653605pt;}
.y185{bottom:218.700272pt;}
.y164{bottom:218.777751pt;}
.y90{bottom:222.268270pt;}
.y1fb{bottom:223.765615pt;}
.y13e{bottom:224.049328pt;}
.y41{bottom:225.521200pt;}
.y53{bottom:227.187608pt;}
.y1ba{bottom:231.698914pt;}
.y184{bottom:232.028272pt;}
.y136{bottom:234.150896pt;}
.yc8{bottom:235.320231pt;}
.ydd{bottom:235.320272pt;}
.y163{bottom:235.444417pt;}
.y8f{bottom:235.596270pt;}
.y1fa{bottom:237.093615pt;}
.y52{bottom:240.515608pt;}
.y13d{bottom:240.686662pt;}
.y40{bottom:242.187866pt;}
.y1b9{bottom:245.026914pt;}
.y183{bottom:245.356272pt;}
.y135{bottom:247.478896pt;}
.y8e{bottom:248.924270pt;}
.y1f9{bottom:250.421615pt;}
.yc7{bottom:251.986898pt;}
.ydc{bottom:251.986938pt;}
.y162{bottom:252.111084pt;}
.y13c{bottom:257.323995pt;}
.y1b8{bottom:258.354914pt;}
.y51{bottom:258.376933pt;}
.y182{bottom:258.684272pt;}
.y3f{bottom:258.854533pt;}
.y134{bottom:260.806896pt;}
.y8d{bottom:262.252270pt;}
.y1f8{bottom:263.749615pt;}
.yc6{bottom:268.653564pt;}
.ydb{bottom:268.653605pt;}
.y161{bottom:268.777751pt;}
.y1b7{bottom:271.682914pt;}
.y181{bottom:272.012272pt;}
.y50{bottom:273.896266pt;}
.y133{bottom:274.134896pt;}
.y3e{bottom:275.521200pt;}
.y8c{bottom:275.580270pt;}
.y1f7{bottom:277.077615pt;}
.y13b{bottom:282.301194pt;}
.y1b6{bottom:285.010914pt;}
.yc5{bottom:285.320231pt;}
.yda{bottom:285.320272pt;}
.y180{bottom:285.340272pt;}
.y160{bottom:285.444417pt;}
.y4f{bottom:287.224266pt;}
.y132{bottom:287.462896pt;}
.y8b{bottom:288.908270pt;}
.y1f6{bottom:290.405615pt;}
.y3d{bottom:292.187866pt;}
.y13a{bottom:295.629194pt;}
.y1b5{bottom:298.338914pt;}
.y131{bottom:300.790896pt;}
.yc4{bottom:301.986898pt;}
.yd9{bottom:301.986938pt;}
.y15f{bottom:302.111084pt;}
.y8a{bottom:302.236270pt;}
.y1f5{bottom:303.733615pt;}
.y4e{bottom:305.085592pt;}
.ya{bottom:306.382667pt;}
.y3c{bottom:308.854533pt;}
.y139{bottom:308.957194pt;}
.y1b4{bottom:311.666914pt;}
.y17f{bottom:312.007605pt;}
.y130{bottom:314.118896pt;}
.y89{bottom:315.564270pt;}
.y1f4{bottom:317.061615pt;}
.yc3{bottom:318.653564pt;}
.yd8{bottom:318.653605pt;}
.y15e{bottom:318.777751pt;}
.y4d{bottom:320.604946pt;}
.y1b3{bottom:324.994914pt;}
.y17e{bottom:325.335605pt;}
.y3b{bottom:325.521200pt;}
.y1f3{bottom:330.389615pt;}
.y4c{bottom:333.932946pt;}
.yc2{bottom:335.320231pt;}
.yd7{bottom:335.320272pt;}
.y15d{bottom:335.444417pt;}
.y1b2{bottom:338.322914pt;}
.y17d{bottom:338.663605pt;}
.y3a{bottom:342.187866pt;}
.yd{bottom:343.546667pt;}
.y1f2{bottom:343.717615pt;}
.y1b1{bottom:351.650914pt;}
.y9{bottom:351.724000pt;}
.y4b{bottom:351.794271pt;}
.yc1{bottom:351.986898pt;}
.yd6{bottom:351.986938pt;}
.y17c{bottom:351.991605pt;}
.y119{bottom:352.110921pt;}
.y15c{bottom:352.111084pt;}
.y1f1{bottom:357.045615pt;}
.y1b0{bottom:364.978914pt;}
.y88{bottom:367.480265pt;}
.y81{bottom:367.480306pt;}
.yc0{bottom:368.653564pt;}
.yd5{bottom:368.653605pt;}
.y118{bottom:368.777588pt;}
.y15b{bottom:368.777751pt;}
.y1f0{bottom:370.373615pt;}
.y4a{bottom:374.016930pt;}
.y39{bottom:375.521200pt;}
.y1af{bottom:378.306914pt;}
.y17b{bottom:378.658938pt;}
.y1ef{bottom:383.701615pt;}
.y87{bottom:384.146932pt;}
.y80{bottom:384.146973pt;}
.ybf{bottom:385.320231pt;}
.yd4{bottom:385.320272pt;}
.y117{bottom:385.444255pt;}
.y15a{bottom:385.444417pt;}
.yb{bottom:386.533333pt;}
.y49{bottom:387.344930pt;}
.y1ae{bottom:391.634914pt;}
.y17a{bottom:391.986938pt;}
.y1ee{bottom:397.029615pt;}
.y8{bottom:397.065333pt;}
.y86{bottom:400.813599pt;}
.y7f{bottom:400.813639pt;}
.ybe{bottom:401.986898pt;}
.yd3{bottom:401.986938pt;}
.y116{bottom:402.110921pt;}
.y159{bottom:402.111084pt;}
.yb6{bottom:404.188253pt;}
.y1ad{bottom:404.962914pt;}
.y1ed{bottom:410.357615pt;}
.y85{bottom:417.480265pt;}
.y7e{bottom:417.480306pt;}
.yb5{bottom:417.516253pt;}
.y1ac{bottom:418.290914pt;}
.ybd{bottom:418.653564pt;}
.yd2{bottom:418.653605pt;}
.y115{bottom:418.777588pt;}
.y158{bottom:418.777751pt;}
.y1ec{bottom:423.685615pt;}
.y38{bottom:425.521240pt;}
.yb4{bottom:430.844253pt;}
.y1ab{bottom:431.618914pt;}
.y11{bottom:433.826667pt;}
.y84{bottom:434.146932pt;}
.y7d{bottom:434.146973pt;}
.ybc{bottom:435.320231pt;}
.yf2{bottom:435.320272pt;}
.y114{bottom:435.444255pt;}
.y157{bottom:435.444417pt;}
.y1eb{bottom:437.013615pt;}
.y7{bottom:442.406667pt;}
.yb3{bottom:444.172253pt;}
.y1aa{bottom:444.946914pt;}
.y1ea{bottom:450.341615pt;}
.y7c{bottom:450.813639pt;}
.ybb{bottom:451.986898pt;}
.yd1{bottom:451.986938pt;}
.y113{bottom:452.110921pt;}
.y156{bottom:452.111084pt;}
.yb2{bottom:457.500253pt;}
.y1a9{bottom:458.274914pt;}
.y37{bottom:458.854574pt;}
.y1e9{bottom:463.669615pt;}
.y83{bottom:467.480265pt;}
.y7b{bottom:467.480306pt;}
.yba{bottom:468.653564pt;}
.yf1{bottom:468.653605pt;}
.y112{bottom:468.777588pt;}
.y155{bottom:468.777751pt;}
.yb1{bottom:470.828253pt;}
.y1a8{bottom:471.602914pt;}
.y36{bottom:475.521240pt;}
.y1e8{bottom:476.997615pt;}
.y12{bottom:478.426667pt;}
.y7a{bottom:484.146973pt;}
.yb0{bottom:484.156253pt;}
.y1a7{bottom:484.930914pt;}
.yb9{bottom:485.320231pt;}
.yf0{bottom:485.320272pt;}
.y111{bottom:485.444255pt;}
.y154{bottom:485.444417pt;}
.y6{bottom:487.748000pt;}
.y1e7{bottom:490.325615pt;}
.y35{bottom:492.187907pt;}
.yaf{bottom:497.484253pt;}
.y1a6{bottom:498.258914pt;}
.y82{bottom:500.813599pt;}
.y79{bottom:500.813639pt;}
.yb8{bottom:501.986898pt;}
.yef{bottom:501.986938pt;}
.y110{bottom:502.110921pt;}
.y153{bottom:502.111084pt;}
.y1e6{bottom:503.653615pt;}
.y34{bottom:508.854574pt;}
.y1a5{bottom:511.586914pt;}
.y147{bottom:513.340259pt;}
.y1e5{bottom:516.981615pt;}
.y78{bottom:517.480306pt;}
.yb7{bottom:518.653564pt;}
.yee{bottom:518.653605pt;}
.y10f{bottom:518.777588pt;}
.y152{bottom:518.777751pt;}
.y1b{bottom:524.093333pt;}
.y33{bottom:525.521240pt;}
.y146{bottom:526.668259pt;}
.y1e4{bottom:530.309615pt;}
.y5{bottom:533.089333pt;}
.y77{bottom:534.146973pt;}
.yae{bottom:535.320231pt;}
.yed{bottom:535.320272pt;}
.y10e{bottom:535.444255pt;}
.y151{bottom:535.444417pt;}
.y145{bottom:539.996259pt;}
.y1a4{bottom:541.586914pt;}
.y32{bottom:542.187907pt;}
.y1e3{bottom:543.637615pt;}
.y76{bottom:550.813639pt;}
.yad{bottom:551.986898pt;}
.yec{bottom:551.986938pt;}
.y10d{bottom:552.110921pt;}
.y150{bottom:552.111084pt;}
.y144{bottom:553.324259pt;}
.y1e2{bottom:556.965615pt;}
.y31{bottom:558.854574pt;}
.ye{bottom:561.706667pt;}
.y75{bottom:567.480306pt;}
.yac{bottom:568.653564pt;}
.yeb{bottom:568.653605pt;}
.y10c{bottom:568.777588pt;}
.y14f{bottom:568.777751pt;}
.y1e1{bottom:570.293615pt;}
.y30{bottom:575.521240pt;}
.y1e0{bottom:583.621615pt;}
.y74{bottom:584.146973pt;}
.yab{bottom:585.320231pt;}
.yea{bottom:585.320272pt;}
.y10b{bottom:585.444255pt;}
.y14e{bottom:585.444417pt;}
.y2f{bottom:592.187907pt;}
.y1df{bottom:596.949615pt;}
.y1a3{bottom:600.069620pt;}
.y73{bottom:600.813639pt;}
.yaa{bottom:601.986898pt;}
.ye9{bottom:601.986938pt;}
.y14d{bottom:602.111084pt;}
.y2e{bottom:608.854574pt;}
.y1de{bottom:610.277615pt;}
.y1a2{bottom:613.397620pt;}
.y72{bottom:617.480306pt;}
.ya9{bottom:618.653564pt;}
.ye8{bottom:618.653605pt;}
.y14c{bottom:618.777751pt;}
.y21c{bottom:623.449620pt;}
.y1dd{bottom:623.605615pt;}
.y2d{bottom:625.521240pt;}
.y1a1{bottom:626.725620pt;}
.y71{bottom:634.146973pt;}
.ya8{bottom:635.320231pt;}
.ye7{bottom:635.320272pt;}
.y14b{bottom:635.444417pt;}
.y21b{bottom:636.777620pt;}
.y1dc{bottom:636.933615pt;}
.y11d{bottom:637.446312pt;}
.y1a0{bottom:640.053620pt;}
.y2c{bottom:642.187907pt;}
.y21a{bottom:650.105620pt;}
.y1db{bottom:650.261615pt;}
.y70{bottom:650.813639pt;}
.ya7{bottom:651.986898pt;}
.ye6{bottom:651.986938pt;}
.y14a{bottom:652.111084pt;}
.y19f{bottom:653.381620pt;}
.y11c{bottom:654.559646pt;}
.y2b{bottom:658.854574pt;}
.y219{bottom:663.433620pt;}
.y1da{bottom:663.589615pt;}
.y19e{bottom:666.709620pt;}
.y6f{bottom:667.480306pt;}
.ya6{bottom:668.653564pt;}
.y105{bottom:668.653605pt;}
.y149{bottom:668.777751pt;}
.y2a{bottom:675.521240pt;}
.y218{bottom:676.761620pt;}
.y232{bottom:676.806948pt;}
.y1d9{bottom:676.917615pt;}
.y12f{bottom:679.222230pt;}
.y19d{bottom:680.037620pt;}
.y6e{bottom:684.146973pt;}
.ya5{bottom:685.320231pt;}
.y104{bottom:685.320272pt;}
.y148{bottom:685.444417pt;}
.y217{bottom:690.089620pt;}
.y231{bottom:690.134948pt;}
.y1d8{bottom:690.245615pt;}
.y4{bottom:691.756000pt;}
.y29{bottom:692.187907pt;}
.y19c{bottom:693.365620pt;}
.y12e{bottom:695.927563pt;}
.y6d{bottom:700.813639pt;}
.ya4{bottom:701.986898pt;}
.y103{bottom:701.986938pt;}
.y216{bottom:703.417620pt;}
.y1d7{bottom:703.573615pt;}
.y19b{bottom:706.693620pt;}
.y28{bottom:708.854574pt;}
.y12d{bottom:712.564896pt;}
.y215{bottom:716.745620pt;}
.y230{bottom:716.881613pt;}
.y1d6{bottom:716.901615pt;}
.y6c{bottom:717.480306pt;}
.ya3{bottom:718.653564pt;}
.y102{bottom:718.653605pt;}
.y19a{bottom:720.021620pt;}
.y13{bottom:725.040000pt;}
.y16d{bottom:725.222973pt;}
.y27{bottom:725.521240pt;}
.y12c{bottom:729.168246pt;}
.y214{bottom:730.073620pt;}
.y22f{bottom:730.209613pt;}
.y1d5{bottom:730.229615pt;}
.y199{bottom:733.349620pt;}
.y6b{bottom:734.146973pt;}
.ya2{bottom:735.320231pt;}
.y101{bottom:735.320272pt;}
.y213{bottom:743.401620pt;}
.y22e{bottom:743.537613pt;}
.y1d4{bottom:743.557615pt;}
.y12b{bottom:745.805579pt;}
.y198{bottom:746.677620pt;}
.y179{bottom:750.701579pt;}
.y6a{bottom:750.813639pt;}
.ya1{bottom:751.986898pt;}
.y100{bottom:751.986938pt;}
.y212{bottom:756.729620pt;}
.y22d{bottom:756.865613pt;}
.y1d3{bottom:756.885615pt;}
.y12a{bottom:762.442913pt;}
.y26{bottom:764.794803pt;}
.y178{bottom:767.406913pt;}
.y69{bottom:767.480306pt;}
.ya0{bottom:768.653564pt;}
.yff{bottom:768.653605pt;}
.y211{bottom:770.057620pt;}
.y22c{bottom:770.193613pt;}
.y1d2{bottom:770.213615pt;}
.y25{bottom:778.122803pt;}
.y129{bottom:779.080246pt;}
.y197{bottom:779.997620pt;}
.y210{bottom:783.385620pt;}
.y22b{bottom:783.521613pt;}
.y1d1{bottom:783.541615pt;}
.y177{bottom:784.044246pt;}
.y68{bottom:784.146973pt;}
.y9f{bottom:785.320231pt;}
.yfe{bottom:785.320272pt;}
.y196{bottom:793.325620pt;}
.y128{bottom:795.717579pt;}
.y20f{bottom:796.713620pt;}
.y22a{bottom:796.849613pt;}
.y1d0{bottom:796.869615pt;}
.y176{bottom:800.681579pt;}
.y67{bottom:800.813639pt;}
.y9e{bottom:801.986898pt;}
.yfd{bottom:801.986938pt;}
.y3{bottom:805.081333pt;}
.y20e{bottom:810.041620pt;}
.y229{bottom:810.177613pt;}
.y1cf{bottom:810.197615pt;}
.y127{bottom:812.354913pt;}
.y24{bottom:815.989502pt;}
.y175{bottom:817.318913pt;}
.y66{bottom:817.480306pt;}
.y9d{bottom:818.653564pt;}
.yfc{bottom:818.653605pt;}
.y195{bottom:819.992954pt;}
.y20d{bottom:823.369620pt;}
.y228{bottom:823.505613pt;}
.y1ce{bottom:823.525615pt;}
.y126{bottom:828.992246pt;}
.y23{bottom:832.656169pt;}
.y194{bottom:833.320954pt;}
.y174{bottom:833.956246pt;}
.y65{bottom:834.146973pt;}
.y9c{bottom:835.320231pt;}
.yfb{bottom:835.320272pt;}
.y20c{bottom:836.697620pt;}
.y227{bottom:836.833613pt;}
.y1cd{bottom:836.853615pt;}
.y125{bottom:845.629579pt;}
.y193{bottom:846.648954pt;}
.y20b{bottom:850.025620pt;}
.y226{bottom:850.161613pt;}
.y1cc{bottom:850.181615pt;}
.y173{bottom:850.593579pt;}
.y64{bottom:850.813639pt;}
.y9b{bottom:851.986898pt;}
.yfa{bottom:851.986938pt;}
.y2{bottom:857.092000pt;}
.y124{bottom:862.266913pt;}
.y20a{bottom:863.353620pt;}
.y225{bottom:863.489613pt;}
.y1cb{bottom:863.509615pt;}
.y172{bottom:867.230913pt;}
.y63{bottom:867.480306pt;}
.y9a{bottom:868.653564pt;}
.yf9{bottom:868.653605pt;}
.y22{bottom:872.377441pt;}
.y192{bottom:873.316287pt;}
.y209{bottom:876.681620pt;}
.y224{bottom:876.817613pt;}
.y1ca{bottom:876.837615pt;}
.y123{bottom:878.904246pt;}
.y1{bottom:879.748000pt;}
.y171{bottom:883.868246pt;}
.y62{bottom:884.146973pt;}
.y99{bottom:885.320231pt;}
.yf8{bottom:885.320272pt;}
.y191{bottom:886.644287pt;}
.y208{bottom:890.009620pt;}
.y223{bottom:890.145613pt;}
.y1c9{bottom:890.165615pt;}
.y122{bottom:895.541579pt;}
.y21{bottom:896.377441pt;}
.y170{bottom:900.505579pt;}
.y61{bottom:900.813639pt;}
.y98{bottom:901.986898pt;}
.yf7{bottom:901.986938pt;}
.y207{bottom:903.337620pt;}
.y222{bottom:903.473613pt;}
.y1c8{bottom:903.493615pt;}
.y121{bottom:912.178913pt;}
.y190{bottom:913.310954pt;}
.y206{bottom:916.665620pt;}
.y221{bottom:916.801613pt;}
.y1c7{bottom:916.821615pt;}
.y16f{bottom:917.142913pt;}
.y60{bottom:917.480306pt;}
.y97{bottom:918.653564pt;}
.yf6{bottom:918.653605pt;}
.y205{bottom:929.993620pt;}
.y220{bottom:930.129613pt;}
.y1c6{bottom:930.149615pt;}
.y5f{bottom:934.146973pt;}
.y96{bottom:935.320231pt;}
.yf5{bottom:935.320272pt;}
.y120{bottom:937.146246pt;}
.y16e{bottom:942.098913pt;}
.y16c{bottom:942.324306pt;}
.y18f{bottom:943.321620pt;}
.y21f{bottom:943.457613pt;}
.y1c5{bottom:943.477615pt;}
.y11f{bottom:950.474246pt;}
.y5e{bottom:950.813639pt;}
.y95{bottom:951.986898pt;}
.yf4{bottom:951.986938pt;}
.y11b{bottom:955.652306pt;}
.y20{bottom:956.561849pt;}
.y18e{bottom:956.649620pt;}
.y21e{bottom:956.785613pt;}
.y1c4{bottom:956.805615pt;}
.y11e{bottom:963.802246pt;}
.y5d{bottom:967.480306pt;}
.y94{bottom:968.653564pt;}
.yf3{bottom:968.653605pt;}
.y11a{bottom:968.980306pt;}
.y18d{bottom:969.977620pt;}
.y21d{bottom:970.113613pt;}
.y1c3{bottom:970.133615pt;}
.y1f{bottom:986.299161pt;}
.y1e{bottom:1001.406494pt;}
.y5c{bottom:1002.206543pt;}
.h18{height:22.403733pt;}
.h4{height:29.333333pt;}
.h17{height:32.005333pt;}
.h16{height:32.760417pt;}
.hb{height:37.376000pt;}
.h13{height:37.653333pt;}
.h11{height:38.453333pt;}
.hd{height:39.712000pt;}
.h1a{height:40.165333pt;}
.h1d{height:40.494448pt;}
.h1c{height:40.673782pt;}
.h1e{height:40.694420pt;}
.h15{height:46.144000pt;}
.h1b{height:46.376000pt;}
.h12{height:47.253333pt;}
.hc{height:48.766452pt;}
.he{height:49.298667pt;}
.h3{height:51.916667pt;}
.h19{height:52.448000pt;}
.h14{height:54.560000pt;}
.h10{height:57.658667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hf{height:75.605333pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h9{height:1054.488000pt;}
.ha{height:1054.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xc{left:68.031469pt;}
.x11{left:69.996800pt;}
.xd{left:75.717199pt;}
.x12{left:83.151469pt;}
.x10{left:86.929867pt;}
.x1c{left:90.709469pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x13{left:238.110802pt;}
.x16{left:242.110767pt;}
.x18{left:333.695447pt;}
.x19{left:341.685408pt;}
.x1b{left:377.387456pt;}
.xe{left:408.188924pt;}
.xf{left:423.308924pt;}
.x1d{left:430.868142pt;}
.x1a{left:474.988075pt;}
.x14{left:499.615454pt;}
.xa{left:647.307210pt;}
.x15{left:661.296785pt;}
.x17{left:663.744789pt;}
.xb{left:671.546549pt;}
}




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