
    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_1854ecae8299e3b1d603de68.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.949000;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_c6390ba5c634bcd69c30436e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_2c9c0f782b23b463e4b2e932.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.949000;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_c9c86ead7e6eb3a22054c147.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957000;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_efe2f4f2b3052f3b836a9cf4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_39911854c67fb44ab0e1bae1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.956500;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_fd18fa13bdcbf9871239ece8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9e160498d2d34be4d019a5ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.922500;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_9c48c563c3ad5ba466f91e39.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958000;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_d7157a82af5bd33eedb0da0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.925500;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_c6390ba5c634bcd69c30436e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958000;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_34e46c5c94d80d01a84dfb85.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.949000;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_5c7221e83354d0ad11aac613.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958000;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_7dd42c9da10a0b0767761c26.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.949000;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_d8d9e782a5210ae681f42d16.woff2')format("woff");}.fff{font-family:fff;line-height:0.759500;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_b65abd0bfb6e7b2512d59f03.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.728500;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;}
.m6{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);}
.m9{transform:matrix(0.209667,0.136161,-0.136161,0.209667,0,0);-ms-transform:matrix(0.209667,0.136161,-0.136161,0.209667,0,0);-webkit-transform:matrix(0.209667,0.136161,-0.136161,0.209667,0,0);}
.m5{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242574,-0.060480,0.060480,0.242574,0,0);-ms-transform:matrix(0.242574,-0.060480,0.060480,0.242574,0,0);-webkit-transform:matrix(0.242574,-0.060480,0.060480,0.242574,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249657,0.013083,-0.013083,0.249657,0,0);-ms-transform:matrix(0.249657,0.013083,-0.013083,0.249657,0,0);-webkit-transform:matrix(0.249657,0.013083,-0.013083,0.249657,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);}
.m3{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);}
.v1{vertical-align:-13.986000px;}
.v6{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:6.000000px;}
.v3{vertical-align:7.582800px;}
.v4{vertical-align:13.986000px;}
.v2{vertical-align:17.982000px;}
.ls13{letter-spacing:-2.520000px;}
.ls2f{letter-spacing:-2.100000px;}
.ls14{letter-spacing:-1.680000px;}
.ls55{letter-spacing:-1.188000px;}
.ls2d{letter-spacing:-1.176000px;}
.ls45{letter-spacing:-1.134000px;}
.ls2c{letter-spacing:-1.092000px;}
.ls44{letter-spacing:-1.026000px;}
.ls66{letter-spacing:-0.924000px;}
.ls1a{letter-spacing:-0.882000px;}
.ls15{letter-spacing:-0.840000px;}
.ls56{letter-spacing:-0.798000px;}
.lse{letter-spacing:-0.648000px;}
.ls57{letter-spacing:-0.630000px;}
.ls24{letter-spacing:-0.594000px;}
.ls25{letter-spacing:-0.540000px;}
.ls58{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.486000px;}
.ls59{letter-spacing:-0.462000px;}
.ls10{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.420000px;}
.ls12{letter-spacing:-0.378000px;}
.ls3c{letter-spacing:-0.336000px;}
.ls33{letter-spacing:-0.324000px;}
.ls17{letter-spacing:-0.294000px;}
.ls21{letter-spacing:-0.270000px;}
.ls67{letter-spacing:-0.252000px;}
.ls2e{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.210000px;}
.ls64{letter-spacing:-0.168000px;}
.ls20{letter-spacing:-0.162000px;}
.ls5a{letter-spacing:-0.126000px;}
.ls22{letter-spacing:-0.108000px;}
.ls65{letter-spacing:-0.084000px;}
.lsf{letter-spacing:-0.054000px;}
.ls63{letter-spacing:-0.042000px;}
.lsd{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.025800px;}
.ls36{letter-spacing:0.026400px;}
.ls18{letter-spacing:0.042000px;}
.ls3f{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.064800px;}
.ls4a{letter-spacing:0.084000px;}
.ls4{letter-spacing:0.123000px;}
.ls4f{letter-spacing:0.126000px;}
.ls7{letter-spacing:0.168000px;}
.ls5{letter-spacing:0.210000px;}
.ls1b{letter-spacing:0.216000px;}
.ls50{letter-spacing:0.252000px;}
.ls23{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.294000px;}
.ls40{letter-spacing:0.324000px;}
.ls49{letter-spacing:0.336000px;}
.ls41{letter-spacing:0.378000px;}
.ls4c{letter-spacing:0.420000px;}
.ls1c{letter-spacing:0.432000px;}
.ls54{letter-spacing:0.462000px;}
.ls3e{letter-spacing:0.486000px;}
.ls5f{letter-spacing:0.495600px;}
.ls4b{letter-spacing:0.525000px;}
.ls3d{letter-spacing:0.540000px;}
.ls62{letter-spacing:0.546000px;}
.ls61{letter-spacing:0.588000px;}
.ls38{letter-spacing:0.594000px;}
.ls69{letter-spacing:0.606600px;}
.ls1e{letter-spacing:0.648000px;}
.ls5b{letter-spacing:0.840000px;}
.ls4e{letter-spacing:0.882000px;}
.lsa{letter-spacing:0.924000px;}
.ls5e{letter-spacing:1.050000px;}
.ls60{letter-spacing:1.260000px;}
.ls5c{letter-spacing:1.386000px;}
.ls46{letter-spacing:1.444800px;}
.ls53{letter-spacing:1.554000px;}
.ls30{letter-spacing:1.620000px;}
.ls6{letter-spacing:1.890000px;}
.ls52{letter-spacing:1.968600px;}
.ls51{letter-spacing:2.154000px;}
.ls2a{letter-spacing:2.239800px;}
.ls2b{letter-spacing:2.240400px;}
.ls39{letter-spacing:2.368800px;}
.ls28{letter-spacing:2.551200px;}
.ls0{letter-spacing:2.595600px;}
.ls6d{letter-spacing:2.674800px;}
.ls6b{letter-spacing:2.832000px;}
.ls27{letter-spacing:2.937000px;}
.ls26{letter-spacing:2.937600px;}
.ls42{letter-spacing:3.040200px;}
.ls6e{letter-spacing:3.207600px;}
.ls68{letter-spacing:3.240000px;}
.ls3{letter-spacing:3.808800px;}
.ls32{letter-spacing:3.813600px;}
.ls34{letter-spacing:4.000200px;}
.ls1d{letter-spacing:4.208400px;}
.ls1f{letter-spacing:4.327200px;}
.ls31{letter-spacing:4.591800px;}
.ls29{letter-spacing:4.762800px;}
.ls1{letter-spacing:5.860800px;}
.ls43{letter-spacing:6.588000px;}
.ls2{letter-spacing:6.609000px;}
.ls4d{letter-spacing:6.690000px;}
.ls5d{letter-spacing:7.739400px;}
.ls37{letter-spacing:7.861800px;}
.ls48{letter-spacing:16.390200px;}
.lsc{letter-spacing:59.693400px;}
.lsb{letter-spacing:59.699400px;}
.ls6a{letter-spacing:109.242000px;}
.ls6f{letter-spacing:330.544800px;}
.ls3b{letter-spacing:415.983000px;}
.ls70{letter-spacing:482.185200px;}
.ls3a{letter-spacing:498.198000px;}
.ls6c{letter-spacing:542.122200px;}
.ls47{letter-spacing:901.437000px;}
.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;}
}
.wsb2{word-spacing:-109.242000px;}
.ws9{word-spacing:-21.504000px;}
.ws7b{word-spacing:-14.040000px;}
.ws2{word-spacing:-13.824000px;}
.ws7c{word-spacing:-13.500000px;}
.ws69{word-spacing:-13.176000px;}
.ws0{word-spacing:-13.122000px;}
.ws58{word-spacing:-12.636000px;}
.ws83{word-spacing:-12.306000px;}
.ws7d{word-spacing:-12.258000px;}
.ws3{word-spacing:-12.204000px;}
.ws81{word-spacing:-11.634000px;}
.ws7e{word-spacing:-11.277000px;}
.ws9c{word-spacing:-11.214000px;}
.ws7f{word-spacing:-11.172000px;}
.wsab{word-spacing:-11.046000px;}
.ws99{word-spacing:-10.962000px;}
.ws5{word-spacing:-10.752000px;}
.ws9a{word-spacing:-10.710000px;}
.ws9b{word-spacing:-10.542000px;}
.ws45{word-spacing:-10.332000px;}
.ws80{word-spacing:-10.248000px;}
.ws8{word-spacing:-10.206000px;}
.ws82{word-spacing:-10.038000px;}
.ws7{word-spacing:-9.996000px;}
.ws43{word-spacing:-9.828000px;}
.ws41{word-spacing:-9.660000px;}
.ws5a{word-spacing:-9.534000px;}
.ws6{word-spacing:-9.366000px;}
.ws59{word-spacing:-9.198000px;}
.ws2a{word-spacing:-8.985600px;}
.ws44{word-spacing:-8.652000px;}
.ws4{word-spacing:-6.633900px;}
.ws75{word-spacing:-3.294000px;}
.ws72{word-spacing:-2.106000px;}
.ws2e{word-spacing:-2.052000px;}
.ws13{word-spacing:-1.998000px;}
.ws88{word-spacing:-1.944000px;}
.ws1a{word-spacing:-1.890000px;}
.ws4f{word-spacing:-1.836000px;}
.wsa7{word-spacing:-1.638000px;}
.ws4c{word-spacing:-1.620000px;}
.ws23{word-spacing:-1.596000px;}
.ws9d{word-spacing:-1.386000px;}
.ws9e{word-spacing:-1.260000px;}
.ws8a{word-spacing:-1.242000px;}
.wsa4{word-spacing:-1.050000px;}
.ws28{word-spacing:-0.924000px;}
.ws95{word-spacing:-0.882000px;}
.ws98{word-spacing:-0.840000px;}
.ws5f{word-spacing:-0.756000px;}
.ws31{word-spacing:-0.648000px;}
.ws70{word-spacing:-0.594000px;}
.wsa9{word-spacing:-0.588000px;}
.wsaa{word-spacing:-0.546000px;}
.ws6b{word-spacing:-0.540000px;}
.ws6e{word-spacing:-0.486000px;}
.ws66{word-spacing:-0.462000px;}
.ws2d{word-spacing:-0.432000px;}
.ws8f{word-spacing:-0.420000px;}
.wsa2{word-spacing:-0.378000px;}
.ws90{word-spacing:-0.336000px;}
.ws73{word-spacing:-0.324000px;}
.ws20{word-spacing:-0.294000px;}
.ws2f{word-spacing:-0.270000px;}
.ws96{word-spacing:-0.252000px;}
.ws2c{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.210000px;}
.ws1f{word-spacing:-0.168000px;}
.ws91{word-spacing:-0.126000px;}
.ws92{word-spacing:-0.084000px;}
.ws1{word-spacing:-0.054000px;}
.ws42{word-spacing:-0.042000px;}
.wsa{word-spacing:0.000000px;}
.ws9f{word-spacing:0.042000px;}
.wsf{word-spacing:0.054000px;}
.ws21{word-spacing:0.084000px;}
.ws36{word-spacing:0.108000px;}
.ws97{word-spacing:0.126000px;}
.ws3d{word-spacing:0.162000px;}
.wsa0{word-spacing:0.168000px;}
.ws19{word-spacing:0.210000px;}
.ws4b{word-spacing:0.216000px;}
.wsa8{word-spacing:0.252000px;}
.ws33{word-spacing:0.270000px;}
.ws1b{word-spacing:0.294000px;}
.ws3a{word-spacing:0.324000px;}
.ws67{word-spacing:0.336000px;}
.ws15{word-spacing:0.378000px;}
.ws25{word-spacing:0.420000px;}
.ws3e{word-spacing:0.432000px;}
.ws14{word-spacing:0.486000px;}
.ws93{word-spacing:0.504000px;}
.ws40{word-spacing:0.540000px;}
.ws51{word-spacing:0.594000px;}
.ws8e{word-spacing:0.630000px;}
.wsd{word-spacing:0.648000px;}
.ws76{word-spacing:0.756000px;}
.ws8d{word-spacing:0.798000px;}
.ws24{word-spacing:0.840000px;}
.wsa5{word-spacing:0.924000px;}
.ws74{word-spacing:1.026000px;}
.ws63{word-spacing:1.080000px;}
.ws32{word-spacing:1.134000px;}
.ws3c{word-spacing:1.188000px;}
.ws79{word-spacing:1.344000px;}
.ws4d{word-spacing:1.404000px;}
.ws38{word-spacing:1.458000px;}
.ws55{word-spacing:1.512000px;}
.ws65{word-spacing:1.638000px;}
.ws18{word-spacing:1.680000px;}
.ws3b{word-spacing:1.782000px;}
.ws89{word-spacing:1.890000px;}
.ws8c{word-spacing:2.160000px;}
.ws78{word-spacing:2.214000px;}
.ws17{word-spacing:2.520000px;}
.ws49{word-spacing:2.562000px;}
.wsa1{word-spacing:2.688000px;}
.ws48{word-spacing:2.754000px;}
.ws57{word-spacing:2.808000px;}
.wse{word-spacing:2.862000px;}
.wsc{word-spacing:3.024000px;}
.ws46{word-spacing:3.108000px;}
.wsb1{word-spacing:3.293999px;}
.wsb{word-spacing:3.294000px;}
.wsb0{word-spacing:3.294012px;}
.wsaf{word-spacing:3.294014px;}
.ws2b{word-spacing:3.456000px;}
.wsac{word-spacing:3.486000px;}
.ws8b{word-spacing:3.510000px;}
.ws52{word-spacing:3.564000px;}
.wsad{word-spacing:3.654000px;}
.ws53{word-spacing:3.834000px;}
.ws56{word-spacing:3.942000px;}
.ws5b{word-spacing:3.996000px;}
.ws4a{word-spacing:4.158000px;}
.ws30{word-spacing:4.590000px;}
.ws47{word-spacing:4.746000px;}
.ws3f{word-spacing:4.752000px;}
.ws87{word-spacing:4.914000px;}
.ws5c{word-spacing:5.238000px;}
.wsae{word-spacing:5.292000px;}
.wsa3{word-spacing:5.628000px;}
.ws94{word-spacing:5.670000px;}
.ws61{word-spacing:5.832000px;}
.ws77{word-spacing:6.102000px;}
.ws64{word-spacing:6.318000px;}
.ws22{word-spacing:6.384000px;}
.ws11{word-spacing:6.426000px;}
.ws4e{word-spacing:7.020000px;}
.ws39{word-spacing:7.182000px;}
.ws12{word-spacing:7.236000px;}
.ws29{word-spacing:7.260000px;}
.ws62{word-spacing:7.668000px;}
.ws84{word-spacing:7.722000px;}
.ws1d{word-spacing:7.854000px;}
.ws5e{word-spacing:7.884000px;}
.ws27{word-spacing:7.938000px;}
.ws35{word-spacing:8.586000px;}
.ws26{word-spacing:9.534000px;}
.ws54{word-spacing:9.558000px;}
.ws6c{word-spacing:9.828000px;}
.ws85{word-spacing:10.044000px;}
.ws6d{word-spacing:11.286000px;}
.ws10{word-spacing:11.340000px;}
.ws50{word-spacing:11.502000px;}
.ws34{word-spacing:11.826000px;}
.ws6f{word-spacing:11.880000px;}
.ws1c{word-spacing:12.306000px;}
.wsa6{word-spacing:12.390000px;}
.ws5d{word-spacing:12.582000px;}
.ws71{word-spacing:12.798000px;}
.ws1e{word-spacing:13.440000px;}
.ws86{word-spacing:14.742000px;}
.ws37{word-spacing:15.984000px;}
.ws60{word-spacing:17.280000px;}
.ws68{word-spacing:98.406000px;}
.wsb5{word-spacing:144.732000px;}
.wsb7{word-spacing:156.912000px;}
.wsb6{word-spacing:174.720000px;}
.wsb4{word-spacing:174.888000px;}
.ws7a{word-spacing:287.448000px;}
.wsb3{word-spacing:461.160000px;}
.wsb8{word-spacing:553.224000px;}
.ws6a{word-spacing:1398.532200px;}
._16{margin-left:-1010.488800px;}
._60{margin-left:-109.347000px;}
._98{margin-left:-29.509800px;}
._88{margin-left:-17.295600px;}
._14{margin-left:-13.186800px;}
._f{margin-left:-9.641400px;}
._e{margin-left:-8.056800px;}
._c{margin-left:-6.706200px;}
._d{margin-left:-5.600400px;}
._4{margin-left:-4.211400px;}
._5{margin-left:-3.169800px;}
._1{margin-left:-1.301400px;}
._3{width:1.798200px;}
._0{width:3.375000px;}
._2{width:5.286600px;}
._8{width:6.442200px;}
._7{width:7.824600px;}
._6{width:9.018000px;}
._13{width:10.303200px;}
._12{width:11.499000px;}
._9{width:12.645600px;}
._a{width:14.310000px;}
._b{width:15.489000px;}
._11{width:16.682400px;}
._10{width:17.910000px;}
._18{width:19.852200px;}
._82{width:22.771200px;}
._1c{width:25.158000px;}
._2d{width:29.861400px;}
._99{width:30.878400px;}
._9a{width:32.155800px;}
._2e{width:35.742000px;}
._8a{width:36.769200px;}
._84{width:42.068400px;}
._1d{width:43.554000px;}
._86{width:46.241400px;}
._25{width:48.132000px;}
._87{width:50.335200px;}
._1a{width:53.382000px;}
._6a{width:54.726000px;}
._1e{width:55.902000px;}
._85{width:57.879600px;}
._24{width:60.102000px;}
._69{width:61.110000px;}
._2f{width:62.782800px;}
._23{width:66.108000px;}
._20{width:67.914000px;}
._5c{width:72.106200px;}
._6b{width:73.122000px;}
._1f{width:74.851800px;}
._57{width:78.876000px;}
._62{width:80.161200px;}
._56{width:84.882000px;}
._5e{width:90.497400px;}
._19{width:92.273400px;}
._7d{width:94.785600px;}
._58{width:97.066200px;}
._63{width:98.242200px;}
._59{width:103.248600px;}
._64{width:104.424600px;}
._81{width:107.268000px;}
._5b{width:109.246200px;}
._61{width:110.296200px;}
._7f{width:114.394800px;}
._77{width:120.189600px;}
._75{width:121.491600px;}
._76{width:123.938400px;}
._7c{width:126.178200px;}
._7e{width:127.898400px;}
._9e{width:136.680000px;}
._80{width:144.101400px;}
._55{width:146.278800px;}
._6f{width:148.762800px;}
._2c{width:149.764200px;}
._71{width:152.853600px;}
._6c{width:155.575800px;}
._6d{width:156.576000px;}
._65{width:157.889400px;}
._91{width:163.021800px;}
._29{width:168.496200px;}
._6e{width:171.081000px;}
._8d{width:174.139800px;}
._93{width:175.183200px;}
._28{width:181.347000px;}
._95{width:187.218600px;}
._8c{width:193.343400px;}
._27{width:199.792800px;}
._8f{width:204.279600px;}
._22{width:205.658400px;}
._96{width:210.448800px;}
._97{width:211.555200px;}
._70{width:214.032000px;}
._78{width:216.004800px;}
._8e{width:223.859400px;}
._5d{width:225.952200px;}
._79{width:229.907400px;}
._31{width:233.781600px;}
._66{width:235.065600px;}
._1b{width:251.957400px;}
._21{width:255.157800px;}
._9b{width:257.746200px;}
._9c{width:259.273800px;}
._5a{width:264.172200px;}
._7a{width:266.987400px;}
._30{width:275.604000px;}
._5f{width:277.023000px;}
._2b{width:283.206000px;}
._34{width:287.574000px;}
._74{width:293.076600px;}
._42{width:295.344000px;}
._67{width:301.861800px;}
._35{width:306.096000px;}
._92{width:311.968200px;}
._3c{width:313.908000px;}
._38{width:324.114000px;}
._26{width:326.087400px;}
._33{width:329.406000px;}
._3b{width:331.884000px;}
._41{width:337.176000px;}
._44{width:341.586000px;}
._8b{width:343.264800px;}
._2a{width:345.912000px;}
._9d{width:347.984400px;}
._94{width:349.657800px;}
._a1{width:354.522000px;}
._37{width:378.126000px;}
._3a{width:385.896000px;}
._a0{width:396.354000px;}
._72{width:423.793800px;}
._89{width:426.678000px;}
._68{width:438.158400px;}
._4a{width:441.839400px;}
._73{width:461.160000px;}
._9f{width:464.058000px;}
._3e{width:469.953600px;}
._39{width:474.706800px;}
._3f{width:484.023600px;}
._90{width:489.384000px;}
._3d{width:515.607600px;}
._36{width:520.318800px;}
._83{width:530.964000px;}
._4d{width:536.584800px;}
._4c{width:540.429600px;}
._53{width:546.419400px;}
._54{width:556.557000px;}
._a2{width:569.954400px;}
._4b{width:623.566200px;}
._52{width:627.976200px;}
._47{width:642.298200px;}
._50{width:646.708200px;}
._46{width:655.149000px;}
._17{width:659.461200px;}
._4f{width:667.329000px;}
._45{width:673.594800px;}
._4e{width:678.004800px;}
._43{width:684.397800px;}
._32{width:742.349400px;}
._49{width:757.008000px;}
._51{width:761.418000px;}
._40{width:799.889400px;}
._48{width:824.124000px;}
._15{width:997.794600px;}
._7b{width:1848.187800px;}
.fc6{color:rgb(0,166,80);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,255,0);}
.fc1{color:rgb(48,80,126);}
.fc7{color:rgb(34,34,34);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:27.300000px;}
.fs5{font-size:35.100000px;}
.fs1{font-size:42.000000px;}
.fs8{font-size:53.999982px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:54.000197px;}
.fs6{font-size:54.000228px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y57{bottom:42.282150px;}
.yd5{bottom:42.529650px;}
.y1{bottom:65.668050px;}
.y14a{bottom:104.841750px;}
.y188{bottom:105.139200px;}
.yd4{bottom:111.517350px;}
.y110{bottom:111.801900px;}
.y95{bottom:111.984900px;}
.y1ab{bottom:116.279550px;}
.y19e{bottom:116.649150px;}
.y27a{bottom:119.213400px;}
.y21c{bottom:120.081750px;}
.y1ea{bottom:120.575100px;}
.y149{bottom:121.041750px;}
.y187{bottom:121.339200px;}
.y30e{bottom:122.932200px;}
.y2be{bottom:124.301400px;}
.yd3{bottom:127.717350px;}
.y10f{bottom:128.001900px;}
.y94{bottom:128.184900px;}
.y1aa{bottom:132.479550px;}
.y19d{bottom:132.849150px;}
.y279{bottom:135.413400px;}
.y30d{bottom:135.532050px;}
.y21b{bottom:136.281750px;}
.y1e9{bottom:136.775100px;}
.y2bd{bottom:136.901400px;}
.y148{bottom:137.241750px;}
.y186{bottom:137.539200px;}
.yd2{bottom:143.917350px;}
.y10e{bottom:144.201900px;}
.y93{bottom:144.384900px;}
.y30c{bottom:148.132200px;}
.y1a9{bottom:148.679550px;}
.y19c{bottom:149.049150px;}
.y2bc{bottom:149.501400px;}
.y278{bottom:151.613400px;}
.y21a{bottom:152.481750px;}
.y1e8{bottom:152.975100px;}
.y147{bottom:153.441750px;}
.y185{bottom:153.739200px;}
.yd1{bottom:160.117350px;}
.y10d{bottom:160.401900px;}
.y92{bottom:160.584900px;}
.y30b{bottom:160.732050px;}
.y2bb{bottom:162.101400px;}
.y1a8{bottom:164.879550px;}
.y19b{bottom:165.249150px;}
.y277{bottom:167.813400px;}
.y219{bottom:168.681750px;}
.y1e7{bottom:169.175100px;}
.y146{bottom:169.641750px;}
.y184{bottom:169.939200px;}
.y30a{bottom:173.332050px;}
.y2ba{bottom:174.701400px;}
.yd0{bottom:176.317350px;}
.y10c{bottom:176.601900px;}
.y385{bottom:176.775000px;}
.y91{bottom:176.784900px;}
.y1a7{bottom:181.079550px;}
.y276{bottom:184.013400px;}
.y218{bottom:184.881750px;}
.y1e6{bottom:185.375100px;}
.y145{bottom:185.841750px;}
.y309{bottom:185.932200px;}
.y183{bottom:186.139200px;}
.y2b9{bottom:187.301400px;}
.y19a{bottom:189.953100px;}
.ycf{bottom:192.517350px;}
.y10b{bottom:192.801900px;}
.y90{bottom:192.984900px;}
.y1a6{bottom:197.279550px;}
.y384{bottom:197.775000px;}
.y308{bottom:198.532050px;}
.y2b8{bottom:199.901400px;}
.y275{bottom:200.213400px;}
.y217{bottom:201.081750px;}
.y1e5{bottom:201.575100px;}
.y144{bottom:202.041750px;}
.y182{bottom:202.339200px;}
.yce{bottom:208.717350px;}
.y10a{bottom:209.001900px;}
.y8f{bottom:209.184900px;}
.y307{bottom:211.132200px;}
.y2b7{bottom:212.501400px;}
.y1a5{bottom:213.479550px;}
.y274{bottom:216.413400px;}
.y216{bottom:217.281750px;}
.y1e4{bottom:217.775100px;}
.y143{bottom:218.241750px;}
.y181{bottom:218.539200px;}
.y383{bottom:218.775000px;}
.y306{bottom:223.732050px;}
.ycd{bottom:224.917350px;}
.y2b6{bottom:225.101400px;}
.y109{bottom:225.201900px;}
.y8e{bottom:225.384900px;}
.y199{bottom:227.412900px;}
.y1a4{bottom:229.679550px;}
.y273{bottom:232.613400px;}
.y215{bottom:233.481750px;}
.y1e3{bottom:233.975100px;}
.y142{bottom:234.441750px;}
.y180{bottom:234.739200px;}
.y305{bottom:236.332050px;}
.y2b5{bottom:237.701400px;}
.y382{bottom:239.775000px;}
.ycc{bottom:241.117350px;}
.y108{bottom:241.401900px;}
.y8d{bottom:241.584900px;}
.y198{bottom:243.612900px;}
.y363{bottom:243.886350px;}
.y1a3{bottom:245.879550px;}
.y272{bottom:248.813400px;}
.y304{bottom:248.932200px;}
.y214{bottom:249.681750px;}
.y1e2{bottom:250.175100px;}
.y2b4{bottom:250.301400px;}
.y141{bottom:250.641750px;}
.y17f{bottom:250.939200px;}
.y27{bottom:251.789250px;}
.y4d{bottom:252.490800px;}
.ycb{bottom:257.317350px;}
.y107{bottom:257.601900px;}
.y8c{bottom:257.784900px;}
.y1f1{bottom:258.679050px;}
.y197{bottom:259.812900px;}
.y381{bottom:260.775000px;}
.y303{bottom:261.532050px;}
.y1a2{bottom:262.079550px;}
.y2b3{bottom:262.901400px;}
.y362{bottom:264.886350px;}
.y271{bottom:265.013400px;}
.y4c{bottom:265.090800px;}
.y213{bottom:265.881750px;}
.y1e1{bottom:266.375100px;}
.y140{bottom:266.841750px;}
.y17e{bottom:267.139200px;}
.y26{bottom:267.989250px;}
.yca{bottom:273.517350px;}
.y106{bottom:273.801900px;}
.y8b{bottom:273.984900px;}
.y302{bottom:274.132200px;}
.y2b2{bottom:275.501400px;}
.y196{bottom:276.012900px;}
.y1a1{bottom:278.279550px;}
.y270{bottom:281.213400px;}
.y380{bottom:281.775000px;}
.y212{bottom:282.081750px;}
.y1e0{bottom:282.575100px;}
.y13f{bottom:283.041750px;}
.y17d{bottom:283.339200px;}
.y301{bottom:286.732050px;}
.y361{bottom:287.138250px;}
.y2b1{bottom:288.101400px;}
.yc9{bottom:289.717350px;}
.y105{bottom:290.001900px;}
.y8a{bottom:290.184900px;}
.y4b{bottom:290.290800px;}
.y1f0{bottom:291.886950px;}
.y195{bottom:292.212900px;}
.y1a0{bottom:294.479550px;}
.y26f{bottom:297.413400px;}
.y211{bottom:298.281750px;}
.y1df{bottom:298.775100px;}
.y13e{bottom:299.241750px;}
.y300{bottom:299.332050px;}
.y17c{bottom:299.539200px;}
.y25{bottom:300.314250px;}
.y2b0{bottom:300.701400px;}
.y37f{bottom:302.775000px;}
.y4a{bottom:302.890800px;}
.y333{bottom:304.517700px;}
.y360{bottom:305.138250px;}
.yc8{bottom:305.917350px;}
.y104{bottom:306.201900px;}
.y89{bottom:306.384900px;}
.y35f{bottom:306.638250px;}
.y1ef{bottom:308.086950px;}
.y194{bottom:308.412900px;}
.y2ff{bottom:311.932200px;}
.y2af{bottom:313.301400px;}
.y26e{bottom:313.613400px;}
.y210{bottom:314.481750px;}
.y1de{bottom:314.975100px;}
.y13d{bottom:315.441750px;}
.y49{bottom:315.490800px;}
.y17b{bottom:315.739200px;}
.y24{bottom:316.514250px;}
.y19f{bottom:319.183500px;}
.yc7{bottom:322.117350px;}
.y103{bottom:322.401900px;}
.y88{bottom:322.584900px;}
.y37e{bottom:323.775000px;}
.y1ee{bottom:324.286950px;}
.y2fe{bottom:324.532050px;}
.y193{bottom:324.612900px;}
.y35e{bottom:324.638250px;}
.y2ae{bottom:325.901400px;}
.y48{bottom:328.090800px;}
.y26d{bottom:329.813400px;}
.y332{bottom:329.873550px;}
.y20f{bottom:330.681750px;}
.y1dd{bottom:331.175100px;}
.y13c{bottom:331.641750px;}
.y17a{bottom:331.939200px;}
.y23{bottom:332.714250px;}
.y2fd{bottom:337.132200px;}
.yc6{bottom:338.317350px;}
.y2ad{bottom:338.501400px;}
.y102{bottom:338.601900px;}
.y87{bottom:338.784900px;}
.y1ed{bottom:340.486950px;}
.y47{bottom:340.690800px;}
.y192{bottom:340.812900px;}
.y37d{bottom:344.775000px;}
.y35d{bottom:345.390300px;}
.y26c{bottom:346.013400px;}
.y13b{bottom:347.841750px;}
.y179{bottom:348.139200px;}
.y22{bottom:348.914250px;}
.y2fc{bottom:349.732050px;}
.y2ac{bottom:351.101400px;}
.y46{bottom:353.290800px;}
.yc5{bottom:354.517350px;}
.y101{bottom:354.801900px;}
.y86{bottom:354.984900px;}
.y1dc{bottom:355.879050px;}
.y1ec{bottom:356.686950px;}
.y191{bottom:357.012900px;}
.y26b{bottom:362.213400px;}
.y2fb{bottom:362.332050px;}
.y35c{bottom:363.390300px;}
.y2ab{bottom:363.701400px;}
.y13a{bottom:364.041750px;}
.y178{bottom:364.339200px;}
.y21{bottom:365.114250px;}
.y37c{bottom:365.775000px;}
.y45{bottom:365.890800px;}
.yc4{bottom:370.717350px;}
.y85{bottom:371.184900px;}
.y1eb{bottom:372.886950px;}
.y190{bottom:373.212900px;}
.y2fa{bottom:374.932050px;}
.y2aa{bottom:376.301400px;}
.y26a{bottom:378.413400px;}
.y139{bottom:380.241750px;}
.y177{bottom:380.539200px;}
.y20{bottom:381.314250px;}
.y35b{bottom:381.390300px;}
.y37b{bottom:386.775000px;}
.yc3{bottom:386.917350px;}
.y84{bottom:387.384900px;}
.y2f9{bottom:387.532050px;}
.y2a9{bottom:388.901400px;}
.y1db{bottom:389.086950px;}
.y18f{bottom:389.412900px;}
.y44{bottom:391.090800px;}
.y269{bottom:394.613400px;}
.y138{bottom:396.441750px;}
.y176{bottom:396.739200px;}
.y1f{bottom:397.514250px;}
.y2f8{bottom:400.132200px;}
.y2a8{bottom:401.501400px;}
.yc2{bottom:403.117350px;}
.y83{bottom:403.584900px;}
.y35a{bottom:403.642200px;}
.y43{bottom:403.690800px;}
.y23e{bottom:404.082300px;}
.y1da{bottom:405.286950px;}
.y18e{bottom:405.612900px;}
.y37a{bottom:407.775000px;}
.y33c{bottom:409.462800px;}
.y268{bottom:410.813400px;}
.y137{bottom:412.641750px;}
.y2f7{bottom:412.732200px;}
.y175{bottom:412.939200px;}
.y1e{bottom:413.714250px;}
.y2a7{bottom:414.101400px;}
.y42{bottom:416.290800px;}
.yc1{bottom:419.317350px;}
.y33b{bottom:419.607300px;}
.y82{bottom:419.784900px;}
.y1d9{bottom:421.486950px;}
.y18d{bottom:421.812900px;}
.y23d{bottom:425.082300px;}
.y2f6{bottom:425.332050px;}
.y2a6{bottom:426.701400px;}
.y33a{bottom:426.825000px;}
.y267{bottom:427.013400px;}
.y379{bottom:428.775000px;}
.y136{bottom:428.841750px;}
.y41{bottom:428.890800px;}
.y174{bottom:429.139200px;}
.y1d{bottom:429.914250px;}
.yc0{bottom:435.517350px;}
.ye0{bottom:435.866250px;}
.y81{bottom:435.984900px;}
.y1d8{bottom:437.686950px;}
.y2f5{bottom:437.932050px;}
.y18c{bottom:438.012900px;}
.y2a5{bottom:439.301400px;}
.y40{bottom:441.490800px;}
.y266{bottom:443.213400px;}
.y135{bottom:445.041750px;}
.y173{bottom:445.339200px;}
.y23c{bottom:446.082300px;}
.y1c{bottom:446.114250px;}
.ydf{bottom:448.466250px;}
.y378{bottom:449.775000px;}
.y2f4{bottom:450.532050px;}
.ybf{bottom:451.717350px;}
.y2a4{bottom:451.901400px;}
.y80{bottom:452.184900px;}
.y1d7{bottom:453.886950px;}
.y3f{bottom:454.090800px;}
.y265{bottom:459.413400px;}
.yde{bottom:461.066250px;}
.y134{bottom:461.241750px;}
.y172{bottom:461.539200px;}
.y1b{bottom:462.314250px;}
.y18b{bottom:462.716850px;}
.y2f3{bottom:463.132200px;}
.y2a3{bottom:464.501400px;}
.y359{bottom:465.539700px;}
.y377{bottom:466.275000px;}
.y3e{bottom:466.690800px;}
.y23b{bottom:467.082300px;}
.ybe{bottom:467.917350px;}
.y7f{bottom:468.384900px;}
.y1d6{bottom:470.086950px;}
.ydd{bottom:473.666250px;}
.y264{bottom:475.613400px;}
.y2f2{bottom:475.732200px;}
.y2a2{bottom:477.101400px;}
.y133{bottom:477.441750px;}
.y171{bottom:477.739200px;}
.y358{bottom:478.139700px;}
.y1a{bottom:478.514250px;}
.y3d{bottom:479.290800px;}
.ybd{bottom:484.117350px;}
.y7e{bottom:484.584900px;}
.ydc{bottom:486.266250px;}
.y1d5{bottom:486.286950px;}
.y23a{bottom:488.082300px;}
.y2f1{bottom:488.332050px;}
.y2a1{bottom:489.701400px;}
.y18a{bottom:491.672700px;}
.y263{bottom:491.813400px;}
.y3c{bottom:491.890800px;}
.y132{bottom:493.641750px;}
.y170{bottom:493.939200px;}
.y19{bottom:494.714250px;}
.ydb{bottom:498.866250px;}
.y376{bottom:498.975000px;}
.ybc{bottom:500.317350px;}
.y7d{bottom:500.784900px;}
.y2f0{bottom:500.932050px;}
.y2a0{bottom:502.301400px;}
.y1d4{bottom:502.486950px;}
.y357{bottom:503.495700px;}
.y3b{bottom:504.490800px;}
.y189{bottom:507.872700px;}
.y262{bottom:508.013400px;}
.y239{bottom:509.082300px;}
.y16f{bottom:510.139200px;}
.y18{bottom:510.914250px;}
.y2ef{bottom:513.532050px;}
.y29f{bottom:514.901400px;}
.y356{bottom:516.095700px;}
.ybb{bottom:516.517350px;}
.y7c{bottom:516.984900px;}
.y3a{bottom:517.090800px;}
.y131{bottom:518.345700px;}
.y1d3{bottom:518.686950px;}
.y261{bottom:524.213400px;}
.yda{bottom:524.222100px;}
.y389{bottom:524.360400px;}
.y2ee{bottom:526.132200px;}
.y16e{bottom:526.339200px;}
.y17{bottom:527.114250px;}
.y29e{bottom:527.501400px;}
.y39{bottom:529.690800px;}
.y238{bottom:530.082300px;}
.yba{bottom:532.717350px;}
.y7b{bottom:533.184900px;}
.y1d2{bottom:534.886950px;}
.yd9{bottom:536.822100px;}
.y388{bottom:536.960400px;}
.y2ed{bottom:538.732200px;}
.y29d{bottom:540.101400px;}
.y260{bottom:540.413400px;}
.y38{bottom:542.290800px;}
.y16d{bottom:542.539200px;}
.y16{bottom:543.314250px;}
.y130{bottom:547.301550px;}
.yb9{bottom:548.917350px;}
.y7a{bottom:549.384900px;}
.yd8{bottom:549.422100px;}
.y237{bottom:551.082300px;}
.y1d1{bottom:551.086950px;}
.y2ec{bottom:551.332050px;}
.y29c{bottom:552.701400px;}
.y37{bottom:554.890800px;}
.y25f{bottom:556.613400px;}
.y339{bottom:557.572950px;}
.y16c{bottom:558.739200px;}
.yd7{bottom:562.022250px;}
.y387{bottom:562.316250px;}
.y12f{bottom:563.501550px;}
.y2eb{bottom:563.932050px;}
.yb8{bottom:565.117350px;}
.y29b{bottom:565.301400px;}
.y79{bottom:565.584900px;}
.y1d0{bottom:567.286950px;}
.y15{bottom:568.018200px;}
.y236{bottom:572.082300px;}
.y1c9{bottom:572.438250px;}
.y25e{bottom:572.813400px;}
.yd6{bottom:574.622250px;}
.y386{bottom:574.916250px;}
.y16b{bottom:574.939200px;}
.y2ea{bottom:576.532050px;}
.y29a{bottom:577.901400px;}
.y12e{bottom:579.701550px;}
.yb7{bottom:581.317350px;}
.y78{bottom:581.784900px;}
.y1cf{bottom:583.486950px;}
.y337{bottom:586.804650px;}
.y25d{bottom:589.013400px;}
.y2e9{bottom:589.132200px;}
.y33d{bottom:589.816500px;}
.y299{bottom:590.501400px;}
.y16a{bottom:591.139200px;}
.y235{bottom:593.082300px;}
.y1c8{bottom:593.438250px;}
.y12d{bottom:595.901550px;}
.yb6{bottom:597.517350px;}
.y77{bottom:597.984900px;}
.y1ce{bottom:599.686950px;}
.y14{bottom:600.343200px;}
.y2e8{bottom:601.732200px;}
.y298{bottom:603.101400px;}
.y25c{bottom:605.213400px;}
.y39e{bottom:606.666000px;}
.y169{bottom:607.339200px;}
.y111{bottom:609.014400px;}
.y12c{bottom:612.101550px;}
.y1c7{bottom:612.938250px;}
.yb5{bottom:613.717350px;}
.y234{bottom:614.082300px;}
.y76{bottom:614.184900px;}
.y2e7{bottom:614.332050px;}
.y112{bottom:614.549550px;}
.y297{bottom:615.701400px;}
.y1cd{bottom:615.886950px;}
.y13{bottom:616.543050px;}
.y338{bottom:619.580850px;}
.y25b{bottom:621.413400px;}
.y168{bottom:623.539200px;}
.y2e6{bottom:626.932050px;}
.y39d{bottom:627.666000px;}
.y296{bottom:628.301400px;}
.y12b{bottom:628.301550px;}
.yb4{bottom:629.917350px;}
.y75{bottom:630.384900px;}
.y1cc{bottom:632.086950px;}
.y1c6{bottom:632.438250px;}
.y233{bottom:635.082300px;}
.y355{bottom:635.823450px;}
.y25a{bottom:637.613400px;}
.y2e5{bottom:639.532050px;}
.y167{bottom:639.739200px;}
.y295{bottom:640.901400px;}
.y12a{bottom:644.501550px;}
.yb3{bottom:646.117350px;}
.y74{bottom:646.584900px;}
.y1cb{bottom:648.286950px;}
.y39c{bottom:648.666000px;}
.y12{bottom:648.868200px;}
.yf7{bottom:649.484550px;}
.y1c5{bottom:651.938250px;}
.y2e4{bottom:652.132200px;}
.y294{bottom:653.501400px;}
.y259{bottom:653.813400px;}
.yff{bottom:655.042200px;}
.y166{bottom:655.939200px;}
.y232{bottom:656.082300px;}
.y354{bottom:656.823450px;}
.y129{bottom:660.701550px;}
.yf1{bottom:660.736950px;}
.yfc{bottom:660.849000px;}
.yeb{bottom:661.794000px;}
.yb2{bottom:662.317350px;}
.y73{bottom:662.784900px;}
.y1ca{bottom:664.486950px;}
.y2e3{bottom:664.732200px;}
.y11{bottom:665.068200px;}
.y293{bottom:666.101400px;}
.yf0{bottom:667.534200px;}
.y39b{bottom:669.666000px;}
.y258{bottom:670.013400px;}
.y100{bottom:670.493250px;}
.y324{bottom:671.268450px;}
.y1c4{bottom:671.438250px;}
.y165{bottom:672.139200px;}
.yf2{bottom:673.061700px;}
.y128{bottom:676.901550px;}
.y231{bottom:677.082300px;}
.y2e2{bottom:677.332050px;}
.y353{bottom:677.823450px;}
.yb1{bottom:678.517350px;}
.y292{bottom:678.701400px;}
.yf4{bottom:678.801900px;}
.y72{bottom:678.984900px;}
.y36{bottom:680.890800px;}
.yee{bottom:681.140550px;}
.y10{bottom:681.268200px;}
.y323{bottom:683.868450px;}
.yef{bottom:685.179900px;}
.y257{bottom:686.213400px;}
.yf8{bottom:688.107600px;}
.y164{bottom:688.339200px;}
.y2e1{bottom:689.932050px;}
.y39a{bottom:690.666000px;}
.y1c3{bottom:690.938250px;}
.y291{bottom:691.301400px;}
.y334{bottom:691.953300px;}
.y127{bottom:693.101550px;}
.y35{bottom:693.490800px;}
.yec{bottom:693.790050px;}
.yb0{bottom:694.717350px;}
.y71{bottom:695.184900px;}
.y322{bottom:696.468450px;}
.yf{bottom:697.468200px;}
.y230{bottom:698.082300px;}
.yf3{bottom:698.786250px;}
.y352{bottom:698.823450px;}
.y256{bottom:702.413400px;}
.y2e0{bottom:702.532050px;}
.yea{bottom:703.463400px;}
.y290{bottom:703.901400px;}
.y163{bottom:704.539200px;}
.y34{bottom:706.090800px;}
.y375{bottom:706.538850px;}
.yed{bottom:708.990900px;}
.y321{bottom:709.068450px;}
.y126{bottom:709.301550px;}
.y1c2{bottom:710.438250px;}
.yaf{bottom:710.917350px;}
.yf5{bottom:711.116850px;}
.y70{bottom:711.384900px;}
.ye{bottom:713.668200px;}
.y2df{bottom:715.132200px;}
.y28f{bottom:716.501400px;}
.y336{bottom:718.353900px;}
.y255{bottom:718.613400px;}
.y33{bottom:718.690800px;}
.y22f{bottom:719.082300px;}
.y351{bottom:719.823450px;}
.y162{bottom:720.739200px;}
.y320{bottom:721.668450px;}
.yf9{bottom:724.594950px;}
.y125{bottom:725.501550px;}
.yae{bottom:727.117350px;}
.y374{bottom:727.538850px;}
.y6f{bottom:727.584900px;}
.y2de{bottom:727.732200px;}
.y28e{bottom:729.101400px;}
.yd{bottom:729.868200px;}
.y1c1{bottom:729.938250px;}
.y393{bottom:732.412650px;}
.yfd{bottom:732.453150px;}
.y254{bottom:734.813400px;}
.y161{bottom:736.939200px;}
.y22e{bottom:740.082300px;}
.y2dd{bottom:740.332050px;}
.y350{bottom:740.823450px;}
.y28d{bottom:741.701400px;}
.y124{bottom:741.701550px;}
.yad{bottom:743.317350px;}
.y6e{bottom:743.784900px;}
.y32{bottom:743.890800px;}
.y392{bottom:745.012650px;}
.yc{bottom:746.068200px;}
.y31f{bottom:746.868450px;}
.y373{bottom:748.538850px;}
.y1c0{bottom:749.438250px;}
.y253{bottom:751.013400px;}
.y2dc{bottom:752.932050px;}
.y160{bottom:753.139200px;}
.y28c{bottom:754.301400px;}
.y31{bottom:756.490800px;}
.y123{bottom:757.901550px;}
.y1fa{bottom:759.392100px;}
.y31e{bottom:759.468450px;}
.yac{bottom:759.517350px;}
.yfb{bottom:759.707250px;}
.y6d{bottom:759.984900px;}
.y335{bottom:760.905600px;}
.y22d{bottom:761.082300px;}
.y34f{bottom:761.823450px;}
.yb{bottom:762.268200px;}
.y2db{bottom:765.532050px;}
.y28b{bottom:766.901400px;}
.y252{bottom:767.213400px;}
.y15f{bottom:769.339200px;}
.y372{bottom:769.538850px;}
.y391{bottom:770.368650px;}
.y1bf{bottom:770.438250px;}
.y1f9{bottom:771.992100px;}
.y31d{bottom:772.068450px;}
.y122{bottom:774.101550px;}
.yab{bottom:775.717350px;}
.yfe{bottom:775.901100px;}
.y6c{bottom:776.184900px;}
.y2da{bottom:778.132200px;}
.ya{bottom:778.468200px;}
.y28a{bottom:779.501400px;}
.y30{bottom:781.690950px;}
.y22c{bottom:782.082300px;}
.y34e{bottom:782.823450px;}
.y390{bottom:782.968650px;}
.y251{bottom:783.413400px;}
.y1f8{bottom:784.591950px;}
.y31c{bottom:784.668450px;}
.y15e{bottom:785.539200px;}
.y121{bottom:790.301550px;}
.y371{bottom:790.538850px;}
.y2d9{bottom:790.732200px;}
.y1be{bottom:791.438250px;}
.yaa{bottom:791.917350px;}
.y289{bottom:792.101400px;}
.y6b{bottom:792.384900px;}
.y2f{bottom:794.290800px;}
.y9{bottom:794.668050px;}
.yf6{bottom:797.083050px;}
.y1f7{bottom:797.192100px;}
.y250{bottom:799.613400px;}
.y15d{bottom:801.739200px;}
.y22b{bottom:803.082300px;}
.y2d8{bottom:803.332050px;}
.y34d{bottom:803.823450px;}
.y288{bottom:804.701400px;}
.y120{bottom:806.501550px;}
.y2e{bottom:806.890800px;}
.ya9{bottom:808.117350px;}
.y6a{bottom:808.584900px;}
.y1f6{bottom:809.791950px;}
.y31b{bottom:809.868450px;}
.y8{bottom:810.868050px;}
.y370{bottom:811.538850px;}
.y1bd{bottom:812.438250px;}
.y24f{bottom:815.813400px;}
.y2d7{bottom:815.932050px;}
.y287{bottom:817.301400px;}
.y15c{bottom:817.939200px;}
.y31a{bottom:822.468450px;}
.y22a{bottom:824.082300px;}
.ya8{bottom:824.317350px;}
.y69{bottom:824.784900px;}
.y34c{bottom:824.823450px;}
.y7{bottom:827.068050px;}
.y2d6{bottom:828.532050px;}
.y286{bottom:829.901400px;}
.ye9{bottom:829.959450px;}
.y11f{bottom:831.205500px;}
.y24e{bottom:832.013400px;}
.y2d{bottom:832.090800px;}
.y36f{bottom:832.538850px;}
.y1bc{bottom:833.438250px;}
.y15b{bottom:834.139200px;}
.y1f5{bottom:835.147950px;}
.ya7{bottom:840.517200px;}
.y68{bottom:840.984900px;}
.y2d5{bottom:841.132200px;}
.y285{bottom:842.501400px;}
.y6{bottom:843.268050px;}
.y2c{bottom:844.690950px;}
.y229{bottom:845.082300px;}
.y34b{bottom:845.823450px;}
.y1bb{bottom:846.938250px;}
.y319{bottom:847.668450px;}
.y1f4{bottom:847.747950px;}
.y24d{bottom:848.213400px;}
.y15a{bottom:850.339200px;}
.ye2{bottom:850.581450px;}
.y36e{bottom:853.538850px;}
.yfa{bottom:853.634250px;}
.y2d4{bottom:853.732200px;}
.y284{bottom:855.101400px;}
.y11e{bottom:855.909450px;}
.ya6{bottom:856.717350px;}
.y67{bottom:857.184900px;}
.y5{bottom:859.468050px;}
.y318{bottom:860.268450px;}
.y1f3{bottom:860.347950px;}
.y2b{bottom:860.787300px;}
.y24c{bottom:864.413400px;}
.y228{bottom:866.082300px;}
.y2d3{bottom:866.332050px;}
.y159{bottom:866.539200px;}
.y34a{bottom:866.823450px;}
.y283{bottom:867.701400px;}
.y2a{bottom:869.890800px;}
.y317{bottom:872.868450px;}
.ya5{bottom:872.917350px;}
.y1f2{bottom:872.947950px;}
.y66{bottom:873.384900px;}
.y29{bottom:873.387300px;}
.y36d{bottom:874.538850px;}
.y118{bottom:877.074000px;}
.y2d2{bottom:878.932050px;}
.y282{bottom:880.301400px;}
.y24b{bottom:880.613400px;}
.y331{bottom:881.931450px;}
.y28{bottom:882.490800px;}
.y158{bottom:882.739200px;}
.y114{bottom:883.436250px;}
.y4{bottom:884.172000px;}
.y316{bottom:885.468450px;}
.y399{bottom:885.471150px;}
.y227{bottom:887.082300px;}
.y349{bottom:887.823450px;}
.ya4{bottom:889.117350px;}
.y65{bottom:889.584900px;}
.y117{bottom:889.674000px;}
.y2d1{bottom:891.532050px;}
.y281{bottom:892.901400px;}
.y36c{bottom:895.538850px;}
.y24a{bottom:896.813400px;}
.y315{bottom:898.068450px;}
.y330{bottom:898.131450px;}
.y157{bottom:898.939200px;}
.y20e{bottom:902.694900px;}
.y20c{bottom:903.013800px;}
.y2d0{bottom:904.132200px;}
.ya3{bottom:905.317350px;}
.y280{bottom:905.501400px;}
.y64{bottom:905.784900px;}
.y398{bottom:906.471150px;}
.y226{bottom:908.082300px;}
.y348{bottom:908.823450px;}
.y1ba{bottom:910.152750px;}
.y249{bottom:913.013400px;}
.y32f{bottom:914.331450px;}
.y156{bottom:915.139200px;}
.y36b{bottom:916.538850px;}
.y2cf{bottom:916.732200px;}
.y27f{bottom:918.101400px;}
.y20d{bottom:918.894900px;}
.y20b{bottom:919.213800px;}
.ya2{bottom:921.517200px;}
.y63{bottom:921.984900px;}
.y1b9{bottom:922.752750px;}
.y314{bottom:923.268450px;}
.y397{bottom:927.471150px;}
.y225{bottom:929.082300px;}
.y248{bottom:929.213400px;}
.y2ce{bottom:929.332200px;}
.y347{bottom:929.823450px;}
.y32e{bottom:930.531600px;}
.y27e{bottom:930.701550px;}
.y155{bottom:931.339200px;}
.y20a{bottom:931.368900px;}
.y203{bottom:932.006700px;}
.y54{bottom:933.939000px;}
.y1b8{bottom:935.352750px;}
.y313{bottom:935.868450px;}
.y36a{bottom:937.538850px;}
.y11d{bottom:937.541850px;}
.ya1{bottom:937.717200px;}
.y62{bottom:938.185050px;}
.y2cd{bottom:941.932200px;}
.y116{bottom:942.978900px;}
.y27d{bottom:943.301550px;}
.y247{bottom:945.413400px;}
.y32d{bottom:946.731600px;}
.y154{bottom:947.539200px;}
.y1b7{bottom:947.952750px;}
.y312{bottom:948.468450px;}
.y396{bottom:948.471150px;}
.y224{bottom:950.082300px;}
.ya0{bottom:953.917200px;}
.y61{bottom:954.385050px;}
.y2cc{bottom:954.532200px;}
.y115{bottom:955.579050px;}
.y27c{bottom:955.901400px;}
.y53{bottom:956.439000px;}
.y209{bottom:958.368900px;}
.y369{bottom:958.538850px;}
.y202{bottom:959.006700px;}
.y1fd{bottom:959.137800px;}
.y204{bottom:959.187000px;}
.y1b6{bottom:960.552750px;}
.y311{bottom:961.068450px;}
.y246{bottom:961.613400px;}
.y32c{bottom:962.931450px;}
.y153{bottom:963.739200px;}
.y2cb{bottom:967.132200px;}
.y395{bottom:969.471150px;}
.y9f{bottom:970.117200px;}
.y60{bottom:970.584900px;}
.y11a{bottom:972.046650px;}
.y1b5{bottom:973.152750px;}
.y310{bottom:973.668450px;}
.y245{bottom:977.813400px;}
.y52{bottom:978.939000px;}
.y32b{bottom:979.131450px;}
.y368{bottom:979.538850px;}
.y2ca{bottom:979.732200px;}
.y152{bottom:979.939200px;}
.y27b{bottom:981.257400px;}
.y208{bottom:985.368900px;}
.y1b4{bottom:985.752750px;}
.y201{bottom:986.006700px;}
.y30f{bottom:986.268450px;}
.y9e{bottom:986.317200px;}
.y5f{bottom:986.784900px;}
.y119{bottom:988.246650px;}
.y346{bottom:989.311350px;}
.y394{bottom:990.471150px;}
.y2c9{bottom:992.332200px;}
.y1fc{bottom:992.679900px;}
.y244{bottom:994.013400px;}
.y32a{bottom:995.331450px;}
.y367{bottom:996.038850px;}
.y151{bottom:996.139200px;}
.y1b3{bottom:998.352750px;}
.y345{bottom:1001.911350px;}
.y9d{bottom:1002.517200px;}
.y5e{bottom:1002.985050px;}
.y2c8{bottom:1004.932200px;}
.y1fb{bottom:1009.179900px;}
.y243{bottom:1010.213400px;}
.y329{bottom:1011.531450px;}
.y150{bottom:1012.339200px;}
.y207{bottom:1012.368900px;}
.y200{bottom:1013.006700px;}
.y113{bottom:1013.971050px;}
.y344{bottom:1014.511350px;}
.y223{bottom:1015.282050px;}
.y2c7{bottom:1017.532200px;}
.y11c{bottom:1017.878400px;}
.y9c{bottom:1018.717200px;}
.y5d{bottom:1019.185050px;}
.y51{bottom:1023.939000px;}
.y242{bottom:1026.413400px;}
.y1b2{bottom:1026.708600px;}
.y343{bottom:1027.111350px;}
.y38f{bottom:1027.186500px;}
.y328{bottom:1027.731450px;}
.y222{bottom:1027.882050px;}
.y14f{bottom:1028.539350px;}
.y366{bottom:1028.738850px;}
.y11b{bottom:1029.878400px;}
.y2c6{bottom:1030.132200px;}
.y9b{bottom:1034.917200px;}
.y5c{bottom:1035.385050px;}
.y206{bottom:1039.368900px;}
.y38e{bottom:1039.786350px;}
.y1b1{bottom:1039.908600px;}
.y1ff{bottom:1040.006700px;}
.y221{bottom:1040.482050px;}
.ye8{bottom:1042.209000px;}
.y241{bottom:1042.613400px;}
.y2c5{bottom:1042.732200px;}
.y327{bottom:1043.931450px;}
.y14e{bottom:1044.739350px;}
.y9a{bottom:1051.117200px;}
.y5b{bottom:1051.584900px;}
.y365{bottom:1052.352750px;}
.y38d{bottom:1052.386350px;}
.ye7{bottom:1052.413650px;}
.y342{bottom:1052.467200px;}
.y1b0{bottom:1052.508600px;}
.y220{bottom:1053.082050px;}
.y2c4{bottom:1055.332200px;}
.y50{bottom:1056.939000px;}
.y240{bottom:1058.813250px;}
.y326{bottom:1060.131450px;}
.y14d{bottom:1060.939200px;}
.ye6{bottom:1062.618600px;}
.y364{bottom:1064.952750px;}
.y341{bottom:1065.067350px;}
.y1af{bottom:1065.108600px;}
.y205{bottom:1066.368900px;}
.y1fe{bottom:1067.006700px;}
.y99{bottom:1067.317200px;}
.y5a{bottom:1067.784900px;}
.y2c3{bottom:1067.932200px;}
.ye5{bottom:1073.886150px;}
.y23f{bottom:1075.013250px;}
.y14c{bottom:1077.139200px;}
.y340{bottom:1077.667200px;}
.y1ae{bottom:1077.708600px;}
.y38c{bottom:1077.742200px;}
.y21f{bottom:1078.437900px;}
.y2c2{bottom:1080.532200px;}
.y98{bottom:1083.517200px;}
.y59{bottom:1083.985050px;}
.y325{bottom:1084.835400px;}
.y4f{bottom:1089.939000px;}
.ye4{bottom:1089.948450px;}
.y33f{bottom:1090.267200px;}
.y1ad{bottom:1090.308600px;}
.y38b{bottom:1090.342200px;}
.y21e{bottom:1091.037900px;}
.y2c1{bottom:1093.132200px;}
.y14b{bottom:1093.339350px;}
.y97{bottom:1099.717200px;}
.y33e{bottom:1102.867200px;}
.y1ac{bottom:1102.908600px;}
.y38a{bottom:1102.942200px;}
.ye3{bottom:1103.148450px;}
.y21d{bottom:1103.637900px;}
.ye1{bottom:1105.274400px;}
.y2c0{bottom:1105.732200px;}
.y58{bottom:1109.539350px;}
.y96{bottom:1115.917200px;}
.y2bf{bottom:1118.332200px;}
.y3{bottom:1125.884700px;}
.y4e{bottom:1169.458350px;}
.y56{bottom:1176.044700px;}
.y55{bottom:1176.044850px;}
.y2{bottom:1184.998650px;}
.h7{height:21.430500px;}
.h6{height:31.290000px;}
.h9{height:32.193000px;}
.ha{height:32.529000px;}
.h8{height:32.571000px;}
.hb{height:32.970000px;}
.h13{height:34.911450px;}
.h1a{height:37.290000px;}
.h18{height:38.193000px;}
.hf{height:40.230000px;}
.h15{height:40.230147px;}
.h12{height:40.581000px;}
.h2{height:41.391000px;}
.h5{height:41.823000px;}
.h3{height:41.877000px;}
.h17{height:42.389986px;}
.h4{height:42.390000px;}
.h16{height:42.390155px;}
.h14{height:42.390179px;}
.h10{height:44.886150px;}
.h11{height:48.973800px;}
.h19{height:49.459800px;}
.he{height:65.142000px;}
.hc{height:98.340000px;}
.hd{height:103.620000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1105.500000px;}
.w2{width:1105.512000px;}
.x0{left:0.000000px;}
.xb{left:106.275000px;}
.x35{left:112.889700px;}
.x37{left:117.698100px;}
.x34{left:119.554050px;}
.x38{left:121.572600px;}
.xc{left:123.300000px;}
.x9{left:127.575000px;}
.x39{left:129.402450px;}
.x10{left:135.277500px;}
.x2d{left:136.488150px;}
.x5{left:140.543550px;}
.xf{left:141.655500px;}
.x33{left:144.823350px;}
.x6{left:146.626350px;}
.x16{left:150.094500px;}
.x3d{left:157.606950px;}
.x2e{left:168.570000px;}
.x17{left:183.259800px;}
.x32{left:187.189650px;}
.x40{left:211.904700px;}
.x22{left:214.511850px;}
.x21{left:217.275600px;}
.x20{left:229.883850px;}
.x1f{left:231.242100px;}
.x1e{left:251.586600px;}
.x46{left:254.471700px;}
.x1d{left:266.750400px;}
.x7{left:268.937100px;}
.x1c{left:271.931100px;}
.x44{left:279.203850px;}
.x1b{left:284.968950px;}
.x1a{left:293.238150px;}
.x19{left:301.990200px;}
.x4{left:311.456700px;}
.x48{left:319.564350px;}
.x18{left:323.397600px;}
.x13{left:327.189000px;}
.x45{left:335.949750px;}
.x2f{left:339.553050px;}
.x14{left:341.007900px;}
.x15{left:373.142700px;}
.x11{left:375.513750px;}
.x23{left:388.291950px;}
.x36{left:393.944850px;}
.x41{left:430.896300px;}
.x2c{left:436.195200px;}
.x12{left:442.204650px;}
.xd{left:450.694200px;}
.x26{left:458.146050px;}
.x42{left:460.263450px;}
.xe{left:467.719200px;}
.xa{left:471.692550px;}
.x47{left:479.400300px;}
.x3a{left:480.405750px;}
.x3b{left:484.804350px;}
.x2{left:489.699000px;}
.x3c{left:492.634200px;}
.x24{left:500.405250px;}
.x3e{left:507.047250px;}
.x25{left:518.688600px;}
.x27{left:575.877600px;}
.x28{left:576.940650px;}
.x8{left:581.937750px;}
.x30{left:589.944750px;}
.x31{left:600.823200px;}
.x2b{left:605.161350px;}
.x43{left:611.907600px;}
.x29{left:652.876500px;}
.x3{left:685.531800px;}
.x2a{left:750.680700px;}
.x1{left:763.185600px;}
.x3f{left:783.471750px;}
.x49{left:987.464400px;}
@media print{
.v1{vertical-align:-12.432000pt;}
.v6{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.333333pt;}
.v3{vertical-align:6.740267pt;}
.v4{vertical-align:12.432000pt;}
.v2{vertical-align:15.984000pt;}
.ls13{letter-spacing:-2.240000pt;}
.ls2f{letter-spacing:-1.866667pt;}
.ls14{letter-spacing:-1.493333pt;}
.ls55{letter-spacing:-1.056000pt;}
.ls2d{letter-spacing:-1.045333pt;}
.ls45{letter-spacing:-1.008000pt;}
.ls2c{letter-spacing:-0.970667pt;}
.ls44{letter-spacing:-0.912000pt;}
.ls66{letter-spacing:-0.821333pt;}
.ls1a{letter-spacing:-0.784000pt;}
.ls15{letter-spacing:-0.746667pt;}
.ls56{letter-spacing:-0.709333pt;}
.lse{letter-spacing:-0.576000pt;}
.ls57{letter-spacing:-0.560000pt;}
.ls24{letter-spacing:-0.528000pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls58{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.432000pt;}
.ls59{letter-spacing:-0.410667pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.373333pt;}
.ls12{letter-spacing:-0.336000pt;}
.ls3c{letter-spacing:-0.298667pt;}
.ls33{letter-spacing:-0.288000pt;}
.ls17{letter-spacing:-0.261333pt;}
.ls21{letter-spacing:-0.240000pt;}
.ls67{letter-spacing:-0.224000pt;}
.ls2e{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.186667pt;}
.ls64{letter-spacing:-0.149333pt;}
.ls20{letter-spacing:-0.144000pt;}
.ls5a{letter-spacing:-0.112000pt;}
.ls22{letter-spacing:-0.096000pt;}
.ls65{letter-spacing:-0.074667pt;}
.lsf{letter-spacing:-0.048000pt;}
.ls63{letter-spacing:-0.037333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.022933pt;}
.ls36{letter-spacing:0.023467pt;}
.ls18{letter-spacing:0.037333pt;}
.ls3f{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.057600pt;}
.ls4a{letter-spacing:0.074667pt;}
.ls4{letter-spacing:0.109333pt;}
.ls4f{letter-spacing:0.112000pt;}
.ls7{letter-spacing:0.149333pt;}
.ls5{letter-spacing:0.186667pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls50{letter-spacing:0.224000pt;}
.ls23{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.261333pt;}
.ls40{letter-spacing:0.288000pt;}
.ls49{letter-spacing:0.298667pt;}
.ls41{letter-spacing:0.336000pt;}
.ls4c{letter-spacing:0.373333pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls54{letter-spacing:0.410667pt;}
.ls3e{letter-spacing:0.432000pt;}
.ls5f{letter-spacing:0.440533pt;}
.ls4b{letter-spacing:0.466667pt;}
.ls3d{letter-spacing:0.480000pt;}
.ls62{letter-spacing:0.485333pt;}
.ls61{letter-spacing:0.522667pt;}
.ls38{letter-spacing:0.528000pt;}
.ls69{letter-spacing:0.539200pt;}
.ls1e{letter-spacing:0.576000pt;}
.ls5b{letter-spacing:0.746667pt;}
.ls4e{letter-spacing:0.784000pt;}
.lsa{letter-spacing:0.821333pt;}
.ls5e{letter-spacing:0.933333pt;}
.ls60{letter-spacing:1.120000pt;}
.ls5c{letter-spacing:1.232000pt;}
.ls46{letter-spacing:1.284267pt;}
.ls53{letter-spacing:1.381333pt;}
.ls30{letter-spacing:1.440000pt;}
.ls6{letter-spacing:1.680000pt;}
.ls52{letter-spacing:1.749867pt;}
.ls51{letter-spacing:1.914667pt;}
.ls2a{letter-spacing:1.990933pt;}
.ls2b{letter-spacing:1.991467pt;}
.ls39{letter-spacing:2.105600pt;}
.ls28{letter-spacing:2.267733pt;}
.ls0{letter-spacing:2.307200pt;}
.ls6d{letter-spacing:2.377600pt;}
.ls6b{letter-spacing:2.517333pt;}
.ls27{letter-spacing:2.610667pt;}
.ls26{letter-spacing:2.611200pt;}
.ls42{letter-spacing:2.702400pt;}
.ls6e{letter-spacing:2.851200pt;}
.ls68{letter-spacing:2.880000pt;}
.ls3{letter-spacing:3.385600pt;}
.ls32{letter-spacing:3.389867pt;}
.ls34{letter-spacing:3.555733pt;}
.ls1d{letter-spacing:3.740800pt;}
.ls1f{letter-spacing:3.846400pt;}
.ls31{letter-spacing:4.081600pt;}
.ls29{letter-spacing:4.233600pt;}
.ls1{letter-spacing:5.209600pt;}
.ls43{letter-spacing:5.856000pt;}
.ls2{letter-spacing:5.874667pt;}
.ls4d{letter-spacing:5.946667pt;}
.ls5d{letter-spacing:6.879467pt;}
.ls37{letter-spacing:6.988267pt;}
.ls48{letter-spacing:14.569067pt;}
.lsc{letter-spacing:53.060800pt;}
.lsb{letter-spacing:53.066133pt;}
.ls6a{letter-spacing:97.104000pt;}
.ls6f{letter-spacing:293.817600pt;}
.ls3b{letter-spacing:369.762667pt;}
.ls70{letter-spacing:428.609067pt;}
.ls3a{letter-spacing:442.842667pt;}
.ls6c{letter-spacing:481.886400pt;}
.ls47{letter-spacing:801.277333pt;}
.wsb2{word-spacing:-97.104000pt;}
.ws9{word-spacing:-19.114667pt;}
.ws7b{word-spacing:-12.480000pt;}
.ws2{word-spacing:-12.288000pt;}
.ws7c{word-spacing:-12.000000pt;}
.ws69{word-spacing:-11.712000pt;}
.ws0{word-spacing:-11.664000pt;}
.ws58{word-spacing:-11.232000pt;}
.ws83{word-spacing:-10.938667pt;}
.ws7d{word-spacing:-10.896000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws81{word-spacing:-10.341333pt;}
.ws7e{word-spacing:-10.024000pt;}
.ws9c{word-spacing:-9.968000pt;}
.ws7f{word-spacing:-9.930667pt;}
.wsab{word-spacing:-9.818667pt;}
.ws99{word-spacing:-9.744000pt;}
.ws5{word-spacing:-9.557333pt;}
.ws9a{word-spacing:-9.520000pt;}
.ws9b{word-spacing:-9.370667pt;}
.ws45{word-spacing:-9.184000pt;}
.ws80{word-spacing:-9.109333pt;}
.ws8{word-spacing:-9.072000pt;}
.ws82{word-spacing:-8.922667pt;}
.ws7{word-spacing:-8.885333pt;}
.ws43{word-spacing:-8.736000pt;}
.ws41{word-spacing:-8.586667pt;}
.ws5a{word-spacing:-8.474667pt;}
.ws6{word-spacing:-8.325333pt;}
.ws59{word-spacing:-8.176000pt;}
.ws2a{word-spacing:-7.987200pt;}
.ws44{word-spacing:-7.690667pt;}
.ws4{word-spacing:-5.896800pt;}
.ws75{word-spacing:-2.928000pt;}
.ws72{word-spacing:-1.872000pt;}
.ws2e{word-spacing:-1.824000pt;}
.ws13{word-spacing:-1.776000pt;}
.ws88{word-spacing:-1.728000pt;}
.ws1a{word-spacing:-1.680000pt;}
.ws4f{word-spacing:-1.632000pt;}
.wsa7{word-spacing:-1.456000pt;}
.ws4c{word-spacing:-1.440000pt;}
.ws23{word-spacing:-1.418667pt;}
.ws9d{word-spacing:-1.232000pt;}
.ws9e{word-spacing:-1.120000pt;}
.ws8a{word-spacing:-1.104000pt;}
.wsa4{word-spacing:-0.933333pt;}
.ws28{word-spacing:-0.821333pt;}
.ws95{word-spacing:-0.784000pt;}
.ws98{word-spacing:-0.746667pt;}
.ws5f{word-spacing:-0.672000pt;}
.ws31{word-spacing:-0.576000pt;}
.ws70{word-spacing:-0.528000pt;}
.wsa9{word-spacing:-0.522667pt;}
.wsaa{word-spacing:-0.485333pt;}
.ws6b{word-spacing:-0.480000pt;}
.ws6e{word-spacing:-0.432000pt;}
.ws66{word-spacing:-0.410667pt;}
.ws2d{word-spacing:-0.384000pt;}
.ws8f{word-spacing:-0.373333pt;}
.wsa2{word-spacing:-0.336000pt;}
.ws90{word-spacing:-0.298667pt;}
.ws73{word-spacing:-0.288000pt;}
.ws20{word-spacing:-0.261333pt;}
.ws2f{word-spacing:-0.240000pt;}
.ws96{word-spacing:-0.224000pt;}
.ws2c{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.186667pt;}
.ws1f{word-spacing:-0.149333pt;}
.ws91{word-spacing:-0.112000pt;}
.ws92{word-spacing:-0.074667pt;}
.ws1{word-spacing:-0.048000pt;}
.ws42{word-spacing:-0.037333pt;}
.wsa{word-spacing:0.000000pt;}
.ws9f{word-spacing:0.037333pt;}
.wsf{word-spacing:0.048000pt;}
.ws21{word-spacing:0.074667pt;}
.ws36{word-spacing:0.096000pt;}
.ws97{word-spacing:0.112000pt;}
.ws3d{word-spacing:0.144000pt;}
.wsa0{word-spacing:0.149333pt;}
.ws19{word-spacing:0.186667pt;}
.ws4b{word-spacing:0.192000pt;}
.wsa8{word-spacing:0.224000pt;}
.ws33{word-spacing:0.240000pt;}
.ws1b{word-spacing:0.261333pt;}
.ws3a{word-spacing:0.288000pt;}
.ws67{word-spacing:0.298667pt;}
.ws15{word-spacing:0.336000pt;}
.ws25{word-spacing:0.373333pt;}
.ws3e{word-spacing:0.384000pt;}
.ws14{word-spacing:0.432000pt;}
.ws93{word-spacing:0.448000pt;}
.ws40{word-spacing:0.480000pt;}
.ws51{word-spacing:0.528000pt;}
.ws8e{word-spacing:0.560000pt;}
.wsd{word-spacing:0.576000pt;}
.ws76{word-spacing:0.672000pt;}
.ws8d{word-spacing:0.709333pt;}
.ws24{word-spacing:0.746667pt;}
.wsa5{word-spacing:0.821333pt;}
.ws74{word-spacing:0.912000pt;}
.ws63{word-spacing:0.960000pt;}
.ws32{word-spacing:1.008000pt;}
.ws3c{word-spacing:1.056000pt;}
.ws79{word-spacing:1.194667pt;}
.ws4d{word-spacing:1.248000pt;}
.ws38{word-spacing:1.296000pt;}
.ws55{word-spacing:1.344000pt;}
.ws65{word-spacing:1.456000pt;}
.ws18{word-spacing:1.493333pt;}
.ws3b{word-spacing:1.584000pt;}
.ws89{word-spacing:1.680000pt;}
.ws8c{word-spacing:1.920000pt;}
.ws78{word-spacing:1.968000pt;}
.ws17{word-spacing:2.240000pt;}
.ws49{word-spacing:2.277333pt;}
.wsa1{word-spacing:2.389333pt;}
.ws48{word-spacing:2.448000pt;}
.ws57{word-spacing:2.496000pt;}
.wse{word-spacing:2.544000pt;}
.wsc{word-spacing:2.688000pt;}
.ws46{word-spacing:2.762667pt;}
.wsb1{word-spacing:2.927999pt;}
.wsb{word-spacing:2.928000pt;}
.wsb0{word-spacing:2.928011pt;}
.wsaf{word-spacing:2.928012pt;}
.ws2b{word-spacing:3.072000pt;}
.wsac{word-spacing:3.098667pt;}
.ws8b{word-spacing:3.120000pt;}
.ws52{word-spacing:3.168000pt;}
.wsad{word-spacing:3.248000pt;}
.ws53{word-spacing:3.408000pt;}
.ws56{word-spacing:3.504000pt;}
.ws5b{word-spacing:3.552000pt;}
.ws4a{word-spacing:3.696000pt;}
.ws30{word-spacing:4.080000pt;}
.ws47{word-spacing:4.218667pt;}
.ws3f{word-spacing:4.224000pt;}
.ws87{word-spacing:4.368000pt;}
.ws5c{word-spacing:4.656000pt;}
.wsae{word-spacing:4.704000pt;}
.wsa3{word-spacing:5.002667pt;}
.ws94{word-spacing:5.040000pt;}
.ws61{word-spacing:5.184000pt;}
.ws77{word-spacing:5.424000pt;}
.ws64{word-spacing:5.616000pt;}
.ws22{word-spacing:5.674667pt;}
.ws11{word-spacing:5.712000pt;}
.ws4e{word-spacing:6.240000pt;}
.ws39{word-spacing:6.384000pt;}
.ws12{word-spacing:6.432000pt;}
.ws29{word-spacing:6.453333pt;}
.ws62{word-spacing:6.816000pt;}
.ws84{word-spacing:6.864000pt;}
.ws1d{word-spacing:6.981333pt;}
.ws5e{word-spacing:7.008000pt;}
.ws27{word-spacing:7.056000pt;}
.ws35{word-spacing:7.632000pt;}
.ws26{word-spacing:8.474667pt;}
.ws54{word-spacing:8.496000pt;}
.ws6c{word-spacing:8.736000pt;}
.ws85{word-spacing:8.928000pt;}
.ws6d{word-spacing:10.032000pt;}
.ws10{word-spacing:10.080000pt;}
.ws50{word-spacing:10.224000pt;}
.ws34{word-spacing:10.512000pt;}
.ws6f{word-spacing:10.560000pt;}
.ws1c{word-spacing:10.938667pt;}
.wsa6{word-spacing:11.013333pt;}
.ws5d{word-spacing:11.184000pt;}
.ws71{word-spacing:11.376000pt;}
.ws1e{word-spacing:11.946667pt;}
.ws86{word-spacing:13.104000pt;}
.ws37{word-spacing:14.208000pt;}
.ws60{word-spacing:15.360000pt;}
.ws68{word-spacing:87.472000pt;}
.wsb5{word-spacing:128.650667pt;}
.wsb7{word-spacing:139.477333pt;}
.wsb6{word-spacing:155.306667pt;}
.wsb4{word-spacing:155.456000pt;}
.ws7a{word-spacing:255.509333pt;}
.wsb3{word-spacing:409.920000pt;}
.wsb8{word-spacing:491.754667pt;}
.ws6a{word-spacing:1243.139733pt;}
._16{margin-left:-898.212267pt;}
._60{margin-left:-97.197333pt;}
._98{margin-left:-26.230933pt;}
._88{margin-left:-15.373867pt;}
._14{margin-left:-11.721600pt;}
._f{margin-left:-8.570133pt;}
._e{margin-left:-7.161600pt;}
._c{margin-left:-5.961067pt;}
._d{margin-left:-4.978133pt;}
._4{margin-left:-3.743467pt;}
._5{margin-left:-2.817600pt;}
._1{margin-left:-1.156800pt;}
._3{width:1.598400pt;}
._0{width:3.000000pt;}
._2{width:4.699200pt;}
._8{width:5.726400pt;}
._7{width:6.955200pt;}
._6{width:8.016000pt;}
._13{width:9.158400pt;}
._12{width:10.221333pt;}
._9{width:11.240533pt;}
._a{width:12.720000pt;}
._b{width:13.768000pt;}
._11{width:14.828800pt;}
._10{width:15.920000pt;}
._18{width:17.646400pt;}
._82{width:20.241067pt;}
._1c{width:22.362667pt;}
._2d{width:26.543467pt;}
._99{width:27.447467pt;}
._9a{width:28.582933pt;}
._2e{width:31.770667pt;}
._8a{width:32.683733pt;}
._84{width:37.394133pt;}
._1d{width:38.714667pt;}
._86{width:41.103467pt;}
._25{width:42.784000pt;}
._87{width:44.742400pt;}
._1a{width:47.450667pt;}
._6a{width:48.645333pt;}
._1e{width:49.690667pt;}
._85{width:51.448533pt;}
._24{width:53.424000pt;}
._69{width:54.320000pt;}
._2f{width:55.806933pt;}
._23{width:58.762667pt;}
._20{width:60.368000pt;}
._5c{width:64.094400pt;}
._6b{width:64.997333pt;}
._1f{width:66.534933pt;}
._57{width:70.112000pt;}
._62{width:71.254400pt;}
._56{width:75.450667pt;}
._5e{width:80.442133pt;}
._19{width:82.020800pt;}
._7d{width:84.253867pt;}
._58{width:86.281067pt;}
._63{width:87.326400pt;}
._59{width:91.776533pt;}
._64{width:92.821867pt;}
._81{width:95.349333pt;}
._5b{width:97.107733pt;}
._61{width:98.041067pt;}
._7f{width:101.684267pt;}
._77{width:106.835200pt;}
._75{width:107.992533pt;}
._76{width:110.167467pt;}
._7c{width:112.158400pt;}
._7e{width:113.687467pt;}
._9e{width:121.493333pt;}
._80{width:128.090133pt;}
._55{width:130.025600pt;}
._6f{width:132.233600pt;}
._2c{width:133.123733pt;}
._71{width:135.869867pt;}
._6c{width:138.289600pt;}
._6d{width:139.178667pt;}
._65{width:140.346133pt;}
._91{width:144.908267pt;}
._29{width:149.774400pt;}
._6e{width:152.072000pt;}
._8d{width:154.790933pt;}
._93{width:155.718400pt;}
._28{width:161.197333pt;}
._95{width:166.416533pt;}
._8c{width:171.860800pt;}
._27{width:177.593600pt;}
._8f{width:181.581867pt;}
._22{width:182.807467pt;}
._96{width:187.065600pt;}
._97{width:188.049067pt;}
._70{width:190.250667pt;}
._78{width:192.004267pt;}
._8e{width:198.986133pt;}
._5d{width:200.846400pt;}
._79{width:204.362133pt;}
._31{width:207.805867pt;}
._66{width:208.947200pt;}
._1b{width:223.962133pt;}
._21{width:226.806933pt;}
._9b{width:229.107733pt;}
._9c{width:230.465600pt;}
._5a{width:234.819733pt;}
._7a{width:237.322133pt;}
._30{width:244.981333pt;}
._5f{width:246.242667pt;}
._2b{width:251.738667pt;}
._34{width:255.621333pt;}
._74{width:260.512533pt;}
._42{width:262.528000pt;}
._67{width:268.321600pt;}
._35{width:272.085333pt;}
._92{width:277.305067pt;}
._3c{width:279.029333pt;}
._38{width:288.101333pt;}
._26{width:289.855467pt;}
._33{width:292.805333pt;}
._3b{width:295.008000pt;}
._41{width:299.712000pt;}
._44{width:303.632000pt;}
._8b{width:305.124267pt;}
._2a{width:307.477333pt;}
._9d{width:309.319467pt;}
._94{width:310.806933pt;}
._a1{width:315.130667pt;}
._37{width:336.112000pt;}
._3a{width:343.018667pt;}
._a0{width:352.314667pt;}
._72{width:376.705600pt;}
._89{width:379.269333pt;}
._68{width:389.474133pt;}
._4a{width:392.746133pt;}
._73{width:409.920000pt;}
._9f{width:412.496000pt;}
._3e{width:417.736533pt;}
._39{width:421.961600pt;}
._3f{width:430.243200pt;}
._90{width:435.008000pt;}
._3d{width:458.317867pt;}
._36{width:462.505600pt;}
._83{width:471.968000pt;}
._4d{width:476.964267pt;}
._4c{width:480.381867pt;}
._53{width:485.706133pt;}
._54{width:494.717333pt;}
._a2{width:506.626133pt;}
._4b{width:554.281067pt;}
._52{width:558.201067pt;}
._47{width:570.931733pt;}
._50{width:574.851733pt;}
._46{width:582.354667pt;}
._17{width:586.187733pt;}
._4f{width:593.181333pt;}
._45{width:598.750933pt;}
._4e{width:602.670933pt;}
._43{width:608.353600pt;}
._32{width:659.866133pt;}
._49{width:672.896000pt;}
._51{width:676.816000pt;}
._40{width:711.012800pt;}
._48{width:732.554667pt;}
._15{width:886.928533pt;}
._7b{width:1642.833600pt;}
.fs2{font-size:24.266667pt;}
.fs5{font-size:31.200000pt;}
.fs1{font-size:37.333333pt;}
.fs8{font-size:47.999984pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:48.000175pt;}
.fs6{font-size:48.000203pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:37.584133pt;}
.yd5{bottom:37.804133pt;}
.y1{bottom:58.371600pt;}
.y14a{bottom:93.192667pt;}
.y188{bottom:93.457067pt;}
.yd4{bottom:99.126533pt;}
.y110{bottom:99.379467pt;}
.y95{bottom:99.542133pt;}
.y1ab{bottom:103.359600pt;}
.y19e{bottom:103.688133pt;}
.y27a{bottom:105.967467pt;}
.y21c{bottom:106.739333pt;}
.y1ea{bottom:107.177867pt;}
.y149{bottom:107.592667pt;}
.y187{bottom:107.857067pt;}
.y30e{bottom:109.273067pt;}
.y2be{bottom:110.490133pt;}
.yd3{bottom:113.526533pt;}
.y10f{bottom:113.779467pt;}
.y94{bottom:113.942133pt;}
.y1aa{bottom:117.759600pt;}
.y19d{bottom:118.088133pt;}
.y279{bottom:120.367467pt;}
.y30d{bottom:120.472933pt;}
.y21b{bottom:121.139333pt;}
.y1e9{bottom:121.577867pt;}
.y2bd{bottom:121.690133pt;}
.y148{bottom:121.992667pt;}
.y186{bottom:122.257067pt;}
.yd2{bottom:127.926533pt;}
.y10e{bottom:128.179467pt;}
.y93{bottom:128.342133pt;}
.y30c{bottom:131.673067pt;}
.y1a9{bottom:132.159600pt;}
.y19c{bottom:132.488133pt;}
.y2bc{bottom:132.890133pt;}
.y278{bottom:134.767467pt;}
.y21a{bottom:135.539333pt;}
.y1e8{bottom:135.977867pt;}
.y147{bottom:136.392667pt;}
.y185{bottom:136.657067pt;}
.yd1{bottom:142.326533pt;}
.y10d{bottom:142.579467pt;}
.y92{bottom:142.742133pt;}
.y30b{bottom:142.872933pt;}
.y2bb{bottom:144.090133pt;}
.y1a8{bottom:146.559600pt;}
.y19b{bottom:146.888133pt;}
.y277{bottom:149.167467pt;}
.y219{bottom:149.939333pt;}
.y1e7{bottom:150.377867pt;}
.y146{bottom:150.792667pt;}
.y184{bottom:151.057067pt;}
.y30a{bottom:154.072933pt;}
.y2ba{bottom:155.290133pt;}
.yd0{bottom:156.726533pt;}
.y10c{bottom:156.979467pt;}
.y385{bottom:157.133333pt;}
.y91{bottom:157.142133pt;}
.y1a7{bottom:160.959600pt;}
.y276{bottom:163.567467pt;}
.y218{bottom:164.339333pt;}
.y1e6{bottom:164.777867pt;}
.y145{bottom:165.192667pt;}
.y309{bottom:165.273067pt;}
.y183{bottom:165.457067pt;}
.y2b9{bottom:166.490133pt;}
.y19a{bottom:168.847200pt;}
.ycf{bottom:171.126533pt;}
.y10b{bottom:171.379467pt;}
.y90{bottom:171.542133pt;}
.y1a6{bottom:175.359600pt;}
.y384{bottom:175.800000pt;}
.y308{bottom:176.472933pt;}
.y2b8{bottom:177.690133pt;}
.y275{bottom:177.967467pt;}
.y217{bottom:178.739333pt;}
.y1e5{bottom:179.177867pt;}
.y144{bottom:179.592667pt;}
.y182{bottom:179.857067pt;}
.yce{bottom:185.526533pt;}
.y10a{bottom:185.779467pt;}
.y8f{bottom:185.942133pt;}
.y307{bottom:187.673067pt;}
.y2b7{bottom:188.890133pt;}
.y1a5{bottom:189.759600pt;}
.y274{bottom:192.367467pt;}
.y216{bottom:193.139333pt;}
.y1e4{bottom:193.577867pt;}
.y143{bottom:193.992667pt;}
.y181{bottom:194.257067pt;}
.y383{bottom:194.466667pt;}
.y306{bottom:198.872933pt;}
.ycd{bottom:199.926533pt;}
.y2b6{bottom:200.090133pt;}
.y109{bottom:200.179467pt;}
.y8e{bottom:200.342133pt;}
.y199{bottom:202.144800pt;}
.y1a4{bottom:204.159600pt;}
.y273{bottom:206.767467pt;}
.y215{bottom:207.539333pt;}
.y1e3{bottom:207.977867pt;}
.y142{bottom:208.392667pt;}
.y180{bottom:208.657067pt;}
.y305{bottom:210.072933pt;}
.y2b5{bottom:211.290133pt;}
.y382{bottom:213.133333pt;}
.ycc{bottom:214.326533pt;}
.y108{bottom:214.579467pt;}
.y8d{bottom:214.742133pt;}
.y198{bottom:216.544800pt;}
.y363{bottom:216.787867pt;}
.y1a3{bottom:218.559600pt;}
.y272{bottom:221.167467pt;}
.y304{bottom:221.273067pt;}
.y214{bottom:221.939333pt;}
.y1e2{bottom:222.377867pt;}
.y2b4{bottom:222.490133pt;}
.y141{bottom:222.792667pt;}
.y17f{bottom:223.057067pt;}
.y27{bottom:223.812667pt;}
.y4d{bottom:224.436267pt;}
.ycb{bottom:228.726533pt;}
.y107{bottom:228.979467pt;}
.y8c{bottom:229.142133pt;}
.y1f1{bottom:229.936933pt;}
.y197{bottom:230.944800pt;}
.y381{bottom:231.800000pt;}
.y303{bottom:232.472933pt;}
.y1a2{bottom:232.959600pt;}
.y2b3{bottom:233.690133pt;}
.y362{bottom:235.454533pt;}
.y271{bottom:235.567467pt;}
.y4c{bottom:235.636267pt;}
.y213{bottom:236.339333pt;}
.y1e1{bottom:236.777867pt;}
.y140{bottom:237.192667pt;}
.y17e{bottom:237.457067pt;}
.y26{bottom:238.212667pt;}
.yca{bottom:243.126533pt;}
.y106{bottom:243.379467pt;}
.y8b{bottom:243.542133pt;}
.y302{bottom:243.673067pt;}
.y2b2{bottom:244.890133pt;}
.y196{bottom:245.344800pt;}
.y1a1{bottom:247.359600pt;}
.y270{bottom:249.967467pt;}
.y380{bottom:250.466667pt;}
.y212{bottom:250.739333pt;}
.y1e0{bottom:251.177867pt;}
.y13f{bottom:251.592667pt;}
.y17d{bottom:251.857067pt;}
.y301{bottom:254.872933pt;}
.y361{bottom:255.234000pt;}
.y2b1{bottom:256.090133pt;}
.yc9{bottom:257.526533pt;}
.y105{bottom:257.779467pt;}
.y8a{bottom:257.942133pt;}
.y4b{bottom:258.036267pt;}
.y1f0{bottom:259.455067pt;}
.y195{bottom:259.744800pt;}
.y1a0{bottom:261.759600pt;}
.y26f{bottom:264.367467pt;}
.y211{bottom:265.139333pt;}
.y1df{bottom:265.577867pt;}
.y13e{bottom:265.992667pt;}
.y300{bottom:266.072933pt;}
.y17c{bottom:266.257067pt;}
.y25{bottom:266.946000pt;}
.y2b0{bottom:267.290133pt;}
.y37f{bottom:269.133333pt;}
.y4a{bottom:269.236267pt;}
.y333{bottom:270.682400pt;}
.y360{bottom:271.234000pt;}
.yc8{bottom:271.926533pt;}
.y104{bottom:272.179467pt;}
.y89{bottom:272.342133pt;}
.y35f{bottom:272.567333pt;}
.y1ef{bottom:273.855067pt;}
.y194{bottom:274.144800pt;}
.y2ff{bottom:277.273067pt;}
.y2af{bottom:278.490133pt;}
.y26e{bottom:278.767467pt;}
.y210{bottom:279.539333pt;}
.y1de{bottom:279.977867pt;}
.y13d{bottom:280.392667pt;}
.y49{bottom:280.436267pt;}
.y17b{bottom:280.657067pt;}
.y24{bottom:281.346000pt;}
.y19f{bottom:283.718667pt;}
.yc7{bottom:286.326533pt;}
.y103{bottom:286.579467pt;}
.y88{bottom:286.742133pt;}
.y37e{bottom:287.800000pt;}
.y1ee{bottom:288.255067pt;}
.y2fe{bottom:288.472933pt;}
.y193{bottom:288.544800pt;}
.y35e{bottom:288.567333pt;}
.y2ae{bottom:289.690133pt;}
.y48{bottom:291.636267pt;}
.y26d{bottom:293.167467pt;}
.y332{bottom:293.220933pt;}
.y20f{bottom:293.939333pt;}
.y1dd{bottom:294.377867pt;}
.y13c{bottom:294.792667pt;}
.y17a{bottom:295.057067pt;}
.y23{bottom:295.746000pt;}
.y2fd{bottom:299.673067pt;}
.yc6{bottom:300.726533pt;}
.y2ad{bottom:300.890133pt;}
.y102{bottom:300.979467pt;}
.y87{bottom:301.142133pt;}
.y1ed{bottom:302.655067pt;}
.y47{bottom:302.836267pt;}
.y192{bottom:302.944800pt;}
.y37d{bottom:306.466667pt;}
.y35d{bottom:307.013600pt;}
.y26c{bottom:307.567467pt;}
.y13b{bottom:309.192667pt;}
.y179{bottom:309.457067pt;}
.y22{bottom:310.146000pt;}
.y2fc{bottom:310.872933pt;}
.y2ac{bottom:312.090133pt;}
.y46{bottom:314.036267pt;}
.yc5{bottom:315.126533pt;}
.y101{bottom:315.379467pt;}
.y86{bottom:315.542133pt;}
.y1dc{bottom:316.336933pt;}
.y1ec{bottom:317.055067pt;}
.y191{bottom:317.344800pt;}
.y26b{bottom:321.967467pt;}
.y2fb{bottom:322.072933pt;}
.y35c{bottom:323.013600pt;}
.y2ab{bottom:323.290133pt;}
.y13a{bottom:323.592667pt;}
.y178{bottom:323.857067pt;}
.y21{bottom:324.546000pt;}
.y37c{bottom:325.133333pt;}
.y45{bottom:325.236267pt;}
.yc4{bottom:329.526533pt;}
.y85{bottom:329.942133pt;}
.y1eb{bottom:331.455067pt;}
.y190{bottom:331.744800pt;}
.y2fa{bottom:333.272933pt;}
.y2aa{bottom:334.490133pt;}
.y26a{bottom:336.367467pt;}
.y139{bottom:337.992667pt;}
.y177{bottom:338.257067pt;}
.y20{bottom:338.946000pt;}
.y35b{bottom:339.013600pt;}
.y37b{bottom:343.800000pt;}
.yc3{bottom:343.926533pt;}
.y84{bottom:344.342133pt;}
.y2f9{bottom:344.472933pt;}
.y2a9{bottom:345.690133pt;}
.y1db{bottom:345.855067pt;}
.y18f{bottom:346.144800pt;}
.y44{bottom:347.636267pt;}
.y269{bottom:350.767467pt;}
.y138{bottom:352.392667pt;}
.y176{bottom:352.657067pt;}
.y1f{bottom:353.346000pt;}
.y2f8{bottom:355.673067pt;}
.y2a8{bottom:356.890133pt;}
.yc2{bottom:358.326533pt;}
.y83{bottom:358.742133pt;}
.y35a{bottom:358.793067pt;}
.y43{bottom:358.836267pt;}
.y23e{bottom:359.184267pt;}
.y1da{bottom:360.255067pt;}
.y18e{bottom:360.544800pt;}
.y37a{bottom:362.466667pt;}
.y33c{bottom:363.966933pt;}
.y268{bottom:365.167467pt;}
.y137{bottom:366.792667pt;}
.y2f7{bottom:366.873067pt;}
.y175{bottom:367.057067pt;}
.y1e{bottom:367.746000pt;}
.y2a7{bottom:368.090133pt;}
.y42{bottom:370.036267pt;}
.yc1{bottom:372.726533pt;}
.y33b{bottom:372.984267pt;}
.y82{bottom:373.142133pt;}
.y1d9{bottom:374.655067pt;}
.y18d{bottom:374.944800pt;}
.y23d{bottom:377.850933pt;}
.y2f6{bottom:378.072933pt;}
.y2a6{bottom:379.290133pt;}
.y33a{bottom:379.400000pt;}
.y267{bottom:379.567467pt;}
.y379{bottom:381.133333pt;}
.y136{bottom:381.192667pt;}
.y41{bottom:381.236267pt;}
.y174{bottom:381.457067pt;}
.y1d{bottom:382.146000pt;}
.yc0{bottom:387.126533pt;}
.ye0{bottom:387.436667pt;}
.y81{bottom:387.542133pt;}
.y1d8{bottom:389.055067pt;}
.y2f5{bottom:389.272933pt;}
.y18c{bottom:389.344800pt;}
.y2a5{bottom:390.490133pt;}
.y40{bottom:392.436267pt;}
.y266{bottom:393.967467pt;}
.y135{bottom:395.592667pt;}
.y173{bottom:395.857067pt;}
.y23c{bottom:396.517600pt;}
.y1c{bottom:396.546000pt;}
.ydf{bottom:398.636667pt;}
.y378{bottom:399.800000pt;}
.y2f4{bottom:400.472933pt;}
.ybf{bottom:401.526533pt;}
.y2a4{bottom:401.690133pt;}
.y80{bottom:401.942133pt;}
.y1d7{bottom:403.455067pt;}
.y3f{bottom:403.636267pt;}
.y265{bottom:408.367467pt;}
.yde{bottom:409.836667pt;}
.y134{bottom:409.992667pt;}
.y172{bottom:410.257067pt;}
.y1b{bottom:410.946000pt;}
.y18b{bottom:411.303867pt;}
.y2f3{bottom:411.673067pt;}
.y2a3{bottom:412.890133pt;}
.y359{bottom:413.813067pt;}
.y377{bottom:414.466667pt;}
.y3e{bottom:414.836267pt;}
.y23b{bottom:415.184267pt;}
.ybe{bottom:415.926533pt;}
.y7f{bottom:416.342133pt;}
.y1d6{bottom:417.855067pt;}
.ydd{bottom:421.036667pt;}
.y264{bottom:422.767467pt;}
.y2f2{bottom:422.873067pt;}
.y2a2{bottom:424.090133pt;}
.y133{bottom:424.392667pt;}
.y171{bottom:424.657067pt;}
.y358{bottom:425.013067pt;}
.y1a{bottom:425.346000pt;}
.y3d{bottom:426.036267pt;}
.ybd{bottom:430.326533pt;}
.y7e{bottom:430.742133pt;}
.ydc{bottom:432.236667pt;}
.y1d5{bottom:432.255067pt;}
.y23a{bottom:433.850933pt;}
.y2f1{bottom:434.072933pt;}
.y2a1{bottom:435.290133pt;}
.y18a{bottom:437.042400pt;}
.y263{bottom:437.167467pt;}
.y3c{bottom:437.236267pt;}
.y132{bottom:438.792667pt;}
.y170{bottom:439.057067pt;}
.y19{bottom:439.746000pt;}
.ydb{bottom:443.436667pt;}
.y376{bottom:443.533333pt;}
.ybc{bottom:444.726533pt;}
.y7d{bottom:445.142133pt;}
.y2f0{bottom:445.272933pt;}
.y2a0{bottom:446.490133pt;}
.y1d4{bottom:446.655067pt;}
.y357{bottom:447.551733pt;}
.y3b{bottom:448.436267pt;}
.y189{bottom:451.442400pt;}
.y262{bottom:451.567467pt;}
.y239{bottom:452.517600pt;}
.y16f{bottom:453.457067pt;}
.y18{bottom:454.146000pt;}
.y2ef{bottom:456.472933pt;}
.y29f{bottom:457.690133pt;}
.y356{bottom:458.751733pt;}
.ybb{bottom:459.126533pt;}
.y7c{bottom:459.542133pt;}
.y3a{bottom:459.636267pt;}
.y131{bottom:460.751733pt;}
.y1d3{bottom:461.055067pt;}
.y261{bottom:465.967467pt;}
.yda{bottom:465.975200pt;}
.y389{bottom:466.098133pt;}
.y2ee{bottom:467.673067pt;}
.y16e{bottom:467.857067pt;}
.y17{bottom:468.546000pt;}
.y29e{bottom:468.890133pt;}
.y39{bottom:470.836267pt;}
.y238{bottom:471.184267pt;}
.yba{bottom:473.526533pt;}
.y7b{bottom:473.942133pt;}
.y1d2{bottom:475.455067pt;}
.yd9{bottom:477.175200pt;}
.y388{bottom:477.298133pt;}
.y2ed{bottom:478.873067pt;}
.y29d{bottom:480.090133pt;}
.y260{bottom:480.367467pt;}
.y38{bottom:482.036267pt;}
.y16d{bottom:482.257067pt;}
.y16{bottom:482.946000pt;}
.y130{bottom:486.490267pt;}
.yb9{bottom:487.926533pt;}
.y7a{bottom:488.342133pt;}
.yd8{bottom:488.375200pt;}
.y237{bottom:489.850933pt;}
.y1d1{bottom:489.855067pt;}
.y2ec{bottom:490.072933pt;}
.y29c{bottom:491.290133pt;}
.y37{bottom:493.236267pt;}
.y25f{bottom:494.767467pt;}
.y339{bottom:495.620400pt;}
.y16c{bottom:496.657067pt;}
.yd7{bottom:499.575333pt;}
.y387{bottom:499.836667pt;}
.y12f{bottom:500.890267pt;}
.y2eb{bottom:501.272933pt;}
.yb8{bottom:502.326533pt;}
.y29b{bottom:502.490133pt;}
.y79{bottom:502.742133pt;}
.y1d0{bottom:504.255067pt;}
.y15{bottom:504.905067pt;}
.y236{bottom:508.517600pt;}
.y1c9{bottom:508.834000pt;}
.y25e{bottom:509.167467pt;}
.yd6{bottom:510.775333pt;}
.y386{bottom:511.036667pt;}
.y16b{bottom:511.057067pt;}
.y2ea{bottom:512.472933pt;}
.y29a{bottom:513.690133pt;}
.y12e{bottom:515.290267pt;}
.yb7{bottom:516.726533pt;}
.y78{bottom:517.142133pt;}
.y1cf{bottom:518.655067pt;}
.y337{bottom:521.604133pt;}
.y25d{bottom:523.567467pt;}
.y2e9{bottom:523.673067pt;}
.y33d{bottom:524.281333pt;}
.y299{bottom:524.890133pt;}
.y16a{bottom:525.457067pt;}
.y235{bottom:527.184267pt;}
.y1c8{bottom:527.500667pt;}
.y12d{bottom:529.690267pt;}
.yb6{bottom:531.126533pt;}
.y77{bottom:531.542133pt;}
.y1ce{bottom:533.055067pt;}
.y14{bottom:533.638400pt;}
.y2e8{bottom:534.873067pt;}
.y298{bottom:536.090133pt;}
.y25c{bottom:537.967467pt;}
.y39e{bottom:539.258667pt;}
.y169{bottom:539.857067pt;}
.y111{bottom:541.346133pt;}
.y12c{bottom:544.090267pt;}
.y1c7{bottom:544.834000pt;}
.yb5{bottom:545.526533pt;}
.y234{bottom:545.850933pt;}
.y76{bottom:545.942133pt;}
.y2e7{bottom:546.072933pt;}
.y112{bottom:546.266267pt;}
.y297{bottom:547.290133pt;}
.y1cd{bottom:547.455067pt;}
.y13{bottom:548.038267pt;}
.y338{bottom:550.738533pt;}
.y25b{bottom:552.367467pt;}
.y168{bottom:554.257067pt;}
.y2e6{bottom:557.272933pt;}
.y39d{bottom:557.925333pt;}
.y296{bottom:558.490133pt;}
.y12b{bottom:558.490267pt;}
.yb4{bottom:559.926533pt;}
.y75{bottom:560.342133pt;}
.y1cc{bottom:561.855067pt;}
.y1c6{bottom:562.167333pt;}
.y233{bottom:564.517600pt;}
.y355{bottom:565.176400pt;}
.y25a{bottom:566.767467pt;}
.y2e5{bottom:568.472933pt;}
.y167{bottom:568.657067pt;}
.y295{bottom:569.690133pt;}
.y12a{bottom:572.890267pt;}
.yb3{bottom:574.326533pt;}
.y74{bottom:574.742133pt;}
.y1cb{bottom:576.255067pt;}
.y39c{bottom:576.592000pt;}
.y12{bottom:576.771733pt;}
.yf7{bottom:577.319600pt;}
.y1c5{bottom:579.500667pt;}
.y2e4{bottom:579.673067pt;}
.y294{bottom:580.890133pt;}
.y259{bottom:581.167467pt;}
.yff{bottom:582.259733pt;}
.y166{bottom:583.057067pt;}
.y232{bottom:583.184267pt;}
.y354{bottom:583.843067pt;}
.y129{bottom:587.290267pt;}
.yf1{bottom:587.321733pt;}
.yfc{bottom:587.421333pt;}
.yeb{bottom:588.261333pt;}
.yb2{bottom:588.726533pt;}
.y73{bottom:589.142133pt;}
.y1ca{bottom:590.655067pt;}
.y2e3{bottom:590.873067pt;}
.y11{bottom:591.171733pt;}
.y293{bottom:592.090133pt;}
.yf0{bottom:593.363733pt;}
.y39b{bottom:595.258667pt;}
.y258{bottom:595.567467pt;}
.y100{bottom:595.994000pt;}
.y324{bottom:596.683067pt;}
.y1c4{bottom:596.834000pt;}
.y165{bottom:597.457067pt;}
.yf2{bottom:598.277067pt;}
.y128{bottom:601.690267pt;}
.y231{bottom:601.850933pt;}
.y2e2{bottom:602.072933pt;}
.y353{bottom:602.509733pt;}
.yb1{bottom:603.126533pt;}
.y292{bottom:603.290133pt;}
.yf4{bottom:603.379467pt;}
.y72{bottom:603.542133pt;}
.y36{bottom:605.236267pt;}
.yee{bottom:605.458267pt;}
.y10{bottom:605.571733pt;}
.y323{bottom:607.883067pt;}
.yef{bottom:609.048800pt;}
.y257{bottom:609.967467pt;}
.yf8{bottom:611.651200pt;}
.y164{bottom:611.857067pt;}
.y2e1{bottom:613.272933pt;}
.y39a{bottom:613.925333pt;}
.y1c3{bottom:614.167333pt;}
.y291{bottom:614.490133pt;}
.y334{bottom:615.069600pt;}
.y127{bottom:616.090267pt;}
.y35{bottom:616.436267pt;}
.yec{bottom:616.702267pt;}
.yb0{bottom:617.526533pt;}
.y71{bottom:617.942133pt;}
.y322{bottom:619.083067pt;}
.yf{bottom:619.971733pt;}
.y230{bottom:620.517600pt;}
.yf3{bottom:621.143333pt;}
.y352{bottom:621.176400pt;}
.y256{bottom:624.367467pt;}
.y2e0{bottom:624.472933pt;}
.yea{bottom:625.300800pt;}
.y290{bottom:625.690133pt;}
.y163{bottom:626.257067pt;}
.y34{bottom:627.636267pt;}
.y375{bottom:628.034533pt;}
.yed{bottom:630.214133pt;}
.y321{bottom:630.283067pt;}
.y126{bottom:630.490267pt;}
.y1c2{bottom:631.500667pt;}
.yaf{bottom:631.926533pt;}
.yf5{bottom:632.103867pt;}
.y70{bottom:632.342133pt;}
.ye{bottom:634.371733pt;}
.y2df{bottom:635.673067pt;}
.y28f{bottom:636.890133pt;}
.y336{bottom:638.536800pt;}
.y255{bottom:638.767467pt;}
.y33{bottom:638.836267pt;}
.y22f{bottom:639.184267pt;}
.y351{bottom:639.843067pt;}
.y162{bottom:640.657067pt;}
.y320{bottom:641.483067pt;}
.yf9{bottom:644.084400pt;}
.y125{bottom:644.890267pt;}
.yae{bottom:646.326533pt;}
.y374{bottom:646.701200pt;}
.y6f{bottom:646.742133pt;}
.y2de{bottom:646.873067pt;}
.y28e{bottom:648.090133pt;}
.yd{bottom:648.771733pt;}
.y1c1{bottom:648.834000pt;}
.y393{bottom:651.033467pt;}
.yfd{bottom:651.069467pt;}
.y254{bottom:653.167467pt;}
.y161{bottom:655.057067pt;}
.y22e{bottom:657.850933pt;}
.y2dd{bottom:658.072933pt;}
.y350{bottom:658.509733pt;}
.y28d{bottom:659.290133pt;}
.y124{bottom:659.290267pt;}
.yad{bottom:660.726533pt;}
.y6e{bottom:661.142133pt;}
.y32{bottom:661.236267pt;}
.y392{bottom:662.233467pt;}
.yc{bottom:663.171733pt;}
.y31f{bottom:663.883067pt;}
.y373{bottom:665.367867pt;}
.y1c0{bottom:666.167333pt;}
.y253{bottom:667.567467pt;}
.y2dc{bottom:669.272933pt;}
.y160{bottom:669.457067pt;}
.y28c{bottom:670.490133pt;}
.y31{bottom:672.436267pt;}
.y123{bottom:673.690267pt;}
.y1fa{bottom:675.015200pt;}
.y31e{bottom:675.083067pt;}
.yac{bottom:675.126533pt;}
.yfb{bottom:675.295333pt;}
.y6d{bottom:675.542133pt;}
.y335{bottom:676.360533pt;}
.y22d{bottom:676.517600pt;}
.y34f{bottom:677.176400pt;}
.yb{bottom:677.571733pt;}
.y2db{bottom:680.472933pt;}
.y28b{bottom:681.690133pt;}
.y252{bottom:681.967467pt;}
.y15f{bottom:683.857067pt;}
.y372{bottom:684.034533pt;}
.y391{bottom:684.772133pt;}
.y1bf{bottom:684.834000pt;}
.y1f9{bottom:686.215200pt;}
.y31d{bottom:686.283067pt;}
.y122{bottom:688.090267pt;}
.yab{bottom:689.526533pt;}
.yfe{bottom:689.689867pt;}
.y6c{bottom:689.942133pt;}
.y2da{bottom:691.673067pt;}
.ya{bottom:691.971733pt;}
.y28a{bottom:692.890133pt;}
.y30{bottom:694.836400pt;}
.y22c{bottom:695.184267pt;}
.y34e{bottom:695.843067pt;}
.y390{bottom:695.972133pt;}
.y251{bottom:696.367467pt;}
.y1f8{bottom:697.415067pt;}
.y31c{bottom:697.483067pt;}
.y15e{bottom:698.257067pt;}
.y121{bottom:702.490267pt;}
.y371{bottom:702.701200pt;}
.y2d9{bottom:702.873067pt;}
.y1be{bottom:703.500667pt;}
.yaa{bottom:703.926533pt;}
.y289{bottom:704.090133pt;}
.y6b{bottom:704.342133pt;}
.y2f{bottom:706.036267pt;}
.y9{bottom:706.371600pt;}
.yf6{bottom:708.518267pt;}
.y1f7{bottom:708.615200pt;}
.y250{bottom:710.767467pt;}
.y15d{bottom:712.657067pt;}
.y22b{bottom:713.850933pt;}
.y2d8{bottom:714.072933pt;}
.y34d{bottom:714.509733pt;}
.y288{bottom:715.290133pt;}
.y120{bottom:716.890267pt;}
.y2e{bottom:717.236267pt;}
.ya9{bottom:718.326533pt;}
.y6a{bottom:718.742133pt;}
.y1f6{bottom:719.815067pt;}
.y31b{bottom:719.883067pt;}
.y8{bottom:720.771600pt;}
.y370{bottom:721.367867pt;}
.y1bd{bottom:722.167333pt;}
.y24f{bottom:725.167467pt;}
.y2d7{bottom:725.272933pt;}
.y287{bottom:726.490133pt;}
.y15c{bottom:727.057067pt;}
.y31a{bottom:731.083067pt;}
.y22a{bottom:732.517600pt;}
.ya8{bottom:732.726533pt;}
.y69{bottom:733.142133pt;}
.y34c{bottom:733.176400pt;}
.y7{bottom:735.171600pt;}
.y2d6{bottom:736.472933pt;}
.y286{bottom:737.690133pt;}
.ye9{bottom:737.741733pt;}
.y11f{bottom:738.849333pt;}
.y24e{bottom:739.567467pt;}
.y2d{bottom:739.636267pt;}
.y36f{bottom:740.034533pt;}
.y1bc{bottom:740.834000pt;}
.y15b{bottom:741.457067pt;}
.y1f5{bottom:742.353733pt;}
.ya7{bottom:747.126400pt;}
.y68{bottom:747.542133pt;}
.y2d5{bottom:747.673067pt;}
.y285{bottom:748.890133pt;}
.y6{bottom:749.571600pt;}
.y2c{bottom:750.836400pt;}
.y229{bottom:751.184267pt;}
.y34b{bottom:751.843067pt;}
.y1bb{bottom:752.834000pt;}
.y319{bottom:753.483067pt;}
.y1f4{bottom:753.553733pt;}
.y24d{bottom:753.967467pt;}
.y15a{bottom:755.857067pt;}
.ye2{bottom:756.072400pt;}
.y36e{bottom:758.701200pt;}
.yfa{bottom:758.786000pt;}
.y2d4{bottom:758.873067pt;}
.y284{bottom:760.090133pt;}
.y11e{bottom:760.808400pt;}
.ya6{bottom:761.526533pt;}
.y67{bottom:761.942133pt;}
.y5{bottom:763.971600pt;}
.y318{bottom:764.683067pt;}
.y1f3{bottom:764.753733pt;}
.y2b{bottom:765.144267pt;}
.y24c{bottom:768.367467pt;}
.y228{bottom:769.850933pt;}
.y2d3{bottom:770.072933pt;}
.y159{bottom:770.257067pt;}
.y34a{bottom:770.509733pt;}
.y283{bottom:771.290133pt;}
.y2a{bottom:773.236267pt;}
.y317{bottom:775.883067pt;}
.ya5{bottom:775.926533pt;}
.y1f2{bottom:775.953733pt;}
.y66{bottom:776.342133pt;}
.y29{bottom:776.344267pt;}
.y36d{bottom:777.367867pt;}
.y118{bottom:779.621333pt;}
.y2d2{bottom:781.272933pt;}
.y282{bottom:782.490133pt;}
.y24b{bottom:782.767467pt;}
.y331{bottom:783.939067pt;}
.y28{bottom:784.436267pt;}
.y158{bottom:784.657067pt;}
.y114{bottom:785.276667pt;}
.y4{bottom:785.930667pt;}
.y316{bottom:787.083067pt;}
.y399{bottom:787.085467pt;}
.y227{bottom:788.517600pt;}
.y349{bottom:789.176400pt;}
.ya4{bottom:790.326533pt;}
.y65{bottom:790.742133pt;}
.y117{bottom:790.821333pt;}
.y2d1{bottom:792.472933pt;}
.y281{bottom:793.690133pt;}
.y36c{bottom:796.034533pt;}
.y24a{bottom:797.167467pt;}
.y315{bottom:798.283067pt;}
.y330{bottom:798.339067pt;}
.y157{bottom:799.057067pt;}
.y20e{bottom:802.395467pt;}
.y20c{bottom:802.678933pt;}
.y2d0{bottom:803.673067pt;}
.ya3{bottom:804.726533pt;}
.y280{bottom:804.890133pt;}
.y64{bottom:805.142133pt;}
.y398{bottom:805.752133pt;}
.y226{bottom:807.184267pt;}
.y348{bottom:807.843067pt;}
.y1ba{bottom:809.024667pt;}
.y249{bottom:811.567467pt;}
.y32f{bottom:812.739067pt;}
.y156{bottom:813.457067pt;}
.y36b{bottom:814.701200pt;}
.y2cf{bottom:814.873067pt;}
.y27f{bottom:816.090133pt;}
.y20d{bottom:816.795467pt;}
.y20b{bottom:817.078933pt;}
.ya2{bottom:819.126400pt;}
.y63{bottom:819.542133pt;}
.y1b9{bottom:820.224667pt;}
.y314{bottom:820.683067pt;}
.y397{bottom:824.418800pt;}
.y225{bottom:825.850933pt;}
.y248{bottom:825.967467pt;}
.y2ce{bottom:826.073067pt;}
.y347{bottom:826.509733pt;}
.y32e{bottom:827.139200pt;}
.y27e{bottom:827.290267pt;}
.y155{bottom:827.857067pt;}
.y20a{bottom:827.883467pt;}
.y203{bottom:828.450400pt;}
.y54{bottom:830.168000pt;}
.y1b8{bottom:831.424667pt;}
.y313{bottom:831.883067pt;}
.y36a{bottom:833.367867pt;}
.y11d{bottom:833.370533pt;}
.ya1{bottom:833.526400pt;}
.y62{bottom:833.942267pt;}
.y2cd{bottom:837.273067pt;}
.y116{bottom:838.203467pt;}
.y27d{bottom:838.490267pt;}
.y247{bottom:840.367467pt;}
.y32d{bottom:841.539200pt;}
.y154{bottom:842.257067pt;}
.y1b7{bottom:842.624667pt;}
.y312{bottom:843.083067pt;}
.y396{bottom:843.085467pt;}
.y224{bottom:844.517600pt;}
.ya0{bottom:847.926400pt;}
.y61{bottom:848.342267pt;}
.y2cc{bottom:848.473067pt;}
.y115{bottom:849.403600pt;}
.y27c{bottom:849.690133pt;}
.y53{bottom:850.168000pt;}
.y209{bottom:851.883467pt;}
.y369{bottom:852.034533pt;}
.y202{bottom:852.450400pt;}
.y1fd{bottom:852.566933pt;}
.y204{bottom:852.610667pt;}
.y1b6{bottom:853.824667pt;}
.y311{bottom:854.283067pt;}
.y246{bottom:854.767467pt;}
.y32c{bottom:855.939067pt;}
.y153{bottom:856.657067pt;}
.y2cb{bottom:859.673067pt;}
.y395{bottom:861.752133pt;}
.y9f{bottom:862.326400pt;}
.y60{bottom:862.742133pt;}
.y11a{bottom:864.041467pt;}
.y1b5{bottom:865.024667pt;}
.y310{bottom:865.483067pt;}
.y245{bottom:869.167467pt;}
.y52{bottom:870.168000pt;}
.y32b{bottom:870.339067pt;}
.y368{bottom:870.701200pt;}
.y2ca{bottom:870.873067pt;}
.y152{bottom:871.057067pt;}
.y27b{bottom:872.228800pt;}
.y208{bottom:875.883467pt;}
.y1b4{bottom:876.224667pt;}
.y201{bottom:876.450400pt;}
.y30f{bottom:876.683067pt;}
.y9e{bottom:876.726400pt;}
.y5f{bottom:877.142133pt;}
.y119{bottom:878.441467pt;}
.y346{bottom:879.387867pt;}
.y394{bottom:880.418800pt;}
.y2c9{bottom:882.073067pt;}
.y1fc{bottom:882.382133pt;}
.y244{bottom:883.567467pt;}
.y32a{bottom:884.739067pt;}
.y367{bottom:885.367867pt;}
.y151{bottom:885.457067pt;}
.y1b3{bottom:887.424667pt;}
.y345{bottom:890.587867pt;}
.y9d{bottom:891.126400pt;}
.y5e{bottom:891.542267pt;}
.y2c8{bottom:893.273067pt;}
.y1fb{bottom:897.048800pt;}
.y243{bottom:897.967467pt;}
.y329{bottom:899.139067pt;}
.y150{bottom:899.857067pt;}
.y207{bottom:899.883467pt;}
.y200{bottom:900.450400pt;}
.y113{bottom:901.307600pt;}
.y344{bottom:901.787867pt;}
.y223{bottom:902.472933pt;}
.y2c7{bottom:904.473067pt;}
.y11c{bottom:904.780800pt;}
.y9c{bottom:905.526400pt;}
.y5d{bottom:905.942267pt;}
.y51{bottom:910.168000pt;}
.y242{bottom:912.367467pt;}
.y1b2{bottom:912.629867pt;}
.y343{bottom:912.987867pt;}
.y38f{bottom:913.054667pt;}
.y328{bottom:913.539067pt;}
.y222{bottom:913.672933pt;}
.y14f{bottom:914.257200pt;}
.y366{bottom:914.434533pt;}
.y11b{bottom:915.447467pt;}
.y2c6{bottom:915.673067pt;}
.y9b{bottom:919.926400pt;}
.y5c{bottom:920.342267pt;}
.y206{bottom:923.883467pt;}
.y38e{bottom:924.254533pt;}
.y1b1{bottom:924.363200pt;}
.y1ff{bottom:924.450400pt;}
.y221{bottom:924.872933pt;}
.ye8{bottom:926.408000pt;}
.y241{bottom:926.767467pt;}
.y2c5{bottom:926.873067pt;}
.y327{bottom:927.939067pt;}
.y14e{bottom:928.657200pt;}
.y9a{bottom:934.326400pt;}
.y5b{bottom:934.742133pt;}
.y365{bottom:935.424667pt;}
.y38d{bottom:935.454533pt;}
.ye7{bottom:935.478800pt;}
.y342{bottom:935.526400pt;}
.y1b0{bottom:935.563200pt;}
.y220{bottom:936.072933pt;}
.y2c4{bottom:938.073067pt;}
.y50{bottom:939.501333pt;}
.y240{bottom:941.167333pt;}
.y326{bottom:942.339067pt;}
.y14d{bottom:943.057067pt;}
.ye6{bottom:944.549867pt;}
.y364{bottom:946.624667pt;}
.y341{bottom:946.726533pt;}
.y1af{bottom:946.763200pt;}
.y205{bottom:947.883467pt;}
.y1fe{bottom:948.450400pt;}
.y99{bottom:948.726400pt;}
.y5a{bottom:949.142133pt;}
.y2c3{bottom:949.273067pt;}
.ye5{bottom:954.565467pt;}
.y23f{bottom:955.567333pt;}
.y14c{bottom:957.457067pt;}
.y340{bottom:957.926400pt;}
.y1ae{bottom:957.963200pt;}
.y38c{bottom:957.993067pt;}
.y21f{bottom:958.611467pt;}
.y2c2{bottom:960.473067pt;}
.y98{bottom:963.126400pt;}
.y59{bottom:963.542267pt;}
.y325{bottom:964.298133pt;}
.y4f{bottom:968.834667pt;}
.ye4{bottom:968.843067pt;}
.y33f{bottom:969.126400pt;}
.y1ad{bottom:969.163200pt;}
.y38b{bottom:969.193067pt;}
.y21e{bottom:969.811467pt;}
.y2c1{bottom:971.673067pt;}
.y14b{bottom:971.857200pt;}
.y97{bottom:977.526400pt;}
.y33e{bottom:980.326400pt;}
.y1ac{bottom:980.363200pt;}
.y38a{bottom:980.393067pt;}
.ye3{bottom:980.576400pt;}
.y21d{bottom:981.011467pt;}
.ye1{bottom:982.466133pt;}
.y2c0{bottom:982.873067pt;}
.y58{bottom:986.257200pt;}
.y96{bottom:991.926400pt;}
.y2bf{bottom:994.073067pt;}
.y3{bottom:1000.786400pt;}
.y4e{bottom:1039.518533pt;}
.y56{bottom:1045.373067pt;}
.y55{bottom:1045.373200pt;}
.y2{bottom:1053.332133pt;}
.h7{height:19.049333pt;}
.h6{height:27.813333pt;}
.h9{height:28.616000pt;}
.ha{height:28.914667pt;}
.h8{height:28.952000pt;}
.hb{height:29.306667pt;}
.h13{height:31.032400pt;}
.h1a{height:33.146667pt;}
.h18{height:33.949333pt;}
.hf{height:35.760000pt;}
.h15{height:35.760131pt;}
.h12{height:36.072000pt;}
.h2{height:36.792000pt;}
.h5{height:37.176000pt;}
.h3{height:37.224000pt;}
.h17{height:37.679988pt;}
.h4{height:37.680000pt;}
.h16{height:37.680138pt;}
.h14{height:37.680159pt;}
.h10{height:39.898800pt;}
.h11{height:43.532267pt;}
.h19{height:43.964267pt;}
.he{height:57.904000pt;}
.hc{height:87.413333pt;}
.hd{height:92.106667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:982.666667pt;}
.w2{width:982.677333pt;}
.x0{left:0.000000pt;}
.xb{left:94.466667pt;}
.x35{left:100.346400pt;}
.x37{left:104.620533pt;}
.x34{left:106.270267pt;}
.x38{left:108.064533pt;}
.xc{left:109.600000pt;}
.x9{left:113.400000pt;}
.x39{left:115.024400pt;}
.x10{left:120.246667pt;}
.x2d{left:121.322800pt;}
.x5{left:124.927600pt;}
.xf{left:125.916000pt;}
.x33{left:128.731867pt;}
.x6{left:130.334533pt;}
.x16{left:133.417333pt;}
.x3d{left:140.095067pt;}
.x2e{left:149.840000pt;}
.x17{left:162.897600pt;}
.x32{left:166.390800pt;}
.x40{left:188.359733pt;}
.x22{left:190.677200pt;}
.x21{left:193.133867pt;}
.x20{left:204.341200pt;}
.x1f{left:205.548533pt;}
.x1e{left:223.632533pt;}
.x46{left:226.197067pt;}
.x1d{left:237.111467pt;}
.x7{left:239.055200pt;}
.x1c{left:241.716533pt;}
.x44{left:248.181200pt;}
.x1b{left:253.305733pt;}
.x1a{left:260.656133pt;}
.x19{left:268.435733pt;}
.x4{left:276.850400pt;}
.x48{left:284.057200pt;}
.x18{left:287.464533pt;}
.x13{left:290.834667pt;}
.x45{left:298.622000pt;}
.x2f{left:301.824933pt;}
.x14{left:303.118133pt;}
.x15{left:331.682400pt;}
.x11{left:333.790000pt;}
.x23{left:345.148400pt;}
.x36{left:350.173200pt;}
.x41{left:383.018933pt;}
.x2c{left:387.729067pt;}
.x12{left:393.070800pt;}
.xd{left:400.617067pt;}
.x26{left:407.240933pt;}
.x42{left:409.123067pt;}
.xe{left:415.750400pt;}
.xa{left:419.282267pt;}
.x47{left:426.133600pt;}
.x3a{left:427.027333pt;}
.x3b{left:430.937200pt;}
.x2{left:435.288000pt;}
.x3c{left:437.897067pt;}
.x24{left:444.804667pt;}
.x3e{left:450.708667pt;}
.x25{left:461.056533pt;}
.x27{left:511.891200pt;}
.x28{left:512.836133pt;}
.x8{left:517.278000pt;}
.x30{left:524.395333pt;}
.x31{left:534.065067pt;}
.x2b{left:537.921200pt;}
.x43{left:543.917867pt;}
.x29{left:580.334667pt;}
.x3{left:609.361600pt;}
.x2a{left:667.271733pt;}
.x1{left:678.387200pt;}
.x3f{left:696.419333pt;}
.x49{left:877.746133pt;}
}




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