
    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_bdb151ad3f886924761f4de8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_156e6fd9f85394eadf965e12.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_fda293f2681442c27d4344d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_2d4324d299102de04a55e271.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4e05ae2be18e5c95491cf2a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.723633;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_f62e84d73e8166b12cd1848c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.161133;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_cd313dc18c6b10e1751e2ec4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986816;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_67b99bb66f1ba0d388498036.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.986816;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_f8f0bb3f494f907002af6f0a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.975098;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_09acc07834491985df429ead.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_b2286283850558f415de661f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_461c524096d4383a4a94513a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.975098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0972c7a82d7adcb78d7822d7.woff2')format("woff");}.fff{font-family:fff;line-height:0.917000;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:ff10;src:url('chunks/assets/font_84ac46594ee080c551cac45b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.986816;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:ff11;src:url('chunks/assets/font_fc68d058698f15604aa81b00.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_54dffc02430b3da0f30889ba.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.986816;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:ff13;src:url('chunks/assets/font_486431e68efce67a9fb45fb8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.682617;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.860000px;}
.v3{vertical-align:-10.080000px;}
.v4{vertical-align:-8.945400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:7.145400px;}
.v1{vertical-align:15.840600px;}
.v6{vertical-align:30.000000px;}
.v7{vertical-align:37.008000px;}
.ls1a{letter-spacing:-1.296000px;}
.ls19{letter-spacing:-1.188000px;}
.ls18{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-0.702000px;}
.ls38{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.594000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls3f{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.378000px;}
.ls2d{letter-spacing:-0.270000px;}
.ls46{letter-spacing:-0.240000px;}
.ls2e{letter-spacing:-0.216000px;}
.ls4d{letter-spacing:-0.192000px;}
.ls21{letter-spacing:-0.162000px;}
.ls49{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.108000px;}
.ls45{letter-spacing:-0.096000px;}
.ls17{letter-spacing:-0.054000px;}
.ls4b{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.002400px;}
.ls5{letter-spacing:0.013500px;}
.ls2a{letter-spacing:0.054000px;}
.ls42{letter-spacing:0.096000px;}
.ls11{letter-spacing:0.108000px;}
.ls48{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.162000px;}
.ls43{letter-spacing:0.192000px;}
.ls1{letter-spacing:0.216000px;}
.ls41{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.270000px;}
.ls47{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.324000px;}
.ls44{letter-spacing:0.336000px;}
.ls14{letter-spacing:0.378000px;}
.ls15{letter-spacing:0.432000px;}
.ls39{letter-spacing:0.486000px;}
.ls22{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.549126px;}
.ls3a{letter-spacing:0.594000px;}
.ls25{letter-spacing:0.702000px;}
.lsc{letter-spacing:0.705612px;}
.ls28{letter-spacing:0.756000px;}
.ls2f{letter-spacing:0.810000px;}
.ls23{letter-spacing:0.864000px;}
.ls24{letter-spacing:0.918000px;}
.ls40{letter-spacing:0.960000px;}
.ls35{letter-spacing:0.972000px;}
.ls2c{letter-spacing:1.026000px;}
.ls3c{letter-spacing:1.050000px;}
.ls26{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.098246px;}
.ls37{letter-spacing:1.134000px;}
.ls29{letter-spacing:1.188000px;}
.ls2b{letter-spacing:1.200000px;}
.ls30{letter-spacing:1.242000px;}
.lse{letter-spacing:1.254012px;}
.ls33{letter-spacing:1.296000px;}
.ls32{letter-spacing:1.350000px;}
.lsd{letter-spacing:1.384212px;}
.ls10{letter-spacing:1.384812px;}
.ls27{letter-spacing:1.404000px;}
.ls34{letter-spacing:1.458000px;}
.ls36{letter-spacing:1.512000px;}
.ls3e{letter-spacing:1.566000px;}
.ls3d{letter-spacing:1.836000px;}
.ls6{letter-spacing:1.969200px;}
.ls9{letter-spacing:1.976400px;}
.lsa{letter-spacing:1.980000px;}
.lsb{letter-spacing:2.039616px;}
.ls2{letter-spacing:2.205000px;}
.ls31{letter-spacing:3.882600px;}
.ls4c{letter-spacing:4.987200px;}
.ls4a{letter-spacing:5.568000px;}
.ls8{letter-spacing:5.616000px;}
.ls4{letter-spacing:25.996200px;}
.ls3b{letter-spacing:295.248000px;}
.ls7{letter-spacing:400.392000px;}
.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;}
}
.ws7{word-spacing:-22.027853px;}
.wsa1{word-spacing:-18.216000px;}
.ws8{word-spacing:-16.693430px;}
.ws50{word-spacing:-15.930000px;}
.ws65{word-spacing:-15.390000px;}
.ws9a{word-spacing:-14.850000px;}
.wsac{word-spacing:-13.200000px;}
.ws6b{word-spacing:-13.152000px;}
.wsad{word-spacing:-13.056000px;}
.ws7d{word-spacing:-12.600000px;}
.ws1{word-spacing:-10.080000px;}
.ws6{word-spacing:-9.936000px;}
.ws2{word-spacing:-9.864000px;}
.ws5{word-spacing:-8.662500px;}
.wsd{word-spacing:-5.292000px;}
.ws15{word-spacing:-2.039616px;}
.ws83{word-spacing:-1.836000px;}
.ws84{word-spacing:-1.566000px;}
.ws58{word-spacing:-1.512000px;}
.ws3e{word-spacing:-1.404000px;}
.ws52{word-spacing:-1.350000px;}
.ws53{word-spacing:-1.296000px;}
.ws51{word-spacing:-1.242000px;}
.ws49{word-spacing:-1.200000px;}
.ws6f{word-spacing:-1.188000px;}
.ws59{word-spacing:-1.134000px;}
.ws3d{word-spacing:-1.080000px;}
.ws4a{word-spacing:-1.026000px;}
.ws56{word-spacing:-0.972000px;}
.ws55{word-spacing:-0.918000px;}
.ws3a{word-spacing:-0.864000px;}
.ws4c{word-spacing:-0.810000px;}
.ws40{word-spacing:-0.756000px;}
.ws3b{word-spacing:-0.702000px;}
.ws63{word-spacing:-0.594000px;}
.ws36{word-spacing:-0.540000px;}
.ws61{word-spacing:-0.486000px;}
.ws27{word-spacing:-0.432000px;}
.ws1b{word-spacing:-0.378000px;}
.wsa2{word-spacing:-0.336000px;}
.ws2e{word-spacing:-0.324000px;}
.wsa5{word-spacing:-0.288000px;}
.ws19{word-spacing:-0.270000px;}
.wsa7{word-spacing:-0.240000px;}
.ws80{word-spacing:-0.216000px;}
.wsab{word-spacing:-0.192000px;}
.ws2b{word-spacing:-0.162000px;}
.ws1c{word-spacing:-0.108000px;}
.wsa8{word-spacing:-0.096000px;}
.ws48{word-spacing:-0.054000px;}
.ws3{word-spacing:-0.036000px;}
.ws0{word-spacing:0.000000px;}
.wsb3{word-spacing:0.048000px;}
.ws26{word-spacing:0.054000px;}
.wsa3{word-spacing:0.096000px;}
.ws1a{word-spacing:0.108000px;}
.wsaa{word-spacing:0.144000px;}
.ws28{word-spacing:0.162000px;}
.wsb8{word-spacing:0.192000px;}
.ws42{word-spacing:0.216000px;}
.wsa4{word-spacing:0.240000px;}
.ws41{word-spacing:0.270000px;}
.ws24{word-spacing:0.378000px;}
.ws30{word-spacing:0.432000px;}
.ws7e{word-spacing:0.480000px;}
.ws21{word-spacing:0.540000px;}
.wsb4{word-spacing:0.576000px;}
.ws23{word-spacing:0.594000px;}
.ws5a{word-spacing:0.600000px;}
.ws22{word-spacing:0.702000px;}
.ws82{word-spacing:0.756000px;}
.ws72{word-spacing:0.864000px;}
.ws25{word-spacing:0.918000px;}
.ws1e{word-spacing:1.080000px;}
.ws1f{word-spacing:1.188000px;}
.ws20{word-spacing:1.296000px;}
.ws2a{word-spacing:1.404000px;}
.ws32{word-spacing:1.458000px;}
.ws5d{word-spacing:1.566000px;}
.ws2f{word-spacing:1.620000px;}
.ws66{word-spacing:1.782000px;}
.wsb0{word-spacing:1.824000px;}
.wsb{word-spacing:1.980000px;}
.wsa6{word-spacing:2.016000px;}
.ws4d{word-spacing:2.052000px;}
.wse{word-spacing:2.106000px;}
.ws5e{word-spacing:2.160000px;}
.ws4b{word-spacing:2.214000px;}
.ws9e{word-spacing:2.268000px;}
.wsc{word-spacing:2.310000px;}
.ws39{word-spacing:2.322000px;}
.wsb9{word-spacing:2.352000px;}
.ws43{word-spacing:2.376000px;}
.wsf{word-spacing:2.394000px;}
.ws5c{word-spacing:2.484000px;}
.ws9d{word-spacing:2.538000px;}
.ws2d{word-spacing:2.592000px;}
.ws10{word-spacing:2.640000px;}
.ws5b{word-spacing:2.700000px;}
.ws12{word-spacing:2.736000px;}
.ws4e{word-spacing:2.754000px;}
.ws11{word-spacing:2.772000px;}
.ws74{word-spacing:2.805000px;}
.ws81{word-spacing:2.862000px;}
.ws14{word-spacing:2.916000px;}
.ws1d{word-spacing:2.970000px;}
.ws71{word-spacing:3.132000px;}
.ws45{word-spacing:3.240000px;}
.ws67{word-spacing:3.294000px;}
.ws57{word-spacing:3.402000px;}
.wsa{word-spacing:3.492000px;}
.wsb6{word-spacing:3.552000px;}
.ws9f{word-spacing:3.564000px;}
.wsb2{word-spacing:3.648000px;}
.ws33{word-spacing:3.672000px;}
.ws47{word-spacing:3.726000px;}
.ws64{word-spacing:3.780000px;}
.ws13{word-spacing:3.888000px;}
.wsb7{word-spacing:3.936000px;}
.ws18{word-spacing:3.960000px;}
.wsaf{word-spacing:3.984000px;}
.ws46{word-spacing:3.996000px;}
.ws60{word-spacing:4.104000px;}
.ws68{word-spacing:4.158000px;}
.ws9{word-spacing:4.248000px;}
.ws62{word-spacing:4.320000px;}
.wsa0{word-spacing:4.590000px;}
.ws54{word-spacing:4.644000px;}
.ws9c{word-spacing:4.698000px;}
.ws16{word-spacing:4.752000px;}
.ws9b{word-spacing:5.022000px;}
.wsb5{word-spacing:5.040000px;}
.ws44{word-spacing:5.184000px;}
.wsa9{word-spacing:5.232000px;}
.ws5f{word-spacing:5.238000px;}
.ws70{word-spacing:5.400000px;}
.ws73{word-spacing:5.670000px;}
.wsae{word-spacing:5.712000px;}
.ws3c{word-spacing:5.724000px;}
.ws3f{word-spacing:5.886000px;}
.ws17{word-spacing:5.940000px;}
.ws31{word-spacing:5.994000px;}
.ws6e{word-spacing:6.048000px;}
.wsb1{word-spacing:6.144000px;}
.ws4f{word-spacing:6.210000px;}
.ws37{word-spacing:6.264000px;}
.ws35{word-spacing:6.372000px;}
.ws99{word-spacing:6.642000px;}
.ws38{word-spacing:6.696000px;}
.ws34{word-spacing:6.858000px;}
.ws2c{word-spacing:7.182000px;}
.ws7f{word-spacing:7.236000px;}
.ws4{word-spacing:46.896600px;}
.ws6a{word-spacing:76.992000px;}
.ws98{word-spacing:78.864000px;}
.ws94{word-spacing:94.512000px;}
.ws95{word-spacing:95.280000px;}
.ws88{word-spacing:118.560000px;}
.ws96{word-spacing:125.280000px;}
.ws87{word-spacing:126.864000px;}
.ws92{word-spacing:127.632000px;}
.ws97{word-spacing:137.280000px;}
.ws85{word-spacing:138.576000px;}
.ws8a{word-spacing:139.632000px;}
.ws86{word-spacing:139.920000px;}
.ws8d{word-spacing:151.632000px;}
.ws93{word-spacing:174.144000px;}
.ws91{word-spacing:181.776000px;}
.ws8f{word-spacing:182.208000px;}
.ws8e{word-spacing:184.560000px;}
.ws90{word-spacing:189.648000px;}
.ws8b{word-spacing:193.488000px;}
.ws8c{word-spacing:210.720000px;}
.ws89{word-spacing:223.728000px;}
.ws6c{word-spacing:237.792000px;}
.ws6d{word-spacing:243.264000px;}
.ws76{word-spacing:256.224000px;}
.ws75{word-spacing:269.136000px;}
.ws79{word-spacing:282.096000px;}
.ws29{word-spacing:456.077400px;}
.ws69{word-spacing:505.200000px;}
.ws7b{word-spacing:1031.280000px;}
.ws7a{word-spacing:1050.744000px;}
.ws78{word-spacing:1077.072000px;}
.ws7c{word-spacing:1085.904000px;}
.ws77{word-spacing:1148.592000px;}
._c{margin-left:-26.628000px;}
._3e{margin-left:-13.152000px;}
._2d{margin-left:-6.492000px;}
._d{margin-left:-5.238000px;}
._0{margin-left:-4.237800px;}
._3{margin-left:-2.620800px;}
._2{margin-left:-1.170000px;}
._7{width:1.453200px;}
._5{width:2.616000px;}
._b{width:3.642000px;}
._8{width:4.886400px;}
._9{width:5.990400px;}
._1{width:7.250400px;}
._a{width:8.344800px;}
._f{width:9.473400px;}
._41{width:11.014200px;}
._2e{width:12.366000px;}
._6{width:59.143200px;}
._4{width:60.450600px;}
._40{width:99.552000px;}
._33{width:133.488000px;}
._3b{width:138.432000px;}
._32{width:141.330000px;}
._31{width:143.136000px;}
._3d{width:150.432000px;}
._37{width:152.784000px;}
._2f{width:160.896000px;}
._30{width:162.864000px;}
._35{width:164.784000px;}
._36{width:189.072000px;}
._38{width:198.210000px;}
._34{width:204.576000px;}
._3c{width:217.392000px;}
._3f{width:248.448000px;}
._15{width:256.416000px;}
._39{width:285.072000px;}
._20{width:312.342000px;}
._1e{width:315.168000px;}
._3a{width:337.266000px;}
._21{width:346.848000px;}
._1f{width:401.328000px;}
._17{width:440.208000px;}
._2c{width:468.133800px;}
._10{width:585.037800px;}
._2a{width:589.213800px;}
._25{width:666.288000px;}
._22{width:680.352000px;}
._18{width:730.368000px;}
._26{width:773.424000px;}
._29{width:784.416000px;}
._1b{width:819.312000px;}
._1c{width:843.816000px;}
._19{width:848.544000px;}
._2b{width:865.032000px;}
._16{width:871.560000px;}
._28{width:878.256000px;}
._e{width:894.661800px;}
._14{width:899.664000px;}
._13{width:912.528000px;}
._24{width:918.288000px;}
._23{width:939.552000px;}
._1d{width:983.280000px;}
._27{width:1053.168000px;}
._11{width:1073.260800px;}
._1a{width:1107.264000px;}
._12{width:1141.824000px;}
.fc5{color:rgb(105,62,21);}
.fc4{color:rgb(150,109,66);}
.fc3{color:rgb(91,50,12);}
.fc7{color:rgb(42,62,146);}
.fc2{color:rgb(120,76,33);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.500000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:37.800000px;}
.fs6{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:50.400000px;}
.fs10{font-size:51.000000px;}
.fsf{font-size:54.000000px;}
.fsd{font-size:54.912600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fse{font-size:66.000000px;}
.fsb{font-size:67.987200px;}
.fsc{font-size:70.602000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:49.760250px;}
.y24{bottom:61.757250px;}
.y5{bottom:66.525004px;}
.y23{bottom:73.754250px;}
.yac{bottom:80.953200px;}
.y232{bottom:82.417200px;}
.y1ea{bottom:83.152050px;}
.y20d{bottom:84.498750px;}
.y160{bottom:84.505350px;}
.y233{bottom:85.747950px;}
.y23e{bottom:85.748100px;}
.ycd{bottom:87.093450px;}
.y2be{bottom:87.697800px;}
.y235{bottom:90.557850px;}
.y236{bottom:90.569850px;}
.y237{bottom:90.581850px;}
.y238{bottom:90.593850px;}
.y239{bottom:90.605850px;}
.y23a{bottom:90.629850px;}
.y23b{bottom:90.653850px;}
.y23c{bottom:90.677850px;}
.y23d{bottom:90.701850px;}
.y254{bottom:91.843500px;}
.y17d{bottom:92.665200px;}
.yf3{bottom:93.091500px;}
.y83{bottom:94.105500px;}
.y2e7{bottom:94.437000px;}
.y4{bottom:97.125005px;}
.y1b2{bottom:98.851200px;}
.y115{bottom:100.146750px;}
.y26{bottom:100.243950px;}
.y19d{bottom:100.431600px;}
.yab{bottom:100.447200px;}
.y231{bottom:101.911200px;}
.y1e9{bottom:102.646050px;}
.y292{bottom:102.981900px;}
.y20c{bottom:103.992750px;}
.y15f{bottom:103.999350px;}
.y349{bottom:106.040850px;}
.ycc{bottom:106.587450px;}
.y359{bottom:106.640850px;}
.y317{bottom:106.808700px;}
.y253{bottom:106.843500px;}
.y2bd{bottom:107.191800px;}
.y1b1{bottom:108.115200px;}
.y17c{bottom:112.159200px;}
.yf2{bottom:112.585500px;}
.y82{bottom:113.599500px;}
.y2e6{bottom:113.931000px;}
.y256{bottom:114.343500px;}
.y291{bottom:117.981900px;}
.y13d{bottom:118.562850px;}
.y19c{bottom:119.925600px;}
.yaa{bottom:119.941200px;}
.y230{bottom:121.405200px;}
.y252{bottom:121.843500px;}
.y1e8{bottom:122.140050px;}
.y348{bottom:122.540850px;}
.y358{bottom:122.840850px;}
.y316{bottom:123.308700px;}
.y20b{bottom:123.486750px;}
.y15e{bottom:123.493350px;}
.y36c{bottom:123.740850px;}
.ycb{bottom:126.081450px;}
.y2bc{bottom:126.685800px;}
.y114{bottom:128.145750px;}
.y255{bottom:129.343500px;}
.y17b{bottom:131.653200px;}
.yf1{bottom:132.079500px;}
.y290{bottom:132.981900px;}
.y81{bottom:133.093500px;}
.y251{bottom:136.843500px;}
.y13c{bottom:138.056850px;}
.y1b0{bottom:138.871200px;}
.y347{bottom:139.040850px;}
.y22{bottom:139.264499px;}
.y357{bottom:139.340850px;}
.y19b{bottom:139.419600px;}
.ya9{bottom:139.435200px;}
.y57{bottom:139.556100px;}
.y315{bottom:139.808700px;}
.y36b{bottom:139.940850px;}
.y22f{bottom:140.899200px;}
.y1e7{bottom:141.634050px;}
.y20a{bottom:142.980750px;}
.y15d{bottom:142.987350px;}
.yca{bottom:145.575450px;}
.y2bb{bottom:146.179800px;}
.y2e5{bottom:146.186850px;}
.y1af{bottom:146.371200px;}
.y113{bottom:147.639750px;}
.y28f{bottom:147.981900px;}
.y17a{bottom:151.147200px;}
.yf0{bottom:151.573500px;}
.y250{bottom:151.843500px;}
.y80{bottom:152.587500px;}
.y346{bottom:155.540850px;}
.y356{bottom:155.840850px;}
.y314{bottom:156.308700px;}
.y36a{bottom:156.440850px;}
.y13b{bottom:157.550850px;}
.y19a{bottom:158.913600px;}
.ya8{bottom:158.929200px;}
.y56{bottom:159.050100px;}
.y22e{bottom:160.393200px;}
.y1e6{bottom:161.128050px;}
.y209{bottom:162.474750px;}
.y15c{bottom:162.481350px;}
.y28e{bottom:162.981900px;}
.yc9{bottom:165.069450px;}
.y2ba{bottom:165.673800px;}
.yef{bottom:171.067500px;}
.y345{bottom:172.040850px;}
.y7f{bottom:172.081500px;}
.y313{bottom:172.808700px;}
.y369{bottom:172.940850px;}
.y112{bottom:175.643700px;}
.y13a{bottom:177.044850px;}
.y234{bottom:177.413850px;}
.y24f{bottom:177.583500px;}
.y199{bottom:178.407600px;}
.ya7{bottom:178.423200px;}
.y55{bottom:178.544100px;}
.y179{bottom:179.146200px;}
.y22d{bottom:179.887200px;}
.y208{bottom:181.968750px;}
.y1ae{bottom:184.051950px;}
.yc8{bottom:184.563450px;}
.y2b9{bottom:185.167800px;}
.y28d{bottom:187.029900px;}
.y344{bottom:188.540850px;}
.y368{bottom:189.140850px;}
.y312{bottom:189.308700px;}
.y15b{bottom:190.480350px;}
.yee{bottom:190.561500px;}
.y2e4{bottom:191.570700px;}
.y7e{bottom:191.575500px;}
.y24e{bottom:192.583500px;}
.y1e5{bottom:193.383900px;}
.y111{bottom:193.643700px;}
.y139{bottom:196.538850px;}
.y19{bottom:196.933500px;}
.y198{bottom:197.901600px;}
.ya6{bottom:197.917200px;}
.y54{bottom:198.038100px;}
.y1ad{bottom:199.351950px;}
.y22c{bottom:199.381200px;}
.y24b{bottom:200.083500px;}
.y207{bottom:201.462750px;}
.y28c{bottom:202.029900px;}
.yc7{bottom:204.057450px;}
.y2b8{bottom:204.661800px;}
.y343{bottom:205.040850px;}
.y367{bottom:205.640850px;}
.y311{bottom:205.808700px;}
.y178{bottom:207.145200px;}
.y24d{bottom:207.583500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y2e3{bottom:211.064700px;}
.y7d{bottom:211.069500px;}
.y1e4{bottom:213.973500px;}
.y138{bottom:216.032850px;}
.y28b{bottom:217.029900px;}
.y197{bottom:217.395600px;}
.ya5{bottom:217.411200px;}
.y53{bottom:217.532100px;}
.y15a{bottom:218.479350px;}
.yed{bottom:218.565450px;}
.y206{bottom:220.956750px;}
.y342{bottom:221.540850px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y366{bottom:222.140850px;}
.y310{bottom:222.308700px;}
.y24c{bottom:222.583500px;}
.y2b7{bottom:224.155800px;}
.y177{bottom:226.639200px;}
.y22b{bottom:227.385150px;}
.y1e3{bottom:228.973500px;}
.y2e2{bottom:230.558700px;}
.y7c{bottom:230.563500px;}
.y28a{bottom:232.029900px;}
.yc6{bottom:232.061400px;}
.y110{bottom:232.915500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y137{bottom:235.526850px;}
.y1ac{bottom:235.995750px;}
.ya4{bottom:236.905200px;}
.y52{bottom:237.026100px;}
.y159{bottom:237.973350px;}
.y341{bottom:238.040850px;}
.y365{bottom:238.340850px;}
.y30f{bottom:238.808700px;}
.y205{bottom:240.450750px;}
.y2b6{bottom:243.649800px;}
.y196{bottom:245.399550px;}
.y176{bottom:246.133200px;}
.y289{bottom:247.029900px;}
.y1e2{bottom:247.489500px;}
.y2e1{bottom:250.052700px;}
.y7b{bottom:250.057500px;}
.y10f{bottom:252.409500px;}
.y24a{bottom:252.764250px;}
.y340{bottom:254.540850px;}
.y364{bottom:254.840850px;}
.y136{bottom:255.020850px;}
.y30e{bottom:255.308700px;}
.y1ab{bottom:255.489750px;}
.ya3{bottom:256.399200px;}
.y51{bottom:256.520100px;}
.yec{bottom:257.885250px;}
.y1dd{bottom:258.505500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y204{bottom:259.944750px;}
.y288{bottom:262.029900px;}
.y1e1{bottom:262.489500px;}
.y175{bottom:265.627200px;}
.y158{bottom:265.977150px;}
.y286{bottom:266.553900px;}
.y22a{bottom:266.794950px;}
.y2e0{bottom:269.546700px;}
.y7a{bottom:269.551500px;}
.y33f{bottom:271.040850px;}
.y363{bottom:271.340850px;}
.yc5{bottom:271.363200px;}
.y30d{bottom:271.808700px;}
.y10e{bottom:271.903500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y1dc{bottom:273.505500px;}
.y135{bottom:274.514850px;}
.y1aa{bottom:274.983750px;}
.ya2{bottom:275.893200px;}
.y2b5{bottom:275.905800px;}
.y287{bottom:277.029900px;}
.yeb{bottom:277.379250px;}
.y203{bottom:279.438750px;}
.y1e0{bottom:281.005500px;}
.y285{bottom:281.553900px;}
.y157{bottom:283.977150px;}
.y195{bottom:284.665350px;}
.y1c{bottom:285.118502px;}
.y174{bottom:285.121200px;}
.y13{bottom:285.133499px;}
.y229{bottom:286.288950px;}
.y33e{bottom:287.540850px;}
.y362{bottom:287.840850px;}
.y30c{bottom:288.308700px;}
.y50{bottom:288.776100px;}
.y2df{bottom:289.040700px;}
.y79{bottom:289.045500px;}
.y249{bottom:289.383000px;}
.yc4{bottom:290.857200px;}
.y134{bottom:294.008850px;}
.y1a9{bottom:294.477750px;}
.ya1{bottom:295.387200px;}
.y284{bottom:296.553900px;}
.yea{bottom:296.873250px;}
.y202{bottom:298.932750px;}
.y1df{bottom:299.521500px;}
.y282{bottom:301.077900px;}
.y33d{bottom:304.040850px;}
.y10d{bottom:304.159350px;}
.y361{bottom:304.340850px;}
.y30b{bottom:304.508700px;}
.y173{bottom:304.615200px;}
.y228{bottom:305.782950px;}
.y2de{bottom:308.534700px;}
.y78{bottom:308.539500px;}
.y248{bottom:308.877000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yc3{bottom:310.351200px;}
.y133{bottom:313.502850px;}
.y1a8{bottom:313.971750px;}
.ya0{bottom:314.881200px;}
.y281{bottom:316.077900px;}
.ye9{bottom:316.367250px;}
.y1de{bottom:318.037500px;}
.y201{bottom:318.426750px;}
.y33c{bottom:320.540850px;}
.y30a{bottom:321.008700px;}
.y2b4{bottom:321.157500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y156{bottom:323.394750px;}
.y172{bottom:324.109200px;}
.y227{bottom:325.276950px;}
.y2dd{bottom:328.028700px;}
.y77{bottom:328.033500px;}
.y247{bottom:328.371000px;}
.yc2{bottom:329.845200px;}
.y280{bottom:331.077900px;}
.y132{bottom:332.996850px;}
.y1a7{bottom:333.465750px;}
.ye8{bottom:335.861250px;}
.y194{bottom:336.415350px;}
.y1db{bottom:336.553500px;}
.y33b{bottom:337.040850px;}
.y309{bottom:337.508700px;}
.y200{bottom:337.920750px;}
.y283{bottom:338.577900px;}
.y2b3{bottom:340.651500px;}
.y9f{bottom:342.885150px;}
.y155{bottom:342.888750px;}
.y171{bottom:343.603200px;}
.y226{bottom:344.770950px;}
.y4d{bottom:345.389400px;}
.y27f{bottom:346.077900px;}
.y2dc{bottom:347.522700px;}
.y76{bottom:347.527500px;}
.y246{bottom:347.865000px;}
.y10{bottom:348.133500px;}
.yc1{bottom:349.339200px;}
.y10c{bottom:349.411200px;}
.y131{bottom:352.490850px;}
.y1a6{bottom:352.959750px;}
.y33a{bottom:353.540850px;}
.y308{bottom:353.708700px;}
.y1da{bottom:355.069500px;}
.ye7{bottom:355.355250px;}
.y1ff{bottom:357.414750px;}
.y2b2{bottom:360.145500px;}
.y27e{bottom:361.077900px;}
.y154{bottom:362.382750px;}
.y170{bottom:363.097200px;}
.y4c{bottom:364.026600px;}
.y225{bottom:364.264950px;}
.y1d6{bottom:366.085500px;}
.y2db{bottom:367.016700px;}
.y75{bottom:367.021500px;}
.y245{bottom:367.359000px;}
.yc0{bottom:368.833200px;}
.y10b{bottom:368.905200px;}
.y339{bottom:370.040850px;}
.y307{bottom:370.208700px;}
.y130{bottom:371.984850px;}
.y1a5{bottom:372.453750px;}
.y1d9{bottom:373.585500px;}
.ye6{bottom:374.849250px;}
.y4b{bottom:376.023600px;}
.y27d{bottom:376.077900px;}
.y1fe{bottom:376.908750px;}
.y2b1{bottom:379.639500px;}
.y1d5{bottom:381.085500px;}
.y193{bottom:381.679200px;}
.y153{bottom:381.876750px;}
.y9e{bottom:382.270950px;}
.y16f{bottom:382.591200px;}
.y224{bottom:383.758950px;}
.y355{bottom:386.240850px;}
.y2da{bottom:386.510700px;}
.y74{bottom:386.515500px;}
.y338{bottom:386.540850px;}
.y306{bottom:386.708700px;}
.yf{bottom:386.785499px;}
.y244{bottom:386.853000px;}
.ybf{bottom:388.327200px;}
.y10a{bottom:388.399200px;}
.y12f{bottom:391.478850px;}
.y1a4{bottom:391.947750px;}
.y1d8{bottom:392.101500px;}
.ye5{bottom:394.343250px;}
.y1fd{bottom:396.402750px;}
.y4a{bottom:397.182600px;}
.y2b0{bottom:399.133500px;}
.y27c{bottom:400.125900px;}
.y192{bottom:401.173200px;}
.y152{bottom:401.370750px;}
.y9d{bottom:401.764950px;}
.y16e{bottom:402.085200px;}
.y354{bottom:402.740850px;}
.y337{bottom:403.040850px;}
.y305{bottom:403.208700px;}
.y223{bottom:403.252950px;}
.y2d9{bottom:406.004700px;}
.y73{bottom:406.009500px;}
.y243{bottom:406.347000px;}
.ybe{bottom:407.821200px;}
.y109{bottom:407.893200px;}
.ye{bottom:408.044999px;}
.y1d7{bottom:410.617500px;}
.y12e{bottom:410.972850px;}
.y1a3{bottom:411.441750px;}
.ye4{bottom:413.837250px;}
.y27b{bottom:415.125900px;}
.y1fc{bottom:415.896750px;}
.y49{bottom:418.341600px;}
.y2af{bottom:418.627500px;}
.y353{bottom:419.240850px;}
.y336{bottom:419.540850px;}
.y304{bottom:419.708700px;}
.y191{bottom:420.667200px;}
.y151{bottom:420.864750px;}
.y9c{bottom:421.258950px;}
.y222{bottom:422.746950px;}
.y2d8{bottom:425.498700px;}
.y72{bottom:425.503500px;}
.y242{bottom:425.841000px;}
.y108{bottom:427.387200px;}
.y1d4{bottom:429.133500px;}
.y16d{bottom:430.084200px;}
.y27a{bottom:430.125900px;}
.y12d{bottom:430.466850px;}
.y1a2{bottom:430.935750px;}
.ye3{bottom:433.331250px;}
.y1fb{bottom:435.390750px;}
.y352{bottom:435.740850px;}
.ybd{bottom:435.825150px;}
.y335{bottom:436.040850px;}
.y303{bottom:436.208700px;}
.y2ae{bottom:438.121500px;}
.y46{bottom:439.530600px;}
.y190{bottom:440.161200px;}
.y150{bottom:440.358750px;}
.y9b{bottom:440.752950px;}
.y221{bottom:442.240950px;}
.y2d7{bottom:444.992700px;}
.y71{bottom:444.997500px;}
.y279{bottom:445.125900px;}
.y241{bottom:445.335000px;}
.y107{bottom:446.881200px;}
.y1d3{bottom:447.649500px;}
.y12c{bottom:449.960850px;}
.y1a1{bottom:450.429750px;}
.y45{bottom:451.527600px;}
.y351{bottom:452.240850px;}
.y334{bottom:452.540850px;}
.y302{bottom:452.708700px;}
.ye2{bottom:452.825250px;}
.y1fa{bottom:454.884750px;}
.y2ad{bottom:457.615500px;}
.y16c{bottom:458.083200px;}
.y1cf{bottom:458.665500px;}
.y18f{bottom:459.655200px;}
.y14f{bottom:459.852750px;}
.y278{bottom:460.125900px;}
.y9a{bottom:460.246950px;}
.y220{bottom:461.734950px;}
.y44{bottom:463.524600px;}
.y2d6{bottom:464.486700px;}
.y70{bottom:464.491500px;}
.y240{bottom:464.829000px;}
.y1d2{bottom:466.165500px;}
.y106{bottom:466.375200px;}
.y350{bottom:468.740850px;}
.y333{bottom:469.040850px;}
.y301{bottom:469.208700px;}
.y1a0{bottom:469.923750px;}
.y1ce{bottom:473.665500px;}
.y1f9{bottom:474.378750px;}
.y277{bottom:475.125900px;}
.ybc{bottom:475.168950px;}
.y43{bottom:475.521600px;}
.y2ac{bottom:477.109500px;}
.y16b{bottom:477.577200px;}
.y12b{bottom:477.959850px;}
.y18e{bottom:479.149200px;}
.y14e{bottom:479.346750px;}
.y275{bottom:479.649900px;}
.y99{bottom:479.740950px;}
.ye1{bottom:481.129200px;}
.y21f{bottom:481.228950px;}
.y2d5{bottom:483.980700px;}
.y6f{bottom:483.985500px;}
.y23f{bottom:484.323000px;}
.y1d1{bottom:484.681500px;}
.yd{bottom:484.864502px;}
.y34f{bottom:485.240850px;}
.y332{bottom:485.540850px;}
.y300{bottom:485.708700px;}
.y105{bottom:485.869200px;}
.y42{bottom:487.518600px;}
.y19f{bottom:489.417750px;}
.y276{bottom:490.125900px;}
.y1f8{bottom:493.872750px;}
.y274{bottom:494.649900px;}
.ybb{bottom:494.662950px;}
.y2ab{bottom:496.603500px;}
.y12a{bottom:497.453850px;}
.y18d{bottom:498.643200px;}
.y14d{bottom:498.840750px;}
.y98{bottom:499.234950px;}
.y41{bottom:499.515600px;}
.y21e{bottom:500.722950px;}
.y34e{bottom:501.740850px;}
.y331{bottom:502.040850px;}
.y2ff{bottom:502.208700px;}
.yc{bottom:502.864502px;}
.y1d0{bottom:503.197500px;}
.y2d4{bottom:503.474700px;}
.y6e{bottom:503.479500px;}
.y104{bottom:505.363200px;}
.y16a{bottom:505.581000px;}
.y19e{bottom:508.911750px;}
.y40{bottom:511.512600px;}
.y1f7{bottom:513.366750px;}
.yba{bottom:514.156950px;}
.y273{bottom:514.173900px;}
.y2aa{bottom:516.097500px;}
.y18c{bottom:518.137200px;}
.y34d{bottom:518.240850px;}
.y14c{bottom:518.334750px;}
.y258{bottom:518.423850px;}
.y330{bottom:518.540850px;}
.y2fe{bottom:518.708700px;}
.y97{bottom:518.728950px;}
.y21d{bottom:520.216950px;}
.yb{bottom:520.864502px;}
.y1cd{bottom:521.713500px;}
.ye0{bottom:522.237000px;}
.y2d3{bottom:522.968700px;}
.y6d{bottom:522.973500px;}
.y3f{bottom:523.509600px;}
.y103{bottom:524.857200px;}
.y129{bottom:525.452850px;}
.y272{bottom:529.173900px;}
.y1f6{bottom:532.860750px;}
.yb9{bottom:533.650950px;}
.y257{bottom:533.723850px;}
.y360{bottom:534.440850px;}
.y34c{bottom:534.740850px;}
.y32f{bottom:535.040850px;}
.y2fd{bottom:535.208700px;}
.y3e{bottom:535.506600px;}
.y2a9{bottom:535.591500px;}
.y18b{bottom:537.631200px;}
.y14b{bottom:537.828750px;}
.y96{bottom:538.222950px;}
.ya{bottom:538.864499px;}
.y21c{bottom:539.710950px;}
.y1cc{bottom:540.229500px;}
.ydf{bottom:541.731000px;}
.y2d2{bottom:542.462700px;}
.y6c{bottom:542.467500px;}
.y271{bottom:544.173900px;}
.y102{bottom:544.351200px;}
.y128{bottom:544.946850px;}
.y3d{bottom:547.503600px;}
.y1b3{bottom:547.725450px;}
.y35f{bottom:550.940850px;}
.y32e{bottom:551.240850px;}
.y2fc{bottom:551.708700px;}
.y1f5{bottom:552.354750px;}
.y1c7{bottom:553.009500px;}
.yb8{bottom:553.144950px;}
.y2a8{bottom:555.085500px;}
.y259{bottom:556.194300px;}
.y9{bottom:556.864499px;}
.y18a{bottom:557.125200px;}
.y14a{bottom:557.322750px;}
.y95{bottom:557.716950px;}
.y48{bottom:557.778600px;}
.y1cb{bottom:558.745500px;}
.y270{bottom:559.173900px;}
.y21b{bottom:559.204950px;}
.y3c{bottom:559.500600px;}
.yde{bottom:561.225000px;}
.y2d1{bottom:561.956700px;}
.y6b{bottom:561.961500px;}
.y101{bottom:563.845200px;}
.y127{bottom:564.440850px;}
.y35e{bottom:567.440850px;}
.y32d{bottom:567.740850px;}
.y1c6{bottom:568.009500px;}
.y2fb{bottom:568.208700px;}
.y47{bottom:569.778600px;}
.y3b{bottom:571.497600px;}
.y1f4{bottom:571.848750px;}
.yb7{bottom:572.638950px;}
.y26f{bottom:574.173900px;}
.y2a7{bottom:574.579500px;}
.y189{bottom:576.619200px;}
.y149{bottom:576.816750px;}
.y94{bottom:577.210950px;}
.y1ca{bottom:577.261500px;}
.y21a{bottom:578.698950px;}
.ydd{bottom:580.719000px;}
.y2d0{bottom:581.450700px;}
.y6a{bottom:581.455500px;}
.y1c5{bottom:583.009500px;}
.y100{bottom:583.339200px;}
.y3a{bottom:583.494600px;}
.y126{bottom:583.934850px;}
.y35d{bottom:583.940850px;}
.y32c{bottom:584.240850px;}
.y2fa{bottom:584.708700px;}
.y1f3{bottom:591.342750px;}
.yb6{bottom:592.132950px;}
.y2a6{bottom:594.073500px;}
.y1c9{bottom:595.777500px;}
.y188{bottom:596.113200px;}
.y148{bottom:596.310750px;}
.y93{bottom:596.704950px;}
.y219{bottom:598.192950px;}
.y26e{bottom:598.221900px;}
.ydc{bottom:600.213000px;}
.y35c{bottom:600.440850px;}
.y32b{bottom:600.740850px;}
.y2cf{bottom:600.944700px;}
.y69{bottom:600.949500px;}
.y2f9{bottom:601.208700px;}
.yff{bottom:602.833200px;}
.y125{bottom:603.428850px;}
.y39{bottom:609.789450px;}
.y1f2{bottom:610.836750px;}
.yb5{bottom:611.626950px;}
.y26d{bottom:613.221900px;}
.y2a5{bottom:613.567500px;}
.y1c8{bottom:614.293500px;}
.y187{bottom:615.607200px;}
.y92{bottom:616.198950px;}
.y35b{bottom:616.940850px;}
.y32a{bottom:617.240850px;}
.y218{bottom:617.686950px;}
.y2f8{bottom:617.708700px;}
.ydb{bottom:619.707000px;}
.y2ce{bottom:620.438700px;}
.y68{bottom:620.443500px;}
.yfe{bottom:622.327200px;}
.y124{bottom:622.922850px;}
.y147{bottom:624.309750px;}
.y38{bottom:626.421450px;}
.y26c{bottom:628.221900px;}
.y1f1{bottom:630.330750px;}
.yb4{bottom:631.120950px;}
.y1c4{bottom:632.809500px;}
.y35a{bottom:633.440850px;}
.y329{bottom:633.740850px;}
.y2f7{bottom:634.208700px;}
.y186{bottom:635.101200px;}
.y91{bottom:635.692950px;}
.y37{bottom:636.120000px;}
.y217{bottom:637.180950px;}
.yda{bottom:639.201000px;}
.y2cd{bottom:639.932700px;}
.y67{bottom:639.937500px;}
.yfd{bottom:641.821200px;}
.y123{bottom:642.416850px;}
.y26b{bottom:643.221900px;}
.y8{bottom:645.510000px;}
.y36{bottom:649.287000px;}
.y1f0{bottom:649.824750px;}
.y328{bottom:649.940850px;}
.y34b{bottom:650.240850px;}
.yb3{bottom:650.614950px;}
.y2f6{bottom:650.708700px;}
.y1c2{bottom:651.325500px;}
.y2a4{bottom:652.006500px;}
.y146{bottom:652.308750px;}
.y185{bottom:654.595200px;}
.y90{bottom:655.186950px;}
.y216{bottom:656.674950px;}
.y26a{bottom:658.221900px;}
.yd9{bottom:658.695000px;}
.y2cc{bottom:659.426700px;}
.y66{bottom:659.431500px;}
.y169{bottom:661.910850px;}
.y35{bottom:665.919000px;}
.y327{bottom:666.440850px;}
.y34a{bottom:666.740850px;}
.y7{bottom:666.771000px;}
.y2a3{bottom:667.006500px;}
.y2f5{bottom:667.208700px;}
.y1ef{bottom:669.318750px;}
.yfc{bottom:669.825150px;}
.y1c3{bottom:669.841500px;}
.yb2{bottom:670.108950px;}
.y122{bottom:670.415850px;}
.y145{bottom:671.802750px;}
.y269{bottom:673.221900px;}
.y184{bottom:674.089200px;}
.y8f{bottom:674.680950px;}
.y34{bottom:675.618900px;}
.y215{bottom:676.168950px;}
.yd8{bottom:678.189000px;}
.y2cb{bottom:678.920700px;}
.y65{bottom:678.925500px;}
.y168{bottom:681.404850px;}
.y2a2{bottom:682.006500px;}
.y326{bottom:682.940850px;}
.y379{bottom:683.240850px;}
.y2f4{bottom:683.408700px;}
.y268{bottom:688.221900px;}
.y1c1{bottom:688.357500px;}
.y1ee{bottom:688.812750px;}
.yb1{bottom:689.602950px;}
.y121{bottom:689.909850px;}
.y144{bottom:691.296750px;}
.y33{bottom:692.250750px;}
.y183{bottom:693.583200px;}
.y8e{bottom:694.174950px;}
.y214{bottom:695.662950px;}
.y2a1{bottom:697.006500px;}
.y2ca{bottom:698.414700px;}
.y64{bottom:698.419500px;}
.y325{bottom:699.440850px;}
.y378{bottom:699.740850px;}
.y2f3{bottom:699.908700px;}
.y167{bottom:700.898850px;}
.y32{bottom:701.950650px;}
.yd7{bottom:706.192950px;}
.y1c0{bottom:706.873500px;}
.y1ed{bottom:708.306750px;}
.yb0{bottom:709.096950px;}
.yfb{bottom:709.120950px;}
.y143{bottom:710.790750px;}
.y2a0{bottom:712.006500px;}
.y266{bottom:712.269900px;}
.y182{bottom:713.077200px;}
.y8d{bottom:713.668950px;}
.y213{bottom:715.156950px;}
.y324{bottom:715.940850px;}
.y1bd{bottom:716.137500px;}
.y377{bottom:716.240850px;}
.y2f2{bottom:716.408700px;}
.y2c9{bottom:717.908700px;}
.y120{bottom:717.908850px;}
.y63{bottom:717.913500px;}
.y31{bottom:718.582650px;}
.y166{bottom:720.392850px;}
.y1bf{bottom:725.389500px;}
.y6{bottom:726.298500px;}
.y29f{bottom:727.006500px;}
.y265{bottom:727.269900px;}
.y1ec{bottom:727.800750px;}
.yaf{bottom:728.590950px;}
.yfa{bottom:728.614950px;}
.y142{bottom:730.284750px;}
.y323{bottom:732.440850px;}
.y376{bottom:732.740850px;}
.y2f1{bottom:732.908700px;}
.y8c{bottom:733.162950px;}
.y212{bottom:734.650950px;}
.y2c8{bottom:737.402700px;}
.y11f{bottom:737.402850px;}
.y62{bottom:737.407500px;}
.y30{bottom:738.019200px;}
.y165{bottom:739.886850px;}
.y181{bottom:741.081000px;}
.y29e{bottom:742.006500px;}
.y264{bottom:742.269900px;}
.y1be{bottom:743.905500px;}
.yd6{bottom:747.294750px;}
.yae{bottom:748.084950px;}
.yf9{bottom:748.108950px;}
.y322{bottom:748.940850px;}
.y375{bottom:749.240850px;}
.y2f0{bottom:749.408700px;}
.y141{bottom:749.778750px;}
.y3{bottom:752.599495px;}
.y8b{bottom:752.656950px;}
.y211{bottom:754.144950px;}
.y2c7{bottom:756.896700px;}
.y11e{bottom:756.896850px;}
.y61{bottom:756.901500px;}
.y263{bottom:757.269900px;}
.y2f{bottom:757.519200px;}
.y180{bottom:759.081000px;}
.y164{bottom:759.380850px;}
.y29d{bottom:761.374500px;}
.y1bc{bottom:762.421500px;}
.y267{bottom:764.769900px;}
.y321{bottom:765.440850px;}
.y374{bottom:765.740850px;}
.y2ef{bottom:765.908700px;}
.yd5{bottom:766.788750px;}
.yf8{bottom:767.602950px;}
.y140{bottom:769.272750px;}
.y8a{bottom:772.150950px;}
.y262{bottom:772.269900px;}
.yad{bottom:776.088900px;}
.y29c{bottom:776.374500px;}
.y2c6{bottom:776.390700px;}
.y11d{bottom:776.390850px;}
.y60{bottom:776.395500px;}
.y163{bottom:778.874850px;}
.y1bb{bottom:780.937500px;}
.y320{bottom:781.940850px;}
.y210{bottom:782.148900px;}
.y373{bottom:782.240850px;}
.y2ee{bottom:782.408700px;}
.yd4{bottom:786.282750px;}
.y2e{bottom:786.909300px;}
.yf7{bottom:787.096950px;}
.y261{bottom:787.269900px;}
.y13f{bottom:788.766750px;}
.y29b{bottom:791.374500px;}
.y89{bottom:791.644950px;}
.y2c5{bottom:795.884700px;}
.y11c{bottom:795.884850px;}
.y5f{bottom:795.889500px;}
.y162{bottom:798.368850px;}
.y31f{bottom:798.440850px;}
.y372{bottom:798.740850px;}
.y2ed{bottom:798.908700px;}
.y1ba{bottom:799.453500px;}
.y20f{bottom:800.148900px;}
.y260{bottom:802.269900px;}
.y2d{bottom:804.911550px;}
.yd3{bottom:805.776750px;}
.y29a{bottom:806.374500px;}
.yf6{bottom:806.590950px;}
.y17f{bottom:806.878500px;}
.y1b6{bottom:808.717500px;}
.y31e{bottom:814.940850px;}
.y371{bottom:815.240850px;}
.y2c4{bottom:815.378700px;}
.y11b{bottom:815.378850px;}
.y5e{bottom:815.383500px;}
.y2ec{bottom:815.408700px;}
.y13e{bottom:816.765750px;}
.y25f{bottom:817.269900px;}
.y1b9{bottom:817.969500px;}
.y88{bottom:819.648900px;}
.y299{bottom:821.374500px;}
.yd2{bottom:825.270750px;}
.yf5{bottom:826.084950px;}
.y161{bottom:826.367850px;}
.y17e{bottom:826.372500px;}
.y31d{bottom:831.440850px;}
.y370{bottom:831.740850px;}
.y2eb{bottom:831.908700px;}
.y2c3{bottom:834.872700px;}
.y11a{bottom:834.872850px;}
.y5d{bottom:834.877500px;}
.y1b8{bottom:836.485500px;}
.y20e{bottom:839.420700px;}
.y25e{bottom:842.157900px;}
.y298{bottom:842.866500px;}
.yd1{bottom:844.764750px;}
.y31c{bottom:847.940850px;}
.y36f{bottom:848.240850px;}
.y2ea{bottom:848.408700px;}
.yf4{bottom:854.088900px;}
.y2c2{bottom:854.366700px;}
.y119{bottom:854.366850px;}
.y5c{bottom:854.371500px;}
.y1b7{bottom:855.001500px;}
.y25d{bottom:857.157900px;}
.y297{bottom:857.866500px;}
.y87{bottom:858.914700px;}
.yd0{bottom:864.258750px;}
.y31b{bottom:864.440850px;}
.y25a{bottom:864.657900px;}
.y36e{bottom:864.740850px;}
.y2e9{bottom:864.908700px;}
.y294{bottom:865.366500px;}
.y2c{bottom:871.653600px;}
.y25c{bottom:872.157900px;}
.y296{bottom:872.866500px;}
.y2c1{bottom:873.860700px;}
.y118{bottom:873.860850px;}
.y5b{bottom:873.865500px;}
.y1b5{bottom:876.493500px;}
.y86{bottom:878.408700px;}
.y2{bottom:879.369000px;}
.y31a{bottom:880.940850px;}
.y36d{bottom:881.240850px;}
.y2e8{bottom:881.408700px;}
.ycf{bottom:883.752750px;}
.y1b4{bottom:883.993500px;}
.y25b{bottom:887.157900px;}
.y295{bottom:887.866500px;}
.y2b{bottom:891.215700px;}
.y2c0{bottom:893.354700px;}
.y117{bottom:893.354850px;}
.y5a{bottom:893.359500px;}
.y4f{bottom:897.035850px;}
.y319{bottom:897.440850px;}
.y2a{bottom:909.370200px;}
.y85{bottom:910.664700px;}
.yce{bottom:911.756700px;}
.y2bf{bottom:912.848700px;}
.y116{bottom:912.848850px;}
.y59{bottom:912.853500px;}
.y1eb{bottom:913.394850px;}
.y293{bottom:913.917900px;}
.y318{bottom:913.940850px;}
.y4e{bottom:916.378950px;}
.y29{bottom:927.524700px;}
.y28{bottom:945.679200px;}
.y84{bottom:949.519500px;}
.y58{bottom:951.755850px;}
.y1{bottom:966.726000px;}
.y27{bottom:975.454650px;}
.h14{height:23.686523px;}
.h10{height:25.560000px;}
.he{height:25.596000px;}
.hc{height:27.035156px;}
.h18{height:27.070312px;}
.hf{height:27.729000px;}
.h1d{height:28.854600px;}
.h17{height:29.400000px;}
.hd{height:31.541016px;}
.h15{height:31.582031px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h16{height:33.328125px;}
.h25{height:36.046875px;}
.h29{height:36.093750px;}
.h1f{height:37.800000px;}
.h21{height:38.299805px;}
.h26{height:38.349609px;}
.h28{height:38.882812px;}
.h1b{height:40.552734px;}
.h1e{height:40.605469px;}
.h12{height:44.437500px;}
.h11{height:44.850586px;}
.h13{height:45.019514px;}
.h20{height:45.117188px;}
.h7{height:45.960000px;}
.h27{height:47.214844px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1a{height:49.628906px;}
.h1c{height:49.992188px;}
.h19{height:51.186450px;}
.h2{height:55.152000px;}
.h23{height:66.046875px;}
.h22{height:74.437500px;}
.h5{height:78.132000px;}
.h24{height:81.445500px;}
.h4{height:119.055004px;}
.ha{height:1020.472500px;}
.hb{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:714.000000px;}
.w3{width:714.330000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:76.929600px;}
.xc{left:80.787450px;}
.xe{left:85.060800px;}
.x16{left:89.851050px;}
.x10{left:93.543300px;}
.x11{left:97.797900px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x14{left:115.327050px;}
.x19{left:141.306450px;}
.x1a{left:168.306450px;}
.x13{left:182.903100px;}
.x2c{left:190.333950px;}
.x17{left:191.407050px;}
.x1b{left:195.306450px;}
.x26{left:198.837900px;}
.x30{left:200.533950px;}
.x2d{left:202.393950px;}
.x4{left:203.484001px;}
.x29{left:209.025900px;}
.x27{left:210.897900px;}
.x33{left:212.025900px;}
.x1c{left:222.306450px;}
.xf{left:234.981600px;}
.x1d{left:249.306450px;}
.xd{left:250.869450px;}
.x2e{left:275.017950px;}
.x1e{left:276.306450px;}
.x28{left:283.521900px;}
.x1f{left:303.306450px;}
.x20{left:330.306450px;}
.x21{left:357.306450px;}
.x2f{left:374.197950px;}
.x22{left:381.606450px;}
.x2a{left:382.701900px;}
.x23{left:405.906450px;}
.x24{left:431.168850px;}
.x25{left:443.170350px;}
.x3{left:454.959000px;}
.xb{left:465.480600px;}
.x12{left:468.875100px;}
.x15{left:477.379050px;}
.x6{left:489.029100px;}
.x31{left:527.377950px;}
.x32{left:534.241950px;}
.x2b{left:535.857900px;}
.xa{left:554.677950px;}
.x18{left:558.338400px;}
.x8{left:576.020700px;}
.x9{left:590.557950px;}
.x7{left:598.523700px;}
@media print{
.v2{vertical-align:-12.320000pt;}
.v3{vertical-align:-8.960000pt;}
.v4{vertical-align:-7.951467pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:6.351467pt;}
.v1{vertical-align:14.080533pt;}
.v6{vertical-align:26.666667pt;}
.v7{vertical-align:32.896000pt;}
.ls1a{letter-spacing:-1.152000pt;}
.ls19{letter-spacing:-1.056000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.624000pt;}
.ls38{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.528000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls3f{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.336000pt;}
.ls2d{letter-spacing:-0.240000pt;}
.ls46{letter-spacing:-0.213333pt;}
.ls2e{letter-spacing:-0.192000pt;}
.ls4d{letter-spacing:-0.170667pt;}
.ls21{letter-spacing:-0.144000pt;}
.ls49{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls45{letter-spacing:-0.085333pt;}
.ls17{letter-spacing:-0.048000pt;}
.ls4b{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.002133pt;}
.ls5{letter-spacing:0.012000pt;}
.ls2a{letter-spacing:0.048000pt;}
.ls42{letter-spacing:0.085333pt;}
.ls11{letter-spacing:0.096000pt;}
.ls48{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.144000pt;}
.ls43{letter-spacing:0.170667pt;}
.ls1{letter-spacing:0.192000pt;}
.ls41{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.240000pt;}
.ls47{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.288000pt;}
.ls44{letter-spacing:0.298667pt;}
.ls14{letter-spacing:0.336000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls39{letter-spacing:0.432000pt;}
.ls22{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.488112pt;}
.ls3a{letter-spacing:0.528000pt;}
.ls25{letter-spacing:0.624000pt;}
.lsc{letter-spacing:0.627211pt;}
.ls28{letter-spacing:0.672000pt;}
.ls2f{letter-spacing:0.720000pt;}
.ls23{letter-spacing:0.768000pt;}
.ls24{letter-spacing:0.816000pt;}
.ls40{letter-spacing:0.853333pt;}
.ls35{letter-spacing:0.864000pt;}
.ls2c{letter-spacing:0.912000pt;}
.ls3c{letter-spacing:0.933333pt;}
.ls26{letter-spacing:0.960000pt;}
.lsf{letter-spacing:0.976219pt;}
.ls37{letter-spacing:1.008000pt;}
.ls29{letter-spacing:1.056000pt;}
.ls2b{letter-spacing:1.066667pt;}
.ls30{letter-spacing:1.104000pt;}
.lse{letter-spacing:1.114677pt;}
.ls33{letter-spacing:1.152000pt;}
.ls32{letter-spacing:1.200000pt;}
.lsd{letter-spacing:1.230411pt;}
.ls10{letter-spacing:1.230944pt;}
.ls27{letter-spacing:1.248000pt;}
.ls34{letter-spacing:1.296000pt;}
.ls36{letter-spacing:1.344000pt;}
.ls3e{letter-spacing:1.392000pt;}
.ls3d{letter-spacing:1.632000pt;}
.ls6{letter-spacing:1.750400pt;}
.ls9{letter-spacing:1.756800pt;}
.lsa{letter-spacing:1.760000pt;}
.lsb{letter-spacing:1.812992pt;}
.ls2{letter-spacing:1.960000pt;}
.ls31{letter-spacing:3.451200pt;}
.ls4c{letter-spacing:4.433067pt;}
.ls4a{letter-spacing:4.949333pt;}
.ls8{letter-spacing:4.992000pt;}
.ls4{letter-spacing:23.107733pt;}
.ls3b{letter-spacing:262.442667pt;}
.ls7{letter-spacing:355.904000pt;}
.ws7{word-spacing:-19.580314pt;}
.wsa1{word-spacing:-16.192000pt;}
.ws8{word-spacing:-14.838605pt;}
.ws50{word-spacing:-14.160000pt;}
.ws65{word-spacing:-13.680000pt;}
.ws9a{word-spacing:-13.200000pt;}
.wsac{word-spacing:-11.733333pt;}
.ws6b{word-spacing:-11.690667pt;}
.wsad{word-spacing:-11.605333pt;}
.ws7d{word-spacing:-11.200000pt;}
.ws1{word-spacing:-8.960000pt;}
.ws6{word-spacing:-8.832000pt;}
.ws2{word-spacing:-8.768000pt;}
.ws5{word-spacing:-7.700000pt;}
.wsd{word-spacing:-4.704000pt;}
.ws15{word-spacing:-1.812992pt;}
.ws83{word-spacing:-1.632000pt;}
.ws84{word-spacing:-1.392000pt;}
.ws58{word-spacing:-1.344000pt;}
.ws3e{word-spacing:-1.248000pt;}
.ws52{word-spacing:-1.200000pt;}
.ws53{word-spacing:-1.152000pt;}
.ws51{word-spacing:-1.104000pt;}
.ws49{word-spacing:-1.066667pt;}
.ws6f{word-spacing:-1.056000pt;}
.ws59{word-spacing:-1.008000pt;}
.ws3d{word-spacing:-0.960000pt;}
.ws4a{word-spacing:-0.912000pt;}
.ws56{word-spacing:-0.864000pt;}
.ws55{word-spacing:-0.816000pt;}
.ws3a{word-spacing:-0.768000pt;}
.ws4c{word-spacing:-0.720000pt;}
.ws40{word-spacing:-0.672000pt;}
.ws3b{word-spacing:-0.624000pt;}
.ws63{word-spacing:-0.528000pt;}
.ws36{word-spacing:-0.480000pt;}
.ws61{word-spacing:-0.432000pt;}
.ws27{word-spacing:-0.384000pt;}
.ws1b{word-spacing:-0.336000pt;}
.wsa2{word-spacing:-0.298667pt;}
.ws2e{word-spacing:-0.288000pt;}
.wsa5{word-spacing:-0.256000pt;}
.ws19{word-spacing:-0.240000pt;}
.wsa7{word-spacing:-0.213333pt;}
.ws80{word-spacing:-0.192000pt;}
.wsab{word-spacing:-0.170667pt;}
.ws2b{word-spacing:-0.144000pt;}
.ws1c{word-spacing:-0.096000pt;}
.wsa8{word-spacing:-0.085333pt;}
.ws48{word-spacing:-0.048000pt;}
.ws3{word-spacing:-0.032000pt;}
.ws0{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.042667pt;}
.ws26{word-spacing:0.048000pt;}
.wsa3{word-spacing:0.085333pt;}
.ws1a{word-spacing:0.096000pt;}
.wsaa{word-spacing:0.128000pt;}
.ws28{word-spacing:0.144000pt;}
.wsb8{word-spacing:0.170667pt;}
.ws42{word-spacing:0.192000pt;}
.wsa4{word-spacing:0.213333pt;}
.ws41{word-spacing:0.240000pt;}
.ws24{word-spacing:0.336000pt;}
.ws30{word-spacing:0.384000pt;}
.ws7e{word-spacing:0.426667pt;}
.ws21{word-spacing:0.480000pt;}
.wsb4{word-spacing:0.512000pt;}
.ws23{word-spacing:0.528000pt;}
.ws5a{word-spacing:0.533333pt;}
.ws22{word-spacing:0.624000pt;}
.ws82{word-spacing:0.672000pt;}
.ws72{word-spacing:0.768000pt;}
.ws25{word-spacing:0.816000pt;}
.ws1e{word-spacing:0.960000pt;}
.ws1f{word-spacing:1.056000pt;}
.ws20{word-spacing:1.152000pt;}
.ws2a{word-spacing:1.248000pt;}
.ws32{word-spacing:1.296000pt;}
.ws5d{word-spacing:1.392000pt;}
.ws2f{word-spacing:1.440000pt;}
.ws66{word-spacing:1.584000pt;}
.wsb0{word-spacing:1.621333pt;}
.wsb{word-spacing:1.760000pt;}
.wsa6{word-spacing:1.792000pt;}
.ws4d{word-spacing:1.824000pt;}
.wse{word-spacing:1.872000pt;}
.ws5e{word-spacing:1.920000pt;}
.ws4b{word-spacing:1.968000pt;}
.ws9e{word-spacing:2.016000pt;}
.wsc{word-spacing:2.053333pt;}
.ws39{word-spacing:2.064000pt;}
.wsb9{word-spacing:2.090667pt;}
.ws43{word-spacing:2.112000pt;}
.wsf{word-spacing:2.128000pt;}
.ws5c{word-spacing:2.208000pt;}
.ws9d{word-spacing:2.256000pt;}
.ws2d{word-spacing:2.304000pt;}
.ws10{word-spacing:2.346667pt;}
.ws5b{word-spacing:2.400000pt;}
.ws12{word-spacing:2.432000pt;}
.ws4e{word-spacing:2.448000pt;}
.ws11{word-spacing:2.464000pt;}
.ws74{word-spacing:2.493333pt;}
.ws81{word-spacing:2.544000pt;}
.ws14{word-spacing:2.592000pt;}
.ws1d{word-spacing:2.640000pt;}
.ws71{word-spacing:2.784000pt;}
.ws45{word-spacing:2.880000pt;}
.ws67{word-spacing:2.928000pt;}
.ws57{word-spacing:3.024000pt;}
.wsa{word-spacing:3.104000pt;}
.wsb6{word-spacing:3.157333pt;}
.ws9f{word-spacing:3.168000pt;}
.wsb2{word-spacing:3.242667pt;}
.ws33{word-spacing:3.264000pt;}
.ws47{word-spacing:3.312000pt;}
.ws64{word-spacing:3.360000pt;}
.ws13{word-spacing:3.456000pt;}
.wsb7{word-spacing:3.498667pt;}
.ws18{word-spacing:3.520000pt;}
.wsaf{word-spacing:3.541333pt;}
.ws46{word-spacing:3.552000pt;}
.ws60{word-spacing:3.648000pt;}
.ws68{word-spacing:3.696000pt;}
.ws9{word-spacing:3.776000pt;}
.ws62{word-spacing:3.840000pt;}
.wsa0{word-spacing:4.080000pt;}
.ws54{word-spacing:4.128000pt;}
.ws9c{word-spacing:4.176000pt;}
.ws16{word-spacing:4.224000pt;}
.ws9b{word-spacing:4.464000pt;}
.wsb5{word-spacing:4.480000pt;}
.ws44{word-spacing:4.608000pt;}
.wsa9{word-spacing:4.650667pt;}
.ws5f{word-spacing:4.656000pt;}
.ws70{word-spacing:4.800000pt;}
.ws73{word-spacing:5.040000pt;}
.wsae{word-spacing:5.077333pt;}
.ws3c{word-spacing:5.088000pt;}
.ws3f{word-spacing:5.232000pt;}
.ws17{word-spacing:5.280000pt;}
.ws31{word-spacing:5.328000pt;}
.ws6e{word-spacing:5.376000pt;}
.wsb1{word-spacing:5.461333pt;}
.ws4f{word-spacing:5.520000pt;}
.ws37{word-spacing:5.568000pt;}
.ws35{word-spacing:5.664000pt;}
.ws99{word-spacing:5.904000pt;}
.ws38{word-spacing:5.952000pt;}
.ws34{word-spacing:6.096000pt;}
.ws2c{word-spacing:6.384000pt;}
.ws7f{word-spacing:6.432000pt;}
.ws4{word-spacing:41.685867pt;}
.ws6a{word-spacing:68.437333pt;}
.ws98{word-spacing:70.101333pt;}
.ws94{word-spacing:84.010667pt;}
.ws95{word-spacing:84.693333pt;}
.ws88{word-spacing:105.386667pt;}
.ws96{word-spacing:111.360000pt;}
.ws87{word-spacing:112.768000pt;}
.ws92{word-spacing:113.450667pt;}
.ws97{word-spacing:122.026667pt;}
.ws85{word-spacing:123.178667pt;}
.ws8a{word-spacing:124.117333pt;}
.ws86{word-spacing:124.373333pt;}
.ws8d{word-spacing:134.784000pt;}
.ws93{word-spacing:154.794667pt;}
.ws91{word-spacing:161.578667pt;}
.ws8f{word-spacing:161.962667pt;}
.ws8e{word-spacing:164.053333pt;}
.ws90{word-spacing:168.576000pt;}
.ws8b{word-spacing:171.989333pt;}
.ws8c{word-spacing:187.306667pt;}
.ws89{word-spacing:198.869333pt;}
.ws6c{word-spacing:211.370667pt;}
.ws6d{word-spacing:216.234667pt;}
.ws76{word-spacing:227.754667pt;}
.ws75{word-spacing:239.232000pt;}
.ws79{word-spacing:250.752000pt;}
.ws29{word-spacing:405.402133pt;}
.ws69{word-spacing:449.066667pt;}
.ws7b{word-spacing:916.693333pt;}
.ws7a{word-spacing:933.994667pt;}
.ws78{word-spacing:957.397333pt;}
.ws7c{word-spacing:965.248000pt;}
.ws77{word-spacing:1020.970667pt;}
._c{margin-left:-23.669333pt;}
._3e{margin-left:-11.690667pt;}
._2d{margin-left:-5.770667pt;}
._d{margin-left:-4.656000pt;}
._0{margin-left:-3.766933pt;}
._3{margin-left:-2.329600pt;}
._2{margin-left:-1.040000pt;}
._7{width:1.291733pt;}
._5{width:2.325333pt;}
._b{width:3.237333pt;}
._8{width:4.343467pt;}
._9{width:5.324800pt;}
._1{width:6.444800pt;}
._a{width:7.417600pt;}
._f{width:8.420800pt;}
._41{width:9.790400pt;}
._2e{width:10.992000pt;}
._6{width:52.571733pt;}
._4{width:53.733867pt;}
._40{width:88.490667pt;}
._33{width:118.656000pt;}
._3b{width:123.050667pt;}
._32{width:125.626667pt;}
._31{width:127.232000pt;}
._3d{width:133.717333pt;}
._37{width:135.808000pt;}
._2f{width:143.018667pt;}
._30{width:144.768000pt;}
._35{width:146.474667pt;}
._36{width:168.064000pt;}
._38{width:176.186667pt;}
._34{width:181.845333pt;}
._3c{width:193.237333pt;}
._3f{width:220.842667pt;}
._15{width:227.925333pt;}
._39{width:253.397333pt;}
._20{width:277.637333pt;}
._1e{width:280.149333pt;}
._3a{width:299.792000pt;}
._21{width:308.309333pt;}
._1f{width:356.736000pt;}
._17{width:391.296000pt;}
._2c{width:416.118933pt;}
._10{width:520.033600pt;}
._2a{width:523.745600pt;}
._25{width:592.256000pt;}
._22{width:604.757333pt;}
._18{width:649.216000pt;}
._26{width:687.488000pt;}
._29{width:697.258667pt;}
._1b{width:728.277333pt;}
._1c{width:750.058667pt;}
._19{width:754.261333pt;}
._2b{width:768.917333pt;}
._16{width:774.720000pt;}
._28{width:780.672000pt;}
._e{width:795.254933pt;}
._14{width:799.701333pt;}
._13{width:811.136000pt;}
._24{width:816.256000pt;}
._23{width:835.157333pt;}
._1d{width:874.026667pt;}
._27{width:936.149333pt;}
._11{width:954.009600pt;}
._1a{width:984.234667pt;}
._12{width:1014.954667pt;}
.fsa{font-size:28.000000pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:33.600000pt;}
.fs6{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:44.800000pt;}
.fs10{font-size:45.333333pt;}
.fsf{font-size:48.000000pt;}
.fsd{font-size:48.811200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.666667pt;}
.fsb{font-size:60.433067pt;}
.fsc{font-size:62.757333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:44.231333pt;}
.y24{bottom:54.895333pt;}
.y5{bottom:59.133337pt;}
.y23{bottom:65.559333pt;}
.yac{bottom:71.958400pt;}
.y232{bottom:73.259733pt;}
.y1ea{bottom:73.912933pt;}
.y20d{bottom:75.110000pt;}
.y160{bottom:75.115867pt;}
.y233{bottom:76.220400pt;}
.y23e{bottom:76.220533pt;}
.ycd{bottom:77.416400pt;}
.y2be{bottom:77.953600pt;}
.y235{bottom:80.495867pt;}
.y236{bottom:80.506533pt;}
.y237{bottom:80.517200pt;}
.y238{bottom:80.527867pt;}
.y239{bottom:80.538533pt;}
.y23a{bottom:80.559867pt;}
.y23b{bottom:80.581200pt;}
.y23c{bottom:80.602533pt;}
.y23d{bottom:80.623867pt;}
.y254{bottom:81.638667pt;}
.y17d{bottom:82.369067pt;}
.yf3{bottom:82.748000pt;}
.y83{bottom:83.649333pt;}
.y2e7{bottom:83.944000pt;}
.y4{bottom:86.333337pt;}
.y1b2{bottom:87.867733pt;}
.y115{bottom:89.019333pt;}
.y26{bottom:89.105733pt;}
.y19d{bottom:89.272533pt;}
.yab{bottom:89.286400pt;}
.y231{bottom:90.587733pt;}
.y1e9{bottom:91.240933pt;}
.y292{bottom:91.539467pt;}
.y20c{bottom:92.438000pt;}
.y15f{bottom:92.443867pt;}
.y349{bottom:94.258533pt;}
.ycc{bottom:94.744400pt;}
.y359{bottom:94.791867pt;}
.y317{bottom:94.941067pt;}
.y253{bottom:94.972000pt;}
.y2bd{bottom:95.281600pt;}
.y1b1{bottom:96.102400pt;}
.y17c{bottom:99.697067pt;}
.yf2{bottom:100.076000pt;}
.y82{bottom:100.977333pt;}
.y2e6{bottom:101.272000pt;}
.y256{bottom:101.638667pt;}
.y291{bottom:104.872800pt;}
.y13d{bottom:105.389200pt;}
.y19c{bottom:106.600533pt;}
.yaa{bottom:106.614400pt;}
.y230{bottom:107.915733pt;}
.y252{bottom:108.305333pt;}
.y1e8{bottom:108.568933pt;}
.y348{bottom:108.925200pt;}
.y358{bottom:109.191867pt;}
.y316{bottom:109.607733pt;}
.y20b{bottom:109.766000pt;}
.y15e{bottom:109.771867pt;}
.y36c{bottom:109.991867pt;}
.ycb{bottom:112.072400pt;}
.y2bc{bottom:112.609600pt;}
.y114{bottom:113.907333pt;}
.y255{bottom:114.972000pt;}
.y17b{bottom:117.025067pt;}
.yf1{bottom:117.404000pt;}
.y290{bottom:118.206133pt;}
.y81{bottom:118.305333pt;}
.y251{bottom:121.638667pt;}
.y13c{bottom:122.717200pt;}
.y1b0{bottom:123.441067pt;}
.y347{bottom:123.591867pt;}
.y22{bottom:123.790666pt;}
.y357{bottom:123.858533pt;}
.y19b{bottom:123.928533pt;}
.ya9{bottom:123.942400pt;}
.y57{bottom:124.049867pt;}
.y315{bottom:124.274400pt;}
.y36b{bottom:124.391867pt;}
.y22f{bottom:125.243733pt;}
.y1e7{bottom:125.896933pt;}
.y20a{bottom:127.094000pt;}
.y15d{bottom:127.099867pt;}
.yca{bottom:129.400400pt;}
.y2bb{bottom:129.937600pt;}
.y2e5{bottom:129.943867pt;}
.y1af{bottom:130.107733pt;}
.y113{bottom:131.235333pt;}
.y28f{bottom:131.539467pt;}
.y17a{bottom:134.353067pt;}
.yf0{bottom:134.732000pt;}
.y250{bottom:134.972000pt;}
.y80{bottom:135.633333pt;}
.y346{bottom:138.258533pt;}
.y356{bottom:138.525200pt;}
.y314{bottom:138.941067pt;}
.y36a{bottom:139.058533pt;}
.y13b{bottom:140.045200pt;}
.y19a{bottom:141.256533pt;}
.ya8{bottom:141.270400pt;}
.y56{bottom:141.377867pt;}
.y22e{bottom:142.571733pt;}
.y1e6{bottom:143.224933pt;}
.y209{bottom:144.422000pt;}
.y15c{bottom:144.427867pt;}
.y28e{bottom:144.872800pt;}
.yc9{bottom:146.728400pt;}
.y2ba{bottom:147.265600pt;}
.yef{bottom:152.060000pt;}
.y345{bottom:152.925200pt;}
.y7f{bottom:152.961333pt;}
.y313{bottom:153.607733pt;}
.y369{bottom:153.725200pt;}
.y112{bottom:156.127733pt;}
.y13a{bottom:157.373200pt;}
.y234{bottom:157.701200pt;}
.y24f{bottom:157.852000pt;}
.y199{bottom:158.584533pt;}
.ya7{bottom:158.598400pt;}
.y55{bottom:158.705867pt;}
.y179{bottom:159.241067pt;}
.y22d{bottom:159.899733pt;}
.y208{bottom:161.750000pt;}
.y1ae{bottom:163.601733pt;}
.yc8{bottom:164.056400pt;}
.y2b9{bottom:164.593600pt;}
.y28d{bottom:166.248800pt;}
.y344{bottom:167.591867pt;}
.y368{bottom:168.125200pt;}
.y312{bottom:168.274400pt;}
.y15b{bottom:169.315867pt;}
.yee{bottom:169.388000pt;}
.y2e4{bottom:170.285067pt;}
.y7e{bottom:170.289333pt;}
.y24e{bottom:171.185333pt;}
.y1e5{bottom:171.896800pt;}
.y111{bottom:172.127733pt;}
.y139{bottom:174.701200pt;}
.y19{bottom:175.052000pt;}
.y198{bottom:175.912533pt;}
.ya6{bottom:175.926400pt;}
.y54{bottom:176.033867pt;}
.y1ad{bottom:177.201733pt;}
.y22c{bottom:177.227733pt;}
.y24b{bottom:177.852000pt;}
.y207{bottom:179.078000pt;}
.y28c{bottom:179.582133pt;}
.yc7{bottom:181.384400pt;}
.y2b8{bottom:181.921600pt;}
.y343{bottom:182.258533pt;}
.y367{bottom:182.791867pt;}
.y311{bottom:182.941067pt;}
.y178{bottom:184.129067pt;}
.y24d{bottom:184.518667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y2e3{bottom:187.613067pt;}
.y7d{bottom:187.617333pt;}
.y1e4{bottom:190.198667pt;}
.y138{bottom:192.029200pt;}
.y28b{bottom:192.915467pt;}
.y197{bottom:193.240533pt;}
.ya5{bottom:193.254400pt;}
.y53{bottom:193.361867pt;}
.y15a{bottom:194.203867pt;}
.yed{bottom:194.280400pt;}
.y206{bottom:196.406000pt;}
.y342{bottom:196.925200pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y366{bottom:197.458533pt;}
.y310{bottom:197.607733pt;}
.y24c{bottom:197.852000pt;}
.y2b7{bottom:199.249600pt;}
.y177{bottom:201.457067pt;}
.y22b{bottom:202.120133pt;}
.y1e3{bottom:203.532000pt;}
.y2e2{bottom:204.941067pt;}
.y7c{bottom:204.945333pt;}
.y28a{bottom:206.248800pt;}
.yc6{bottom:206.276800pt;}
.y110{bottom:207.036000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y137{bottom:209.357200pt;}
.y1ac{bottom:209.774000pt;}
.ya4{bottom:210.582400pt;}
.y52{bottom:210.689867pt;}
.y159{bottom:211.531867pt;}
.y341{bottom:211.591867pt;}
.y365{bottom:211.858533pt;}
.y30f{bottom:212.274400pt;}
.y205{bottom:213.734000pt;}
.y2b6{bottom:216.577600pt;}
.y196{bottom:218.132933pt;}
.y176{bottom:218.785067pt;}
.y289{bottom:219.582133pt;}
.y1e2{bottom:219.990667pt;}
.y2e1{bottom:222.269067pt;}
.y7b{bottom:222.273333pt;}
.y10f{bottom:224.364000pt;}
.y24a{bottom:224.679333pt;}
.y340{bottom:226.258533pt;}
.y364{bottom:226.525200pt;}
.y136{bottom:226.685200pt;}
.y30e{bottom:226.941067pt;}
.y1ab{bottom:227.102000pt;}
.ya3{bottom:227.910400pt;}
.y51{bottom:228.017867pt;}
.yec{bottom:229.231333pt;}
.y1dd{bottom:229.782667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y204{bottom:231.062000pt;}
.y288{bottom:232.915467pt;}
.y1e1{bottom:233.324000pt;}
.y175{bottom:236.113067pt;}
.y158{bottom:236.424133pt;}
.y286{bottom:236.936800pt;}
.y22a{bottom:237.151067pt;}
.y2e0{bottom:239.597067pt;}
.y7a{bottom:239.601333pt;}
.y33f{bottom:240.925200pt;}
.y363{bottom:241.191867pt;}
.yc5{bottom:241.211733pt;}
.y30d{bottom:241.607733pt;}
.y10e{bottom:241.692000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y1dc{bottom:243.116000pt;}
.y135{bottom:244.013200pt;}
.y1aa{bottom:244.430000pt;}
.ya2{bottom:245.238400pt;}
.y2b5{bottom:245.249600pt;}
.y287{bottom:246.248800pt;}
.yeb{bottom:246.559333pt;}
.y203{bottom:248.390000pt;}
.y1e0{bottom:249.782667pt;}
.y285{bottom:250.270133pt;}
.y157{bottom:252.424133pt;}
.y195{bottom:253.035867pt;}
.y1c{bottom:253.438668pt;}
.y174{bottom:253.441067pt;}
.y13{bottom:253.451999pt;}
.y229{bottom:254.479067pt;}
.y33e{bottom:255.591867pt;}
.y362{bottom:255.858533pt;}
.y30c{bottom:256.274400pt;}
.y50{bottom:256.689867pt;}
.y2df{bottom:256.925067pt;}
.y79{bottom:256.929333pt;}
.y249{bottom:257.229333pt;}
.yc4{bottom:258.539733pt;}
.y134{bottom:261.341200pt;}
.y1a9{bottom:261.758000pt;}
.ya1{bottom:262.566400pt;}
.y284{bottom:263.603467pt;}
.yea{bottom:263.887333pt;}
.y202{bottom:265.718000pt;}
.y1df{bottom:266.241333pt;}
.y282{bottom:267.624800pt;}
.y33d{bottom:270.258533pt;}
.y10d{bottom:270.363867pt;}
.y361{bottom:270.525200pt;}
.y30b{bottom:270.674400pt;}
.y173{bottom:270.769067pt;}
.y228{bottom:271.807067pt;}
.y2de{bottom:274.253067pt;}
.y78{bottom:274.257333pt;}
.y248{bottom:274.557333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yc3{bottom:275.867733pt;}
.y133{bottom:278.669200pt;}
.y1a8{bottom:279.086000pt;}
.ya0{bottom:279.894400pt;}
.y281{bottom:280.958133pt;}
.ye9{bottom:281.215333pt;}
.y1de{bottom:282.700000pt;}
.y201{bottom:283.046000pt;}
.y33c{bottom:284.925200pt;}
.y30a{bottom:285.341067pt;}
.y2b4{bottom:285.473333pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y156{bottom:287.462000pt;}
.y172{bottom:288.097067pt;}
.y227{bottom:289.135067pt;}
.y2dd{bottom:291.581067pt;}
.y77{bottom:291.585333pt;}
.y247{bottom:291.885333pt;}
.yc2{bottom:293.195733pt;}
.y280{bottom:294.291467pt;}
.y132{bottom:295.997200pt;}
.y1a7{bottom:296.414000pt;}
.ye8{bottom:298.543333pt;}
.y194{bottom:299.035867pt;}
.y1db{bottom:299.158667pt;}
.y33b{bottom:299.591867pt;}
.y309{bottom:300.007733pt;}
.y200{bottom:300.374000pt;}
.y283{bottom:300.958133pt;}
.y2b3{bottom:302.801333pt;}
.y9f{bottom:304.786800pt;}
.y155{bottom:304.790000pt;}
.y171{bottom:305.425067pt;}
.y226{bottom:306.463067pt;}
.y4d{bottom:307.012800pt;}
.y27f{bottom:307.624800pt;}
.y2dc{bottom:308.909067pt;}
.y76{bottom:308.913333pt;}
.y246{bottom:309.213333pt;}
.y10{bottom:309.452000pt;}
.yc1{bottom:310.523733pt;}
.y10c{bottom:310.587733pt;}
.y131{bottom:313.325200pt;}
.y1a6{bottom:313.742000pt;}
.y33a{bottom:314.258533pt;}
.y308{bottom:314.407733pt;}
.y1da{bottom:315.617333pt;}
.ye7{bottom:315.871333pt;}
.y1ff{bottom:317.702000pt;}
.y2b2{bottom:320.129333pt;}
.y27e{bottom:320.958133pt;}
.y154{bottom:322.118000pt;}
.y170{bottom:322.753067pt;}
.y4c{bottom:323.579200pt;}
.y225{bottom:323.791067pt;}
.y1d6{bottom:325.409333pt;}
.y2db{bottom:326.237067pt;}
.y75{bottom:326.241333pt;}
.y245{bottom:326.541333pt;}
.yc0{bottom:327.851733pt;}
.y10b{bottom:327.915733pt;}
.y339{bottom:328.925200pt;}
.y307{bottom:329.074400pt;}
.y130{bottom:330.653200pt;}
.y1a5{bottom:331.070000pt;}
.y1d9{bottom:332.076000pt;}
.ye6{bottom:333.199333pt;}
.y4b{bottom:334.243200pt;}
.y27d{bottom:334.291467pt;}
.y1fe{bottom:335.030000pt;}
.y2b1{bottom:337.457333pt;}
.y1d5{bottom:338.742667pt;}
.y193{bottom:339.270400pt;}
.y153{bottom:339.446000pt;}
.y9e{bottom:339.796400pt;}
.y16f{bottom:340.081067pt;}
.y224{bottom:341.119067pt;}
.y355{bottom:343.325200pt;}
.y2da{bottom:343.565067pt;}
.y74{bottom:343.569333pt;}
.y338{bottom:343.591867pt;}
.y306{bottom:343.741067pt;}
.yf{bottom:343.809333pt;}
.y244{bottom:343.869333pt;}
.ybf{bottom:345.179733pt;}
.y10a{bottom:345.243733pt;}
.y12f{bottom:347.981200pt;}
.y1a4{bottom:348.398000pt;}
.y1d8{bottom:348.534667pt;}
.ye5{bottom:350.527333pt;}
.y1fd{bottom:352.358000pt;}
.y4a{bottom:353.051200pt;}
.y2b0{bottom:354.785333pt;}
.y27c{bottom:355.667467pt;}
.y192{bottom:356.598400pt;}
.y152{bottom:356.774000pt;}
.y9d{bottom:357.124400pt;}
.y16e{bottom:357.409067pt;}
.y354{bottom:357.991867pt;}
.y337{bottom:358.258533pt;}
.y305{bottom:358.407733pt;}
.y223{bottom:358.447067pt;}
.y2d9{bottom:360.893067pt;}
.y73{bottom:360.897333pt;}
.y243{bottom:361.197333pt;}
.ybe{bottom:362.507733pt;}
.y109{bottom:362.571733pt;}
.ye{bottom:362.706666pt;}
.y1d7{bottom:364.993333pt;}
.y12e{bottom:365.309200pt;}
.y1a3{bottom:365.726000pt;}
.ye4{bottom:367.855333pt;}
.y27b{bottom:369.000800pt;}
.y1fc{bottom:369.686000pt;}
.y49{bottom:371.859200pt;}
.y2af{bottom:372.113333pt;}
.y353{bottom:372.658533pt;}
.y336{bottom:372.925200pt;}
.y304{bottom:373.074400pt;}
.y191{bottom:373.926400pt;}
.y151{bottom:374.102000pt;}
.y9c{bottom:374.452400pt;}
.y222{bottom:375.775067pt;}
.y2d8{bottom:378.221067pt;}
.y72{bottom:378.225333pt;}
.y242{bottom:378.525333pt;}
.y108{bottom:379.899733pt;}
.y1d4{bottom:381.452000pt;}
.y16d{bottom:382.297067pt;}
.y27a{bottom:382.334133pt;}
.y12d{bottom:382.637200pt;}
.y1a2{bottom:383.054000pt;}
.ye3{bottom:385.183333pt;}
.y1fb{bottom:387.014000pt;}
.y352{bottom:387.325200pt;}
.ybd{bottom:387.400133pt;}
.y335{bottom:387.591867pt;}
.y303{bottom:387.741067pt;}
.y2ae{bottom:389.441333pt;}
.y46{bottom:390.693867pt;}
.y190{bottom:391.254400pt;}
.y150{bottom:391.430000pt;}
.y9b{bottom:391.780400pt;}
.y221{bottom:393.103067pt;}
.y2d7{bottom:395.549067pt;}
.y71{bottom:395.553333pt;}
.y279{bottom:395.667467pt;}
.y241{bottom:395.853333pt;}
.y107{bottom:397.227733pt;}
.y1d3{bottom:397.910667pt;}
.y12c{bottom:399.965200pt;}
.y1a1{bottom:400.382000pt;}
.y45{bottom:401.357867pt;}
.y351{bottom:401.991867pt;}
.y334{bottom:402.258533pt;}
.y302{bottom:402.407733pt;}
.ye2{bottom:402.511333pt;}
.y1fa{bottom:404.342000pt;}
.y2ad{bottom:406.769333pt;}
.y16c{bottom:407.185067pt;}
.y1cf{bottom:407.702667pt;}
.y18f{bottom:408.582400pt;}
.y14f{bottom:408.758000pt;}
.y278{bottom:409.000800pt;}
.y9a{bottom:409.108400pt;}
.y220{bottom:410.431067pt;}
.y44{bottom:412.021867pt;}
.y2d6{bottom:412.877067pt;}
.y70{bottom:412.881333pt;}
.y240{bottom:413.181333pt;}
.y1d2{bottom:414.369333pt;}
.y106{bottom:414.555733pt;}
.y350{bottom:416.658533pt;}
.y333{bottom:416.925200pt;}
.y301{bottom:417.074400pt;}
.y1a0{bottom:417.710000pt;}
.y1ce{bottom:421.036000pt;}
.y1f9{bottom:421.670000pt;}
.y277{bottom:422.334133pt;}
.ybc{bottom:422.372400pt;}
.y43{bottom:422.685867pt;}
.y2ac{bottom:424.097333pt;}
.y16b{bottom:424.513067pt;}
.y12b{bottom:424.853200pt;}
.y18e{bottom:425.910400pt;}
.y14e{bottom:426.086000pt;}
.y275{bottom:426.355467pt;}
.y99{bottom:426.436400pt;}
.ye1{bottom:427.670400pt;}
.y21f{bottom:427.759067pt;}
.y2d5{bottom:430.205067pt;}
.y6f{bottom:430.209333pt;}
.y23f{bottom:430.509333pt;}
.y1d1{bottom:430.828000pt;}
.yd{bottom:430.990669pt;}
.y34f{bottom:431.325200pt;}
.y332{bottom:431.591867pt;}
.y300{bottom:431.741067pt;}
.y105{bottom:431.883733pt;}
.y42{bottom:433.349867pt;}
.y19f{bottom:435.038000pt;}
.y276{bottom:435.667467pt;}
.y1f8{bottom:438.998000pt;}
.y274{bottom:439.688800pt;}
.ybb{bottom:439.700400pt;}
.y2ab{bottom:441.425333pt;}
.y12a{bottom:442.181200pt;}
.y18d{bottom:443.238400pt;}
.y14d{bottom:443.414000pt;}
.y98{bottom:443.764400pt;}
.y41{bottom:444.013867pt;}
.y21e{bottom:445.087067pt;}
.y34e{bottom:445.991867pt;}
.y331{bottom:446.258533pt;}
.y2ff{bottom:446.407733pt;}
.yc{bottom:446.990669pt;}
.y1d0{bottom:447.286667pt;}
.y2d4{bottom:447.533067pt;}
.y6e{bottom:447.537333pt;}
.y104{bottom:449.211733pt;}
.y16a{bottom:449.405333pt;}
.y19e{bottom:452.366000pt;}
.y40{bottom:454.677867pt;}
.y1f7{bottom:456.326000pt;}
.yba{bottom:457.028400pt;}
.y273{bottom:457.043467pt;}
.y2aa{bottom:458.753333pt;}
.y18c{bottom:460.566400pt;}
.y34d{bottom:460.658533pt;}
.y14c{bottom:460.742000pt;}
.y258{bottom:460.821200pt;}
.y330{bottom:460.925200pt;}
.y2fe{bottom:461.074400pt;}
.y97{bottom:461.092400pt;}
.y21d{bottom:462.415067pt;}
.yb{bottom:462.990669pt;}
.y1cd{bottom:463.745333pt;}
.ye0{bottom:464.210667pt;}
.y2d3{bottom:464.861067pt;}
.y6d{bottom:464.865333pt;}
.y3f{bottom:465.341867pt;}
.y103{bottom:466.539733pt;}
.y129{bottom:467.069200pt;}
.y272{bottom:470.376800pt;}
.y1f6{bottom:473.654000pt;}
.yb9{bottom:474.356400pt;}
.y257{bottom:474.421200pt;}
.y360{bottom:475.058533pt;}
.y34c{bottom:475.325200pt;}
.y32f{bottom:475.591867pt;}
.y2fd{bottom:475.741067pt;}
.y3e{bottom:476.005867pt;}
.y2a9{bottom:476.081333pt;}
.y18b{bottom:477.894400pt;}
.y14b{bottom:478.070000pt;}
.y96{bottom:478.420400pt;}
.ya{bottom:478.990666pt;}
.y21c{bottom:479.743067pt;}
.y1cc{bottom:480.204000pt;}
.ydf{bottom:481.538667pt;}
.y2d2{bottom:482.189067pt;}
.y6c{bottom:482.193333pt;}
.y271{bottom:483.710133pt;}
.y102{bottom:483.867733pt;}
.y128{bottom:484.397200pt;}
.y3d{bottom:486.669867pt;}
.y1b3{bottom:486.867067pt;}
.y35f{bottom:489.725200pt;}
.y32e{bottom:489.991867pt;}
.y2fc{bottom:490.407733pt;}
.y1f5{bottom:490.982000pt;}
.y1c7{bottom:491.564000pt;}
.yb8{bottom:491.684400pt;}
.y2a8{bottom:493.409333pt;}
.y259{bottom:494.394933pt;}
.y9{bottom:494.990666pt;}
.y18a{bottom:495.222400pt;}
.y14a{bottom:495.398000pt;}
.y95{bottom:495.748400pt;}
.y48{bottom:495.803200pt;}
.y1cb{bottom:496.662667pt;}
.y270{bottom:497.043467pt;}
.y21b{bottom:497.071067pt;}
.y3c{bottom:497.333867pt;}
.yde{bottom:498.866667pt;}
.y2d1{bottom:499.517067pt;}
.y6b{bottom:499.521333pt;}
.y101{bottom:501.195733pt;}
.y127{bottom:501.725200pt;}
.y35e{bottom:504.391867pt;}
.y32d{bottom:504.658533pt;}
.y1c6{bottom:504.897333pt;}
.y2fb{bottom:505.074400pt;}
.y47{bottom:506.469867pt;}
.y3b{bottom:507.997867pt;}
.y1f4{bottom:508.310000pt;}
.yb7{bottom:509.012400pt;}
.y26f{bottom:510.376800pt;}
.y2a7{bottom:510.737333pt;}
.y189{bottom:512.550400pt;}
.y149{bottom:512.726000pt;}
.y94{bottom:513.076400pt;}
.y1ca{bottom:513.121333pt;}
.y21a{bottom:514.399067pt;}
.ydd{bottom:516.194667pt;}
.y2d0{bottom:516.845067pt;}
.y6a{bottom:516.849333pt;}
.y1c5{bottom:518.230667pt;}
.y100{bottom:518.523733pt;}
.y3a{bottom:518.661867pt;}
.y126{bottom:519.053200pt;}
.y35d{bottom:519.058533pt;}
.y32c{bottom:519.325200pt;}
.y2fa{bottom:519.741067pt;}
.y1f3{bottom:525.638000pt;}
.yb6{bottom:526.340400pt;}
.y2a6{bottom:528.065333pt;}
.y1c9{bottom:529.580000pt;}
.y188{bottom:529.878400pt;}
.y148{bottom:530.054000pt;}
.y93{bottom:530.404400pt;}
.y219{bottom:531.727067pt;}
.y26e{bottom:531.752800pt;}
.ydc{bottom:533.522667pt;}
.y35c{bottom:533.725200pt;}
.y32b{bottom:533.991867pt;}
.y2cf{bottom:534.173067pt;}
.y69{bottom:534.177333pt;}
.y2f9{bottom:534.407733pt;}
.yff{bottom:535.851733pt;}
.y125{bottom:536.381200pt;}
.y39{bottom:542.035067pt;}
.y1f2{bottom:542.966000pt;}
.yb5{bottom:543.668400pt;}
.y26d{bottom:545.086133pt;}
.y2a5{bottom:545.393333pt;}
.y1c8{bottom:546.038667pt;}
.y187{bottom:547.206400pt;}
.y92{bottom:547.732400pt;}
.y35b{bottom:548.391867pt;}
.y32a{bottom:548.658533pt;}
.y218{bottom:549.055067pt;}
.y2f8{bottom:549.074400pt;}
.ydb{bottom:550.850667pt;}
.y2ce{bottom:551.501067pt;}
.y68{bottom:551.505333pt;}
.yfe{bottom:553.179733pt;}
.y124{bottom:553.709200pt;}
.y147{bottom:554.942000pt;}
.y38{bottom:556.819067pt;}
.y26c{bottom:558.419467pt;}
.y1f1{bottom:560.294000pt;}
.yb4{bottom:560.996400pt;}
.y1c4{bottom:562.497333pt;}
.y35a{bottom:563.058533pt;}
.y329{bottom:563.325200pt;}
.y2f7{bottom:563.741067pt;}
.y186{bottom:564.534400pt;}
.y91{bottom:565.060400pt;}
.y37{bottom:565.440000pt;}
.y217{bottom:566.383067pt;}
.yda{bottom:568.178667pt;}
.y2cd{bottom:568.829067pt;}
.y67{bottom:568.833333pt;}
.yfd{bottom:570.507733pt;}
.y123{bottom:571.037200pt;}
.y26b{bottom:571.752800pt;}
.y8{bottom:573.786667pt;}
.y36{bottom:577.144000pt;}
.y1f0{bottom:577.622000pt;}
.y328{bottom:577.725200pt;}
.y34b{bottom:577.991867pt;}
.yb3{bottom:578.324400pt;}
.y2f6{bottom:578.407733pt;}
.y1c2{bottom:578.956000pt;}
.y2a4{bottom:579.561333pt;}
.y146{bottom:579.830000pt;}
.y185{bottom:581.862400pt;}
.y90{bottom:582.388400pt;}
.y216{bottom:583.711067pt;}
.y26a{bottom:585.086133pt;}
.yd9{bottom:585.506667pt;}
.y2cc{bottom:586.157067pt;}
.y66{bottom:586.161333pt;}
.y169{bottom:588.365200pt;}
.y35{bottom:591.928000pt;}
.y327{bottom:592.391867pt;}
.y34a{bottom:592.658533pt;}
.y7{bottom:592.685334pt;}
.y2a3{bottom:592.894667pt;}
.y2f5{bottom:593.074400pt;}
.y1ef{bottom:594.950000pt;}
.yfc{bottom:595.400133pt;}
.y1c3{bottom:595.414667pt;}
.yb2{bottom:595.652400pt;}
.y122{bottom:595.925200pt;}
.y145{bottom:597.158000pt;}
.y269{bottom:598.419467pt;}
.y184{bottom:599.190400pt;}
.y8f{bottom:599.716400pt;}
.y34{bottom:600.550133pt;}
.y215{bottom:601.039067pt;}
.yd8{bottom:602.834667pt;}
.y2cb{bottom:603.485067pt;}
.y65{bottom:603.489333pt;}
.y168{bottom:605.693200pt;}
.y2a2{bottom:606.228000pt;}
.y326{bottom:607.058533pt;}
.y379{bottom:607.325200pt;}
.y2f4{bottom:607.474400pt;}
.y268{bottom:611.752800pt;}
.y1c1{bottom:611.873333pt;}
.y1ee{bottom:612.278000pt;}
.yb1{bottom:612.980400pt;}
.y121{bottom:613.253200pt;}
.y144{bottom:614.486000pt;}
.y33{bottom:615.334000pt;}
.y183{bottom:616.518400pt;}
.y8e{bottom:617.044400pt;}
.y214{bottom:618.367067pt;}
.y2a1{bottom:619.561333pt;}
.y2ca{bottom:620.813067pt;}
.y64{bottom:620.817333pt;}
.y325{bottom:621.725200pt;}
.y378{bottom:621.991867pt;}
.y2f3{bottom:622.141067pt;}
.y167{bottom:623.021200pt;}
.y32{bottom:623.956133pt;}
.yd7{bottom:627.727067pt;}
.y1c0{bottom:628.332000pt;}
.y1ed{bottom:629.606000pt;}
.yb0{bottom:630.308400pt;}
.yfb{bottom:630.329733pt;}
.y143{bottom:631.814000pt;}
.y2a0{bottom:632.894667pt;}
.y266{bottom:633.128800pt;}
.y182{bottom:633.846400pt;}
.y8d{bottom:634.372400pt;}
.y213{bottom:635.695067pt;}
.y324{bottom:636.391867pt;}
.y1bd{bottom:636.566667pt;}
.y377{bottom:636.658533pt;}
.y2f2{bottom:636.807733pt;}
.y2c9{bottom:638.141067pt;}
.y120{bottom:638.141200pt;}
.y63{bottom:638.145333pt;}
.y31{bottom:638.740133pt;}
.y166{bottom:640.349200pt;}
.y1bf{bottom:644.790667pt;}
.y6{bottom:645.598667pt;}
.y29f{bottom:646.228000pt;}
.y265{bottom:646.462133pt;}
.y1ec{bottom:646.934000pt;}
.yaf{bottom:647.636400pt;}
.yfa{bottom:647.657733pt;}
.y142{bottom:649.142000pt;}
.y323{bottom:651.058533pt;}
.y376{bottom:651.325200pt;}
.y2f1{bottom:651.474400pt;}
.y8c{bottom:651.700400pt;}
.y212{bottom:653.023067pt;}
.y2c8{bottom:655.469067pt;}
.y11f{bottom:655.469200pt;}
.y62{bottom:655.473333pt;}
.y30{bottom:656.017067pt;}
.y165{bottom:657.677200pt;}
.y181{bottom:658.738667pt;}
.y29e{bottom:659.561333pt;}
.y264{bottom:659.795467pt;}
.y1be{bottom:661.249333pt;}
.yd6{bottom:664.262000pt;}
.yae{bottom:664.964400pt;}
.yf9{bottom:664.985733pt;}
.y322{bottom:665.725200pt;}
.y375{bottom:665.991867pt;}
.y2f0{bottom:666.141067pt;}
.y141{bottom:666.470000pt;}
.y3{bottom:668.977329pt;}
.y8b{bottom:669.028400pt;}
.y211{bottom:670.351067pt;}
.y2c7{bottom:672.797067pt;}
.y11e{bottom:672.797200pt;}
.y61{bottom:672.801333pt;}
.y263{bottom:673.128800pt;}
.y2f{bottom:673.350400pt;}
.y180{bottom:674.738667pt;}
.y164{bottom:675.005200pt;}
.y29d{bottom:676.777333pt;}
.y1bc{bottom:677.708000pt;}
.y267{bottom:679.795467pt;}
.y321{bottom:680.391867pt;}
.y374{bottom:680.658533pt;}
.y2ef{bottom:680.807733pt;}
.yd5{bottom:681.590000pt;}
.yf8{bottom:682.313733pt;}
.y140{bottom:683.798000pt;}
.y8a{bottom:686.356400pt;}
.y262{bottom:686.462133pt;}
.yad{bottom:689.856800pt;}
.y29c{bottom:690.110667pt;}
.y2c6{bottom:690.125067pt;}
.y11d{bottom:690.125200pt;}
.y60{bottom:690.129333pt;}
.y163{bottom:692.333200pt;}
.y1bb{bottom:694.166667pt;}
.y320{bottom:695.058533pt;}
.y210{bottom:695.243467pt;}
.y373{bottom:695.325200pt;}
.y2ee{bottom:695.474400pt;}
.yd4{bottom:698.918000pt;}
.y2e{bottom:699.474933pt;}
.yf7{bottom:699.641733pt;}
.y261{bottom:699.795467pt;}
.y13f{bottom:701.126000pt;}
.y29b{bottom:703.444000pt;}
.y89{bottom:703.684400pt;}
.y2c5{bottom:707.453067pt;}
.y11c{bottom:707.453200pt;}
.y5f{bottom:707.457333pt;}
.y162{bottom:709.661200pt;}
.y31f{bottom:709.725200pt;}
.y372{bottom:709.991867pt;}
.y2ed{bottom:710.141067pt;}
.y1ba{bottom:710.625333pt;}
.y20f{bottom:711.243467pt;}
.y260{bottom:713.128800pt;}
.y2d{bottom:715.476933pt;}
.yd3{bottom:716.246000pt;}
.y29a{bottom:716.777333pt;}
.yf6{bottom:716.969733pt;}
.y17f{bottom:717.225333pt;}
.y1b6{bottom:718.860000pt;}
.y31e{bottom:724.391867pt;}
.y371{bottom:724.658533pt;}
.y2c4{bottom:724.781067pt;}
.y11b{bottom:724.781200pt;}
.y5e{bottom:724.785333pt;}
.y2ec{bottom:724.807733pt;}
.y13e{bottom:726.014000pt;}
.y25f{bottom:726.462133pt;}
.y1b9{bottom:727.084000pt;}
.y88{bottom:728.576800pt;}
.y299{bottom:730.110667pt;}
.yd2{bottom:733.574000pt;}
.yf5{bottom:734.297733pt;}
.y161{bottom:734.549200pt;}
.y17e{bottom:734.553333pt;}
.y31d{bottom:739.058533pt;}
.y370{bottom:739.325200pt;}
.y2eb{bottom:739.474400pt;}
.y2c3{bottom:742.109067pt;}
.y11a{bottom:742.109200pt;}
.y5d{bottom:742.113333pt;}
.y1b8{bottom:743.542667pt;}
.y20e{bottom:746.151733pt;}
.y25e{bottom:748.584800pt;}
.y298{bottom:749.214667pt;}
.yd1{bottom:750.902000pt;}
.y31c{bottom:753.725200pt;}
.y36f{bottom:753.991867pt;}
.y2ea{bottom:754.141067pt;}
.yf4{bottom:759.190133pt;}
.y2c2{bottom:759.437067pt;}
.y119{bottom:759.437200pt;}
.y5c{bottom:759.441333pt;}
.y1b7{bottom:760.001333pt;}
.y25d{bottom:761.918133pt;}
.y297{bottom:762.548000pt;}
.y87{bottom:763.479733pt;}
.yd0{bottom:768.230000pt;}
.y31b{bottom:768.391867pt;}
.y25a{bottom:768.584800pt;}
.y36e{bottom:768.658533pt;}
.y2e9{bottom:768.807733pt;}
.y294{bottom:769.214667pt;}
.y2c{bottom:774.803200pt;}
.y25c{bottom:775.251467pt;}
.y296{bottom:775.881333pt;}
.y2c1{bottom:776.765067pt;}
.y118{bottom:776.765200pt;}
.y5b{bottom:776.769333pt;}
.y1b5{bottom:779.105333pt;}
.y86{bottom:780.807733pt;}
.y2{bottom:781.661334pt;}
.y31a{bottom:783.058533pt;}
.y36d{bottom:783.325200pt;}
.y2e8{bottom:783.474400pt;}
.ycf{bottom:785.558000pt;}
.y1b4{bottom:785.772000pt;}
.y25b{bottom:788.584800pt;}
.y295{bottom:789.214667pt;}
.y2b{bottom:792.191733pt;}
.y2c0{bottom:794.093067pt;}
.y117{bottom:794.093200pt;}
.y5a{bottom:794.097333pt;}
.y4f{bottom:797.365200pt;}
.y319{bottom:797.725200pt;}
.y2a{bottom:808.329067pt;}
.y85{bottom:809.479733pt;}
.yce{bottom:810.450400pt;}
.y2bf{bottom:811.421067pt;}
.y116{bottom:811.421200pt;}
.y59{bottom:811.425333pt;}
.y1eb{bottom:811.906533pt;}
.y293{bottom:812.371467pt;}
.y318{bottom:812.391867pt;}
.y4e{bottom:814.559067pt;}
.y29{bottom:824.466400pt;}
.y28{bottom:840.603733pt;}
.y84{bottom:844.017333pt;}
.y58{bottom:846.005200pt;}
.y1{bottom:859.312000pt;}
.y27{bottom:867.070800pt;}
.h14{height:21.054688pt;}
.h10{height:22.720000pt;}
.he{height:22.752000pt;}
.hc{height:24.031250pt;}
.h18{height:24.062500pt;}
.hf{height:24.648000pt;}
.h1d{height:25.648533pt;}
.h17{height:26.133333pt;}
.hd{height:28.036458pt;}
.h15{height:28.072917pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h16{height:29.625000pt;}
.h25{height:32.041667pt;}
.h29{height:32.083333pt;}
.h1f{height:33.600000pt;}
.h21{height:34.044271pt;}
.h26{height:34.088542pt;}
.h28{height:34.562500pt;}
.h1b{height:36.046875pt;}
.h1e{height:36.093750pt;}
.h12{height:39.500000pt;}
.h11{height:39.867188pt;}
.h13{height:40.017346pt;}
.h20{height:40.104167pt;}
.h7{height:40.853333pt;}
.h27{height:41.968750pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1a{height:44.114583pt;}
.h1c{height:44.437500pt;}
.h19{height:45.499067pt;}
.h2{height:49.024000pt;}
.h23{height:58.708333pt;}
.h22{height:66.166667pt;}
.h5{height:69.450667pt;}
.h24{height:72.396000pt;}
.h4{height:105.826671pt;}
.ha{height:907.086667pt;}
.hb{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:634.666667pt;}
.w3{width:634.960000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:68.381867pt;}
.xc{left:71.811067pt;}
.xe{left:75.609600pt;}
.x16{left:79.867600pt;}
.x10{left:83.149600pt;}
.x11{left:86.931467pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x14{left:102.512933pt;}
.x19{left:125.605733pt;}
.x1a{left:149.605733pt;}
.x13{left:162.580533pt;}
.x2c{left:169.185733pt;}
.x17{left:170.139600pt;}
.x1b{left:173.605733pt;}
.x26{left:176.744800pt;}
.x30{left:178.252400pt;}
.x2d{left:179.905733pt;}
.x4{left:180.874667pt;}
.x29{left:185.800800pt;}
.x27{left:187.464800pt;}
.x33{left:188.467467pt;}
.x1c{left:197.605733pt;}
.xf{left:208.872533pt;}
.x1d{left:221.605733pt;}
.xd{left:222.995067pt;}
.x2e{left:244.460400pt;}
.x1e{left:245.605733pt;}
.x28{left:252.019467pt;}
.x1f{left:269.605733pt;}
.x20{left:293.605733pt;}
.x21{left:317.605733pt;}
.x2f{left:332.620400pt;}
.x22{left:339.205733pt;}
.x2a{left:340.179467pt;}
.x23{left:360.805733pt;}
.x24{left:383.261200pt;}
.x25{left:393.929200pt;}
.x3{left:404.408000pt;}
.xb{left:413.760533pt;}
.x12{left:416.777867pt;}
.x15{left:424.336933pt;}
.x6{left:434.692533pt;}
.x31{left:468.780400pt;}
.x32{left:474.881733pt;}
.x2b{left:476.318133pt;}
.xa{left:493.047067pt;}
.x18{left:496.300800pt;}
.x8{left:512.018400pt;}
.x9{left:524.940400pt;}
.x7{left:532.021067pt;}
}




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