
    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_650411ec19449688c9083e99.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_4e09bb3026d6c7a33dd0ac96.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_9cd595d9f76d436413b87a0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954000;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_e6508dfe5a7307f3f22040c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.383000;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_2029e53f3266e22205c3f552.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.392000;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_684cbb285b5510ec2faf2c71.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929000;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_88867a5ee2fca6b60518bbf0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.770000;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_e0162ae766f5ff1f1f458a44.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.485000;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_3e628df8f626b705ebca7d36.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_cb64db21242b255d74d02797.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_986364ef70086ee8faf0f71b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_392e4f829062d512cf3f24c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_934acb284851b1e55afa3c5d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.509000;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_9088c8e9112189c7cee59800.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.050000;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_e11ab64541e84e12747c8335.woff2')format("woff");}.fff{font-family:fff;line-height:0.705000;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_72af986fd6aa68e4f360cbed.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c2847af65c9f92f18676160f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.579000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_29143c22b01a85777afb4c24.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_105833c8dbd8d1f04bcb8806.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.925000;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:ff14;src:url('chunks/assets/font_b06d903b7e80b13de44c88bb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.730000;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:ff15;src:url('chunks/assets/font_080b596b0d6771c2a6530f99.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.810000;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:ff16;src:url('chunks/assets/font_10039b0e814a7e3cc83f5e26.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.600000;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:ff17;src:url('chunks/assets/font_7bf196429526002e190e1ef7.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.728000;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:ff18;src:url('chunks/assets/font_ed6d22b665c813bbf862dec7.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.774000;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:ff19;src:url('chunks/assets/font_33a3861913b37eb18768e9d0.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.716000;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:ff1a;src:url('chunks/assets/font_fd42056f23ab543c2c5d3024.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.273000;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:ff1b;src:url('chunks/assets/font_3bbea78205e42814da6212a7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.285000;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:ff1c;src:url('chunks/assets/font_df4517d85cff21b80c46aafe.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.699000;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:ff1d;src:url('chunks/assets/font_1754743e5282498546b5451a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.073000;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:ff1e;src:url('chunks/assets/font_dc3bba114cc0730819ceadcb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.847000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-4.387145px;}
.ls9{letter-spacing:-2.889900px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.017100px;}
.ls11{letter-spacing:0.036000px;}
.ls2b{letter-spacing:0.038400px;}
.ls19{letter-spacing:0.060001px;}
.ls29{letter-spacing:0.095999px;}
.ls4{letter-spacing:0.102600px;}
.lse{letter-spacing:0.114001px;}
.ls27{letter-spacing:0.115199px;}
.ls15{letter-spacing:0.138001px;}
.ls1c{letter-spacing:0.150002px;}
.ls18{letter-spacing:0.153598px;}
.ls1e{letter-spacing:0.156002px;}
.ls22{letter-spacing:0.168002px;}
.ls5{letter-spacing:0.171000px;}
.lsa{letter-spacing:0.174002px;}
.ls12{letter-spacing:0.186002px;}
.ls16{letter-spacing:0.191998px;}
.ls20{letter-spacing:0.216002px;}
.ls1{letter-spacing:0.256500px;}
.ls2e{letter-spacing:0.288003px;}
.ls6{letter-spacing:0.313500px;}
.lsf{letter-spacing:0.354004px;}
.ls17{letter-spacing:5.975925px;}
.ls26{letter-spacing:10.435070px;}
.ls7{letter-spacing:10.550268px;}
.ls2{letter-spacing:12.705300px;}
.ls1b{letter-spacing:12.990130px;}
.ls21{letter-spacing:13.104131px;}
.lsc{letter-spacing:13.110131px;}
.ls1d{letter-spacing:13.140131px;}
.ls2c{letter-spacing:13.182132px;}
.ls23{letter-spacing:13.262234px;}
.ls1f{letter-spacing:13.272133px;}
.ls13{letter-spacing:13.326133px;}
.ls2a{letter-spacing:13.358233px;}
.ls2d{letter-spacing:13.422134px;}
.lsd{letter-spacing:13.434134px;}
.ls14{letter-spacing:13.440134px;}
.lsb{letter-spacing:13.452135px;}
.ls1a{letter-spacing:13.482135px;}
.ls24{letter-spacing:13.516631px;}
.ls0{letter-spacing:21.124536px;}
.ls28{letter-spacing:905.729478px;}
.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;}
}
.wsd5{word-spacing:-13.542135px;}
.ws5e{word-spacing:-13.512135px;}
.wsa1{word-spacing:-13.500135px;}
.ws70{word-spacing:-13.494135px;}
.ws108{word-spacing:-13.406232px;}
.wsd4{word-spacing:-13.332133px;}
.ws6e{word-spacing:-13.170132px;}
.wsd9{word-spacing:-13.164132px;}
.ws2d{word-spacing:-10.598268px;}
.ws104{word-spacing:-10.483069px;}
.ws147{word-spacing:-0.071999px;}
.ws50{word-spacing:-0.060001px;}
.ws1b{word-spacing:-0.057000px;}
.ws6{word-spacing:-0.054000px;}
.ws13{word-spacing:-0.047999px;}
.ws48{word-spacing:0.000000px;}
.ws29{word-spacing:2.832900px;}
.wse7{word-spacing:4.339146px;}
.ws157{word-spacing:9.484681px;}
.ws158{word-spacing:9.667079px;}
.ws172{word-spacing:9.681479px;}
.ws112{word-spacing:9.695879px;}
.ws16e{word-spacing:9.700679px;}
.ws41{word-spacing:9.715079px;}
.ws170{word-spacing:9.734278px;}
.ws12{word-spacing:9.739078px;}
.ws168{word-spacing:9.777478px;}
.ws15b{word-spacing:9.787078px;}
.ws178{word-spacing:9.796678px;}
.ws42{word-spacing:9.806277px;}
.ws14f{word-spacing:9.811077px;}
.ws44{word-spacing:9.820677px;}
.ws2f{word-spacing:9.825477px;}
.ws154{word-spacing:9.835077px;}
.ws39{word-spacing:9.844677px;}
.ws3b{word-spacing:9.849477px;}
.ws180{word-spacing:9.854277px;}
.wsae{word-spacing:9.859077px;}
.ws15d{word-spacing:9.863877px;}
.ws38{word-spacing:9.873477px;}
.ws37{word-spacing:9.883076px;}
.ws166{word-spacing:9.887876px;}
.ws31{word-spacing:9.892676px;}
.ws150{word-spacing:9.902276px;}
.ws16c{word-spacing:9.907076px;}
.ws32{word-spacing:9.916676px;}
.ws3e{word-spacing:9.921476px;}
.ws47{word-spacing:9.926276px;}
.ws14a{word-spacing:9.931076px;}
.ws17c{word-spacing:9.935876px;}
.ws43{word-spacing:9.940676px;}
.ws176{word-spacing:9.947367px;}
.ws15f{word-spacing:9.950276px;}
.wse8{word-spacing:9.964675px;}
.ws36{word-spacing:9.974275px;}
.ws10{word-spacing:9.979075px;}
.ws156{word-spacing:9.988675px;}
.ws35{word-spacing:9.998275px;}
.ws162{word-spacing:10.007875px;}
.wse{word-spacing:10.012675px;}
.ws175{word-spacing:10.022275px;}
.ws46{word-spacing:10.036675px;}
.ws169{word-spacing:10.041474px;}
.ws3d{word-spacing:10.046274px;}
.ws135{word-spacing:10.051074px;}
.ws133{word-spacing:10.055874px;}
.ws12e{word-spacing:10.060674px;}
.ws159{word-spacing:10.070274px;}
.ws16b{word-spacing:10.075074px;}
.ws40{word-spacing:10.079874px;}
.ws17e{word-spacing:10.084674px;}
.ws164{word-spacing:10.089474px;}
.ws12a{word-spacing:10.113474px;}
.ws179{word-spacing:10.118274px;}
.ws30{word-spacing:10.123073px;}
.ws134{word-spacing:10.127873px;}
.ws34{word-spacing:10.132673px;}
.ws33{word-spacing:10.137473px;}
.ws12f{word-spacing:10.151873px;}
.ws130{word-spacing:10.156673px;}
.wsf{word-spacing:10.161473px;}
.ws14c{word-spacing:10.166273px;}
.ws16f{word-spacing:10.171073px;}
.ws2c{word-spacing:10.175873px;}
.ws2e{word-spacing:10.180673px;}
.ws45{word-spacing:10.185473px;}
.ws11{word-spacing:10.195073px;}
.ws103{word-spacing:10.199873px;}
.ws15e{word-spacing:10.204672px;}
.wsc{word-spacing:10.214272px;}
.ws165{word-spacing:10.223872px;}
.ws12b{word-spacing:10.228672px;}
.ws153{word-spacing:10.233472px;}
.ws181{word-spacing:10.247872px;}
.ws12d{word-spacing:10.267072px;}
.wsdd{word-spacing:10.271872px;}
.ws14e{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.ws174{word-spacing:10.286271px;}
.ws15c{word-spacing:10.300671px;}
.wsfc{word-spacing:10.305471px;}
.ws106{word-spacing:10.310271px;}
.ws17f{word-spacing:10.315071px;}
.ws131{word-spacing:10.319871px;}
.ws14b{word-spacing:10.329471px;}
.ws177{word-spacing:10.343871px;}
.ws16d{word-spacing:10.348671px;}
.ws167{word-spacing:10.353471px;}
.ws132{word-spacing:10.358271px;}
.ws155{word-spacing:10.363070px;}
.ws163{word-spacing:10.387070px;}
.ws17b{word-spacing:10.391870px;}
.ws105{word-spacing:10.420670px;}
.ws3c{word-spacing:10.425470px;}
.ws3f{word-spacing:10.444669px;}
.ws171{word-spacing:10.454269px;}
.ws3a{word-spacing:10.463869px;}
.ws160{word-spacing:10.468669px;}
.wsd{word-spacing:10.497469px;}
.ws17d{word-spacing:10.502269px;}
.ws152{word-spacing:10.507069px;}
.ws173{word-spacing:10.531068px;}
.ws16a{word-spacing:10.535868px;}
.ws12c{word-spacing:10.569468px;}
.ws161{word-spacing:10.574268px;}
.ws17a{word-spacing:10.579068px;}
.ws151{word-spacing:10.612667px;}
.ws4{word-spacing:11.556000px;}
.ws7{word-spacing:11.610000px;}
.ws5{word-spacing:11.647800px;}
.wsa{word-spacing:11.755800px;}
.ws9{word-spacing:11.809800px;}
.wsb{word-spacing:11.836800px;}
.ws8{word-spacing:11.896200px;}
.ws20{word-spacing:12.260700px;}
.ws18{word-spacing:12.277800px;}
.ws16{word-spacing:12.357600px;}
.ws24{word-spacing:12.363300px;}
.ws1a{word-spacing:12.374700px;}
.wsa4{word-spacing:12.396124px;}
.ws23{word-spacing:12.414600px;}
.ws22{word-spacing:12.420300px;}
.ws14{word-spacing:12.431700px;}
.ws4e{word-spacing:12.498125px;}
.ws21{word-spacing:12.517200px;}
.ws2a{word-spacing:12.528600px;}
.ws1f{word-spacing:12.545700px;}
.wsb1{word-spacing:12.566243px;}
.ws19{word-spacing:12.608400px;}
.ws15{word-spacing:12.614100px;}
.ws140{word-spacing:12.618126px;}
.ws13a{word-spacing:12.660127px;}
.ws122{word-spacing:12.672127px;}
.ws13b{word-spacing:12.684127px;}
.ws1c{word-spacing:12.699600px;}
.ws123{word-spacing:12.708127px;}
.ws25{word-spacing:12.711000px;}
.ws8d{word-spacing:12.720127px;}
.ws144{word-spacing:12.738127px;}
.ws13c{word-spacing:12.744127px;}
.ws9f{word-spacing:12.762128px;}
.ws17{word-spacing:12.779400px;}
.ws2b{word-spacing:12.785100px;}
.ws1d{word-spacing:12.790800px;}
.ws121{word-spacing:12.798128px;}
.wscd{word-spacing:12.801440px;}
.ws28{word-spacing:12.802200px;}
.wsc2{word-spacing:12.806240px;}
.ws1e{word-spacing:12.819300px;}
.wsac{word-spacing:12.834128px;}
.wsfb{word-spacing:12.839839px;}
.wsc1{word-spacing:12.844639px;}
.ws26{word-spacing:12.847800px;}
.wsc7{word-spacing:12.849439px;}
.wsc5{word-spacing:12.854239px;}
.ws13f{word-spacing:12.870129px;}
.wse3{word-spacing:12.873439px;}
.ws8e{word-spacing:12.882129px;}
.wsc6{word-spacing:12.883039px;}
.ws126{word-spacing:12.888129px;}
.ws7a{word-spacing:12.900129px;}
.ws96{word-spacing:12.906129px;}
.wsc9{word-spacing:12.911839px;}
.ws111{word-spacing:12.916639px;}
.wsf6{word-spacing:12.926238px;}
.ws63{word-spacing:12.936129px;}
.wsab{word-spacing:12.954130px;}
.wse5{word-spacing:12.955038px;}
.ws66{word-spacing:12.960130px;}
.ws27{word-spacing:12.961800px;}
.wsdc{word-spacing:12.966130px;}
.ws6c{word-spacing:12.972130px;}
.wsa7{word-spacing:12.978130px;}
.ws75{word-spacing:12.984130px;}
.wsf9{word-spacing:12.988638px;}
.ws137{word-spacing:12.990130px;}
.wsee{word-spacing:12.993438px;}
.ws85{word-spacing:12.996130px;}
.wsf8{word-spacing:12.998238px;}
.ws49{word-spacing:13.002130px;}
.wsf5{word-spacing:13.003037px;}
.ws7c{word-spacing:13.008130px;}
.ws9b{word-spacing:13.014130px;}
.ws4d{word-spacing:13.020130px;}
.ws4a{word-spacing:13.026130px;}
.wsde{word-spacing:13.027037px;}
.wsd3{word-spacing:13.032130px;}
.wsc8{word-spacing:13.036637px;}
.ws5f{word-spacing:13.038130px;}
.ws94{word-spacing:13.044130px;}
.ws4f{word-spacing:13.050130px;}
.ws9e{word-spacing:13.056131px;}
.ws84{word-spacing:13.062131px;}
.ws59{word-spacing:13.068131px;}
.wsc4{word-spacing:13.070237px;}
.ws141{word-spacing:13.074131px;}
.wsca{word-spacing:13.075037px;}
.ws53{word-spacing:13.080131px;}
.ws124{word-spacing:13.086131px;}
.ws7e{word-spacing:13.092131px;}
.ws56{word-spacing:13.098131px;}
.ws65{word-spacing:13.104131px;}
.ws52{word-spacing:13.110131px;}
.wsfe{word-spacing:13.116131px;}
.ws102{word-spacing:13.122131px;}
.ws4c{word-spacing:13.128131px;}
.wsb0{word-spacing:13.132636px;}
.ws5c{word-spacing:13.134131px;}
.ws5a{word-spacing:13.140131px;}
.ws57{word-spacing:13.146131px;}
.ws64{word-spacing:13.152132px;}
.ws146{word-spacing:13.158132px;}
.ws88{word-spacing:13.164132px;}
.ws79{word-spacing:13.170132px;}
.ws7d{word-spacing:13.176132px;}
.ws72{word-spacing:13.182132px;}
.wsc0{word-spacing:13.185435px;}
.wsaa{word-spacing:13.188132px;}
.ws9d{word-spacing:13.194132px;}
.ws8b{word-spacing:13.200132px;}
.ws9c{word-spacing:13.206132px;}
.ws55{word-spacing:13.212132px;}
.ws5b{word-spacing:13.218132px;}
.ws5d{word-spacing:13.224132px;}
.ws98{word-spacing:13.230132px;}
.wsa5{word-spacing:13.236132px;}
.ws6a{word-spacing:13.242132px;}
.ws128{word-spacing:13.248132px;}
.wsf1{word-spacing:13.252634px;}
.ws97{word-spacing:13.254133px;}
.wse6{word-spacing:13.257434px;}
.ws6b{word-spacing:13.260133px;}
.wscb{word-spacing:13.262234px;}
.ws95{word-spacing:13.266133px;}
.ws142{word-spacing:13.272133px;}
.ws80{word-spacing:13.290133px;}
.wsfa{word-spacing:13.291034px;}
.wsbf{word-spacing:13.295834px;}
.ws54{word-spacing:13.296133px;}
.ws143{word-spacing:13.302133px;}
.ws110{word-spacing:13.305434px;}
.ws71{word-spacing:13.308133px;}
.wsd6{word-spacing:13.314133px;}
.wsd8{word-spacing:13.320133px;}
.ws58{word-spacing:13.326133px;}
.ws67{word-spacing:13.332133px;}
.ws87{word-spacing:13.338133px;}
.wse1{word-spacing:13.343833px;}
.ws7b{word-spacing:13.344133px;}
.ws73{word-spacing:13.350134px;}
.wsff{word-spacing:13.356134px;}
.ws7f{word-spacing:13.362134px;}
.ws78{word-spacing:13.368134px;}
.ws51{word-spacing:13.374134px;}
.wsda{word-spacing:13.380134px;}
.wsa8{word-spacing:13.386134px;}
.ws81{word-spacing:13.392134px;}
.ws6d{word-spacing:13.398134px;}
.wsa0{word-spacing:13.404134px;}
.wsce{word-spacing:13.406232px;}
.ws82{word-spacing:13.410134px;}
.ws86{word-spacing:13.416134px;}
.ws61{word-spacing:13.422134px;}
.wscf{word-spacing:13.428134px;}
.wsdb{word-spacing:13.434134px;}
.ws8c{word-spacing:13.440134px;}
.ws90{word-spacing:13.446134px;}
.wsd0{word-spacing:13.452135px;}
.ws60{word-spacing:13.458135px;}
.ws62{word-spacing:13.464135px;}
.ws4b{word-spacing:13.470135px;}
.wsfd{word-spacing:13.476135px;}
.ws127{word-spacing:13.482135px;}
.ws74{word-spacing:13.488135px;}
.ws125{word-spacing:13.494135px;}
.ws93{word-spacing:13.500135px;}
.wsd2{word-spacing:13.512135px;}
.ws69{word-spacing:13.524135px;}
.wsc3{word-spacing:13.526231px;}
.ws68{word-spacing:13.530135px;}
.wscc{word-spacing:13.531031px;}
.ws138{word-spacing:13.536135px;}
.wsa9{word-spacing:13.542135px;}
.ws6f{word-spacing:13.554136px;}
.ws13d{word-spacing:13.566136px;}
.ws139{word-spacing:13.572136px;}
.ws136{word-spacing:13.578136px;}
.wsd1{word-spacing:13.584136px;}
.wsaf{word-spacing:13.593430px;}
.ws101{word-spacing:13.596136px;}
.ws92{word-spacing:13.602136px;}
.ws9a{word-spacing:13.644136px;}
.ws100{word-spacing:13.686137px;}
.ws83{word-spacing:13.692137px;}
.ws8a{word-spacing:13.812138px;}
.ws13e{word-spacing:13.848138px;}
.ws89{word-spacing:13.956140px;}
.wsa6{word-spacing:15.400672px;}
.ws91{word-spacing:15.415072px;}
.ws120{word-spacing:15.458271px;}
.wsa2{word-spacing:15.472671px;}
.ws148{word-spacing:15.523071px;}
.wsd7{word-spacing:15.580670px;}
.wsa3{word-spacing:15.602270px;}
.ws77{word-spacing:15.609470px;}
.ws145{word-spacing:15.631070px;}
.ws129{word-spacing:15.652670px;}
.ws76{word-spacing:15.731869px;}
.ws8f{word-spacing:15.753469px;}
.wsad{word-spacing:15.854268px;}
.ws14d{word-spacing:20.778940px;}
.ws3{word-spacing:26.148131px;}
.ws2{word-spacing:26.256131px;}
.ws1{word-spacing:26.316132px;}
.ws99{word-spacing:48.258483px;}
.ws149{word-spacing:59.821652px;}
.ws15a{word-spacing:59.860052px;}
.wsea{word-spacing:153.641279px;}
.wsf2{word-spacing:153.814077px;}
.wsec{word-spacing:153.982075px;}
.wsf7{word-spacing:164.853939px;}
.wseb{word-spacing:169.365883px;}
.wse0{word-spacing:172.010650px;}
.wse4{word-spacing:172.145048px;}
.wse2{word-spacing:172.178648px;}
.wsdf{word-spacing:180.242547px;}
.wsef{word-spacing:180.309746px;}
.wse9{word-spacing:201.333483px;}
.wsed{word-spacing:206.805415px;}
.ws116{word-spacing:207.727003px;}
.ws113{word-spacing:207.803802px;}
.ws118{word-spacing:207.861402px;}
.ws119{word-spacing:207.885401px;}
.ws114{word-spacing:208.067799px;}
.ws115{word-spacing:208.144598px;}
.ws117{word-spacing:231.885101px;}
.ws11c{word-spacing:262.796715px;}
.ws11d{word-spacing:292.316346px;}
.ws11a{word-spacing:304.844189px;}
.ws11e{word-spacing:317.804027px;}
.ws11f{word-spacing:327.259909px;}
.ws11b{word-spacing:328.315896px;}
.wsf3{word-spacing:335.664604px;}
.wsf4{word-spacing:351.312409px;}
.wsf0{word-spacing:355.262759px;}
.wsb5{word-spacing:399.388608px;}
.wsb6{word-spacing:399.854202px;}
.wsb7{word-spacing:400.233397px;}
.wsb4{word-spacing:402.647767px;}
.ws107{word-spacing:406.511719px;}
.ws10f{word-spacing:406.550118px;}
.wsbb{word-spacing:420.844339px;}
.wsb2{word-spacing:423.388308px;}
.ws10a{word-spacing:433.045787px;}
.ws10b{word-spacing:433.084186px;}
.wsba{word-spacing:454.299921px;}
.wsb3{word-spacing:456.407095px;}
.ws10e{word-spacing:459.613455px;}
.wsbc{word-spacing:483.819552px;}
.wsb8{word-spacing:496.347396px;}
.wsbd{word-spacing:509.307234px;}
.wsbe{word-spacing:518.763115px;}
.wsb9{word-spacing:519.819102px;}
.ws109{word-spacing:542.575618px;}
.ws10c{word-spacing:560.508194px;}
.ws10d{word-spacing:576.151198px;}
._f{margin-left:-13.783643px;}
._d{margin-left:-12.660591px;}
._9{margin-left:-10.550268px;}
._a{margin-left:-3.916751px;}
._b{margin-left:-2.793565px;}
._2{margin-left:-1.051187px;}
._5{width:1.191300px;}
._6{width:2.946900px;}
._20{width:3.948870px;}
._1{width:9.278284px;}
._3{width:11.275059px;}
._e{width:12.462125px;}
._4{width:13.554600px;}
._c{width:14.562146px;}
._10{width:16.552662px;}
._11{width:21.009337px;}
._0{width:27.372137px;}
._7{width:46.545018px;}
._29{width:153.886076px;}
._2a{width:162.401170px;}
._22{width:169.754678px;}
._17{width:171.977050px;}
._25{width:180.698541px;}
._1c{width:185.762478px;}
._16{width:187.442457px;}
._1f{width:198.175123px;}
._23{width:201.722278px;}
._1d{width:211.955751px;}
._3d{width:219.136461px;}
._3c{width:228.933138px;}
._26{width:233.085086px;}
._28{width:234.102674px;}
._19{width:248.056099px;}
._1a{width:251.113661px;}
._3e{width:287.506806px;}
._1e{width:298.959463px;}
._24{width:327.807102px;}
._2b{width:333.245434px;}
._27{width:343.114111px;}
._1b{width:369.916976px;}
._13{width:399.571005px;}
._2e{width:406.430120px;}
._35{width:414.830015px;}
._2d{width:431.745003px;}
._3a{width:467.235759px;}
._2f{width:475.208460px;}
._36{width:476.672442px;}
._38{width:490.323471px;}
._33{width:503.168110px;}
._12{width:529.586980px;}
._30{width:552.650692px;}
._32{width:567.957700px;}
._18{width:569.719278px;}
._14{width:579.453557px;}
._15{width:611.195560px;}
._21{width:619.019462px;}
._3b{width:766.987213px;}
._39{width:848.154198px;}
._37{width:861.728428px;}
._34{width:914.753365px;}
._31{width:941.325833px;}
._2c{width:1782.371320px;}
._8{width:1808.905388px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs8{font-size:39.996000px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs6{font-size:60.000600px;}
.fs7{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y29{bottom:54.000000px;}
.ya7{bottom:124.483005px;}
.y215{bottom:124.493205px;}
.y10c{bottom:124.494495px;}
.y1c4{bottom:124.494885px;}
.yd5{bottom:124.496565px;}
.y11a{bottom:124.496955px;}
.y171{bottom:124.497210px;}
.y1b2{bottom:124.497338px;}
.y29d{bottom:124.497600px;}
.y47{bottom:124.502726px;}
.y271{bottom:125.090880px;}
.y77{bottom:136.654890px;}
.y2ff{bottom:136.827628px;}
.y2c6{bottom:138.784621px;}
.y46{bottom:141.000119px;}
.y33c{bottom:142.097213px;}
.y29c{bottom:143.957055px;}
.ya6{bottom:143.957699px;}
.y214{bottom:143.967900px;}
.y10b{bottom:143.969190px;}
.y1c3{bottom:143.969580px;}
.yd4{bottom:143.971260px;}
.y119{bottom:143.971650px;}
.y170{bottom:143.971904px;}
.y2a7{bottom:144.564540px;}
.y270{bottom:144.565575px;}
.y1b6{bottom:149.072896px;}
.y2fe{bottom:151.114650px;}
.y1b1{bottom:151.540200px;}
.y76{bottom:156.129585px;}
.y33b{bottom:156.299035px;}
.y1b0{bottom:156.812550px;}
.y28{bottom:156.987900px;}
.y2c5{bottom:158.257978px;}
.y16e{bottom:160.979550px;}
.y29b{bottom:163.515750px;}
.ya5{bottom:163.516395px;}
.y213{bottom:163.526596px;}
.y10a{bottom:163.527885px;}
.y1c2{bottom:163.528275px;}
.yd3{bottom:163.529955px;}
.y16f{bottom:163.530600px;}
.y2a6{bottom:164.123235px;}
.y26f{bottom:164.124270px;}
.y45{bottom:166.511800px;}
.y118{bottom:169.483500px;}
.y33a{bottom:170.586056px;}
.y2fd{bottom:170.588006px;}
.y1b5{bottom:172.289006px;}
.y2c4{bottom:172.459800px;}
.y1af{bottom:174.840900px;}
.y75{bottom:175.604280px;}
.y27{bottom:177.992400px;}
.yd1{bottom:180.538500px;}
.y29a{bottom:182.990445px;}
.ya4{bottom:182.991090px;}
.yd0{bottom:182.994195px;}
.y212{bottom:183.001290px;}
.y109{bottom:183.002580px;}
.y1c1{bottom:183.002970px;}
.y16d{bottom:183.004410px;}
.yd2{bottom:183.004650px;}
.y44{bottom:183.009194px;}
.y2a5{bottom:183.597930px;}
.y26e{bottom:183.598965px;}
.y2fc{bottom:184.789829px;}
.y1b4{bottom:186.576028px;}
.y1ae{bottom:187.511475px;}
.y339{bottom:190.060613px;}
.y2c3{bottom:192.784200px;}
.y74{bottom:195.078975px;}
.y1fc{bottom:198.651637px;}
.y26{bottom:198.996900px;}
.y2fb{bottom:199.076850px;}
.y43{bottom:199.506588px;}
.y1b3{bottom:200.777850px;}
.y299{bottom:202.465140px;}
.ya3{bottom:202.465784px;}
.ycf{bottom:202.468890px;}
.y211{bottom:202.475985px;}
.y108{bottom:202.477275px;}
.y1c0{bottom:202.477665px;}
.y16c{bottom:202.479104px;}
.y2a4{bottom:203.072625px;}
.y26d{bottom:203.073660px;}
.y1ad{bottom:203.499150px;}
.y338{bottom:204.347634px;}
.y1ac{bottom:205.540050px;}
.y233{bottom:208.516500px;}
.y1ab{bottom:210.812550px;}
.y2fa{bottom:213.363872px;}
.y73{bottom:214.637670px;}
.y42{bottom:216.003982px;}
.y337{bottom:218.549457px;}
.y117{bottom:218.802450px;}
.y16a{bottom:219.486600px;}
.y25{bottom:220.001400px;}
.y298{bottom:222.023835px;}
.ya2{bottom:222.024480px;}
.yce{bottom:222.027585px;}
.y210{bottom:222.034681px;}
.y107{bottom:222.035970px;}
.y169{bottom:222.036361px;}
.y16b{bottom:222.037800px;}
.y2a3{bottom:222.631320px;}
.y26c{bottom:222.632355px;}
.y1fb{bottom:225.609300px;}
.y1fa{bottom:230.966850px;}
.y1a9{bottom:232.412550px;}
.y41{bottom:232.501376px;}
.y2f9{bottom:232.837228px;}
.y72{bottom:234.112365px;}
.y1a8{bottom:234.367885px;}
.y1aa{bottom:234.368400px;}
.y336{bottom:238.108012px;}
.y116{bottom:238.277145px;}
.y2c2{bottom:238.958566px;}
.y24{bottom:240.920400px;}
.y297{bottom:241.498530px;}
.ya1{bottom:241.499175px;}
.ycd{bottom:241.502280px;}
.y20f{bottom:241.509375px;}
.y106{bottom:241.510665px;}
.y168{bottom:241.511055px;}
.y2a2{bottom:242.106015px;}
.y269{bottom:242.106660px;}
.y26b{bottom:242.107050px;}
.y1f9{bottom:243.637800px;}
.y2f8{bottom:247.039051px;}
.y26a{bottom:248.740050px;}
.y1f8{bottom:248.995200px;}
.y40{bottom:248.998769px;}
.y1a6{bottom:251.121150px;}
.y335{bottom:252.309835px;}
.y1a5{bottom:253.161788px;}
.y1a7{bottom:253.162050px;}
.y71{bottom:253.587060px;}
.y232{bottom:256.051784px;}
.y115{bottom:257.835840px;}
.y2c1{bottom:258.433261px;}
.y296{bottom:260.973225px;}
.ya0{bottom:260.973869px;}
.ycc{bottom:260.976975px;}
.y20e{bottom:260.984070px;}
.y105{bottom:260.985360px;}
.y167{bottom:260.985750px;}
.y2f7{bottom:261.326072px;}
.y2a1{bottom:261.580710px;}
.y268{bottom:261.581354px;}
.y1f7{bottom:261.665924px;}
.y23{bottom:261.924900px;}
.y3f{bottom:265.496163px;}
.y334{bottom:271.868390px;}
.y1a4{bottom:271.870754px;}
.y70{bottom:273.145755px;}
.y231{bottom:275.610480px;}
.y2f6{bottom:275.613094px;}
.y114{bottom:277.310535px;}
.y2c0{bottom:277.907955px;}
.y166{bottom:277.993650px;}
.y1f6{bottom:279.609300px;}
.y295{bottom:280.447919px;}
.y9f{bottom:280.448564px;}
.ycb{bottom:280.451669px;}
.y20d{bottom:280.458765px;}
.y104{bottom:280.460054px;}
.y265{bottom:281.139405px;}
.y267{bottom:281.140050px;}
.y22{bottom:282.929400px;}
.y1f5{bottom:284.966850px;}
.y333{bottom:286.070213px;}
.y1bf{bottom:286.497600px;}
.y266{bottom:287.773200px;}
.y1a3{bottom:290.664919px;}
.y3e{bottom:291.007844px;}
.y6f{bottom:292.620450px;}
.y230{bottom:295.085175px;}
.y2f5{bottom:295.086450px;}
.y113{bottom:296.785230px;}
.y2bf{bottom:297.382650px;}
.y165{bottom:297.467550px;}
.y294{bottom:300.006615px;}
.y9e{bottom:300.007260px;}
.yca{bottom:300.010365px;}
.y20c{bottom:300.017461px;}
.y164{bottom:300.017865px;}
.y103{bottom:300.018750px;}
.y332{bottom:300.357234px;}
.y2a0{bottom:300.599745px;}
.y262{bottom:300.612661px;}
.y264{bottom:300.614100px;}
.y21{bottom:303.933900px;}
.y263{bottom:307.247250px;}
.y3d{bottom:307.505238px;}
.y1f4{bottom:308.519625px;}
.y2f4{bottom:309.288273px;}
.y1a2{bottom:309.373885px;}
.y6e{bottom:312.081584px;}
.y22f{bottom:314.559869px;}
.y112{bottom:316.343925px;}
.y293{bottom:319.481310px;}
.y9d{bottom:319.481955px;}
.yc9{bottom:319.485060px;}
.y20b{bottom:319.492155px;}
.y163{bottom:319.492560px;}
.y331{bottom:319.830591px;}
.y29f{bottom:320.074440px;}
.y261{bottom:320.087355px;}
.y2be{bottom:322.894500px;}
.y2f3{bottom:323.575294px;}
.y20{bottom:324.938400px;}
.y102{bottom:325.530600px;}
.y1a0{bottom:326.125950px;}
.y1f3{bottom:327.228591px;}
.y1be{bottom:327.315869px;}
.y19f{bottom:328.165387px;}
.y1a1{bottom:328.166850px;}
.y6d{bottom:331.640280px;}
.y3c{bottom:333.016919px;}
.y330{bottom:334.117612px;}
.y22e{bottom:334.118565px;}
.y111{bottom:335.818620px;}
.y357{bottom:337.860928px;}
.y292{bottom:338.956005px;}
.y9c{bottom:338.956649px;}
.yc8{bottom:338.959754px;}
.y20a{bottom:338.966850px;}
.y162{bottom:338.967254px;}
.y29e{bottom:339.549134px;}
.y260{bottom:339.562050px;}
.y25e{bottom:339.562454px;}
.y2f2{bottom:343.048651px;}
.y1f{bottom:345.942900px;}
.y1f2{bottom:346.022756px;}
.y25f{bottom:346.280250px;}
.y19e{bottom:346.874353px;}
.y1bd{bottom:346.874565px;}
.y32f{bottom:348.319435px;}
.y3b{bottom:349.514313px;}
.y6c{bottom:351.114975px;}
.y356{bottom:352.062750px;}
.y22d{bottom:353.593260px;}
.y110{bottom:355.293315px;}
.y2f1{bottom:357.335672px;}
.y291{bottom:358.514700px;}
.y9b{bottom:358.515345px;}
.yc7{bottom:358.518450px;}
.y161{bottom:358.525950px;}
.y25b{bottom:359.107830px;}
.y25d{bottom:359.121150px;}
.y32e{bottom:362.606456px;}
.y209{bottom:364.478700px;}
.y1f1{bottom:364.731723px;}
.y101{bottom:365.158710px;}
.y19d{bottom:365.668518px;}
.y25c{bottom:365.754150px;}
.y3a{bottom:366.011707px;}
.y1bc{bottom:366.349260px;}
.y355{bottom:366.349772px;}
.y1e{bottom:366.947400px;}
.y2bd{bottom:369.068970px;}
.y6b{bottom:370.589669px;}
.y2f0{bottom:371.537494px;}
.y22c{bottom:373.067954px;}
.y10f{bottom:374.768010px;}
.y290{bottom:377.989395px;}
.y9a{bottom:377.990040px;}
.yc6{bottom:377.993145px;}
.y25a{bottom:378.582525px;}
.y32d{bottom:382.079813px;}
.y39{bottom:382.509100px;}
.y1f0{bottom:383.525888px;}
.y160{bottom:384.037650px;}
.y19c{bottom:384.377484px;}
.y100{bottom:384.717405px;}
.y354{bottom:385.823128px;}
.y1bb{bottom:385.823954px;}
.y1d{bottom:387.951900px;}
.y2bc{bottom:388.627666px;}
.y6a{bottom:390.148365px;}
.y2ef{bottom:391.090050px;}
.y22b{bottom:392.626650px;}
.y10e{bottom:394.326705px;}
.y32c{bottom:396.366834px;}
.y28f{bottom:397.464090px;}
.y99{bottom:397.464734px;}
.yc5{bottom:397.467840px;}
.y259{bottom:398.057219px;}
.y38{bottom:399.006494px;}
.y353{bottom:400.110150px;}
.y19a{bottom:401.130600px;}
.yfe{bottom:401.725950px;}
.y1ef{bottom:402.234854px;}
.y199{bottom:403.086085px;}
.y19b{bottom:403.086450px;}
.yfd{bottom:404.189235px;}
.yff{bottom:404.192100px;}
.y2ee{bottom:405.291872px;}
.y1ba{bottom:405.382650px;}
.y2bb{bottom:408.102361px;}
.y208{bottom:408.526740px;}
.y1c{bottom:408.956400px;}
.y69{bottom:409.623060px;}
.y32b{bottom:410.568657px;}
.y10d{bottom:413.801400px;}
.y352{bottom:414.311972px;}
.y37{bottom:415.503888px;}
.y28e{bottom:417.022785px;}
.y98{bottom:417.023430px;}
.yc4{bottom:417.026535px;}
.y258{bottom:417.615915px;}
.y22a{bottom:418.053450px;}
.y197{bottom:419.839350px;}
.y1ee{bottom:421.029019px;}
.y196{bottom:421.879153px;}
.y198{bottom:421.880250px;}
.y15f{bottom:423.320761px;}
.yfc{bottom:423.663930px;}
.y2ed{bottom:424.850428px;}
.y2ba{bottom:427.577055px;}
.y207{bottom:428.085435px;}
.y68{bottom:429.097755px;}
.y1b{bottom:429.960900px;}
.y32a{bottom:430.042013px;}
.y1b9{bottom:430.809300px;}
.y351{bottom:433.870528px;}
.y28d{bottom:436.497480px;}
.y97{bottom:436.498125px;}
.yc3{bottom:436.501230px;}
.y257{bottom:437.090610px;}
.y2ec{bottom:439.052250px;}
.y1ed{bottom:439.737985px;}
.y195{bottom:440.588119px;}
.y36{bottom:441.015569px;}
.y15e{bottom:442.795455px;}
.yfb{bottom:443.222625px;}
.y329{bottom:444.329035px;}
.y2b9{bottom:447.051750px;}
.y206{bottom:447.560130px;}
.y350{bottom:448.070138px;}
.y67{bottom:448.572449px;}
.y1a{bottom:450.965400px;}
.y239{bottom:452.068603px;}
.y2eb{bottom:453.339272px;}
.y141{bottom:455.045287px;}
.y28c{bottom:455.972175px;}
.y96{bottom:455.972819px;}
.yc2{bottom:455.975925px;}
.y256{bottom:456.565305px;}
.y1ec{bottom:458.532150px;}
.y328{bottom:458.616056px;}
.y194{bottom:459.382284px;}
.y15d{bottom:462.270150px;}
.y34f{bottom:462.357159px;}
.yfa{bottom:462.697320px;}
.y35{bottom:466.527250px;}
.y205{bottom:467.034825px;}
.y66{bottom:468.131145px;}
.y1b8{bottom:471.712605px;}
.y19{bottom:471.969900px;}
.y2b8{bottom:472.563600px;}
.y2ea{bottom:472.812628px;}
.y238{bottom:475.368712px;}
.y28b{bottom:475.530870px;}
.y95{bottom:475.531515px;}
.yc1{bottom:475.534620px;}
.y255{bottom:476.124000px;}
.y327{bottom:478.089413px;}
.y193{bottom:478.091250px;}
.y1e9{bottom:480.982222px;}
.y1eb{bottom:480.982500px;}
.y15c{bottom:481.828846px;}
.y34e{bottom:481.830516px;}
.y140{bottom:482.002950px;}
.yf9{bottom:482.172015px;}
.y1ea{bottom:486.340050px;}
.y204{bottom:486.509519px;}
.y2e9{bottom:487.099650px;}
.y13f{bottom:487.360500px;}
.y65{bottom:487.605840px;}
.y237{bottom:489.570535px;}
.y1b7{bottom:491.187300px;}
.y34{bottom:492.038931px;}
.y326{bottom:492.291235px;}
.y18{bottom:492.974400px;}
.y28a{bottom:495.005565px;}
.y94{bottom:495.006210px;}
.yc0{bottom:495.009315px;}
.y254{bottom:495.598695px;}
.y34d{bottom:496.117537px;}
.y13e{bottom:500.031075px;}
.y190{bottom:500.626222px;}
.y192{bottom:500.626650px;}
.y2e8{bottom:501.301472px;}
.y15b{bottom:501.303540px;}
.yf8{bottom:501.730711px;}
.y236{bottom:503.857556px;}
.y191{bottom:505.984200px;}
.y203{bottom:506.068215px;}
.y325{bottom:506.578257px;}
.y1e8{bottom:506.749500px;}
.y64{bottom:507.080534px;}
.y17{bottom:513.978900px;}
.y289{bottom:514.480260px;}
.y93{bottom:514.480904px;}
.ybf{bottom:514.484010px;}
.y253{bottom:515.073390px;}
.y34c{bottom:515.590894px;}
.y33{bottom:517.465413px;}
.y235{bottom:518.059379px;}
.y13d{bottom:518.059650px;}
.y15a{bottom:520.778235px;}
.y2e7{bottom:520.860028px;}
.yf7{bottom:521.205405px;}
.y13c{bottom:523.332150px;}
.y202{bottom:525.542910px;}
.y324{bottom:526.051613px;}
.y18f{bottom:526.393500px;}
.y63{bottom:526.639230px;}
.y2b7{bottom:527.753115px;}
.y34b{bottom:529.792716px;}
.y234{bottom:532.346400px;}
.y1e6{bottom:532.430585px;}
.y288{bottom:533.954954px;}
.y92{bottom:533.955599px;}
.ybe{bottom:533.958704px;}
.y32{bottom:533.962807px;}
.y252{bottom:534.632085px;}
.y16{bottom:534.983400px;}
.y2e6{bottom:535.061850px;}
.y13b{bottom:536.003100px;}
.y1e7{bottom:537.788850px;}
.y159{bottom:540.336931px;}
.y323{bottom:540.338635px;}
.yf6{bottom:540.680100px;}
.y13a{bottom:541.360500px;}
.y201{bottom:545.017604px;}
.y62{bottom:546.113925px;}
.y2b6{bottom:547.227810px;}
.y34a{bottom:549.351272px;}
.y18d{bottom:552.074735px;}
.y1c8{bottom:553.350319px;}
.y287{bottom:553.513650px;}
.y91{bottom:553.514295px;}
.ybd{bottom:553.517400px;}
.y139{bottom:554.031000px;}
.y251{bottom:554.106780px;}
.y2e5{bottom:554.535207px;}
.y322{bottom:554.540457px;}
.y15{bottom:555.987900px;}
.y1e5{bottom:556.922279px;}
.y18e{bottom:557.432850px;}
.y31{bottom:559.474488px;}
.y158{bottom:559.811625px;}
.y349{bottom:563.553094px;}
.y200{bottom:564.576300px;}
.y61{bottom:565.588619px;}
.yf5{bottom:566.191950px;}
.y2b5{bottom:566.786505px;}
.y2e4{bottom:568.822228px;}
.y1e4{bottom:569.168400px;}
.y1e3{bottom:571.209300px;}
.y138{bottom:572.059574px;}
.y286{bottom:572.988345px;}
.y90{bottom:572.988990px;}
.ybc{bottom:572.992095px;}
.y250{bottom:573.581475px;}
.y321{bottom:574.099012px;}
.y30{bottom:575.971882px;}
.y18c{bottom:576.566429px;}
.y14{bottom:576.992400px;}
.y348{bottom:577.840116px;}
.y157{bottom:579.286320px;}
.y2e3{bottom:583.109250px;}
.y60{bottom:585.147315px;}
.y2b4{bottom:586.261200px;}
.y320{bottom:588.300835px;}
.y1c7{bottom:588.812400px;}
.y137{bottom:590.002950px;}
.y1ff{bottom:590.088000px;}
.y1c6{bottom:590.853178px;}
.y18b{bottom:590.853450px;}
.y285{bottom:592.463040px;}
.y8f{bottom:592.463684px;}
.ybb{bottom:592.466790px;}
.y2f{bottom:592.469276px;}
.y24f{bottom:593.056169px;}
.y136{bottom:595.360500px;}
.y347{bottom:597.313472px;}
.y13{bottom:597.996900px;}
.y156{bottom:598.761015px;}
.y2e2{bottom:602.583806px;}
.y31f{bottom:602.587856px;}
.y5f{bottom:604.622010px;}
.y1c5{bottom:605.055000px;}
.yf4{bottom:605.901990px;}
.y2e{bottom:608.966670px;}
.y346{bottom:611.600494px;}
.y2b3{bottom:611.773050px;}
.y284{bottom:612.021735px;}
.y8e{bottom:612.022380px;}
.yba{bottom:612.025485px;}
.y24e{bottom:612.614865px;}
.y2e1{bottom:616.785629px;}
.y155{bottom:618.319711px;}
.y12{bottom:619.001400px;}
.y135{bottom:619.686099px;}
.y31e{bottom:622.061213px;}
.y5e{bottom:624.096704px;}
.yf3{bottom:625.376685px;}
.y2d{bottom:625.464063px;}
.y345{bottom:625.802316px;}
.y2e0{bottom:631.072650px;}
.y283{bottom:631.496430px;}
.y8d{bottom:631.497075px;}
.yb9{bottom:631.500180px;}
.y24d{bottom:632.089560px;}
.y1fe{bottom:634.137705px;}
.y31d{bottom:636.348234px;}
.y154{bottom:637.794405px;}
.y134{bottom:639.244654px;}
.y344{bottom:640.089337px;}
.y2c{bottom:642.046656px;}
.y5d{bottom:643.655400px;}
.y178{bottom:644.596230px;}
.yf2{bottom:644.935381px;}
.y2df{bottom:645.359672px;}
.y31c{bottom:650.550057px;}
.y282{bottom:650.971125px;}
.y8c{bottom:650.971769px;}
.yb8{bottom:650.974875px;}
.y24c{bottom:651.564254px;}
.y11{bottom:651.996750px;}
.y1fd{bottom:653.612400px;}
.y153{bottom:657.269100px;}
.y2b2{bottom:657.946395px;}
.y133{bottom:658.719211px;}
.y343{bottom:659.563894px;}
.y5c{bottom:663.130095px;}
.y1e2{bottom:663.731738px;}
.y177{bottom:664.070925px;}
.yf1{bottom:664.410075px;}
.y2de{bottom:664.834228px;}
.y31b{bottom:664.837078px;}
.y2b{bottom:666.538350px;}
.y281{bottom:670.529820px;}
.y8b{bottom:670.530465px;}
.yb7{bottom:670.533570px;}
.y24b{bottom:671.122950px;}
.y342{bottom:673.850915px;}
.y2b1{bottom:677.421090px;}
.y132{bottom:678.277766px;}
.y2dd{bottom:679.036051px;}
.y5b{bottom:682.604790px;}
.y152{bottom:682.780425px;}
.y176{bottom:683.629620px;}
.yf0{bottom:683.884770px;}
.y31a{bottom:684.310435px;}
.y341{bottom:688.052738px;}
.y280{bottom:690.004515px;}
.y8a{bottom:690.005160px;}
.yb6{bottom:690.008265px;}
.y229{bottom:690.519337px;}
.y24a{bottom:690.597645px;}
.y1e1{bottom:690.774600px;}
.y2dc{bottom:693.323072px;}
.y1e0{bottom:696.047100px;}
.y2b0{bottom:696.895784px;}
.y131{bottom:696.986732px;}
.y319{bottom:698.597456px;}
.y5a{bottom:702.079484px;}
.y175{bottom:703.104315px;}
.yef{bottom:703.359465px;}
.y2db{bottom:707.610093px;}
.y340{bottom:707.611293px;}
.y1df{bottom:708.717675px;}
.y27f{bottom:709.479210px;}
.y89{bottom:709.479854px;}
.yb5{bottom:709.482960px;}
.y151{bottom:709.823400px;}
.y249{bottom:710.072340px;}
.y318{bottom:712.799279px;}
.y10{bottom:714.926026px;}
.y2af{bottom:716.454480px;}
.y130{bottom:716.545288px;}
.y228{bottom:717.477000px;}
.y59{bottom:721.638180px;}
.y33f{bottom:721.813116px;}
.y174{bottom:722.579010px;}
.y227{bottom:722.834400px;}
.yee{bottom:722.918161px;}
.y1de{bottom:724.705350px;}
.y1dd{bottom:726.746250px;}
.y2da{bottom:727.084650px;}
.y27e{bottom:728.953904px;}
.y88{bottom:728.954549px;}
.yb4{bottom:728.957654px;}
.y248{bottom:729.631035px;}
.y1dc{bottom:732.103800px;}
.y317{bottom:732.357834px;}
.y226{bottom:735.505350px;}
.y2ae{bottom:735.929175px;}
.y12f{bottom:736.103843px;}
.y225{bottom:740.862750px;}
.y58{bottom:741.112875px;}
.y2d9{bottom:741.286472px;}
.y173{bottom:742.137705px;}
.yed{bottom:742.392855px;}
.yf{bottom:744.944850px;}
.y316{bottom:746.559657px;}
.y27d{bottom:748.512600px;}
.y87{bottom:748.513245px;}
.yb3{bottom:748.516350px;}
.y247{bottom:749.105730px;}
.y150{bottom:749.106915px;}
.y224{bottom:753.533624px;}
.y2ad{bottom:755.403869px;}
.y1db{bottom:755.573354px;}
.y2d8{bottom:755.573494px;}
.y12e{bottom:755.578400px;}
.ye{bottom:759.996262px;}
.y57{bottom:760.587569px;}
.y315{bottom:760.846678px;}
.y172{bottom:761.612400px;}
.yec{bottom:761.867550px;}
.y27c{bottom:767.987295px;}
.y86{bottom:767.987940px;}
.y246{bottom:768.580425px;}
.y14f{bottom:768.581610px;}
.y223{bottom:771.477000px;}
.yb2{bottom:774.028200px;}
.y1da{bottom:774.367519px;}
.y2ac{bottom:774.962565px;}
.yd{bottom:774.963675px;}
.y2d7{bottom:775.048050px;}
.y314{bottom:775.048501px;}
.y12d{bottom:775.136955px;}
.y222{bottom:776.834400px;}
.y56{bottom:780.146265px;}
.yeb{bottom:787.379400px;}
.y27b{bottom:787.461990px;}
.y85{bottom:787.462634px;}
.y245{bottom:788.055119px;}
.y14e{bottom:788.056304px;}
.y2d6{bottom:789.335072px;}
.yc{bottom:789.931088px;}
.y1d9{bottom:793.076485px;}
.y2a{bottom:793.417200px;}
.y12c{bottom:793.845921px;}
.y2ab{bottom:794.437260px;}
.y313{bottom:794.607056px;}
.y18a{bottom:798.519337px;}
.y55{bottom:799.620960px;}
.y221{bottom:800.388525px;}
.y33e{bottom:803.622093px;}
.yb{bottom:804.982500px;}
.y27a{bottom:807.020685px;}
.y84{bottom:807.021330px;}
.y244{bottom:807.613815px;}
.y14d{bottom:807.615000px;}
.y2d5{bottom:808.808428px;}
.y312{bottom:808.808879px;}
.y1d7{bottom:809.829750px;}
.y1d6{bottom:811.870238px;}
.y1d8{bottom:811.870650px;}
.y12b{bottom:812.640087px;}
.y2aa{bottom:813.911954px;}
.yb1{bottom:817.054740px;}
.y54{bottom:819.095654px;}
.y220{bottom:819.097491px;}
.y30f{bottom:823.094671px;}
.y2d4{bottom:823.095450px;}
.y311{bottom:823.095900px;}
.y189{bottom:825.477000px;}
.y279{bottom:826.495380px;}
.y83{bottom:826.496025px;}
.y243{bottom:827.088510px;}
.y14c{bottom:827.089695px;}
.ye8{bottom:827.092005px;}
.yea{bottom:827.092650px;}
.y310{bottom:828.453300px;}
.y1d5{bottom:830.579204px;}
.y188{bottom:830.834400px;}
.ya{bottom:831.939900px;}
.y8{bottom:831.940650px;}
.y12a{bottom:832.113443px;}
.y2a9{bottom:833.470650px;}
.ye9{bottom:833.725800px;}
.yb0{bottom:836.529435px;}
.y2d3{bottom:837.297272px;}
.y21f{bottom:837.890456px;}
.y9{bottom:837.977850px;}
.y53{bottom:838.654350px;}
.y30e{bottom:842.568028px;}
.y187{bottom:843.504975px;}
.y278{bottom:845.970075px;}
.y82{bottom:845.970719px;}
.y242{bottom:846.563204px;}
.y14b{bottom:846.564390px;}
.ye7{bottom:846.566700px;}
.ye5{bottom:846.567104px;}
.y6{bottom:848.437650px;}
.y1d4{bottom:849.372169px;}
.y129{bottom:851.671999px;}
.ye6{bottom:853.284900px;}
.y7{bottom:854.475450px;}
.yaf{bottom:856.088131px;}
.y21e{bottom:856.599423px;}
.y30d{bottom:856.855049px;}
.y2d2{bottom:856.855828px;}
.y52{bottom:858.129045px;}
.y2a8{bottom:858.897450px;}
.y186{bottom:861.533550px;}
.y277{bottom:865.528770px;}
.y81{bottom:865.529415px;}
.y241{bottom:866.121900px;}
.y14a{bottom:866.123085px;}
.ye2{bottom:866.125005px;}
.ye4{bottom:866.125800px;}
.y185{bottom:866.806050px;}
.y1d3{bottom:868.081135px;}
.y30c{bottom:871.056872px;}
.y2d1{bottom:871.057650px;}
.y128{bottom:871.230554px;}
.ye3{bottom:872.758800px;}
.y21d{bottom:875.393588px;}
.yae{bottom:875.562825px;}
.y51{bottom:877.603740px;}
.y184{bottom:879.477000px;}
.y183{bottom:884.834400px;}
.y276{bottom:885.003465px;}
.y80{bottom:885.004110px;}
.y2d0{bottom:885.344672px;}
.ydf{bottom:885.596340px;}
.y240{bottom:885.596595px;}
.y149{bottom:885.597780px;}
.ye1{bottom:885.599700px;}
.y5{bottom:885.937387px;}
.y1d1{bottom:886.874868px;}
.y1d2{bottom:886.875300px;}
.y30b{bottom:890.615427px;}
.y127{bottom:890.703911px;}
.ye0{bottom:892.232850px;}
.y21c{bottom:894.102554px;}
.yad{bottom:895.037520px;}
.y50{bottom:897.078434px;}
.y275{bottom:904.478160px;}
.y7f{bottom:904.478804px;}
.y30a{bottom:904.817250px;}
.y2cf{bottom:904.818028px;}
.yde{bottom:905.071035px;}
.y23f{bottom:905.071290px;}
.y148{bottom:905.072475px;}
.y1d0{bottom:905.583834px;}
.y182{bottom:908.389303px;}
.y126{bottom:910.262466px;}
.y21b{bottom:912.896719px;}
.yac{bottom:914.512215px;}
.y4f{bottom:916.637130px;}
.y309{bottom:919.104271px;}
.y2ce{bottom:919.105050px;}
.y4{bottom:923.440575px;}
.y274{bottom:924.036855px;}
.y7e{bottom:924.037500px;}
.y1cf{bottom:924.377999px;}
.ydd{bottom:924.629731px;}
.y23e{bottom:924.629985px;}
.y147{bottom:924.631170px;}
.y181{bottom:927.098269px;}
.y125{bottom:929.821022px;}
.y21a{bottom:931.605685px;}
.y33d{bottom:933.306872px;}
.yab{bottom:934.070911px;}
.y4e{bottom:936.111825px;}
.y308{bottom:938.577628px;}
.y2cd{bottom:938.578406px;}
.y1ce{bottom:943.086966px;}
.y273{bottom:943.511550px;}
.ydc{bottom:944.104425px;}
.y23d{bottom:944.104680px;}
.y146{bottom:944.105865px;}
.y180{bottom:945.892434px;}
.y124{bottom:949.294378px;}
.y7d{bottom:949.463775px;}
.y219{bottom:950.399850px;}
.y307{bottom:952.864649px;}
.y2cc{bottom:952.865428px;}
.yaa{bottom:953.545605px;}
.y4d{bottom:955.586519px;}
.y3{bottom:960.943762px;}
.y1cd{bottom:961.879931px;}
.ydb{bottom:963.579120px;}
.y23c{bottom:963.579375px;}
.y145{bottom:963.580560px;}
.y17f{bottom:964.601400px;}
.y2cb{bottom:967.067250px;}
.y123{bottom:968.088543px;}
.y272{bottom:969.023400px;}
.y306{bottom:972.339206px;}
.y216{bottom:972.849772px;}
.y218{bottom:972.850200px;}
.ya9{bottom:973.020300px;}
.y4c{bottom:975.145215px;}
.y7c{bottom:976.506750px;}
.y217{bottom:978.207600px;}
.yda{bottom:983.137816px;}
.y23b{bottom:983.138070px;}
.y144{bottom:983.139255px;}
.y1ca{bottom:984.330029px;}
.y1cc{bottom:984.330450px;}
.y2ca{bottom:986.540607px;}
.y305{bottom:986.541028px;}
.y17c{bottom:987.136521px;}
.y17e{bottom:987.136800px;}
.y122{bottom:987.561900px;}
.y1cb{bottom:989.688000px;}
.y17d{bottom:992.494200px;}
.y4b{bottom:994.619910px;}
.y2{bottom:998.446950px;}
.ya8{bottom:998.532000px;}
.y1c9{bottom:998.617050px;}
.y142{bottom:1000.062750px;}
.y2c9{bottom:1000.827628px;}
.y304{bottom:1000.828050px;}
.yd9{bottom:1002.612511px;}
.y23a{bottom:1002.612765px;}
.y143{bottom:1002.613950px;}
.y120{bottom:1010.097450px;}
.y17b{bottom:1012.818600px;}
.y4a{bottom:1014.094604px;}
.y2c8{bottom:1015.114650px;}
.y303{bottom:1015.115071px;}
.y121{bottom:1015.454700px;}
.yd8{bottom:1022.087205px;}
.y7b{bottom:1022.087460px;}
.y11d{bottom:1024.298135px;}
.y11f{bottom:1024.299000px;}
.y11e{bottom:1029.656400px;}
.y49{bottom:1033.653300px;}
.y2c7{bottom:1034.588006px;}
.y302{bottom:1034.588428px;}
.y1{bottom:1035.949350px;}
.y179{bottom:1038.585156px;}
.yd6{bottom:1039.095750px;}
.yd7{bottom:1041.561900px;}
.y7a{bottom:1041.562154px;}
.y17a{bottom:1043.943000px;}
.y11c{bottom:1048.789829px;}
.y301{bottom:1048.790250px;}
.y300{bottom:1054.147650px;}
.y48{bottom:1059.079950px;}
.y79{bottom:1061.120850px;}
.y11b{bottom:1063.076850px;}
.y78{bottom:1118.692500px;}
.h13{height:21.532635px;}
.hf{height:23.580315px;}
.h11{height:24.796125px;}
.h4{height:26.528462px;}
.h10{height:28.031650px;}
.hd{height:28.477152px;}
.h9{height:34.943563px;}
.he{height:35.375558px;}
.h8{height:35.615555px;}
.h1{height:37.199535px;}
.h15{height:37.208384px;}
.h14{height:37.214085px;}
.h12{height:37.223535px;}
.h3{height:39.798000px;}
.h7{height:42.720427px;}
.hc{height:42.840428px;}
.h6{height:44.175000px;}
.ha{height:53.063558px;}
.hb{height:55.799535px;}
.h5{height:68.255573px;}
.h2{height:85.320427px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:54.000000px;}
.x28{left:58.932150px;}
.x3f{left:65.990250px;}
.x15{left:71.433000px;}
.x3d{left:78.321150px;}
.x14{left:84.018900px;}
.x41{left:91.757400px;}
.x40{left:101.451900px;}
.x49{left:105.023550px;}
.x42{left:110.040900px;}
.x3a{left:112.081800px;}
.x52{left:158.938500px;}
.x25{left:206.815650px;}
.x3e{left:232.837650px;}
.x3b{left:236.749500px;}
.x4b{left:246.954300px;}
.x4c{left:258.179400px;}
.x4d{left:277.228200px;}
.x4e{left:285.136950px;}
.x48{left:289.048800px;}
.x26{left:291.004650px;}
.x39{left:298.573200px;}
.x1{left:300.018750px;}
.x5b{left:306.651900px;}
.x21{left:314.390400px;}
.x16{left:317.961929px;}
.x22{left:323.744850px;}
.x5c{left:331.483190px;}
.x58{left:342.453450px;}
.x2b{left:348.661350px;}
.x59{left:351.807750px;}
.x2c{left:354.018750px;}
.x46{left:360.564968px;}
.x31{left:372.132150px;}
.x54{left:385.398300px;}
.x32{left:391.606200px;}
.x2{left:393.732150px;}
.x55{left:394.837650px;}
.x37{left:397.897701px;}
.x3{left:399.344850px;}
.x4a{left:404.957400px;}
.x43{left:411.845550px;}
.xe{left:418.903800px;}
.xf{left:424.516500px;}
.x5a{left:451.133700px;}
.x2f{left:453.514800px;}
.x4{left:455.725800px;}
.x5{left:461.338500px;}
.x30{left:472.988850px;}
.x5f{left:474.179400px;}
.x60{left:485.744700px;}
.x17{left:490.591950px;}
.x47{left:497.735250px;}
.x4f{left:527.754150px;}
.x50{left:535.407750px;}
.x33{left:539.319600px;}
.x53{left:545.102250px;}
.x51{left:552.075450px;}
.x1f{left:553.776300px;}
.x34{left:558.793500px;}
.x20{left:563.215650px;}
.x6{left:567.042450px;}
.x10{left:571.464450px;}
.x7{left:572.569950px;}
.x1a{left:575.546250px;}
.x11{left:577.077000px;}
.x1b{left:591.703800px;}
.x38{left:595.445550px;}
.x35{left:610.582500px;}
.x1c{left:619.596750px;}
.x1d{left:629.036100px;}
.x36{left:630.056550px;}
.x18{left:636.094350px;}
.x23{left:639.751050px;}
.x44{left:648.255000px;}
.x19{left:652.251750px;}
.x24{left:653.867550px;}
.x2d{left:656.248650px;}
.x45{left:663.136800px;}
.x8{left:674.957250px;}
.x9{left:680.569950px;}
.x5d{left:690.604500px;}
.x56{left:693.325800px;}
.x12{left:695.877000px;}
.x5e{left:700.639200px;}
.x57{left:702.765150px;}
.x1e{left:704.380950px;}
.xa{left:760.677000px;}
.xb{left:766.289550px;}
.x29{left:795.543150px;}
.x2a{left:800.900550px;}
.x2e{left:837.807750px;}
.xc{left:846.226500px;}
.x27{left:848.947800px;}
.xd{left:851.839050px;}
.x3c{left:859.067550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-3.899685pt;}
.ls9{letter-spacing:-2.568800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.015200pt;}
.ls11{letter-spacing:0.032000pt;}
.ls2b{letter-spacing:0.034133pt;}
.ls19{letter-spacing:0.053334pt;}
.ls29{letter-spacing:0.085332pt;}
.ls4{letter-spacing:0.091200pt;}
.lse{letter-spacing:0.101334pt;}
.ls27{letter-spacing:0.102399pt;}
.ls15{letter-spacing:0.122668pt;}
.ls1c{letter-spacing:0.133335pt;}
.ls18{letter-spacing:0.136532pt;}
.ls1e{letter-spacing:0.138668pt;}
.ls22{letter-spacing:0.149335pt;}
.ls5{letter-spacing:0.152000pt;}
.lsa{letter-spacing:0.154668pt;}
.ls12{letter-spacing:0.165335pt;}
.ls16{letter-spacing:0.170665pt;}
.ls20{letter-spacing:0.192002pt;}
.ls1{letter-spacing:0.228000pt;}
.ls2e{letter-spacing:0.256003pt;}
.ls6{letter-spacing:0.278667pt;}
.lsf{letter-spacing:0.314670pt;}
.ls17{letter-spacing:5.311934pt;}
.ls26{letter-spacing:9.275617pt;}
.ls7{letter-spacing:9.378016pt;}
.ls2{letter-spacing:11.293600pt;}
.ls1b{letter-spacing:11.546782pt;}
.ls21{letter-spacing:11.648116pt;}
.lsc{letter-spacing:11.653450pt;}
.ls1d{letter-spacing:11.680117pt;}
.ls2c{letter-spacing:11.717451pt;}
.ls23{letter-spacing:11.788653pt;}
.ls1f{letter-spacing:11.797451pt;}
.ls13{letter-spacing:11.845452pt;}
.ls2a{letter-spacing:11.873985pt;}
.ls2d{letter-spacing:11.930786pt;}
.lsd{letter-spacing:11.941453pt;}
.ls14{letter-spacing:11.946786pt;}
.lsb{letter-spacing:11.957453pt;}
.ls1a{letter-spacing:11.984120pt;}
.ls24{letter-spacing:12.014783pt;}
.ls0{letter-spacing:18.777365pt;}
.ls28{letter-spacing:805.092870pt;}
.wsd5{word-spacing:-12.037454pt;}
.ws5e{word-spacing:-12.010787pt;}
.wsa1{word-spacing:-12.000120pt;}
.ws70{word-spacing:-11.994787pt;}
.ws108{word-spacing:-11.916651pt;}
.wsd4{word-spacing:-11.850785pt;}
.ws6e{word-spacing:-11.706784pt;}
.wsd9{word-spacing:-11.701450pt;}
.ws2d{word-spacing:-9.420682pt;}
.ws104{word-spacing:-9.318284pt;}
.ws147{word-spacing:-0.063999pt;}
.ws50{word-spacing:-0.053334pt;}
.ws1b{word-spacing:-0.050667pt;}
.ws6{word-spacing:-0.048000pt;}
.ws13{word-spacing:-0.042666pt;}
.ws48{word-spacing:0.000000pt;}
.ws29{word-spacing:2.518133pt;}
.wse7{word-spacing:3.857018pt;}
.ws157{word-spacing:8.430828pt;}
.ws158{word-spacing:8.592959pt;}
.ws172{word-spacing:8.605759pt;}
.ws112{word-spacing:8.618559pt;}
.ws16e{word-spacing:8.622826pt;}
.ws41{word-spacing:8.635625pt;}
.ws170{word-spacing:8.652692pt;}
.ws12{word-spacing:8.656958pt;}
.ws168{word-spacing:8.691091pt;}
.ws15b{word-spacing:8.699625pt;}
.ws178{word-spacing:8.708158pt;}
.ws42{word-spacing:8.716691pt;}
.ws14f{word-spacing:8.720958pt;}
.ws44{word-spacing:8.729491pt;}
.ws2f{word-spacing:8.733757pt;}
.ws154{word-spacing:8.742291pt;}
.ws39{word-spacing:8.750824pt;}
.ws3b{word-spacing:8.755091pt;}
.ws180{word-spacing:8.759357pt;}
.wsae{word-spacing:8.763624pt;}
.ws15d{word-spacing:8.767890pt;}
.ws38{word-spacing:8.776424pt;}
.ws37{word-spacing:8.784957pt;}
.ws166{word-spacing:8.789223pt;}
.ws31{word-spacing:8.793490pt;}
.ws150{word-spacing:8.802023pt;}
.ws16c{word-spacing:8.806290pt;}
.ws32{word-spacing:8.814823pt;}
.ws3e{word-spacing:8.819090pt;}
.ws47{word-spacing:8.823356pt;}
.ws14a{word-spacing:8.827623pt;}
.ws17c{word-spacing:8.831890pt;}
.ws43{word-spacing:8.836156pt;}
.ws176{word-spacing:8.842104pt;}
.ws15f{word-spacing:8.844689pt;}
.wse8{word-spacing:8.857489pt;}
.ws36{word-spacing:8.866023pt;}
.ws10{word-spacing:8.870289pt;}
.ws156{word-spacing:8.878822pt;}
.ws35{word-spacing:8.887356pt;}
.ws162{word-spacing:8.895889pt;}
.wse{word-spacing:8.900155pt;}
.ws175{word-spacing:8.908689pt;}
.ws46{word-spacing:8.921488pt;}
.ws169{word-spacing:8.925755pt;}
.ws3d{word-spacing:8.930022pt;}
.ws135{word-spacing:8.934288pt;}
.ws133{word-spacing:8.938555pt;}
.ws12e{word-spacing:8.942822pt;}
.ws159{word-spacing:8.951355pt;}
.ws16b{word-spacing:8.955621pt;}
.ws40{word-spacing:8.959888pt;}
.ws17e{word-spacing:8.964155pt;}
.ws164{word-spacing:8.968421pt;}
.ws12a{word-spacing:8.989754pt;}
.ws179{word-spacing:8.994021pt;}
.ws30{word-spacing:8.998288pt;}
.ws134{word-spacing:9.002554pt;}
.ws34{word-spacing:9.006821pt;}
.ws33{word-spacing:9.011087pt;}
.ws12f{word-spacing:9.023887pt;}
.ws130{word-spacing:9.028154pt;}
.wsf{word-spacing:9.032420pt;}
.ws14c{word-spacing:9.036687pt;}
.ws16f{word-spacing:9.040954pt;}
.ws2c{word-spacing:9.045220pt;}
.ws2e{word-spacing:9.049487pt;}
.ws45{word-spacing:9.053753pt;}
.ws11{word-spacing:9.062287pt;}
.ws103{word-spacing:9.066553pt;}
.ws15e{word-spacing:9.070820pt;}
.wsc{word-spacing:9.079353pt;}
.ws165{word-spacing:9.087886pt;}
.ws12b{word-spacing:9.092153pt;}
.ws153{word-spacing:9.096420pt;}
.ws181{word-spacing:9.109219pt;}
.ws12d{word-spacing:9.126286pt;}
.wsdd{word-spacing:9.130553pt;}
.ws14e{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.ws174{word-spacing:9.143352pt;}
.ws15c{word-spacing:9.156152pt;}
.wsfc{word-spacing:9.160419pt;}
.ws106{word-spacing:9.164685pt;}
.ws17f{word-spacing:9.168952pt;}
.ws131{word-spacing:9.173219pt;}
.ws14b{word-spacing:9.181752pt;}
.ws177{word-spacing:9.194552pt;}
.ws16d{word-spacing:9.198818pt;}
.ws167{word-spacing:9.203085pt;}
.ws132{word-spacing:9.207352pt;}
.ws155{word-spacing:9.211618pt;}
.ws163{word-spacing:9.232951pt;}
.ws17b{word-spacing:9.237218pt;}
.ws105{word-spacing:9.262818pt;}
.ws3c{word-spacing:9.267084pt;}
.ws3f{word-spacing:9.284151pt;}
.ws171{word-spacing:9.292684pt;}
.ws3a{word-spacing:9.301217pt;}
.ws160{word-spacing:9.305484pt;}
.wsd{word-spacing:9.331083pt;}
.ws17d{word-spacing:9.335350pt;}
.ws152{word-spacing:9.339617pt;}
.ws173{word-spacing:9.360950pt;}
.ws16a{word-spacing:9.365216pt;}
.ws12c{word-spacing:9.395083pt;}
.ws161{word-spacing:9.399349pt;}
.ws17a{word-spacing:9.403616pt;}
.ws151{word-spacing:9.433482pt;}
.ws4{word-spacing:10.272000pt;}
.ws7{word-spacing:10.320000pt;}
.ws5{word-spacing:10.353600pt;}
.wsa{word-spacing:10.449600pt;}
.ws9{word-spacing:10.497600pt;}
.wsb{word-spacing:10.521600pt;}
.ws8{word-spacing:10.574400pt;}
.ws20{word-spacing:10.898400pt;}
.ws18{word-spacing:10.913600pt;}
.ws16{word-spacing:10.984533pt;}
.ws24{word-spacing:10.989600pt;}
.ws1a{word-spacing:10.999733pt;}
.wsa4{word-spacing:11.018777pt;}
.ws23{word-spacing:11.035200pt;}
.ws22{word-spacing:11.040267pt;}
.ws14{word-spacing:11.050400pt;}
.ws4e{word-spacing:11.109444pt;}
.ws21{word-spacing:11.126400pt;}
.ws2a{word-spacing:11.136533pt;}
.ws1f{word-spacing:11.151733pt;}
.wsb1{word-spacing:11.169994pt;}
.ws19{word-spacing:11.207467pt;}
.ws15{word-spacing:11.212533pt;}
.ws140{word-spacing:11.216112pt;}
.ws13a{word-spacing:11.253446pt;}
.ws122{word-spacing:11.264113pt;}
.ws13b{word-spacing:11.274779pt;}
.ws1c{word-spacing:11.288533pt;}
.ws123{word-spacing:11.296113pt;}
.ws25{word-spacing:11.298667pt;}
.ws8d{word-spacing:11.306780pt;}
.ws144{word-spacing:11.322780pt;}
.ws13c{word-spacing:11.328113pt;}
.ws9f{word-spacing:11.344113pt;}
.ws17{word-spacing:11.359467pt;}
.ws2b{word-spacing:11.364533pt;}
.ws1d{word-spacing:11.369600pt;}
.ws121{word-spacing:11.376114pt;}
.wscd{word-spacing:11.379058pt;}
.ws28{word-spacing:11.379733pt;}
.wsc2{word-spacing:11.383324pt;}
.ws1e{word-spacing:11.394933pt;}
.wsac{word-spacing:11.408114pt;}
.wsfb{word-spacing:11.413191pt;}
.wsc1{word-spacing:11.417457pt;}
.ws26{word-spacing:11.420267pt;}
.wsc7{word-spacing:11.421724pt;}
.wsc5{word-spacing:11.425991pt;}
.ws13f{word-spacing:11.440114pt;}
.wse3{word-spacing:11.443057pt;}
.ws8e{word-spacing:11.450781pt;}
.wsc6{word-spacing:11.451590pt;}
.ws126{word-spacing:11.456115pt;}
.ws7a{word-spacing:11.466781pt;}
.ws96{word-spacing:11.472115pt;}
.wsc9{word-spacing:11.477190pt;}
.ws111{word-spacing:11.481456pt;}
.wsf6{word-spacing:11.489990pt;}
.ws63{word-spacing:11.498782pt;}
.wsab{word-spacing:11.514782pt;}
.wse5{word-spacing:11.515589pt;}
.ws66{word-spacing:11.520115pt;}
.ws27{word-spacing:11.521600pt;}
.wsdc{word-spacing:11.525449pt;}
.ws6c{word-spacing:11.530782pt;}
.wsa7{word-spacing:11.536115pt;}
.ws75{word-spacing:11.541449pt;}
.wsf9{word-spacing:11.545456pt;}
.ws137{word-spacing:11.546782pt;}
.wsee{word-spacing:11.549722pt;}
.ws85{word-spacing:11.552116pt;}
.wsf8{word-spacing:11.553989pt;}
.ws49{word-spacing:11.557449pt;}
.wsf5{word-spacing:11.558256pt;}
.ws7c{word-spacing:11.562782pt;}
.ws9b{word-spacing:11.568116pt;}
.ws4d{word-spacing:11.573449pt;}
.ws4a{word-spacing:11.578782pt;}
.wsde{word-spacing:11.579589pt;}
.wsd3{word-spacing:11.584116pt;}
.wsc8{word-spacing:11.588122pt;}
.ws5f{word-spacing:11.589449pt;}
.ws94{word-spacing:11.594783pt;}
.ws4f{word-spacing:11.600116pt;}
.ws9e{word-spacing:11.605449pt;}
.ws84{word-spacing:11.610783pt;}
.ws59{word-spacing:11.616116pt;}
.wsc4{word-spacing:11.617988pt;}
.ws141{word-spacing:11.621450pt;}
.wsca{word-spacing:11.622255pt;}
.ws53{word-spacing:11.626783pt;}
.ws124{word-spacing:11.632116pt;}
.ws7e{word-spacing:11.637450pt;}
.ws56{word-spacing:11.642783pt;}
.ws65{word-spacing:11.648116pt;}
.ws52{word-spacing:11.653450pt;}
.wsfe{word-spacing:11.658783pt;}
.ws102{word-spacing:11.664117pt;}
.ws4c{word-spacing:11.669450pt;}
.wsb0{word-spacing:11.673454pt;}
.ws5c{word-spacing:11.674783pt;}
.ws5a{word-spacing:11.680117pt;}
.ws57{word-spacing:11.685450pt;}
.ws64{word-spacing:11.690784pt;}
.ws146{word-spacing:11.696117pt;}
.ws88{word-spacing:11.701450pt;}
.ws79{word-spacing:11.706784pt;}
.ws7d{word-spacing:11.712117pt;}
.ws72{word-spacing:11.717451pt;}
.wsc0{word-spacing:11.720387pt;}
.wsaa{word-spacing:11.722784pt;}
.ws9d{word-spacing:11.728117pt;}
.ws8b{word-spacing:11.733451pt;}
.ws9c{word-spacing:11.738784pt;}
.ws55{word-spacing:11.744117pt;}
.ws5b{word-spacing:11.749451pt;}
.ws5d{word-spacing:11.754784pt;}
.ws98{word-spacing:11.760118pt;}
.wsa5{word-spacing:11.765451pt;}
.ws6a{word-spacing:11.770784pt;}
.ws128{word-spacing:11.776118pt;}
.wsf1{word-spacing:11.780119pt;}
.ws97{word-spacing:11.781451pt;}
.wse6{word-spacing:11.784386pt;}
.ws6b{word-spacing:11.786785pt;}
.wscb{word-spacing:11.788653pt;}
.ws95{word-spacing:11.792118pt;}
.ws142{word-spacing:11.797451pt;}
.ws80{word-spacing:11.813451pt;}
.wsfa{word-spacing:11.814252pt;}
.wsbf{word-spacing:11.818519pt;}
.ws54{word-spacing:11.818785pt;}
.ws143{word-spacing:11.824118pt;}
.ws110{word-spacing:11.827052pt;}
.ws71{word-spacing:11.829452pt;}
.wsd6{word-spacing:11.834785pt;}
.wsd8{word-spacing:11.840118pt;}
.ws58{word-spacing:11.845452pt;}
.ws67{word-spacing:11.850785pt;}
.ws87{word-spacing:11.856119pt;}
.wse1{word-spacing:11.861185pt;}
.ws7b{word-spacing:11.861452pt;}
.ws73{word-spacing:11.866785pt;}
.wsff{word-spacing:11.872119pt;}
.ws7f{word-spacing:11.877452pt;}
.ws78{word-spacing:11.882785pt;}
.ws51{word-spacing:11.888119pt;}
.wsda{word-spacing:11.893452pt;}
.wsa8{word-spacing:11.898786pt;}
.ws81{word-spacing:11.904119pt;}
.ws6d{word-spacing:11.909452pt;}
.wsa0{word-spacing:11.914786pt;}
.wsce{word-spacing:11.916651pt;}
.ws82{word-spacing:11.920119pt;}
.ws86{word-spacing:11.925453pt;}
.ws61{word-spacing:11.930786pt;}
.wscf{word-spacing:11.936119pt;}
.wsdb{word-spacing:11.941453pt;}
.ws8c{word-spacing:11.946786pt;}
.ws90{word-spacing:11.952120pt;}
.wsd0{word-spacing:11.957453pt;}
.ws60{word-spacing:11.962786pt;}
.ws62{word-spacing:11.968120pt;}
.ws4b{word-spacing:11.973453pt;}
.wsfd{word-spacing:11.978786pt;}
.ws127{word-spacing:11.984120pt;}
.ws74{word-spacing:11.989453pt;}
.ws125{word-spacing:11.994787pt;}
.ws93{word-spacing:12.000120pt;}
.wsd2{word-spacing:12.010787pt;}
.ws69{word-spacing:12.021454pt;}
.wsc3{word-spacing:12.023316pt;}
.ws68{word-spacing:12.026787pt;}
.wscc{word-spacing:12.027583pt;}
.ws138{word-spacing:12.032120pt;}
.wsa9{word-spacing:12.037454pt;}
.ws6f{word-spacing:12.048120pt;}
.ws13d{word-spacing:12.058787pt;}
.ws139{word-spacing:12.064121pt;}
.ws136{word-spacing:12.069454pt;}
.wsd1{word-spacing:12.074787pt;}
.wsaf{word-spacing:12.083049pt;}
.ws101{word-spacing:12.085454pt;}
.ws92{word-spacing:12.090788pt;}
.ws9a{word-spacing:12.128121pt;}
.ws100{word-spacing:12.165455pt;}
.ws83{word-spacing:12.170788pt;}
.ws8a{word-spacing:12.277456pt;}
.ws13e{word-spacing:12.309456pt;}
.ws89{word-spacing:12.405457pt;}
.wsa6{word-spacing:13.689486pt;}
.ws91{word-spacing:13.702286pt;}
.ws120{word-spacing:13.740685pt;}
.wsa2{word-spacing:13.753485pt;}
.ws148{word-spacing:13.798285pt;}
.wsd7{word-spacing:13.849485pt;}
.wsa3{word-spacing:13.868684pt;}
.ws77{word-spacing:13.875084pt;}
.ws145{word-spacing:13.894284pt;}
.ws129{word-spacing:13.913484pt;}
.ws76{word-spacing:13.983883pt;}
.ws8f{word-spacing:14.003083pt;}
.wsad{word-spacing:14.092683pt;}
.ws14d{word-spacing:18.470169pt;}
.ws3{word-spacing:23.242783pt;}
.ws2{word-spacing:23.338783pt;}
.ws1{word-spacing:23.392117pt;}
.ws99{word-spacing:42.896429pt;}
.ws149{word-spacing:53.174802pt;}
.ws15a{word-spacing:53.208935pt;}
.wsea{word-spacing:136.570026pt;}
.wsf2{word-spacing:136.723624pt;}
.wsec{word-spacing:136.872956pt;}
.wsf7{word-spacing:146.536835pt;}
.wseb{word-spacing:150.547451pt;}
.wse0{word-spacing:152.898355pt;}
.wse4{word-spacing:153.017821pt;}
.wse2{word-spacing:153.047687pt;}
.wsdf{word-spacing:160.215597pt;}
.wsef{word-spacing:160.275330pt;}
.wse9{word-spacing:178.963096pt;}
.wsed{word-spacing:183.827035pt;}
.ws116{word-spacing:184.646225pt;}
.ws113{word-spacing:184.714491pt;}
.ws118{word-spacing:184.765690pt;}
.ws119{word-spacing:184.787023pt;}
.ws114{word-spacing:184.949155pt;}
.ws115{word-spacing:185.017421pt;}
.ws117{word-spacing:206.120090pt;}
.ws11c{word-spacing:233.597080pt;}
.ws11d{word-spacing:259.836752pt;}
.ws11a{word-spacing:270.972613pt;}
.ws11e{word-spacing:282.492469pt;}
.ws11f{word-spacing:290.897697pt;}
.ws11b{word-spacing:291.836352pt;}
.wsf3{word-spacing:298.368537pt;}
.wsf4{word-spacing:312.277696pt;}
.wsf0{word-spacing:315.789119pt;}
.wsb5{word-spacing:355.012096pt;}
.wsb6{word-spacing:355.425957pt;}
.wsb7{word-spacing:355.763020pt;}
.wsb4{word-spacing:357.909126pt;}
.ws107{word-spacing:361.343750pt;}
.ws10f{word-spacing:361.377883pt;}
.wsbb{word-spacing:374.083857pt;}
.wsb2{word-spacing:376.345162pt;}
.ws10a{word-spacing:384.929588pt;}
.ws10b{word-spacing:384.963721pt;}
.wsba{word-spacing:403.822152pt;}
.wsb3{word-spacing:405.695195pt;}
.ws10e{word-spacing:408.545293pt;}
.wsbc{word-spacing:430.061824pt;}
.wsb8{word-spacing:441.197685pt;}
.wsbd{word-spacing:452.717541pt;}
.wsbe{word-spacing:461.122769pt;}
.wsb9{word-spacing:462.061424pt;}
.ws109{word-spacing:482.289438pt;}
.ws10c{word-spacing:498.229505pt;}
.ws10d{word-spacing:512.134398pt;}
._f{margin-left:-12.252127pt;}
._d{margin-left:-11.253859pt;}
._9{margin-left:-9.378016pt;}
._a{margin-left:-3.481556pt;}
._b{margin-left:-2.483169pt;}
._2{margin-left:-0.934388pt;}
._5{width:1.058933pt;}
._6{width:2.619467pt;}
._20{width:3.510107pt;}
._1{width:8.247364pt;}
._3{width:10.022275pt;}
._e{width:11.077444pt;}
._4{width:12.048533pt;}
._c{width:12.944129pt;}
._10{width:14.713477pt;}
._11{width:18.674967pt;}
._0{width:24.330788pt;}
._7{width:41.373349pt;}
._29{width:136.787623pt;}
._2a{width:144.356596pt;}
._22{width:150.893047pt;}
._17{width:152.868489pt;}
._25{width:160.620926pt;}
._1c{width:165.122203pt;}
._16{width:166.615517pt;}
._1f{width:176.155665pt;}
._23{width:179.308692pt;}
._1d{width:188.405112pt;}
._3d{width:194.787965pt;}
._3c{width:203.496123pt;}
._26{width:207.186743pt;}
._28{width:208.091265pt;}
._19{width:220.494310pt;}
._1a{width:223.212143pt;}
._3e{width:255.561605pt;}
._1e{width:265.741745pt;}
._24{width:291.384091pt;}
._2b{width:296.218164pt;}
._27{width:304.990321pt;}
._1b{width:328.815090pt;}
._13{width:355.174227pt;}
._2e{width:361.271217pt;}
._35{width:368.737791pt;}
._2d{width:383.773336pt;}
._3a{width:415.320675pt;}
._2f{width:422.407520pt;}
._36{width:423.708837pt;}
._38{width:435.843085pt;}
._33{width:447.260543pt;}
._12{width:470.743982pt;}
._30{width:491.245059pt;}
._32{width:504.851289pt;}
._18{width:506.417136pt;}
._14{width:515.069828pt;}
._15{width:543.284942pt;}
._21{width:550.239522pt;}
._3b{width:681.766411pt;}
._39{width:753.914843pt;}
._37{width:765.980825pt;}
._34{width:813.114103pt;}
._31{width:836.734074pt;}
._2c{width:1584.330062pt;}
._8{width:1607.915901pt;}
.fs9{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:35.552000pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs6{font-size:53.333867pt;}
.fs7{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:48.000000pt;}
.ya7{bottom:110.651560pt;}
.y215{bottom:110.660627pt;}
.y10c{bottom:110.661773pt;}
.y1c4{bottom:110.662120pt;}
.yd5{bottom:110.663613pt;}
.y11a{bottom:110.663960pt;}
.y171{bottom:110.664186pt;}
.y1b2{bottom:110.664300pt;}
.y29d{bottom:110.664533pt;}
.y47{bottom:110.669089pt;}
.y271{bottom:111.191893pt;}
.y77{bottom:121.471014pt;}
.y2ff{bottom:121.624559pt;}
.y2c6{bottom:123.364108pt;}
.y46{bottom:125.333439pt;}
.y33c{bottom:126.308633pt;}
.y29c{bottom:127.961826pt;}
.ya6{bottom:127.962399pt;}
.y214{bottom:127.971467pt;}
.y10b{bottom:127.972613pt;}
.y1c3{bottom:127.972960pt;}
.yd4{bottom:127.974453pt;}
.y119{bottom:127.974800pt;}
.y170{bottom:127.975026pt;}
.y2a7{bottom:128.501813pt;}
.y270{bottom:128.502733pt;}
.y1b6{bottom:132.509241pt;}
.y2fe{bottom:134.324133pt;}
.y1b1{bottom:134.702400pt;}
.y76{bottom:138.781853pt;}
.y33b{bottom:138.932476pt;}
.y1b0{bottom:139.388933pt;}
.y28{bottom:139.544800pt;}
.y2c5{bottom:140.673758pt;}
.y16e{bottom:143.092933pt;}
.y29b{bottom:145.347333pt;}
.ya5{bottom:145.347907pt;}
.y213{bottom:145.356974pt;}
.y10a{bottom:145.358120pt;}
.y1c2{bottom:145.358467pt;}
.yd3{bottom:145.359960pt;}
.y16f{bottom:145.360533pt;}
.y2a6{bottom:145.887320pt;}
.y26f{bottom:145.888240pt;}
.y45{bottom:148.010489pt;}
.y118{bottom:150.652000pt;}
.y33a{bottom:151.632050pt;}
.y2fd{bottom:151.633783pt;}
.y1b5{bottom:153.145783pt;}
.y2c4{bottom:153.297600pt;}
.y1af{bottom:155.414133pt;}
.y75{bottom:156.092693pt;}
.y27{bottom:158.215467pt;}
.yd1{bottom:160.478667pt;}
.y29a{bottom:162.658173pt;}
.ya4{bottom:162.658746pt;}
.yd0{bottom:162.661507pt;}
.y212{bottom:162.667814pt;}
.y109{bottom:162.668960pt;}
.y1c1{bottom:162.669307pt;}
.y16d{bottom:162.670586pt;}
.yd2{bottom:162.670800pt;}
.y44{bottom:162.674839pt;}
.y2a5{bottom:163.198160pt;}
.y26e{bottom:163.199080pt;}
.y2fc{bottom:164.257626pt;}
.y1b4{bottom:165.845358pt;}
.y1ae{bottom:166.676867pt;}
.y339{bottom:168.942767pt;}
.y2c3{bottom:171.363733pt;}
.y74{bottom:173.403533pt;}
.y1fc{bottom:176.579233pt;}
.y26{bottom:176.886133pt;}
.y2fb{bottom:176.957200pt;}
.y43{bottom:177.339189pt;}
.y1b3{bottom:178.469200pt;}
.y299{bottom:179.969013pt;}
.ya3{bottom:179.969586pt;}
.ycf{bottom:179.972346pt;}
.y211{bottom:179.978653pt;}
.y108{bottom:179.979800pt;}
.y1c0{bottom:179.980147pt;}
.y16c{bottom:179.981426pt;}
.y2a4{bottom:180.509000pt;}
.y26d{bottom:180.509920pt;}
.y1ad{bottom:180.888133pt;}
.y338{bottom:181.642342pt;}
.y1ac{bottom:182.702267pt;}
.y233{bottom:185.348000pt;}
.y1ab{bottom:187.388933pt;}
.y2fa{bottom:189.656775pt;}
.y73{bottom:190.789040pt;}
.y42{bottom:192.003539pt;}
.y337{bottom:194.266184pt;}
.y117{bottom:194.491067pt;}
.y16a{bottom:195.099200pt;}
.y25{bottom:195.556800pt;}
.y298{bottom:197.354520pt;}
.ya2{bottom:197.355093pt;}
.yce{bottom:197.357853pt;}
.y210{bottom:197.364161pt;}
.y107{bottom:197.365307pt;}
.y169{bottom:197.365654pt;}
.y16b{bottom:197.366933pt;}
.y2a3{bottom:197.894507pt;}
.y26c{bottom:197.895427pt;}
.y1fb{bottom:200.541600pt;}
.y1fa{bottom:205.303867pt;}
.y1a9{bottom:206.588933pt;}
.y41{bottom:206.667889pt;}
.y2f9{bottom:206.966425pt;}
.y72{bottom:208.099880pt;}
.y1a8{bottom:208.327009pt;}
.y1aa{bottom:208.327467pt;}
.y336{bottom:211.651567pt;}
.y116{bottom:211.801906pt;}
.y2c2{bottom:212.407614pt;}
.y24{bottom:214.151467pt;}
.y297{bottom:214.665360pt;}
.ya1{bottom:214.665933pt;}
.ycd{bottom:214.668693pt;}
.y20f{bottom:214.675000pt;}
.y106{bottom:214.676147pt;}
.y168{bottom:214.676494pt;}
.y2a2{bottom:215.205347pt;}
.y269{bottom:215.205920pt;}
.y26b{bottom:215.206267pt;}
.y1f9{bottom:216.566933pt;}
.y2f8{bottom:219.590267pt;}
.y26a{bottom:221.102267pt;}
.y1f8{bottom:221.329067pt;}
.y40{bottom:221.332239pt;}
.y1a6{bottom:223.218800pt;}
.y335{bottom:224.275409pt;}
.y1a5{bottom:225.032700pt;}
.y1a7{bottom:225.032933pt;}
.y71{bottom:225.410720pt;}
.y232{bottom:227.601586pt;}
.y115{bottom:229.187414pt;}
.y2c1{bottom:229.718454pt;}
.y296{bottom:231.976200pt;}
.ya0{bottom:231.976773pt;}
.ycc{bottom:231.979533pt;}
.y20e{bottom:231.985840pt;}
.y105{bottom:231.986986pt;}
.y167{bottom:231.987333pt;}
.y2f7{bottom:232.289842pt;}
.y2a1{bottom:232.516186pt;}
.y268{bottom:232.516759pt;}
.y1f7{bottom:232.591933pt;}
.y23{bottom:232.822133pt;}
.y3f{bottom:235.996589pt;}
.y334{bottom:241.660791pt;}
.y1a4{bottom:241.662892pt;}
.y70{bottom:242.796227pt;}
.y231{bottom:244.987093pt;}
.y2f6{bottom:244.989416pt;}
.y114{bottom:246.498253pt;}
.y2c0{bottom:247.029294pt;}
.y166{bottom:247.105467pt;}
.y1f6{bottom:248.541600pt;}
.y295{bottom:249.287039pt;}
.y9f{bottom:249.287613pt;}
.ycb{bottom:249.290373pt;}
.y20d{bottom:249.296680pt;}
.y104{bottom:249.297826pt;}
.y265{bottom:249.901694pt;}
.y267{bottom:249.902267pt;}
.y22{bottom:251.492800pt;}
.y1f5{bottom:253.303867pt;}
.y333{bottom:254.284634pt;}
.y1bf{bottom:254.664533pt;}
.y266{bottom:255.798400pt;}
.y1a3{bottom:258.368817pt;}
.y3e{bottom:258.673639pt;}
.y6f{bottom:260.107067pt;}
.y230{bottom:262.297933pt;}
.y2f5{bottom:262.299067pt;}
.y113{bottom:263.809093pt;}
.y2bf{bottom:264.340133pt;}
.y165{bottom:264.415600pt;}
.y294{bottom:266.672547pt;}
.y9e{bottom:266.673120pt;}
.yca{bottom:266.675880pt;}
.y20c{bottom:266.682187pt;}
.y164{bottom:266.682547pt;}
.y103{bottom:266.683333pt;}
.y332{bottom:266.984208pt;}
.y2a0{bottom:267.199773pt;}
.y262{bottom:267.211254pt;}
.y264{bottom:267.212533pt;}
.y21{bottom:270.163467pt;}
.y263{bottom:273.108667pt;}
.y3d{bottom:273.337989pt;}
.y1f4{bottom:274.239667pt;}
.y2f4{bottom:274.922909pt;}
.y1a2{bottom:274.999009pt;}
.y6e{bottom:277.405853pt;}
.y22f{bottom:279.608773pt;}
.y112{bottom:281.194600pt;}
.y293{bottom:283.983386pt;}
.y9d{bottom:283.983960pt;}
.yc9{bottom:283.986720pt;}
.y20b{bottom:283.993027pt;}
.y163{bottom:283.993386pt;}
.y331{bottom:284.293859pt;}
.y29f{bottom:284.510613pt;}
.y261{bottom:284.522094pt;}
.y2be{bottom:287.017333pt;}
.y2f3{bottom:287.622484pt;}
.y20{bottom:288.834133pt;}
.y102{bottom:289.360533pt;}
.y1a0{bottom:289.889733pt;}
.y1f3{bottom:290.869859pt;}
.y1be{bottom:290.947439pt;}
.y19f{bottom:291.702566pt;}
.y1a1{bottom:291.703867pt;}
.y6d{bottom:294.791360pt;}
.y3c{bottom:296.015039pt;}
.y330{bottom:296.993433pt;}
.y22e{bottom:296.994280pt;}
.y111{bottom:298.505440pt;}
.y357{bottom:300.320825pt;}
.y292{bottom:301.294226pt;}
.y9c{bottom:301.294799pt;}
.yc8{bottom:301.297560pt;}
.y20a{bottom:301.303867pt;}
.y162{bottom:301.304226pt;}
.y29e{bottom:301.821453pt;}
.y260{bottom:301.832933pt;}
.y25e{bottom:301.833293pt;}
.y2f2{bottom:304.932134pt;}
.y1f{bottom:307.504800pt;}
.y1f2{bottom:307.575783pt;}
.y25f{bottom:307.804667pt;}
.y19e{bottom:308.332758pt;}
.y1bd{bottom:308.332947pt;}
.y32f{bottom:309.617275pt;}
.y3b{bottom:310.679389pt;}
.y6c{bottom:312.102200pt;}
.y356{bottom:312.944667pt;}
.y22d{bottom:314.305120pt;}
.y110{bottom:315.816280pt;}
.y2f1{bottom:317.631708pt;}
.y291{bottom:318.679733pt;}
.y9b{bottom:318.680307pt;}
.yc7{bottom:318.683067pt;}
.y161{bottom:318.689733pt;}
.y25b{bottom:319.206960pt;}
.y25d{bottom:319.218800pt;}
.y32e{bottom:322.316850pt;}
.y209{bottom:323.981067pt;}
.y1f1{bottom:324.205976pt;}
.y101{bottom:324.585520pt;}
.y19d{bottom:325.038682pt;}
.y25c{bottom:325.114800pt;}
.y3a{bottom:325.343739pt;}
.y1bc{bottom:325.643786pt;}
.y355{bottom:325.644241pt;}
.y1e{bottom:326.175467pt;}
.y2bd{bottom:328.061307pt;}
.y6b{bottom:329.413039pt;}
.y2f0{bottom:330.255551pt;}
.y22c{bottom:331.615959pt;}
.y10f{bottom:333.127120pt;}
.y290{bottom:335.990573pt;}
.y9a{bottom:335.991146pt;}
.yc6{bottom:335.993906pt;}
.y25a{bottom:336.517800pt;}
.y32d{bottom:339.626500pt;}
.y39{bottom:340.008089pt;}
.y1f0{bottom:340.911900pt;}
.y160{bottom:341.366800pt;}
.y19c{bottom:341.668875pt;}
.y100{bottom:341.971027pt;}
.y354{bottom:342.953892pt;}
.y1bb{bottom:342.954626pt;}
.y1d{bottom:344.846133pt;}
.y2bc{bottom:345.446814pt;}
.y6a{bottom:346.798547pt;}
.y2ef{bottom:347.635600pt;}
.y22b{bottom:349.001467pt;}
.y10e{bottom:350.512627pt;}
.y32c{bottom:352.326075pt;}
.y28f{bottom:353.301413pt;}
.y99{bottom:353.301986pt;}
.yc5{bottom:353.304746pt;}
.y259{bottom:353.828639pt;}
.y38{bottom:354.672439pt;}
.y353{bottom:355.653466pt;}
.y19a{bottom:356.560533pt;}
.yfe{bottom:357.089733pt;}
.y1ef{bottom:357.542092pt;}
.y199{bottom:358.298742pt;}
.y19b{bottom:358.299067pt;}
.yfd{bottom:359.279320pt;}
.yff{bottom:359.281867pt;}
.y2ee{bottom:360.259442pt;}
.y1ba{bottom:360.340133pt;}
.y2bb{bottom:362.757654pt;}
.y208{bottom:363.134880pt;}
.y1c{bottom:363.516800pt;}
.y69{bottom:364.109386pt;}
.y32b{bottom:364.949917pt;}
.y10d{bottom:367.823467pt;}
.y352{bottom:368.277308pt;}
.y37{bottom:369.336789pt;}
.y28e{bottom:370.686920pt;}
.y98{bottom:370.687493pt;}
.yc4{bottom:370.690253pt;}
.y258{bottom:371.214147pt;}
.y22a{bottom:371.603067pt;}
.y197{bottom:373.190533pt;}
.y1ee{bottom:374.248017pt;}
.y196{bottom:375.003691pt;}
.y198{bottom:375.004667pt;}
.y15f{bottom:376.285120pt;}
.yfc{bottom:376.590160pt;}
.y2ed{bottom:377.644825pt;}
.y2ba{bottom:380.068494pt;}
.y207{bottom:380.520387pt;}
.y68{bottom:381.420226pt;}
.y1b{bottom:382.187467pt;}
.y32a{bottom:382.259567pt;}
.y1b9{bottom:382.941600pt;}
.y351{bottom:385.662691pt;}
.y28d{bottom:387.997760pt;}
.y97{bottom:387.998333pt;}
.yc3{bottom:388.001093pt;}
.y257{bottom:388.524986pt;}
.y2ec{bottom:390.268667pt;}
.y1ed{bottom:390.878209pt;}
.y195{bottom:391.633883pt;}
.y36{bottom:392.013839pt;}
.y15e{bottom:393.595960pt;}
.yfb{bottom:393.975667pt;}
.y329{bottom:394.959142pt;}
.y2b9{bottom:397.379333pt;}
.y206{bottom:397.831227pt;}
.y350{bottom:398.284567pt;}
.y67{bottom:398.731066pt;}
.y1a{bottom:400.858133pt;}
.y239{bottom:401.838759pt;}
.y2eb{bottom:402.968242pt;}
.y141{bottom:404.484700pt;}
.y28c{bottom:405.308600pt;}
.y96{bottom:405.309173pt;}
.yc2{bottom:405.311933pt;}
.y256{bottom:405.835826pt;}
.y1ec{bottom:407.584133pt;}
.y328{bottom:407.658716pt;}
.y194{bottom:408.339808pt;}
.y15d{bottom:410.906800pt;}
.y34f{bottom:410.984141pt;}
.yfa{bottom:411.286507pt;}
.y35{bottom:414.690889pt;}
.y205{bottom:415.142066pt;}
.y66{bottom:416.116573pt;}
.y1b8{bottom:419.300094pt;}
.y19{bottom:419.528800pt;}
.y2b8{bottom:420.056533pt;}
.y2ea{bottom:420.277892pt;}
.y238{bottom:422.549966pt;}
.y28b{bottom:422.694107pt;}
.y95{bottom:422.694680pt;}
.yc1{bottom:422.697440pt;}
.y255{bottom:423.221333pt;}
.y327{bottom:424.968367pt;}
.y193{bottom:424.970000pt;}
.y1e9{bottom:427.539753pt;}
.y1eb{bottom:427.540000pt;}
.y15c{bottom:428.292307pt;}
.y34e{bottom:428.293792pt;}
.y140{bottom:428.447067pt;}
.yf9{bottom:428.597347pt;}
.y1ea{bottom:432.302267pt;}
.y204{bottom:432.452906pt;}
.y2e9{bottom:432.977466pt;}
.y13f{bottom:433.209333pt;}
.y65{bottom:433.427413pt;}
.y237{bottom:435.173809pt;}
.y1b7{bottom:436.610933pt;}
.y34{bottom:437.367939pt;}
.y326{bottom:437.592209pt;}
.y18{bottom:438.199467pt;}
.y28a{bottom:440.004947pt;}
.y94{bottom:440.005520pt;}
.yc0{bottom:440.008280pt;}
.y254{bottom:440.532173pt;}
.y34d{bottom:440.993366pt;}
.y13e{bottom:444.472067pt;}
.y190{bottom:445.001086pt;}
.y192{bottom:445.001467pt;}
.y2e8{bottom:445.601309pt;}
.y15b{bottom:445.603147pt;}
.yf8{bottom:445.982854pt;}
.y236{bottom:447.873383pt;}
.y191{bottom:449.763733pt;}
.y203{bottom:449.838413pt;}
.y325{bottom:450.291784pt;}
.y1e8{bottom:450.444000pt;}
.y64{bottom:450.738253pt;}
.y17{bottom:456.870133pt;}
.y289{bottom:457.315786pt;}
.y93{bottom:457.316360pt;}
.ybf{bottom:457.319120pt;}
.y253{bottom:457.843013pt;}
.y34c{bottom:458.303017pt;}
.y33{bottom:459.969256pt;}
.y235{bottom:460.497225pt;}
.y13d{bottom:460.497467pt;}
.y15a{bottom:462.913987pt;}
.y2e7{bottom:462.986691pt;}
.yf7{bottom:463.293694pt;}
.y13c{bottom:465.184133pt;}
.y202{bottom:467.149253pt;}
.y324{bottom:467.601434pt;}
.y18f{bottom:467.905333pt;}
.y63{bottom:468.123760pt;}
.y2b7{bottom:469.113880pt;}
.y34b{bottom:470.926859pt;}
.y234{bottom:473.196800pt;}
.y1e6{bottom:473.271631pt;}
.y288{bottom:474.626626pt;}
.y92{bottom:474.627199pt;}
.ybe{bottom:474.629960pt;}
.y32{bottom:474.633606pt;}
.y252{bottom:475.228520pt;}
.y16{bottom:475.540800pt;}
.y2e6{bottom:475.610534pt;}
.y13b{bottom:476.447200pt;}
.y1e7{bottom:478.034533pt;}
.y159{bottom:480.299494pt;}
.y323{bottom:480.301008pt;}
.yf6{bottom:480.604533pt;}
.y13a{bottom:481.209333pt;}
.y201{bottom:484.460093pt;}
.y62{bottom:485.434600pt;}
.y2b6{bottom:486.424720pt;}
.y34a{bottom:488.312241pt;}
.y18d{bottom:490.733098pt;}
.y1c8{bottom:491.866950pt;}
.y287{bottom:492.012133pt;}
.y91{bottom:492.012706pt;}
.ybd{bottom:492.015467pt;}
.y139{bottom:492.472000pt;}
.y251{bottom:492.539360pt;}
.y2e5{bottom:492.920184pt;}
.y322{bottom:492.924851pt;}
.y15{bottom:494.211467pt;}
.y1e5{bottom:495.042025pt;}
.y18e{bottom:495.495867pt;}
.y31{bottom:497.310656pt;}
.y158{bottom:497.610334pt;}
.y349{bottom:500.936084pt;}
.y200{bottom:501.845600pt;}
.y61{bottom:502.745439pt;}
.yf5{bottom:503.281733pt;}
.y2b5{bottom:503.810227pt;}
.y2e4{bottom:505.619758pt;}
.y1e4{bottom:505.927467pt;}
.y1e3{bottom:507.741600pt;}
.y138{bottom:508.497399pt;}
.y286{bottom:509.322973pt;}
.y90{bottom:509.323546pt;}
.ybc{bottom:509.326306pt;}
.y250{bottom:509.850200pt;}
.y321{bottom:510.310233pt;}
.y30{bottom:511.975006pt;}
.y18c{bottom:512.503492pt;}
.y14{bottom:512.882133pt;}
.y348{bottom:513.635658pt;}
.y157{bottom:514.921173pt;}
.y2e3{bottom:518.319333pt;}
.y60{bottom:520.130947pt;}
.y2b4{bottom:521.121067pt;}
.y320{bottom:522.934076pt;}
.y1c7{bottom:523.388800pt;}
.y137{bottom:524.447067pt;}
.y1ff{bottom:524.522667pt;}
.y1c6{bottom:525.202824pt;}
.y18b{bottom:525.203067pt;}
.y285{bottom:526.633813pt;}
.y8f{bottom:526.634386pt;}
.ybb{bottom:526.637146pt;}
.y2f{bottom:526.639356pt;}
.y24f{bottom:527.161039pt;}
.y136{bottom:529.209333pt;}
.y347{bottom:530.945309pt;}
.y13{bottom:531.552800pt;}
.y156{bottom:532.232013pt;}
.y2e2{bottom:535.630050pt;}
.y31f{bottom:535.633650pt;}
.y5f{bottom:537.441786pt;}
.y1c5{bottom:537.826667pt;}
.yf4{bottom:538.579547pt;}
.y2e{bottom:541.303706pt;}
.y346{bottom:543.644883pt;}
.y2b3{bottom:543.798267pt;}
.y284{bottom:544.019320pt;}
.y8e{bottom:544.019893pt;}
.yba{bottom:544.022653pt;}
.y24e{bottom:544.546547pt;}
.y2e1{bottom:548.253892pt;}
.y155{bottom:549.617520pt;}
.y12{bottom:550.223467pt;}
.y135{bottom:550.832088pt;}
.y31e{bottom:552.943300pt;}
.y5e{bottom:554.752626pt;}
.yf3{bottom:555.890387pt;}
.y2d{bottom:555.968056pt;}
.y345{bottom:556.268725pt;}
.y2e0{bottom:560.953467pt;}
.y283{bottom:561.330160pt;}
.y8d{bottom:561.330733pt;}
.yb9{bottom:561.333493pt;}
.y24d{bottom:561.857386pt;}
.y1fe{bottom:563.677960pt;}
.y31d{bottom:565.642875pt;}
.y154{bottom:566.928360pt;}
.y134{bottom:568.217470pt;}
.y344{bottom:568.968300pt;}
.y2c{bottom:570.708139pt;}
.y5d{bottom:572.138133pt;}
.y178{bottom:572.974427pt;}
.yf2{bottom:573.275894pt;}
.y2df{bottom:573.653041pt;}
.y31c{bottom:578.266717pt;}
.y282{bottom:578.641000pt;}
.y8c{bottom:578.641573pt;}
.yb8{bottom:578.644333pt;}
.y24c{bottom:579.168226pt;}
.y11{bottom:579.552667pt;}
.y1fd{bottom:580.988800pt;}
.y153{bottom:584.239200pt;}
.y2b2{bottom:584.841240pt;}
.y133{bottom:585.528187pt;}
.y343{bottom:586.279017pt;}
.y5c{bottom:589.448973pt;}
.y1e2{bottom:589.983767pt;}
.y177{bottom:590.285266pt;}
.yf1{bottom:590.586734pt;}
.y2de{bottom:590.963758pt;}
.y31b{bottom:590.966292pt;}
.y2b{bottom:592.478533pt;}
.y281{bottom:596.026507pt;}
.y8b{bottom:596.027080pt;}
.yb7{bottom:596.029840pt;}
.y24b{bottom:596.553733pt;}
.y342{bottom:598.978591pt;}
.y2b1{bottom:602.152080pt;}
.y132{bottom:602.913570pt;}
.y2dd{bottom:603.587601pt;}
.y5b{bottom:606.759813pt;}
.y152{bottom:606.915934pt;}
.y176{bottom:607.670773pt;}
.yf0{bottom:607.897573pt;}
.y31a{bottom:608.275942pt;}
.y341{bottom:611.602434pt;}
.y280{bottom:613.337347pt;}
.y8a{bottom:613.337920pt;}
.yb6{bottom:613.340680pt;}
.y229{bottom:613.794966pt;}
.y24a{bottom:613.864573pt;}
.y1e1{bottom:614.021867pt;}
.y2dc{bottom:616.287175pt;}
.y1e0{bottom:618.708533pt;}
.y2b0{bottom:619.462919pt;}
.y131{bottom:619.543762pt;}
.y319{bottom:620.975517pt;}
.y5a{bottom:624.070653pt;}
.y175{bottom:624.981613pt;}
.yef{bottom:625.208413pt;}
.y2db{bottom:628.986750pt;}
.y340{bottom:628.987816pt;}
.y1df{bottom:629.971267pt;}
.y27f{bottom:630.648186pt;}
.y89{bottom:630.648760pt;}
.yb5{bottom:630.651520pt;}
.y151{bottom:630.954133pt;}
.y249{bottom:631.175413pt;}
.y318{bottom:633.599359pt;}
.y10{bottom:635.489801pt;}
.y2af{bottom:636.848427pt;}
.y130{bottom:636.929145pt;}
.y228{bottom:637.757333pt;}
.y59{bottom:641.456160pt;}
.y33f{bottom:641.611659pt;}
.y174{bottom:642.292453pt;}
.y227{bottom:642.519467pt;}
.yee{bottom:642.593920pt;}
.y1de{bottom:644.182533pt;}
.y1dd{bottom:645.996667pt;}
.y2da{bottom:646.297467pt;}
.y27e{bottom:647.959026pt;}
.y88{bottom:647.959599pt;}
.yb4{bottom:647.962359pt;}
.y248{bottom:648.560920pt;}
.y1dc{bottom:650.758933pt;}
.y317{bottom:650.984742pt;}
.y226{bottom:653.782533pt;}
.y2ae{bottom:654.159266pt;}
.y12f{bottom:654.314527pt;}
.y225{bottom:658.544667pt;}
.y58{bottom:658.767000pt;}
.y2d9{bottom:658.921309pt;}
.y173{bottom:659.677960pt;}
.yed{bottom:659.904760pt;}
.yf{bottom:662.173200pt;}
.y316{bottom:663.608584pt;}
.y27d{bottom:665.344533pt;}
.y87{bottom:665.345106pt;}
.yb3{bottom:665.347867pt;}
.y247{bottom:665.871760pt;}
.y150{bottom:665.872813pt;}
.y224{bottom:669.807666pt;}
.y2ad{bottom:671.470106pt;}
.y1db{bottom:671.620759pt;}
.y2d8{bottom:671.620883pt;}
.y12e{bottom:671.625244pt;}
.ye{bottom:675.552233pt;}
.y57{bottom:676.077839pt;}
.y315{bottom:676.308158pt;}
.y172{bottom:676.988800pt;}
.yec{bottom:677.215600pt;}
.y27c{bottom:682.655373pt;}
.y86{bottom:682.655946pt;}
.y246{bottom:683.182600pt;}
.y14f{bottom:683.183653pt;}
.y223{bottom:685.757333pt;}
.yb2{bottom:688.025067pt;}
.y1da{bottom:688.326683pt;}
.y2ac{bottom:688.855613pt;}
.yd{bottom:688.856600pt;}
.y2d7{bottom:688.931600pt;}
.y314{bottom:688.932001pt;}
.y12d{bottom:689.010627pt;}
.y222{bottom:690.519467pt;}
.y56{bottom:693.463347pt;}
.yeb{bottom:699.892800pt;}
.y27b{bottom:699.966213pt;}
.y85{bottom:699.966786pt;}
.y245{bottom:700.493439pt;}
.y14e{bottom:700.494493pt;}
.y2d6{bottom:701.631175pt;}
.yc{bottom:702.160967pt;}
.y1d9{bottom:704.956875pt;}
.y2a{bottom:705.259733pt;}
.y12c{bottom:705.640819pt;}
.y2ab{bottom:706.166453pt;}
.y313{bottom:706.317383pt;}
.y18a{bottom:709.794966pt;}
.y55{bottom:710.774186pt;}
.y221{bottom:711.456467pt;}
.y33e{bottom:714.330750pt;}
.yb{bottom:715.540000pt;}
.y27a{bottom:717.351720pt;}
.y84{bottom:717.352293pt;}
.y244{bottom:717.878947pt;}
.y14d{bottom:717.880000pt;}
.y2d5{bottom:718.940825pt;}
.y312{bottom:718.941225pt;}
.y1d7{bottom:719.848667pt;}
.y1d6{bottom:721.662433pt;}
.y1d8{bottom:721.662800pt;}
.y12b{bottom:722.346744pt;}
.y2aa{bottom:723.477293pt;}
.yb1{bottom:726.270880pt;}
.y54{bottom:728.085026pt;}
.y220{bottom:728.086659pt;}
.y30f{bottom:731.639708pt;}
.y2d4{bottom:731.640400pt;}
.y311{bottom:731.640800pt;}
.y189{bottom:733.757333pt;}
.y279{bottom:734.662560pt;}
.y83{bottom:734.663133pt;}
.y243{bottom:735.189786pt;}
.y14c{bottom:735.190840pt;}
.ye8{bottom:735.192894pt;}
.yea{bottom:735.193467pt;}
.y310{bottom:736.402933pt;}
.y1d5{bottom:738.292626pt;}
.y188{bottom:738.519467pt;}
.ya{bottom:739.502133pt;}
.y8{bottom:739.502800pt;}
.y12a{bottom:739.656394pt;}
.y2a9{bottom:740.862800pt;}
.ye9{bottom:741.089600pt;}
.yb0{bottom:743.581720pt;}
.y2d3{bottom:744.264242pt;}
.y21f{bottom:744.791517pt;}
.y9{bottom:744.869200pt;}
.y53{bottom:745.470533pt;}
.y30e{bottom:748.949358pt;}
.y187{bottom:749.782200pt;}
.y278{bottom:751.973400pt;}
.y82{bottom:751.973973pt;}
.y242{bottom:752.500626pt;}
.y14b{bottom:752.501680pt;}
.ye7{bottom:752.503733pt;}
.ye5{bottom:752.504093pt;}
.y6{bottom:754.166800pt;}
.y1d4{bottom:754.997483pt;}
.y129{bottom:757.041777pt;}
.ye6{bottom:758.475467pt;}
.y7{bottom:759.533733pt;}
.yaf{bottom:760.967227pt;}
.y21e{bottom:761.421709pt;}
.y30d{bottom:761.648933pt;}
.y2d2{bottom:761.649625pt;}
.y52{bottom:762.781373pt;}
.y2a8{bottom:763.464400pt;}
.y186{bottom:765.807600pt;}
.y277{bottom:769.358907pt;}
.y81{bottom:769.359480pt;}
.y241{bottom:769.886133pt;}
.y14a{bottom:769.887187pt;}
.ye2{bottom:769.888894pt;}
.ye4{bottom:769.889600pt;}
.y185{bottom:770.494267pt;}
.y1d3{bottom:771.627675pt;}
.y30c{bottom:774.272775pt;}
.y2d1{bottom:774.273467pt;}
.y128{bottom:774.427159pt;}
.ye3{bottom:775.785600pt;}
.y21d{bottom:778.127633pt;}
.yae{bottom:778.278067pt;}
.y51{bottom:780.092213pt;}
.y184{bottom:781.757333pt;}
.y183{bottom:786.519467pt;}
.y276{bottom:786.669747pt;}
.y80{bottom:786.670320pt;}
.y2d0{bottom:786.973041pt;}
.ydf{bottom:787.196747pt;}
.y240{bottom:787.196973pt;}
.y149{bottom:787.198027pt;}
.ye1{bottom:787.199733pt;}
.y5{bottom:787.499900pt;}
.y1d1{bottom:788.333216pt;}
.y1d2{bottom:788.333600pt;}
.y30b{bottom:791.658158pt;}
.y127{bottom:791.736810pt;}
.ye0{bottom:793.095867pt;}
.y21c{bottom:794.757826pt;}
.yad{bottom:795.588907pt;}
.y50{bottom:797.403053pt;}
.y275{bottom:803.980586pt;}
.y7f{bottom:803.981159pt;}
.y30a{bottom:804.282000pt;}
.y2cf{bottom:804.282692pt;}
.yde{bottom:804.507587pt;}
.y23f{bottom:804.507813pt;}
.y148{bottom:804.508866pt;}
.y1d0{bottom:804.963408pt;}
.y182{bottom:807.457158pt;}
.y126{bottom:809.122192pt;}
.y21b{bottom:811.463750pt;}
.yac{bottom:812.899747pt;}
.y4f{bottom:814.788560pt;}
.y309{bottom:816.981574pt;}
.y2ce{bottom:816.982266pt;}
.y4{bottom:820.836067pt;}
.y274{bottom:821.366094pt;}
.y7e{bottom:821.366667pt;}
.y1cf{bottom:821.669333pt;}
.ydd{bottom:821.893094pt;}
.y23e{bottom:821.893320pt;}
.y147{bottom:821.894373pt;}
.y181{bottom:824.087350pt;}
.y125{bottom:826.507575pt;}
.y21a{bottom:828.093942pt;}
.y33d{bottom:829.606109pt;}
.yab{bottom:830.285254pt;}
.y4e{bottom:832.099400pt;}
.y308{bottom:834.291225pt;}
.y2cd{bottom:834.291917pt;}
.y1ce{bottom:838.299525pt;}
.y273{bottom:838.676933pt;}
.ydc{bottom:839.203934pt;}
.y23d{bottom:839.204160pt;}
.y146{bottom:839.205213pt;}
.y180{bottom:840.793275pt;}
.y124{bottom:843.817225pt;}
.y7d{bottom:843.967800pt;}
.y219{bottom:844.799867pt;}
.y307{bottom:846.990799pt;}
.y2cc{bottom:846.991491pt;}
.yaa{bottom:847.596094pt;}
.y4d{bottom:849.410239pt;}
.y3{bottom:854.172233pt;}
.y1cd{bottom:855.004383pt;}
.ydb{bottom:856.514773pt;}
.y23c{bottom:856.515000pt;}
.y145{bottom:856.516053pt;}
.y17f{bottom:857.423467pt;}
.y2cb{bottom:859.615333pt;}
.y123{bottom:860.523150pt;}
.y272{bottom:861.354133pt;}
.y306{bottom:864.301516pt;}
.y216{bottom:864.755353pt;}
.y218{bottom:864.755733pt;}
.ya9{bottom:864.906933pt;}
.y4c{bottom:866.795747pt;}
.y7c{bottom:868.006000pt;}
.y217{bottom:869.517867pt;}
.yda{bottom:873.900281pt;}
.y23b{bottom:873.900507pt;}
.y144{bottom:873.901560pt;}
.y1ca{bottom:874.960025pt;}
.y1cc{bottom:874.960400pt;}
.y2ca{bottom:876.924984pt;}
.y305{bottom:876.925358pt;}
.y17c{bottom:877.454685pt;}
.y17e{bottom:877.454933pt;}
.y122{bottom:877.832800pt;}
.y1cb{bottom:879.722667pt;}
.y17d{bottom:882.217067pt;}
.y4b{bottom:884.106586pt;}
.y2{bottom:887.508400pt;}
.ya8{bottom:887.584000pt;}
.y1c9{bottom:887.659600pt;}
.y142{bottom:888.944667pt;}
.y2c9{bottom:889.624558pt;}
.y304{bottom:889.624933pt;}
.yd9{bottom:891.211120pt;}
.y23a{bottom:891.211347pt;}
.y143{bottom:891.212400pt;}
.y120{bottom:897.864400pt;}
.y17b{bottom:900.283200pt;}
.y4a{bottom:901.417426pt;}
.y2c8{bottom:902.324133pt;}
.y303{bottom:902.324508pt;}
.y121{bottom:902.626400pt;}
.yd8{bottom:908.521960pt;}
.y7b{bottom:908.522186pt;}
.y11d{bottom:910.487231pt;}
.y11f{bottom:910.488000pt;}
.y11e{bottom:915.250133pt;}
.y49{bottom:918.802933pt;}
.y2c7{bottom:919.633783pt;}
.y302{bottom:919.634158pt;}
.y1{bottom:920.843867pt;}
.y179{bottom:923.186805pt;}
.yd6{bottom:923.640667pt;}
.yd7{bottom:925.832800pt;}
.y7a{bottom:925.833026pt;}
.y17a{bottom:927.949333pt;}
.y11c{bottom:932.257625pt;}
.y301{bottom:932.258000pt;}
.y300{bottom:937.020133pt;}
.y48{bottom:941.404400pt;}
.y79{bottom:943.218533pt;}
.y11b{bottom:944.957200pt;}
.y78{bottom:994.393333pt;}
.h13{height:19.140120pt;}
.hf{height:20.960280pt;}
.h11{height:22.041000pt;}
.h4{height:23.580855pt;}
.h10{height:24.917022pt;}
.hd{height:25.313024pt;}
.h9{height:31.060945pt;}
.he{height:31.444940pt;}
.h8{height:31.658271pt;}
.h1{height:33.066253pt;}
.h15{height:33.074119pt;}
.h14{height:33.079186pt;}
.h12{height:33.087587pt;}
.h3{height:35.376000pt;}
.h7{height:37.973713pt;}
.hc{height:38.080381pt;}
.h6{height:39.266667pt;}
.ha{height:47.167607pt;}
.hb{height:49.599587pt;}
.h5{height:60.671621pt;}
.h2{height:75.840379pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:48.000000pt;}
.x28{left:52.384133pt;}
.x3f{left:58.658000pt;}
.x15{left:63.496000pt;}
.x3d{left:69.618800pt;}
.x14{left:74.683467pt;}
.x41{left:81.562133pt;}
.x40{left:90.179467pt;}
.x49{left:93.354267pt;}
.x42{left:97.814133pt;}
.x3a{left:99.628267pt;}
.x52{left:141.278667pt;}
.x25{left:183.836133pt;}
.x3e{left:206.966800pt;}
.x3b{left:210.444000pt;}
.x4b{left:219.514933pt;}
.x4c{left:229.492800pt;}
.x4d{left:246.425067pt;}
.x4e{left:253.455067pt;}
.x48{left:256.932267pt;}
.x26{left:258.670800pt;}
.x39{left:265.398400pt;}
.x1{left:266.683333pt;}
.x5b{left:272.579467pt;}
.x21{left:279.458133pt;}
.x16{left:282.632826pt;}
.x22{left:287.773200pt;}
.x5c{left:294.651724pt;}
.x58{left:304.403067pt;}
.x2b{left:309.921200pt;}
.x59{left:312.718000pt;}
.x2c{left:314.683333pt;}
.x46{left:320.502194pt;}
.x31{left:330.784133pt;}
.x54{left:342.576267pt;}
.x32{left:348.094400pt;}
.x2{left:349.984133pt;}
.x55{left:350.966800pt;}
.x37{left:353.686846pt;}
.x3{left:354.973200pt;}
.x4a{left:359.962133pt;}
.x43{left:366.084933pt;}
.xe{left:372.358933pt;}
.xf{left:377.348000pt;}
.x5a{left:401.007733pt;}
.x2f{left:403.124267pt;}
.x4{left:405.089600pt;}
.x5{left:410.078667pt;}
.x30{left:420.434533pt;}
.x5f{left:421.492800pt;}
.x60{left:431.773067pt;}
.x17{left:436.081733pt;}
.x47{left:442.431333pt;}
.x4f{left:469.114800pt;}
.x50{left:475.918000pt;}
.x33{left:479.395200pt;}
.x53{left:484.535333pt;}
.x51{left:490.733733pt;}
.x1f{left:492.245600pt;}
.x34{left:496.705333pt;}
.x20{left:500.636133pt;}
.x6{left:504.037733pt;}
.x10{left:507.968400pt;}
.x7{left:508.951067pt;}
.x1a{left:511.596667pt;}
.x11{left:512.957333pt;}
.x1b{left:525.958933pt;}
.x38{left:529.284933pt;}
.x35{left:542.740000pt;}
.x1c{left:550.752667pt;}
.x1d{left:559.143200pt;}
.x36{left:560.050267pt;}
.x18{left:565.417200pt;}
.x23{left:568.667600pt;}
.x44{left:576.226667pt;}
.x19{left:579.779333pt;}
.x24{left:581.215600pt;}
.x2d{left:583.332133pt;}
.x45{left:589.454933pt;}
.x8{left:599.962000pt;}
.x9{left:604.951067pt;}
.x5d{left:613.870667pt;}
.x56{left:616.289600pt;}
.x12{left:618.557333pt;}
.x5e{left:622.790400pt;}
.x57{left:624.680133pt;}
.x1e{left:626.116400pt;}
.xa{left:676.157333pt;}
.xb{left:681.146267pt;}
.x29{left:707.149467pt;}
.x2a{left:711.911600pt;}
.x2e{left:744.718000pt;}
.xc{left:752.201333pt;}
.x27{left:754.620267pt;}
.xd{left:757.190267pt;}
.x3c{left:763.615600pt;}
}




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