
    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_8e3cf5a15df4e4b582363a97.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_9af1010eecfd1c02048dc99a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_ebfbabc3dbabfc857601f3c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_4dd993df89fa93717885f89e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_50c6ce3e4dd21149e98a6b93.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_b6b08fe62db324d41be8eb15.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_79091482293165710895462b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_f232e472bc4a53392f56db0e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911133;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_164893ea0a6073313b54780d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_0ca271c037655f6b8c948583.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_9c5f08ad38e3d6acca4b74f3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.955566;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_80744bdfac3f07be970e3c7e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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_b6474fcef79ef0c0ed00e7da.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.925293;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_7654c9a4c38ffd13b9100636.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958008;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_d5006ce470b445001e26031e.woff2')format("woff");}.fff{font-family:fff;line-height:0.955566;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_64f80e8fb4f914226b3311bb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958008;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_3d438ab02efac595033fadec.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.955566;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_711926f610cbc24139332491.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958008;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_7906d4f1a6c8b51154ad2533.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.955566;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_d4b7ee8efa6a1704791aef3d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.955566;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_7ec18ad37beb18098a2f9349.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958008;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_a5f1c1ae6ae30ebb89cb279d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958008;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_e884cf937ff355400fbd24b8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.955566;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_50f718768dc5f8a8b33df417.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958008;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_a77bf661911bff4dd244e30a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.955566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-33.989716px;}
.v6{vertical-align:-25.008000px;}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-18.811800px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.054663px;}
.v1{vertical-align:30.381600px;}
.v4{vertical-align:31.797790px;}
.v5{vertical-align:32.976000px;}
.ls8d{letter-spacing:-2.640000px;}
.ls8{letter-spacing:-2.020095px;}
.ls9{letter-spacing:-1.941390px;}
.ls3a{letter-spacing:-1.776000px;}
.ls3b{letter-spacing:-0.864000px;}
.ls7{letter-spacing:-0.780000px;}
.ls4b{letter-spacing:-0.480000px;}
.ls38{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.300000px;}
.ls61{letter-spacing:-0.240000px;}
.ls8b{letter-spacing:-0.192000px;}
.ls39{letter-spacing:-0.180000px;}
.ls8c{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.120000px;}
.ls59{letter-spacing:-0.096000px;}
.ls2d{letter-spacing:-0.060000px;}
.ls5c{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.003228px;}
.ls4{letter-spacing:0.004140px;}
.ls2{letter-spacing:0.005076px;}
.ls0{letter-spacing:0.005676px;}
.ls1{letter-spacing:0.010200px;}
.ls76{letter-spacing:0.048000px;}
.ls13{letter-spacing:0.060000px;}
.ls6c{letter-spacing:0.096000px;}
.ls36{letter-spacing:0.120000px;}
.ls82{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls79{letter-spacing:0.192000px;}
.ls1b{letter-spacing:0.240000px;}
.ls7d{letter-spacing:0.288000px;}
.lse{letter-spacing:0.300000px;}
.ls5b{letter-spacing:0.336000px;}
.ls1c{letter-spacing:0.360000px;}
.ls90{letter-spacing:0.384000px;}
.ls14{letter-spacing:0.420000px;}
.ls7b{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.480000px;}
.ls66{letter-spacing:0.528000px;}
.ls21{letter-spacing:0.540000px;}
.ls7f{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.600000px;}
.ls73{letter-spacing:0.624000px;}
.ls26{letter-spacing:0.660000px;}
.ls6b{letter-spacing:0.672000px;}
.ls25{letter-spacing:0.720000px;}
.ls78{letter-spacing:0.768000px;}
.ls46{letter-spacing:0.780000px;}
.ls69{letter-spacing:0.816000px;}
.ls18{letter-spacing:0.840000px;}
.ls70{letter-spacing:0.864000px;}
.ls29{letter-spacing:0.900000px;}
.ls83{letter-spacing:0.912000px;}
.ls17{letter-spacing:0.960000px;}
.ls72{letter-spacing:1.008000px;}
.ls10{letter-spacing:1.020000px;}
.ls7a{letter-spacing:1.056000px;}
.ls20{letter-spacing:1.080000px;}
.ls57{letter-spacing:1.104000px;}
.ls2b{letter-spacing:1.140000px;}
.ls74{letter-spacing:1.152000px;}
.ls12{letter-spacing:1.200000px;}
.ls7c{letter-spacing:1.248000px;}
.ls1f{letter-spacing:1.260000px;}
.ls6e{letter-spacing:1.296000px;}
.lsf{letter-spacing:1.320000px;}
.ls86{letter-spacing:1.344000px;}
.ls2e{letter-spacing:1.380000px;}
.ls6d{letter-spacing:1.392000px;}
.ls34{letter-spacing:1.440000px;}
.ls80{letter-spacing:1.488000px;}
.lsb{letter-spacing:1.500000px;}
.ls3d{letter-spacing:1.560000px;}
.ls88{letter-spacing:1.584000px;}
.ls3c{letter-spacing:1.620000px;}
.ls81{letter-spacing:1.632000px;}
.ls2a{letter-spacing:1.680000px;}
.ls84{letter-spacing:1.728000px;}
.lsc{letter-spacing:1.740000px;}
.ls1a{letter-spacing:1.800000px;}
.ls45{letter-spacing:1.860000px;}
.ls71{letter-spacing:1.872000px;}
.ls15{letter-spacing:1.920000px;}
.ls85{letter-spacing:1.968000px;}
.ls27{letter-spacing:1.980000px;}
.ls31{letter-spacing:2.040000px;}
.ls6f{letter-spacing:2.064000px;}
.ls19{letter-spacing:2.100000px;}
.ls44{letter-spacing:2.160000px;}
.ls87{letter-spacing:2.208000px;}
.ls11{letter-spacing:2.220000px;}
.lsd{letter-spacing:2.280000px;}
.ls8e{letter-spacing:2.304000px;}
.lsa{letter-spacing:2.340000px;}
.ls42{letter-spacing:2.400000px;}
.ls7e{letter-spacing:2.448000px;}
.ls49{letter-spacing:2.460000px;}
.ls67{letter-spacing:2.496000px;}
.ls24{letter-spacing:2.520000px;}
.ls8f{letter-spacing:2.544000px;}
.ls4d{letter-spacing:2.580000px;}
.ls68{letter-spacing:2.592000px;}
.ls43{letter-spacing:2.640000px;}
.ls91{letter-spacing:2.700000px;}
.ls6a{letter-spacing:2.736000px;}
.ls47{letter-spacing:2.760000px;}
.ls48{letter-spacing:2.820000px;}
.ls3f{letter-spacing:2.880000px;}
.ls33{letter-spacing:3.000000px;}
.ls89{letter-spacing:3.024000px;}
.ls4f{letter-spacing:3.060000px;}
.ls8a{letter-spacing:3.072000px;}
.ls32{letter-spacing:3.120000px;}
.ls28{letter-spacing:3.240000px;}
.ls54{letter-spacing:3.300000px;}
.ls41{letter-spacing:3.360000px;}
.ls65{letter-spacing:3.408000px;}
.ls5a{letter-spacing:3.420000px;}
.ls23{letter-spacing:3.480000px;}
.ls55{letter-spacing:3.540000px;}
.ls56{letter-spacing:3.600000px;}
.ls1d{letter-spacing:3.720000px;}
.ls4a{letter-spacing:3.780000px;}
.ls4c{letter-spacing:3.840000px;}
.ls51{letter-spacing:3.900000px;}
.ls64{letter-spacing:3.960000px;}
.ls40{letter-spacing:4.020000px;}
.ls5d{letter-spacing:4.080000px;}
.ls5e{letter-spacing:4.140000px;}
.ls5f{letter-spacing:4.200000px;}
.ls4e{letter-spacing:4.260000px;}
.ls58{letter-spacing:4.380000px;}
.ls60{letter-spacing:4.440000px;}
.ls3e{letter-spacing:4.500000px;}
.ls75{letter-spacing:4.608000px;}
.ls1e{letter-spacing:4.620000px;}
.ls77{letter-spacing:4.752000px;}
.ls62{letter-spacing:5.160000px;}
.ls63{letter-spacing:5.700000px;}
.ls50{letter-spacing:6.540000px;}
.ls35{letter-spacing:7.080000px;}
.ls30{letter-spacing:8.700000px;}
.ls3{letter-spacing:59.532876px;}
.ls53{letter-spacing:87.185491px;}
.ls52{letter-spacing:87.830008px;}
.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;}
}
.ws35{word-spacing:-18.720000px;}
.ws10{word-spacing:-18.480000px;}
.ws11{word-spacing:-17.520000px;}
.ws3{word-spacing:-17.514000px;}
.wsac{word-spacing:-17.220000px;}
.ws36{word-spacing:-17.100000px;}
.ws5c{word-spacing:-16.680000px;}
.ws98{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.500000px;}
.ws9e{word-spacing:-16.380000px;}
.wsf{word-spacing:-15.840000px;}
.ws34{word-spacing:-15.060000px;}
.wse{word-spacing:-15.000000px;}
.ws13{word-spacing:-14.940000px;}
.wsb0{word-spacing:-14.736000px;}
.wsad{word-spacing:-14.592000px;}
.wscd{word-spacing:-14.208000px;}
.wse4{word-spacing:-14.160000px;}
.wsb4{word-spacing:-14.064000px;}
.wscb{word-spacing:-13.968000px;}
.wsb5{word-spacing:-13.872000px;}
.ws9{word-spacing:-13.344000px;}
.wsb3{word-spacing:-13.296000px;}
.wsb6{word-spacing:-13.152000px;}
.wscc{word-spacing:-13.056000px;}
.ws53{word-spacing:-12.757031px;}
.wsb7{word-spacing:-12.672000px;}
.ws8{word-spacing:-12.510000px;}
.wsb2{word-spacing:-12.480000px;}
.wsaf{word-spacing:-12.336000px;}
.wsca{word-spacing:-12.192000px;}
.wsb1{word-spacing:-12.096000px;}
.wsae{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.210662px;}
.wsc9{word-spacing:-9.360000px;}
.ws6{word-spacing:-7.293330px;}
.ws7{word-spacing:-5.351940px;}
.ws42{word-spacing:-3.720000px;}
.ws25{word-spacing:-3.480000px;}
.wse3{word-spacing:-3.072000px;}
.wsb{word-spacing:-2.886000px;}
.wsbe{word-spacing:-2.736000px;}
.wsba{word-spacing:-2.640000px;}
.ws58{word-spacing:-2.520000px;}
.ws5d{word-spacing:-2.460000px;}
.wsd{word-spacing:-2.331000px;}
.ws41{word-spacing:-2.220000px;}
.wsc3{word-spacing:-2.064000px;}
.ws2c{word-spacing:-1.980000px;}
.wsa0{word-spacing:-1.860000px;}
.ws2b{word-spacing:-1.800000px;}
.wsaa{word-spacing:-1.620000px;}
.ws9b{word-spacing:-1.560000px;}
.wsda{word-spacing:-1.488000px;}
.wsa3{word-spacing:-1.440000px;}
.wsa9{word-spacing:-1.380000px;}
.wsab{word-spacing:-1.320000px;}
.wse2{word-spacing:-1.296000px;}
.wsce{word-spacing:-1.200000px;}
.wsc7{word-spacing:-1.152000px;}
.wsa5{word-spacing:-1.140000px;}
.wsc{word-spacing:-1.134000px;}
.ws4c{word-spacing:-1.080000px;}
.wsde{word-spacing:-1.056000px;}
.ws1b{word-spacing:-0.960000px;}
.wscf{word-spacing:-0.816000px;}
.wsa4{word-spacing:-0.720000px;}
.wsc6{word-spacing:-0.624000px;}
.wsa8{word-spacing:-0.600000px;}
.ws3f{word-spacing:-0.480000px;}
.wsd6{word-spacing:-0.432000px;}
.ws91{word-spacing:-0.420000px;}
.ws3e{word-spacing:-0.360000px;}
.wsbc{word-spacing:-0.336000px;}
.ws24{word-spacing:-0.300000px;}
.wsbd{word-spacing:-0.288000px;}
.ws43{word-spacing:-0.240000px;}
.wsdb{word-spacing:-0.192000px;}
.ws1a{word-spacing:-0.180000px;}
.ws85{word-spacing:-0.120000px;}
.wsd8{word-spacing:-0.096000px;}
.ws1f{word-spacing:-0.060000px;}
.wsc8{word-spacing:-0.048000px;}
.ws7c{word-spacing:-0.043944px;}
.ws2f{word-spacing:-0.034118px;}
.wsa{word-spacing:0.000000px;}
.ws9c{word-spacing:0.048000px;}
.ws22{word-spacing:0.060000px;}
.wsc4{word-spacing:0.096000px;}
.ws9a{word-spacing:0.120000px;}
.wsd1{word-spacing:0.144000px;}
.ws67{word-spacing:0.180000px;}
.wsd0{word-spacing:0.192000px;}
.ws90{word-spacing:0.240000px;}
.wsa7{word-spacing:0.300000px;}
.wsa2{word-spacing:0.360000px;}
.ws19{word-spacing:0.420000px;}
.wsc2{word-spacing:0.432000px;}
.ws63{word-spacing:0.480000px;}
.ws33{word-spacing:0.528000px;}
.wsa1{word-spacing:0.540000px;}
.ws40{word-spacing:0.600000px;}
.wsd5{word-spacing:0.672000px;}
.ws69{word-spacing:0.720000px;}
.ws8c{word-spacing:0.768000px;}
.ws94{word-spacing:0.840000px;}
.ws50{word-spacing:0.864000px;}
.ws71{word-spacing:0.960000px;}
.ws20{word-spacing:1.020000px;}
.wse5{word-spacing:1.056000px;}
.ws48{word-spacing:1.080000px;}
.wsc1{word-spacing:1.104000px;}
.ws46{word-spacing:1.200000px;}
.ws45{word-spacing:1.260000px;}
.wse1{word-spacing:1.296000px;}
.ws9d{word-spacing:1.344000px;}
.ws29{word-spacing:1.380000px;}
.wse6{word-spacing:1.392000px;}
.ws4a{word-spacing:1.440000px;}
.ws47{word-spacing:1.500000px;}
.ws59{word-spacing:1.536000px;}
.ws5b{word-spacing:1.584000px;}
.ws1c{word-spacing:1.620000px;}
.ws80{word-spacing:1.632000px;}
.wsc0{word-spacing:1.728000px;}
.ws17{word-spacing:1.740000px;}
.ws4f{word-spacing:1.776000px;}
.ws16{word-spacing:1.800000px;}
.ws2a{word-spacing:1.920000px;}
.ws5f{word-spacing:1.980000px;}
.ws68{word-spacing:2.040000px;}
.ws64{word-spacing:2.100000px;}
.ws95{word-spacing:2.160000px;}
.ws93{word-spacing:2.220000px;}
.wsd2{word-spacing:2.256000px;}
.ws9f{word-spacing:2.280000px;}
.wsdf{word-spacing:2.304000px;}
.ws44{word-spacing:2.340000px;}
.ws49{word-spacing:2.400000px;}
.ws88{word-spacing:2.448000px;}
.ws18{word-spacing:2.520000px;}
.ws5a{word-spacing:2.640000px;}
.ws97{word-spacing:2.688000px;}
.ws66{word-spacing:2.700000px;}
.ws4b{word-spacing:2.760000px;}
.wsdc{word-spacing:2.784000px;}
.ws6b{word-spacing:2.820000px;}
.wsbf{word-spacing:2.832000px;}
.ws5e{word-spacing:2.880000px;}
.ws7f{word-spacing:2.940000px;}
.ws21{word-spacing:3.000000px;}
.wsd7{word-spacing:3.024000px;}
.wsa6{word-spacing:3.060000px;}
.ws96{word-spacing:3.072000px;}
.ws6a{word-spacing:3.120000px;}
.ws60{word-spacing:3.180000px;}
.wsc5{word-spacing:3.216000px;}
.ws65{word-spacing:3.240000px;}
.wsd9{word-spacing:3.264000px;}
.ws4d{word-spacing:3.300000px;}
.ws57{word-spacing:3.420000px;}
.ws61{word-spacing:3.480000px;}
.wsdd{word-spacing:3.504000px;}
.wsd4{word-spacing:3.600000px;}
.ws26{word-spacing:3.660000px;}
.wse0{word-spacing:3.696000px;}
.ws62{word-spacing:3.720000px;}
.wsd3{word-spacing:3.792000px;}
.ws92{word-spacing:3.840000px;}
.ws70{word-spacing:3.900000px;}
.ws8d{word-spacing:3.936000px;}
.ws27{word-spacing:3.960000px;}
.wsbb{word-spacing:3.984000px;}
.ws7e{word-spacing:4.020000px;}
.ws2d{word-spacing:4.200000px;}
.wsb8{word-spacing:4.260000px;}
.ws86{word-spacing:4.320000px;}
.ws1e{word-spacing:4.380000px;}
.ws8b{word-spacing:4.440000px;}
.ws3d{word-spacing:4.560000px;}
.ws87{word-spacing:4.620000px;}
.ws28{word-spacing:4.680000px;}
.ws23{word-spacing:4.740000px;}
.ws6d{word-spacing:4.860000px;}
.ws14{word-spacing:4.920000px;}
.ws15{word-spacing:4.980000px;}
.ws4e{word-spacing:5.100000px;}
.wsb9{word-spacing:5.460000px;}
.ws6e{word-spacing:5.520000px;}
.ws1d{word-spacing:5.760000px;}
.ws6f{word-spacing:6.480000px;}
.ws6c{word-spacing:6.780000px;}
.ws55{word-spacing:25.989566px;}
.ws37{word-spacing:49.248000px;}
.ws2{word-spacing:49.316352px;}
.ws0{word-spacing:49.322028px;}
.ws4{word-spacing:49.328490px;}
.ws39{word-spacing:51.840000px;}
.ws5{word-spacing:53.361375px;}
.ws38{word-spacing:55.968000px;}
.ws3c{word-spacing:70.464000px;}
.ws77{word-spacing:72.830353px;}
.ws73{word-spacing:73.416277px;}
.ws3a{word-spacing:85.968000px;}
.ws3b{word-spacing:86.880000px;}
.ws2e{word-spacing:96.348667px;}
.ws76{word-spacing:105.524912px;}
.ws72{word-spacing:106.169429px;}
.ws56{word-spacing:118.225411px;}
.ws82{word-spacing:126.259200px;}
.ws81{word-spacing:131.040000px;}
.ws31{word-spacing:172.680298px;}
.ws7d{word-spacing:215.545320px;}
.ws78{word-spacing:217.319212px;}
.ws74{word-spacing:218.549652px;}
.ws7b{word-spacing:241.384392px;}
.ws30{word-spacing:297.560292px;}
.ws54{word-spacing:362.657606px;}
.ws32{word-spacing:496.742327px;}
.ws79{word-spacing:498.328362px;}
.ws75{word-spacing:500.789243px;}
.ws7a{word-spacing:504.597749px;}
.ws8a{word-spacing:520.020173px;}
.ws89{word-spacing:523.004429px;}
.ws99{word-spacing:543.777158px;}
.ws52{word-spacing:591.641720px;}
.ws51{word-spacing:803.371720px;}
.ws84{word-spacing:872.006400px;}
.ws83{word-spacing:875.174400px;}
.ws8f{word-spacing:1262.305369px;}
.ws8e{word-spacing:1265.094826px;}
._c{margin-left:-2898.096000px;}
._11{margin-left:-2874.288000px;}
._3e{margin-left:-1824.465600px;}
._3a{margin-left:-989.223384px;}
._3b{margin-left:-611.217096px;}
._26{margin-left:-547.083889px;}
._28{margin-left:-506.151258px;}
._27{margin-left:-481.141971px;}
._43{margin-left:-328.644992px;}
._25{margin-left:-300.616219px;}
._d{margin-left:-260.404320px;}
._34{margin-left:-203.119099px;}
._2d{margin-left:-107.837928px;}
._2{margin-left:-9.368400px;}
._3{margin-left:-7.619172px;}
._7{margin-left:-6.561366px;}
._1{margin-left:-5.376000px;}
._6{margin-left:-3.575034px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.118634px;}
._4{width:1.817214px;}
._9{width:3.696000px;}
._8{width:4.860000px;}
._a{width:5.940000px;}
._b{width:7.710000px;}
._12{width:8.820000px;}
._1a{width:33.648000px;}
._19{width:37.200000px;}
._2b{width:43.135171px;}
._2a{width:45.304445px;}
._1b{width:47.712000px;}
._18{width:52.080000px;}
._1e{width:53.808000px;}
._21{width:57.648000px;}
._13{width:65.184000px;}
._22{width:70.800000px;}
._23{width:72.480000px;}
._1f{width:87.936000px;}
._1c{width:89.382000px;}
._17{width:93.600000px;}
._1d{width:97.968000px;}
._31{width:126.235037px;}
._2e{width:131.324486px;}
._30{width:133.702344px;}
._3c{width:134.886456px;}
._3d{width:136.441656px;}
._32{width:143.672659px;}
._2c{width:146.092234px;}
._14{width:150.000000px;}
._24{width:157.488000px;}
._15{width:169.248000px;}
._20{width:170.304000px;}
._10{width:193.448236px;}
._f{width:214.965181px;}
._42{width:255.535036px;}
._35{width:319.050086px;}
._2f{width:324.848722px;}
._33{width:332.524613px;}
._e{width:383.337720px;}
._41{width:407.235279px;}
._3f{width:486.270950px;}
._37{width:507.058630px;}
._44{width:527.044656px;}
._16{width:578.208000px;}
._45{width:621.609527px;}
._38{width:916.619506px;}
._40{width:1056.088420px;}
._39{width:1093.920108px;}
._29{width:1097.242315px;}
._36{width:1159.184722px;}
.fc6{color:rgb(7,0,2);}
.fc5{color:rgb(35,24,21);}
.fc4{color:rgb(255,241,0);}
.fc2{color:rgb(4,0,0);}
.fc3{color:rgb(137,137,137);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:22.737000px;}
.fs5{font-size:26.235000px;}
.fsb{font-size:34.117800px;}
.fs4{font-size:36.729000px;}
.fsc{font-size:37.644000px;}
.fs8{font-size:39.000000px;}
.fse{font-size:39.720000px;}
.fs11{font-size:41.716800px;}
.fs0{font-size:42.000000px;}
.fs14{font-size:43.944000px;}
.fs6{font-size:45.000000px;}
.fs10{font-size:45.888600px;}
.fs18{font-size:46.491000px;}
.fsa{font-size:48.000000px;}
.fs1b{font-size:48.584400px;}
.fs12{font-size:50.060400px;}
.fs19{font-size:50.717400px;}
.fsf{font-size:51.068400px;}
.fs17{font-size:54.259200px;}
.fs15{font-size:57.600000px;}
.fs1a{font-size:58.301400px;}
.fs13{font-size:58.592400px;}
.fs9{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs16{font-size:67.200000px;}
.fsd{font-size:68.091600px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1d4{bottom:38.157600px;}
.y1{bottom:46.264950px;}
.y37{bottom:47.777250px;}
.y1ed{bottom:51.042900px;}
.y234{bottom:66.787650px;}
.y219{bottom:83.401500px;}
.y29a{bottom:83.637600px;}
.y1f9{bottom:83.770350px;}
.y288{bottom:83.772600px;}
.y16e{bottom:83.785350px;}
.y143{bottom:84.070350px;}
.y1b6{bottom:84.085350px;}
.y6c{bottom:84.700500px;}
.ye6{bottom:84.771600px;}
.y1fd{bottom:84.925050px;}
.y1bc{bottom:85.113900px;}
.y67{bottom:86.286150px;}
.y34{bottom:88.333800px;}
.y2df{bottom:89.263500px;}
.yd7{bottom:93.461850px;}
.y320{bottom:95.263500px;}
.y218{bottom:99.145500px;}
.y6b{bottom:100.444500px;}
.ye5{bottom:100.515600px;}
.y1fc{bottom:100.669050px;}
.y1bb{bottom:100.857900px;}
.y299{bottom:101.637600px;}
.y1f8{bottom:101.770350px;}
.y287{bottom:101.772600px;}
.y16d{bottom:101.785350px;}
.y142{bottom:102.070350px;}
.y1b5{bottom:102.085350px;}
.y33{bottom:103.330050px;}
.y2de{bottom:104.263500px;}
.y66{bottom:104.286150px;}
.y24b{bottom:105.102600px;}
.yd6{bottom:109.709850px;}
.y31f{bottom:110.263500px;}
.y217{bottom:114.889500px;}
.ye4{bottom:116.259600px;}
.y1fb{bottom:116.413050px;}
.y1ba{bottom:116.601900px;}
.y32{bottom:118.330050px;}
.y2dd{bottom:119.263500px;}
.y298{bottom:119.637600px;}
.y1f7{bottom:119.770350px;}
.y286{bottom:119.772600px;}
.y16c{bottom:119.785350px;}
.y18c{bottom:120.070350px;}
.y1b4{bottom:120.085350px;}
.y65{bottom:122.286150px;}
.y31e{bottom:125.263500px;}
.yd5{bottom:125.957850px;}
.y95{bottom:128.155924px;}
.y216{bottom:130.633500px;}
.ye3{bottom:132.003600px;}
.y1fa{bottom:132.157050px;}
.y2dc{bottom:134.263500px;}
.y297{bottom:137.637600px;}
.y141{bottom:137.665350px;}
.y1f6{bottom:137.770350px;}
.y285{bottom:137.772600px;}
.y16b{bottom:137.785350px;}
.y18b{bottom:138.070350px;}
.y1b3{bottom:138.085350px;}
.y31d{bottom:140.263500px;}
.y64{bottom:140.286150px;}
.y1ce{bottom:140.344500px;}
.y94{bottom:142.174200px;}
.yd4{bottom:142.205850px;}
.y1e1{bottom:145.483950px;}
.y1d0{bottom:145.572150px;}
.ye2{bottom:147.747600px;}
.y2db{bottom:149.263500px;}
.y23f{bottom:154.134000px;}
.y1fe{bottom:154.675500px;}
.y31c{bottom:155.263500px;}
.y2a1{bottom:155.365350px;}
.y296{bottom:155.637600px;}
.y1f5{bottom:155.770350px;}
.y284{bottom:155.772600px;}
.y16a{bottom:155.785350px;}
.y18a{bottom:156.070350px;}
.y1b2{bottom:156.085350px;}
.y232{bottom:157.860000px;}
.y63{bottom:158.286150px;}
.y214{bottom:159.523800px;}
.y238{bottom:162.378010px;}
.y2da{bottom:164.263500px;}
.y1ea{bottom:165.370350px;}
.y1d8{bottom:165.373050px;}
.y1cd{bottom:166.011836px;}
.y1cc{bottom:166.290150px;}
.y24d{bottom:167.832552px;}
.y31b{bottom:170.263500px;}
.yd3{bottom:171.209850px;}
.yf0{bottom:171.663000px;}
.y295{bottom:173.637600px;}
.y1f4{bottom:173.770350px;}
.y283{bottom:173.772600px;}
.y169{bottom:173.785350px;}
.y140{bottom:173.920350px;}
.y189{bottom:174.070350px;}
.y1b1{bottom:174.085350px;}
.y116{bottom:176.130600px;}
.y62{bottom:176.286150px;}
.y31{bottom:176.659200px;}
.ycf{bottom:177.461850px;}
.y20c{bottom:177.714707px;}
.y20e{bottom:177.727440px;}
.y210{bottom:177.727890px;}
.y2d9{bottom:179.263500px;}
.y21d{bottom:180.314968px;}
.y22e{bottom:180.315418px;}
.y21f{bottom:180.524177px;}
.y230{bottom:180.524627px;}
.y21b{bottom:180.535800px;}
.y22c{bottom:180.536250px;}
.y1c5{bottom:181.493400px;}
.y1e9{bottom:181.627950px;}
.y24c{bottom:183.384450px;}
.y31a{bottom:185.263500px;}
.yd2{bottom:185.705850px;}
.yce{bottom:185.717850px;}
.y87{bottom:187.208250px;}
.y114{bottom:188.790874px;}
.y2a0{bottom:191.365350px;}
.y294{bottom:191.637600px;}
.y1f3{bottom:191.770350px;}
.y282{bottom:191.772600px;}
.y168{bottom:191.785350px;}
.y13f{bottom:191.920350px;}
.y188{bottom:192.070350px;}
.y1b0{bottom:192.085350px;}
.yd0{bottom:193.961850px;}
.y20b{bottom:193.992467px;}
.y20d{bottom:194.005200px;}
.y20f{bottom:194.005650px;}
.y21c{bottom:194.262268px;}
.y22d{bottom:194.262718px;}
.y2d8{bottom:194.263500px;}
.y61{bottom:194.286150px;}
.y21e{bottom:194.471477px;}
.y22f{bottom:194.471927px;}
.y21a{bottom:194.483100px;}
.y22b{bottom:194.483550px;}
.y30{bottom:194.659200px;}
.y241{bottom:197.775900px;}
.yd1{bottom:200.213850px;}
.y319{bottom:200.263500px;}
.y113{bottom:202.348834px;}
.y226{bottom:204.238200px;}
.y2d7{bottom:209.263500px;}
.y293{bottom:209.637600px;}
.y1f2{bottom:209.770350px;}
.y281{bottom:209.772600px;}
.y167{bottom:209.785350px;}
.y13e{bottom:209.920350px;}
.y187{bottom:210.070350px;}
.y1af{bottom:210.085350px;}
.y10d{bottom:211.520722px;}
.y60{bottom:212.286150px;}
.yff{bottom:212.574071px;}
.y2f{bottom:212.659200px;}
.y206{bottom:212.766150px;}
.y318{bottom:215.263500px;}
.y1c6{bottom:221.775675px;}
.y2d6{bottom:224.263500px;}
.y235{bottom:224.647650px;}
.y242{bottom:226.926600px;}
.y292{bottom:227.637600px;}
.y1f1{bottom:227.770350px;}
.y280{bottom:227.772600px;}
.y166{bottom:227.785350px;}
.y13d{bottom:227.920350px;}
.y186{bottom:228.070350px;}
.y1ae{bottom:228.085350px;}
.y7b{bottom:229.356000px;}
.y317{bottom:230.263500px;}
.y5f{bottom:230.286150px;}
.y2e{bottom:230.659200px;}
.ycd{bottom:232.615350px;}
.y1e8{bottom:233.395950px;}
.y2d5{bottom:239.263500px;}
.y8d{bottom:239.415600px;}
.y10e{bottom:240.722482px;}
.y100{bottom:241.775831px;}
.y227{bottom:244.929448px;}
.y316{bottom:245.263500px;}
.y291{bottom:245.637600px;}
.y1f0{bottom:245.770350px;}
.y27f{bottom:245.772600px;}
.y165{bottom:245.785350px;}
.y13c{bottom:245.920350px;}
.y185{bottom:246.070350px;}
.y1ad{bottom:246.085350px;}
.y5e{bottom:248.286150px;}
.y2d{bottom:248.659200px;}
.ycc{bottom:252.115350px;}
.y2d4{bottom:254.263500px;}
.y7f{bottom:255.563301px;}
.y80{bottom:255.569100px;}
.y243{bottom:256.077300px;}
.y315{bottom:260.263500px;}
.y1c7{bottom:262.057950px;}
.y88{bottom:262.449468px;}
.y29f{bottom:263.365350px;}
.y290{bottom:263.637600px;}
.y1ef{bottom:263.770350px;}
.y27e{bottom:263.772600px;}
.y164{bottom:263.785350px;}
.y13b{bottom:263.920350px;}
.y184{bottom:264.070350px;}
.y1ac{bottom:264.085350px;}
.y5d{bottom:266.286150px;}
.y2c{bottom:266.659200px;}
.y2d3{bottom:269.263500px;}
.y10f{bottom:269.924242px;}
.y101{bottom:270.977591px;}
.y7e{bottom:271.173300px;}
.y207{bottom:273.455065px;}
.y314{bottom:275.263500px;}
.y28f{bottom:281.637600px;}
.y1ee{bottom:281.770350px;}
.y27d{bottom:281.772600px;}
.y13a{bottom:281.920350px;}
.y183{bottom:282.070350px;}
.y2d2{bottom:284.263500px;}
.y5c{bottom:284.286150px;}
.y2b{bottom:284.659200px;}
.y1e7{bottom:285.163950px;}
.y244{bottom:285.228000px;}
.y228{bottom:285.620696px;}
.y313{bottom:290.263500px;}
.y2d1{bottom:299.263500px;}
.y163{bottom:299.380350px;}
.y28e{bottom:299.637600px;}
.y1ab{bottom:299.680350px;}
.yc5{bottom:299.770350px;}
.y27c{bottom:299.772600px;}
.y139{bottom:299.920350px;}
.y182{bottom:300.070350px;}
.y110{bottom:300.168922px;}
.y102{bottom:301.222271px;}
.y78{bottom:301.937710px;}
.y5b{bottom:302.286150px;}
.y1c8{bottom:302.340225px;}
.y2a{bottom:302.659200px;}
.yea{bottom:304.905406px;}
.y312{bottom:305.263500px;}
.y7a{bottom:306.859203px;}
.y24e{bottom:310.202850px;}
.y245{bottom:313.168946px;}
.y2d0{bottom:314.263500px;}
.y29e{bottom:317.365350px;}
.y28d{bottom:317.637600px;}
.yc4{bottom:317.770350px;}
.y27b{bottom:317.772600px;}
.y138{bottom:317.920350px;}
.y181{bottom:318.070350px;}
.y311{bottom:320.263500px;}
.y5a{bottom:320.286150px;}
.y29{bottom:320.659200px;}
.y82{bottom:322.224351px;}
.y115{bottom:323.166750px;}
.y229{bottom:326.300320px;}
.y2cf{bottom:329.263500px;}
.y103{bottom:330.424031px;}
.y208{bottom:334.143980px;}
.y162{bottom:335.245350px;}
.y310{bottom:335.263500px;}
.y28c{bottom:335.637600px;}
.yc3{bottom:335.770350px;}
.y27a{bottom:335.772600px;}
.y137{bottom:335.920350px;}
.y1aa{bottom:335.935350px;}
.y180{bottom:336.070350px;}
.y1e6{bottom:336.931950px;}
.y81{bottom:337.834350px;}
.y59{bottom:338.286150px;}
.y28{bottom:338.659200px;}
.y246{bottom:342.319646px;}
.y1c9{bottom:342.622500px;}
.y2ce{bottom:344.263500px;}
.y30f{bottom:350.263500px;}
.yc2{bottom:353.770350px;}
.y279{bottom:353.772600px;}
.y136{bottom:353.920350px;}
.y1a9{bottom:353.935350px;}
.y17f{bottom:354.070350px;}
.y58{bottom:356.286150px;}
.y11a{bottom:357.840352px;}
.y1cf{bottom:358.336350px;}
.y2cd{bottom:359.263500px;}
.y237{bottom:359.567261px;}
.y104{bottom:359.625791px;}
.y85{bottom:359.980453px;}
.y30e{bottom:365.263500px;}
.y22a{bottom:366.991568px;}
.y28b{bottom:371.232600px;}
.y247{bottom:371.470346px;}
.yc1{bottom:371.770350px;}
.y278{bottom:371.772600px;}
.y135{bottom:371.920350px;}
.y1a8{bottom:371.935350px;}
.y17e{bottom:372.070350px;}
.y2cc{bottom:374.263500px;}
.y57{bottom:374.286150px;}
.y30d{bottom:380.263500px;}
.y1ca{bottom:382.904775px;}
.y27{bottom:383.817300px;}
.y220{bottom:385.270541px;}
.y112{bottom:386.257346px;}
.y89{bottom:387.686943px;}
.y1e5{bottom:388.699950px;}
.y2cb{bottom:389.263500px;}
.yc0{bottom:389.770350px;}
.y277{bottom:389.772600px;}
.y161{bottom:389.785350px;}
.y134{bottom:389.920350px;}
.y1a7{bottom:389.935350px;}
.y17d{bottom:390.070350px;}
.y56{bottom:392.286150px;}
.y1e0{bottom:392.684400px;}
.y233{bottom:392.721000px;}
.y1ff{bottom:393.435450px;}
.y79{bottom:394.286065px;}
.y72{bottom:394.789303px;}
.y209{bottom:394.832896px;}
.y30c{bottom:395.263500px;}
.y26{bottom:396.268050px;}
.y111{bottom:399.116550px;}
.y248{bottom:400.621046px;}
.y8c{bottom:402.432000px;}
.y2ca{bottom:404.263500px;}
.y231{bottom:407.119200px;}
.ybf{bottom:407.770350px;}
.y276{bottom:407.772600px;}
.y160{bottom:407.785350px;}
.y133{bottom:407.920350px;}
.y1a6{bottom:407.935350px;}
.y17c{bottom:408.070350px;}
.y109{bottom:408.288438px;}
.y71{bottom:408.811719px;}
.yf9{bottom:409.341787px;}
.y30b{bottom:410.263500px;}
.y55{bottom:410.286150px;}
.y25{bottom:412.671000px;}
.y221{bottom:417.814241px;}
.y2c9{bottom:419.263500px;}
.y86{bottom:421.739534px;}
.y1d2{bottom:423.182941px;}
.y1cb{bottom:423.187050px;}
.y6f{bottom:423.994140px;}
.y30a{bottom:425.263500px;}
.ybe{bottom:425.770350px;}
.y275{bottom:425.772600px;}
.y15f{bottom:425.785350px;}
.y132{bottom:425.920350px;}
.y1a5{bottom:425.935350px;}
.y17b{bottom:426.070350px;}
.y84{bottom:427.067702px;}
.y54{bottom:428.286150px;}
.y249{bottom:429.771746px;}
.y2c8{bottom:434.263500px;}
.y10a{bottom:437.490198px;}
.y1ec{bottom:438.075900px;}
.yfa{bottom:438.543547px;}
.y24{bottom:439.683600px;}
.y309{bottom:440.263500px;}
.y1e4{bottom:440.467950px;}
.ybd{bottom:443.770350px;}
.y274{bottom:443.772600px;}
.y15e{bottom:443.785350px;}
.y131{bottom:443.920350px;}
.y1a4{bottom:443.935350px;}
.y17a{bottom:444.070350px;}
.y1bd{bottom:445.051950px;}
.y70{bottom:445.676001px;}
.y53{bottom:446.286150px;}
.y2c7{bottom:449.263500px;}
.y83{bottom:450.184800px;}
.y222{bottom:450.369564px;}
.y308{bottom:455.263500px;}
.y20a{bottom:455.521811px;}
.y212{bottom:455.534994px;}
.y250{bottom:457.702364px;}
.y23{bottom:458.608950px;}
.y24a{bottom:458.922446px;}
.ybc{bottom:461.770350px;}
.y273{bottom:461.772600px;}
.y15d{bottom:461.785350px;}
.y7c{bottom:461.881800px;}
.y130{bottom:461.920350px;}
.y1a3{bottom:461.935350px;}
.y179{bottom:462.070350px;}
.y2c6{bottom:464.263500px;}
.y52{bottom:464.286150px;}
.y6e{bottom:466.283153px;}
.y22{bottom:466.683600px;}
.y10b{bottom:466.691958px;}
.yfb{bottom:467.745307px;}
.y307{bottom:470.263500px;}
.y1d5{bottom:470.551050px;}
.y1e3{bottom:472.608750px;}
.y1be{bottom:479.225967px;}
.y2c5{bottom:479.263500px;}
.ybb{bottom:479.770350px;}
.y272{bottom:479.772600px;}
.y15c{bottom:479.785350px;}
.y12f{bottom:479.920350px;}
.y1a2{bottom:479.935350px;}
.y178{bottom:480.070350px;}
.y51{bottom:482.286150px;}
.y223{bottom:482.924887px;}
.y239{bottom:483.495600px;}
.y77{bottom:484.271763px;}
.y306{bottom:485.263500px;}
.y7d{bottom:485.304300px;}
.y21{bottom:485.608950px;}
.y200{bottom:487.256700px;}
.y20{bottom:493.683600px;}
.y2c4{bottom:494.263500px;}
.y10c{bottom:496.936638px;}
.yba{bottom:497.770350px;}
.y271{bottom:497.772600px;}
.y15b{bottom:497.785350px;}
.y12e{bottom:497.920350px;}
.y1a1{bottom:497.935350px;}
.yfc{bottom:497.989987px;}
.y177{bottom:498.070350px;}
.y305{bottom:500.263500px;}
.y50{bottom:500.286150px;}
.y1d7{bottom:501.678000px;}
.ye9{bottom:506.448137px;}
.y11b{bottom:507.040500px;}
.y1e2{bottom:508.479150px;}
.y2c3{bottom:509.263500px;}
.y73{bottom:509.663935px;}
.y1f{bottom:512.608950px;}
.y1bf{bottom:514.630425px;}
.y8a{bottom:514.933121px;}
.y304{bottom:515.263500px;}
.y224{bottom:515.468587px;}
.yb9{bottom:515.770350px;}
.y270{bottom:515.772600px;}
.y15a{bottom:515.785350px;}
.y12d{bottom:515.920350px;}
.y1a0{bottom:515.935350px;}
.y76{bottom:516.888380px;}
.y4f{bottom:518.286150px;}
.y9f{bottom:518.784600px;}
.y2c2{bottom:524.263500px;}
.y1e{bottom:526.108950px;}
.yfd{bottom:527.191747px;}
.y23a{bottom:529.655733px;}
.y303{bottom:530.263500px;}
.y176{bottom:533.665350px;}
.yb8{bottom:533.770350px;}
.y26f{bottom:533.772600px;}
.y159{bottom:533.785350px;}
.y12c{bottom:533.920350px;}
.y19f{bottom:533.935350px;}
.y1d{bottom:534.183600px;}
.y201{bottom:535.669471px;}
.y75{bottom:535.909053px;}
.y4e{bottom:536.286150px;}
.y2c1{bottom:539.263500px;}
.y236{bottom:541.198950px;}
.y302{bottom:545.263500px;}
.y1df{bottom:545.516550px;}
.y225{bottom:548.012287px;}
.y6d{bottom:548.362050px;}
.y1c0{bottom:548.804442px;}
.y74{bottom:548.967641px;}
.y175{bottom:551.665350px;}
.yb7{bottom:551.770350px;}
.y26e{bottom:551.772600px;}
.y158{bottom:551.785350px;}
.y12b{bottom:551.920350px;}
.y19e{bottom:551.935350px;}
.y1c{bottom:553.108950px;}
.y2c0{bottom:554.263500px;}
.y4d{bottom:554.286150px;}
.y119{bottom:554.602754px;}
.yfe{bottom:556.393507px;}
.y301{bottom:560.263500px;}
.y1b{bottom:561.183600px;}
.y2bf{bottom:569.263500px;}
.yb6{bottom:569.770350px;}
.y26d{bottom:569.772600px;}
.y157{bottom:569.785350px;}
.y12a{bottom:569.920350px;}
.y19d{bottom:569.935350px;}
.y1d3{bottom:571.725900px;}
.y4c{bottom:572.286150px;}
.y23b{bottom:574.591537px;}
.y300{bottom:575.263500px;}
.y105{bottom:577.940234px;}
.yf3{bottom:578.993584px;}
.y1a{bottom:580.108950px;}
.y1de{bottom:581.862150px;}
.y1c1{bottom:582.978460px;}
.y202{bottom:584.082242px;}
.y2be{bottom:584.263500px;}
.y29d{bottom:587.365350px;}
.yb5{bottom:587.770350px;}
.y26c{bottom:587.772600px;}
.y156{bottom:587.785350px;}
.y129{bottom:587.920350px;}
.y19c{bottom:587.935350px;}
.y19{bottom:588.183600px;}
.y213{bottom:589.601850px;}
.y2ff{bottom:590.263500px;}
.y4b{bottom:590.286150px;}
.y2bd{bottom:599.263500px;}
.y1dd{bottom:604.801950px;}
.y240{bottom:605.097900px;}
.y2fe{bottom:605.263500px;}
.yb4{bottom:605.770350px;}
.y26b{bottom:605.772600px;}
.y155{bottom:605.785350px;}
.y128{bottom:605.920350px;}
.y19b{bottom:605.935350px;}
.y18{bottom:607.108950px;}
.y106{bottom:607.141994px;}
.yf4{bottom:608.195344px;}
.y4a{bottom:608.286150px;}
.y2bc{bottom:614.263500px;}
.y1c2{bottom:618.382917px;}
.y1dc{bottom:618.929850px;}
.y2fd{bottom:620.263500px;}
.y17{bottom:620.608950px;}
.y23c{bottom:620.751671px;}
.yb3{bottom:623.770350px;}
.y26a{bottom:623.772600px;}
.y154{bottom:623.785350px;}
.y127{bottom:623.920350px;}
.y19a{bottom:623.935350px;}
.y49{bottom:626.286150px;}
.y16{bottom:628.683600px;}
.y2bb{bottom:629.263500px;}
.y203{bottom:632.495014px;}
.y2fc{bottom:635.263500px;}
.y107{bottom:636.343754px;}
.yf5{bottom:637.397104px;}
.y8b{bottom:637.974642px;}
.yb2{bottom:641.770350px;}
.y269{bottom:641.772600px;}
.y153{bottom:641.785350px;}
.y126{bottom:641.920350px;}
.y199{bottom:641.935350px;}
.y2ba{bottom:644.263500px;}
.y48{bottom:644.286150px;}
.y15{bottom:647.608950px;}
.y2fb{bottom:650.263500px;}
.y1c3{bottom:652.556935px;}
.y14{bottom:655.683600px;}
.y1db{bottom:655.966650px;}
.y2b9{bottom:659.263500px;}
.yb1{bottom:659.770350px;}
.y268{bottom:659.772600px;}
.y152{bottom:659.785350px;}
.y125{bottom:659.920350px;}
.y198{bottom:659.935350px;}
.y47{bottom:662.286150px;}
.y2fa{bottom:665.263500px;}
.y108{bottom:666.588434px;}
.y23d{bottom:666.911804px;}
.yf6{bottom:667.641784px;}
.y2b8{bottom:674.263500px;}
.y13{bottom:674.608950px;}
.ycb{bottom:677.770350px;}
.y267{bottom:677.772600px;}
.y151{bottom:677.785350px;}
.y124{bottom:677.920350px;}
.y197{bottom:677.935350px;}
.y8e{bottom:678.322050px;}
.y2f9{bottom:680.263500px;}
.y97{bottom:680.285687px;}
.y46{bottom:680.286150px;}
.y204{bottom:680.907785px;}
.ye8{bottom:684.266462px;}
.y1c4{bottom:686.730952px;}
.y1d1{bottom:686.746205px;}
.y12{bottom:688.108950px;}
.y2b7{bottom:689.263500px;}
.y1da{bottom:693.046650px;}
.y2f8{bottom:695.263500px;}
.yb0{bottom:695.365350px;}
.yca{bottom:695.770350px;}
.y266{bottom:695.772600px;}
.y150{bottom:695.785350px;}
.y123{bottom:695.920350px;}
.y196{bottom:695.935350px;}
.y11{bottom:696.183600px;}
.yf7{bottom:696.843544px;}
.y45{bottom:698.286150px;}
.y1d6{bottom:702.882978px;}
.y2b6{bottom:704.263500px;}
.y253{bottom:708.113760px;}
.y2f7{bottom:710.263500px;}
.y23e{bottom:713.071938px;}
.yc9{bottom:713.770350px;}
.y265{bottom:713.772600px;}
.y14f{bottom:713.785350px;}
.y117{bottom:713.901300px;}
.y122{bottom:713.920350px;}
.y195{bottom:713.935350px;}
.y10{bottom:715.108950px;}
.yf1{bottom:715.691250px;}
.y44{bottom:716.286150px;}
.y2b5{bottom:719.263500px;}
.y252{bottom:722.689080px;}
.yf{bottom:723.183600px;}
.y118{bottom:724.257450px;}
.y2f6{bottom:725.263500px;}
.yf8{bottom:726.045304px;}
.y1eb{bottom:728.351100px;}
.y211{bottom:729.313352px;}
.y205{bottom:729.320556px;}
.y1d9{bottom:730.745850px;}
.yaf{bottom:731.230350px;}
.yc8{bottom:731.770350px;}
.y264{bottom:731.772600px;}
.y14e{bottom:731.785350px;}
.y121{bottom:731.920350px;}
.y194{bottom:731.935350px;}
.y2b4{bottom:734.263500px;}
.y43{bottom:734.286150px;}
.y90{bottom:736.351068px;}
.y251{bottom:737.264400px;}
.yeb{bottom:739.259100px;}
.y2f5{bottom:740.263500px;}
.ye{bottom:742.108950px;}
.y2b3{bottom:749.263500px;}
.yc7{bottom:749.770350px;}
.y263{bottom:749.772600px;}
.y14d{bottom:749.785350px;}
.y120{bottom:749.920350px;}
.y193{bottom:749.935350px;}
.yd{bottom:750.183600px;}
.y42{bottom:752.286150px;}
.y2f4{bottom:755.263500px;}
.y24f{bottom:757.998300px;}
.y2b2{bottom:764.263500px;}
.yc6{bottom:767.770350px;}
.y262{bottom:767.772600px;}
.y14c{bottom:767.785350px;}
.y11f{bottom:767.920350px;}
.y192{bottom:767.935350px;}
.yec{bottom:768.460860px;}
.yc{bottom:769.108950px;}
.y2f3{bottom:770.263500px;}
.y69{bottom:770.286150px;}
.yb{bottom:777.183600px;}
.y2b1{bottom:779.263500px;}
.y99{bottom:784.842067px;}
.y2f2{bottom:785.263500px;}
.yae{bottom:785.770350px;}
.y261{bottom:785.772600px;}
.y14b{bottom:785.785350px;}
.y11e{bottom:785.920350px;}
.y191{bottom:785.935350px;}
.y41{bottom:787.883400px;}
.y68{bottom:788.286150px;}
.y2b0{bottom:794.263500px;}
.ya{bottom:796.108950px;}
.yf2{bottom:797.662620px;}
.yed{bottom:798.705540px;}
.y2f1{bottom:800.263500px;}
.yad{bottom:803.770350px;}
.y260{bottom:803.772600px;}
.y14a{bottom:803.785350px;}
.y11d{bottom:803.920350px;}
.y190{bottom:803.935350px;}
.y2af{bottom:809.263500px;}
.y2f0{bottom:815.263500px;}
.yac{bottom:821.770350px;}
.y25f{bottom:821.772600px;}
.y149{bottom:821.785350px;}
.y174{bottom:821.920350px;}
.y18f{bottom:821.935350px;}
.y2ae{bottom:824.263500px;}
.y9{bottom:824.836200px;}
.yee{bottom:827.907300px;}
.y91{bottom:829.670606px;}
.y2ef{bottom:830.263500px;}
.y2ad{bottom:839.263500px;}
.y11c{bottom:839.515350px;}
.yab{bottom:839.770350px;}
.y25e{bottom:839.772600px;}
.y148{bottom:839.785350px;}
.y173{bottom:839.920350px;}
.y18e{bottom:839.935350px;}
.ye7{bottom:843.316350px;}
.y2ee{bottom:845.263500px;}
.y8{bottom:845.836200px;}
.y2ac{bottom:854.263500px;}
.y9b{bottom:854.486598px;}
.y1b9{bottom:857.365350px;}
.yaa{bottom:857.770350px;}
.y25d{bottom:857.772600px;}
.y147{bottom:857.785350px;}
.y172{bottom:857.920350px;}
.yef{bottom:858.151980px;}
.y2ed{bottom:860.263500px;}
.y40{bottom:865.948050px;}
.y7{bottom:866.830950px;}
.y9a{bottom:867.253698px;}
.y2ab{bottom:869.263500px;}
.y2ec{bottom:875.263500px;}
.y1b8{bottom:875.365350px;}
.y18d{bottom:875.530350px;}
.ya9{bottom:875.770350px;}
.y25c{bottom:875.772600px;}
.y146{bottom:875.785350px;}
.y171{bottom:875.920350px;}
.y98{bottom:877.633350px;}
.y2aa{bottom:884.263500px;}
.y6{bottom:887.830950px;}
.y2eb{bottom:890.263500px;}
.y3f{bottom:893.293050px;}
.y29c{bottom:893.365350px;}
.ya8{bottom:893.770350px;}
.y25b{bottom:893.772600px;}
.y145{bottom:893.785350px;}
.y170{bottom:893.920350px;}
.y2a9{bottom:899.263500px;}
.y2ea{bottom:905.263500px;}
.y1b7{bottom:911.230350px;}
.y3e{bottom:911.293050px;}
.ya7{bottom:911.770350px;}
.y25a{bottom:911.772600px;}
.y144{bottom:911.785350px;}
.y16f{bottom:911.920350px;}
.y2a8{bottom:914.263500px;}
.y2e9{bottom:920.263500px;}
.y92{bottom:922.768846px;}
.y2a7{bottom:929.263500px;}
.y3d{bottom:929.293050px;}
.ya6{bottom:929.770350px;}
.y259{bottom:929.772600px;}
.ye1{bottom:929.785350px;}
.yda{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y2e8{bottom:935.263500px;}
.y2a6{bottom:944.263500px;}
.y3c{bottom:947.293050px;}
.ya5{bottom:947.770350px;}
.y258{bottom:947.772600px;}
.ye0{bottom:947.785350px;}
.y9e{bottom:950.163245px;}
.y2e7{bottom:950.263500px;}
.y2a5{bottom:959.263500px;}
.y9d{bottom:962.930345px;}
.y2e6{bottom:965.263500px;}
.y3b{bottom:965.293050px;}
.yd9{bottom:965.515350px;}
.ya4{bottom:965.770350px;}
.y257{bottom:965.772600px;}
.ydf{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y2a4{bottom:974.263500px;}
.y9c{bottom:975.697445px;}
.y2e5{bottom:980.263500px;}
.y3a{bottom:983.293050px;}
.ya3{bottom:983.770350px;}
.y256{bottom:983.772600px;}
.yde{bottom:983.785350px;}
.y2a3{bottom:989.263500px;}
.y2e4{bottom:995.263500px;}
.y96{bottom:998.750100px;}
.y39{bottom:1001.293050px;}
.ya2{bottom:1001.770350px;}
.y255{bottom:1001.772600px;}
.ydd{bottom:1001.785350px;}
.y2a2{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y2e3{bottom:1010.263500px;}
.y93{bottom:1019.033345px;}
.y38{bottom:1019.293050px;}
.ya1{bottom:1019.770350px;}
.y28a{bottom:1019.772600px;}
.ydc{bottom:1019.785350px;}
.y2e2{bottom:1025.263500px;}
.y8f{bottom:1035.613650px;}
.y215{bottom:1037.365350px;}
.y254{bottom:1037.367600px;}
.ya0{bottom:1037.770350px;}
.y289{bottom:1037.772600px;}
.ydb{bottom:1037.785350px;}
.y2e1{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y6a{bottom:1132.418700px;}
.y29b{bottom:1132.421700px;}
.y2e0{bottom:1132.423500px;}
.yd8{bottom:1132.433850px;}
.y36{bottom:1136.092500px;}
.y35{bottom:1150.492500px;}
.h9{height:16.553158px;}
.h7{height:19.125417px;}
.h14{height:25.155214px;}
.h16{height:27.755098px;}
.ha{height:28.393066px;}
.h19{height:29.324531px;}
.h2{height:30.577148px;}
.h1f{height:30.757992px;}
.h27{height:32.400117px;}
.hd{height:32.761230px;}
.h8{height:32.805176px;}
.h12{height:33.351562px;}
.h13{height:33.375000px;}
.h1e{height:33.833880px;}
.h2f{height:34.278032px;}
.hf{height:34.945312px;}
.he{height:34.992188px;}
.h36{height:35.821506px;}
.h22{height:36.909768px;}
.h21{height:36.958655px;}
.h32{height:37.394177px;}
.h30{height:37.443705px;}
.h1b{height:37.652971px;}
.h1c{height:37.702842px;}
.h1a{height:38.600529px;}
.h2e{height:40.005562px;}
.h2d{height:40.058550px;}
.h10{height:41.689453px;}
.h11{height:41.718750px;}
.h28{height:42.468750px;}
.h2b{height:42.525000px;}
.h33{height:42.985896px;}
.h35{height:43.042830px;}
.h23{height:43.200451px;}
.h26{height:43.257670px;}
.hc{height:43.681641px;}
.hb{height:43.740234px;}
.h24{height:44.313707px;}
.h2a{height:49.612500px;}
.h17{height:50.270752px;}
.h18{height:51.467674px;}
.h3{height:56.786133px;}
.h15{height:56.953003px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h1d{height:66.327562px;}
.h4{height:92.168262px;}
.h31{height:403.612500px;}
.h25{height:584.322000px;}
.h2c{height:601.254000px;}
.h34{height:617.599500px;}
.h29{height:619.233000px;}
.h20{height:724.651500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w5{width:338.032500px;}
.w4{width:505.504500px;}
.w2{width:525.544500px;}
.w7{width:623.631000px;}
.w3{width:646.725000px;}
.w6{width:718.582500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x52{left:10.750650px;}
.x60{left:12.582750px;}
.x4d{left:36.043500px;}
.xad{left:38.341350px;}
.x7{left:76.535400px;}
.x3d{left:78.661350px;}
.x8{left:85.039350px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.xb9{left:102.047400px;}
.x71{left:103.067700px;}
.x6d{left:105.116579px;}
.x4{left:106.299300px;}
.xa{left:110.551200px;}
.x5f{left:112.464000px;}
.x3e{left:122.725350px;}
.xa8{left:123.902250px;}
.x3{left:125.428050px;}
.xa6{left:127.124100px;}
.x45{left:131.815350px;}
.x5a{left:135.116400px;}
.x70{left:139.682370px;}
.x2e{left:141.339854px;}
.x5b{left:142.707600px;}
.x3b{left:144.725400px;}
.xae{left:146.528550px;}
.x8a{left:148.490044px;}
.x28{left:150.995906px;}
.xaf{left:153.816225px;}
.x29{left:157.549722px;}
.x3f{left:160.513350px;}
.x40{left:163.081350px;}
.xab{left:164.786475px;}
.xa9{left:167.481900px;}
.xac{left:169.640067px;}
.x2d{left:171.368250px;}
.x63{left:176.293500px;}
.x74{left:177.558541px;}
.x61{left:179.130540px;}
.x73{left:182.405228px;}
.xb2{left:183.761700px;}
.xa7{left:184.886850px;}
.x9{left:190.553550px;}
.x32{left:193.149600px;}
.x4c{left:194.314500px;}
.xb3{left:196.136172px;}
.x34{left:197.259354px;}
.x6f{left:199.340250px;}
.x2b{left:202.242300px;}
.x68{left:204.334500px;}
.x4a{left:212.962050px;}
.xb5{left:214.345800px;}
.x76{left:215.623048px;}
.x4b{left:218.760685px;}
.x75{left:220.469734px;}
.x67{left:226.805250px;}
.x27{left:229.267200px;}
.x4f{left:230.359230px;}
.x77{left:234.719226px;}
.x50{left:236.408400px;}
.x72{left:240.184350px;}
.x66{left:242.818050px;}
.x65{left:244.003650px;}
.x51{left:250.446103px;}
.x79{left:253.815404px;}
.x78{left:258.662091px;}
.x47{left:264.218916px;}
.x22{left:267.354600px;}
.x6c{left:269.914050px;}
.x7b{left:272.830223px;}
.x7a{left:277.676910px;}
.x64{left:283.064700px;}
.x7d{left:291.961270px;}
.x46{left:293.163150px;}
.x7c{left:296.807956px;}
.x24{left:299.372569px;}
.xe{left:300.907050px;}
.x5c{left:302.963250px;}
.x6e{left:304.046442px;}
.x1e{left:305.240400px;}
.x7f{left:311.022580px;}
.x7e{left:315.869266px;}
.x2a{left:327.884100px;}
.x1d{left:329.460600px;}
.x81{left:331.025332px;}
.x80{left:335.872019px;}
.x1f{left:344.487900px;}
.x20{left:345.900801px;}
.x82{left:349.168445px;}
.x25{left:350.441269px;}
.x26{left:356.177986px;}
.x1b{left:357.596322px;}
.x23{left:363.361650px;}
.x41{left:366.577350px;}
.x84{left:368.264623px;}
.x83{left:369.880186px;}
.x13{left:373.527653px;}
.x21{left:375.229650px;}
.x6b{left:378.841500px;}
.x49{left:380.122047px;}
.x14{left:382.806716px;}
.x86{left:387.314311px;}
.x85{left:388.929873px;}
.x12{left:391.650822px;}
.xf{left:400.597271px;}
.x88{left:406.329130px;}
.x87{left:407.944692px;}
.x54{left:413.671950px;}
.x37{left:418.308924px;}
.x10{left:423.829041px;}
.x89{left:425.425308px;}
.x38{left:426.799045px;}
.x15{left:437.739106px;}
.x2f{left:439.588950px;}
.x39{left:444.762450px;}
.x53{left:450.366000px;}
.x6{left:455.041500px;}
.xb{left:457.096200px;}
.x35{left:462.929938px;}
.x69{left:464.616300px;}
.x5d{left:466.919433px;}
.x36{left:477.829144px;}
.xb8{left:482.598600px;}
.x62{left:487.224027px;}
.x3c{left:491.105400px;}
.x42{left:496.993350px;}
.x8c{left:503.280563px;}
.x8b{left:508.127250px;}
.x58{left:512.350350px;}
.x56{left:514.793100px;}
.x11{left:516.739065px;}
.x6a{left:521.813100px;}
.x8d{left:527.223428px;}
.x5e{left:535.911984px;}
.x8f{left:541.414806px;}
.x8e{left:546.261493px;}
.x91{left:560.429625px;}
.x90{left:565.276312px;}
.x1c{left:566.946750px;}
.x1a{left:568.959376px;}
.xb7{left:574.850400px;}
.x48{left:576.857947px;}
.x59{left:579.425400px;}
.x30{left:581.469732px;}
.x19{left:584.882179px;}
.x57{left:591.650400px;}
.x93{left:598.621981px;}
.x92{left:603.468668px;}
.x55{left:607.986450px;}
.xb4{left:611.110800px;}
.x95{left:617.625178px;}
.x43{left:618.769350px;}
.x16{left:620.693561px;}
.x94{left:622.471864px;}
.x17{left:631.840376px;}
.x97{left:636.756224px;}
.x96{left:641.602911px;}
.x33{left:651.346800px;}
.xb6{left:654.599272px;}
.x99{left:655.817534px;}
.x98{left:660.664221px;}
.xd{left:663.492300px;}
.x2c{left:665.095350px;}
.x9b{left:675.820287px;}
.x9a{left:680.666974px;}
.x4e{left:690.286950px;}
.x2{left:693.365400px;}
.x9c{left:695.578962px;}
.x18{left:702.942897px;}
.xb1{left:708.903854px;}
.xb0{left:710.113608px;}
.x9e{left:713.059578px;}
.x9d{left:714.675140px;}
.x44{left:722.701350px;}
.xc{left:728.391600px;}
.xa0{left:732.097643px;}
.x9f{left:733.713205px;}
.x31{left:739.462595px;}
.xaa{left:743.868150px;}
.x3a{left:749.651400px;}
.xa2{left:751.112461px;}
.xa1{left:752.728024px;}
.xa4{left:770.208640px;}
.xa3{left:771.824202px;}
.xa5{left:790.362488px;}
@media print{
.v8{vertical-align:-30.213081pt;}
.v6{vertical-align:-22.229333pt;}
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-16.721600pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:0.937478pt;}
.v1{vertical-align:27.005867pt;}
.v4{vertical-align:28.264702pt;}
.v5{vertical-align:29.312000pt;}
.ls8d{letter-spacing:-2.346667pt;}
.ls8{letter-spacing:-1.795640pt;}
.ls9{letter-spacing:-1.725680pt;}
.ls3a{letter-spacing:-1.578667pt;}
.ls3b{letter-spacing:-0.768000pt;}
.ls7{letter-spacing:-0.693333pt;}
.ls4b{letter-spacing:-0.426667pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.266667pt;}
.ls61{letter-spacing:-0.213333pt;}
.ls8b{letter-spacing:-0.170667pt;}
.ls39{letter-spacing:-0.160000pt;}
.ls8c{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.106667pt;}
.ls59{letter-spacing:-0.085333pt;}
.ls2d{letter-spacing:-0.053333pt;}
.ls5c{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.002869pt;}
.ls4{letter-spacing:0.003680pt;}
.ls2{letter-spacing:0.004512pt;}
.ls0{letter-spacing:0.005045pt;}
.ls1{letter-spacing:0.009067pt;}
.ls76{letter-spacing:0.042667pt;}
.ls13{letter-spacing:0.053333pt;}
.ls6c{letter-spacing:0.085333pt;}
.ls36{letter-spacing:0.106667pt;}
.ls82{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls79{letter-spacing:0.170667pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls7d{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.266667pt;}
.ls5b{letter-spacing:0.298667pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls90{letter-spacing:0.341333pt;}
.ls14{letter-spacing:0.373333pt;}
.ls7b{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.426667pt;}
.ls66{letter-spacing:0.469333pt;}
.ls21{letter-spacing:0.480000pt;}
.ls7f{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.533333pt;}
.ls73{letter-spacing:0.554667pt;}
.ls26{letter-spacing:0.586667pt;}
.ls6b{letter-spacing:0.597333pt;}
.ls25{letter-spacing:0.640000pt;}
.ls78{letter-spacing:0.682667pt;}
.ls46{letter-spacing:0.693333pt;}
.ls69{letter-spacing:0.725333pt;}
.ls18{letter-spacing:0.746667pt;}
.ls70{letter-spacing:0.768000pt;}
.ls29{letter-spacing:0.800000pt;}
.ls83{letter-spacing:0.810667pt;}
.ls17{letter-spacing:0.853333pt;}
.ls72{letter-spacing:0.896000pt;}
.ls10{letter-spacing:0.906667pt;}
.ls7a{letter-spacing:0.938667pt;}
.ls20{letter-spacing:0.960000pt;}
.ls57{letter-spacing:0.981333pt;}
.ls2b{letter-spacing:1.013333pt;}
.ls74{letter-spacing:1.024000pt;}
.ls12{letter-spacing:1.066667pt;}
.ls7c{letter-spacing:1.109333pt;}
.ls1f{letter-spacing:1.120000pt;}
.ls6e{letter-spacing:1.152000pt;}
.lsf{letter-spacing:1.173333pt;}
.ls86{letter-spacing:1.194667pt;}
.ls2e{letter-spacing:1.226667pt;}
.ls6d{letter-spacing:1.237333pt;}
.ls34{letter-spacing:1.280000pt;}
.ls80{letter-spacing:1.322667pt;}
.lsb{letter-spacing:1.333333pt;}
.ls3d{letter-spacing:1.386667pt;}
.ls88{letter-spacing:1.408000pt;}
.ls3c{letter-spacing:1.440000pt;}
.ls81{letter-spacing:1.450667pt;}
.ls2a{letter-spacing:1.493333pt;}
.ls84{letter-spacing:1.536000pt;}
.lsc{letter-spacing:1.546667pt;}
.ls1a{letter-spacing:1.600000pt;}
.ls45{letter-spacing:1.653333pt;}
.ls71{letter-spacing:1.664000pt;}
.ls15{letter-spacing:1.706667pt;}
.ls85{letter-spacing:1.749333pt;}
.ls27{letter-spacing:1.760000pt;}
.ls31{letter-spacing:1.813333pt;}
.ls6f{letter-spacing:1.834667pt;}
.ls19{letter-spacing:1.866667pt;}
.ls44{letter-spacing:1.920000pt;}
.ls87{letter-spacing:1.962667pt;}
.ls11{letter-spacing:1.973333pt;}
.lsd{letter-spacing:2.026667pt;}
.ls8e{letter-spacing:2.048000pt;}
.lsa{letter-spacing:2.080000pt;}
.ls42{letter-spacing:2.133333pt;}
.ls7e{letter-spacing:2.176000pt;}
.ls49{letter-spacing:2.186667pt;}
.ls67{letter-spacing:2.218667pt;}
.ls24{letter-spacing:2.240000pt;}
.ls8f{letter-spacing:2.261333pt;}
.ls4d{letter-spacing:2.293333pt;}
.ls68{letter-spacing:2.304000pt;}
.ls43{letter-spacing:2.346667pt;}
.ls91{letter-spacing:2.400000pt;}
.ls6a{letter-spacing:2.432000pt;}
.ls47{letter-spacing:2.453333pt;}
.ls48{letter-spacing:2.506667pt;}
.ls3f{letter-spacing:2.560000pt;}
.ls33{letter-spacing:2.666667pt;}
.ls89{letter-spacing:2.688000pt;}
.ls4f{letter-spacing:2.720000pt;}
.ls8a{letter-spacing:2.730667pt;}
.ls32{letter-spacing:2.773333pt;}
.ls28{letter-spacing:2.880000pt;}
.ls54{letter-spacing:2.933333pt;}
.ls41{letter-spacing:2.986667pt;}
.ls65{letter-spacing:3.029333pt;}
.ls5a{letter-spacing:3.040000pt;}
.ls23{letter-spacing:3.093333pt;}
.ls55{letter-spacing:3.146667pt;}
.ls56{letter-spacing:3.200000pt;}
.ls1d{letter-spacing:3.306667pt;}
.ls4a{letter-spacing:3.360000pt;}
.ls4c{letter-spacing:3.413333pt;}
.ls51{letter-spacing:3.466667pt;}
.ls64{letter-spacing:3.520000pt;}
.ls40{letter-spacing:3.573333pt;}
.ls5d{letter-spacing:3.626667pt;}
.ls5e{letter-spacing:3.680000pt;}
.ls5f{letter-spacing:3.733333pt;}
.ls4e{letter-spacing:3.786667pt;}
.ls58{letter-spacing:3.893333pt;}
.ls60{letter-spacing:3.946667pt;}
.ls3e{letter-spacing:4.000000pt;}
.ls75{letter-spacing:4.096000pt;}
.ls1e{letter-spacing:4.106667pt;}
.ls77{letter-spacing:4.224000pt;}
.ls62{letter-spacing:4.586667pt;}
.ls63{letter-spacing:5.066667pt;}
.ls50{letter-spacing:5.813333pt;}
.ls35{letter-spacing:6.293333pt;}
.ls30{letter-spacing:7.733333pt;}
.ls3{letter-spacing:52.918112pt;}
.ls53{letter-spacing:77.498214pt;}
.ls52{letter-spacing:78.071118pt;}
.ws35{word-spacing:-16.640000pt;}
.ws10{word-spacing:-16.426667pt;}
.ws11{word-spacing:-15.573333pt;}
.ws3{word-spacing:-15.568000pt;}
.wsac{word-spacing:-15.306667pt;}
.ws36{word-spacing:-15.200000pt;}
.ws5c{word-spacing:-14.826667pt;}
.ws98{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.666667pt;}
.ws9e{word-spacing:-14.560000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws34{word-spacing:-13.386667pt;}
.wse{word-spacing:-13.333333pt;}
.ws13{word-spacing:-13.280000pt;}
.wsb0{word-spacing:-13.098667pt;}
.wsad{word-spacing:-12.970667pt;}
.wscd{word-spacing:-12.629333pt;}
.wse4{word-spacing:-12.586667pt;}
.wsb4{word-spacing:-12.501333pt;}
.wscb{word-spacing:-12.416000pt;}
.wsb5{word-spacing:-12.330667pt;}
.ws9{word-spacing:-11.861333pt;}
.wsb3{word-spacing:-11.818667pt;}
.wsb6{word-spacing:-11.690667pt;}
.wscc{word-spacing:-11.605333pt;}
.ws53{word-spacing:-11.339583pt;}
.wsb7{word-spacing:-11.264000pt;}
.ws8{word-spacing:-11.120000pt;}
.wsb2{word-spacing:-11.093333pt;}
.wsaf{word-spacing:-10.965333pt;}
.wsca{word-spacing:-10.837333pt;}
.wsb1{word-spacing:-10.752000pt;}
.wsae{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.076144pt;}
.wsc9{word-spacing:-8.320000pt;}
.ws6{word-spacing:-6.482960pt;}
.ws7{word-spacing:-4.757280pt;}
.ws42{word-spacing:-3.306667pt;}
.ws25{word-spacing:-3.093333pt;}
.wse3{word-spacing:-2.730667pt;}
.wsb{word-spacing:-2.565333pt;}
.wsbe{word-spacing:-2.432000pt;}
.wsba{word-spacing:-2.346667pt;}
.ws58{word-spacing:-2.240000pt;}
.ws5d{word-spacing:-2.186667pt;}
.wsd{word-spacing:-2.072000pt;}
.ws41{word-spacing:-1.973333pt;}
.wsc3{word-spacing:-1.834667pt;}
.ws2c{word-spacing:-1.760000pt;}
.wsa0{word-spacing:-1.653333pt;}
.ws2b{word-spacing:-1.600000pt;}
.wsaa{word-spacing:-1.440000pt;}
.ws9b{word-spacing:-1.386667pt;}
.wsda{word-spacing:-1.322667pt;}
.wsa3{word-spacing:-1.280000pt;}
.wsa9{word-spacing:-1.226667pt;}
.wsab{word-spacing:-1.173333pt;}
.wse2{word-spacing:-1.152000pt;}
.wsce{word-spacing:-1.066667pt;}
.wsc7{word-spacing:-1.024000pt;}
.wsa5{word-spacing:-1.013333pt;}
.wsc{word-spacing:-1.008000pt;}
.ws4c{word-spacing:-0.960000pt;}
.wsde{word-spacing:-0.938667pt;}
.ws1b{word-spacing:-0.853333pt;}
.wscf{word-spacing:-0.725333pt;}
.wsa4{word-spacing:-0.640000pt;}
.wsc6{word-spacing:-0.554667pt;}
.wsa8{word-spacing:-0.533333pt;}
.ws3f{word-spacing:-0.426667pt;}
.wsd6{word-spacing:-0.384000pt;}
.ws91{word-spacing:-0.373333pt;}
.ws3e{word-spacing:-0.320000pt;}
.wsbc{word-spacing:-0.298667pt;}
.ws24{word-spacing:-0.266667pt;}
.wsbd{word-spacing:-0.256000pt;}
.ws43{word-spacing:-0.213333pt;}
.wsdb{word-spacing:-0.170667pt;}
.ws1a{word-spacing:-0.160000pt;}
.ws85{word-spacing:-0.106667pt;}
.wsd8{word-spacing:-0.085333pt;}
.ws1f{word-spacing:-0.053333pt;}
.wsc8{word-spacing:-0.042667pt;}
.ws7c{word-spacing:-0.039061pt;}
.ws2f{word-spacing:-0.030327pt;}
.wsa{word-spacing:0.000000pt;}
.ws9c{word-spacing:0.042667pt;}
.ws22{word-spacing:0.053333pt;}
.wsc4{word-spacing:0.085333pt;}
.ws9a{word-spacing:0.106667pt;}
.wsd1{word-spacing:0.128000pt;}
.ws67{word-spacing:0.160000pt;}
.wsd0{word-spacing:0.170667pt;}
.ws90{word-spacing:0.213333pt;}
.wsa7{word-spacing:0.266667pt;}
.wsa2{word-spacing:0.320000pt;}
.ws19{word-spacing:0.373333pt;}
.wsc2{word-spacing:0.384000pt;}
.ws63{word-spacing:0.426667pt;}
.ws33{word-spacing:0.469333pt;}
.wsa1{word-spacing:0.480000pt;}
.ws40{word-spacing:0.533333pt;}
.wsd5{word-spacing:0.597333pt;}
.ws69{word-spacing:0.640000pt;}
.ws8c{word-spacing:0.682667pt;}
.ws94{word-spacing:0.746667pt;}
.ws50{word-spacing:0.768000pt;}
.ws71{word-spacing:0.853333pt;}
.ws20{word-spacing:0.906667pt;}
.wse5{word-spacing:0.938667pt;}
.ws48{word-spacing:0.960000pt;}
.wsc1{word-spacing:0.981333pt;}
.ws46{word-spacing:1.066667pt;}
.ws45{word-spacing:1.120000pt;}
.wse1{word-spacing:1.152000pt;}
.ws9d{word-spacing:1.194667pt;}
.ws29{word-spacing:1.226667pt;}
.wse6{word-spacing:1.237333pt;}
.ws4a{word-spacing:1.280000pt;}
.ws47{word-spacing:1.333333pt;}
.ws59{word-spacing:1.365333pt;}
.ws5b{word-spacing:1.408000pt;}
.ws1c{word-spacing:1.440000pt;}
.ws80{word-spacing:1.450667pt;}
.wsc0{word-spacing:1.536000pt;}
.ws17{word-spacing:1.546667pt;}
.ws4f{word-spacing:1.578667pt;}
.ws16{word-spacing:1.600000pt;}
.ws2a{word-spacing:1.706667pt;}
.ws5f{word-spacing:1.760000pt;}
.ws68{word-spacing:1.813333pt;}
.ws64{word-spacing:1.866667pt;}
.ws95{word-spacing:1.920000pt;}
.ws93{word-spacing:1.973333pt;}
.wsd2{word-spacing:2.005333pt;}
.ws9f{word-spacing:2.026667pt;}
.wsdf{word-spacing:2.048000pt;}
.ws44{word-spacing:2.080000pt;}
.ws49{word-spacing:2.133333pt;}
.ws88{word-spacing:2.176000pt;}
.ws18{word-spacing:2.240000pt;}
.ws5a{word-spacing:2.346667pt;}
.ws97{word-spacing:2.389333pt;}
.ws66{word-spacing:2.400000pt;}
.ws4b{word-spacing:2.453333pt;}
.wsdc{word-spacing:2.474667pt;}
.ws6b{word-spacing:2.506667pt;}
.wsbf{word-spacing:2.517333pt;}
.ws5e{word-spacing:2.560000pt;}
.ws7f{word-spacing:2.613333pt;}
.ws21{word-spacing:2.666667pt;}
.wsd7{word-spacing:2.688000pt;}
.wsa6{word-spacing:2.720000pt;}
.ws96{word-spacing:2.730667pt;}
.ws6a{word-spacing:2.773333pt;}
.ws60{word-spacing:2.826667pt;}
.wsc5{word-spacing:2.858667pt;}
.ws65{word-spacing:2.880000pt;}
.wsd9{word-spacing:2.901333pt;}
.ws4d{word-spacing:2.933333pt;}
.ws57{word-spacing:3.040000pt;}
.ws61{word-spacing:3.093333pt;}
.wsdd{word-spacing:3.114667pt;}
.wsd4{word-spacing:3.200000pt;}
.ws26{word-spacing:3.253333pt;}
.wse0{word-spacing:3.285333pt;}
.ws62{word-spacing:3.306667pt;}
.wsd3{word-spacing:3.370667pt;}
.ws92{word-spacing:3.413333pt;}
.ws70{word-spacing:3.466667pt;}
.ws8d{word-spacing:3.498667pt;}
.ws27{word-spacing:3.520000pt;}
.wsbb{word-spacing:3.541333pt;}
.ws7e{word-spacing:3.573333pt;}
.ws2d{word-spacing:3.733333pt;}
.wsb8{word-spacing:3.786667pt;}
.ws86{word-spacing:3.840000pt;}
.ws1e{word-spacing:3.893333pt;}
.ws8b{word-spacing:3.946667pt;}
.ws3d{word-spacing:4.053333pt;}
.ws87{word-spacing:4.106667pt;}
.ws28{word-spacing:4.160000pt;}
.ws23{word-spacing:4.213333pt;}
.ws6d{word-spacing:4.320000pt;}
.ws14{word-spacing:4.373333pt;}
.ws15{word-spacing:4.426667pt;}
.ws4e{word-spacing:4.533333pt;}
.wsb9{word-spacing:4.853333pt;}
.ws6e{word-spacing:4.906667pt;}
.ws1d{word-spacing:5.120000pt;}
.ws6f{word-spacing:5.760000pt;}
.ws6c{word-spacing:6.026667pt;}
.ws55{word-spacing:23.101837pt;}
.ws37{word-spacing:43.776000pt;}
.ws2{word-spacing:43.836757pt;}
.ws0{word-spacing:43.841803pt;}
.ws4{word-spacing:43.847547pt;}
.ws39{word-spacing:46.080000pt;}
.ws5{word-spacing:47.432333pt;}
.ws38{word-spacing:49.749333pt;}
.ws3c{word-spacing:62.634667pt;}
.ws77{word-spacing:64.738092pt;}
.ws73{word-spacing:65.258913pt;}
.ws3a{word-spacing:76.416000pt;}
.ws3b{word-spacing:77.226667pt;}
.ws2e{word-spacing:85.643260pt;}
.ws76{word-spacing:93.799922pt;}
.ws72{word-spacing:94.372826pt;}
.ws56{word-spacing:105.089254pt;}
.ws82{word-spacing:112.230400pt;}
.ws81{word-spacing:116.480000pt;}
.ws31{word-spacing:153.493598pt;}
.ws7d{word-spacing:191.595840pt;}
.ws78{word-spacing:193.172633pt;}
.ws74{word-spacing:194.266357pt;}
.ws7b{word-spacing:214.563904pt;}
.ws30{word-spacing:264.498037pt;}
.ws54{word-spacing:322.362316pt;}
.ws32{word-spacing:441.548735pt;}
.ws79{word-spacing:442.958544pt;}
.ws75{word-spacing:445.145994pt;}
.ws7a{word-spacing:448.531332pt;}
.ws8a{word-spacing:462.240154pt;}
.ws89{word-spacing:464.892826pt;}
.ws99{word-spacing:483.357474pt;}
.ws52{word-spacing:525.903751pt;}
.ws51{word-spacing:714.108196pt;}
.ws84{word-spacing:775.116800pt;}
.ws83{word-spacing:777.932800pt;}
.ws8f{word-spacing:1122.049217pt;}
.ws8e{word-spacing:1124.528734pt;}
._c{margin-left:-2576.085333pt;}
._11{margin-left:-2554.922667pt;}
._3e{margin-left:-1621.747200pt;}
._3a{margin-left:-879.309675pt;}
._3b{margin-left:-543.304085pt;}
._26{margin-left:-486.296790pt;}
._28{margin-left:-449.912229pt;}
._27{margin-left:-427.681752pt;}
._43{margin-left:-292.128882pt;}
._25{margin-left:-267.214417pt;}
._d{margin-left:-231.470507pt;}
._34{margin-left:-180.550310pt;}
._2d{margin-left:-95.855936pt;}
._2{margin-left:-8.327467pt;}
._3{margin-left:-6.772597pt;}
._7{margin-left:-5.832325pt;}
._1{margin-left:-4.778667pt;}
._6{margin-left:-3.177808pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.994341pt;}
._4{width:1.615301pt;}
._9{width:3.285333pt;}
._8{width:4.320000pt;}
._a{width:5.280000pt;}
._b{width:6.853333pt;}
._12{width:7.840000pt;}
._1a{width:29.909333pt;}
._19{width:33.066667pt;}
._2b{width:38.342374pt;}
._2a{width:40.270618pt;}
._1b{width:42.410667pt;}
._18{width:46.293333pt;}
._1e{width:47.829333pt;}
._21{width:51.242667pt;}
._13{width:57.941333pt;}
._22{width:62.933333pt;}
._23{width:64.426667pt;}
._1f{width:78.165333pt;}
._1c{width:79.450667pt;}
._17{width:83.200000pt;}
._1d{width:87.082667pt;}
._31{width:112.208922pt;}
._2e{width:116.732877pt;}
._30{width:118.846528pt;}
._3c{width:119.899072pt;}
._3d{width:121.281472pt;}
._32{width:127.709030pt;}
._2c{width:129.859763pt;}
._14{width:133.333333pt;}
._24{width:139.989333pt;}
._15{width:150.442667pt;}
._20{width:151.381333pt;}
._10{width:171.953987pt;}
._f{width:191.080161pt;}
._42{width:227.142254pt;}
._35{width:283.600077pt;}
._2f{width:288.754419pt;}
._33{width:295.577434pt;}
._e{width:340.744640pt;}
._41{width:361.986915pt;}
._3f{width:432.240845pt;}
._37{width:450.718782pt;}
._44{width:468.484139pt;}
._16{width:513.962667pt;}
._45{width:552.541802pt;}
._38{width:814.772894pt;}
._40{width:938.745262pt;}
._39{width:972.373429pt;}
._29{width:975.326502pt;}
._36{width:1030.386419pt;}
.fs7{font-size:20.210667pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:30.326933pt;}
.fs4{font-size:32.648000pt;}
.fsc{font-size:33.461333pt;}
.fs8{font-size:34.666667pt;}
.fse{font-size:35.306667pt;}
.fs11{font-size:37.081600pt;}
.fs0{font-size:37.333333pt;}
.fs14{font-size:39.061333pt;}
.fs6{font-size:40.000000pt;}
.fs10{font-size:40.789867pt;}
.fs18{font-size:41.325333pt;}
.fsa{font-size:42.666667pt;}
.fs1b{font-size:43.186133pt;}
.fs12{font-size:44.498133pt;}
.fs19{font-size:45.082133pt;}
.fsf{font-size:45.394133pt;}
.fs17{font-size:48.230400pt;}
.fs15{font-size:51.200000pt;}
.fs1a{font-size:51.823467pt;}
.fs13{font-size:52.082133pt;}
.fs9{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs16{font-size:59.733333pt;}
.fsd{font-size:60.525867pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1d4{bottom:33.917867pt;}
.y1{bottom:41.124400pt;}
.y37{bottom:42.468667pt;}
.y1ed{bottom:45.371467pt;}
.y234{bottom:59.366800pt;}
.y219{bottom:74.134667pt;}
.y29a{bottom:74.344533pt;}
.y1f9{bottom:74.462533pt;}
.y288{bottom:74.464533pt;}
.y16e{bottom:74.475867pt;}
.y143{bottom:74.729200pt;}
.y1b6{bottom:74.742533pt;}
.y6c{bottom:75.289333pt;}
.ye6{bottom:75.352533pt;}
.y1fd{bottom:75.488933pt;}
.y1bc{bottom:75.656800pt;}
.y67{bottom:76.698800pt;}
.y34{bottom:78.518933pt;}
.y2df{bottom:79.345333pt;}
.yd7{bottom:83.077200pt;}
.y320{bottom:84.678667pt;}
.y218{bottom:88.129333pt;}
.y6b{bottom:89.284000pt;}
.ye5{bottom:89.347200pt;}
.y1fc{bottom:89.483600pt;}
.y1bb{bottom:89.651467pt;}
.y299{bottom:90.344533pt;}
.y1f8{bottom:90.462533pt;}
.y287{bottom:90.464533pt;}
.y16d{bottom:90.475867pt;}
.y142{bottom:90.729200pt;}
.y1b5{bottom:90.742533pt;}
.y33{bottom:91.848933pt;}
.y2de{bottom:92.678667pt;}
.y66{bottom:92.698800pt;}
.y24b{bottom:93.424533pt;}
.yd6{bottom:97.519867pt;}
.y31f{bottom:98.012000pt;}
.y217{bottom:102.124000pt;}
.ye4{bottom:103.341867pt;}
.y1fb{bottom:103.478267pt;}
.y1ba{bottom:103.646133pt;}
.y32{bottom:105.182267pt;}
.y2dd{bottom:106.012000pt;}
.y298{bottom:106.344533pt;}
.y1f7{bottom:106.462533pt;}
.y286{bottom:106.464533pt;}
.y16c{bottom:106.475867pt;}
.y18c{bottom:106.729200pt;}
.y1b4{bottom:106.742533pt;}
.y65{bottom:108.698800pt;}
.y31e{bottom:111.345333pt;}
.yd5{bottom:111.962533pt;}
.y95{bottom:113.916377pt;}
.y216{bottom:116.118667pt;}
.ye3{bottom:117.336533pt;}
.y1fa{bottom:117.472933pt;}
.y2dc{bottom:119.345333pt;}
.y297{bottom:122.344533pt;}
.y141{bottom:122.369200pt;}
.y1f6{bottom:122.462533pt;}
.y285{bottom:122.464533pt;}
.y16b{bottom:122.475867pt;}
.y18b{bottom:122.729200pt;}
.y1b3{bottom:122.742533pt;}
.y31d{bottom:124.678667pt;}
.y64{bottom:124.698800pt;}
.y1ce{bottom:124.750667pt;}
.y94{bottom:126.377067pt;}
.yd4{bottom:126.405200pt;}
.y1e1{bottom:129.319067pt;}
.y1d0{bottom:129.397467pt;}
.ye2{bottom:131.331200pt;}
.y2db{bottom:132.678667pt;}
.y23f{bottom:137.008000pt;}
.y1fe{bottom:137.489333pt;}
.y31c{bottom:138.012000pt;}
.y2a1{bottom:138.102533pt;}
.y296{bottom:138.344533pt;}
.y1f5{bottom:138.462533pt;}
.y284{bottom:138.464533pt;}
.y16a{bottom:138.475867pt;}
.y18a{bottom:138.729200pt;}
.y1b2{bottom:138.742533pt;}
.y232{bottom:140.320000pt;}
.y63{bottom:140.698800pt;}
.y214{bottom:141.798933pt;}
.y238{bottom:144.336009pt;}
.y2da{bottom:146.012000pt;}
.y1ea{bottom:146.995867pt;}
.y1d8{bottom:146.998267pt;}
.y1cd{bottom:147.566077pt;}
.y1cc{bottom:147.813467pt;}
.y24d{bottom:149.184490pt;}
.y31b{bottom:151.345333pt;}
.yd3{bottom:152.186533pt;}
.yf0{bottom:152.589333pt;}
.y295{bottom:154.344533pt;}
.y1f4{bottom:154.462533pt;}
.y283{bottom:154.464533pt;}
.y169{bottom:154.475867pt;}
.y140{bottom:154.595867pt;}
.y189{bottom:154.729200pt;}
.y1b1{bottom:154.742533pt;}
.y116{bottom:156.560533pt;}
.y62{bottom:156.698800pt;}
.y31{bottom:157.030400pt;}
.ycf{bottom:157.743867pt;}
.y20c{bottom:157.968628pt;}
.y20e{bottom:157.979947pt;}
.y210{bottom:157.980347pt;}
.y2d9{bottom:159.345333pt;}
.y21d{bottom:160.279971pt;}
.y22e{bottom:160.280371pt;}
.y21f{bottom:160.465935pt;}
.y230{bottom:160.466335pt;}
.y21b{bottom:160.476267pt;}
.y22c{bottom:160.476667pt;}
.y1c5{bottom:161.327467pt;}
.y1e9{bottom:161.447067pt;}
.y24c{bottom:163.008400pt;}
.y31a{bottom:164.678667pt;}
.yd2{bottom:165.071867pt;}
.yce{bottom:165.082533pt;}
.y87{bottom:166.407333pt;}
.y114{bottom:167.814110pt;}
.y2a0{bottom:170.102533pt;}
.y294{bottom:170.344533pt;}
.y1f3{bottom:170.462533pt;}
.y282{bottom:170.464533pt;}
.y168{bottom:170.475867pt;}
.y13f{bottom:170.595867pt;}
.y188{bottom:170.729200pt;}
.y1b0{bottom:170.742533pt;}
.yd0{bottom:172.410533pt;}
.y20b{bottom:172.437748pt;}
.y20d{bottom:172.449067pt;}
.y20f{bottom:172.449467pt;}
.y21c{bottom:172.677571pt;}
.y22d{bottom:172.677971pt;}
.y2d8{bottom:172.678667pt;}
.y61{bottom:172.698800pt;}
.y21e{bottom:172.863535pt;}
.y22f{bottom:172.863935pt;}
.y21a{bottom:172.873867pt;}
.y22b{bottom:172.874267pt;}
.y30{bottom:173.030400pt;}
.y241{bottom:175.800800pt;}
.yd1{bottom:177.967867pt;}
.y319{bottom:178.012000pt;}
.y113{bottom:179.865630pt;}
.y226{bottom:181.545067pt;}
.y2d7{bottom:186.012000pt;}
.y293{bottom:186.344533pt;}
.y1f2{bottom:186.462533pt;}
.y281{bottom:186.464533pt;}
.y167{bottom:186.475867pt;}
.y13e{bottom:186.595867pt;}
.y187{bottom:186.729200pt;}
.y1af{bottom:186.742533pt;}
.y10d{bottom:188.018419pt;}
.y60{bottom:188.698800pt;}
.yff{bottom:188.954730pt;}
.y2f{bottom:189.030400pt;}
.y206{bottom:189.125467pt;}
.y318{bottom:191.345333pt;}
.y1c6{bottom:197.133933pt;}
.y2d6{bottom:199.345333pt;}
.y235{bottom:199.686800pt;}
.y242{bottom:201.712533pt;}
.y292{bottom:202.344533pt;}
.y1f1{bottom:202.462533pt;}
.y280{bottom:202.464533pt;}
.y166{bottom:202.475867pt;}
.y13d{bottom:202.595867pt;}
.y186{bottom:202.729200pt;}
.y1ae{bottom:202.742533pt;}
.y7b{bottom:203.872000pt;}
.y317{bottom:204.678667pt;}
.y5f{bottom:204.698800pt;}
.y2e{bottom:205.030400pt;}
.ycd{bottom:206.769200pt;}
.y1e8{bottom:207.463067pt;}
.y2d5{bottom:212.678667pt;}
.y8d{bottom:212.813867pt;}
.y10e{bottom:213.975539pt;}
.y100{bottom:214.911850pt;}
.y227{bottom:217.715065pt;}
.y316{bottom:218.012000pt;}
.y291{bottom:218.344533pt;}
.y1f0{bottom:218.462533pt;}
.y27f{bottom:218.464533pt;}
.y165{bottom:218.475867pt;}
.y13c{bottom:218.595867pt;}
.y185{bottom:218.729200pt;}
.y1ad{bottom:218.742533pt;}
.y5e{bottom:220.698800pt;}
.y2d{bottom:221.030400pt;}
.ycc{bottom:224.102533pt;}
.y2d4{bottom:226.012000pt;}
.y7f{bottom:227.167378pt;}
.y80{bottom:227.172533pt;}
.y243{bottom:227.624267pt;}
.y315{bottom:231.345333pt;}
.y1c7{bottom:232.940400pt;}
.y88{bottom:233.288416pt;}
.y29f{bottom:234.102533pt;}
.y290{bottom:234.344533pt;}
.y1ef{bottom:234.462533pt;}
.y27e{bottom:234.464533pt;}
.y164{bottom:234.475867pt;}
.y13b{bottom:234.595867pt;}
.y184{bottom:234.729200pt;}
.y1ac{bottom:234.742533pt;}
.y5d{bottom:236.698800pt;}
.y2c{bottom:237.030400pt;}
.y2d3{bottom:239.345333pt;}
.y10f{bottom:239.932659pt;}
.y101{bottom:240.868970pt;}
.y7e{bottom:241.042933pt;}
.y207{bottom:243.071169pt;}
.y314{bottom:244.678667pt;}
.y28f{bottom:250.344533pt;}
.y1ee{bottom:250.462533pt;}
.y27d{bottom:250.464533pt;}
.y13a{bottom:250.595867pt;}
.y183{bottom:250.729200pt;}
.y2d2{bottom:252.678667pt;}
.y5c{bottom:252.698800pt;}
.y2b{bottom:253.030400pt;}
.y1e7{bottom:253.479067pt;}
.y244{bottom:253.536000pt;}
.y228{bottom:253.885063pt;}
.y313{bottom:258.012000pt;}
.y2d1{bottom:266.012000pt;}
.y163{bottom:266.115867pt;}
.y28e{bottom:266.344533pt;}
.y1ab{bottom:266.382533pt;}
.yc5{bottom:266.462533pt;}
.y27c{bottom:266.464533pt;}
.y139{bottom:266.595867pt;}
.y182{bottom:266.729200pt;}
.y110{bottom:266.816819pt;}
.y102{bottom:267.753130pt;}
.y78{bottom:268.389076pt;}
.y5b{bottom:268.698800pt;}
.y1c8{bottom:268.746867pt;}
.y2a{bottom:269.030400pt;}
.yea{bottom:271.027028pt;}
.y312{bottom:271.345333pt;}
.y7a{bottom:272.763736pt;}
.y24e{bottom:275.735867pt;}
.y245{bottom:278.372396pt;}
.y2d0{bottom:279.345333pt;}
.y29e{bottom:282.102533pt;}
.y28d{bottom:282.344533pt;}
.yc4{bottom:282.462533pt;}
.y27b{bottom:282.464533pt;}
.y138{bottom:282.595867pt;}
.y181{bottom:282.729200pt;}
.y311{bottom:284.678667pt;}
.y5a{bottom:284.698800pt;}
.y29{bottom:285.030400pt;}
.y82{bottom:286.421645pt;}
.y115{bottom:287.259333pt;}
.y229{bottom:290.044729pt;}
.y2cf{bottom:292.678667pt;}
.y103{bottom:293.710250pt;}
.y208{bottom:297.016871pt;}
.y162{bottom:297.995867pt;}
.y310{bottom:298.012000pt;}
.y28c{bottom:298.344533pt;}
.yc3{bottom:298.462533pt;}
.y27a{bottom:298.464533pt;}
.y137{bottom:298.595867pt;}
.y1aa{bottom:298.609200pt;}
.y180{bottom:298.729200pt;}
.y1e6{bottom:299.495067pt;}
.y81{bottom:300.297200pt;}
.y59{bottom:300.698800pt;}
.y28{bottom:301.030400pt;}
.y246{bottom:304.284130pt;}
.y1c9{bottom:304.553333pt;}
.y2ce{bottom:306.012000pt;}
.y30f{bottom:311.345333pt;}
.yc2{bottom:314.462533pt;}
.y279{bottom:314.464533pt;}
.y136{bottom:314.595867pt;}
.y1a9{bottom:314.609200pt;}
.y17f{bottom:314.729200pt;}
.y58{bottom:316.698800pt;}
.y11a{bottom:318.080313pt;}
.y1cf{bottom:318.521200pt;}
.y2cd{bottom:319.345333pt;}
.y237{bottom:319.615343pt;}
.y104{bottom:319.667370pt;}
.y85{bottom:319.982625pt;}
.y30e{bottom:324.678667pt;}
.y22a{bottom:326.214727pt;}
.y28b{bottom:329.984533pt;}
.y247{bottom:330.195863pt;}
.yc1{bottom:330.462533pt;}
.y278{bottom:330.464533pt;}
.y135{bottom:330.595867pt;}
.y1a8{bottom:330.609200pt;}
.y17e{bottom:330.729200pt;}
.y2cc{bottom:332.678667pt;}
.y57{bottom:332.698800pt;}
.y30d{bottom:338.012000pt;}
.y1ca{bottom:340.359800pt;}
.y27{bottom:341.170933pt;}
.y220{bottom:342.462703pt;}
.y112{bottom:343.339863pt;}
.y89{bottom:344.610616pt;}
.y1e5{bottom:345.511067pt;}
.y2cb{bottom:346.012000pt;}
.yc0{bottom:346.462533pt;}
.y277{bottom:346.464533pt;}
.y161{bottom:346.475867pt;}
.y134{bottom:346.595867pt;}
.y1a7{bottom:346.609200pt;}
.y17d{bottom:346.729200pt;}
.y56{bottom:348.698800pt;}
.y1e0{bottom:349.052800pt;}
.y233{bottom:349.085333pt;}
.y1ff{bottom:349.720400pt;}
.y79{bottom:350.476502pt;}
.y72{bottom:350.923825pt;}
.y209{bottom:350.962574pt;}
.y30c{bottom:351.345333pt;}
.y26{bottom:352.238267pt;}
.y111{bottom:354.770267pt;}
.y248{bottom:356.107596pt;}
.y8c{bottom:357.717333pt;}
.y2ca{bottom:359.345333pt;}
.y231{bottom:361.883733pt;}
.ybf{bottom:362.462533pt;}
.y276{bottom:362.464533pt;}
.y160{bottom:362.475867pt;}
.y133{bottom:362.595867pt;}
.y1a6{bottom:362.609200pt;}
.y17c{bottom:362.729200pt;}
.y109{bottom:362.923056pt;}
.y71{bottom:363.388194pt;}
.yf9{bottom:363.859366pt;}
.y30b{bottom:364.678667pt;}
.y55{bottom:364.698800pt;}
.y25{bottom:366.818667pt;}
.y221{bottom:371.390437pt;}
.y2c9{bottom:372.678667pt;}
.y86{bottom:374.879586pt;}
.y1d2{bottom:376.162614pt;}
.y1cb{bottom:376.166267pt;}
.y6f{bottom:376.883680pt;}
.y30a{bottom:378.012000pt;}
.ybe{bottom:378.462533pt;}
.y275{bottom:378.464533pt;}
.y15f{bottom:378.475867pt;}
.y132{bottom:378.595867pt;}
.y1a5{bottom:378.609200pt;}
.y17b{bottom:378.729200pt;}
.y84{bottom:379.615735pt;}
.y54{bottom:380.698800pt;}
.y249{bottom:382.019330pt;}
.y2c8{bottom:386.012000pt;}
.y10a{bottom:388.880176pt;}
.y1ec{bottom:389.400800pt;}
.yfa{bottom:389.816486pt;}
.y24{bottom:390.829867pt;}
.y309{bottom:391.345333pt;}
.y1e4{bottom:391.527067pt;}
.ybd{bottom:394.462533pt;}
.y274{bottom:394.464533pt;}
.y15e{bottom:394.475867pt;}
.y131{bottom:394.595867pt;}
.y1a4{bottom:394.609200pt;}
.y17a{bottom:394.729200pt;}
.y1bd{bottom:395.601733pt;}
.y70{bottom:396.156446pt;}
.y53{bottom:396.698800pt;}
.y2c7{bottom:399.345333pt;}
.y83{bottom:400.164267pt;}
.y222{bottom:400.328501pt;}
.y308{bottom:404.678667pt;}
.y20a{bottom:404.908276pt;}
.y212{bottom:404.919995pt;}
.y250{bottom:406.846546pt;}
.y23{bottom:407.652400pt;}
.y24a{bottom:407.931063pt;}
.ybc{bottom:410.462533pt;}
.y273{bottom:410.464533pt;}
.y15d{bottom:410.475867pt;}
.y7c{bottom:410.561600pt;}
.y130{bottom:410.595867pt;}
.y1a3{bottom:410.609200pt;}
.y179{bottom:410.729200pt;}
.y2c6{bottom:412.678667pt;}
.y52{bottom:412.698800pt;}
.y6e{bottom:414.473913pt;}
.y22{bottom:414.829867pt;}
.y10b{bottom:414.837296pt;}
.yfb{bottom:415.773606pt;}
.y307{bottom:418.012000pt;}
.y1d5{bottom:418.267600pt;}
.y1e3{bottom:420.096667pt;}
.y1be{bottom:425.978638pt;}
.y2c5{bottom:426.012000pt;}
.ybb{bottom:426.462533pt;}
.y272{bottom:426.464533pt;}
.y15c{bottom:426.475867pt;}
.y12f{bottom:426.595867pt;}
.y1a2{bottom:426.609200pt;}
.y178{bottom:426.729200pt;}
.y51{bottom:428.698800pt;}
.y223{bottom:429.266566pt;}
.y239{bottom:429.773867pt;}
.y77{bottom:430.463789pt;}
.y306{bottom:431.345333pt;}
.y7d{bottom:431.381600pt;}
.y21{bottom:431.652400pt;}
.y200{bottom:433.117067pt;}
.y20{bottom:438.829867pt;}
.y2c4{bottom:439.345333pt;}
.y10c{bottom:441.721456pt;}
.yba{bottom:442.462533pt;}
.y271{bottom:442.464533pt;}
.y15b{bottom:442.475867pt;}
.y12e{bottom:442.595867pt;}
.y1a1{bottom:442.609200pt;}
.yfc{bottom:442.657766pt;}
.y177{bottom:442.729200pt;}
.y305{bottom:444.678667pt;}
.y50{bottom:444.698800pt;}
.y1d7{bottom:445.936000pt;}
.ye9{bottom:450.176122pt;}
.y11b{bottom:450.702667pt;}
.y1e2{bottom:451.981467pt;}
.y2c3{bottom:452.678667pt;}
.y73{bottom:453.034609pt;}
.y1f{bottom:455.652400pt;}
.y1bf{bottom:457.449267pt;}
.y8a{bottom:457.718330pt;}
.y304{bottom:458.012000pt;}
.y224{bottom:458.194299pt;}
.yb9{bottom:458.462533pt;}
.y270{bottom:458.464533pt;}
.y15a{bottom:458.475867pt;}
.y12d{bottom:458.595867pt;}
.y1a0{bottom:458.609200pt;}
.y76{bottom:459.456337pt;}
.y4f{bottom:460.698800pt;}
.y9f{bottom:461.141867pt;}
.y2c2{bottom:466.012000pt;}
.y1e{bottom:467.652400pt;}
.yfd{bottom:468.614886pt;}
.y23a{bottom:470.805096pt;}
.y303{bottom:471.345333pt;}
.y176{bottom:474.369200pt;}
.yb8{bottom:474.462533pt;}
.y26f{bottom:474.464533pt;}
.y159{bottom:474.475867pt;}
.y12c{bottom:474.595867pt;}
.y19f{bottom:474.609200pt;}
.y1d{bottom:474.829867pt;}
.y201{bottom:476.150641pt;}
.y75{bottom:476.363603pt;}
.y4e{bottom:476.698800pt;}
.y2c1{bottom:479.345333pt;}
.y236{bottom:481.065733pt;}
.y302{bottom:484.678667pt;}
.y1df{bottom:484.903600pt;}
.y225{bottom:487.122033pt;}
.y6d{bottom:487.432933pt;}
.y1c0{bottom:487.826171pt;}
.y74{bottom:487.971236pt;}
.y175{bottom:490.369200pt;}
.yb7{bottom:490.462533pt;}
.y26e{bottom:490.464533pt;}
.y158{bottom:490.475867pt;}
.y12b{bottom:490.595867pt;}
.y19e{bottom:490.609200pt;}
.y1c{bottom:491.652400pt;}
.y2c0{bottom:492.678667pt;}
.y4d{bottom:492.698800pt;}
.y119{bottom:492.980226pt;}
.yfe{bottom:494.572006pt;}
.y301{bottom:498.012000pt;}
.y1b{bottom:498.829867pt;}
.y2bf{bottom:506.012000pt;}
.yb6{bottom:506.462533pt;}
.y26d{bottom:506.464533pt;}
.y157{bottom:506.475867pt;}
.y12a{bottom:506.595867pt;}
.y19d{bottom:506.609200pt;}
.y1d3{bottom:508.200800pt;}
.y4c{bottom:508.698800pt;}
.y23b{bottom:510.748033pt;}
.y300{bottom:511.345333pt;}
.y105{bottom:513.724653pt;}
.yf3{bottom:514.660963pt;}
.y1a{bottom:515.652400pt;}
.y1de{bottom:517.210800pt;}
.y1c1{bottom:518.203075pt;}
.y202{bottom:519.184215pt;}
.y2be{bottom:519.345333pt;}
.y29d{bottom:522.102533pt;}
.yb5{bottom:522.462533pt;}
.y26c{bottom:522.464533pt;}
.y156{bottom:522.475867pt;}
.y129{bottom:522.595867pt;}
.y19c{bottom:522.609200pt;}
.y19{bottom:522.829867pt;}
.y213{bottom:524.090533pt;}
.y2ff{bottom:524.678667pt;}
.y4b{bottom:524.698800pt;}
.y2bd{bottom:532.678667pt;}
.y1dd{bottom:537.601733pt;}
.y240{bottom:537.864800pt;}
.y2fe{bottom:538.012000pt;}
.yb4{bottom:538.462533pt;}
.y26b{bottom:538.464533pt;}
.y155{bottom:538.475867pt;}
.y128{bottom:538.595867pt;}
.y19b{bottom:538.609200pt;}
.y18{bottom:539.652400pt;}
.y106{bottom:539.681773pt;}
.yf4{bottom:540.618083pt;}
.y4a{bottom:540.698800pt;}
.y2bc{bottom:546.012000pt;}
.y1c2{bottom:549.673704pt;}
.y1dc{bottom:550.159867pt;}
.y2fd{bottom:551.345333pt;}
.y17{bottom:551.652400pt;}
.y23c{bottom:551.779263pt;}
.yb3{bottom:554.462533pt;}
.y26a{bottom:554.464533pt;}
.y154{bottom:554.475867pt;}
.y127{bottom:554.595867pt;}
.y19a{bottom:554.609200pt;}
.y49{bottom:556.698800pt;}
.y16{bottom:558.829867pt;}
.y2bb{bottom:559.345333pt;}
.y203{bottom:562.217790pt;}
.y2fc{bottom:564.678667pt;}
.y107{bottom:565.638893pt;}
.yf5{bottom:566.575203pt;}
.y8b{bottom:567.088571pt;}
.yb2{bottom:570.462533pt;}
.y269{bottom:570.464533pt;}
.y153{bottom:570.475867pt;}
.y126{bottom:570.595867pt;}
.y199{bottom:570.609200pt;}
.y2ba{bottom:572.678667pt;}
.y48{bottom:572.698800pt;}
.y15{bottom:575.652400pt;}
.y2fb{bottom:578.012000pt;}
.y1c3{bottom:580.050609pt;}
.y14{bottom:582.829867pt;}
.y1db{bottom:583.081467pt;}
.y2b9{bottom:586.012000pt;}
.yb1{bottom:586.462533pt;}
.y268{bottom:586.464533pt;}
.y152{bottom:586.475867pt;}
.y125{bottom:586.595867pt;}
.y198{bottom:586.609200pt;}
.y47{bottom:588.698800pt;}
.y2fa{bottom:591.345333pt;}
.y108{bottom:592.523053pt;}
.y23d{bottom:592.810493pt;}
.yf6{bottom:593.459363pt;}
.y2b8{bottom:599.345333pt;}
.y13{bottom:599.652400pt;}
.ycb{bottom:602.462533pt;}
.y267{bottom:602.464533pt;}
.y151{bottom:602.475867pt;}
.y124{bottom:602.595867pt;}
.y197{bottom:602.609200pt;}
.y8e{bottom:602.952933pt;}
.y2f9{bottom:604.678667pt;}
.y97{bottom:604.698388pt;}
.y46{bottom:604.698800pt;}
.y204{bottom:605.251364pt;}
.ye8{bottom:608.236855pt;}
.y1c4{bottom:610.427513pt;}
.y1d1{bottom:610.441071pt;}
.y12{bottom:611.652400pt;}
.y2b7{bottom:612.678667pt;}
.y1da{bottom:616.041467pt;}
.y2f8{bottom:618.012000pt;}
.yb0{bottom:618.102533pt;}
.yca{bottom:618.462533pt;}
.y266{bottom:618.464533pt;}
.y150{bottom:618.475867pt;}
.y123{bottom:618.595867pt;}
.y196{bottom:618.609200pt;}
.y11{bottom:618.829867pt;}
.yf7{bottom:619.416483pt;}
.y45{bottom:620.698800pt;}
.y1d6{bottom:624.784869pt;}
.y2b6{bottom:626.012000pt;}
.y253{bottom:629.434453pt;}
.y2f7{bottom:631.345333pt;}
.y23e{bottom:633.841723pt;}
.yc9{bottom:634.462533pt;}
.y265{bottom:634.464533pt;}
.y14f{bottom:634.475867pt;}
.y117{bottom:634.578933pt;}
.y122{bottom:634.595867pt;}
.y195{bottom:634.609200pt;}
.y10{bottom:635.652400pt;}
.yf1{bottom:636.170000pt;}
.y44{bottom:636.698800pt;}
.y2b5{bottom:639.345333pt;}
.y252{bottom:642.390293pt;}
.yf{bottom:642.829867pt;}
.y118{bottom:643.784400pt;}
.y2f6{bottom:644.678667pt;}
.yf8{bottom:645.373603pt;}
.y1eb{bottom:647.423200pt;}
.y211{bottom:648.278535pt;}
.y205{bottom:648.284939pt;}
.y1d9{bottom:649.551867pt;}
.yaf{bottom:649.982533pt;}
.yc8{bottom:650.462533pt;}
.y264{bottom:650.464533pt;}
.y14e{bottom:650.475867pt;}
.y121{bottom:650.595867pt;}
.y194{bottom:650.609200pt;}
.y2b4{bottom:652.678667pt;}
.y43{bottom:652.698800pt;}
.y90{bottom:654.534283pt;}
.y251{bottom:655.346133pt;}
.yeb{bottom:657.119200pt;}
.y2f5{bottom:658.012000pt;}
.ye{bottom:659.652400pt;}
.y2b3{bottom:666.012000pt;}
.yc7{bottom:666.462533pt;}
.y263{bottom:666.464533pt;}
.y14d{bottom:666.475867pt;}
.y120{bottom:666.595867pt;}
.y193{bottom:666.609200pt;}
.yd{bottom:666.829867pt;}
.y42{bottom:668.698800pt;}
.y2f4{bottom:671.345333pt;}
.y24f{bottom:673.776267pt;}
.y2b2{bottom:679.345333pt;}
.yc6{bottom:682.462533pt;}
.y262{bottom:682.464533pt;}
.y14c{bottom:682.475867pt;}
.y11f{bottom:682.595867pt;}
.y192{bottom:682.609200pt;}
.yec{bottom:683.076320pt;}
.yc{bottom:683.652400pt;}
.y2f3{bottom:684.678667pt;}
.y69{bottom:684.698800pt;}
.yb{bottom:690.829867pt;}
.y2b1{bottom:692.678667pt;}
.y99{bottom:697.637393pt;}
.y2f2{bottom:698.012000pt;}
.yae{bottom:698.462533pt;}
.y261{bottom:698.464533pt;}
.y14b{bottom:698.475867pt;}
.y11e{bottom:698.595867pt;}
.y191{bottom:698.609200pt;}
.y41{bottom:700.340800pt;}
.y68{bottom:700.698800pt;}
.y2b0{bottom:706.012000pt;}
.ya{bottom:707.652400pt;}
.yf2{bottom:709.033440pt;}
.yed{bottom:709.960480pt;}
.y2f1{bottom:711.345333pt;}
.yad{bottom:714.462533pt;}
.y260{bottom:714.464533pt;}
.y14a{bottom:714.475867pt;}
.y11d{bottom:714.595867pt;}
.y190{bottom:714.609200pt;}
.y2af{bottom:719.345333pt;}
.y2f0{bottom:724.678667pt;}
.yac{bottom:730.462533pt;}
.y25f{bottom:730.464533pt;}
.y149{bottom:730.475867pt;}
.y174{bottom:730.595867pt;}
.y18f{bottom:730.609200pt;}
.y2ae{bottom:732.678667pt;}
.y9{bottom:733.187733pt;}
.yee{bottom:735.917600pt;}
.y91{bottom:737.484983pt;}
.y2ef{bottom:738.012000pt;}
.y2ad{bottom:746.012000pt;}
.y11c{bottom:746.235867pt;}
.yab{bottom:746.462533pt;}
.y25e{bottom:746.464533pt;}
.y148{bottom:746.475867pt;}
.y173{bottom:746.595867pt;}
.y18e{bottom:746.609200pt;}
.ye7{bottom:749.614533pt;}
.y2ee{bottom:751.345333pt;}
.y8{bottom:751.854400pt;}
.y2ac{bottom:759.345333pt;}
.y9b{bottom:759.543642pt;}
.y1b9{bottom:762.102533pt;}
.yaa{bottom:762.462533pt;}
.y25d{bottom:762.464533pt;}
.y147{bottom:762.475867pt;}
.y172{bottom:762.595867pt;}
.yef{bottom:762.801760pt;}
.y2ed{bottom:764.678667pt;}
.y40{bottom:769.731600pt;}
.y7{bottom:770.516400pt;}
.y9a{bottom:770.892176pt;}
.y2ab{bottom:772.678667pt;}
.y2ec{bottom:778.012000pt;}
.y1b8{bottom:778.102533pt;}
.y18d{bottom:778.249200pt;}
.ya9{bottom:778.462533pt;}
.y25c{bottom:778.464533pt;}
.y146{bottom:778.475867pt;}
.y171{bottom:778.595867pt;}
.y98{bottom:780.118533pt;}
.y2aa{bottom:786.012000pt;}
.y6{bottom:789.183067pt;}
.y2eb{bottom:791.345333pt;}
.y3f{bottom:794.038267pt;}
.y29c{bottom:794.102533pt;}
.ya8{bottom:794.462533pt;}
.y25b{bottom:794.464533pt;}
.y145{bottom:794.475867pt;}
.y170{bottom:794.595867pt;}
.y2a9{bottom:799.345333pt;}
.y2ea{bottom:804.678667pt;}
.y1b7{bottom:809.982533pt;}
.y3e{bottom:810.038267pt;}
.ya7{bottom:810.462533pt;}
.y25a{bottom:810.464533pt;}
.y144{bottom:810.475867pt;}
.y16f{bottom:810.595867pt;}
.y2a8{bottom:812.678667pt;}
.y2e9{bottom:818.012000pt;}
.y92{bottom:820.238974pt;}
.y2a7{bottom:826.012000pt;}
.y3d{bottom:826.038267pt;}
.ya6{bottom:826.462533pt;}
.y259{bottom:826.464533pt;}
.ye1{bottom:826.475867pt;}
.yda{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y2e8{bottom:831.345333pt;}
.y2a6{bottom:839.345333pt;}
.y3c{bottom:842.038267pt;}
.ya5{bottom:842.462533pt;}
.y258{bottom:842.464533pt;}
.ye0{bottom:842.475867pt;}
.y9e{bottom:844.589551pt;}
.y2e7{bottom:844.678667pt;}
.y2a5{bottom:852.678667pt;}
.y9d{bottom:855.938085pt;}
.y2e6{bottom:858.012000pt;}
.y3b{bottom:858.038267pt;}
.yd9{bottom:858.235867pt;}
.ya4{bottom:858.462533pt;}
.y257{bottom:858.464533pt;}
.ydf{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y2a4{bottom:866.012000pt;}
.y9c{bottom:867.286618pt;}
.y2e5{bottom:871.345333pt;}
.y3a{bottom:874.038267pt;}
.ya3{bottom:874.462533pt;}
.y256{bottom:874.464533pt;}
.yde{bottom:874.475867pt;}
.y2a3{bottom:879.345333pt;}
.y2e4{bottom:884.678667pt;}
.y96{bottom:887.777867pt;}
.y39{bottom:890.038267pt;}
.ya2{bottom:890.462533pt;}
.y255{bottom:890.464533pt;}
.ydd{bottom:890.475867pt;}
.y2a2{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y2e3{bottom:898.012000pt;}
.y93{bottom:905.807418pt;}
.y38{bottom:906.038267pt;}
.ya1{bottom:906.462533pt;}
.y28a{bottom:906.464533pt;}
.ydc{bottom:906.475867pt;}
.y2e2{bottom:911.345333pt;}
.y8f{bottom:920.545467pt;}
.y215{bottom:922.102533pt;}
.y254{bottom:922.104533pt;}
.ya0{bottom:922.462533pt;}
.y289{bottom:922.464533pt;}
.ydb{bottom:922.475867pt;}
.y2e1{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y6a{bottom:1006.594400pt;}
.y29b{bottom:1006.597067pt;}
.y2e0{bottom:1006.598667pt;}
.yd8{bottom:1006.607867pt;}
.y36{bottom:1009.860000pt;}
.y35{bottom:1022.660000pt;}
.h9{height:14.713918pt;}
.h7{height:17.000371pt;}
.h14{height:22.360190pt;}
.h16{height:24.671198pt;}
.ha{height:25.238281pt;}
.h19{height:26.066250pt;}
.h2{height:27.179688pt;}
.h1f{height:27.340438pt;}
.h27{height:28.800104pt;}
.hd{height:29.121094pt;}
.h8{height:29.160156pt;}
.h12{height:29.645833pt;}
.h13{height:29.666667pt;}
.h1e{height:30.074560pt;}
.h2f{height:30.469362pt;}
.hf{height:31.062500pt;}
.he{height:31.104167pt;}
.h36{height:31.841339pt;}
.h22{height:32.808682pt;}
.h21{height:32.852137pt;}
.h32{height:33.239268pt;}
.h30{height:33.283294pt;}
.h1b{height:33.469307pt;}
.h1c{height:33.513637pt;}
.h1a{height:34.311581pt;}
.h2e{height:35.560500pt;}
.h2d{height:35.607600pt;}
.h10{height:37.057292pt;}
.h11{height:37.083333pt;}
.h28{height:37.750000pt;}
.h2b{height:37.800000pt;}
.h33{height:38.209685pt;}
.h35{height:38.260294pt;}
.h23{height:38.400401pt;}
.h26{height:38.451263pt;}
.hc{height:38.828125pt;}
.hb{height:38.880208pt;}
.h24{height:39.389962pt;}
.h2a{height:44.100000pt;}
.h17{height:44.685113pt;}
.h18{height:45.749044pt;}
.h3{height:50.476562pt;}
.h15{height:50.624892pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h1d{height:58.957833pt;}
.h4{height:81.927344pt;}
.h31{height:358.766667pt;}
.h25{height:519.397333pt;}
.h2c{height:534.448000pt;}
.h34{height:548.977333pt;}
.h29{height:550.429333pt;}
.h20{height:644.134667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w5{width:300.473333pt;}
.w4{width:449.337333pt;}
.w2{width:467.150667pt;}
.w7{width:554.338667pt;}
.w3{width:574.866667pt;}
.w6{width:638.740000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x52{left:9.556133pt;}
.x60{left:11.184667pt;}
.x4d{left:32.038667pt;}
.xad{left:34.081200pt;}
.x7{left:68.031467pt;}
.x3d{left:69.921200pt;}
.x8{left:75.590533pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.xb9{left:90.708800pt;}
.x71{left:91.615733pt;}
.x6d{left:93.436959pt;}
.x4{left:94.488267pt;}
.xa{left:98.267733pt;}
.x5f{left:99.968000pt;}
.x3e{left:109.089200pt;}
.xa8{left:110.135333pt;}
.x3{left:111.491600pt;}
.xa6{left:112.999200pt;}
.x45{left:117.169200pt;}
.x5a{left:120.103467pt;}
.x70{left:124.162107pt;}
.x2e{left:125.635426pt;}
.x5b{left:126.851200pt;}
.x3b{left:128.644800pt;}
.xae{left:130.247600pt;}
.x8a{left:131.991150pt;}
.x28{left:134.218583pt;}
.xaf{left:136.725533pt;}
.x29{left:140.044198pt;}
.x3f{left:142.678533pt;}
.x40{left:144.961200pt;}
.xab{left:146.476867pt;}
.xa9{left:148.872800pt;}
.xac{left:150.791170pt;}
.x2d{left:152.327333pt;}
.x63{left:156.705333pt;}
.x74{left:157.829815pt;}
.x61{left:159.227146pt;}
.x73{left:162.137981pt;}
.xb2{left:163.343733pt;}
.xa7{left:164.343867pt;}
.x9{left:169.380933pt;}
.x32{left:171.688533pt;}
.x4c{left:172.724000pt;}
.xb3{left:174.343264pt;}
.x34{left:175.341648pt;}
.x6f{left:177.191333pt;}
.x2b{left:179.770933pt;}
.x68{left:181.630667pt;}
.x4a{left:189.299600pt;}
.xb5{left:190.529600pt;}
.x76{left:191.664931pt;}
.x4b{left:194.453942pt;}
.x75{left:195.973097pt;}
.x67{left:201.604667pt;}
.x27{left:203.793067pt;}
.x4f{left:204.763760pt;}
.x77{left:208.639312pt;}
.x50{left:210.140800pt;}
.x72{left:213.497200pt;}
.x66{left:215.838267pt;}
.x65{left:216.892133pt;}
.x51{left:222.618758pt;}
.x79{left:225.613693pt;}
.x78{left:229.921859pt;}
.x47{left:234.861258pt;}
.x22{left:237.648533pt;}
.x6c{left:239.923600pt;}
.x7b{left:242.515754pt;}
.x7a{left:246.823920pt;}
.x64{left:251.613067pt;}
.x7d{left:259.521129pt;}
.x46{left:260.589467pt;}
.x7c{left:263.829295pt;}
.x24{left:266.108950pt;}
.xe{left:267.472933pt;}
.x5c{left:269.300667pt;}
.x6e{left:270.263504pt;}
.x1e{left:271.324800pt;}
.x7f{left:276.464515pt;}
.x7e{left:280.772681pt;}
.x2a{left:291.452533pt;}
.x1d{left:292.853867pt;}
.x81{left:294.244740pt;}
.x80{left:298.552906pt;}
.x1f{left:306.211467pt;}
.x20{left:307.467378pt;}
.x82{left:310.371951pt;}
.x25{left:311.503350pt;}
.x26{left:316.602654pt;}
.x1b{left:317.863397pt;}
.x23{left:322.988133pt;}
.x41{left:325.846533pt;}
.x84{left:327.346332pt;}
.x83{left:328.782387pt;}
.x13{left:332.024581pt;}
.x21{left:333.537467pt;}
.x6b{left:336.748000pt;}
.x49{left:337.886264pt;}
.x14{left:340.272636pt;}
.x86{left:344.279387pt;}
.x85{left:345.715443pt;}
.x12{left:348.134064pt;}
.xf{left:356.086463pt;}
.x88{left:361.181449pt;}
.x87{left:362.617504pt;}
.x54{left:367.708400pt;}
.x37{left:371.830154pt;}
.x10{left:376.736925pt;}
.x89{left:378.155829pt;}
.x38{left:379.376929pt;}
.x15{left:389.101428pt;}
.x2f{left:390.745733pt;}
.x39{left:395.344400pt;}
.x53{left:400.325333pt;}
.x6{left:404.481333pt;}
.xb{left:406.307733pt;}
.x35{left:411.493278pt;}
.x69{left:412.992267pt;}
.x5d{left:415.039496pt;}
.x36{left:424.737017pt;}
.xb8{left:428.976533pt;}
.x62{left:433.088024pt;}
.x3c{left:436.538133pt;}
.x42{left:441.771867pt;}
.x8c{left:447.360501pt;}
.x8b{left:451.668667pt;}
.x58{left:455.422533pt;}
.x56{left:457.593867pt;}
.x11{left:459.323613pt;}
.x6a{left:463.833867pt;}
.x8d{left:468.643047pt;}
.x5e{left:476.366208pt;}
.x8f{left:481.257605pt;}
.x8e{left:485.565771pt;}
.x91{left:498.159667pt;}
.x90{left:502.467833pt;}
.x1c{left:503.952667pt;}
.x1a{left:505.741668pt;}
.xb7{left:510.978133pt;}
.x48{left:512.762620pt;}
.x59{left:515.044800pt;}
.x30{left:516.861984pt;}
.x19{left:519.895271pt;}
.x57{left:525.911467pt;}
.x93{left:532.108428pt;}
.x92{left:536.416594pt;}
.x55{left:540.432400pt;}
.xb4{left:543.209600pt;}
.x95{left:549.000158pt;}
.x43{left:550.017200pt;}
.x16{left:551.727610pt;}
.x94{left:553.308324pt;}
.x17{left:561.635889pt;}
.x97{left:566.005533pt;}
.x96{left:570.313699pt;}
.x33{left:578.974933pt;}
.xb6{left:581.866020pt;}
.x99{left:582.948919pt;}
.x98{left:587.257085pt;}
.xd{left:589.770933pt;}
.x2c{left:591.195867pt;}
.x9b{left:600.729144pt;}
.x9a{left:605.037310pt;}
.x4e{left:613.588400pt;}
.x2{left:616.324800pt;}
.x9c{left:618.292411pt;}
.x18{left:624.838131pt;}
.xb1{left:630.136759pt;}
.xb0{left:631.212096pt;}
.x9e{left:633.830736pt;}
.x9d{left:635.266791pt;}
.x44{left:642.401200pt;}
.xc{left:647.459200pt;}
.xa0{left:650.753460pt;}
.x9f{left:652.189515pt;}
.x31{left:657.300084pt;}
.xaa{left:661.216133pt;}
.x3a{left:666.356800pt;}
.xa2{left:667.655521pt;}
.xa1{left:669.091577pt;}
.xa4{left:684.629902pt;}
.xa3{left:686.065957pt;}
.xa5{left:702.544434pt;}
}




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