
    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_0a77f275acb0d0329a894bd2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f59269bc2ddf3ff3870a3335.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_44563624502f908ebd619ac1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a805a61179a54ec93b3837c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_c6705b7aa948f223d4c1bb6e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.128000;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_04a9b365428f8aad5993ca83.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_69c715c50bab4b0bbdd3d8cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_df3b97362725d9215636d97e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;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_920911d3a97662a322723a8f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.930000;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_d658e89fdf9cfec375052579.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.947000;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_a349e1afa8e4d47fdacacc6a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943000;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:ffe;src:url('chunks/assets/font_bf665b4bad712c26c7dd8b05.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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:fff;src:url('chunks/assets/font_6bab899ac998f8440b2c571f.woff2')format("woff");}.fff{font-family:fff;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-1.188000px;}
.ls14{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.528000px;}
.lsa{letter-spacing:-0.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.450000px;}
.ls6{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.lsf{letter-spacing:1.198800px;}
.lsd{letter-spacing:1.199400px;}
.lsb{letter-spacing:1.200000px;}
.lsc{letter-spacing:1.800000px;}
.lse{letter-spacing:4.079400px;}
.ls8{letter-spacing:8.226000px;}
.ls11{letter-spacing:9.157800px;}
.ls9{letter-spacing:68.143200px;}
.ls13{letter-spacing:151.200000px;}
.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;}
}
.ws6a{word-spacing:-14.520000px;}
.ws1{word-spacing:-13.986000px;}
.ws69{word-spacing:-13.920000px;}
.ws4{word-spacing:-13.332000px;}
.ws5{word-spacing:-13.320000px;}
.wsca{word-spacing:-13.020000px;}
.ws111{word-spacing:-12.726000px;}
.ws3b{word-spacing:-12.720000px;}
.ws90{word-spacing:-11.592000px;}
.ws3{word-spacing:-11.448000px;}
.wsac{word-spacing:-10.920000px;}
.ws150{word-spacing:-10.908000px;}
.ws18d{word-spacing:-10.368000px;}
.ws18f{word-spacing:-10.260000px;}
.wsb{word-spacing:-10.176000px;}
.ws112{word-spacing:-9.828000px;}
.wsa{word-spacing:-9.810000px;}
.ws6{word-spacing:-9.696000px;}
.ws7{word-spacing:-9.408000px;}
.ws2{word-spacing:-9.360000px;}
.ws14f{word-spacing:-9.288000px;}
.ws194{word-spacing:-8.880000px;}
.ws8{word-spacing:-8.820000px;}
.ws18e{word-spacing:-8.640000px;}
.ws9{word-spacing:-8.232000px;}
.wsb7{word-spacing:-5.220000px;}
.ws72{word-spacing:-1.200000px;}
.ws63{word-spacing:-0.600000px;}
.ws6b{word-spacing:-0.450000px;}
.wsdb{word-spacing:-0.300000px;}
.ws0{word-spacing:0.000000px;}
.ws16b{word-spacing:0.540000px;}
.ws24{word-spacing:0.972000px;}
.ws198{word-spacing:1.080000px;}
.ws16c{word-spacing:1.134000px;}
.ws19c{word-spacing:1.188000px;}
.wsbb{word-spacing:3.120000px;}
.ws156{word-spacing:3.240000px;}
.ws155{word-spacing:3.780000px;}
.wsc9{word-spacing:3.840000px;}
.ws113{word-spacing:3.960000px;}
.ws16d{word-spacing:4.158000px;}
.ws133{word-spacing:4.428000px;}
.ws13f{word-spacing:4.536000px;}
.ws92{word-spacing:4.860000px;}
.ws164{word-spacing:5.076000px;}
.ws132{word-spacing:5.184000px;}
.wsbf{word-spacing:5.220000px;}
.ws13e{word-spacing:5.292000px;}
.wsaa{word-spacing:5.460000px;}
.ws79{word-spacing:5.520000px;}
.ws11c{word-spacing:5.616000px;}
.ws1b{word-spacing:5.778000px;}
.wsfb{word-spacing:5.880000px;}
.ws1c{word-spacing:5.886000px;}
.wse3{word-spacing:5.940000px;}
.ws144{word-spacing:6.048000px;}
.wsd1{word-spacing:6.240000px;}
.ws10e{word-spacing:6.300000px;}
.ws131{word-spacing:6.318000px;}
.ws19{word-spacing:6.372000px;}
.wsda{word-spacing:6.420000px;}
.ws19e{word-spacing:6.426000px;}
.ws142{word-spacing:6.480000px;}
.wsd8{word-spacing:6.540000px;}
.ws17{word-spacing:6.588000px;}
.ws36{word-spacing:6.594000px;}
.wsd{word-spacing:6.615000px;}
.ws26{word-spacing:6.660000px;}
.ws130{word-spacing:6.696000px;}
.ws32{word-spacing:6.720000px;}
.wsc3{word-spacing:6.780000px;}
.ws136{word-spacing:6.804000px;}
.wsc7{word-spacing:6.900000px;}
.ws183{word-spacing:6.912000px;}
.ws14e{word-spacing:6.966000px;}
.ws42{word-spacing:7.020000px;}
.wse{word-spacing:7.065000px;}
.ws197{word-spacing:7.074000px;}
.ws6e{word-spacing:7.080000px;}
.ws173{word-spacing:7.128000px;}
.wsa6{word-spacing:7.140000px;}
.wsaf{word-spacing:7.200000px;}
.ws15a{word-spacing:7.236000px;}
.ws70{word-spacing:7.260000px;}
.ws159{word-spacing:7.290000px;}
.ws8f{word-spacing:7.380000px;}
.ws134{word-spacing:7.398000px;}
.ws44{word-spacing:7.440000px;}
.ws12e{word-spacing:7.452000px;}
.ws95{word-spacing:7.500000px;}
.ws152{word-spacing:7.506000px;}
.ws38{word-spacing:7.536000px;}
.ws50{word-spacing:7.560000px;}
.ws12{word-spacing:7.614000px;}
.wsc6{word-spacing:7.620000px;}
.ws169{word-spacing:7.668000px;}
.ws33{word-spacing:7.680000px;}
.ws120{word-spacing:7.722000px;}
.ws9b{word-spacing:7.740000px;}
.ws47{word-spacing:7.800000px;}
.ws15f{word-spacing:7.830000px;}
.wsfe{word-spacing:7.860000px;}
.ws12a{word-spacing:7.884000px;}
.ws74{word-spacing:7.920000px;}
.ws129{word-spacing:7.938000px;}
.ws97{word-spacing:7.980000px;}
.ws12d{word-spacing:7.992000px;}
.ws16f{word-spacing:8.046000px;}
.ws9f{word-spacing:8.100000px;}
.ws37{word-spacing:8.160000px;}
.ws23{word-spacing:8.208000px;}
.ws75{word-spacing:8.220000px;}
.ws3d{word-spacing:8.280000px;}
.ws172{word-spacing:8.316000px;}
.ws51{word-spacing:8.340000px;}
.ws185{word-spacing:8.370000px;}
.wsd0{word-spacing:8.400000px;}
.ws154{word-spacing:8.424000px;}
.wsee{word-spacing:8.460000px;}
.ws11{word-spacing:8.478000px;}
.ws3a{word-spacing:8.484000px;}
.wsf2{word-spacing:8.520000px;}
.ws11f{word-spacing:8.532000px;}
.ws40{word-spacing:8.580000px;}
.wsef{word-spacing:8.640000px;}
.ws146{word-spacing:8.694000px;}
.ws4c{word-spacing:8.700000px;}
.ws121{word-spacing:8.748000px;}
.wsed{word-spacing:8.760000px;}
.wsc4{word-spacing:8.778000px;}
.ws12f{word-spacing:8.802000px;}
.wsc0{word-spacing:8.820000px;}
.ws143{word-spacing:8.856000px;}
.ws52{word-spacing:8.880000px;}
.ws123{word-spacing:8.910000px;}
.ws57{word-spacing:8.940000px;}
.wsc5{word-spacing:8.949000px;}
.ws116{word-spacing:8.964000px;}
.ws54{word-spacing:9.000000px;}
.ws151{word-spacing:9.018000px;}
.ws87{word-spacing:9.060000px;}
.ws6d{word-spacing:9.120000px;}
.ws15e{word-spacing:9.126000px;}
.ws25{word-spacing:9.180000px;}
.ws22{word-spacing:9.234000px;}
.ws77{word-spacing:9.240000px;}
.ws5a{word-spacing:9.261000px;}
.ws128{word-spacing:9.288000px;}
.wsa4{word-spacing:9.300000px;}
.ws189{word-spacing:9.342000px;}
.ws9a{word-spacing:9.360000px;}
.ws11d{word-spacing:9.396000px;}
.wsa3{word-spacing:9.420000px;}
.ws84{word-spacing:9.480000px;}
.ws145{word-spacing:9.504000px;}
.ws7e{word-spacing:9.540000px;}
.ws1f{word-spacing:9.558000px;}
.wsc{word-spacing:9.600000px;}
.ws175{word-spacing:9.666000px;}
.ws19d{word-spacing:9.720000px;}
.ws17e{word-spacing:9.774000px;}
.wsd6{word-spacing:9.780000px;}
.ws184{word-spacing:9.828000px;}
.wse8{word-spacing:9.840000px;}
.ws5c{word-spacing:9.900000px;}
.ws14a{word-spacing:9.936000px;}
.wse9{word-spacing:9.960000px;}
.ws149{word-spacing:9.990000px;}
.ws100{word-spacing:10.020000px;}
.ws157{word-spacing:10.044000px;}
.wsb9{word-spacing:10.080000px;}
.ws2a{word-spacing:10.098000px;}
.ws4d{word-spacing:10.140000px;}
.ws158{word-spacing:10.152000px;}
.ws58{word-spacing:10.200000px;}
.ws18a{word-spacing:10.206000px;}
.wsde{word-spacing:10.260000px;}
.ws167{word-spacing:10.314000px;}
.ws61{word-spacing:10.320000px;}
.ws122{word-spacing:10.368000px;}
.wsd7{word-spacing:10.380000px;}
.ws126{word-spacing:10.422000px;}
.ws73{word-spacing:10.440000px;}
.ws127{word-spacing:10.476000px;}
.ws5d{word-spacing:10.500000px;}
.ws68{word-spacing:10.560000px;}
.wsce{word-spacing:10.620000px;}
.ws13{word-spacing:10.638000px;}
.wse5{word-spacing:10.680000px;}
.ws59{word-spacing:10.692000px;}
.ws10{word-spacing:10.710000px;}
.wscc{word-spacing:10.740000px;}
.ws98{word-spacing:10.800000px;}
.ws161{word-spacing:10.854000px;}
.ws3c{word-spacing:10.860000px;}
.ws93{word-spacing:10.920000px;}
.ws15b{word-spacing:10.962000px;}
.ws188{word-spacing:11.016000px;}
.ws46{word-spacing:11.040000px;}
.ws2e{word-spacing:11.070000px;}
.ws3f{word-spacing:11.100000px;}
.ws99{word-spacing:11.160000px;}
.ws139{word-spacing:11.178000px;}
.wsb6{word-spacing:11.220000px;}
.ws174{word-spacing:11.232000px;}
.ws76{word-spacing:11.280000px;}
.ws39{word-spacing:11.298000px;}
.ws182{word-spacing:11.340000px;}
.wsa7{word-spacing:11.400000px;}
.ws166{word-spacing:11.448000px;}
.ws7a{word-spacing:11.460000px;}
.ws141{word-spacing:11.502000px;}
.ws109{word-spacing:11.520000px;}
.ws18{word-spacing:11.556000px;}
.ws78{word-spacing:11.580000px;}
.ws9d{word-spacing:11.640000px;}
.ws148{word-spacing:11.664000px;}
.wsbe{word-spacing:11.700000px;}
.wsff{word-spacing:11.760000px;}
.ws12c{word-spacing:11.772000px;}
.wsa0{word-spacing:11.820000px;}
.ws125{word-spacing:11.826000px;}
.wse0{word-spacing:11.880000px;}
.ws104{word-spacing:11.940000px;}
.ws168{word-spacing:12.042000px;}
.ws5b{word-spacing:12.060000px;}
.ws5f{word-spacing:12.120000px;}
.ws115{word-spacing:12.150000px;}
.ws65{word-spacing:12.180000px;}
.ws135{word-spacing:12.204000px;}
.ws8a{word-spacing:12.240000px;}
.ws147{word-spacing:12.258000px;}
.ws64{word-spacing:12.300000px;}
.ws1e{word-spacing:12.312000px;}
.ws7f{word-spacing:12.360000px;}
.ws45{word-spacing:12.420000px;}
.wsf4{word-spacing:12.480000px;}
.ws19b{word-spacing:12.528000px;}
.wsb3{word-spacing:12.540000px;}
.ws2b{word-spacing:12.582000px;}
.wsfd{word-spacing:12.600000px;}
.ws56{word-spacing:12.720000px;}
.ws11a{word-spacing:12.744000px;}
.wsfa{word-spacing:12.780000px;}
.ws187{word-spacing:12.798000px;}
.ws9e{word-spacing:12.840000px;}
.ws15d{word-spacing:12.906000px;}
.wsab{word-spacing:12.960000px;}
.ws60{word-spacing:13.020000px;}
.ws17a{word-spacing:13.068000px;}
.ws8d{word-spacing:13.080000px;}
.ws27{word-spacing:13.122000px;}
.wscf{word-spacing:13.140000px;}
.wsd3{word-spacing:13.200000px;}
.ws67{word-spacing:13.260000px;}
.wsec{word-spacing:13.320000px;}
.ws3e{word-spacing:13.380000px;}
.ws14{word-spacing:13.392000px;}
.ws81{word-spacing:13.440000px;}
.ws4a{word-spacing:13.500000px;}
.wscd{word-spacing:13.560000px;}
.wsf1{word-spacing:13.620000px;}
.wsb2{word-spacing:13.680000px;}
.ws12b{word-spacing:13.716000px;}
.ws91{word-spacing:13.740000px;}
.ws124{word-spacing:13.770000px;}
.ws34{word-spacing:13.800000px;}
.ws163{word-spacing:13.878000px;}
.wsea{word-spacing:13.920000px;}
.wsf{word-spacing:13.944000px;}
.wsc1{word-spacing:14.040000px;}
.ws83{word-spacing:14.100000px;}
.wsf6{word-spacing:14.220000px;}
.ws13d{word-spacing:14.256000px;}
.wsd5{word-spacing:14.400000px;}
.ws15c{word-spacing:14.472000px;}
.ws53{word-spacing:14.520000px;}
.ws17c{word-spacing:14.526000px;}
.ws49{word-spacing:14.580000px;}
.wsf8{word-spacing:14.640000px;}
.ws7d{word-spacing:14.700000px;}
.ws30{word-spacing:14.742000px;}
.ws108{word-spacing:14.760000px;}
.ws16{word-spacing:14.796000px;}
.ws7b{word-spacing:14.820000px;}
.ws5e{word-spacing:14.880000px;}
.ws165{word-spacing:15.012000px;}
.wse4{word-spacing:15.060000px;}
.wsf9{word-spacing:15.120000px;}
.ws6c{word-spacing:15.180000px;}
.ws10b{word-spacing:15.240000px;}
.ws18c{word-spacing:15.282000px;}
.ws55{word-spacing:15.300000px;}
.wsdc{word-spacing:15.360000px;}
.ws180{word-spacing:15.444000px;}
.ws29{word-spacing:15.498000px;}
.ws102{word-spacing:15.540000px;}
.ws105{word-spacing:15.600000px;}
.ws8e{word-spacing:15.660000px;}
.ws10c{word-spacing:15.720000px;}
.ws89{word-spacing:15.780000px;}
.wse6{word-spacing:15.840000px;}
.ws8c{word-spacing:15.900000px;}
.ws28{word-spacing:15.930000px;}
.wsb5{word-spacing:15.960000px;}
.wscb{word-spacing:16.020000px;}
.wsf5{word-spacing:16.080000px;}
.ws6f{word-spacing:16.140000px;}
.ws162{word-spacing:16.146000px;}
.wsb0{word-spacing:16.200000px;}
.ws4f{word-spacing:16.320000px;}
.wsc2{word-spacing:16.380000px;}
.ws14c{word-spacing:16.416000px;}
.ws14d{word-spacing:16.470000px;}
.ws88{word-spacing:16.560000px;}
.ws13c{word-spacing:16.578000px;}
.wsb4{word-spacing:16.620000px;}
.ws86{word-spacing:16.680000px;}
.ws16a{word-spacing:16.686000px;}
.ws181{word-spacing:16.794000px;}
.wsbd{word-spacing:16.800000px;}
.wse7{word-spacing:16.860000px;}
.ws17b{word-spacing:16.902000px;}
.ws140{word-spacing:16.956000px;}
.ws4b{word-spacing:16.980000px;}
.ws41{word-spacing:17.100000px;}
.wsa5{word-spacing:17.160000px;}
.wsd9{word-spacing:17.220000px;}
.ws1a{word-spacing:17.280000px;}
.wsae{word-spacing:17.400000px;}
.ws13b{word-spacing:17.496000px;}
.ws8b{word-spacing:17.580000px;}
.ws176{word-spacing:17.604000px;}
.ws107{word-spacing:17.640000px;}
.wse1{word-spacing:17.760000px;}
.ws18b{word-spacing:17.820000px;}
.wsa2{word-spacing:17.880000px;}
.ws17d{word-spacing:17.928000px;}
.ws17f{word-spacing:17.982000px;}
.ws106{word-spacing:18.000000px;}
.ws186{word-spacing:18.090000px;}
.wsad{word-spacing:18.120000px;}
.wseb{word-spacing:18.180000px;}
.ws118{word-spacing:18.198000px;}
.ws153{word-spacing:18.252000px;}
.ws110{word-spacing:18.420000px;}
.ws62{word-spacing:18.600000px;}
.ws7c{word-spacing:18.720000px;}
.wsa8{word-spacing:18.840000px;}
.ws21{word-spacing:18.846000px;}
.wsa1{word-spacing:19.080000px;}
.ws14b{word-spacing:19.116000px;}
.wsf7{word-spacing:19.140000px;}
.ws10d{word-spacing:19.200000px;}
.ws9c{word-spacing:19.320000px;}
.ws1d{word-spacing:19.332000px;}
.wsfc{word-spacing:19.440000px;}
.wsf3{word-spacing:19.500000px;}
.ws11b{word-spacing:19.602000px;}
.wsbc{word-spacing:19.680000px;}
.ws16e{word-spacing:19.764000px;}
.ws80{word-spacing:19.920000px;}
.ws160{word-spacing:20.250000px;}
.wsdd{word-spacing:20.340000px;}
.ws13a{word-spacing:20.358000px;}
.ws101{word-spacing:20.400000px;}
.wsd2{word-spacing:20.520000px;}
.ws114{word-spacing:20.580000px;}
.wse2{word-spacing:20.700000px;}
.wsa9{word-spacing:20.760000px;}
.ws2c{word-spacing:20.844000px;}
.ws171{word-spacing:20.898000px;}
.ws11e{word-spacing:21.006000px;}
.ws66{word-spacing:21.360000px;}
.ws48{word-spacing:21.420000px;}
.ws117{word-spacing:21.654000px;}
.wsb8{word-spacing:22.020000px;}
.ws43{word-spacing:22.200000px;}
.wsd4{word-spacing:22.260000px;}
.ws2d{word-spacing:22.356000px;}
.ws119{word-spacing:22.572000px;}
.ws15{word-spacing:22.680000px;}
.ws138{word-spacing:22.734000px;}
.ws103{word-spacing:22.800000px;}
.ws4e{word-spacing:22.920000px;}
.ws85{word-spacing:23.100000px;}
.wsb1{word-spacing:23.580000px;}
.wsdf{word-spacing:23.880000px;}
.ws82{word-spacing:24.000000px;}
.ws170{word-spacing:24.300000px;}
.ws20{word-spacing:24.408000px;}
.ws96{word-spacing:25.320000px;}
.ws2f{word-spacing:25.380000px;}
.ws94{word-spacing:25.560000px;}
.ws19a{word-spacing:25.704000px;}
.wsc8{word-spacing:26.160000px;}
.ws71{word-spacing:26.400000px;}
.ws137{word-spacing:26.460000px;}
.ws10f{word-spacing:26.640000px;}
.wsf0{word-spacing:27.180000px;}
.ws199{word-spacing:29.970000px;}
.ws31{word-spacing:30.672000px;}
.ws10a{word-spacing:30.780000px;}
.wsba{word-spacing:32.160000px;}
.ws178{word-spacing:34.236000px;}
.ws35{word-spacing:36.300000px;}
.ws179{word-spacing:37.962000px;}
.ws177{word-spacing:39.906000px;}
.ws191{word-spacing:108.485400px;}
.ws195{word-spacing:118.992000px;}
.ws192{word-spacing:132.985200px;}
.ws19f{word-spacing:136.087800px;}
.ws1a0{word-spacing:143.431800px;}
.ws1a4{word-spacing:161.048400px;}
.ws1a3{word-spacing:188.431800px;}
.ws196{word-spacing:210.792000px;}
.ws1a2{word-spacing:217.356000px;}
.ws193{word-spacing:231.792000px;}
.ws1a1{word-spacing:271.975800px;}
.ws190{word-spacing:416.435400px;}
._16{margin-left:-37.380000px;}
._19{margin-left:-21.718815px;}
._1c{margin-left:-18.474629px;}
._17{margin-left:-16.260000px;}
._1b{margin-left:-13.500000px;}
._6{margin-left:-11.760000px;}
._d{margin-left:-10.089015px;}
._8{margin-left:-8.616000px;}
._14{margin-left:-7.373459px;}
._7{margin-left:-5.571015px;}
._1{margin-left:-4.140000px;}
._5{margin-left:-3.024000px;}
._0{margin-left:-1.919985px;}
._4{width:1.074000px;}
._9{width:2.403015px;}
._1a{width:5.040000px;}
._2{width:6.299985px;}
._3{width:7.799985px;}
._10{width:9.599985px;}
._13{width:11.207400px;}
._a{width:13.106956px;}
._11{width:14.340000px;}
._18{width:16.448956px;}
._f{width:17.837971px;}
._26{width:18.930556px;}
._24{width:19.931971px;}
._e{width:21.803985px;}
._15{width:23.993956px;}
._27{width:25.104585px;}
._25{width:26.347785px;}
._29{width:28.986000px;}
._28{width:40.178385px;}
._1e{width:49.440000px;}
._b{width:59.876956px;}
._2b{width:101.057985px;}
._12{width:131.698171px;}
._c{width:133.679400px;}
._2c{width:140.590800px;}
._35{width:217.787985px;}
._38{width:236.383800px;}
._33{width:240.106800px;}
._2f{width:243.653400px;}
._39{width:245.383800px;}
._37{width:263.383200px;}
._34{width:271.200000px;}
._30{width:310.747200px;}
._2e{width:322.200000px;}
._36{width:375.985800px;}
._32{width:386.293800px;}
._3a{width:396.895800px;}
._2a{width:432.612000px;}
._23{width:484.306800px;}
._20{width:589.954785px;}
._2d{width:805.336185px;}
._31{width:950.536200px;}
._22{width:998.098800px;}
._1f{width:1030.882800px;}
._21{width:1527.732000px;}
._1d{width:1533.204000px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y27f{bottom:49.051200px;}
.y27e{bottom:62.551200px;}
.y5{bottom:66.525004px;}
.y35{bottom:67.597501px;}
.y6b{bottom:73.815600px;}
.y27d{bottom:76.051200px;}
.y21b{bottom:77.551200px;}
.y34{bottom:84.097501px;}
.yac{bottom:84.749850px;}
.y6a{bottom:85.815600px;}
.y127{bottom:87.166200px;}
.y14b{bottom:88.261200px;}
.y1c0{bottom:88.501350px;}
.y27c{bottom:89.551200px;}
.y21a{bottom:94.051200px;}
.y1dc{bottom:94.426200px;}
.y10a{bottom:94.733400px;}
.y189{bottom:95.740200px;}
.y4{bottom:97.125005px;}
.y69{bottom:97.815600px;}
.y101{bottom:98.452500px;}
.y162{bottom:101.926200px;}
.y27b{bottom:103.051200px;}
.yab{bottom:104.249850px;}
.yb9{bottom:104.926200px;}
.y126{bottom:106.666200px;}
.y14a{bottom:107.761200px;}
.y1bf{bottom:108.001350px;}
.y65{bottom:110.190600px;}
.y219{bottom:110.551200px;}
.y1db{bottom:110.926200px;}
.y23f{bottom:111.301200px;}
.y109{bottom:114.233400px;}
.y188{bottom:115.240200px;}
.y100{bottom:116.452500px;}
.y27a{bottom:116.551200px;}
.y161{bottom:121.426200px;}
.yaa{bottom:123.749850px;}
.y67{bottom:124.065600px;}
.yb8{bottom:124.426200px;}
.y23e{bottom:124.801200px;}
.y125{bottom:126.166200px;}
.yd0{bottom:126.749850px;}
.y218{bottom:127.051200px;}
.y149{bottom:127.261200px;}
.y1da{bottom:127.426200px;}
.y1be{bottom:127.501350px;}
.yff{bottom:129.952500px;}
.y108{bottom:133.733400px;}
.y187{bottom:134.740200px;}
.y279{bottom:135.301200px;}
.y66{bottom:137.565600px;}
.y23d{bottom:138.301200px;}
.y21{bottom:139.264499px;}
.y160{bottom:140.926200px;}
.ya9{bottom:143.249850px;}
.yfe{bottom:143.452500px;}
.y217{bottom:143.551200px;}
.yb7{bottom:143.926200px;}
.y124{bottom:145.666200px;}
.ycf{bottom:146.249850px;}
.y148{bottom:146.761200px;}
.y1bd{bottom:147.001350px;}
.y23c{bottom:151.801200px;}
.y107{bottom:153.233400px;}
.y277{bottom:153.676200px;}
.y186{bottom:154.240200px;}
.yfd{bottom:156.952500px;}
.y216{bottom:160.051200px;}
.y15f{bottom:160.426200px;}
.ya8{bottom:162.749850px;}
.yb6{bottom:163.426200px;}
.y123{bottom:165.166200px;}
.y23b{bottom:165.301200px;}
.yce{bottom:165.749850px;}
.y147{bottom:166.261200px;}
.y1bc{bottom:166.501350px;}
.y278{bottom:167.176200px;}
.yfc{bottom:170.452500px;}
.y106{bottom:172.733400px;}
.y185{bottom:173.740200px;}
.y215{bottom:176.551200px;}
.y1d9{bottom:176.926200px;}
.y23a{bottom:178.801200px;}
.y15e{bottom:179.926200px;}
.ya7{bottom:182.249850px;}
.y64{bottom:182.926200px;}
.y122{bottom:184.666200px;}
.ycd{bottom:185.249850px;}
.y276{bottom:185.926200px;}
.yfb{bottom:188.452500px;}
.y105{bottom:192.233400px;}
.y239{bottom:192.301200px;}
.y214{bottom:193.051200px;}
.y184{bottom:193.240200px;}
.y1d8{bottom:193.426200px;}
.y146{bottom:196.261200px;}
.y1bb{bottom:196.501350px;}
.y18{bottom:196.933500px;}
.y15d{bottom:199.426200px;}
.ya6{bottom:201.749850px;}
.y63{bottom:202.426200px;}
.y121{bottom:204.166200px;}
.ycc{bottom:204.749850px;}
.y238{bottom:205.801200px;}
.yfa{bottom:207.202500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y213{bottom:209.551200px;}
.y1d7{bottom:209.926200px;}
.y104{bottom:211.733400px;}
.y183{bottom:212.740200px;}
.y275{bottom:212.926200px;}
.y15c{bottom:218.926200px;}
.y237{bottom:219.301200px;}
.ya5{bottom:221.249850px;}
.y62{bottom:221.926200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y120{bottom:223.666200px;}
.ycb{bottom:224.249850px;}
.y212{bottom:226.051200px;}
.y145{bottom:226.261200px;}
.y274{bottom:226.426200px;}
.y103{bottom:231.233400px;}
.y182{bottom:232.240200px;}
.y236{bottom:232.801200px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1d6{bottom:236.926200px;}
.y15b{bottom:238.426200px;}
.y273{bottom:239.926200px;}
.ya4{bottom:240.749850px;}
.y61{bottom:241.426200px;}
.y211{bottom:242.551200px;}
.y11f{bottom:243.166200px;}
.yca{bottom:243.749850px;}
.y235{bottom:246.301200px;}
.y181{bottom:251.740200px;}
.y272{bottom:253.426200px;}
.y1ba{bottom:255.242400px;}
.y15a{bottom:257.926200px;}
.y210{bottom:259.051200px;}
.y234{bottom:259.801200px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.ya3{bottom:260.249850px;}
.yb5{bottom:260.926200px;}
.y102{bottom:261.233400px;}
.y11e{bottom:262.666200px;}
.yc9{bottom:263.249850px;}
.y271{bottom:266.926200px;}
.y180{bottom:271.240200px;}
.y60{bottom:271.426200px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y233{bottom:273.301200px;}
.y1b9{bottom:274.742400px;}
.y20f{bottom:275.551200px;}
.y159{bottom:277.426200px;}
.yf9{bottom:278.099100px;}
.ya2{bottom:279.749850px;}
.yb4{bottom:280.426200px;}
.yc8{bottom:282.749850px;}
.y144{bottom:283.937550px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y33{bottom:286.426501px;}
.y232{bottom:286.801200px;}
.y1d5{bottom:287.926200px;}
.y17f{bottom:290.740200px;}
.y20e{bottom:292.051200px;}
.y11d{bottom:292.666200px;}
.y270{bottom:293.926200px;}
.y1b8{bottom:294.242400px;}
.y158{bottom:296.926200px;}
.yf8{bottom:297.599100px;}
.ya1{bottom:299.249850px;}
.yb3{bottom:299.926200px;}
.y231{bottom:300.301200px;}
.y116{bottom:300.420900px;}
.yc7{bottom:302.249850px;}
.y143{bottom:303.437550px;}
.y26f{bottom:307.426200px;}
.y20d{bottom:308.551200px;}
.y17e{bottom:310.240200px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1b7{bottom:313.742400px;}
.y230{bottom:313.801200px;}
.y1d4{bottom:314.926200px;}
.y157{bottom:316.426200px;}
.yf7{bottom:317.099100px;}
.y115{bottom:318.420900px;}
.ya0{bottom:318.749850px;}
.yb2{bottom:319.426200px;}
.y26e{bottom:320.926200px;}
.yc6{bottom:321.749850px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y142{bottom:322.937550px;}
.y20c{bottom:325.051200px;}
.y22f{bottom:327.301200px;}
.y17d{bottom:329.740200px;}
.y114{bottom:331.920900px;}
.y1b6{bottom:333.242400px;}
.y26d{bottom:334.426200px;}
.y156{bottom:335.926200px;}
.yf6{bottom:336.599100px;}
.y1a1{bottom:338.249850px;}
.yb1{bottom:338.926200px;}
.y22e{bottom:340.801200px;}
.yc5{bottom:341.249850px;}
.y20b{bottom:341.551200px;}
.y141{bottom:342.437550px;}
.y11c{bottom:343.666200px;}
.y113{bottom:345.420900px;}
.y26c{bottom:347.926200px;}
.yf{bottom:348.133500px;}
.y9f{bottom:348.749850px;}
.y17c{bottom:349.240200px;}
.y32{bottom:350.776501px;}
.y1b5{bottom:352.742400px;}
.y22d{bottom:354.301200px;}
.y155{bottom:355.426200px;}
.yf5{bottom:356.099100px;}
.y1a0{bottom:357.749850px;}
.y20a{bottom:358.051200px;}
.y5f{bottom:358.426200px;}
.y112{bottom:358.920900px;}
.yc4{bottom:360.749850px;}
.y26b{bottom:361.426200px;}
.y140{bottom:361.937700px;}
.y11b{bottom:363.166200px;}
.y1d3{bottom:365.926200px;}
.y22c{bottom:367.801200px;}
.y17b{bottom:368.740200px;}
.y111{bottom:372.420900px;}
.y5e{bottom:373.426200px;}
.y209{bottom:374.551200px;}
.y154{bottom:374.926200px;}
.yf4{bottom:375.599100px;}
.y19f{bottom:377.249850px;}
.yb0{bottom:377.926200px;}
.y9e{bottom:378.749850px;}
.y22b{bottom:381.301200px;}
.y13f{bottom:381.437700px;}
.y1d2{bottom:382.426200px;}
.y11a{bottom:382.666200px;}
.y1b4{bottom:382.742400px;}
.y110{bottom:385.920900px;}
.ye{bottom:386.785499px;}
.y2ab{bottom:386.926200px;}
.y17a{bottom:388.240200px;}
.y5d{bottom:388.426200px;}
.yc3{bottom:390.749850px;}
.y208{bottom:391.051200px;}
.y153{bottom:394.426200px;}
.y22a{bottom:394.801200px;}
.yf3{bottom:395.099100px;}
.y19e{bottom:396.749850px;}
.yaf{bottom:397.426200px;}
.y1d1{bottom:398.926200px;}
.y10f{bottom:399.420900px;}
.y2aa{bottom:400.426200px;}
.y13e{bottom:400.937700px;}
.y26a{bottom:401.926200px;}
.y119{bottom:402.166200px;}
.y5c{bottom:403.426200px;}
.y207{bottom:407.551200px;}
.y179{bottom:407.740200px;}
.yd{bottom:408.044999px;}
.y229{bottom:408.301200px;}
.y152{bottom:413.926200px;}
.yf2{bottom:414.599100px;}
.y31{bottom:415.126501px;}
.y1d0{bottom:415.426200px;}
.y19d{bottom:416.249850px;}
.yae{bottom:416.926200px;}
.y10e{bottom:417.420900px;}
.y5b{bottom:418.426200px;}
.y13d{bottom:420.437700px;}
.y118{bottom:421.666200px;}
.y228{bottom:421.801200px;}
.y206{bottom:424.051200px;}
.y178{bottom:427.240200px;}
.y2a9{bottom:427.426200px;}
.y269{bottom:428.926200px;}
.y1cf{bottom:431.926200px;}
.y5a{bottom:433.426200px;}
.yf1{bottom:434.099100px;}
.y227{bottom:435.301200px;}
.y1b3{bottom:435.677700px;}
.y19c{bottom:435.749850px;}
.y10d{bottom:436.170900px;}
.y9d{bottom:436.426200px;}
.y13c{bottom:439.937700px;}
.y205{bottom:440.551200px;}
.y2a8{bottom:440.926200px;}
.y117{bottom:441.166200px;}
.y268{bottom:442.426200px;}
.y177{bottom:446.740200px;}
.y59{bottom:448.426200px;}
.y226{bottom:448.801200px;}
.yc2{bottom:449.200800px;}
.y151{bottom:452.926200px;}
.yf0{bottom:453.599100px;}
.y2a7{bottom:454.426200px;}
.y1b2{bottom:455.177700px;}
.y19b{bottom:455.249850px;}
.y9c{bottom:455.926200px;}
.y204{bottom:457.051200px;}
.y13b{bottom:459.437700px;}
.y225{bottom:462.301200px;}
.y58{bottom:463.426200px;}
.y1ce{bottom:464.926200px;}
.y176{bottom:466.240200px;}
.y2a6{bottom:467.926200px;}
.yc1{bottom:468.700800px;}
.y267{bottom:469.426200px;}
.y150{bottom:472.426200px;}
.yef{bottom:473.099100px;}
.y203{bottom:473.551200px;}
.y1b1{bottom:474.677700px;}
.y19a{bottom:474.749850px;}
.y9b{bottom:475.426200px;}
.y224{bottom:475.801200px;}
.y57{bottom:478.426200px;}
.y13a{bottom:478.937700px;}
.y2a5{bottom:481.426200px;}
.y30{bottom:482.407500px;}
.y266{bottom:482.926200px;}
.y175{bottom:485.740200px;}
.yc0{bottom:488.200800px;}
.y129{bottom:488.416200px;}
.y223{bottom:489.301200px;}
.y202{bottom:490.051200px;}
.y14f{bottom:491.926200px;}
.yee{bottom:492.599100px;}
.y56{bottom:493.426200px;}
.y1b0{bottom:494.177700px;}
.y199{bottom:494.249850px;}
.y10c{bottom:494.536200px;}
.y9a{bottom:494.926200px;}
.y265{bottom:496.426200px;}
.y139{bottom:498.437700px;}
.y2a4{bottom:500.176200px;}
.y128{bottom:501.916200px;}
.y222{bottom:502.801200px;}
.yc{bottom:502.864502px;}
.y174{bottom:505.240200px;}
.y201{bottom:506.551200px;}
.ybf{bottom:507.700800px;}
.y10b{bottom:508.036200px;}
.y55{bottom:508.426200px;}
.y264{bottom:509.926200px;}
.yed{bottom:512.099100px;}
.y2a3{bottom:513.676200px;}
.y1af{bottom:513.677700px;}
.y198{bottom:513.749850px;}
.y99{bottom:514.426200px;}
.y221{bottom:516.301200px;}
.y138{bottom:517.937700px;}
.yb{bottom:520.864502px;}
.y14e{bottom:521.926200px;}
.y200{bottom:523.051200px;}
.y54{bottom:523.426200px;}
.y173{bottom:524.740200px;}
.y2a2{bottom:527.176200px;}
.ybe{bottom:527.200800px;}
.y220{bottom:529.801200px;}
.yec{bottom:531.599100px;}
.y1ae{bottom:533.177700px;}
.y197{bottom:533.249850px;}
.y98{bottom:533.926200px;}
.y263{bottom:536.926200px;}
.y137{bottom:537.437700px;}
.y53{bottom:538.426200px;}
.ya{bottom:538.864499px;}
.y1ff{bottom:539.551200px;}
.y2a1{bottom:540.676200px;}
.y1cd{bottom:542.926200px;}
.y21f{bottom:543.301200px;}
.y2f{bottom:543.826501px;}
.y172{bottom:544.240200px;}
.ybd{bottom:546.700800px;}
.y262{bottom:550.426200px;}
.yeb{bottom:551.099100px;}
.y1ad{bottom:552.677700px;}
.y196{bottom:552.749850px;}
.y52{bottom:553.426200px;}
.y2a0{bottom:554.176200px;}
.y1fe{bottom:556.051200px;}
.y21e{bottom:556.801200px;}
.y9{bottom:556.864499px;}
.y136{bottom:556.937700px;}
.y1cc{bottom:559.426200px;}
.y171{bottom:563.740200px;}
.y261{bottom:563.926200px;}
.ybc{bottom:566.200800px;}
.y29f{bottom:567.676200px;}
.yea{bottom:570.599100px;}
.y1ac{bottom:572.177700px;}
.y195{bottom:572.249850px;}
.y1fd{bottom:572.551200px;}
.y97{bottom:572.926200px;}
.y21d{bottom:574.801200px;}
.y135{bottom:576.437700px;}
.y260{bottom:577.426200px;}
.y51{bottom:580.426200px;}
.y29e{bottom:581.176200px;}
.y170{bottom:583.240200px;}
.ybb{bottom:585.700800px;}
.y1cb{bottom:586.426200px;}
.y1fc{bottom:589.051200px;}
.ye9{bottom:590.099100px;}
.y25f{bottom:590.926200px;}
.y1ab{bottom:591.677700px;}
.y194{bottom:591.749850px;}
.y96{bottom:592.426200px;}
.y29d{bottom:594.676200px;}
.y134{bottom:595.937700px;}
.y50{bottom:596.926200px;}
.y16f{bottom:602.740200px;}
.y21c{bottom:604.051200px;}
.y25e{bottom:604.426200px;}
.y1fb{bottom:605.551200px;}
.y29c{bottom:608.176200px;}
.ye8{bottom:609.599100px;}
.y2e{bottom:611.107500px;}
.y1aa{bottom:611.177700px;}
.y193{bottom:611.249850px;}
.y4f{bottom:611.926200px;}
.y133{bottom:615.437700px;}
.yba{bottom:615.700800px;}
.y25d{bottom:617.926200px;}
.y29b{bottom:621.676200px;}
.y1fa{bottom:622.051200px;}
.y16e{bottom:622.240200px;}
.y4e{bottom:626.926200px;}
.ye7{bottom:629.099100px;}
.y1a9{bottom:630.677700px;}
.y192{bottom:630.749850px;}
.y95{bottom:631.426200px;}
.y132{bottom:634.937700px;}
.y29a{bottom:635.176200px;}
.y1ca{bottom:637.426200px;}
.y1f9{bottom:638.551200px;}
.y16d{bottom:641.740200px;}
.y4d{bottom:641.926200px;}
.y7c{bottom:643.088100px;}
.y25c{bottom:644.926200px;}
.y2d{bottom:645.457501px;}
.y8{bottom:645.510000px;}
.ye6{bottom:648.599100px;}
.y299{bottom:648.676200px;}
.y1a8{bottom:650.177700px;}
.y191{bottom:650.249850px;}
.y94{bottom:650.926200px;}
.y131{bottom:654.437700px;}
.y1f8{bottom:655.051200px;}
.y7b{bottom:656.588100px;}
.y4c{bottom:656.926200px;}
.y25b{bottom:658.426200px;}
.y2c{bottom:660.457501px;}
.y16c{bottom:661.240200px;}
.y1c9{bottom:664.426200px;}
.y7{bottom:666.771000px;}
.y298{bottom:667.426200px;}
.ye5{bottom:668.099100px;}
.y1a7{bottom:669.677700px;}
.y190{bottom:669.749850px;}
.y7a{bottom:670.088100px;}
.y93{bottom:670.426200px;}
.y1f7{bottom:671.551200px;}
.y4b{bottom:671.926200px;}
.y130{bottom:673.937700px;}
.y2b{bottom:675.457500px;}
.y16b{bottom:680.740200px;}
.y297{bottom:680.926200px;}
.y79{bottom:683.588100px;}
.y25a{bottom:685.426200px;}
.y4a{bottom:686.926200px;}
.ye4{bottom:687.599100px;}
.y1f6{bottom:688.051200px;}
.y1a6{bottom:689.177700px;}
.y18f{bottom:689.249850px;}
.y92{bottom:689.926200px;}
.y12f{bottom:693.437700px;}
.y296{bottom:694.426200px;}
.y78{bottom:697.088100px;}
.y259{bottom:698.926200px;}
.y16a{bottom:700.240200px;}
.y49{bottom:701.926200px;}
.y1f5{bottom:704.551200px;}
.ye3{bottom:707.099100px;}
.y295{bottom:707.926200px;}
.y1a5{bottom:708.677700px;}
.y18e{bottom:708.749850px;}
.y91{bottom:709.426200px;}
.y258{bottom:712.426200px;}
.y12e{bottom:712.937700px;}
.y1c8{bottom:715.426200px;}
.y48{bottom:716.926200px;}
.y77{bottom:718.613700px;}
.y169{bottom:719.740200px;}
.y1f4{bottom:721.051200px;}
.y294{bottom:721.426200px;}
.y257{bottom:725.926200px;}
.y6{bottom:726.298500px;}
.ye2{bottom:726.599100px;}
.y1a4{bottom:728.177700px;}
.y18d{bottom:728.249850px;}
.y90{bottom:728.926200px;}
.y47{bottom:731.926200px;}
.y76{bottom:732.113700px;}
.y12d{bottom:732.437700px;}
.y293{bottom:734.926200px;}
.y1f3{bottom:737.551200px;}
.y168{bottom:739.240200px;}
.y256{bottom:739.426200px;}
.y75{bottom:745.613700px;}
.ye1{bottom:746.099100px;}
.y46{bottom:746.926200px;}
.y1a3{bottom:747.677700px;}
.y18c{bottom:747.749850px;}
.y8f{bottom:748.426200px;}
.y12c{bottom:751.937700px;}
.y3{bottom:752.599495px;}
.y255{bottom:752.926200px;}
.y1f2{bottom:754.051200px;}
.y2a{bottom:756.817498px;}
.y167{bottom:758.740200px;}
.y74{bottom:759.113700px;}
.y45{bottom:761.926200px;}
.y1c7{bottom:764.926200px;}
.ye0{bottom:765.599100px;}
.y254{bottom:766.426200px;}
.y18b{bottom:767.249850px;}
.y8e{bottom:767.926200px;}
.y1f1{bottom:770.551200px;}
.y12b{bottom:771.437550px;}
.y292{bottom:775.426200px;}
.y44{bottom:776.926200px;}
.y1a2{bottom:777.677700px;}
.y166{bottom:778.240200px;}
.y73{bottom:779.476200px;}
.y253{bottom:779.926200px;}
.y1c6{bottom:781.426200px;}
.ydf{bottom:785.099100px;}
.y29{bottom:786.817498px;}
.y1f0{bottom:787.051200px;}
.y8d{bottom:787.426200px;}
.y291{bottom:788.926200px;}
.y12a{bottom:790.937550px;}
.y43{bottom:791.926200px;}
.y72{bottom:792.976200px;}
.y252{bottom:793.426200px;}
.y18a{bottom:797.249850px;}
.y165{bottom:797.740200px;}
.y1c5{bottom:797.926200px;}
.y290{bottom:802.426200px;}
.y1ef{bottom:803.551200px;}
.yde{bottom:804.599100px;}
.y28{bottom:804.817498px;}
.y71{bottom:806.476200px;}
.y42{bottom:806.926200px;}
.y1c4{bottom:814.426200px;}
.y28f{bottom:815.926200px;}
.y164{bottom:817.240200px;}
.y70{bottom:819.976200px;}
.y1ee{bottom:820.051200px;}
.y251{bottom:820.426200px;}
.y41{bottom:821.926200px;}
.y27{bottom:822.817498px;}
.y8c{bottom:826.426200px;}
.y28e{bottom:829.426200px;}
.y1c3{bottom:830.926200px;}
.y250{bottom:833.926200px;}
.ydd{bottom:834.599100px;}
.y1ed{bottom:836.551200px;}
.y40{bottom:836.926200px;}
.y6f{bottom:842.738700px;}
.y28d{bottom:842.926200px;}
.y8b{bottom:845.926200px;}
.y163{bottom:847.240200px;}
.y1c2{bottom:847.426200px;}
.y3f{bottom:851.926200px;}
.y14d{bottom:852.736200px;}
.y1ec{bottom:853.051200px;}
.y6e{bottom:856.238700px;}
.y28c{bottom:856.426200px;}
.y24f{bottom:860.926200px;}
.y8a{bottom:865.426200px;}
.y14c{bottom:866.236200px;}
.y3e{bottom:866.926200px;}
.y1eb{bottom:869.551200px;}
.y6d{bottom:869.738700px;}
.y28b{bottom:869.926200px;}
.y1c1{bottom:874.426200px;}
.y26{bottom:875.289002px;}
.y2{bottom:879.369000px;}
.y3d{bottom:881.926200px;}
.y6c{bottom:883.238700px;}
.y28a{bottom:883.426200px;}
.y89{bottom:884.926200px;}
.ydc{bottom:885.599100px;}
.y1ea{bottom:886.051200px;}
.y24e{bottom:887.926200px;}
.y289{bottom:896.926200px;}
.y24d{bottom:901.426200px;}
.y1e9{bottom:902.551200px;}
.y88{bottom:904.426200px;}
.ydb{bottom:905.099100px;}
.y288{bottom:910.426200px;}
.y24c{bottom:914.926200px;}
.y1e8{bottom:919.051200px;}
.y87{bottom:923.926200px;}
.yda{bottom:924.599100px;}
.y24b{bottom:928.426200px;}
.y3c{bottom:928.801200px;}
.y1e7{bottom:935.551200px;}
.y287{bottom:937.426200px;}
.y25{bottom:938.940000px;}
.y24a{bottom:941.926200px;}
.y86{bottom:943.426200px;}
.yd9{bottom:944.099100px;}
.y286{bottom:950.926200px;}
.y1e6{bottom:952.051200px;}
.y249{bottom:955.426200px;}
.y3b{bottom:955.801200px;}
.y85{bottom:962.926200px;}
.yd8{bottom:963.599100px;}
.y285{bottom:964.426200px;}
.y1{bottom:966.726000px;}
.y1e5{bottom:968.551200px;}
.y248{bottom:968.926200px;}
.y24{bottom:970.440000px;}
.y284{bottom:977.926200px;}
.y84{bottom:982.426200px;}
.yd7{bottom:983.099100px;}
.y1e4{bottom:985.051200px;}
.y246{bottom:986.926200px;}
.y283{bottom:991.426200px;}
.y3a{bottom:994.801200px;}
.y247{bottom:1000.426200px;}
.y1e3{bottom:1001.551200px;}
.y83{bottom:1001.926200px;}
.yd6{bottom:1002.599100px;}
.y282{bottom:1010.176200px;}
.y1e2{bottom:1018.051200px;}
.y39{bottom:1018.801200px;}
.y245{bottom:1019.176200px;}
.y82{bottom:1021.426200px;}
.yd5{bottom:1022.099100px;}
.y281{bottom:1023.676200px;}
.y1e1{bottom:1034.551200px;}
.y23{bottom:1035.546001px;}
.y244{bottom:1037.176200px;}
.y81{bottom:1040.926200px;}
.yd4{bottom:1041.599100px;}
.y36{bottom:1047.511200px;}
.y243{bottom:1050.676200px;}
.y1e0{bottom:1051.051200px;}
.y80{bottom:1060.426200px;}
.yd3{bottom:1061.099100px;}
.y242{bottom:1064.176200px;}
.y1df{bottom:1067.551200px;}
.y241{bottom:1077.676200px;}
.y7f{bottom:1079.926200px;}
.yd2{bottom:1080.599100px;}
.y280{bottom:1082.926200px;}
.y68{bottom:1083.782250px;}
.y1de{bottom:1084.051200px;}
.y240{bottom:1096.426200px;}
.y38{bottom:1097.407950px;}
.y7e{bottom:1099.426200px;}
.yd1{bottom:1100.099100px;}
.y1dd{bottom:1100.551200px;}
.y37{bottom:1110.907950px;}
.yad{bottom:1141.238100px;}
.y7d{bottom:1141.313100px;}
.y22{bottom:1165.122003px;}
.h1a{height:30.030000px;}
.h17{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1c{height:34.320000px;}
.h1b{height:34.608000px;}
.hb{height:36.726562px;}
.h16{height:38.610000px;}
.h1e{height:39.510000px;}
.h20{height:40.755000px;}
.hf{height:41.317383px;}
.h1d{height:42.144000px;}
.h1f{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h18{height:47.412000px;}
.h19{height:47.586000px;}
.h3{height:48.195000px;}
.h12{height:52.680000px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h15{height:55.314000px;}
.h14{height:60.564000px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x12{left:123.000000px;}
.xb{left:126.112500px;}
.x6{left:145.650000px;}
.x13{left:151.500000px;}
.x14{left:166.500000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x11{left:215.640000px;}
.x9{left:228.743990px;}
.x8{left:293.590494px;}
.x15{left:301.836600px;}
.x1e{left:308.196450px;}
.xe{left:452.456700px;}
.x17{left:453.706350px;}
.x3{left:454.959000px;}
.x16{left:456.028650px;}
.xf{left:470.456700px;}
.x18{left:517.057800px;}
.x19{left:522.823650px;}
.x1f{left:529.974450px;}
.x10{left:565.175550px;}
.xd{left:570.946500px;}
.x1a{left:603.620550px;}
.x1b{left:607.880100px;}
.xc{left:650.025750px;}
.x1c{left:733.362300px;}
.x1d{left:739.722000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.056000pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.469333pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.400000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.lsf{letter-spacing:1.065600pt;}
.lsd{letter-spacing:1.066133pt;}
.lsb{letter-spacing:1.066667pt;}
.lsc{letter-spacing:1.600000pt;}
.lse{letter-spacing:3.626133pt;}
.ls8{letter-spacing:7.312000pt;}
.ls11{letter-spacing:8.140267pt;}
.ls9{letter-spacing:60.571733pt;}
.ls13{letter-spacing:134.400000pt;}
.ws6a{word-spacing:-12.906667pt;}
.ws1{word-spacing:-12.432000pt;}
.ws69{word-spacing:-12.373333pt;}
.ws4{word-spacing:-11.850667pt;}
.ws5{word-spacing:-11.840000pt;}
.wsca{word-spacing:-11.573333pt;}
.ws111{word-spacing:-11.312000pt;}
.ws3b{word-spacing:-11.306667pt;}
.ws90{word-spacing:-10.304000pt;}
.ws3{word-spacing:-10.176000pt;}
.wsac{word-spacing:-9.706667pt;}
.ws150{word-spacing:-9.696000pt;}
.ws18d{word-spacing:-9.216000pt;}
.ws18f{word-spacing:-9.120000pt;}
.wsb{word-spacing:-9.045333pt;}
.ws112{word-spacing:-8.736000pt;}
.wsa{word-spacing:-8.720000pt;}
.ws6{word-spacing:-8.618667pt;}
.ws7{word-spacing:-8.362667pt;}
.ws2{word-spacing:-8.320000pt;}
.ws14f{word-spacing:-8.256000pt;}
.ws194{word-spacing:-7.893333pt;}
.ws8{word-spacing:-7.840000pt;}
.ws18e{word-spacing:-7.680000pt;}
.ws9{word-spacing:-7.317333pt;}
.wsb7{word-spacing:-4.640000pt;}
.ws72{word-spacing:-1.066667pt;}
.ws63{word-spacing:-0.533333pt;}
.ws6b{word-spacing:-0.400000pt;}
.wsdb{word-spacing:-0.266667pt;}
.ws0{word-spacing:0.000000pt;}
.ws16b{word-spacing:0.480000pt;}
.ws24{word-spacing:0.864000pt;}
.ws198{word-spacing:0.960000pt;}
.ws16c{word-spacing:1.008000pt;}
.ws19c{word-spacing:1.056000pt;}
.wsbb{word-spacing:2.773333pt;}
.ws156{word-spacing:2.880000pt;}
.ws155{word-spacing:3.360000pt;}
.wsc9{word-spacing:3.413333pt;}
.ws113{word-spacing:3.520000pt;}
.ws16d{word-spacing:3.696000pt;}
.ws133{word-spacing:3.936000pt;}
.ws13f{word-spacing:4.032000pt;}
.ws92{word-spacing:4.320000pt;}
.ws164{word-spacing:4.512000pt;}
.ws132{word-spacing:4.608000pt;}
.wsbf{word-spacing:4.640000pt;}
.ws13e{word-spacing:4.704000pt;}
.wsaa{word-spacing:4.853333pt;}
.ws79{word-spacing:4.906667pt;}
.ws11c{word-spacing:4.992000pt;}
.ws1b{word-spacing:5.136000pt;}
.wsfb{word-spacing:5.226667pt;}
.ws1c{word-spacing:5.232000pt;}
.wse3{word-spacing:5.280000pt;}
.ws144{word-spacing:5.376000pt;}
.wsd1{word-spacing:5.546667pt;}
.ws10e{word-spacing:5.600000pt;}
.ws131{word-spacing:5.616000pt;}
.ws19{word-spacing:5.664000pt;}
.wsda{word-spacing:5.706667pt;}
.ws19e{word-spacing:5.712000pt;}
.ws142{word-spacing:5.760000pt;}
.wsd8{word-spacing:5.813333pt;}
.ws17{word-spacing:5.856000pt;}
.ws36{word-spacing:5.861333pt;}
.wsd{word-spacing:5.880000pt;}
.ws26{word-spacing:5.920000pt;}
.ws130{word-spacing:5.952000pt;}
.ws32{word-spacing:5.973333pt;}
.wsc3{word-spacing:6.026667pt;}
.ws136{word-spacing:6.048000pt;}
.wsc7{word-spacing:6.133333pt;}
.ws183{word-spacing:6.144000pt;}
.ws14e{word-spacing:6.192000pt;}
.ws42{word-spacing:6.240000pt;}
.wse{word-spacing:6.280000pt;}
.ws197{word-spacing:6.288000pt;}
.ws6e{word-spacing:6.293333pt;}
.ws173{word-spacing:6.336000pt;}
.wsa6{word-spacing:6.346667pt;}
.wsaf{word-spacing:6.400000pt;}
.ws15a{word-spacing:6.432000pt;}
.ws70{word-spacing:6.453333pt;}
.ws159{word-spacing:6.480000pt;}
.ws8f{word-spacing:6.560000pt;}
.ws134{word-spacing:6.576000pt;}
.ws44{word-spacing:6.613333pt;}
.ws12e{word-spacing:6.624000pt;}
.ws95{word-spacing:6.666667pt;}
.ws152{word-spacing:6.672000pt;}
.ws38{word-spacing:6.698667pt;}
.ws50{word-spacing:6.720000pt;}
.ws12{word-spacing:6.768000pt;}
.wsc6{word-spacing:6.773333pt;}
.ws169{word-spacing:6.816000pt;}
.ws33{word-spacing:6.826667pt;}
.ws120{word-spacing:6.864000pt;}
.ws9b{word-spacing:6.880000pt;}
.ws47{word-spacing:6.933333pt;}
.ws15f{word-spacing:6.960000pt;}
.wsfe{word-spacing:6.986667pt;}
.ws12a{word-spacing:7.008000pt;}
.ws74{word-spacing:7.040000pt;}
.ws129{word-spacing:7.056000pt;}
.ws97{word-spacing:7.093333pt;}
.ws12d{word-spacing:7.104000pt;}
.ws16f{word-spacing:7.152000pt;}
.ws9f{word-spacing:7.200000pt;}
.ws37{word-spacing:7.253333pt;}
.ws23{word-spacing:7.296000pt;}
.ws75{word-spacing:7.306667pt;}
.ws3d{word-spacing:7.360000pt;}
.ws172{word-spacing:7.392000pt;}
.ws51{word-spacing:7.413333pt;}
.ws185{word-spacing:7.440000pt;}
.wsd0{word-spacing:7.466667pt;}
.ws154{word-spacing:7.488000pt;}
.wsee{word-spacing:7.520000pt;}
.ws11{word-spacing:7.536000pt;}
.ws3a{word-spacing:7.541333pt;}
.wsf2{word-spacing:7.573333pt;}
.ws11f{word-spacing:7.584000pt;}
.ws40{word-spacing:7.626667pt;}
.wsef{word-spacing:7.680000pt;}
.ws146{word-spacing:7.728000pt;}
.ws4c{word-spacing:7.733333pt;}
.ws121{word-spacing:7.776000pt;}
.wsed{word-spacing:7.786667pt;}
.wsc4{word-spacing:7.802667pt;}
.ws12f{word-spacing:7.824000pt;}
.wsc0{word-spacing:7.840000pt;}
.ws143{word-spacing:7.872000pt;}
.ws52{word-spacing:7.893333pt;}
.ws123{word-spacing:7.920000pt;}
.ws57{word-spacing:7.946667pt;}
.wsc5{word-spacing:7.954667pt;}
.ws116{word-spacing:7.968000pt;}
.ws54{word-spacing:8.000000pt;}
.ws151{word-spacing:8.016000pt;}
.ws87{word-spacing:8.053333pt;}
.ws6d{word-spacing:8.106667pt;}
.ws15e{word-spacing:8.112000pt;}
.ws25{word-spacing:8.160000pt;}
.ws22{word-spacing:8.208000pt;}
.ws77{word-spacing:8.213333pt;}
.ws5a{word-spacing:8.232000pt;}
.ws128{word-spacing:8.256000pt;}
.wsa4{word-spacing:8.266667pt;}
.ws189{word-spacing:8.304000pt;}
.ws9a{word-spacing:8.320000pt;}
.ws11d{word-spacing:8.352000pt;}
.wsa3{word-spacing:8.373333pt;}
.ws84{word-spacing:8.426667pt;}
.ws145{word-spacing:8.448000pt;}
.ws7e{word-spacing:8.480000pt;}
.ws1f{word-spacing:8.496000pt;}
.wsc{word-spacing:8.533333pt;}
.ws175{word-spacing:8.592000pt;}
.ws19d{word-spacing:8.640000pt;}
.ws17e{word-spacing:8.688000pt;}
.wsd6{word-spacing:8.693333pt;}
.ws184{word-spacing:8.736000pt;}
.wse8{word-spacing:8.746667pt;}
.ws5c{word-spacing:8.800000pt;}
.ws14a{word-spacing:8.832000pt;}
.wse9{word-spacing:8.853333pt;}
.ws149{word-spacing:8.880000pt;}
.ws100{word-spacing:8.906667pt;}
.ws157{word-spacing:8.928000pt;}
.wsb9{word-spacing:8.960000pt;}
.ws2a{word-spacing:8.976000pt;}
.ws4d{word-spacing:9.013333pt;}
.ws158{word-spacing:9.024000pt;}
.ws58{word-spacing:9.066667pt;}
.ws18a{word-spacing:9.072000pt;}
.wsde{word-spacing:9.120000pt;}
.ws167{word-spacing:9.168000pt;}
.ws61{word-spacing:9.173333pt;}
.ws122{word-spacing:9.216000pt;}
.wsd7{word-spacing:9.226667pt;}
.ws126{word-spacing:9.264000pt;}
.ws73{word-spacing:9.280000pt;}
.ws127{word-spacing:9.312000pt;}
.ws5d{word-spacing:9.333333pt;}
.ws68{word-spacing:9.386667pt;}
.wsce{word-spacing:9.440000pt;}
.ws13{word-spacing:9.456000pt;}
.wse5{word-spacing:9.493333pt;}
.ws59{word-spacing:9.504000pt;}
.ws10{word-spacing:9.520000pt;}
.wscc{word-spacing:9.546667pt;}
.ws98{word-spacing:9.600000pt;}
.ws161{word-spacing:9.648000pt;}
.ws3c{word-spacing:9.653333pt;}
.ws93{word-spacing:9.706667pt;}
.ws15b{word-spacing:9.744000pt;}
.ws188{word-spacing:9.792000pt;}
.ws46{word-spacing:9.813333pt;}
.ws2e{word-spacing:9.840000pt;}
.ws3f{word-spacing:9.866667pt;}
.ws99{word-spacing:9.920000pt;}
.ws139{word-spacing:9.936000pt;}
.wsb6{word-spacing:9.973333pt;}
.ws174{word-spacing:9.984000pt;}
.ws76{word-spacing:10.026667pt;}
.ws39{word-spacing:10.042667pt;}
.ws182{word-spacing:10.080000pt;}
.wsa7{word-spacing:10.133333pt;}
.ws166{word-spacing:10.176000pt;}
.ws7a{word-spacing:10.186667pt;}
.ws141{word-spacing:10.224000pt;}
.ws109{word-spacing:10.240000pt;}
.ws18{word-spacing:10.272000pt;}
.ws78{word-spacing:10.293333pt;}
.ws9d{word-spacing:10.346667pt;}
.ws148{word-spacing:10.368000pt;}
.wsbe{word-spacing:10.400000pt;}
.wsff{word-spacing:10.453333pt;}
.ws12c{word-spacing:10.464000pt;}
.wsa0{word-spacing:10.506667pt;}
.ws125{word-spacing:10.512000pt;}
.wse0{word-spacing:10.560000pt;}
.ws104{word-spacing:10.613333pt;}
.ws168{word-spacing:10.704000pt;}
.ws5b{word-spacing:10.720000pt;}
.ws5f{word-spacing:10.773333pt;}
.ws115{word-spacing:10.800000pt;}
.ws65{word-spacing:10.826667pt;}
.ws135{word-spacing:10.848000pt;}
.ws8a{word-spacing:10.880000pt;}
.ws147{word-spacing:10.896000pt;}
.ws64{word-spacing:10.933333pt;}
.ws1e{word-spacing:10.944000pt;}
.ws7f{word-spacing:10.986667pt;}
.ws45{word-spacing:11.040000pt;}
.wsf4{word-spacing:11.093333pt;}
.ws19b{word-spacing:11.136000pt;}
.wsb3{word-spacing:11.146667pt;}
.ws2b{word-spacing:11.184000pt;}
.wsfd{word-spacing:11.200000pt;}
.ws56{word-spacing:11.306667pt;}
.ws11a{word-spacing:11.328000pt;}
.wsfa{word-spacing:11.360000pt;}
.ws187{word-spacing:11.376000pt;}
.ws9e{word-spacing:11.413333pt;}
.ws15d{word-spacing:11.472000pt;}
.wsab{word-spacing:11.520000pt;}
.ws60{word-spacing:11.573333pt;}
.ws17a{word-spacing:11.616000pt;}
.ws8d{word-spacing:11.626667pt;}
.ws27{word-spacing:11.664000pt;}
.wscf{word-spacing:11.680000pt;}
.wsd3{word-spacing:11.733333pt;}
.ws67{word-spacing:11.786667pt;}
.wsec{word-spacing:11.840000pt;}
.ws3e{word-spacing:11.893333pt;}
.ws14{word-spacing:11.904000pt;}
.ws81{word-spacing:11.946667pt;}
.ws4a{word-spacing:12.000000pt;}
.wscd{word-spacing:12.053333pt;}
.wsf1{word-spacing:12.106667pt;}
.wsb2{word-spacing:12.160000pt;}
.ws12b{word-spacing:12.192000pt;}
.ws91{word-spacing:12.213333pt;}
.ws124{word-spacing:12.240000pt;}
.ws34{word-spacing:12.266667pt;}
.ws163{word-spacing:12.336000pt;}
.wsea{word-spacing:12.373333pt;}
.wsf{word-spacing:12.394667pt;}
.wsc1{word-spacing:12.480000pt;}
.ws83{word-spacing:12.533333pt;}
.wsf6{word-spacing:12.640000pt;}
.ws13d{word-spacing:12.672000pt;}
.wsd5{word-spacing:12.800000pt;}
.ws15c{word-spacing:12.864000pt;}
.ws53{word-spacing:12.906667pt;}
.ws17c{word-spacing:12.912000pt;}
.ws49{word-spacing:12.960000pt;}
.wsf8{word-spacing:13.013333pt;}
.ws7d{word-spacing:13.066667pt;}
.ws30{word-spacing:13.104000pt;}
.ws108{word-spacing:13.120000pt;}
.ws16{word-spacing:13.152000pt;}
.ws7b{word-spacing:13.173333pt;}
.ws5e{word-spacing:13.226667pt;}
.ws165{word-spacing:13.344000pt;}
.wse4{word-spacing:13.386667pt;}
.wsf9{word-spacing:13.440000pt;}
.ws6c{word-spacing:13.493333pt;}
.ws10b{word-spacing:13.546667pt;}
.ws18c{word-spacing:13.584000pt;}
.ws55{word-spacing:13.600000pt;}
.wsdc{word-spacing:13.653333pt;}
.ws180{word-spacing:13.728000pt;}
.ws29{word-spacing:13.776000pt;}
.ws102{word-spacing:13.813333pt;}
.ws105{word-spacing:13.866667pt;}
.ws8e{word-spacing:13.920000pt;}
.ws10c{word-spacing:13.973333pt;}
.ws89{word-spacing:14.026667pt;}
.wse6{word-spacing:14.080000pt;}
.ws8c{word-spacing:14.133333pt;}
.ws28{word-spacing:14.160000pt;}
.wsb5{word-spacing:14.186667pt;}
.wscb{word-spacing:14.240000pt;}
.wsf5{word-spacing:14.293333pt;}
.ws6f{word-spacing:14.346667pt;}
.ws162{word-spacing:14.352000pt;}
.wsb0{word-spacing:14.400000pt;}
.ws4f{word-spacing:14.506667pt;}
.wsc2{word-spacing:14.560000pt;}
.ws14c{word-spacing:14.592000pt;}
.ws14d{word-spacing:14.640000pt;}
.ws88{word-spacing:14.720000pt;}
.ws13c{word-spacing:14.736000pt;}
.wsb4{word-spacing:14.773333pt;}
.ws86{word-spacing:14.826667pt;}
.ws16a{word-spacing:14.832000pt;}
.ws181{word-spacing:14.928000pt;}
.wsbd{word-spacing:14.933333pt;}
.wse7{word-spacing:14.986667pt;}
.ws17b{word-spacing:15.024000pt;}
.ws140{word-spacing:15.072000pt;}
.ws4b{word-spacing:15.093333pt;}
.ws41{word-spacing:15.200000pt;}
.wsa5{word-spacing:15.253333pt;}
.wsd9{word-spacing:15.306667pt;}
.ws1a{word-spacing:15.360000pt;}
.wsae{word-spacing:15.466667pt;}
.ws13b{word-spacing:15.552000pt;}
.ws8b{word-spacing:15.626667pt;}
.ws176{word-spacing:15.648000pt;}
.ws107{word-spacing:15.680000pt;}
.wse1{word-spacing:15.786667pt;}
.ws18b{word-spacing:15.840000pt;}
.wsa2{word-spacing:15.893333pt;}
.ws17d{word-spacing:15.936000pt;}
.ws17f{word-spacing:15.984000pt;}
.ws106{word-spacing:16.000000pt;}
.ws186{word-spacing:16.080000pt;}
.wsad{word-spacing:16.106667pt;}
.wseb{word-spacing:16.160000pt;}
.ws118{word-spacing:16.176000pt;}
.ws153{word-spacing:16.224000pt;}
.ws110{word-spacing:16.373333pt;}
.ws62{word-spacing:16.533333pt;}
.ws7c{word-spacing:16.640000pt;}
.wsa8{word-spacing:16.746667pt;}
.ws21{word-spacing:16.752000pt;}
.wsa1{word-spacing:16.960000pt;}
.ws14b{word-spacing:16.992000pt;}
.wsf7{word-spacing:17.013333pt;}
.ws10d{word-spacing:17.066667pt;}
.ws9c{word-spacing:17.173333pt;}
.ws1d{word-spacing:17.184000pt;}
.wsfc{word-spacing:17.280000pt;}
.wsf3{word-spacing:17.333333pt;}
.ws11b{word-spacing:17.424000pt;}
.wsbc{word-spacing:17.493333pt;}
.ws16e{word-spacing:17.568000pt;}
.ws80{word-spacing:17.706667pt;}
.ws160{word-spacing:18.000000pt;}
.wsdd{word-spacing:18.080000pt;}
.ws13a{word-spacing:18.096000pt;}
.ws101{word-spacing:18.133333pt;}
.wsd2{word-spacing:18.240000pt;}
.ws114{word-spacing:18.293333pt;}
.wse2{word-spacing:18.400000pt;}
.wsa9{word-spacing:18.453333pt;}
.ws2c{word-spacing:18.528000pt;}
.ws171{word-spacing:18.576000pt;}
.ws11e{word-spacing:18.672000pt;}
.ws66{word-spacing:18.986667pt;}
.ws48{word-spacing:19.040000pt;}
.ws117{word-spacing:19.248000pt;}
.wsb8{word-spacing:19.573333pt;}
.ws43{word-spacing:19.733333pt;}
.wsd4{word-spacing:19.786667pt;}
.ws2d{word-spacing:19.872000pt;}
.ws119{word-spacing:20.064000pt;}
.ws15{word-spacing:20.160000pt;}
.ws138{word-spacing:20.208000pt;}
.ws103{word-spacing:20.266667pt;}
.ws4e{word-spacing:20.373333pt;}
.ws85{word-spacing:20.533333pt;}
.wsb1{word-spacing:20.960000pt;}
.wsdf{word-spacing:21.226667pt;}
.ws82{word-spacing:21.333333pt;}
.ws170{word-spacing:21.600000pt;}
.ws20{word-spacing:21.696000pt;}
.ws96{word-spacing:22.506667pt;}
.ws2f{word-spacing:22.560000pt;}
.ws94{word-spacing:22.720000pt;}
.ws19a{word-spacing:22.848000pt;}
.wsc8{word-spacing:23.253333pt;}
.ws71{word-spacing:23.466667pt;}
.ws137{word-spacing:23.520000pt;}
.ws10f{word-spacing:23.680000pt;}
.wsf0{word-spacing:24.160000pt;}
.ws199{word-spacing:26.640000pt;}
.ws31{word-spacing:27.264000pt;}
.ws10a{word-spacing:27.360000pt;}
.wsba{word-spacing:28.586667pt;}
.ws178{word-spacing:30.432000pt;}
.ws35{word-spacing:32.266667pt;}
.ws179{word-spacing:33.744000pt;}
.ws177{word-spacing:35.472000pt;}
.ws191{word-spacing:96.431467pt;}
.ws195{word-spacing:105.770667pt;}
.ws192{word-spacing:118.209067pt;}
.ws19f{word-spacing:120.966933pt;}
.ws1a0{word-spacing:127.494933pt;}
.ws1a4{word-spacing:143.154133pt;}
.ws1a3{word-spacing:167.494933pt;}
.ws196{word-spacing:187.370667pt;}
.ws1a2{word-spacing:193.205333pt;}
.ws193{word-spacing:206.037333pt;}
.ws1a1{word-spacing:241.756267pt;}
.ws190{word-spacing:370.164800pt;}
._16{margin-left:-33.226667pt;}
._19{margin-left:-19.305613pt;}
._1c{margin-left:-16.421893pt;}
._17{margin-left:-14.453333pt;}
._1b{margin-left:-12.000000pt;}
._6{margin-left:-10.453333pt;}
._d{margin-left:-8.968013pt;}
._8{margin-left:-7.658667pt;}
._14{margin-left:-6.554185pt;}
._7{margin-left:-4.952013pt;}
._1{margin-left:-3.680000pt;}
._5{margin-left:-2.688000pt;}
._0{margin-left:-1.706654pt;}
._4{width:0.954667pt;}
._9{width:2.136013pt;}
._1a{width:4.480000pt;}
._2{width:5.599987pt;}
._3{width:6.933320pt;}
._10{width:8.533320pt;}
._13{width:9.962133pt;}
._a{width:11.650628pt;}
._11{width:12.746667pt;}
._18{width:14.621294pt;}
._f{width:15.855974pt;}
._26{width:16.827161pt;}
._24{width:17.717307pt;}
._e{width:19.381320pt;}
._15{width:21.327961pt;}
._27{width:22.315187pt;}
._25{width:23.420254pt;}
._29{width:25.765333pt;}
._28{width:35.714120pt;}
._1e{width:43.946667pt;}
._b{width:53.223961pt;}
._2b{width:89.829320pt;}
._12{width:117.065041pt;}
._c{width:118.826133pt;}
._2c{width:124.969600pt;}
._35{width:193.589320pt;}
._38{width:210.118933pt;}
._33{width:213.428267pt;}
._2f{width:216.580800pt;}
._39{width:218.118933pt;}
._37{width:234.118400pt;}
._34{width:241.066667pt;}
._30{width:276.219733pt;}
._2e{width:286.400000pt;}
._36{width:334.209600pt;}
._32{width:343.372267pt;}
._3a{width:352.796267pt;}
._2a{width:384.544000pt;}
._23{width:430.494933pt;}
._20{width:524.404254pt;}
._2d{width:715.854387pt;}
._31{width:844.921067pt;}
._22{width:887.198933pt;}
._1f{width:916.340267pt;}
._21{width:1357.984000pt;}
._1d{width:1362.848000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y27f{bottom:43.601067pt;}
.y27e{bottom:55.601067pt;}
.y5{bottom:59.133337pt;}
.y35{bottom:60.086668pt;}
.y6b{bottom:65.613867pt;}
.y27d{bottom:67.601067pt;}
.y21b{bottom:68.934400pt;}
.y34{bottom:74.753335pt;}
.yac{bottom:75.333200pt;}
.y6a{bottom:76.280533pt;}
.y127{bottom:77.481067pt;}
.y14b{bottom:78.454400pt;}
.y1c0{bottom:78.667867pt;}
.y27c{bottom:79.601067pt;}
.y21a{bottom:83.601067pt;}
.y1dc{bottom:83.934400pt;}
.y10a{bottom:84.207467pt;}
.y189{bottom:85.102400pt;}
.y4{bottom:86.333337pt;}
.y69{bottom:86.947200pt;}
.y101{bottom:87.513333pt;}
.y162{bottom:90.601067pt;}
.y27b{bottom:91.601067pt;}
.yab{bottom:92.666533pt;}
.yb9{bottom:93.267733pt;}
.y126{bottom:94.814400pt;}
.y14a{bottom:95.787733pt;}
.y1bf{bottom:96.001200pt;}
.y65{bottom:97.947200pt;}
.y219{bottom:98.267733pt;}
.y1db{bottom:98.601067pt;}
.y23f{bottom:98.934400pt;}
.y109{bottom:101.540800pt;}
.y188{bottom:102.435733pt;}
.y100{bottom:103.513333pt;}
.y27a{bottom:103.601067pt;}
.y161{bottom:107.934400pt;}
.yaa{bottom:109.999867pt;}
.y67{bottom:110.280533pt;}
.yb8{bottom:110.601067pt;}
.y23e{bottom:110.934400pt;}
.y125{bottom:112.147733pt;}
.yd0{bottom:112.666533pt;}
.y218{bottom:112.934400pt;}
.y149{bottom:113.121067pt;}
.y1da{bottom:113.267733pt;}
.y1be{bottom:113.334533pt;}
.yff{bottom:115.513333pt;}
.y108{bottom:118.874133pt;}
.y187{bottom:119.769067pt;}
.y279{bottom:120.267733pt;}
.y66{bottom:122.280533pt;}
.y23d{bottom:122.934400pt;}
.y21{bottom:123.790666pt;}
.y160{bottom:125.267733pt;}
.ya9{bottom:127.333200pt;}
.yfe{bottom:127.513333pt;}
.y217{bottom:127.601067pt;}
.yb7{bottom:127.934400pt;}
.y124{bottom:129.481067pt;}
.ycf{bottom:129.999867pt;}
.y148{bottom:130.454400pt;}
.y1bd{bottom:130.667867pt;}
.y23c{bottom:134.934400pt;}
.y107{bottom:136.207467pt;}
.y277{bottom:136.601067pt;}
.y186{bottom:137.102400pt;}
.yfd{bottom:139.513333pt;}
.y216{bottom:142.267733pt;}
.y15f{bottom:142.601067pt;}
.ya8{bottom:144.666533pt;}
.yb6{bottom:145.267733pt;}
.y123{bottom:146.814400pt;}
.y23b{bottom:146.934400pt;}
.yce{bottom:147.333200pt;}
.y147{bottom:147.787733pt;}
.y1bc{bottom:148.001200pt;}
.y278{bottom:148.601067pt;}
.yfc{bottom:151.513333pt;}
.y106{bottom:153.540800pt;}
.y185{bottom:154.435733pt;}
.y215{bottom:156.934400pt;}
.y1d9{bottom:157.267733pt;}
.y23a{bottom:158.934400pt;}
.y15e{bottom:159.934400pt;}
.ya7{bottom:161.999867pt;}
.y64{bottom:162.601067pt;}
.y122{bottom:164.147733pt;}
.ycd{bottom:164.666533pt;}
.y276{bottom:165.267733pt;}
.yfb{bottom:167.513333pt;}
.y105{bottom:170.874133pt;}
.y239{bottom:170.934400pt;}
.y214{bottom:171.601067pt;}
.y184{bottom:171.769067pt;}
.y1d8{bottom:171.934400pt;}
.y146{bottom:174.454400pt;}
.y1bb{bottom:174.667867pt;}
.y18{bottom:175.052000pt;}
.y15d{bottom:177.267733pt;}
.ya6{bottom:179.333200pt;}
.y63{bottom:179.934400pt;}
.y121{bottom:181.481067pt;}
.ycc{bottom:181.999867pt;}
.y238{bottom:182.934400pt;}
.yfa{bottom:184.180000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y213{bottom:186.267733pt;}
.y1d7{bottom:186.601067pt;}
.y104{bottom:188.207467pt;}
.y183{bottom:189.102400pt;}
.y275{bottom:189.267733pt;}
.y15c{bottom:194.601067pt;}
.y237{bottom:194.934400pt;}
.ya5{bottom:196.666533pt;}
.y62{bottom:197.267733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y120{bottom:198.814400pt;}
.ycb{bottom:199.333200pt;}
.y212{bottom:200.934400pt;}
.y145{bottom:201.121067pt;}
.y274{bottom:201.267733pt;}
.y103{bottom:205.540800pt;}
.y182{bottom:206.435733pt;}
.y236{bottom:206.934400pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1d6{bottom:210.601067pt;}
.y15b{bottom:211.934400pt;}
.y273{bottom:213.267733pt;}
.ya4{bottom:213.999867pt;}
.y61{bottom:214.601067pt;}
.y211{bottom:215.601067pt;}
.y11f{bottom:216.147733pt;}
.yca{bottom:216.666533pt;}
.y235{bottom:218.934400pt;}
.y181{bottom:223.769067pt;}
.y272{bottom:225.267733pt;}
.y1ba{bottom:226.882133pt;}
.y15a{bottom:229.267733pt;}
.y210{bottom:230.267733pt;}
.y234{bottom:230.934400pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.ya3{bottom:231.333200pt;}
.yb5{bottom:231.934400pt;}
.y102{bottom:232.207467pt;}
.y11e{bottom:233.481067pt;}
.yc9{bottom:233.999867pt;}
.y271{bottom:237.267733pt;}
.y180{bottom:241.102400pt;}
.y60{bottom:241.267733pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y233{bottom:242.934400pt;}
.y1b9{bottom:244.215467pt;}
.y20f{bottom:244.934400pt;}
.y159{bottom:246.601067pt;}
.yf9{bottom:247.199200pt;}
.ya2{bottom:248.666533pt;}
.yb4{bottom:249.267733pt;}
.yc8{bottom:251.333200pt;}
.y144{bottom:252.388933pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y33{bottom:254.601334pt;}
.y232{bottom:254.934400pt;}
.y1d5{bottom:255.934400pt;}
.y17f{bottom:258.435733pt;}
.y20e{bottom:259.601067pt;}
.y11d{bottom:260.147733pt;}
.y270{bottom:261.267733pt;}
.y1b8{bottom:261.548800pt;}
.y158{bottom:263.934400pt;}
.yf8{bottom:264.532533pt;}
.ya1{bottom:265.999867pt;}
.yb3{bottom:266.601067pt;}
.y231{bottom:266.934400pt;}
.y116{bottom:267.040800pt;}
.yc7{bottom:268.666533pt;}
.y143{bottom:269.722267pt;}
.y26f{bottom:273.267733pt;}
.y20d{bottom:274.267733pt;}
.y17e{bottom:275.769067pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1b7{bottom:278.882133pt;}
.y230{bottom:278.934400pt;}
.y1d4{bottom:279.934400pt;}
.y157{bottom:281.267733pt;}
.yf7{bottom:281.865867pt;}
.y115{bottom:283.040800pt;}
.ya0{bottom:283.333200pt;}
.yb2{bottom:283.934400pt;}
.y26e{bottom:285.267733pt;}
.yc6{bottom:285.999867pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y142{bottom:287.055600pt;}
.y20c{bottom:288.934400pt;}
.y22f{bottom:290.934400pt;}
.y17d{bottom:293.102400pt;}
.y114{bottom:295.040800pt;}
.y1b6{bottom:296.215467pt;}
.y26d{bottom:297.267733pt;}
.y156{bottom:298.601067pt;}
.yf6{bottom:299.199200pt;}
.y1a1{bottom:300.666533pt;}
.yb1{bottom:301.267733pt;}
.y22e{bottom:302.934400pt;}
.yc5{bottom:303.333200pt;}
.y20b{bottom:303.601067pt;}
.y141{bottom:304.388933pt;}
.y11c{bottom:305.481067pt;}
.y113{bottom:307.040800pt;}
.y26c{bottom:309.267733pt;}
.yf{bottom:309.452000pt;}
.y9f{bottom:309.999867pt;}
.y17c{bottom:310.435733pt;}
.y32{bottom:311.801334pt;}
.y1b5{bottom:313.548800pt;}
.y22d{bottom:314.934400pt;}
.y155{bottom:315.934400pt;}
.yf5{bottom:316.532533pt;}
.y1a0{bottom:317.999867pt;}
.y20a{bottom:318.267733pt;}
.y5f{bottom:318.601067pt;}
.y112{bottom:319.040800pt;}
.yc4{bottom:320.666533pt;}
.y26b{bottom:321.267733pt;}
.y140{bottom:321.722400pt;}
.y11b{bottom:322.814400pt;}
.y1d3{bottom:325.267733pt;}
.y22c{bottom:326.934400pt;}
.y17b{bottom:327.769067pt;}
.y111{bottom:331.040800pt;}
.y5e{bottom:331.934400pt;}
.y209{bottom:332.934400pt;}
.y154{bottom:333.267733pt;}
.yf4{bottom:333.865867pt;}
.y19f{bottom:335.333200pt;}
.yb0{bottom:335.934400pt;}
.y9e{bottom:336.666533pt;}
.y22b{bottom:338.934400pt;}
.y13f{bottom:339.055733pt;}
.y1d2{bottom:339.934400pt;}
.y11a{bottom:340.147733pt;}
.y1b4{bottom:340.215467pt;}
.y110{bottom:343.040800pt;}
.ye{bottom:343.809333pt;}
.y2ab{bottom:343.934400pt;}
.y17a{bottom:345.102400pt;}
.y5d{bottom:345.267733pt;}
.yc3{bottom:347.333200pt;}
.y208{bottom:347.601067pt;}
.y153{bottom:350.601067pt;}
.y22a{bottom:350.934400pt;}
.yf3{bottom:351.199200pt;}
.y19e{bottom:352.666533pt;}
.yaf{bottom:353.267733pt;}
.y1d1{bottom:354.601067pt;}
.y10f{bottom:355.040800pt;}
.y2aa{bottom:355.934400pt;}
.y13e{bottom:356.389067pt;}
.y26a{bottom:357.267733pt;}
.y119{bottom:357.481067pt;}
.y5c{bottom:358.601067pt;}
.y207{bottom:362.267733pt;}
.y179{bottom:362.435733pt;}
.yd{bottom:362.706666pt;}
.y229{bottom:362.934400pt;}
.y152{bottom:367.934400pt;}
.yf2{bottom:368.532533pt;}
.y31{bottom:369.001334pt;}
.y1d0{bottom:369.267733pt;}
.y19d{bottom:369.999867pt;}
.yae{bottom:370.601067pt;}
.y10e{bottom:371.040800pt;}
.y5b{bottom:371.934400pt;}
.y13d{bottom:373.722400pt;}
.y118{bottom:374.814400pt;}
.y228{bottom:374.934400pt;}
.y206{bottom:376.934400pt;}
.y178{bottom:379.769067pt;}
.y2a9{bottom:379.934400pt;}
.y269{bottom:381.267733pt;}
.y1cf{bottom:383.934400pt;}
.y5a{bottom:385.267733pt;}
.yf1{bottom:385.865867pt;}
.y227{bottom:386.934400pt;}
.y1b3{bottom:387.269067pt;}
.y19c{bottom:387.333200pt;}
.y10d{bottom:387.707467pt;}
.y9d{bottom:387.934400pt;}
.y13c{bottom:391.055733pt;}
.y205{bottom:391.601067pt;}
.y2a8{bottom:391.934400pt;}
.y117{bottom:392.147733pt;}
.y268{bottom:393.267733pt;}
.y177{bottom:397.102400pt;}
.y59{bottom:398.601067pt;}
.y226{bottom:398.934400pt;}
.yc2{bottom:399.289600pt;}
.y151{bottom:402.601067pt;}
.yf0{bottom:403.199200pt;}
.y2a7{bottom:403.934400pt;}
.y1b2{bottom:404.602400pt;}
.y19b{bottom:404.666533pt;}
.y9c{bottom:405.267733pt;}
.y204{bottom:406.267733pt;}
.y13b{bottom:408.389067pt;}
.y225{bottom:410.934400pt;}
.y58{bottom:411.934400pt;}
.y1ce{bottom:413.267733pt;}
.y176{bottom:414.435733pt;}
.y2a6{bottom:415.934400pt;}
.yc1{bottom:416.622933pt;}
.y267{bottom:417.267733pt;}
.y150{bottom:419.934400pt;}
.yef{bottom:420.532533pt;}
.y203{bottom:420.934400pt;}
.y1b1{bottom:421.935733pt;}
.y19a{bottom:421.999867pt;}
.y9b{bottom:422.601067pt;}
.y224{bottom:422.934400pt;}
.y57{bottom:425.267733pt;}
.y13a{bottom:425.722400pt;}
.y2a5{bottom:427.934400pt;}
.y30{bottom:428.806667pt;}
.y266{bottom:429.267733pt;}
.y175{bottom:431.769067pt;}
.yc0{bottom:433.956267pt;}
.y129{bottom:434.147733pt;}
.y223{bottom:434.934400pt;}
.y202{bottom:435.601067pt;}
.y14f{bottom:437.267733pt;}
.yee{bottom:437.865867pt;}
.y56{bottom:438.601067pt;}
.y1b0{bottom:439.269067pt;}
.y199{bottom:439.333200pt;}
.y10c{bottom:439.587733pt;}
.y9a{bottom:439.934400pt;}
.y265{bottom:441.267733pt;}
.y139{bottom:443.055733pt;}
.y2a4{bottom:444.601067pt;}
.y128{bottom:446.147733pt;}
.y222{bottom:446.934400pt;}
.yc{bottom:446.990669pt;}
.y174{bottom:449.102400pt;}
.y201{bottom:450.267733pt;}
.ybf{bottom:451.289600pt;}
.y10b{bottom:451.587733pt;}
.y55{bottom:451.934400pt;}
.y264{bottom:453.267733pt;}
.yed{bottom:455.199200pt;}
.y2a3{bottom:456.601067pt;}
.y1af{bottom:456.602400pt;}
.y198{bottom:456.666533pt;}
.y99{bottom:457.267733pt;}
.y221{bottom:458.934400pt;}
.y138{bottom:460.389067pt;}
.yb{bottom:462.990669pt;}
.y14e{bottom:463.934400pt;}
.y200{bottom:464.934400pt;}
.y54{bottom:465.267733pt;}
.y173{bottom:466.435733pt;}
.y2a2{bottom:468.601067pt;}
.ybe{bottom:468.622933pt;}
.y220{bottom:470.934400pt;}
.yec{bottom:472.532533pt;}
.y1ae{bottom:473.935733pt;}
.y197{bottom:473.999867pt;}
.y98{bottom:474.601067pt;}
.y263{bottom:477.267733pt;}
.y137{bottom:477.722400pt;}
.y53{bottom:478.601067pt;}
.ya{bottom:478.990666pt;}
.y1ff{bottom:479.601067pt;}
.y2a1{bottom:480.601067pt;}
.y1cd{bottom:482.601067pt;}
.y21f{bottom:482.934400pt;}
.y2f{bottom:483.401334pt;}
.y172{bottom:483.769067pt;}
.ybd{bottom:485.956267pt;}
.y262{bottom:489.267733pt;}
.yeb{bottom:489.865867pt;}
.y1ad{bottom:491.269067pt;}
.y196{bottom:491.333200pt;}
.y52{bottom:491.934400pt;}
.y2a0{bottom:492.601067pt;}
.y1fe{bottom:494.267733pt;}
.y21e{bottom:494.934400pt;}
.y9{bottom:494.990666pt;}
.y136{bottom:495.055733pt;}
.y1cc{bottom:497.267733pt;}
.y171{bottom:501.102400pt;}
.y261{bottom:501.267733pt;}
.ybc{bottom:503.289600pt;}
.y29f{bottom:504.601067pt;}
.yea{bottom:507.199200pt;}
.y1ac{bottom:508.602400pt;}
.y195{bottom:508.666533pt;}
.y1fd{bottom:508.934400pt;}
.y97{bottom:509.267733pt;}
.y21d{bottom:510.934400pt;}
.y135{bottom:512.389067pt;}
.y260{bottom:513.267733pt;}
.y51{bottom:515.934400pt;}
.y29e{bottom:516.601067pt;}
.y170{bottom:518.435733pt;}
.ybb{bottom:520.622933pt;}
.y1cb{bottom:521.267733pt;}
.y1fc{bottom:523.601067pt;}
.ye9{bottom:524.532533pt;}
.y25f{bottom:525.267733pt;}
.y1ab{bottom:525.935733pt;}
.y194{bottom:525.999867pt;}
.y96{bottom:526.601067pt;}
.y29d{bottom:528.601067pt;}
.y134{bottom:529.722400pt;}
.y50{bottom:530.601067pt;}
.y16f{bottom:535.769067pt;}
.y21c{bottom:536.934400pt;}
.y25e{bottom:537.267733pt;}
.y1fb{bottom:538.267733pt;}
.y29c{bottom:540.601067pt;}
.ye8{bottom:541.865867pt;}
.y2e{bottom:543.206667pt;}
.y1aa{bottom:543.269067pt;}
.y193{bottom:543.333200pt;}
.y4f{bottom:543.934400pt;}
.y133{bottom:547.055733pt;}
.yba{bottom:547.289600pt;}
.y25d{bottom:549.267733pt;}
.y29b{bottom:552.601067pt;}
.y1fa{bottom:552.934400pt;}
.y16e{bottom:553.102400pt;}
.y4e{bottom:557.267733pt;}
.ye7{bottom:559.199200pt;}
.y1a9{bottom:560.602400pt;}
.y192{bottom:560.666533pt;}
.y95{bottom:561.267733pt;}
.y132{bottom:564.389067pt;}
.y29a{bottom:564.601067pt;}
.y1ca{bottom:566.601067pt;}
.y1f9{bottom:567.601067pt;}
.y16d{bottom:570.435733pt;}
.y4d{bottom:570.601067pt;}
.y7c{bottom:571.633867pt;}
.y25c{bottom:573.267733pt;}
.y2d{bottom:573.740001pt;}
.y8{bottom:573.786667pt;}
.ye6{bottom:576.532533pt;}
.y299{bottom:576.601067pt;}
.y1a8{bottom:577.935733pt;}
.y191{bottom:577.999867pt;}
.y94{bottom:578.601067pt;}
.y131{bottom:581.722400pt;}
.y1f8{bottom:582.267733pt;}
.y7b{bottom:583.633867pt;}
.y4c{bottom:583.934400pt;}
.y25b{bottom:585.267733pt;}
.y2c{bottom:587.073335pt;}
.y16c{bottom:587.769067pt;}
.y1c9{bottom:590.601067pt;}
.y7{bottom:592.685334pt;}
.y298{bottom:593.267733pt;}
.ye5{bottom:593.865867pt;}
.y1a7{bottom:595.269067pt;}
.y190{bottom:595.333200pt;}
.y7a{bottom:595.633867pt;}
.y93{bottom:595.934400pt;}
.y1f7{bottom:596.934400pt;}
.y4b{bottom:597.267733pt;}
.y130{bottom:599.055733pt;}
.y2b{bottom:600.406667pt;}
.y16b{bottom:605.102400pt;}
.y297{bottom:605.267733pt;}
.y79{bottom:607.633867pt;}
.y25a{bottom:609.267733pt;}
.y4a{bottom:610.601067pt;}
.ye4{bottom:611.199200pt;}
.y1f6{bottom:611.601067pt;}
.y1a6{bottom:612.602400pt;}
.y18f{bottom:612.666533pt;}
.y92{bottom:613.267733pt;}
.y12f{bottom:616.389067pt;}
.y296{bottom:617.267733pt;}
.y78{bottom:619.633867pt;}
.y259{bottom:621.267733pt;}
.y16a{bottom:622.435733pt;}
.y49{bottom:623.934400pt;}
.y1f5{bottom:626.267733pt;}
.ye3{bottom:628.532533pt;}
.y295{bottom:629.267733pt;}
.y1a5{bottom:629.935733pt;}
.y18e{bottom:629.999867pt;}
.y91{bottom:630.601067pt;}
.y258{bottom:633.267733pt;}
.y12e{bottom:633.722400pt;}
.y1c8{bottom:635.934400pt;}
.y48{bottom:637.267733pt;}
.y77{bottom:638.767733pt;}
.y169{bottom:639.769067pt;}
.y1f4{bottom:640.934400pt;}
.y294{bottom:641.267733pt;}
.y257{bottom:645.267733pt;}
.y6{bottom:645.598667pt;}
.ye2{bottom:645.865867pt;}
.y1a4{bottom:647.269067pt;}
.y18d{bottom:647.333200pt;}
.y90{bottom:647.934400pt;}
.y47{bottom:650.601067pt;}
.y76{bottom:650.767733pt;}
.y12d{bottom:651.055733pt;}
.y293{bottom:653.267733pt;}
.y1f3{bottom:655.601067pt;}
.y168{bottom:657.102400pt;}
.y256{bottom:657.267733pt;}
.y75{bottom:662.767733pt;}
.ye1{bottom:663.199200pt;}
.y46{bottom:663.934400pt;}
.y1a3{bottom:664.602400pt;}
.y18c{bottom:664.666533pt;}
.y8f{bottom:665.267733pt;}
.y12c{bottom:668.389067pt;}
.y3{bottom:668.977329pt;}
.y255{bottom:669.267733pt;}
.y1f2{bottom:670.267733pt;}
.y2a{bottom:672.726665pt;}
.y167{bottom:674.435733pt;}
.y74{bottom:674.767733pt;}
.y45{bottom:677.267733pt;}
.y1c7{bottom:679.934400pt;}
.ye0{bottom:680.532533pt;}
.y254{bottom:681.267733pt;}
.y18b{bottom:681.999867pt;}
.y8e{bottom:682.601067pt;}
.y1f1{bottom:684.934400pt;}
.y12b{bottom:685.722267pt;}
.y292{bottom:689.267733pt;}
.y44{bottom:690.601067pt;}
.y1a2{bottom:691.269067pt;}
.y166{bottom:691.769067pt;}
.y73{bottom:692.867733pt;}
.y253{bottom:693.267733pt;}
.y1c6{bottom:694.601067pt;}
.ydf{bottom:697.865867pt;}
.y29{bottom:699.393332pt;}
.y1f0{bottom:699.601067pt;}
.y8d{bottom:699.934400pt;}
.y291{bottom:701.267733pt;}
.y12a{bottom:703.055600pt;}
.y43{bottom:703.934400pt;}
.y72{bottom:704.867733pt;}
.y252{bottom:705.267733pt;}
.y18a{bottom:708.666533pt;}
.y165{bottom:709.102400pt;}
.y1c5{bottom:709.267733pt;}
.y290{bottom:713.267733pt;}
.y1ef{bottom:714.267733pt;}
.yde{bottom:715.199200pt;}
.y28{bottom:715.393332pt;}
.y71{bottom:716.867733pt;}
.y42{bottom:717.267733pt;}
.y1c4{bottom:723.934400pt;}
.y28f{bottom:725.267733pt;}
.y164{bottom:726.435733pt;}
.y70{bottom:728.867733pt;}
.y1ee{bottom:728.934400pt;}
.y251{bottom:729.267733pt;}
.y41{bottom:730.601067pt;}
.y27{bottom:731.393332pt;}
.y8c{bottom:734.601067pt;}
.y28e{bottom:737.267733pt;}
.y1c3{bottom:738.601067pt;}
.y250{bottom:741.267733pt;}
.ydd{bottom:741.865867pt;}
.y1ed{bottom:743.601067pt;}
.y40{bottom:743.934400pt;}
.y6f{bottom:749.101067pt;}
.y28d{bottom:749.267733pt;}
.y8b{bottom:751.934400pt;}
.y163{bottom:753.102400pt;}
.y1c2{bottom:753.267733pt;}
.y3f{bottom:757.267733pt;}
.y14d{bottom:757.987733pt;}
.y1ec{bottom:758.267733pt;}
.y6e{bottom:761.101067pt;}
.y28c{bottom:761.267733pt;}
.y24f{bottom:765.267733pt;}
.y8a{bottom:769.267733pt;}
.y14c{bottom:769.987733pt;}
.y3e{bottom:770.601067pt;}
.y1eb{bottom:772.934400pt;}
.y6d{bottom:773.101067pt;}
.y28b{bottom:773.267733pt;}
.y1c1{bottom:777.267733pt;}
.y26{bottom:778.034669pt;}
.y2{bottom:781.661334pt;}
.y3d{bottom:783.934400pt;}
.y6c{bottom:785.101067pt;}
.y28a{bottom:785.267733pt;}
.y89{bottom:786.601067pt;}
.ydc{bottom:787.199200pt;}
.y1ea{bottom:787.601067pt;}
.y24e{bottom:789.267733pt;}
.y289{bottom:797.267733pt;}
.y24d{bottom:801.267733pt;}
.y1e9{bottom:802.267733pt;}
.y88{bottom:803.934400pt;}
.ydb{bottom:804.532533pt;}
.y288{bottom:809.267733pt;}
.y24c{bottom:813.267733pt;}
.y1e8{bottom:816.934400pt;}
.y87{bottom:821.267733pt;}
.yda{bottom:821.865867pt;}
.y24b{bottom:825.267733pt;}
.y3c{bottom:825.601067pt;}
.y1e7{bottom:831.601067pt;}
.y287{bottom:833.267733pt;}
.y25{bottom:834.613333pt;}
.y24a{bottom:837.267733pt;}
.y86{bottom:838.601067pt;}
.yd9{bottom:839.199200pt;}
.y286{bottom:845.267733pt;}
.y1e6{bottom:846.267733pt;}
.y249{bottom:849.267733pt;}
.y3b{bottom:849.601067pt;}
.y85{bottom:855.934400pt;}
.yd8{bottom:856.532533pt;}
.y285{bottom:857.267733pt;}
.y1{bottom:859.312000pt;}
.y1e5{bottom:860.934400pt;}
.y248{bottom:861.267733pt;}
.y24{bottom:862.613333pt;}
.y284{bottom:869.267733pt;}
.y84{bottom:873.267733pt;}
.yd7{bottom:873.865867pt;}
.y1e4{bottom:875.601067pt;}
.y246{bottom:877.267733pt;}
.y283{bottom:881.267733pt;}
.y3a{bottom:884.267733pt;}
.y247{bottom:889.267733pt;}
.y1e3{bottom:890.267733pt;}
.y83{bottom:890.601067pt;}
.yd6{bottom:891.199200pt;}
.y282{bottom:897.934400pt;}
.y1e2{bottom:904.934400pt;}
.y39{bottom:905.601067pt;}
.y245{bottom:905.934400pt;}
.y82{bottom:907.934400pt;}
.yd5{bottom:908.532533pt;}
.y281{bottom:909.934400pt;}
.y1e1{bottom:919.601067pt;}
.y23{bottom:920.485335pt;}
.y244{bottom:921.934400pt;}
.y81{bottom:925.267733pt;}
.yd4{bottom:925.865867pt;}
.y36{bottom:931.121067pt;}
.y243{bottom:933.934400pt;}
.y1e0{bottom:934.267733pt;}
.y80{bottom:942.601067pt;}
.yd3{bottom:943.199200pt;}
.y242{bottom:945.934400pt;}
.y1df{bottom:948.934400pt;}
.y241{bottom:957.934400pt;}
.y7f{bottom:959.934400pt;}
.yd2{bottom:960.532533pt;}
.y280{bottom:962.601067pt;}
.y68{bottom:963.362000pt;}
.y1de{bottom:963.601067pt;}
.y240{bottom:974.601067pt;}
.y38{bottom:975.473733pt;}
.y7e{bottom:977.267733pt;}
.yd1{bottom:977.865867pt;}
.y1dd{bottom:978.267733pt;}
.y37{bottom:987.473733pt;}
.yad{bottom:1014.433867pt;}
.y7d{bottom:1014.500533pt;}
.y22{bottom:1035.664002pt;}
.h1a{height:26.693333pt;}
.h17{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1c{height:30.506667pt;}
.h1b{height:30.762667pt;}
.hb{height:32.645833pt;}
.h16{height:34.320000pt;}
.h1e{height:35.120000pt;}
.h20{height:36.226667pt;}
.hf{height:36.726562pt;}
.h1d{height:37.461333pt;}
.h1f{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h18{height:42.144000pt;}
.h19{height:42.298667pt;}
.h3{height:42.840000pt;}
.h12{height:46.826667pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h15{height:49.168000pt;}
.h14{height:53.834667pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x12{left:109.333333pt;}
.xb{left:112.100000pt;}
.x6{left:129.466667pt;}
.x13{left:134.666667pt;}
.x14{left:148.000000pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x11{left:191.680000pt;}
.x9{left:203.327991pt;}
.x8{left:260.969328pt;}
.x15{left:268.299200pt;}
.x1e{left:273.952400pt;}
.xe{left:402.183733pt;}
.x17{left:403.294533pt;}
.x3{left:404.408000pt;}
.x16{left:405.358800pt;}
.xf{left:418.183733pt;}
.x18{left:459.606933pt;}
.x19{left:464.732133pt;}
.x1f{left:471.088400pt;}
.x10{left:502.378267pt;}
.xd{left:507.508000pt;}
.x1a{left:536.551600pt;}
.x1b{left:540.337867pt;}
.xc{left:577.800667pt;}
.x1c{left:651.877600pt;}
.x1d{left:657.530667pt;}
}




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