
    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_7ce19a81938a2fabca387c8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930176;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_33b11f6c652da00cdfd4843b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.950195;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_f6e35ddfb252184a763854a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_7f750c84d9b8b3ae5dd5527a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.881836;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_e07686aef23d04d396b8ab59.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_8ff28f84779c6454f8bc8025.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936523;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_bf3f4464545ce4a5d1458792.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935059;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_6dc4794b7077bef8d9ead284.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.936035;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_277a55ad28f423f63a224e9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.755371;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_f2b55fe3a565185ab4c70dd9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.755371;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_a27cc9402af637c6523b720f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.755371;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_272c7f5c96e4f942c81aae89.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.931641;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_514a6f925ffecf38614623fd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-5.100000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.595400px;}
.v3{vertical-align:19.980000px;}
.ls41{letter-spacing:-1.080000px;}
.ls42{letter-spacing:-0.960000px;}
.ls32{letter-spacing:-0.900000px;}
.ls15{letter-spacing:-0.840000px;}
.ls1f{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.756000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls4e{letter-spacing:-0.702000px;}
.ls1e{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.600000px;}
.ls4a{letter-spacing:-0.594000px;}
.ls12{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.486000px;}
.lsf{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.420000px;}
.ls4{letter-spacing:-0.360000px;}
.ls4d{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.300000px;}
.ls5{letter-spacing:-0.270000px;}
.ls1{letter-spacing:-0.252000px;}
.ls11{letter-spacing:-0.240000px;}
.ls2{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.120000px;}
.ls37{letter-spacing:-0.060000px;}
.ls4b{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.006000px;}
.ls38{letter-spacing:0.006600px;}
.ls39{letter-spacing:0.009600px;}
.ls20{letter-spacing:0.060000px;}
.ls24{letter-spacing:0.094200px;}
.ls21{letter-spacing:0.094800px;}
.ls22{letter-spacing:0.098400px;}
.ls4f{letter-spacing:0.119400px;}
.ls23{letter-spacing:0.120000px;}
.ls3a{letter-spacing:0.300000px;}
.ls3d{letter-spacing:0.321000px;}
.ls3b{letter-spacing:0.332400px;}
.ls3e{letter-spacing:0.333000px;}
.ls2e{letter-spacing:0.335400px;}
.ls3c{letter-spacing:0.336000px;}
.ls3f{letter-spacing:0.336600px;}
.ls2f{letter-spacing:0.338400px;}
.ls30{letter-spacing:0.339600px;}
.ls2d{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.414000px;}
.ls31{letter-spacing:0.414600px;}
.ls25{letter-spacing:0.420000px;}
.ls27{letter-spacing:0.426000px;}
.ls29{letter-spacing:0.426600px;}
.ls2a{letter-spacing:0.429000px;}
.ls26{letter-spacing:0.429600px;}
.ls28{letter-spacing:0.430200px;}
.ls36{letter-spacing:0.480000px;}
.ls43{letter-spacing:0.569400px;}
.ls35{letter-spacing:0.780000px;}
.ls34{letter-spacing:0.840000px;}
.ls40{letter-spacing:1.296000px;}
.ls18{letter-spacing:1.380000px;}
.ls1a{letter-spacing:1.391400px;}
.ls1b{letter-spacing:1.394400px;}
.ls1c{letter-spacing:1.395000px;}
.ls19{letter-spacing:1.440000px;}
.lsc{letter-spacing:1.589400px;}
.ls33{letter-spacing:1.800000px;}
.lse{letter-spacing:2.791800px;}
.ls4c{letter-spacing:3.353400px;}
.ls47{letter-spacing:3.520200px;}
.ls46{letter-spacing:5.132400px;}
.ls48{letter-spacing:5.550600px;}
.ls45{letter-spacing:5.991000px;}
.lsd{letter-spacing:6.945600px;}
.ls49{letter-spacing:8.199000px;}
.ls44{letter-spacing:8.419200px;}
.lsb{letter-spacing:10.435200px;}
.ls17{letter-spacing:16.320000px;}
.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;}
}
.ws2{word-spacing:-126.144000px;}
.ws3{word-spacing:-88.300800px;}
.wsc3{word-spacing:-25.620000px;}
.wsc1{word-spacing:-24.840000px;}
.ws91{word-spacing:-22.680000px;}
.wsbe{word-spacing:-20.160000px;}
.ws0{word-spacing:-19.656000px;}
.ws92{word-spacing:-18.660000px;}
.wsa8{word-spacing:-17.640000px;}
.wsb2{word-spacing:-17.580000px;}
.wsa6{word-spacing:-17.280000px;}
.ws36{word-spacing:-17.220000px;}
.wsc8{word-spacing:-17.160000px;}
.wsa9{word-spacing:-17.100000px;}
.ws86{word-spacing:-17.040000px;}
.wsa1{word-spacing:-16.920000px;}
.wsa5{word-spacing:-16.860000px;}
.wsa7{word-spacing:-16.800000px;}
.wsd5{word-spacing:-16.740000px;}
.ws35{word-spacing:-16.680000px;}
.wsc7{word-spacing:-16.620000px;}
.wsd1{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.500000px;}
.wseb{word-spacing:-16.440000px;}
.wsa2{word-spacing:-16.380000px;}
.ws39{word-spacing:-16.320000px;}
.ws16{word-spacing:-16.260000px;}
.ws17{word-spacing:-16.200000px;}
.ws15{word-spacing:-16.140000px;}
.wsa4{word-spacing:-16.080000px;}
.wse4{word-spacing:-16.020000px;}
.wsa3{word-spacing:-15.960000px;}
.wsb3{word-spacing:-15.780000px;}
.ws12{word-spacing:-15.498000px;}
.ws101{word-spacing:-15.444000px;}
.wsf4{word-spacing:-15.336000px;}
.ws111{word-spacing:-15.174000px;}
.ws13{word-spacing:-15.012000px;}
.ws11c{word-spacing:-14.958000px;}
.ws5{word-spacing:-14.850000px;}
.ws116{word-spacing:-14.742000px;}
.ws110{word-spacing:-14.688000px;}
.ws11b{word-spacing:-14.472000px;}
.ws115{word-spacing:-14.310000px;}
.ws1{word-spacing:-13.759200px;}
.ws37{word-spacing:-12.054000px;}
.ws14{word-spacing:-9.724440px;}
.wscc{word-spacing:-4.320000px;}
.wsec{word-spacing:-4.260000px;}
.ws46{word-spacing:-4.200000px;}
.ws23{word-spacing:-4.140000px;}
.ws4e{word-spacing:-4.020000px;}
.wsa0{word-spacing:-3.960000px;}
.wsd8{word-spacing:-3.900000px;}
.ws8{word-spacing:-3.888000px;}
.ws117{word-spacing:-3.834000px;}
.wsb{word-spacing:-3.780000px;}
.ws9{word-spacing:-3.726000px;}
.ws107{word-spacing:-3.672000px;}
.wsbb{word-spacing:-3.660000px;}
.ws8b{word-spacing:-3.600000px;}
.ws108{word-spacing:-3.564000px;}
.ws4b{word-spacing:-3.540000px;}
.ws69{word-spacing:-3.480000px;}
.ws2f{word-spacing:-3.420000px;}
.wsaf{word-spacing:-3.360000px;}
.ws10d{word-spacing:-3.348000px;}
.ws28{word-spacing:-3.300000px;}
.ws2c{word-spacing:-3.240000px;}
.ws6b{word-spacing:-3.180000px;}
.ws71{word-spacing:-3.120000px;}
.ws72{word-spacing:-3.060000px;}
.ws58{word-spacing:-3.000000px;}
.wsea{word-spacing:-2.940000px;}
.wsd0{word-spacing:-2.880000px;}
.ws99{word-spacing:-2.820000px;}
.wsd3{word-spacing:-2.760000px;}
.ws3a{word-spacing:-2.700000px;}
.ws10f{word-spacing:-2.646000px;}
.ws5f{word-spacing:-2.640000px;}
.ws30{word-spacing:-2.580000px;}
.ws102{word-spacing:-2.538000px;}
.ws3b{word-spacing:-2.520000px;}
.ws44{word-spacing:-2.460000px;}
.ws103{word-spacing:-2.430000px;}
.ws7b{word-spacing:-2.400000px;}
.wsfc{word-spacing:-2.376000px;}
.ws42{word-spacing:-2.340000px;}
.ws2d{word-spacing:-2.280000px;}
.ws6f{word-spacing:-2.220000px;}
.wsff{word-spacing:-2.214000px;}
.ws57{word-spacing:-2.160000px;}
.wsfb{word-spacing:-2.106000px;}
.ws5d{word-spacing:-2.100000px;}
.ws5e{word-spacing:-2.040000px;}
.ws45{word-spacing:-1.980000px;}
.ws4d{word-spacing:-1.860000px;}
.ws6c{word-spacing:-1.800000px;}
.ws70{word-spacing:-1.740000px;}
.ws119{word-spacing:-1.728000px;}
.ws40{word-spacing:-1.680000px;}
.ws8e{word-spacing:-1.620000px;}
.ws47{word-spacing:-1.560000px;}
.ws61{word-spacing:-1.500000px;}
.wsbc{word-spacing:-1.440000px;}
.ws48{word-spacing:-1.380000px;}
.wse2{word-spacing:-1.320000px;}
.ws4a{word-spacing:-1.260000px;}
.ws68{word-spacing:-1.200000px;}
.wsac{word-spacing:-1.140000px;}
.ws63{word-spacing:-1.080000px;}
.ws7a{word-spacing:-1.020000px;}
.ws10{word-spacing:-0.972000px;}
.ws34{word-spacing:-0.960000px;}
.wsbf{word-spacing:-0.900000px;}
.ws1a{word-spacing:-0.864000px;}
.ws60{word-spacing:-0.840000px;}
.ws10c{word-spacing:-0.810000px;}
.wsab{word-spacing:-0.780000px;}
.ws50{word-spacing:-0.720000px;}
.ws96{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.648000px;}
.wsb6{word-spacing:-0.600000px;}
.wsca{word-spacing:-0.480000px;}
.ws114{word-spacing:-0.432000px;}
.ws3c{word-spacing:-0.420000px;}
.wsf7{word-spacing:-0.378000px;}
.ws95{word-spacing:-0.360000px;}
.wsb5{word-spacing:-0.300000px;}
.ws1d{word-spacing:-0.270000px;}
.wsaa{word-spacing:-0.240000px;}
.wsf8{word-spacing:-0.216000px;}
.ws81{word-spacing:-0.180000px;}
.ws100{word-spacing:-0.162000px;}
.wsc9{word-spacing:-0.120000px;}
.ws38{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws51{word-spacing:0.060000px;}
.ws10e{word-spacing:0.108000px;}
.ws27{word-spacing:0.120000px;}
.ws19{word-spacing:0.162000px;}
.ws24{word-spacing:0.180000px;}
.ws22{word-spacing:0.216000px;}
.ws2b{word-spacing:0.240000px;}
.ws11{word-spacing:0.270000px;}
.ws7{word-spacing:0.300000px;}
.ws112{word-spacing:0.324000px;}
.ws6{word-spacing:0.360000px;}
.ws94{word-spacing:0.420000px;}
.ws55{word-spacing:0.480000px;}
.wsfd{word-spacing:0.486000px;}
.ws26{word-spacing:0.540000px;}
.wsfe{word-spacing:0.594000px;}
.ws88{word-spacing:0.600000px;}
.ws93{word-spacing:0.660000px;}
.ws118{word-spacing:0.702000px;}
.ws59{word-spacing:0.720000px;}
.ws9f{word-spacing:0.780000px;}
.ws3d{word-spacing:0.840000px;}
.wsc{word-spacing:0.918000px;}
.wscb{word-spacing:0.960000px;}
.ws43{word-spacing:1.020000px;}
.ws9c{word-spacing:1.080000px;}
.ws2e{word-spacing:1.140000px;}
.ws8d{word-spacing:1.200000px;}
.wsf9{word-spacing:1.296000px;}
.ws66{word-spacing:1.320000px;}
.wsfa{word-spacing:1.350000px;}
.ws4c{word-spacing:1.380000px;}
.ws9e{word-spacing:1.440000px;}
.ws6d{word-spacing:1.500000px;}
.ws8c{word-spacing:1.560000px;}
.ws1c{word-spacing:1.620000px;}
.ws73{word-spacing:1.680000px;}
.ws85{word-spacing:1.740000px;}
.ws8f{word-spacing:1.800000px;}
.ws11a{word-spacing:1.836000px;}
.ws3f{word-spacing:1.860000px;}
.ws67{word-spacing:1.920000px;}
.ws25{word-spacing:1.980000px;}
.ws105{word-spacing:1.998000px;}
.ws9d{word-spacing:2.040000px;}
.ws56{word-spacing:2.100000px;}
.wsba{word-spacing:2.160000px;}
.wsd6{word-spacing:2.220000px;}
.wsd7{word-spacing:2.280000px;}
.ws31{word-spacing:2.340000px;}
.wsb9{word-spacing:2.400000px;}
.wsa{word-spacing:2.430000px;}
.wsb0{word-spacing:2.460000px;}
.ws5c{word-spacing:2.520000px;}
.ws49{word-spacing:2.580000px;}
.ws11d{word-spacing:2.592000px;}
.ws9b{word-spacing:2.640000px;}
.ws76{word-spacing:2.700000px;}
.ws5b{word-spacing:2.760000px;}
.ws4f{word-spacing:2.820000px;}
.wsf6{word-spacing:2.862000px;}
.ws3e{word-spacing:2.880000px;}
.ws80{word-spacing:2.940000px;}
.wsf5{word-spacing:2.970000px;}
.ws32{word-spacing:3.000000px;}
.wsd{word-spacing:3.024000px;}
.ws64{word-spacing:3.060000px;}
.ws77{word-spacing:3.120000px;}
.wsb4{word-spacing:3.180000px;}
.ws7d{word-spacing:3.240000px;}
.wsda{word-spacing:3.300000px;}
.ws78{word-spacing:3.420000px;}
.wse{word-spacing:3.456000px;}
.ws6e{word-spacing:3.480000px;}
.ws109{word-spacing:3.510000px;}
.ws97{word-spacing:3.540000px;}
.ws33{word-spacing:3.600000px;}
.ws113{word-spacing:3.618000px;}
.ws62{word-spacing:3.660000px;}
.wsbd{word-spacing:3.720000px;}
.wscd{word-spacing:3.780000px;}
.ws106{word-spacing:3.834000px;}
.ws5a{word-spacing:3.840000px;}
.ws8a{word-spacing:3.900000px;}
.ws7c{word-spacing:3.960000px;}
.wsb8{word-spacing:4.020000px;}
.ws52{word-spacing:4.080000px;}
.ws29{word-spacing:4.140000px;}
.ws89{word-spacing:4.200000px;}
.ws2a{word-spacing:4.260000px;}
.wsf{word-spacing:4.320000px;}
.wse3{word-spacing:4.380000px;}
.ws75{word-spacing:4.500000px;}
.wsad{word-spacing:4.560000px;}
.ws87{word-spacing:4.620000px;}
.wscf{word-spacing:4.680000px;}
.wsc4{word-spacing:4.740000px;}
.ws20{word-spacing:4.752000px;}
.wsdb{word-spacing:4.800000px;}
.ws6a{word-spacing:4.860000px;}
.ws41{word-spacing:4.920000px;}
.wsc0{word-spacing:4.980000px;}
.ws83{word-spacing:5.040000px;}
.ws10b{word-spacing:5.076000px;}
.ws9a{word-spacing:5.100000px;}
.wse5{word-spacing:5.160000px;}
.wsde{word-spacing:5.220000px;}
.ws98{word-spacing:5.280000px;}
.ws53{word-spacing:5.340000px;}
.ws84{word-spacing:5.520000px;}
.wsdc{word-spacing:5.580000px;}
.wsed{word-spacing:5.700000px;}
.wsae{word-spacing:5.760000px;}
.wsf2{word-spacing:5.820000px;}
.wsd2{word-spacing:5.880000px;}
.wsb1{word-spacing:5.940000px;}
.wsc6{word-spacing:6.000000px;}
.wsf1{word-spacing:6.060000px;}
.wsce{word-spacing:6.180000px;}
.wse7{word-spacing:6.240000px;}
.ws10a{word-spacing:6.264000px;}
.ws74{word-spacing:6.300000px;}
.ws11e{word-spacing:6.318000px;}
.ws54{word-spacing:6.420000px;}
.wsc5{word-spacing:6.480000px;}
.wsb7{word-spacing:6.540000px;}
.wse1{word-spacing:6.660000px;}
.wse0{word-spacing:6.780000px;}
.wsf3{word-spacing:6.840000px;}
.wse8{word-spacing:6.960000px;}
.ws1e{word-spacing:6.966000px;}
.wsdf{word-spacing:7.020000px;}
.ws65{word-spacing:7.080000px;}
.ws7e{word-spacing:7.200000px;}
.wsc2{word-spacing:7.320000px;}
.ws7f{word-spacing:7.380000px;}
.ws104{word-spacing:7.506000px;}
.wsef{word-spacing:7.620000px;}
.wsd9{word-spacing:7.740000px;}
.ws79{word-spacing:7.860000px;}
.wse6{word-spacing:7.920000px;}
.wsee{word-spacing:8.100000px;}
.wsd4{word-spacing:8.220000px;}
.wsdd{word-spacing:8.280000px;}
.ws82{word-spacing:8.340000px;}
.ws1f{word-spacing:8.478000px;}
.wse9{word-spacing:8.580000px;}
.wsf0{word-spacing:8.640000px;}
.ws1b{word-spacing:10.422000px;}
.ws90{word-spacing:163.320000px;}
._e{margin-left:-2806.940400px;}
._13{margin-left:-79.671600px;}
._1{margin-left:-16.698000px;}
._19{margin-left:-13.923000px;}
._20{margin-left:-12.552600px;}
._17{margin-left:-11.454600px;}
._11{margin-left:-9.540000px;}
._7{margin-left:-7.551000px;}
._4{margin-left:-4.968000px;}
._a{margin-left:-3.792000px;}
._0{margin-left:-1.862400px;}
._5{width:1.026000px;}
._8{width:2.059200px;}
._9{width:3.720000px;}
._f{width:4.800000px;}
._c{width:5.820000px;}
._d{width:7.800000px;}
._1d{width:9.180000px;}
._14{width:11.398800px;}
._1b{width:15.269400px;}
._3{width:22.399800px;}
._10{width:23.640000px;}
._1a{width:46.749600px;}
._1e{width:56.880000px;}
._2{width:89.856000px;}
._1f{width:93.420000px;}
._18{width:97.320000px;}
._16{width:103.500000px;}
._1c{width:104.580000px;}
._15{width:108.540000px;}
._12{width:113.820000px;}
._21{width:1513.227600px;}
._b{width:1547.668200px;}
._6{width:1817.528400px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fsa{font-size:42.000000px;}
.fs1{font-size:50.400000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:302.400000px;}
.fs2{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:65.599200px;}
.y168{bottom:107.999850px;}
.y72{bottom:108.000000px;}
.y1c4{bottom:108.001950px;}
.y398{bottom:124.200000px;}
.y10c{bottom:126.006000px;}
.ya8{bottom:126.033900px;}
.y197{bottom:126.039300px;}
.y167{bottom:126.040200px;}
.y220{bottom:126.041100px;}
.y24f{bottom:126.081150px;}
.y27c{bottom:126.086700px;}
.y1c3{bottom:126.090300px;}
.y352{bottom:126.211350px;}
.ydc{bottom:126.247950px;}
.y31e{bottom:126.257850px;}
.y71{bottom:126.327300px;}
.y2ed{bottom:126.378900px;}
.y385{bottom:126.605700px;}
.y1f3{bottom:126.659400px;}
.y397{bottom:140.400000px;}
.y10b{bottom:144.012150px;}
.ya7{bottom:144.067800px;}
.y196{bottom:144.078750px;}
.y166{bottom:144.080400px;}
.y21f{bottom:144.082200px;}
.y24e{bottom:144.162300px;}
.y27b{bottom:144.171300px;}
.y1c2{bottom:144.178800px;}
.y351{bottom:144.420900px;}
.ydb{bottom:144.496050px;}
.y31d{bottom:144.515850px;}
.y70{bottom:144.654600px;}
.y2ec{bottom:144.757650px;}
.y384{bottom:145.211400px;}
.y1f2{bottom:145.316850px;}
.y138{bottom:153.006600px;}
.y2a8{bottom:153.171450px;}
.y396{bottom:156.600000px;}
.ya6{bottom:161.951700px;}
.y10a{bottom:162.018150px;}
.y195{bottom:162.118200px;}
.y165{bottom:162.120600px;}
.y21e{bottom:162.123300px;}
.y24d{bottom:162.243600px;}
.y1c1{bottom:162.267150px;}
.y350{bottom:162.630300px;}
.yda{bottom:162.744000px;}
.y31c{bottom:162.773850px;}
.y6f{bottom:162.981750px;}
.y2eb{bottom:163.136550px;}
.y383{bottom:163.817100px;}
.y1f1{bottom:163.974150px;}
.y137{bottom:171.013200px;}
.y27a{bottom:171.256050px;}
.y395{bottom:172.800000px;}
.y42{bottom:173.200650px;}
.ya5{bottom:179.835600px;}
.y109{bottom:180.024150px;}
.y194{bottom:180.157500px;}
.y164{bottom:180.160800px;}
.y21d{bottom:180.164400px;}
.y24c{bottom:180.324750px;}
.y1c0{bottom:180.355650px;}
.y34f{bottom:180.839700px;}
.yd9{bottom:180.992100px;}
.y31b{bottom:181.031700px;}
.y6e{bottom:181.309050px;}
.y2ea{bottom:181.515450px;}
.y382{bottom:182.422650px;}
.y1f0{bottom:182.631450px;}
.y394{bottom:189.000000px;}
.ya4{bottom:197.719500px;}
.y136{bottom:198.019800px;}
.y193{bottom:198.196950px;}
.y163{bottom:198.201150px;}
.y21c{bottom:198.205500px;}
.y2a7{bottom:198.256200px;}
.y41{bottom:198.400650px;}
.y24b{bottom:198.405900px;}
.y34e{bottom:199.049250px;}
.yd8{bottom:199.240050px;}
.y31a{bottom:199.289550px;}
.y6d{bottom:199.636350px;}
.y2e9{bottom:199.894350px;}
.y381{bottom:201.028350px;}
.y393{bottom:205.200000px;}
.y108{bottom:207.030150px;}
.y1bf{bottom:207.444000px;}
.y1ef{bottom:210.288900px;}
.y40{bottom:214.600650px;}
.ya3{bottom:215.603400px;}
.y135{bottom:216.026400px;}
.y192{bottom:216.236400px;}
.y162{bottom:216.241350px;}
.y21b{bottom:216.246600px;}
.y279{bottom:216.340650px;}
.y2a6{bottom:216.340800px;}
.y24a{bottom:216.487050px;}
.y34d{bottom:217.258650px;}
.yd7{bottom:217.488150px;}
.y319{bottom:217.547550px;}
.y6c{bottom:217.963650px;}
.y380{bottom:219.634050px;}
.y107{bottom:225.036300px;}
.y2e8{bottom:227.273100px;}
.y1ee{bottom:228.946350px;}
.y3f{bottom:230.800650px;}
.ya2{bottom:233.487300px;}
.y134{bottom:234.033000px;}
.y191{bottom:234.275700px;}
.y278{bottom:234.425400px;}
.y2a5{bottom:234.425550px;}
.y249{bottom:234.568200px;}
.y34c{bottom:235.468050px;}
.yd6{bottom:235.735950px;}
.y318{bottom:235.805550px;}
.y6b{bottom:236.290950px;}
.y37f{bottom:238.239750px;}
.y106{bottom:243.042450px;}
.y161{bottom:243.281550px;}
.y21a{bottom:243.287700px;}
.y1ed{bottom:247.603650px;}
.ya1{bottom:251.371050px;}
.y133{bottom:252.039600px;}
.y190{bottom:252.315150px;}
.y277{bottom:252.510000px;}
.y2a4{bottom:252.510150px;}
.y1be{bottom:252.532350px;}
.y248{bottom:252.649350px;}
.y34b{bottom:253.677450px;}
.yd5{bottom:253.984050px;}
.y317{bottom:254.063400px;}
.y6a{bottom:254.618250px;}
.y3e{bottom:256.000650px;}
.y37e{bottom:256.845300px;}
.y105{bottom:261.048450px;}
.y160{bottom:261.321750px;}
.y1ec{bottom:266.260950px;}
.ya0{bottom:269.255100px;}
.y132{bottom:270.046200px;}
.y219{bottom:270.328800px;}
.y18f{bottom:270.354600px;}
.y276{bottom:270.594600px;}
.y2a3{bottom:270.595050px;}
.y1bd{bottom:270.620700px;}
.y247{bottom:270.730650px;}
.y34a{bottom:271.887000px;}
.y3d{bottom:272.200650px;}
.yd4{bottom:272.232000px;}
.y316{bottom:272.321400px;}
.y69{bottom:272.945550px;}
.y37d{bottom:275.451000px;}
.y104{bottom:279.054450px;}
.y15f{bottom:279.362100px;}
.y1eb{bottom:284.918400px;}
.y2e7{bottom:285.252000px;}
.y9f{bottom:287.139000px;}
.y18e{bottom:288.393900px;}
.y3c{bottom:288.400650px;}
.y275{bottom:288.679350px;}
.y2a2{bottom:288.679650px;}
.y1bc{bottom:288.709200px;}
.y246{bottom:288.811800px;}
.y349{bottom:290.096400px;}
.yd3{bottom:290.480100px;}
.y315{bottom:290.579250px;}
.y68{bottom:291.272850px;}
.y37c{bottom:294.056700px;}
.y131{bottom:297.052800px;}
.y103{bottom:297.060450px;}
.y218{bottom:297.369900px;}
.y15e{bottom:297.402300px;}
.y1ea{bottom:303.575700px;}
.y2e6{bottom:303.630900px;}
.y3b{bottom:304.600650px;}
.y9e{bottom:305.022900px;}
.y18d{bottom:306.433350px;}
.y274{bottom:306.763950px;}
.y2a1{bottom:306.764400px;}
.y1bb{bottom:306.797550px;}
.y245{bottom:306.892950px;}
.y348{bottom:308.305800px;}
.yd2{bottom:308.728050px;}
.y314{bottom:308.837250px;}
.y67{bottom:309.600150px;}
.y37b{bottom:312.662400px;}
.y130{bottom:315.059250px;}
.y102{bottom:315.066600px;}
.y217{bottom:315.411000px;}
.y15d{bottom:315.442500px;}
.y3a{bottom:320.800650px;}
.y2e5{bottom:322.009800px;}
.y1e9{bottom:322.233150px;}
.y9d{bottom:322.906800px;}
.y18c{bottom:324.472800px;}
.y273{bottom:324.848700px;}
.y2a0{bottom:324.849000px;}
.y244{bottom:324.974100px;}
.y347{bottom:326.515350px;}
.yd1{bottom:326.976150px;}
.y313{bottom:327.095100px;}
.y66{bottom:327.927450px;}
.y37a{bottom:331.268100px;}
.y12f{bottom:333.065850px;}
.y101{bottom:333.072600px;}
.y1ba{bottom:333.885900px;}
.y2e4{bottom:340.388550px;}
.y9c{bottom:340.790700px;}
.y1e8{bottom:340.890450px;}
.y216{bottom:342.452250px;}
.y15c{bottom:342.482850px;}
.y18b{bottom:342.512100px;}
.y272{bottom:342.933300px;}
.y29f{bottom:342.933750px;}
.y243{bottom:343.055250px;}
.y346{bottom:344.724750px;}
.yd0{bottom:345.224100px;}
.y312{bottom:345.353100px;}
.y39{bottom:346.000650px;}
.y65{bottom:346.254750px;}
.y379{bottom:349.873650px;}
.y12e{bottom:351.072450px;}
.y100{bottom:351.078600px;}
.y9b{bottom:358.674600px;}
.y2e3{bottom:358.767450px;}
.y1e7{bottom:359.547900px;}
.y215{bottom:360.493350px;}
.y15b{bottom:360.523050px;}
.y18a{bottom:360.551550px;}
.y1b9{bottom:360.974250px;}
.y271{bottom:361.017900px;}
.y242{bottom:361.136550px;}
.y38{bottom:362.200650px;}
.y345{bottom:362.934150px;}
.ycf{bottom:363.472200px;}
.y311{bottom:363.610950px;}
.y64{bottom:364.582050px;}
.y378{bottom:368.479350px;}
.yff{bottom:369.084750px;}
.y29e{bottom:370.018500px;}
.y9a{bottom:376.558500px;}
.y12d{bottom:378.079050px;}
.y1e6{bottom:378.205200px;}
.y37{bottom:378.400650px;}
.y214{bottom:378.534450px;}
.y189{bottom:378.591000px;}
.y270{bottom:379.102650px;}
.y241{bottom:379.217700px;}
.y344{bottom:381.143700px;}
.yce{bottom:381.720150px;}
.y310{bottom:381.868950px;}
.y63{bottom:382.909350px;}
.y2e2{bottom:386.146350px;}
.y377{bottom:387.085050px;}
.yfe{bottom:387.090750px;}
.y1b8{bottom:388.062750px;}
.y29d{bottom:388.103250px;}
.y99{bottom:394.442250px;}
.y36{bottom:394.600650px;}
.y12c{bottom:396.085650px;}
.y213{bottom:396.575550px;}
.y1e5{bottom:396.862650px;}
.y26f{bottom:397.187250px;}
.y240{bottom:397.298850px;}
.y343{bottom:399.353100px;}
.ycd{bottom:399.968100px;}
.y30f{bottom:400.126950px;}
.y62{bottom:401.236500px;}
.y2e1{bottom:404.525250px;}
.yfd{bottom:405.096750px;}
.y15a{bottom:405.563250px;}
.y188{bottom:405.630300px;}
.y376{bottom:405.690750px;}
.y2b3{bottom:406.298850px;}
.y35{bottom:410.800650px;}
.y98{bottom:412.326300px;}
.y12b{bottom:414.092250px;}
.y212{bottom:414.616650px;}
.y1b7{bottom:415.151100px;}
.y29c{bottom:415.187850px;}
.y26e{bottom:415.272000px;}
.y2c3{bottom:415.380000px;}
.y342{bottom:417.562500px;}
.ycc{bottom:418.216200px;}
.y30e{bottom:418.384800px;}
.y61{bottom:419.563800px;}
.yfc{bottom:423.102900px;}
.y159{bottom:423.603450px;}
.y187{bottom:423.669750px;}
.y375{bottom:424.296450px;}
.y23f{bottom:424.380000px;}
.y1e4{bottom:424.519950px;}
.y34{bottom:427.000650px;}
.y97{bottom:430.210200px;}
.y2e0{bottom:431.904000px;}
.y12a{bottom:432.098850px;}
.y211{bottom:432.657750px;}
.y1b6{bottom:433.239450px;}
.y26d{bottom:433.356600px;}
.y2b2{bottom:433.380000px;}
.y2c2{bottom:433.461150px;}
.y341{bottom:435.771900px;}
.ycb{bottom:436.464150px;}
.y30d{bottom:436.642800px;}
.y60{bottom:437.891100px;}
.yfb{bottom:441.108900px;}
.y158{bottom:441.643800px;}
.y186{bottom:441.709050px;}
.y29b{bottom:442.272600px;}
.y374{bottom:442.902000px;}
.y1e3{bottom:443.177400px;}
.y33{bottom:443.200650px;}
.y96{bottom:448.093950px;}
.y129{bottom:450.105450px;}
.y210{bottom:450.698850px;}
.y1b5{bottom:451.327950px;}
.y26c{bottom:451.441200px;}
.y23e{bottom:451.461150px;}
.y2c1{bottom:451.542300px;}
.y340{bottom:453.981450px;}
.yca{bottom:454.712100px;}
.y30c{bottom:454.900650px;}
.y5f{bottom:456.218400px;}
.yfa{bottom:459.114900px;}
.y2df{bottom:459.282900px;}
.y32{bottom:459.400650px;}
.y157{bottom:459.684000px;}
.y185{bottom:459.748500px;}
.y2b1{bottom:460.461150px;}
.y373{bottom:461.507700px;}
.y95{bottom:465.977850px;}
.y128{bottom:468.112050px;}
.y20f{bottom:468.739950px;}
.y29a{bottom:469.357350px;}
.y1b4{bottom:469.416300px;}
.y26b{bottom:469.525950px;}
.y33f{bottom:472.190850px;}
.yc9{bottom:472.960200px;}
.y30b{bottom:473.158650px;}
.y5e{bottom:474.545700px;}
.y31{bottom:475.600650px;}
.yf9{bottom:477.121050px;}
.y156{bottom:477.724200px;}
.y23d{bottom:478.542300px;}
.y2c0{bottom:478.623600px;}
.y372{bottom:480.113400px;}
.y94{bottom:483.861900px;}
.y127{bottom:486.118650px;}
.y2de{bottom:486.661800px;}
.y184{bottom:486.787950px;}
.y299{bottom:487.441950px;}
.y1b3{bottom:487.504650px;}
.y26a{bottom:487.610550px;}
.y1e2{bottom:488.834700px;}
.y33e{bottom:490.400250px;}
.yc8{bottom:491.208150px;}
.y30a{bottom:491.416500px;}
.y30{bottom:491.800650px;}
.y5d{bottom:492.873000px;}
.yf8{bottom:495.127050px;}
.y155{bottom:495.764400px;}
.y20e{bottom:495.781050px;}
.y2bf{bottom:496.704750px;}
.y371{bottom:498.719100px;}
.y93{bottom:501.745650px;}
.y126{bottom:504.125250px;}
.y183{bottom:504.827250px;}
.y2dd{bottom:505.040700px;}
.y298{bottom:505.526700px;}
.y1b2{bottom:505.593000px;}
.y23c{bottom:505.623600px;}
.y269{bottom:505.695300px;}
.y1e1{bottom:507.492150px;}
.y2f{bottom:508.000650px;}
.y33d{bottom:508.609800px;}
.yc7{bottom:509.456250px;}
.y309{bottom:509.674500px;}
.y5c{bottom:511.200300px;}
.yf7{bottom:513.133050px;}
.y154{bottom:513.804750px;}
.y20d{bottom:513.822150px;}
.y2be{bottom:514.785900px;}
.y370{bottom:517.324650px;}
.y92{bottom:519.629550px;}
.y125{bottom:522.131850px;}
.y2dc{bottom:523.419600px;}
.y297{bottom:523.611450px;}
.y1b1{bottom:523.681350px;}
.y23b{bottom:523.704750px;}
.y2e{bottom:524.200650px;}
.y1e0{bottom:526.149450px;}
.y33c{bottom:526.819200px;}
.yc6{bottom:527.704200px;}
.y308{bottom:527.932350px;}
.y5b{bottom:529.527600px;}
.yf6{bottom:531.139200px;}
.y153{bottom:531.844950px;}
.y20c{bottom:531.863250px;}
.y268{bottom:532.779900px;}
.y2bd{bottom:532.867050px;}
.y36f{bottom:535.930350px;}
.y91{bottom:537.513450px;}
.y124{bottom:540.138450px;}
.y296{bottom:541.696200px;}
.y1b0{bottom:541.769850px;}
.y23a{bottom:541.785900px;}
.y2db{bottom:541.798350px;}
.y1df{bottom:544.806900px;}
.y33b{bottom:545.028600px;}
.yc5{bottom:545.952150px;}
.y307{bottom:546.190350px;}
.y5a{bottom:547.854750px;}
.yf5{bottom:549.145200px;}
.y182{bottom:549.866700px;}
.y152{bottom:549.885150px;}
.y20b{bottom:549.904350px;}
.y2bc{bottom:550.948200px;}
.y36e{bottom:554.536050px;}
.y90{bottom:555.397350px;}
.y123{bottom:558.144900px;}
.y2d{bottom:558.400650px;}
.y295{bottom:559.780800px;}
.y1af{bottom:559.858200px;}
.y267{bottom:559.864500px;}
.y239{bottom:559.867050px;}
.y2da{bottom:560.177250px;}
.y33a{bottom:563.238150px;}
.y1de{bottom:563.464200px;}
.yc4{bottom:564.200250px;}
.y306{bottom:564.448200px;}
.y59{bottom:566.182050px;}
.yf4{bottom:567.151200px;}
.y181{bottom:567.906150px;}
.y151{bottom:567.925350px;}
.y20a{bottom:567.945450px;}
.y2bb{bottom:569.029350px;}
.y36d{bottom:573.141750px;}
.y8f{bottom:573.281250px;}
.y2c{bottom:574.600650px;}
.y122{bottom:576.151500px;}
.y1ae{bottom:577.946550px;}
.y238{bottom:577.948200px;}
.y2d9{bottom:578.556150px;}
.y339{bottom:581.447550px;}
.y1dd{bottom:582.121650px;}
.yc3{bottom:582.448200px;}
.y305{bottom:582.706200px;}
.y58{bottom:584.509350px;}
.yf3{bottom:585.157350px;}
.y180{bottom:585.945450px;}
.y150{bottom:585.965700px;}
.y209{bottom:585.986700px;}
.y294{bottom:586.865550px;}
.y266{bottom:586.949250px;}
.y2ba{bottom:587.110650px;}
.y2b{bottom:590.800650px;}
.y8e{bottom:591.165150px;}
.y36c{bottom:591.747450px;}
.y121{bottom:594.158100px;}
.y237{bottom:596.029350px;}
.y2d8{bottom:596.934900px;}
.y338{bottom:599.656950px;}
.yc2{bottom:600.696300px;}
.y1dc{bottom:600.778950px;}
.y304{bottom:600.964050px;}
.y57{bottom:602.836650px;}
.yf2{bottom:603.163350px;}
.y17f{bottom:603.984900px;}
.y14f{bottom:604.005900px;}
.y208{bottom:604.027800px;}
.y293{bottom:604.950300px;}
.y265{bottom:605.033850px;}
.y1ad{bottom:605.035050px;}
.y2b9{bottom:605.191800px;}
.y2a{bottom:607.000650px;}
.y8d{bottom:609.049050px;}
.y36b{bottom:610.353150px;}
.y120{bottom:612.164700px;}
.y236{bottom:614.110650px;}
.y2d7{bottom:615.313800px;}
.y337{bottom:617.866350px;}
.yc1{bottom:618.944250px;}
.y303{bottom:619.222050px;}
.y1db{bottom:619.436400px;}
.yf1{bottom:621.169350px;}
.y14e{bottom:622.046100px;}
.y207{bottom:622.068900px;}
.y292{bottom:623.034900px;}
.y1ac{bottom:623.123400px;}
.y29{bottom:623.200650px;}
.y2b8{bottom:623.272950px;}
.y8c{bottom:626.932950px;}
.y36a{bottom:628.958700px;}
.y56{bottom:630.163950px;}
.y17e{bottom:631.024350px;}
.y264{bottom:632.118600px;}
.y235{bottom:632.191800px;}
.y2d6{bottom:633.692700px;}
.y336{bottom:636.075900px;}
.yc0{bottom:637.192350px;}
.y302{bottom:637.479900px;}
.y1da{bottom:638.093700px;}
.y11f{bottom:639.171300px;}
.yf0{bottom:639.175500px;}
.y14d{bottom:640.086300px;}
.y206{bottom:640.110000px;}
.y291{bottom:641.119650px;}
.y1ab{bottom:641.211750px;}
.y2b7{bottom:641.354100px;}
.y8b{bottom:644.816850px;}
.y369{bottom:647.564400px;}
.y263{bottom:650.203200px;}
.y234{bottom:650.272950px;}
.y2d5{bottom:652.071600px;}
.y335{bottom:654.285300px;}
.ybf{bottom:655.440300px;}
.y301{bottom:655.737900px;}
.y1d9{bottom:656.751000px;}
.yef{bottom:657.181500px;}
.y28{bottom:657.400650px;}
.y17d{bottom:658.063800px;}
.y290{bottom:659.204400px;}
.y1aa{bottom:659.300100px;}
.y8a{bottom:662.700750px;}
.y368{bottom:666.170100px;}
.y14c{bottom:667.126650px;}
.y205{bottom:667.151100px;}
.y262{bottom:668.287950px;}
.y233{bottom:668.354100px;}
.y2b6{bottom:668.435250px;}
.y334{bottom:672.494850px;}
.y27{bottom:673.600650px;}
.ybe{bottom:673.688250px;}
.y300{bottom:673.995750px;}
.yee{bottom:675.187650px;}
.y1d8{bottom:675.408450px;}
.y28f{bottom:677.289150px;}
.ya{bottom:679.255050px;}
.y2d4{bottom:679.450350px;}
.y89{bottom:680.584650px;}
.y367{bottom:684.775800px;}
.y17c{bottom:685.103100px;}
.y204{bottom:685.192200px;}
.y261{bottom:686.372550px;}
.y1a9{bottom:686.388450px;}
.y232{bottom:686.435250px;}
.y2b5{bottom:686.516550px;}
.y55{bottom:688.091250px;}
.y26{bottom:689.800650px;}
.y333{bottom:690.704250px;}
.ybd{bottom:691.936350px;}
.y2ff{bottom:692.253750px;}
.y11e{bottom:693.177900px;}
.yed{bottom:693.193650px;}
.y14b{bottom:694.166850px;}
.y28e{bottom:695.373750px;}
.y2d3{bottom:697.829250px;}
.y88{bottom:698.468550px;}
.y1d7{bottom:703.065750px;}
.y366{bottom:703.381500px;}
.y260{bottom:704.457300px;}
.y1a8{bottom:704.476950px;}
.y2b0{bottom:704.516550px;}
.y25{bottom:706.000650px;}
.y332{bottom:708.913650px;}
.ybc{bottom:710.184300px;}
.y2fe{bottom:710.511600px;}
.yec{bottom:711.199650px;}
.y17b{bottom:712.142550px;}
.y28d{bottom:713.458500px;}
.y231{bottom:713.516550px;}
.y54{bottom:713.618550px;}
.y2d2{bottom:716.208150px;}
.y87{bottom:716.352450px;}
.y14a{bottom:721.207050px;}
.y1d6{bottom:721.723200px;}
.y365{bottom:721.987050px;}
.y24{bottom:722.200650px;}
.y9{bottom:723.355200px;}
.y331{bottom:727.123050px;}
.ybb{bottom:728.432400px;}
.y2fd{bottom:728.769600px;}
.yeb{bottom:729.205650px;}
.y53{bottom:730.145850px;}
.y17a{bottom:730.182000px;}
.y203{bottom:730.233300px;}
.y25f{bottom:731.541900px;}
.y230{bottom:731.597700px;}
.y86{bottom:734.236350px;}
.y2d1{bottom:734.587050px;}
.y23{bottom:738.400650px;}
.y8{bottom:739.555050px;}
.y1d5{bottom:740.380500px;}
.y28c{bottom:740.543250px;}
.y364{bottom:740.592750px;}
.y330{bottom:745.332600px;}
.y52{bottom:746.673000px;}
.yba{bottom:746.680350px;}
.y2fc{bottom:747.027600px;}
.yea{bottom:747.211800px;}
.y179{bottom:748.221300px;}
.y149{bottom:748.247250px;}
.y202{bottom:748.274400px;}
.y1a7{bottom:749.565300px;}
.y25e{bottom:749.626500px;}
.y22f{bottom:749.678850px;}
.y11d{bottom:750.784500px;}
.y85{bottom:752.120250px;}
.y2d0{bottom:752.965800px;}
.y22{bottom:754.600650px;}
.y7{bottom:755.755050px;}
.y28b{bottom:758.628000px;}
.y1d4{bottom:759.037950px;}
.y363{bottom:759.198450px;}
.y51{bottom:763.200300px;}
.y32f{bottom:763.542000px;}
.yb9{bottom:764.928300px;}
.ye9{bottom:765.217800px;}
.y2fb{bottom:765.285450px;}
.y178{bottom:766.260750px;}
.y148{bottom:766.287600px;}
.y201{bottom:766.315500px;}
.y1a6{bottom:767.653800px;}
.y25d{bottom:767.711250px;}
.y22e{bottom:767.760000px;}
.y11c{bottom:768.790950px;}
.y84{bottom:770.004150px;}
.y21{bottom:770.800650px;}
.y2cf{bottom:771.344850px;}
.y1d3{bottom:777.695250px;}
.y362{bottom:777.804150px;}
.y50{bottom:779.727750px;}
.y32e{bottom:781.751400px;}
.yb8{bottom:783.176400px;}
.ye8{bottom:783.223800px;}
.y2fa{bottom:783.543300px;}
.y177{bottom:784.300200px;}
.y147{bottom:784.327800px;}
.y200{bottom:784.356600px;}
.y392{bottom:784.891050px;}
.y1a5{bottom:785.742150px;}
.y25c{bottom:785.795850px;}
.y22d{bottom:785.841150px;}
.y11b{bottom:786.797550px;}
.y20{bottom:787.000650px;}
.y83{bottom:787.888050px;}
.y4f{bottom:796.255050px;}
.y1d2{bottom:796.352700px;}
.y361{bottom:796.409700px;}
.y2ce{bottom:798.723600px;}
.y32d{bottom:799.960950px;}
.ye7{bottom:801.229950px;}
.yb7{bottom:801.424350px;}
.y176{bottom:802.339500px;}
.y146{bottom:802.368000px;}
.y391{bottom:802.891050px;}
.y1f{bottom:803.200650px;}
.y28a{bottom:803.712600px;}
.y1a4{bottom:803.830500px;}
.y25b{bottom:803.880450px;}
.y22c{bottom:803.922300px;}
.y6{bottom:804.355200px;}
.y11a{bottom:804.804150px;}
.y82{bottom:805.771950px;}
.y2f9{bottom:810.801300px;}
.y1ff{bottom:811.397700px;}
.y4e{bottom:812.782350px;}
.y1d1{bottom:815.010000px;}
.y360{bottom:815.015400px;}
.y2cd{bottom:817.102500px;}
.y32c{bottom:818.170350px;}
.ye6{bottom:819.235950px;}
.y1e{bottom:819.400650px;}
.yb6{bottom:819.672300px;}
.y175{bottom:820.378950px;}
.y145{bottom:820.408200px;}
.y289{bottom:821.797350px;}
.y1a3{bottom:821.918850px;}
.y25a{bottom:821.965200px;}
.y22b{bottom:822.003600px;}
.y119{bottom:822.810750px;}
.y81{bottom:823.655850px;}
.y4d{bottom:829.309500px;}
.y1fe{bottom:829.438800px;}
.y5{bottom:829.555050px;}
.y35f{bottom:833.621100px;}
.y1d0{bottom:833.667450px;}
.y1d{bottom:835.600650px;}
.y32b{bottom:836.379750px;}
.ye5{bottom:837.242100px;}
.yb5{bottom:837.920400px;}
.y174{bottom:838.418400px;}
.y144{bottom:838.448550px;}
.y288{bottom:839.882100px;}
.y1a2{bottom:840.007350px;}
.y259{bottom:840.049800px;}
.y22a{bottom:840.084750px;}
.y118{bottom:840.817350px;}
.y80{bottom:841.539750px;}
.y4c{bottom:845.836800px;}
.y1c{bottom:851.800800px;}
.y35e{bottom:852.226800px;}
.y32a{bottom:854.589150px;}
.y2f8{bottom:856.059300px;}
.yb4{bottom:856.168350px;}
.y173{bottom:856.457700px;}
.y1fd{bottom:856.480050px;}
.y143{bottom:856.488750px;}
.y390{bottom:856.891050px;}
.y287{bottom:857.966700px;}
.y258{bottom:858.134550px;}
.y229{bottom:858.165900px;}
.y117{bottom:858.823950px;}
.y7f{bottom:859.423650px;}
.y1cf{bottom:861.324900px;}
.y4b{bottom:862.364100px;}
.y2cc{bottom:862.481250px;}
.ye4{bottom:864.248100px;}
.y1a1{bottom:867.095700px;}
.y35d{bottom:870.832500px;}
.y329{bottom:872.798700px;}
.y2f7{bottom:874.317150px;}
.yb3{bottom:874.416450px;}
.y172{bottom:874.497000px;}
.y142{bottom:874.528950px;}
.y38f{bottom:874.891050px;}
.y286{bottom:876.051450px;}
.y257{bottom:876.219150px;}
.y228{bottom:876.247050px;}
.y116{bottom:876.830550px;}
.y7e{bottom:877.307550px;}
.y4a{bottom:878.891400px;}
.y1ce{bottom:879.982200px;}
.y2cb{bottom:880.860150px;}
.ye3{bottom:882.254100px;}
.y1fc{bottom:883.521000px;}
.y2af{bottom:885.247050px;}
.y1b{bottom:886.000800px;}
.y35c{bottom:889.438050px;}
.y4{bottom:890.436300px;}
.y328{bottom:891.008100px;}
.y171{bottom:892.536600px;}
.y141{bottom:892.569150px;}
.y2f6{bottom:892.575000px;}
.yb2{bottom:892.664400px;}
.y38e{bottom:892.891050px;}
.y285{bottom:894.136200px;}
.y1a0{bottom:894.184050px;}
.y256{bottom:894.303900px;}
.y227{bottom:894.328200px;}
.y115{bottom:894.837150px;}
.y7d{bottom:895.191450px;}
.y2ca{bottom:899.239050px;}
.ye2{bottom:900.260250px;}
.y1fb{bottom:901.562250px;}
.y2ae{bottom:903.328200px;}
.y1a{bottom:904.000800px;}
.y1cd{bottom:907.639500px;}
.y35b{bottom:908.043750px;}
.y327{bottom:909.217500px;}
.y170{bottom:910.575900px;}
.y140{bottom:910.609500px;}
.y2f5{bottom:910.833000px;}
.y38d{bottom:910.891050px;}
.yb1{bottom:910.912500px;}
.y284{bottom:912.220800px;}
.y226{bottom:912.409350px;}
.y114{bottom:912.843750px;}
.y7c{bottom:913.075350px;}
.y2c9{bottom:917.617950px;}
.ye1{bottom:918.266250px;}
.y19f{bottom:921.272400px;}
.y255{bottom:921.388500px;}
.y19{bottom:922.000800px;}
.y49{bottom:922.418700px;}
.y1cc{bottom:926.296800px;}
.y35a{bottom:926.649450px;}
.y326{bottom:927.427050px;}
.y1fa{bottom:928.603350px;}
.y16f{bottom:928.615350px;}
.y38c{bottom:928.891050px;}
.y2f4{bottom:929.091000px;}
.yb0{bottom:929.160450px;}
.y283{bottom:930.305550px;}
.y225{bottom:930.490650px;}
.y113{bottom:930.850350px;}
.y7b{bottom:930.959250px;}
.y2c8{bottom:935.996850px;}
.ye0{bottom:936.272250px;}
.y13f{bottom:937.649700px;}
.y48{bottom:938.946000px;}
.y254{bottom:939.473100px;}
.y2b4{bottom:939.490650px;}
.y18{bottom:940.000800px;}
.y1cb{bottom:944.954250px;}
.y359{bottom:945.255150px;}
.y325{bottom:945.636450px;}
.y1f9{bottom:946.644450px;}
.y16e{bottom:946.654650px;}
.y38b{bottom:946.891050px;}
.y2f3{bottom:947.348850px;}
.yaf{bottom:947.408400px;}
.y19e{bottom:948.360750px;}
.y282{bottom:948.390300px;}
.y2ad{bottom:948.409350px;}
.y224{bottom:948.571800px;}
.y7a{bottom:948.843150px;}
.y112{bottom:948.856950px;}
.ye{bottom:954.221850px;}
.ydf{bottom:954.278250px;}
.y47{bottom:955.473300px;}
.y13e{bottom:955.689900px;}
.y17{bottom:958.000800px;}
.y2c7{bottom:963.375600px;}
.y1ca{bottom:963.611700px;}
.y324{bottom:963.846000px;}
.y358{bottom:963.860850px;}
.y1f8{bottom:964.685550px;}
.y16d{bottom:964.694100px;}
.y38a{bottom:964.891050px;}
.y3{bottom:965.365350px;}
.y2f2{bottom:965.606850px;}
.yae{bottom:965.656350px;}
.y19d{bottom:966.449250px;}
.y281{bottom:966.475050px;}
.y2ac{bottom:966.490650px;}
.y79{bottom:966.727050px;}
.y111{bottom:966.863550px;}
.y46{bottom:972.000600px;}
.y13d{bottom:973.730100px;}
.y223{bottom:975.652950px;}
.yd{bottom:975.822000px;}
.yde{bottom:981.284400px;}
.y2c6{bottom:981.754500px;}
.y323{bottom:982.055400px;}
.y1c9{bottom:982.269000px;}
.y357{bottom:982.466550px;}
.y1f7{bottom:982.726650px;}
.y16c{bottom:982.733550px;}
.y389{bottom:982.891050px;}
.y2f1{bottom:983.864850px;}
.yad{bottom:983.904450px;}
.y19c{bottom:984.537600px;}
.y253{bottom:984.557850px;}
.y280{bottom:984.559650px;}
.y2ab{bottom:984.571800px;}
.y78{bottom:984.760950px;}
.y110{bottom:984.870150px;}
.y13c{bottom:991.770450px;}
.y222{bottom:993.734100px;}
.y16{bottom:994.000800px;}
.y322{bottom:1000.264950px;}
.yc{bottom:1000.701450px;}
.y1f6{bottom:1000.767750px;}
.y16b{bottom:1000.772850px;}
.y388{bottom:1000.891050px;}
.y1c8{bottom:1000.926300px;}
.y356{bottom:1001.072100px;}
.y2f0{bottom:1002.122700px;}
.yac{bottom:1002.152400px;}
.y19b{bottom:1002.626100px;}
.y252{bottom:1002.642450px;}
.y27f{bottom:1002.644400px;}
.y2aa{bottom:1002.652950px;}
.y77{bottom:1002.794700px;}
.y10f{bottom:1002.876750px;}
.y2c5{bottom:1009.133400px;}
.y13b{bottom:1009.810650px;}
.y15{bottom:1013.200800px;}
.y321{bottom:1018.474350px;}
.y1f5{bottom:1018.808850px;}
.y16a{bottom:1018.812300px;}
.y387{bottom:1018.891050px;}
.y1c7{bottom:1019.583750px;}
.y355{bottom:1019.677800px;}
.y2ef{bottom:1020.380550px;}
.yab{bottom:1020.400500px;}
.y19a{bottom:1020.714450px;}
.y251{bottom:1020.727050px;}
.y27e{bottom:1020.729150px;}
.y2a9{bottom:1020.734100px;}
.y76{bottom:1020.828750px;}
.y10e{bottom:1020.883350px;}
.y45{bottom:1020.927750px;}
.yb{bottom:1022.529750px;}
.y14{bottom:1034.800800px;}
.y2c4{bottom:1036.512300px;}
.y320{bottom:1036.683750px;}
.y1f4{bottom:1036.849950px;}
.y13a{bottom:1036.850850px;}
.y169{bottom:1036.851750px;}
.y386{bottom:1036.891050px;}
.y1c6{bottom:1038.241200px;}
.y354{bottom:1038.283500px;}
.y2ee{bottom:1038.638550px;}
.yaa{bottom:1038.648450px;}
.y199{bottom:1038.802800px;}
.y250{bottom:1038.811800px;}
.y27d{bottom:1038.813750px;}
.y221{bottom:1038.815250px;}
.y75{bottom:1038.862650px;}
.y10d{bottom:1038.889950px;}
.ydd{bottom:1038.890400px;}
.yf{bottom:1044.366600px;}
.y44{bottom:1046.455050px;}
.y139{bottom:1054.891050px;}
.y31f{bottom:1054.893150px;}
.y2{bottom:1055.365350px;}
.y13{bottom:1056.400800px;}
.y353{bottom:1056.889200px;}
.y198{bottom:1056.891150px;}
.y74{bottom:1056.896550px;}
.y1c5{bottom:1056.898500px;}
.y10{bottom:1066.194750px;}
.y12{bottom:1078.000800px;}
.y11{bottom:1088.022900px;}
.y73{bottom:1097.389200px;}
.ya9{bottom:1098.064200px;}
.y43{bottom:1105.653150px;}
.hc{height:39.999023px;}
.ha{height:40.025391px;}
.hd{height:44.414062px;}
.he{height:44.443359px;}
.h8{height:44.472656px;}
.hb{height:48.919922px;}
.h6{height:52.813477px;}
.h7{height:53.367188px;}
.h1{height:53.437500px;}
.h9{height:58.681641px;}
.h5{height:70.417969px;}
.h3{height:76.148438px;}
.h4{height:82.154297px;}
.h2{height:319.781250px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.xa{left:-519.750000px;}
.x0{left:0.000000px;}
.xb{left:108.000000px;}
.x2{left:109.725000px;}
.xc{left:130.500000px;}
.x11{left:135.000000px;}
.xf{left:175.500000px;}
.x4{left:197.153700px;}
.x1{left:227.728800px;}
.xd{left:233.850000px;}
.x5{left:258.739200px;}
.x9{left:346.904250px;}
.x7{left:388.496550px;}
.x6{left:394.491450px;}
.x8{left:397.443900px;}
.x3{left:427.517550px;}
.x10{left:550.386300px;}
.xe{left:558.999600px;}
@media print{
.v2{vertical-align:-4.533333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.418133pt;}
.v3{vertical-align:17.760000pt;}
.ls41{letter-spacing:-0.960000pt;}
.ls42{letter-spacing:-0.853333pt;}
.ls32{letter-spacing:-0.800000pt;}
.ls15{letter-spacing:-0.746667pt;}
.ls1f{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.672000pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls4e{letter-spacing:-0.624000pt;}
.ls1e{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.533333pt;}
.ls4a{letter-spacing:-0.528000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.432000pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.373333pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls4d{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:-0.224000pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.106667pt;}
.ls37{letter-spacing:-0.053333pt;}
.ls4b{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.005333pt;}
.ls38{letter-spacing:0.005867pt;}
.ls39{letter-spacing:0.008533pt;}
.ls20{letter-spacing:0.053333pt;}
.ls24{letter-spacing:0.083733pt;}
.ls21{letter-spacing:0.084267pt;}
.ls22{letter-spacing:0.087467pt;}
.ls4f{letter-spacing:0.106133pt;}
.ls23{letter-spacing:0.106667pt;}
.ls3a{letter-spacing:0.266667pt;}
.ls3d{letter-spacing:0.285333pt;}
.ls3b{letter-spacing:0.295467pt;}
.ls3e{letter-spacing:0.296000pt;}
.ls2e{letter-spacing:0.298133pt;}
.ls3c{letter-spacing:0.298667pt;}
.ls3f{letter-spacing:0.299200pt;}
.ls2f{letter-spacing:0.300800pt;}
.ls30{letter-spacing:0.301867pt;}
.ls2d{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.368000pt;}
.ls31{letter-spacing:0.368533pt;}
.ls25{letter-spacing:0.373333pt;}
.ls27{letter-spacing:0.378667pt;}
.ls29{letter-spacing:0.379200pt;}
.ls2a{letter-spacing:0.381333pt;}
.ls26{letter-spacing:0.381867pt;}
.ls28{letter-spacing:0.382400pt;}
.ls36{letter-spacing:0.426667pt;}
.ls43{letter-spacing:0.506133pt;}
.ls35{letter-spacing:0.693333pt;}
.ls34{letter-spacing:0.746667pt;}
.ls40{letter-spacing:1.152000pt;}
.ls18{letter-spacing:1.226667pt;}
.ls1a{letter-spacing:1.236800pt;}
.ls1b{letter-spacing:1.239467pt;}
.ls1c{letter-spacing:1.240000pt;}
.ls19{letter-spacing:1.280000pt;}
.lsc{letter-spacing:1.412800pt;}
.ls33{letter-spacing:1.600000pt;}
.lse{letter-spacing:2.481600pt;}
.ls4c{letter-spacing:2.980800pt;}
.ls47{letter-spacing:3.129067pt;}
.ls46{letter-spacing:4.562133pt;}
.ls48{letter-spacing:4.933867pt;}
.ls45{letter-spacing:5.325333pt;}
.lsd{letter-spacing:6.173867pt;}
.ls49{letter-spacing:7.288000pt;}
.ls44{letter-spacing:7.483733pt;}
.lsb{letter-spacing:9.275733pt;}
.ls17{letter-spacing:14.506667pt;}
.ws2{word-spacing:-112.128000pt;}
.ws3{word-spacing:-78.489600pt;}
.wsc3{word-spacing:-22.773333pt;}
.wsc1{word-spacing:-22.080000pt;}
.ws91{word-spacing:-20.160000pt;}
.wsbe{word-spacing:-17.920000pt;}
.ws0{word-spacing:-17.472000pt;}
.ws92{word-spacing:-16.586667pt;}
.wsa8{word-spacing:-15.680000pt;}
.wsb2{word-spacing:-15.626667pt;}
.wsa6{word-spacing:-15.360000pt;}
.ws36{word-spacing:-15.306667pt;}
.wsc8{word-spacing:-15.253333pt;}
.wsa9{word-spacing:-15.200000pt;}
.ws86{word-spacing:-15.146667pt;}
.wsa1{word-spacing:-15.040000pt;}
.wsa5{word-spacing:-14.986667pt;}
.wsa7{word-spacing:-14.933333pt;}
.wsd5{word-spacing:-14.880000pt;}
.ws35{word-spacing:-14.826667pt;}
.wsc7{word-spacing:-14.773333pt;}
.wsd1{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.666667pt;}
.wseb{word-spacing:-14.613333pt;}
.wsa2{word-spacing:-14.560000pt;}
.ws39{word-spacing:-14.506667pt;}
.ws16{word-spacing:-14.453333pt;}
.ws17{word-spacing:-14.400000pt;}
.ws15{word-spacing:-14.346667pt;}
.wsa4{word-spacing:-14.293333pt;}
.wse4{word-spacing:-14.240000pt;}
.wsa3{word-spacing:-14.186667pt;}
.wsb3{word-spacing:-14.026667pt;}
.ws12{word-spacing:-13.776000pt;}
.ws101{word-spacing:-13.728000pt;}
.wsf4{word-spacing:-13.632000pt;}
.ws111{word-spacing:-13.488000pt;}
.ws13{word-spacing:-13.344000pt;}
.ws11c{word-spacing:-13.296000pt;}
.ws5{word-spacing:-13.200000pt;}
.ws116{word-spacing:-13.104000pt;}
.ws110{word-spacing:-13.056000pt;}
.ws11b{word-spacing:-12.864000pt;}
.ws115{word-spacing:-12.720000pt;}
.ws1{word-spacing:-12.230400pt;}
.ws37{word-spacing:-10.714667pt;}
.ws14{word-spacing:-8.643947pt;}
.wscc{word-spacing:-3.840000pt;}
.wsec{word-spacing:-3.786667pt;}
.ws46{word-spacing:-3.733333pt;}
.ws23{word-spacing:-3.680000pt;}
.ws4e{word-spacing:-3.573333pt;}
.wsa0{word-spacing:-3.520000pt;}
.wsd8{word-spacing:-3.466667pt;}
.ws8{word-spacing:-3.456000pt;}
.ws117{word-spacing:-3.408000pt;}
.wsb{word-spacing:-3.360000pt;}
.ws9{word-spacing:-3.312000pt;}
.ws107{word-spacing:-3.264000pt;}
.wsbb{word-spacing:-3.253333pt;}
.ws8b{word-spacing:-3.200000pt;}
.ws108{word-spacing:-3.168000pt;}
.ws4b{word-spacing:-3.146667pt;}
.ws69{word-spacing:-3.093333pt;}
.ws2f{word-spacing:-3.040000pt;}
.wsaf{word-spacing:-2.986667pt;}
.ws10d{word-spacing:-2.976000pt;}
.ws28{word-spacing:-2.933333pt;}
.ws2c{word-spacing:-2.880000pt;}
.ws6b{word-spacing:-2.826667pt;}
.ws71{word-spacing:-2.773333pt;}
.ws72{word-spacing:-2.720000pt;}
.ws58{word-spacing:-2.666667pt;}
.wsea{word-spacing:-2.613333pt;}
.wsd0{word-spacing:-2.560000pt;}
.ws99{word-spacing:-2.506667pt;}
.wsd3{word-spacing:-2.453333pt;}
.ws3a{word-spacing:-2.400000pt;}
.ws10f{word-spacing:-2.352000pt;}
.ws5f{word-spacing:-2.346667pt;}
.ws30{word-spacing:-2.293333pt;}
.ws102{word-spacing:-2.256000pt;}
.ws3b{word-spacing:-2.240000pt;}
.ws44{word-spacing:-2.186667pt;}
.ws103{word-spacing:-2.160000pt;}
.ws7b{word-spacing:-2.133333pt;}
.wsfc{word-spacing:-2.112000pt;}
.ws42{word-spacing:-2.080000pt;}
.ws2d{word-spacing:-2.026667pt;}
.ws6f{word-spacing:-1.973333pt;}
.wsff{word-spacing:-1.968000pt;}
.ws57{word-spacing:-1.920000pt;}
.wsfb{word-spacing:-1.872000pt;}
.ws5d{word-spacing:-1.866667pt;}
.ws5e{word-spacing:-1.813333pt;}
.ws45{word-spacing:-1.760000pt;}
.ws4d{word-spacing:-1.653333pt;}
.ws6c{word-spacing:-1.600000pt;}
.ws70{word-spacing:-1.546667pt;}
.ws119{word-spacing:-1.536000pt;}
.ws40{word-spacing:-1.493333pt;}
.ws8e{word-spacing:-1.440000pt;}
.ws47{word-spacing:-1.386667pt;}
.ws61{word-spacing:-1.333333pt;}
.wsbc{word-spacing:-1.280000pt;}
.ws48{word-spacing:-1.226667pt;}
.wse2{word-spacing:-1.173333pt;}
.ws4a{word-spacing:-1.120000pt;}
.ws68{word-spacing:-1.066667pt;}
.wsac{word-spacing:-1.013333pt;}
.ws63{word-spacing:-0.960000pt;}
.ws7a{word-spacing:-0.906667pt;}
.ws10{word-spacing:-0.864000pt;}
.ws34{word-spacing:-0.853333pt;}
.wsbf{word-spacing:-0.800000pt;}
.ws1a{word-spacing:-0.768000pt;}
.ws60{word-spacing:-0.746667pt;}
.ws10c{word-spacing:-0.720000pt;}
.wsab{word-spacing:-0.693333pt;}
.ws50{word-spacing:-0.640000pt;}
.ws96{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.576000pt;}
.wsb6{word-spacing:-0.533333pt;}
.wsca{word-spacing:-0.426667pt;}
.ws114{word-spacing:-0.384000pt;}
.ws3c{word-spacing:-0.373333pt;}
.wsf7{word-spacing:-0.336000pt;}
.ws95{word-spacing:-0.320000pt;}
.wsb5{word-spacing:-0.266667pt;}
.ws1d{word-spacing:-0.240000pt;}
.wsaa{word-spacing:-0.213333pt;}
.wsf8{word-spacing:-0.192000pt;}
.ws81{word-spacing:-0.160000pt;}
.ws100{word-spacing:-0.144000pt;}
.wsc9{word-spacing:-0.106667pt;}
.ws38{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws51{word-spacing:0.053333pt;}
.ws10e{word-spacing:0.096000pt;}
.ws27{word-spacing:0.106667pt;}
.ws19{word-spacing:0.144000pt;}
.ws24{word-spacing:0.160000pt;}
.ws22{word-spacing:0.192000pt;}
.ws2b{word-spacing:0.213333pt;}
.ws11{word-spacing:0.240000pt;}
.ws7{word-spacing:0.266667pt;}
.ws112{word-spacing:0.288000pt;}
.ws6{word-spacing:0.320000pt;}
.ws94{word-spacing:0.373333pt;}
.ws55{word-spacing:0.426667pt;}
.wsfd{word-spacing:0.432000pt;}
.ws26{word-spacing:0.480000pt;}
.wsfe{word-spacing:0.528000pt;}
.ws88{word-spacing:0.533333pt;}
.ws93{word-spacing:0.586667pt;}
.ws118{word-spacing:0.624000pt;}
.ws59{word-spacing:0.640000pt;}
.ws9f{word-spacing:0.693333pt;}
.ws3d{word-spacing:0.746667pt;}
.wsc{word-spacing:0.816000pt;}
.wscb{word-spacing:0.853333pt;}
.ws43{word-spacing:0.906667pt;}
.ws9c{word-spacing:0.960000pt;}
.ws2e{word-spacing:1.013333pt;}
.ws8d{word-spacing:1.066667pt;}
.wsf9{word-spacing:1.152000pt;}
.ws66{word-spacing:1.173333pt;}
.wsfa{word-spacing:1.200000pt;}
.ws4c{word-spacing:1.226667pt;}
.ws9e{word-spacing:1.280000pt;}
.ws6d{word-spacing:1.333333pt;}
.ws8c{word-spacing:1.386667pt;}
.ws1c{word-spacing:1.440000pt;}
.ws73{word-spacing:1.493333pt;}
.ws85{word-spacing:1.546667pt;}
.ws8f{word-spacing:1.600000pt;}
.ws11a{word-spacing:1.632000pt;}
.ws3f{word-spacing:1.653333pt;}
.ws67{word-spacing:1.706667pt;}
.ws25{word-spacing:1.760000pt;}
.ws105{word-spacing:1.776000pt;}
.ws9d{word-spacing:1.813333pt;}
.ws56{word-spacing:1.866667pt;}
.wsba{word-spacing:1.920000pt;}
.wsd6{word-spacing:1.973333pt;}
.wsd7{word-spacing:2.026667pt;}
.ws31{word-spacing:2.080000pt;}
.wsb9{word-spacing:2.133333pt;}
.wsa{word-spacing:2.160000pt;}
.wsb0{word-spacing:2.186667pt;}
.ws5c{word-spacing:2.240000pt;}
.ws49{word-spacing:2.293333pt;}
.ws11d{word-spacing:2.304000pt;}
.ws9b{word-spacing:2.346667pt;}
.ws76{word-spacing:2.400000pt;}
.ws5b{word-spacing:2.453333pt;}
.ws4f{word-spacing:2.506667pt;}
.wsf6{word-spacing:2.544000pt;}
.ws3e{word-spacing:2.560000pt;}
.ws80{word-spacing:2.613333pt;}
.wsf5{word-spacing:2.640000pt;}
.ws32{word-spacing:2.666667pt;}
.wsd{word-spacing:2.688000pt;}
.ws64{word-spacing:2.720000pt;}
.ws77{word-spacing:2.773333pt;}
.wsb4{word-spacing:2.826667pt;}
.ws7d{word-spacing:2.880000pt;}
.wsda{word-spacing:2.933333pt;}
.ws78{word-spacing:3.040000pt;}
.wse{word-spacing:3.072000pt;}
.ws6e{word-spacing:3.093333pt;}
.ws109{word-spacing:3.120000pt;}
.ws97{word-spacing:3.146667pt;}
.ws33{word-spacing:3.200000pt;}
.ws113{word-spacing:3.216000pt;}
.ws62{word-spacing:3.253333pt;}
.wsbd{word-spacing:3.306667pt;}
.wscd{word-spacing:3.360000pt;}
.ws106{word-spacing:3.408000pt;}
.ws5a{word-spacing:3.413333pt;}
.ws8a{word-spacing:3.466667pt;}
.ws7c{word-spacing:3.520000pt;}
.wsb8{word-spacing:3.573333pt;}
.ws52{word-spacing:3.626667pt;}
.ws29{word-spacing:3.680000pt;}
.ws89{word-spacing:3.733333pt;}
.ws2a{word-spacing:3.786667pt;}
.wsf{word-spacing:3.840000pt;}
.wse3{word-spacing:3.893333pt;}
.ws75{word-spacing:4.000000pt;}
.wsad{word-spacing:4.053333pt;}
.ws87{word-spacing:4.106667pt;}
.wscf{word-spacing:4.160000pt;}
.wsc4{word-spacing:4.213333pt;}
.ws20{word-spacing:4.224000pt;}
.wsdb{word-spacing:4.266667pt;}
.ws6a{word-spacing:4.320000pt;}
.ws41{word-spacing:4.373333pt;}
.wsc0{word-spacing:4.426667pt;}
.ws83{word-spacing:4.480000pt;}
.ws10b{word-spacing:4.512000pt;}
.ws9a{word-spacing:4.533333pt;}
.wse5{word-spacing:4.586667pt;}
.wsde{word-spacing:4.640000pt;}
.ws98{word-spacing:4.693333pt;}
.ws53{word-spacing:4.746667pt;}
.ws84{word-spacing:4.906667pt;}
.wsdc{word-spacing:4.960000pt;}
.wsed{word-spacing:5.066667pt;}
.wsae{word-spacing:5.120000pt;}
.wsf2{word-spacing:5.173333pt;}
.wsd2{word-spacing:5.226667pt;}
.wsb1{word-spacing:5.280000pt;}
.wsc6{word-spacing:5.333333pt;}
.wsf1{word-spacing:5.386667pt;}
.wsce{word-spacing:5.493333pt;}
.wse7{word-spacing:5.546667pt;}
.ws10a{word-spacing:5.568000pt;}
.ws74{word-spacing:5.600000pt;}
.ws11e{word-spacing:5.616000pt;}
.ws54{word-spacing:5.706667pt;}
.wsc5{word-spacing:5.760000pt;}
.wsb7{word-spacing:5.813333pt;}
.wse1{word-spacing:5.920000pt;}
.wse0{word-spacing:6.026667pt;}
.wsf3{word-spacing:6.080000pt;}
.wse8{word-spacing:6.186667pt;}
.ws1e{word-spacing:6.192000pt;}
.wsdf{word-spacing:6.240000pt;}
.ws65{word-spacing:6.293333pt;}
.ws7e{word-spacing:6.400000pt;}
.wsc2{word-spacing:6.506667pt;}
.ws7f{word-spacing:6.560000pt;}
.ws104{word-spacing:6.672000pt;}
.wsef{word-spacing:6.773333pt;}
.wsd9{word-spacing:6.880000pt;}
.ws79{word-spacing:6.986667pt;}
.wse6{word-spacing:7.040000pt;}
.wsee{word-spacing:7.200000pt;}
.wsd4{word-spacing:7.306667pt;}
.wsdd{word-spacing:7.360000pt;}
.ws82{word-spacing:7.413333pt;}
.ws1f{word-spacing:7.536000pt;}
.wse9{word-spacing:7.626667pt;}
.wsf0{word-spacing:7.680000pt;}
.ws1b{word-spacing:9.264000pt;}
.ws90{word-spacing:145.173333pt;}
._e{margin-left:-2495.058133pt;}
._13{margin-left:-70.819200pt;}
._1{margin-left:-14.842667pt;}
._19{margin-left:-12.376000pt;}
._20{margin-left:-11.157867pt;}
._17{margin-left:-10.181867pt;}
._11{margin-left:-8.480000pt;}
._7{margin-left:-6.712000pt;}
._4{margin-left:-4.416000pt;}
._a{margin-left:-3.370667pt;}
._0{margin-left:-1.655467pt;}
._5{width:0.912000pt;}
._8{width:1.830400pt;}
._9{width:3.306667pt;}
._f{width:4.266667pt;}
._c{width:5.173333pt;}
._d{width:6.933333pt;}
._1d{width:8.160000pt;}
._14{width:10.132267pt;}
._1b{width:13.572800pt;}
._3{width:19.910933pt;}
._10{width:21.013333pt;}
._1a{width:41.555200pt;}
._1e{width:50.560000pt;}
._2{width:79.872000pt;}
._1f{width:83.040000pt;}
._18{width:86.506667pt;}
._16{width:92.000000pt;}
._1c{width:92.960000pt;}
._15{width:96.480000pt;}
._12{width:101.173333pt;}
._21{width:1345.091200pt;}
._b{width:1375.705067pt;}
._6{width:1615.580800pt;}
.fs9{font-size:31.093333pt;}
.fsa{font-size:37.333333pt;}
.fs1{font-size:44.800000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:268.800000pt;}
.fs2{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:58.310400pt;}
.y168{bottom:95.999867pt;}
.y72{bottom:96.000000pt;}
.y1c4{bottom:96.001733pt;}
.y398{bottom:110.400000pt;}
.y10c{bottom:112.005333pt;}
.ya8{bottom:112.030133pt;}
.y197{bottom:112.034933pt;}
.y167{bottom:112.035733pt;}
.y220{bottom:112.036533pt;}
.y24f{bottom:112.072133pt;}
.y27c{bottom:112.077067pt;}
.y1c3{bottom:112.080267pt;}
.y352{bottom:112.187867pt;}
.ydc{bottom:112.220400pt;}
.y31e{bottom:112.229200pt;}
.y71{bottom:112.290933pt;}
.y2ed{bottom:112.336800pt;}
.y385{bottom:112.538400pt;}
.y1f3{bottom:112.586133pt;}
.y397{bottom:124.800000pt;}
.y10b{bottom:128.010800pt;}
.ya7{bottom:128.060267pt;}
.y196{bottom:128.070000pt;}
.y166{bottom:128.071467pt;}
.y21f{bottom:128.073067pt;}
.y24e{bottom:128.144267pt;}
.y27b{bottom:128.152267pt;}
.y1c2{bottom:128.158933pt;}
.y351{bottom:128.374133pt;}
.ydb{bottom:128.440933pt;}
.y31d{bottom:128.458533pt;}
.y70{bottom:128.581867pt;}
.y2ec{bottom:128.673467pt;}
.y384{bottom:129.076800pt;}
.y1f2{bottom:129.170533pt;}
.y138{bottom:136.005867pt;}
.y2a8{bottom:136.152400pt;}
.y396{bottom:139.200000pt;}
.ya6{bottom:143.957067pt;}
.y10a{bottom:144.016133pt;}
.y195{bottom:144.105067pt;}
.y165{bottom:144.107200pt;}
.y21e{bottom:144.109600pt;}
.y24d{bottom:144.216533pt;}
.y1c1{bottom:144.237467pt;}
.y350{bottom:144.560267pt;}
.yda{bottom:144.661333pt;}
.y31c{bottom:144.687867pt;}
.y6f{bottom:144.872667pt;}
.y2eb{bottom:145.010267pt;}
.y383{bottom:145.615200pt;}
.y1f1{bottom:145.754800pt;}
.y137{bottom:152.011733pt;}
.y27a{bottom:152.227600pt;}
.y395{bottom:153.600000pt;}
.y42{bottom:153.956133pt;}
.ya5{bottom:159.853867pt;}
.y109{bottom:160.021467pt;}
.y194{bottom:160.140000pt;}
.y164{bottom:160.142933pt;}
.y21d{bottom:160.146133pt;}
.y24c{bottom:160.288667pt;}
.y1c0{bottom:160.316133pt;}
.y34f{bottom:160.746400pt;}
.yd9{bottom:160.881867pt;}
.y31b{bottom:160.917067pt;}
.y6e{bottom:161.163600pt;}
.y2ea{bottom:161.347067pt;}
.y382{bottom:162.153467pt;}
.y1f0{bottom:162.339067pt;}
.y394{bottom:168.000000pt;}
.ya4{bottom:175.750667pt;}
.y136{bottom:176.017600pt;}
.y193{bottom:176.175067pt;}
.y163{bottom:176.178800pt;}
.y21c{bottom:176.182667pt;}
.y2a7{bottom:176.227733pt;}
.y41{bottom:176.356133pt;}
.y24b{bottom:176.360800pt;}
.y34e{bottom:176.932667pt;}
.yd8{bottom:177.102267pt;}
.y31a{bottom:177.146267pt;}
.y6d{bottom:177.454533pt;}
.y2e9{bottom:177.683867pt;}
.y381{bottom:178.691867pt;}
.y393{bottom:182.400000pt;}
.y108{bottom:184.026800pt;}
.y1bf{bottom:184.394667pt;}
.y1ef{bottom:186.923467pt;}
.y40{bottom:190.756133pt;}
.ya3{bottom:191.647467pt;}
.y135{bottom:192.023467pt;}
.y192{bottom:192.210133pt;}
.y162{bottom:192.214533pt;}
.y21b{bottom:192.219200pt;}
.y279{bottom:192.302800pt;}
.y2a6{bottom:192.302933pt;}
.y24a{bottom:192.432933pt;}
.y34d{bottom:193.118800pt;}
.yd7{bottom:193.322800pt;}
.y319{bottom:193.375600pt;}
.y6c{bottom:193.745467pt;}
.y380{bottom:195.230267pt;}
.y107{bottom:200.032267pt;}
.y2e8{bottom:202.020533pt;}
.y1ee{bottom:203.507867pt;}
.y3f{bottom:205.156133pt;}
.ya2{bottom:207.544267pt;}
.y134{bottom:208.029333pt;}
.y191{bottom:208.245067pt;}
.y278{bottom:208.378133pt;}
.y2a5{bottom:208.378267pt;}
.y249{bottom:208.505067pt;}
.y34c{bottom:209.304933pt;}
.yd6{bottom:209.543067pt;}
.y318{bottom:209.604933pt;}
.y6b{bottom:210.036400pt;}
.y37f{bottom:211.768667pt;}
.y106{bottom:216.037733pt;}
.y161{bottom:216.250267pt;}
.y21a{bottom:216.255733pt;}
.y1ed{bottom:220.092133pt;}
.ya1{bottom:223.440933pt;}
.y133{bottom:224.035200pt;}
.y190{bottom:224.280133pt;}
.y277{bottom:224.453333pt;}
.y2a4{bottom:224.453467pt;}
.y1be{bottom:224.473200pt;}
.y248{bottom:224.577200pt;}
.y34b{bottom:225.491067pt;}
.yd5{bottom:225.763600pt;}
.y317{bottom:225.834133pt;}
.y6a{bottom:226.327333pt;}
.y3e{bottom:227.556133pt;}
.y37e{bottom:228.306933pt;}
.y105{bottom:232.043067pt;}
.y160{bottom:232.286000pt;}
.y1ec{bottom:236.676400pt;}
.ya0{bottom:239.337867pt;}
.y132{bottom:240.041067pt;}
.y219{bottom:240.292267pt;}
.y18f{bottom:240.315200pt;}
.y276{bottom:240.528533pt;}
.y2a3{bottom:240.528933pt;}
.y1bd{bottom:240.551733pt;}
.y247{bottom:240.649467pt;}
.y34a{bottom:241.677333pt;}
.y3d{bottom:241.956133pt;}
.yd4{bottom:241.984000pt;}
.y316{bottom:242.063467pt;}
.y69{bottom:242.618267pt;}
.y37d{bottom:244.845333pt;}
.y104{bottom:248.048400pt;}
.y15f{bottom:248.321867pt;}
.y1eb{bottom:253.260800pt;}
.y2e7{bottom:253.557333pt;}
.y9f{bottom:255.234667pt;}
.y18e{bottom:256.350133pt;}
.y3c{bottom:256.356133pt;}
.y275{bottom:256.603867pt;}
.y2a2{bottom:256.604133pt;}
.y1bc{bottom:256.630400pt;}
.y246{bottom:256.721600pt;}
.y349{bottom:257.863467pt;}
.yd3{bottom:258.204533pt;}
.y315{bottom:258.292667pt;}
.y68{bottom:258.909200pt;}
.y37c{bottom:261.383733pt;}
.y131{bottom:264.046933pt;}
.y103{bottom:264.053733pt;}
.y218{bottom:264.328800pt;}
.y15e{bottom:264.357600pt;}
.y1ea{bottom:269.845067pt;}
.y2e6{bottom:269.894133pt;}
.y3b{bottom:270.756133pt;}
.y9e{bottom:271.131467pt;}
.y18d{bottom:272.385200pt;}
.y274{bottom:272.679067pt;}
.y2a1{bottom:272.679467pt;}
.y1bb{bottom:272.708933pt;}
.y245{bottom:272.793733pt;}
.y348{bottom:274.049600pt;}
.yd2{bottom:274.424933pt;}
.y314{bottom:274.522000pt;}
.y67{bottom:275.200133pt;}
.y37b{bottom:277.922133pt;}
.y130{bottom:280.052667pt;}
.y102{bottom:280.059200pt;}
.y217{bottom:280.365333pt;}
.y15d{bottom:280.393333pt;}
.y3a{bottom:285.156133pt;}
.y2e5{bottom:286.230933pt;}
.y1e9{bottom:286.429467pt;}
.y9d{bottom:287.028267pt;}
.y18c{bottom:288.420267pt;}
.y273{bottom:288.754400pt;}
.y2a0{bottom:288.754667pt;}
.y244{bottom:288.865867pt;}
.y347{bottom:290.235867pt;}
.yd1{bottom:290.645467pt;}
.y313{bottom:290.751200pt;}
.y66{bottom:291.491067pt;}
.y37a{bottom:294.460533pt;}
.y12f{bottom:296.058533pt;}
.y101{bottom:296.064533pt;}
.y1ba{bottom:296.787467pt;}
.y2e4{bottom:302.567600pt;}
.y9c{bottom:302.925067pt;}
.y1e8{bottom:303.013733pt;}
.y216{bottom:304.402000pt;}
.y15c{bottom:304.429200pt;}
.y18b{bottom:304.455200pt;}
.y272{bottom:304.829600pt;}
.y29f{bottom:304.830000pt;}
.y243{bottom:304.938000pt;}
.y346{bottom:306.422000pt;}
.yd0{bottom:306.865867pt;}
.y312{bottom:306.980533pt;}
.y39{bottom:307.556133pt;}
.y65{bottom:307.782000pt;}
.y379{bottom:310.998800pt;}
.y12e{bottom:312.064400pt;}
.y100{bottom:312.069867pt;}
.y9b{bottom:318.821867pt;}
.y2e3{bottom:318.904400pt;}
.y1e7{bottom:319.598133pt;}
.y215{bottom:320.438533pt;}
.y15b{bottom:320.464933pt;}
.y18a{bottom:320.490267pt;}
.y1b9{bottom:320.866000pt;}
.y271{bottom:320.904800pt;}
.y242{bottom:321.010267pt;}
.y38{bottom:321.956133pt;}
.y345{bottom:322.608133pt;}
.ycf{bottom:323.086400pt;}
.y311{bottom:323.209733pt;}
.y64{bottom:324.072933pt;}
.y378{bottom:327.537200pt;}
.yff{bottom:328.075333pt;}
.y29e{bottom:328.905333pt;}
.y9a{bottom:334.718667pt;}
.y12d{bottom:336.070267pt;}
.y1e6{bottom:336.182400pt;}
.y37{bottom:336.356133pt;}
.y214{bottom:336.475067pt;}
.y189{bottom:336.525333pt;}
.y270{bottom:336.980133pt;}
.y241{bottom:337.082400pt;}
.y344{bottom:338.794400pt;}
.yce{bottom:339.306800pt;}
.y310{bottom:339.439067pt;}
.y63{bottom:340.363867pt;}
.y2e2{bottom:343.241200pt;}
.y377{bottom:344.075600pt;}
.yfe{bottom:344.080667pt;}
.y1b8{bottom:344.944667pt;}
.y29d{bottom:344.980667pt;}
.y99{bottom:350.615333pt;}
.y36{bottom:350.756133pt;}
.y12c{bottom:352.076133pt;}
.y213{bottom:352.511600pt;}
.y1e5{bottom:352.766800pt;}
.y26f{bottom:353.055333pt;}
.y240{bottom:353.154533pt;}
.y343{bottom:354.980533pt;}
.ycd{bottom:355.527200pt;}
.y30f{bottom:355.668400pt;}
.y62{bottom:356.654667pt;}
.y2e1{bottom:359.578000pt;}
.yfd{bottom:360.086000pt;}
.y15a{bottom:360.500667pt;}
.y188{bottom:360.560267pt;}
.y376{bottom:360.614000pt;}
.y2b3{bottom:361.154533pt;}
.y35{bottom:365.156133pt;}
.y98{bottom:366.512267pt;}
.y12b{bottom:368.082000pt;}
.y212{bottom:368.548133pt;}
.y1b7{bottom:369.023200pt;}
.y29c{bottom:369.055867pt;}
.y26e{bottom:369.130667pt;}
.y2c3{bottom:369.226667pt;}
.y342{bottom:371.166667pt;}
.ycc{bottom:371.747733pt;}
.y30e{bottom:371.897600pt;}
.y61{bottom:372.945600pt;}
.yfc{bottom:376.091467pt;}
.y159{bottom:376.536400pt;}
.y187{bottom:376.595333pt;}
.y375{bottom:377.152400pt;}
.y23f{bottom:377.226667pt;}
.y1e4{bottom:377.351067pt;}
.y34{bottom:379.556133pt;}
.y97{bottom:382.409067pt;}
.y2e0{bottom:383.914667pt;}
.y12a{bottom:384.087867pt;}
.y211{bottom:384.584667pt;}
.y1b6{bottom:385.101733pt;}
.y26d{bottom:385.205867pt;}
.y2b2{bottom:385.226667pt;}
.y2c2{bottom:385.298800pt;}
.y341{bottom:387.352800pt;}
.ycb{bottom:387.968133pt;}
.y30d{bottom:388.126933pt;}
.y60{bottom:389.236533pt;}
.yfb{bottom:392.096800pt;}
.y158{bottom:392.572267pt;}
.y186{bottom:392.630267pt;}
.y29b{bottom:393.131200pt;}
.y374{bottom:393.690667pt;}
.y1e3{bottom:393.935467pt;}
.y33{bottom:393.956133pt;}
.y96{bottom:398.305733pt;}
.y129{bottom:400.093733pt;}
.y210{bottom:400.621200pt;}
.y1b5{bottom:401.180400pt;}
.y26c{bottom:401.281067pt;}
.y23e{bottom:401.298800pt;}
.y2c1{bottom:401.370933pt;}
.y340{bottom:403.539067pt;}
.yca{bottom:404.188533pt;}
.y30c{bottom:404.356133pt;}
.y5f{bottom:405.527467pt;}
.yfa{bottom:408.102133pt;}
.y2df{bottom:408.251467pt;}
.y32{bottom:408.356133pt;}
.y157{bottom:408.608000pt;}
.y185{bottom:408.665333pt;}
.y2b1{bottom:409.298800pt;}
.y373{bottom:410.229067pt;}
.y95{bottom:414.202533pt;}
.y128{bottom:416.099600pt;}
.y20f{bottom:416.657733pt;}
.y29a{bottom:417.206533pt;}
.y1b4{bottom:417.258933pt;}
.y26b{bottom:417.356400pt;}
.y33f{bottom:419.725200pt;}
.yc9{bottom:420.409067pt;}
.y30b{bottom:420.585467pt;}
.y5e{bottom:421.818400pt;}
.y31{bottom:422.756133pt;}
.yf9{bottom:424.107600pt;}
.y156{bottom:424.643733pt;}
.y23d{bottom:425.370933pt;}
.y2c0{bottom:425.443200pt;}
.y372{bottom:426.767467pt;}
.y94{bottom:430.099467pt;}
.y127{bottom:432.105467pt;}
.y2de{bottom:432.588267pt;}
.y184{bottom:432.700400pt;}
.y299{bottom:433.281733pt;}
.y1b3{bottom:433.337467pt;}
.y26a{bottom:433.431600pt;}
.y1e2{bottom:434.519733pt;}
.y33e{bottom:435.911333pt;}
.yc8{bottom:436.629467pt;}
.y30a{bottom:436.814667pt;}
.y30{bottom:437.156133pt;}
.y5d{bottom:438.109333pt;}
.yf8{bottom:440.112933pt;}
.y155{bottom:440.679467pt;}
.y20e{bottom:440.694267pt;}
.y2bf{bottom:441.515333pt;}
.y371{bottom:443.305867pt;}
.y93{bottom:445.996133pt;}
.y126{bottom:448.111333pt;}
.y183{bottom:448.735333pt;}
.y2dd{bottom:448.925067pt;}
.y298{bottom:449.357067pt;}
.y1b2{bottom:449.416000pt;}
.y23c{bottom:449.443200pt;}
.y269{bottom:449.506933pt;}
.y1e1{bottom:451.104133pt;}
.y2f{bottom:451.556133pt;}
.y33d{bottom:452.097600pt;}
.yc7{bottom:452.850000pt;}
.y309{bottom:453.044000pt;}
.y5c{bottom:454.400267pt;}
.yf7{bottom:456.118267pt;}
.y154{bottom:456.715333pt;}
.y20d{bottom:456.730800pt;}
.y2be{bottom:457.587467pt;}
.y370{bottom:459.844133pt;}
.y92{bottom:461.892933pt;}
.y125{bottom:464.117200pt;}
.y2dc{bottom:465.261867pt;}
.y297{bottom:465.432400pt;}
.y1b1{bottom:465.494533pt;}
.y23b{bottom:465.515333pt;}
.y2e{bottom:465.956133pt;}
.y1e0{bottom:467.688400pt;}
.y33c{bottom:468.283733pt;}
.yc6{bottom:469.070400pt;}
.y308{bottom:469.273200pt;}
.y5b{bottom:470.691200pt;}
.yf6{bottom:472.123733pt;}
.y153{bottom:472.751067pt;}
.y20c{bottom:472.767333pt;}
.y268{bottom:473.582133pt;}
.y2bd{bottom:473.659600pt;}
.y36f{bottom:476.382533pt;}
.y91{bottom:477.789733pt;}
.y124{bottom:480.123067pt;}
.y296{bottom:481.507733pt;}
.y1b0{bottom:481.573200pt;}
.y23a{bottom:481.587467pt;}
.y2db{bottom:481.598533pt;}
.y1df{bottom:484.272800pt;}
.y33b{bottom:484.469867pt;}
.yc5{bottom:485.290800pt;}
.y307{bottom:485.502533pt;}
.y5a{bottom:486.982000pt;}
.yf5{bottom:488.129067pt;}
.y182{bottom:488.770400pt;}
.y152{bottom:488.786800pt;}
.y20b{bottom:488.803867pt;}
.y2bc{bottom:489.731733pt;}
.y36e{bottom:492.920933pt;}
.y90{bottom:493.686533pt;}
.y123{bottom:496.128800pt;}
.y2d{bottom:496.356133pt;}
.y295{bottom:497.582933pt;}
.y1af{bottom:497.651733pt;}
.y267{bottom:497.657333pt;}
.y239{bottom:497.659600pt;}
.y2da{bottom:497.935333pt;}
.y33a{bottom:500.656133pt;}
.y1de{bottom:500.857067pt;}
.yc4{bottom:501.511333pt;}
.y306{bottom:501.731733pt;}
.y59{bottom:503.272933pt;}
.yf4{bottom:504.134400pt;}
.y181{bottom:504.805467pt;}
.y151{bottom:504.822533pt;}
.y20a{bottom:504.840400pt;}
.y2bb{bottom:505.803867pt;}
.y36d{bottom:509.459333pt;}
.y8f{bottom:509.583333pt;}
.y2c{bottom:510.756133pt;}
.y122{bottom:512.134667pt;}
.y1ae{bottom:513.730267pt;}
.y238{bottom:513.731733pt;}
.y2d9{bottom:514.272133pt;}
.y339{bottom:516.842267pt;}
.y1dd{bottom:517.441467pt;}
.yc3{bottom:517.731733pt;}
.y305{bottom:517.961067pt;}
.y58{bottom:519.563867pt;}
.yf3{bottom:520.139867pt;}
.y180{bottom:520.840400pt;}
.y150{bottom:520.858400pt;}
.y209{bottom:520.877067pt;}
.y294{bottom:521.658267pt;}
.y266{bottom:521.732667pt;}
.y2ba{bottom:521.876133pt;}
.y2b{bottom:525.156133pt;}
.y8e{bottom:525.480133pt;}
.y36c{bottom:525.997733pt;}
.y121{bottom:528.140533pt;}
.y237{bottom:529.803867pt;}
.y2d8{bottom:530.608800pt;}
.y338{bottom:533.028400pt;}
.yc2{bottom:533.952267pt;}
.y1dc{bottom:534.025733pt;}
.y304{bottom:534.190267pt;}
.y57{bottom:535.854800pt;}
.yf2{bottom:536.145200pt;}
.y17f{bottom:536.875467pt;}
.y14f{bottom:536.894133pt;}
.y208{bottom:536.913600pt;}
.y293{bottom:537.733600pt;}
.y265{bottom:537.807867pt;}
.y1ad{bottom:537.808933pt;}
.y2b9{bottom:537.948267pt;}
.y2a{bottom:539.556133pt;}
.y8d{bottom:541.376933pt;}
.y36b{bottom:542.536133pt;}
.y120{bottom:544.146400pt;}
.y236{bottom:545.876133pt;}
.y2d7{bottom:546.945600pt;}
.y337{bottom:549.214533pt;}
.yc1{bottom:550.172667pt;}
.y303{bottom:550.419600pt;}
.y1db{bottom:550.610133pt;}
.yf1{bottom:552.150533pt;}
.y14e{bottom:552.929867pt;}
.y207{bottom:552.950133pt;}
.y292{bottom:553.808800pt;}
.y1ac{bottom:553.887467pt;}
.y29{bottom:553.956133pt;}
.y2b8{bottom:554.020400pt;}
.y8c{bottom:557.273733pt;}
.y36a{bottom:559.074400pt;}
.y56{bottom:560.145733pt;}
.y17e{bottom:560.910533pt;}
.y264{bottom:561.883200pt;}
.y235{bottom:561.948267pt;}
.y2d6{bottom:563.282400pt;}
.y336{bottom:565.400800pt;}
.yc0{bottom:566.393200pt;}
.y302{bottom:566.648800pt;}
.y1da{bottom:567.194400pt;}
.y11f{bottom:568.152267pt;}
.yf0{bottom:568.156000pt;}
.y14d{bottom:568.965600pt;}
.y206{bottom:568.986667pt;}
.y291{bottom:569.884133pt;}
.y1ab{bottom:569.966000pt;}
.y2b7{bottom:570.092533pt;}
.y8b{bottom:573.170533pt;}
.y369{bottom:575.612800pt;}
.y263{bottom:577.958400pt;}
.y234{bottom:578.020400pt;}
.y2d5{bottom:579.619200pt;}
.y335{bottom:581.586933pt;}
.ybf{bottom:582.613600pt;}
.y301{bottom:582.878133pt;}
.y1d9{bottom:583.778667pt;}
.yef{bottom:584.161333pt;}
.y28{bottom:584.356133pt;}
.y17d{bottom:584.945600pt;}
.y290{bottom:585.959467pt;}
.y1aa{bottom:586.044533pt;}
.y8a{bottom:589.067333pt;}
.y368{bottom:592.151200pt;}
.y14c{bottom:593.001467pt;}
.y205{bottom:593.023200pt;}
.y262{bottom:594.033733pt;}
.y233{bottom:594.092533pt;}
.y2b6{bottom:594.164667pt;}
.y334{bottom:597.773200pt;}
.y27{bottom:598.756133pt;}
.ybe{bottom:598.834000pt;}
.y300{bottom:599.107333pt;}
.yee{bottom:600.166800pt;}
.y1d8{bottom:600.363067pt;}
.y28f{bottom:602.034800pt;}
.ya{bottom:603.782267pt;}
.y2d4{bottom:603.955867pt;}
.y89{bottom:604.964133pt;}
.y367{bottom:608.689600pt;}
.y17c{bottom:608.980533pt;}
.y204{bottom:609.059733pt;}
.y261{bottom:610.108933pt;}
.y1a9{bottom:610.123067pt;}
.y232{bottom:610.164667pt;}
.y2b5{bottom:610.236933pt;}
.y55{bottom:611.636667pt;}
.y26{bottom:613.156133pt;}
.y333{bottom:613.959333pt;}
.ybd{bottom:615.054533pt;}
.y2ff{bottom:615.336667pt;}
.y11e{bottom:616.158133pt;}
.yed{bottom:616.172133pt;}
.y14b{bottom:617.037200pt;}
.y28e{bottom:618.110000pt;}
.y2d3{bottom:620.292667pt;}
.y88{bottom:620.860933pt;}
.y1d7{bottom:624.947333pt;}
.y366{bottom:625.228000pt;}
.y260{bottom:626.184267pt;}
.y1a8{bottom:626.201733pt;}
.y2b0{bottom:626.236933pt;}
.y25{bottom:627.556133pt;}
.y332{bottom:630.145467pt;}
.ybc{bottom:631.274933pt;}
.y2fe{bottom:631.565867pt;}
.yec{bottom:632.177467pt;}
.y17b{bottom:633.015600pt;}
.y28d{bottom:634.185333pt;}
.y231{bottom:634.236933pt;}
.y54{bottom:634.327600pt;}
.y2d2{bottom:636.629467pt;}
.y87{bottom:636.757733pt;}
.y14a{bottom:641.072933pt;}
.y1d6{bottom:641.531733pt;}
.y365{bottom:641.766267pt;}
.y24{bottom:641.956133pt;}
.y9{bottom:642.982400pt;}
.y331{bottom:646.331600pt;}
.ybb{bottom:647.495467pt;}
.y2fd{bottom:647.795200pt;}
.yeb{bottom:648.182800pt;}
.y53{bottom:649.018533pt;}
.y17a{bottom:649.050667pt;}
.y203{bottom:649.096267pt;}
.y25f{bottom:650.259467pt;}
.y230{bottom:650.309067pt;}
.y86{bottom:652.654533pt;}
.y2d1{bottom:652.966267pt;}
.y23{bottom:656.356133pt;}
.y8{bottom:657.382267pt;}
.y1d5{bottom:658.116000pt;}
.y28c{bottom:658.260667pt;}
.y364{bottom:658.304667pt;}
.y330{bottom:662.517867pt;}
.y52{bottom:663.709333pt;}
.yba{bottom:663.715867pt;}
.y2fc{bottom:664.024533pt;}
.yea{bottom:664.188267pt;}
.y179{bottom:665.085600pt;}
.y149{bottom:665.108667pt;}
.y202{bottom:665.132800pt;}
.y1a7{bottom:666.280267pt;}
.y25e{bottom:666.334667pt;}
.y22f{bottom:666.381200pt;}
.y11d{bottom:667.364000pt;}
.y85{bottom:668.551333pt;}
.y2d0{bottom:669.302933pt;}
.y22{bottom:670.756133pt;}
.y7{bottom:671.782267pt;}
.y28b{bottom:674.336000pt;}
.y1d4{bottom:674.700400pt;}
.y363{bottom:674.843067pt;}
.y51{bottom:678.400267pt;}
.y32f{bottom:678.704000pt;}
.yb9{bottom:679.936267pt;}
.ye9{bottom:680.193600pt;}
.y2fb{bottom:680.253733pt;}
.y178{bottom:681.120667pt;}
.y148{bottom:681.144533pt;}
.y201{bottom:681.169333pt;}
.y1a6{bottom:682.358933pt;}
.y25d{bottom:682.410000pt;}
.y22e{bottom:682.453333pt;}
.y11c{bottom:683.369733pt;}
.y84{bottom:684.448133pt;}
.y21{bottom:685.156133pt;}
.y2cf{bottom:685.639867pt;}
.y1d3{bottom:691.284667pt;}
.y362{bottom:691.381467pt;}
.y50{bottom:693.091333pt;}
.y32e{bottom:694.890133pt;}
.yb8{bottom:696.156800pt;}
.ye8{bottom:696.198933pt;}
.y2fa{bottom:696.482933pt;}
.y177{bottom:697.155733pt;}
.y147{bottom:697.180267pt;}
.y200{bottom:697.205867pt;}
.y392{bottom:697.680933pt;}
.y1a5{bottom:698.437467pt;}
.y25c{bottom:698.485200pt;}
.y22d{bottom:698.525467pt;}
.y11b{bottom:699.375600pt;}
.y20{bottom:699.556133pt;}
.y83{bottom:700.344933pt;}
.y4f{bottom:707.782267pt;}
.y1d2{bottom:707.869067pt;}
.y361{bottom:707.919733pt;}
.y2ce{bottom:709.976533pt;}
.y32d{bottom:711.076400pt;}
.ye7{bottom:712.204400pt;}
.yb7{bottom:712.377200pt;}
.y176{bottom:713.190667pt;}
.y146{bottom:713.216000pt;}
.y391{bottom:713.680933pt;}
.y1f{bottom:713.956133pt;}
.y28a{bottom:714.411200pt;}
.y1a4{bottom:714.516000pt;}
.y25b{bottom:714.560400pt;}
.y22c{bottom:714.597600pt;}
.y6{bottom:714.982400pt;}
.y11a{bottom:715.381467pt;}
.y82{bottom:716.241733pt;}
.y2f9{bottom:720.712267pt;}
.y1ff{bottom:721.242400pt;}
.y4e{bottom:722.473200pt;}
.y1d1{bottom:724.453333pt;}
.y360{bottom:724.458133pt;}
.y2cd{bottom:726.313333pt;}
.y32c{bottom:727.262533pt;}
.ye6{bottom:728.209733pt;}
.y1e{bottom:728.356133pt;}
.yb6{bottom:728.597600pt;}
.y175{bottom:729.225733pt;}
.y145{bottom:729.251733pt;}
.y289{bottom:730.486533pt;}
.y1a3{bottom:730.594533pt;}
.y25a{bottom:730.635733pt;}
.y22b{bottom:730.669867pt;}
.y119{bottom:731.387333pt;}
.y81{bottom:732.138533pt;}
.y4d{bottom:737.164000pt;}
.y1fe{bottom:737.278933pt;}
.y5{bottom:737.382267pt;}
.y35f{bottom:740.996533pt;}
.y1d0{bottom:741.037733pt;}
.y1d{bottom:742.756133pt;}
.y32b{bottom:743.448667pt;}
.ye5{bottom:744.215200pt;}
.yb5{bottom:744.818133pt;}
.y174{bottom:745.260800pt;}
.y144{bottom:745.287600pt;}
.y288{bottom:746.561867pt;}
.y1a2{bottom:746.673200pt;}
.y259{bottom:746.710933pt;}
.y22a{bottom:746.742000pt;}
.y118{bottom:747.393200pt;}
.y80{bottom:748.035333pt;}
.y4c{bottom:751.854933pt;}
.y1c{bottom:757.156267pt;}
.y35e{bottom:757.534933pt;}
.y32a{bottom:759.634800pt;}
.y2f8{bottom:760.941600pt;}
.yb4{bottom:761.038533pt;}
.y173{bottom:761.295733pt;}
.y1fd{bottom:761.315600pt;}
.y143{bottom:761.323333pt;}
.y390{bottom:761.680933pt;}
.y287{bottom:762.637067pt;}
.y258{bottom:762.786267pt;}
.y229{bottom:762.814133pt;}
.y117{bottom:763.399067pt;}
.y7f{bottom:763.932133pt;}
.y1cf{bottom:765.622133pt;}
.y4b{bottom:766.545867pt;}
.y2cc{bottom:766.650000pt;}
.ye4{bottom:768.220533pt;}
.y1a1{bottom:770.751733pt;}
.y35d{bottom:774.073333pt;}
.y329{bottom:775.821067pt;}
.y2f7{bottom:777.170800pt;}
.yb3{bottom:777.259067pt;}
.y172{bottom:777.330667pt;}
.y142{bottom:777.359067pt;}
.y38f{bottom:777.680933pt;}
.y286{bottom:778.712400pt;}
.y257{bottom:778.861467pt;}
.y228{bottom:778.886267pt;}
.y116{bottom:779.404933pt;}
.y7e{bottom:779.828933pt;}
.y4a{bottom:781.236800pt;}
.y1ce{bottom:782.206400pt;}
.y2cb{bottom:782.986800pt;}
.ye3{bottom:784.225867pt;}
.y1fc{bottom:785.352000pt;}
.y2af{bottom:786.886267pt;}
.y1b{bottom:787.556267pt;}
.y35c{bottom:790.611600pt;}
.y4{bottom:791.498933pt;}
.y328{bottom:792.007200pt;}
.y171{bottom:793.365867pt;}
.y141{bottom:793.394800pt;}
.y2f6{bottom:793.400000pt;}
.yb2{bottom:793.479467pt;}
.y38e{bottom:793.680933pt;}
.y285{bottom:794.787733pt;}
.y1a0{bottom:794.830267pt;}
.y256{bottom:794.936800pt;}
.y227{bottom:794.958400pt;}
.y115{bottom:795.410800pt;}
.y7d{bottom:795.725733pt;}
.y2ca{bottom:799.323600pt;}
.ye2{bottom:800.231333pt;}
.y1fb{bottom:801.388667pt;}
.y2ae{bottom:802.958400pt;}
.y1a{bottom:803.556267pt;}
.y1cd{bottom:806.790667pt;}
.y35b{bottom:807.150000pt;}
.y327{bottom:808.193333pt;}
.y170{bottom:809.400800pt;}
.y140{bottom:809.430667pt;}
.y2f5{bottom:809.629333pt;}
.y38d{bottom:809.680933pt;}
.yb1{bottom:809.700000pt;}
.y284{bottom:810.862933pt;}
.y226{bottom:811.030533pt;}
.y114{bottom:811.416667pt;}
.y7c{bottom:811.622533pt;}
.y2c9{bottom:815.660400pt;}
.ye1{bottom:816.236667pt;}
.y19f{bottom:818.908800pt;}
.y255{bottom:819.012000pt;}
.y19{bottom:819.556267pt;}
.y49{bottom:819.927733pt;}
.y1cc{bottom:823.374933pt;}
.y35a{bottom:823.688400pt;}
.y326{bottom:824.379600pt;}
.y1fa{bottom:825.425200pt;}
.y16f{bottom:825.435867pt;}
.y38c{bottom:825.680933pt;}
.y2f4{bottom:825.858667pt;}
.yb0{bottom:825.920400pt;}
.y283{bottom:826.938267pt;}
.y225{bottom:827.102800pt;}
.y113{bottom:827.422533pt;}
.y7b{bottom:827.519333pt;}
.y2c8{bottom:831.997200pt;}
.ye0{bottom:832.242000pt;}
.y13f{bottom:833.466400pt;}
.y48{bottom:834.618667pt;}
.y254{bottom:835.087200pt;}
.y2b4{bottom:835.102800pt;}
.y18{bottom:835.556267pt;}
.y1cb{bottom:839.959333pt;}
.y359{bottom:840.226800pt;}
.y325{bottom:840.565733pt;}
.y1f9{bottom:841.461733pt;}
.y16e{bottom:841.470800pt;}
.y38b{bottom:841.680933pt;}
.y2f3{bottom:842.087867pt;}
.yaf{bottom:842.140800pt;}
.y19e{bottom:842.987333pt;}
.y282{bottom:843.013600pt;}
.y2ad{bottom:843.030533pt;}
.y224{bottom:843.174933pt;}
.y7a{bottom:843.416133pt;}
.y112{bottom:843.428400pt;}
.ye{bottom:848.197200pt;}
.ydf{bottom:848.247333pt;}
.y47{bottom:849.309600pt;}
.y13e{bottom:849.502133pt;}
.y17{bottom:851.556267pt;}
.y2c7{bottom:856.333867pt;}
.y1ca{bottom:856.543733pt;}
.y324{bottom:856.752000pt;}
.y358{bottom:856.765200pt;}
.y1f8{bottom:857.498267pt;}
.y16d{bottom:857.505867pt;}
.y38a{bottom:857.680933pt;}
.y3{bottom:858.102533pt;}
.y2f2{bottom:858.317200pt;}
.yae{bottom:858.361200pt;}
.y19d{bottom:859.066000pt;}
.y281{bottom:859.088933pt;}
.y2ac{bottom:859.102800pt;}
.y79{bottom:859.312933pt;}
.y111{bottom:859.434267pt;}
.y46{bottom:864.000533pt;}
.y13d{bottom:865.537867pt;}
.y223{bottom:867.247067pt;}
.yd{bottom:867.397333pt;}
.yde{bottom:872.252800pt;}
.y2c6{bottom:872.670667pt;}
.y323{bottom:872.938133pt;}
.y1c9{bottom:873.128000pt;}
.y357{bottom:873.303600pt;}
.y1f7{bottom:873.534800pt;}
.y16c{bottom:873.540933pt;}
.y389{bottom:873.680933pt;}
.y2f1{bottom:874.546533pt;}
.yad{bottom:874.581733pt;}
.y19c{bottom:875.144533pt;}
.y253{bottom:875.162533pt;}
.y280{bottom:875.164133pt;}
.y2ab{bottom:875.174933pt;}
.y78{bottom:875.343067pt;}
.y110{bottom:875.440133pt;}
.y13c{bottom:881.573733pt;}
.y222{bottom:883.319200pt;}
.y16{bottom:883.556267pt;}
.y322{bottom:889.124400pt;}
.yc{bottom:889.512400pt;}
.y1f6{bottom:889.571333pt;}
.y16b{bottom:889.575867pt;}
.y388{bottom:889.680933pt;}
.y1c8{bottom:889.712267pt;}
.y356{bottom:889.841867pt;}
.y2f0{bottom:890.775733pt;}
.yac{bottom:890.802133pt;}
.y19b{bottom:891.223200pt;}
.y252{bottom:891.237733pt;}
.y27f{bottom:891.239467pt;}
.y2aa{bottom:891.247067pt;}
.y77{bottom:891.373067pt;}
.y10f{bottom:891.446000pt;}
.y2c5{bottom:897.007467pt;}
.y13b{bottom:897.609467pt;}
.y15{bottom:900.622933pt;}
.y321{bottom:905.310533pt;}
.y1f5{bottom:905.607867pt;}
.y16a{bottom:905.610933pt;}
.y387{bottom:905.680933pt;}
.y1c7{bottom:906.296667pt;}
.y355{bottom:906.380267pt;}
.y2ef{bottom:907.004933pt;}
.yab{bottom:907.022667pt;}
.y19a{bottom:907.301733pt;}
.y251{bottom:907.312933pt;}
.y27e{bottom:907.314800pt;}
.y2a9{bottom:907.319200pt;}
.y76{bottom:907.403333pt;}
.y10e{bottom:907.451867pt;}
.y45{bottom:907.491333pt;}
.yb{bottom:908.915333pt;}
.y14{bottom:919.822933pt;}
.y2c4{bottom:921.344267pt;}
.y320{bottom:921.496667pt;}
.y1f4{bottom:921.644400pt;}
.y13a{bottom:921.645200pt;}
.y169{bottom:921.646000pt;}
.y386{bottom:921.680933pt;}
.y1c6{bottom:922.881067pt;}
.y354{bottom:922.918667pt;}
.y2ee{bottom:923.234267pt;}
.yaa{bottom:923.243067pt;}
.y199{bottom:923.380267pt;}
.y250{bottom:923.388267pt;}
.y27d{bottom:923.390000pt;}
.y221{bottom:923.391333pt;}
.y75{bottom:923.433467pt;}
.y10d{bottom:923.457733pt;}
.ydd{bottom:923.458133pt;}
.yf{bottom:928.325867pt;}
.y44{bottom:930.182267pt;}
.y139{bottom:937.680933pt;}
.y31f{bottom:937.682800pt;}
.y2{bottom:938.102533pt;}
.y13{bottom:939.022933pt;}
.y353{bottom:939.457067pt;}
.y198{bottom:939.458800pt;}
.y74{bottom:939.463600pt;}
.y1c5{bottom:939.465333pt;}
.y10{bottom:947.728667pt;}
.y12{bottom:958.222933pt;}
.y11{bottom:967.131467pt;}
.y73{bottom:975.457067pt;}
.ya9{bottom:976.057067pt;}
.y43{bottom:982.802800pt;}
.hc{height:35.554688pt;}
.ha{height:35.578125pt;}
.hd{height:39.479167pt;}
.he{height:39.505208pt;}
.h8{height:39.531250pt;}
.hb{height:43.484375pt;}
.h6{height:46.945312pt;}
.h7{height:47.437500pt;}
.h1{height:47.500000pt;}
.h9{height:52.161458pt;}
.h5{height:62.593750pt;}
.h3{height:67.687500pt;}
.h4{height:73.026042pt;}
.h2{height:284.250000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.xa{left:-462.000000pt;}
.x0{left:0.000000pt;}
.xb{left:96.000000pt;}
.x2{left:97.533333pt;}
.xc{left:116.000000pt;}
.x11{left:120.000000pt;}
.xf{left:156.000000pt;}
.x4{left:175.247733pt;}
.x1{left:202.425600pt;}
.xd{left:207.866667pt;}
.x5{left:229.990400pt;}
.x9{left:308.359333pt;}
.x7{left:345.330267pt;}
.x6{left:350.659067pt;}
.x8{left:353.283467pt;}
.x3{left:380.015600pt;}
.x10{left:489.232267pt;}
.xe{left:496.888533pt;}
}




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