
    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_a832723b2ad6ad9fc701e7bb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dcdde30a3ee4e23a4c812936.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_8084863cbf342e2d977bd00e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_7377c354af3a95bb7e082fd7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_c08635c9af1c0261bebf7dd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_c495d3ec6b6acb3be405c7c1.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_32adfcf66293a7bb209cba25.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_7dd2eb52db43d67e37e89e80.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_46e12d96cebfdc310df3cf44.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_e19b18dbde6bbbf0e822b7c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.681641;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_870fcf0f295727185bae66fb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_979501d18655b46b3e47fe33.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.896973;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_4d5479b6aec8515ac9187f1e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_55de6073d47b4a11d83e16d7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.941406;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_2e0dc109d444388e6de0a91a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_5bc436a6c2d1a7eccb93a10c.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_dfe521f1dddef9709c545b77.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.961914;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_af69e52fba1f2264987c2b75.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_fd7af4a212e735511d6c4215.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls63{letter-spacing:-9.957600px;}
.ls68{letter-spacing:-8.517600px;}
.ls45{letter-spacing:-7.056000px;}
.ls12{letter-spacing:-6.480000px;}
.ls60{letter-spacing:-5.997600px;}
.ls64{letter-spacing:-5.529600px;}
.ls6b{letter-spacing:-4.968000px;}
.lse{letter-spacing:-4.502400px;}
.ls10{letter-spacing:-3.002400px;}
.ls46{letter-spacing:-3.000000px;}
.ls62{letter-spacing:-2.952000px;}
.ls41{letter-spacing:-2.847000px;}
.ls32{letter-spacing:-2.496000px;}
.ls4f{letter-spacing:-1.944000px;}
.ls1e{letter-spacing:-1.500000px;}
.ls66{letter-spacing:-1.497600px;}
.ls53{letter-spacing:-1.476000px;}
.ls33{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.672000px;}
.ls3a{letter-spacing:-0.660000px;}
.lsd{letter-spacing:-0.646800px;}
.ls11{letter-spacing:-0.627000px;}
.ls21{letter-spacing:-0.518400px;}
.ls42{letter-spacing:-0.507000px;}
.ls17{letter-spacing:-0.504000px;}
.ls40{letter-spacing:-0.495000px;}
.ls49{letter-spacing:-0.489600px;}
.ls24{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.468000px;}
.ls43{letter-spacing:-0.363000px;}
.ls30{letter-spacing:-0.351000px;}
.lsf{letter-spacing:-0.342000px;}
.ls48{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.171000px;}
.ls5d{letter-spacing:-0.072180px;}
.ls61{letter-spacing:-0.021600px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010800px;}
.ls1a{letter-spacing:0.021600px;}
.ls1b{letter-spacing:0.024000px;}
.ls5f{letter-spacing:0.060000px;}
.ls2e{letter-spacing:0.117000px;}
.ls3b{letter-spacing:0.120000px;}
.ls5b{letter-spacing:0.144000px;}
.ls5e{letter-spacing:0.150000px;}
.ls54{letter-spacing:0.174000px;}
.ls51{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.204000px;}
.ls18{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.285000px;}
.ls2f{letter-spacing:0.312000px;}
.ls19{letter-spacing:0.432000px;}
.ls36{letter-spacing:0.468000px;}
.ls50{letter-spacing:0.480000px;}
.ls59{letter-spacing:0.489600px;}
.ls9{letter-spacing:0.492000px;}
.ls44{letter-spacing:0.508950px;}
.ls3f{letter-spacing:0.513000px;}
.ls7{letter-spacing:0.516000px;}
.ls57{letter-spacing:0.518400px;}
.lsa{letter-spacing:0.519000px;}
.ls4c{letter-spacing:0.590400px;}
.ls52{letter-spacing:0.600000px;}
.ls2d{letter-spacing:0.624000px;}
.ls4e{letter-spacing:0.660000px;}
.ls58{letter-spacing:0.749700px;}
.ls6{letter-spacing:0.750000px;}
.ls47{letter-spacing:0.780000px;}
.ls14{letter-spacing:0.798000px;}
.ls2{letter-spacing:0.936000px;}
.ls37{letter-spacing:0.986400px;}
.ls3c{letter-spacing:1.029600px;}
.ls25{letter-spacing:1.128000px;}
.ls1f{letter-spacing:1.440000px;}
.ls31{letter-spacing:1.443000px;}
.ls4{letter-spacing:1.497600px;}
.ls5{letter-spacing:1.500000px;}
.ls23{letter-spacing:1.524000px;}
.ls3e{letter-spacing:1.526400px;}
.ls67{letter-spacing:1.560000px;}
.ls28{letter-spacing:1.620000px;}
.ls4b{letter-spacing:1.644000px;}
.ls29{letter-spacing:3.000000px;}
.ls4a{letter-spacing:3.120000px;}
.ls26{letter-spacing:4.500000px;}
.ls1d{letter-spacing:6.000000px;}
.ls27{letter-spacing:7.500000px;}
.ls35{letter-spacing:9.000000px;}
.ls34{letter-spacing:10.500000px;}
.ls56{letter-spacing:10.560000px;}
.ls5a{letter-spacing:12.000000px;}
.ls2c{letter-spacing:13.800000px;}
.ls2b{letter-spacing:16.560000px;}
.ls20{letter-spacing:19.500000px;}
.ls39{letter-spacing:21.000000px;}
.ls2a{letter-spacing:23.484000px;}
.ls6a{letter-spacing:25.500000px;}
.ls65{letter-spacing:27.120000px;}
.ls3{letter-spacing:28.134000px;}
.ls6c{letter-spacing:28.560000px;}
.ls3d{letter-spacing:30.000000px;}
.ls5c{letter-spacing:39.000000px;}
.ls38{letter-spacing:55.134000px;}
.ls55{letter-spacing:63.984000px;}
.ls1c{letter-spacing:64.134000px;}
.ls4d{letter-spacing:64.470000px;}
.ls69{letter-spacing:112.440000px;}
.ls8{letter-spacing:120.228000px;}
.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;}
}
.ws21{word-spacing:-72.000000px;}
.ws31{word-spacing:-60.000000px;}
.ws39{word-spacing:-30.240000px;}
.ws10{word-spacing:-30.000000px;}
.ws5{word-spacing:-27.000000px;}
.ws6{word-spacing:-21.252000px;}
.ws7{word-spacing:-21.000000px;}
.wsf{word-spacing:-20.496000px;}
.ws1{word-spacing:-20.436000px;}
.ws9{word-spacing:-20.353200px;}
.ws8{word-spacing:-20.328000px;}
.ws0{word-spacing:-19.500000px;}
.ws15{word-spacing:-19.497600px;}
.ws14{word-spacing:-19.440000px;}
.ws22{word-spacing:-19.029600px;}
.ws1f{word-spacing:-18.986400px;}
.ws3e{word-spacing:-18.936000px;}
.ws37{word-spacing:-18.518400px;}
.ws38{word-spacing:-18.489600px;}
.ws1e{word-spacing:-18.468000px;}
.ws12{word-spacing:-18.432000px;}
.ws16{word-spacing:-18.021600px;}
.ws4{word-spacing:-18.000000px;}
.ws3d{word-spacing:-17.978400px;}
.wsd{word-spacing:-17.532000px;}
.ws30{word-spacing:-17.510400px;}
.ws1d{word-spacing:-17.496000px;}
.ws1c{word-spacing:-17.481600px;}
.wsa{word-spacing:-16.497600px;}
.ws35{word-spacing:-16.056000px;}
.ws32{word-spacing:-15.660000px;}
.ws36{word-spacing:-15.600000px;}
.ws3f{word-spacing:-15.048000px;}
.ws3b{word-spacing:-15.037500px;}
.ws3{word-spacing:-15.000000px;}
.wsb{word-spacing:-14.997600px;}
.ws3a{word-spacing:-14.965320px;}
.ws2e{word-spacing:-14.820000px;}
.ws17{word-spacing:-14.520000px;}
.ws20{word-spacing:-14.340000px;}
.wse{word-spacing:-14.079000px;}
.ws13{word-spacing:-13.500000px;}
.ws43{word-spacing:-13.032000px;}
.ws41{word-spacing:-12.470400px;}
.ws34{word-spacing:-12.204000px;}
.ws23{word-spacing:-12.015000px;}
.ws3c{word-spacing:-12.002400px;}
.ws29{word-spacing:-12.000000px;}
.ws2d{word-spacing:-11.622000px;}
.wsc{word-spacing:-11.520000px;}
.ws2b{word-spacing:-11.466000px;}
.ws24{word-spacing:-11.310000px;}
.ws1a{word-spacing:-11.154000px;}
.ws19{word-spacing:-10.959000px;}
.ws2c{word-spacing:-10.883700px;}
.ws18{word-spacing:-10.842000px;}
.ws25{word-spacing:-10.491000px;}
.ws2f{word-spacing:-10.335000px;}
.ws27{word-spacing:-10.140000px;}
.ws42{word-spacing:-9.482400px;}
.ws26{word-spacing:-8.811000px;}
.ws2a{word-spacing:-8.679000px;}
.ws40{word-spacing:-8.042400px;}
.ws28{word-spacing:-7.995000px;}
.ws33{word-spacing:-7.458000px;}
.ws1b{word-spacing:-4.176000px;}
.ws11{word-spacing:-0.120000px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-20.106000px;}
._12{margin-left:-18.140400px;}
._15{margin-left:-15.930000px;}
._14{margin-left:-13.800000px;}
._17{margin-left:-12.546000px;}
._13{margin-left:-11.250000px;}
._0{margin-left:-9.180000px;}
._2e{margin-left:-7.860000px;}
._3{margin-left:-6.732000px;}
._16{margin-left:-5.649000px;}
._d{margin-left:-4.572000px;}
._1{margin-left:-3.264000px;}
._4{margin-left:-1.632000px;}
._2{width:1.836000px;}
._5{width:3.402000px;}
._7{width:4.818000px;}
._e{width:5.964000px;}
._1b{width:7.092000px;}
._1a{width:8.400000px;}
._f{width:10.056000px;}
._10{width:11.292000px;}
._20{width:12.438000px;}
._9{width:13.968000px;}
._8{width:15.336000px;}
._c{width:16.368000px;}
._21{width:19.380000px;}
._1e{width:20.448000px;}
._1c{width:22.080000px;}
._1d{width:23.376000px;}
._1f{width:25.278000px;}
._2a{width:26.496000px;}
._25{width:27.864000px;}
._24{width:28.896000px;}
._22{width:30.012000px;}
._19{width:31.956000px;}
._49{width:33.024000px;}
._a{width:34.032000px;}
._b{width:35.184000px;}
._23{width:36.276000px;}
._32{width:37.284000px;}
._28{width:38.292000px;}
._2b{width:39.504000px;}
._27{width:41.340000px;}
._26{width:42.960000px;}
._34{width:44.592000px;}
._33{width:46.056000px;}
._37{width:47.448000px;}
._38{width:48.510000px;}
._31{width:49.596000px;}
._30{width:50.820000px;}
._36{width:52.428000px;}
._35{width:53.772000px;}
._29{width:55.212000px;}
._2f{width:56.892000px;}
._39{width:57.960000px;}
._3a{width:59.400000px;}
._59{width:60.793800px;}
._4d{width:61.990200px;}
._4e{width:63.552000px;}
._4b{width:64.956000px;}
._4a{width:66.300000px;}
._7a{width:67.320000px;}
._7b{width:68.772000px;}
._5f{width:71.700000px;}
._60{width:72.720000px;}
._6e{width:73.776000px;}
._3f{width:75.528000px;}
._3e{width:76.812000px;}
._61{width:78.252000px;}
._6a{width:80.160000px;}
._40{width:81.762000px;}
._47{width:83.172000px;}
._48{width:84.180000px;}
._72{width:86.016000px;}
._77{width:92.400000px;}
._75{width:93.732000px;}
._76{width:95.172000px;}
._58{width:99.864000px;}
._54{width:101.172000px;}
._53{width:102.576000px;}
._68{width:103.656000px;}
._46{width:104.748000px;}
._69{width:107.856000px;}
._73{width:111.960000px;}
._74{width:113.832000px;}
._55{width:115.344000px;}
._56{width:117.384000px;}
._3b{width:119.796000px;}
._3d{width:123.528000px;}
._4f{width:124.740000px;}
._5e{width:130.008000px;}
._5d{width:131.472000px;}
._42{width:134.784000px;}
._41{width:135.798000px;}
._71{width:136.860000px;}
._51{width:139.188000px;}
._52{width:140.508000px;}
._2d{width:147.948000px;}
._44{width:155.196000px;}
._43{width:156.288000px;}
._45{width:157.776000px;}
._6f{width:164.208000px;}
._70{width:165.576000px;}
._3c{width:172.080000px;}
._7d{width:173.088000px;}
._79{width:178.881000px;}
._64{width:179.952000px;}
._65{width:181.008000px;}
._2c{width:197.844000px;}
._66{width:201.840000px;}
._67{width:203.388000px;}
._63{width:209.568000px;}
._5a{width:210.924000px;}
._5c{width:299.124000px;}
._5b{width:300.312000px;}
._6d{width:304.084800px;}
._6b{width:305.808000px;}
._6c{width:307.404000px;}
._50{width:338.736000px;}
._57{width:373.992000px;}
._78{width:463.572000px;}
._62{width:535.368000px;}
._7e{width:564.708000px;}
._4c{width:579.156000px;}
._7c{width:668.952000px;}
._6{width:837.450000px;}
._11{width:846.450000px;}
.fca{color:rgb(210,0,149);}
.fc9{color:rgb(112,173,71);}
.fc8{color:rgb(0,176,240);}
.fc7{color:rgb(192,0,0);}
.fc5{color:rgb(9,79,209);}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(68,114,196);}
.fc1{color:transparent;}
.fcc{color:rgb(237,125,49);}
.fcb{color:rgb(68,84,106);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:24.000000px;}
.fse{font-size:33.000000px;}
.fsf{font-size:33.150000px;}
.fs12{font-size:36.000000px;}
.fsb{font-size:39.000000px;}
.fs10{font-size:39.150000px;}
.fsc{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs11{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs14{font-size:60.150000px;}
.fs13{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs1{font-size:102.000000px;}
.fs5{font-size:108.000000px;}
.fs8{font-size:120.000000px;}
.y40{bottom:-36.750000px;}
.y3f{bottom:-16.125000px;}
.y2b5{bottom:-11.130000px;}
.y154{bottom:-9.795000px;}
.y1ba{bottom:-6.930000px;}
.y2ab{bottom:-0.045000px;}
.y0{bottom:0.000000px;}
.y2a7{bottom:0.075000px;}
.y2a9{bottom:0.195000px;}
.y1c4{bottom:2.745000px;}
.y13f{bottom:3.300000px;}
.y2ad{bottom:3.330000px;}
.y3fb{bottom:3.495000px;}
.y217{bottom:4.455000px;}
.y1aa{bottom:5.400000px;}
.y1ce{bottom:5.745000px;}
.y21a{bottom:6.330000px;}
.y1dd{bottom:6.630000px;}
.y1a8{bottom:7.320000px;}
.y1a6{bottom:7.725000px;}
.y3e{bottom:7.875000px;}
.y1b5{bottom:8.025000px;}
.y1b0{bottom:8.070000px;}
.y151{bottom:8.505000px;}
.y153{bottom:8.580000px;}
.y1f1{bottom:8.820000px;}
.y1ac{bottom:9.120000px;}
.y392{bottom:10.875000px;}
.y2b1{bottom:10.980000px;}
.y2b3{bottom:10.995000px;}
.y1c8{bottom:14.445000px;}
.y1b7{bottom:14.745000px;}
.y1b9{bottom:15.195000px;}
.y13d{bottom:15.330000px;}
.y1c6{bottom:15.570000px;}
.y1b2{bottom:16.320000px;}
.y1cd{bottom:16.995000px;}
.y1b4{bottom:19.275000px;}
.y1af{bottom:19.320000px;}
.y1bf{bottom:19.695000px;}
.y1ee{bottom:20.100000px;}
.y3fa{bottom:20.730000px;}
.y14f{bottom:20.880000px;}
.y216{bottom:21.705000px;}
.y1e3{bottom:22.350000px;}
.y1f3{bottom:23.070000px;}
.y219{bottom:23.580000px;}
.y1c2{bottom:25.275000px;}
.y13b{bottom:27.330000px;}
.y1be{bottom:29.445000px;}
.y1ca{bottom:30.900000px;}
.y3d{bottom:33.045000px;}
.y14e{bottom:35.130000px;}
.y3f9{bottom:37.980000px;}
.y139{bottom:39.330000px;}
.y1ea{bottom:40.320000px;}
.y1df{bottom:40.350000px;}
.y14c{bottom:48.255000px;}
.y142{bottom:50.955000px;}
.y1e6{bottom:51.225000px;}
.y3c{bottom:56.295000px;}
.y138{bottom:57.330000px;}
.y16{bottom:57.787500px;}
.y14a{bottom:61.005000px;}
.y141{bottom:68.955000px;}
.y148{bottom:74.130000px;}
.y3b{bottom:76.920000px;}
.y15{bottom:78.412500px;}
.y147{bottom:92.550000px;}
.y3a{bottom:97.920000px;}
.y3d8{bottom:111.412500px;}
.yc2{bottom:111.787500px;}
.y162{bottom:112.162500px;}
.y229{bottom:114.037500px;}
.y3d7{bottom:114.412500px;}
.yc6{bottom:115.162500px;}
.y397{bottom:115.537500px;}
.y1db{bottom:116.662500px;}
.y109{bottom:118.162500px;}
.y2a5{bottom:118.537500px;}
.y39{bottom:118.545000px;}
.y14{bottom:120.037500px;}
.y25a{bottom:121.162500px;}
.y78{bottom:121.912500px;}
.yba{bottom:122.287500px;}
.y96{bottom:123.412500px;}
.ye7{bottom:123.787500px;}
.y348{bottom:125.287500px;}
.y391{bottom:125.662500px;}
.y23e{bottom:127.912500px;}
.yc1{bottom:129.037500px;}
.y343{bottom:131.662500px;}
.yc5{bottom:132.412500px;}
.y28c{bottom:133.162500px;}
.y174{bottom:135.787500px;}
.y36b{bottom:136.162500px;}
.y1a4{bottom:136.912500px;}
.y214{bottom:137.287500px;}
.y31{bottom:137.662500px;}
.y387{bottom:139.162500px;}
.y359{bottom:140.287500px;}
.yf8{bottom:141.037500px;}
.y125{bottom:141.787500px;}
.y112{bottom:142.912500px;}
.y186{bottom:143.287500px;}
.y334{bottom:143.662500px;}
.y38{bottom:143.670000px;}
.y205{bottom:145.162500px;}
.y316{bottom:145.537500px;}
.yda{bottom:145.912500px;}
.yc0{bottom:146.287500px;}
.y3a0{bottom:147.412500px;}
.y3e7{bottom:147.787500px;}
.y251{bottom:148.912500px;}
.yc4{bottom:149.662500px;}
.y32c{bottom:150.420000px;}
.y26b{bottom:150.795000px;}
.yd7{bottom:151.170000px;}
.y249{bottom:151.530000px;}
.y3d6{bottom:152.670000px;}
.y77{bottom:153.045000px;}
.y161{bottom:153.420000px;}
.y228{bottom:155.280000px;}
.y36f{bottom:155.655000px;}
.y2e8{bottom:156.795000px;}
.y1da{bottom:157.920000px;}
.y2c7{bottom:159.030000px;}
.y108{bottom:159.420000px;}
.y2a4{bottom:160.170000px;}
.y27c{bottom:161.295000px;}
.y3ea{bottom:161.655000px;}
.y13{bottom:162.030000px;}
.y259{bottom:162.405000px;}
.yb9{bottom:163.545000px;}
.y95{bottom:165.030000px;}
.y3e5{bottom:165.405000px;}
.y136{bottom:166.920000px;}
.y37{bottom:166.950000px;}
.y23d{bottom:169.155000px;}
.y3c0{bottom:169.920000px;}
.y19c{bottom:171.420000px;}
.y342{bottom:172.920000px;}
.yfb{bottom:174.075000px;}
.y28b{bottom:174.825000px;}
.y173{bottom:177.075000px;}
.y3be{bottom:177.450000px;}
.y36a{bottom:177.825000px;}
.y1a3{bottom:178.200000px;}
.y213{bottom:178.575000px;}
.y3e9{bottom:178.950000px;}
.y386{bottom:180.450000px;}
.ybf{bottom:180.825000px;}
.yc3{bottom:181.575000px;}
.yf7{bottom:182.700000px;}
.y124{bottom:183.075000px;}
.y2f5{bottom:183.450000px;}
.y76{bottom:183.825000px;}
.y111{bottom:184.200000px;}
.y185{bottom:184.575000px;}
.y333{bottom:184.950000px;}
.y204{bottom:186.825000px;}
.yd9{bottom:187.200000px;}
.y36{bottom:187.575000px;}
.y39f{bottom:188.700000px;}
.y250{bottom:190.200000px;}
.y3e6{bottom:191.325000px;}
.y32b{bottom:191.700000px;}
.y26a{bottom:192.450000px;}
.yd6{bottom:192.825000px;}
.y248{bottom:193.200000px;}
.yfa{bottom:193.950000px;}
.y3d5{bottom:194.325000px;}
.y160{bottom:195.075000px;}
.y227{bottom:196.575000px;}
.y36e{bottom:196.950000px;}
.ybe{bottom:198.075000px;}
.y2e7{bottom:198.450000px;}
.y2af{bottom:199.200000px;}
.y1d9{bottom:199.575000px;}
.y30{bottom:199.950000px;}
.y107{bottom:200.700000px;}
.y2a3{bottom:201.450000px;}
.y27b{bottom:202.575000px;}
.y12{bottom:203.700000px;}
.yb8{bottom:205.200000px;}
.y94{bottom:206.325000px;}
.ye6{bottom:206.700000px;}
.y35{bottom:208.200000px;}
.y135{bottom:208.575000px;}
.y3e8{bottom:210.075000px;}
.y23c{bottom:210.825000px;}
.y19b{bottom:212.700000px;}
.y341{bottom:214.575000px;}
.y75{bottom:214.950000px;}
.ybd{bottom:215.325000px;}
.y28a{bottom:216.075000px;}
.y2ae{bottom:216.450000px;}
.y172{bottom:218.700000px;}
.y369{bottom:219.075000px;}
.y1a2{bottom:219.450000px;}
.y395{bottom:219.825000px;}
.y212{bottom:220.200000px;}
.y385{bottom:221.700000px;}
.y358{bottom:223.200000px;}
.yf6{bottom:223.950000px;}
.y123{bottom:224.325000px;}
.y2f4{bottom:224.700000px;}
.yf9{bottom:225.825000px;}
.y3b1{bottom:226.200000px;}
.y332{bottom:226.575000px;}
.y184{bottom:227.325000px;}
.y203{bottom:228.075000px;}
.y315{bottom:228.450000px;}
.yd8{bottom:228.825000px;}
.y34{bottom:229.200000px;}
.y39e{bottom:230.325000px;}
.y24f{bottom:231.450000px;}
.y300{bottom:231.825000px;}
.ybc{bottom:232.575000px;}
.y32a{bottom:232.950000px;}
.y269{bottom:233.700000px;}
.yd5{bottom:234.075000px;}
.y247{bottom:234.450000px;}
.y3d4{bottom:235.575000px;}
.y15f{bottom:236.325000px;}
.y2b8{bottom:236.700000px;}
.y394{bottom:237.075000px;}
.y226{bottom:238.200000px;}
.y2e6{bottom:239.700000px;}
.y1d8{bottom:240.825000px;}
.y2c6{bottom:241.950000px;}
.y106{bottom:242.325000px;}
.y2a2{bottom:243.075000px;}
.y27a{bottom:244.200000px;}
.y2d8{bottom:245.325000px;}
.yb7{bottom:246.450000px;}
.y11{bottom:247.200000px;}
.y93{bottom:247.950000px;}
.y3e4{bottom:248.325000px;}
.y54{bottom:249.450000px;}
.y134{bottom:249.825000px;}
.y23b{bottom:252.075000px;}
.y2b7{bottom:253.950000px;}
.y33{bottom:254.325000px;}
.y340{bottom:255.825000px;}
.y74{bottom:257.325000px;}
.y171{bottom:259.950000px;}
.y368{bottom:260.325000px;}
.y1a1{bottom:261.075000px;}
.y211{bottom:261.450000px;}
.y2f{bottom:261.825000px;}
.y384{bottom:263.325000px;}
.y357{bottom:264.450000px;}
.yf5{bottom:265.200000px;}
.y122{bottom:265.950000px;}
.y110{bottom:267.075000px;}
.y3b0{bottom:267.450000px;}
.y331{bottom:267.825000px;}
.y183{bottom:268.950000px;}
.y241{bottom:269.325000px;}
.y202{bottom:269.700000px;}
.ya5{bottom:270.075000px;}
.y39d{bottom:271.575000px;}
.y3f7{bottom:272.325000px;}
.ybb{bottom:273.075000px;}
.y329{bottom:274.575000px;}
.y268{bottom:274.950000px;}
.yd4{bottom:275.700000px;}
.y246{bottom:276.075000px;}
.y3d3{bottom:277.200000px;}
.y15e{bottom:277.575000px;}
.y36d{bottom:277.950000px;}
.y225{bottom:279.450000px;}
.y2e5{bottom:280.950000px;}
.y1a0{bottom:281.325000px;}
.y1d7{bottom:282.075000px;}
.y2c5{bottom:283.200000px;}
.y105{bottom:283.575000px;}
.y2a1{bottom:284.325000px;}
.y279{bottom:285.450000px;}
.y2d7{bottom:286.575000px;}
.yb6{bottom:288.075000px;}
.y393{bottom:288.825000px;}
.y92{bottom:289.200000px;}
.ye5{bottom:289.575000px;}
.y3b7{bottom:290.325000px;}
.y10{bottom:290.700000px;}
.y347{bottom:291.075000px;}
.y133{bottom:291.450000px;}
.y23a{bottom:293.700000px;}
.y2b6{bottom:294.075000px;}
.y19a{bottom:295.575000px;}
.y33f{bottom:297.075000px;}
.y19f{bottom:298.575000px;}
.y289{bottom:298.950000px;}
.y73{bottom:300.450000px;}
.y170{bottom:301.200000px;}
.y3bd{bottom:301.575000px;}
.y367{bottom:301.950000px;}
.y3e3{bottom:302.745000px;}
.y210{bottom:303.120000px;}
.y258{bottom:304.605000px;}
.y356{bottom:305.745000px;}
.y3f8{bottom:306.750000px;}
.yf4{bottom:306.870000px;}
.y121{bottom:307.230000px;}
.y2f3{bottom:307.605000px;}
.y10f{bottom:308.745000px;}
.y182{bottom:310.245000px;}
.y201{bottom:310.980000px;}
.y403{bottom:311.355000px;}
.ya4{bottom:311.745000px;}
.y39c{bottom:312.870000px;}
.y3f6{bottom:313.620000px;}
.y24e{bottom:314.355000px;}
.y19e{bottom:315.870000px;}
.y37c{bottom:316.245000px;}
.y267{bottom:316.620000px;}
.yd3{bottom:316.995000px;}
.y245{bottom:317.355000px;}
.y3d2{bottom:318.495000px;}
.y15d{bottom:319.245000px;}
.y290{bottom:320.370000px;}
.y224{bottom:321.105000px;}
.y2e4{bottom:322.620000px;}
.y1d6{bottom:323.745000px;}
.y2e{bottom:324.105000px;}
.y2c4{bottom:324.855000px;}
.y104{bottom:325.245000px;}
.y2a0{bottom:325.620000px;}
.y278{bottom:327.120000px;}
.y2d6{bottom:328.230000px;}
.yb5{bottom:329.370000px;}
.y91{bottom:330.495000px;}
.ye4{bottom:330.855000px;}
.y72{bottom:331.230000px;}
.y53{bottom:332.370000px;}
.y132{bottom:332.745000px;}
.yf{bottom:334.230000px;}
.y239{bottom:334.980000px;}
.y199{bottom:337.245000px;}
.y33e{bottom:338.745000px;}
.y288{bottom:340.245000px;}
.y3b6{bottom:342.120000px;}
.y16f{bottom:342.870000px;}
.y366{bottom:343.245000px;}
.y3e2{bottom:343.995000px;}
.y20f{bottom:344.355000px;}
.y257{bottom:345.870000px;}
.y383{bottom:346.245000px;}
.y36c{bottom:346.995000px;}
.y355{bottom:347.370000px;}
.y19d{bottom:347.730000px;}
.yf3{bottom:348.105000px;}
.y120{bottom:348.870000px;}
.y3af{bottom:350.370000px;}
.y1ad{bottom:350.625000px;}
.y181{bottom:351.855000px;}
.y200{bottom:352.245000px;}
.y314{bottom:352.620000px;}
.ya3{bottom:352.995000px;}
.y39b{bottom:354.480000px;}
.y3f5{bottom:354.855000px;}
.y24d{bottom:355.995000px;}
.y3bc{bottom:357.120000px;}
.y328{bottom:357.495000px;}
.y266{bottom:357.855000px;}
.y2b4{bottom:358.125000px;}
.yd2{bottom:358.230000px;}
.y244{bottom:358.605000px;}
.y3d1{bottom:359.745000px;}
.y15c{bottom:360.495000px;}
.y1d5{bottom:360.870000px;}
.y71{bottom:362.370000px;}
.y2e3{bottom:363.870000px;}
.y2b0{bottom:364.125000px;}
.y2c3{bottom:366.120000px;}
.y103{bottom:366.495000px;}
.y29f{bottom:367.245000px;}
.y277{bottom:368.355000px;}
.y2d5{bottom:369.495000px;}
.yb4{bottom:370.620000px;}
.y1ab{bottom:370.875000px;}
.y90{bottom:372.105000px;}
.y30a{bottom:372.495000px;}
.y28f{bottom:373.245000px;}
.y52{bottom:373.620000px;}
.y131{bottom:373.995000px;}
.y238{bottom:376.245000px;}
.y396{bottom:376.995000px;}
.ye{bottom:377.745000px;}
.y198{bottom:378.480000px;}
.y243{bottom:378.855000px;}
.y33d{bottom:379.995000px;}
.y3bb{bottom:380.370000px;}
.y287{bottom:381.855000px;}
.y16e{bottom:384.120000px;}
.y365{bottom:384.855000px;}
.y3e1{bottom:385.230000px;}
.y20e{bottom:385.605000px;}
.y2d{bottom:385.995000px;}
.y256{bottom:387.495000px;}
.y354{bottom:388.605000px;}
.yf2{bottom:389.745000px;}
.y11f{bottom:390.120000px;}
.y28e{bottom:390.495000px;}
.y1d4{bottom:390.870000px;}
.y3ae{bottom:391.605000px;}
.y180{bottom:393.120000px;}
.y70{bottom:393.495000px;}
.y1ff{bottom:393.870000px;}
.ya2{bottom:394.245000px;}
.y1b6{bottom:395.250000px;}
.y39a{bottom:395.730000px;}
.y242{bottom:396.120000px;}
.y3f4{bottom:396.495000px;}
.y2b2{bottom:396.750000px;}
.y24c{bottom:397.245000px;}
.y3ba{bottom:397.620000px;}
.y327{bottom:398.730000px;}
.y37b{bottom:399.120000px;}
.y265{bottom:399.495000px;}
.yd1{bottom:399.870000px;}
.y3d0{bottom:401.370000px;}
.y15b{bottom:402.120000px;}
.y223{bottom:403.620000px;}
.y2e2{bottom:405.120000px;}
.y2c2{bottom:407.370000px;}
.y1c1{bottom:407.625000px;}
.y102{bottom:407.745000px;}
.y1d3{bottom:408.120000px;}
.y240{bottom:408.495000px;}
.y276{bottom:409.620000px;}
.y2d4{bottom:410.745000px;}
.y1cc{bottom:411.750000px;}
.yb3{bottom:412.245000px;}
.y8f{bottom:413.370000px;}
.ye3{bottom:413.745000px;}
.y3b9{bottom:414.870000px;}
.y51{bottom:415.245000px;}
.y130{bottom:415.620000px;}
.y237{bottom:417.870000px;}
.y197{bottom:419.745000px;}
.yd{bottom:420.870000px;}
.y1c3{bottom:421.620000px;}
.y28d{bottom:421.995000px;}
.y286{bottom:423.120000px;}
.y6f{bottom:424.620000px;}
.y1d2{bottom:425.370000px;}
.y16d{bottom:425.745000px;}
.y364{bottom:426.120000px;}
.y3e0{bottom:426.870000px;}
.y20d{bottom:427.245000px;}
.y255{bottom:428.745000px;}
.y353{bottom:429.870000px;}
.yf1{bottom:430.995000px;}
.y11e{bottom:431.400000px;}
.y2f2{bottom:431.775000px;}
.y3b8{bottom:432.150000px;}
.y3ad{bottom:433.275000px;}
.y17f{bottom:434.400000px;}
.y24b{bottom:434.775000px;}
.y1fe{bottom:435.150000px;}
.y313{bottom:435.525000px;}
.ya1{bottom:435.900000px;}
.y399{bottom:437.400000px;}
.y3f3{bottom:437.775000px;}
.y2ff{bottom:438.900000px;}
.y326{bottom:440.025000px;}
.y37a{bottom:440.400000px;}
.y264{bottom:440.775000px;}
.yd0{bottom:441.150000px;}
.y1d1{bottom:442.650000px;}
.y15a{bottom:443.400000px;}
.y222{bottom:445.275000px;}
.y2e1{bottom:446.775000px;}
.y2c{bottom:448.275000px;}
.y2c1{bottom:449.025000px;}
.y101{bottom:449.400000px;}
.y29e{bottom:450.150000px;}
.y275{bottom:451.275000px;}
.y2d3{bottom:452.400000px;}
.yb2{bottom:453.525000px;}
.y8e{bottom:455.025000px;}
.y309{bottom:455.400000px;}
.y6e{bottom:455.775000px;}
.y50{bottom:456.525000px;}
.y12f{bottom:456.900000px;}
.y236{bottom:459.150000px;}
.y1d0{bottom:459.900000px;}
.y196{bottom:461.400000px;}
.y1a9{bottom:462.750000px;}
.y33c{bottom:462.900000px;}
.yc{bottom:464.400000px;}
.y24a{bottom:465.900000px;}
.y16c{bottom:466.650000px;}
.y363{bottom:467.400000px;}
.y23f{bottom:468.150000px;}
.y20c{bottom:468.525000px;}
.y254{bottom:470.400000px;}
.y352{bottom:471.525000px;}
.yf0{bottom:472.275000px;}
.y11d{bottom:473.025000px;}
.y1b3{bottom:473.625000px;}
.y3ac{bottom:474.525000px;}
.y17e{bottom:476.025000px;}
.y1fd{bottom:476.775000px;}
.ya0{bottom:477.150000px;}
.y398{bottom:478.650000px;}
.y3f2{bottom:479.025000px;}
.y2fe{bottom:480.150000px;}
.y1c9{bottom:481.500000px;}
.y325{bottom:481.650000px;}
.y263{bottom:482.025000px;}
.y1cf{bottom:482.400000px;}
.ycf{bottom:482.775000px;}
.y3cf{bottom:484.275000px;}
.y159{bottom:484.650000px;}
.y6d{bottom:486.525000px;}
.y2e0{bottom:488.025000px;}
.y1bb{bottom:489.375000px;}
.y2c0{bottom:490.275000px;}
.y100{bottom:490.650000px;}
.y29d{bottom:491.400000px;}
.y274{bottom:492.525000px;}
.y2d2{bottom:493.650000px;}
.yb1{bottom:495.150000px;}
.y8d{bottom:496.275000px;}
.y308{bottom:496.650000px;}
.y1bc{bottom:497.400000px;}
.y4f{bottom:497.775000px;}
.y12e{bottom:498.150000px;}
.y235{bottom:500.775000px;}
.y1cb{bottom:501.150000px;}
.y195{bottom:502.650000px;}
.y33b{bottom:504.150000px;}
.y285{bottom:506.025000px;}
.yb{bottom:507.525000px;}
.y362{bottom:509.025000px;}
.y16b{bottom:509.775000px;}
.y2b{bottom:510.525000px;}
.y253{bottom:511.650000px;}
.y351{bottom:512.775000px;}
.yef{bottom:513.900000px;}
.y11c{bottom:514.275000px;}
.y2f1{bottom:514.650000px;}
.y3ab{bottom:515.775000px;}
.y17d{bottom:517.275000px;}
.y1fc{bottom:518.025000px;}
.y402{bottom:518.400000px;}
.y9f{bottom:518.775000px;}
.y3f1{bottom:520.650000px;}
.y2fd{bottom:521.400000px;}
.y158{bottom:522.150000px;}
.y324{bottom:522.900000px;}
.y379{bottom:523.275000px;}
.y262{bottom:523.650000px;}
.yce{bottom:524.025000px;}
.y3ce{bottom:525.525000px;}
.y221{bottom:528.150000px;}
.y6c{bottom:528.900000px;}
.y2df{bottom:529.650000px;}
.y32{bottom:530.025000px;}
.y2bf{bottom:531.900000px;}
.yff{bottom:532.275000px;}
.y29c{bottom:532.650000px;}
.y273{bottom:533.775000px;}
.y2d1{bottom:535.275000px;}
.yb0{bottom:536.400000px;}
.y8c{bottom:537.525000px;}
.ye2{bottom:537.900000px;}
.y4e{bottom:539.400000px;}
.y12d{bottom:539.775000px;}
.y234{bottom:542.025000px;}
.y2fc{bottom:543.150000px;}
.y1bd{bottom:543.375000px;}
.y194{bottom:544.275000px;}
.y33a{bottom:545.775000px;}
.y1e9{bottom:546.000000px;}
.y284{bottom:547.275000px;}
.ya{bottom:549.525000px;}
.y361{bottom:550.275000px;}
.y16a{bottom:551.025000px;}
.y20b{bottom:551.400000px;}
.y1c0{bottom:552.900000px;}
.y382{bottom:553.275000px;}
.y1f5{bottom:554.250000px;}
.y350{bottom:554.400000px;}
.yee{bottom:555.150000px;}
.y11b{bottom:555.525000px;}
.y2f0{bottom:555.900000px;}
.y3aa{bottom:557.400000px;}
.y17c{bottom:558.525000px;}
.y1b1{bottom:559.500000px;}
.y312{bottom:559.650000px;}
.y9e{bottom:560.070000px;}
.y157{bottom:560.445000px;}
.y3f0{bottom:561.945000px;}
.y323{bottom:564.195000px;}
.y378{bottom:564.570000px;}
.y1ec{bottom:564.945000px;}
.ycd{bottom:565.320000px;}
.y3cd{bottom:566.820000px;}
.y1f6{bottom:567.195000px;}
.y220{bottom:569.445000px;}
.y2de{bottom:570.945000px;}
.y6b{bottom:572.070000px;}
.y2a{bottom:572.445000px;}
.y2be{bottom:573.195000px;}
.yfe{bottom:573.570000px;}
.y29b{bottom:574.320000px;}
.y1eb{bottom:575.070000px;}
.y272{bottom:575.445000px;}
.y2d0{bottom:576.570000px;}
.yaf{bottom:577.695000px;}
.y2fb{bottom:578.820000px;}
.y8b{bottom:579.195000px;}
.y307{bottom:579.570000px;}
.y1fb{bottom:580.320000px;}
.y4d{bottom:580.695000px;}
.y12c{bottom:581.070000px;}
.y233{bottom:583.320000px;}
.y193{bottom:585.570000px;}
.y1c7{bottom:586.125000px;}
.y339{bottom:587.070000px;}
.y283{bottom:588.570000px;}
.y21f{bottom:589.695000px;}
.y360{bottom:591.570000px;}
.y3df{bottom:592.320000px;}
.y169{bottom:592.695000px;}
.y381{bottom:594.570000px;}
.y9{bottom:594.945000px;}
.y34f{bottom:595.695000px;}
.y2fa{bottom:596.070000px;}
.yed{bottom:596.445000px;}
.y11a{bottom:597.195000px;}
.y3a9{bottom:598.695000px;}
.y17b{bottom:600.195000px;}
.y311{bottom:600.945000px;}
.y9d{bottom:601.320000px;}
.y6a{bottom:603.195000px;}
.y252{bottom:603.570000px;}
.y322{bottom:605.820000px;}
.y261{bottom:606.195000px;}
.ycc{bottom:606.945000px;}
.y3cc{bottom:608.445000px;}
.y156{bottom:612.195000px;}
.y2f9{bottom:613.320000px;}
.y2bd{bottom:614.445000px;}
.yfd{bottom:614.820000px;}
.y29a{bottom:615.570000px;}
.y271{bottom:616.695000px;}
.y2cf{bottom:617.820000px;}
.yae{bottom:619.320000px;}
.y1b8{bottom:619.500000px;}
.y1f2{bottom:619.875000px;}
.y8a{bottom:620.445000px;}
.ye1{bottom:620.820000px;}
.y1fa{bottom:621.945000px;}
.y4c{bottom:622.320000px;}
.y12b{bottom:622.695000px;}
.y21e{bottom:624.195000px;}
.y232{bottom:624.945000px;}
.y192{bottom:626.820000px;}
.y338{bottom:628.695000px;}
.y282{bottom:630.195000px;}
.y2f8{bottom:630.570000px;}
.y8{bottom:632.445000px;}
.y1f4{bottom:632.820000px;}
.y35f{bottom:633.195000px;}
.y69{bottom:633.945000px;}
.y20a{bottom:634.320000px;}
.y29{bottom:634.695000px;}
.y380{bottom:635.820000px;}
.y1ae{bottom:636.000000px;}
.y34e{bottom:636.945000px;}
.yec{bottom:638.070000px;}
.y119{bottom:638.445000px;}
.y3a8{bottom:639.945000px;}
.y17a{bottom:641.445000px;}
.y310{bottom:642.195000px;}
.y401{bottom:642.570000px;}
.y9c{bottom:642.945000px;}
.y3ef{bottom:644.820000px;}
.y321{bottom:647.070000px;}
.y2dd{bottom:647.445000px;}
.y260{bottom:647.820000px;}
.ycb{bottom:648.195000px;}
.y3cb{bottom:649.695000px;}
.y155{bottom:652.320000px;}
.y1e5{bottom:652.875000px;}
.y2bc{bottom:656.070000px;}
.y390{bottom:656.445000px;}
.y2ef{bottom:656.820000px;}
.y299{bottom:657.195000px;}
.y1c5{bottom:657.375000px;}
.y270{bottom:658.320000px;}
.y21d{bottom:658.695000px;}
.y34d{bottom:660.195000px;}
.yad{bottom:660.570000px;}
.y89{bottom:662.070000px;}
.y306{bottom:662.445000px;}
.y1f9{bottom:663.195000px;}
.y4b{bottom:663.570000px;}
.y12a{bottom:663.945000px;}
.y2dc{bottom:664.695000px;}
.y68{bottom:665.070000px;}
.y231{bottom:666.195000px;}
.y2f7{bottom:666.570000px;}
.y191{bottom:668.445000px;}
.y1a7{bottom:669.000000px;}
.yfc{bottom:669.195000px;}
.y7{bottom:669.945000px;}
.y281{bottom:671.445000px;}
.y1f0{bottom:675.000000px;}
.y168{bottom:675.195000px;}
.y209{bottom:675.570000px;}
.y34c{bottom:677.445000px;}
.yeb{bottom:679.320000px;}
.y118{bottom:680.070000px;}
.y3a7{bottom:681.570000px;}
.y2db{bottom:681.945000px;}
.ye0{bottom:682.320000px;}
.y1e8{bottom:682.695000px;}
.y179{bottom:683.070000px;}
.y2f6{bottom:683.820000px;}
.y9b{bottom:684.195000px;}
.y21c{bottom:685.320000px;}
.y3ee{bottom:686.070000px;}
.y320{bottom:688.725000px;}
.y25f{bottom:689.100000px;}
.yca{bottom:689.475000px;}
.y3ca{bottom:691.350000px;}
.y35e{bottom:692.475000px;}
.y1e7{bottom:692.850000px;}
.y34b{bottom:694.725000px;}
.y67{bottom:696.225000px;}
.y28{bottom:696.600000px;}
.y1a5{bottom:696.750000px;}
.y38f{bottom:697.725000px;}
.y2ee{bottom:698.100000px;}
.y298{bottom:698.475000px;}
.y2da{bottom:699.225000px;}
.ydf{bottom:699.600000px;}
.yea{bottom:699.975000px;}
.yac{bottom:701.850000px;}
.y88{bottom:703.350000px;}
.y305{bottom:703.725000px;}
.y1f8{bottom:704.475000px;}
.y4a{bottom:704.850000px;}
.y129{bottom:705.225000px;}
.y230{bottom:707.475000px;}
.y190{bottom:709.725000px;}
.y337{bottom:711.225000px;}
.y34a{bottom:711.975000px;}
.y2bb{bottom:712.350000px;}
.y167{bottom:712.725000px;}
.y280{bottom:713.100000px;}
.y3bf{bottom:714.225000px;}
.y3de{bottom:716.475000px;}
.yde{bottom:716.850000px;}
.y2ed{bottom:718.350000px;}
.y2ce{bottom:718.725000px;}
.y117{bottom:721.350000px;}
.y3a6{bottom:722.850000px;}
.y178{bottom:724.350000px;}
.y1ed{bottom:724.875000px;}
.y400{bottom:725.100000px;}
.y9a{bottom:725.475000px;}
.y66{bottom:727.350000px;}
.y2ba{bottom:729.600000px;}
.y31f{bottom:729.975000px;}
.y2d9{bottom:730.350000px;}
.y25e{bottom:730.725000px;}
.yc9{bottom:731.100000px;}
.y336{bottom:731.475000px;}
.y3c9{bottom:732.600000px;}
.ydd{bottom:734.100000px;}
.y1ef{bottom:734.850000px;}
.y2ec{bottom:735.600000px;}
.y166{bottom:735.975000px;}
.y26f{bottom:737.100000px;}
.ye9{bottom:737.475000px;}
.y38e{bottom:738.975000px;}
.y297{bottom:739.725000px;}
.y3ed{bottom:741.600000px;}
.y208{bottom:743.100000px;}
.yab{bottom:743.475000px;}
.y349{bottom:743.850000px;}
.y87{bottom:744.600000px;}
.y304{bottom:744.975000px;}
.y6{bottom:745.350000px;}
.y1f7{bottom:746.100000px;}
.y49{bottom:746.475000px;}
.y128{bottom:746.850000px;}
.y35d{bottom:747.975000px;}
.y22f{bottom:749.100000px;}
.y18f{bottom:750.975000px;}
.y1de{bottom:751.125000px;}
.ydc{bottom:751.350000px;}
.y2eb{bottom:752.850000px;}
.y165{bottom:753.225000px;}
.y27f{bottom:754.350000px;}
.y2b9{bottom:757.350000px;}
.y65{bottom:758.100000px;}
.y27{bottom:758.850000px;}
.y10e{bottom:759.600000px;}
.y2cd{bottom:759.975000px;}
.y207{bottom:760.350000px;}
.y30f{bottom:761.100000px;}
.y116{bottom:762.600000px;}
.y335{bottom:763.350000px;}
.y3a5{bottom:764.475000px;}
.y3ec{bottom:764.850000px;}
.y35c{bottom:765.225000px;}
.y177{bottom:765.600000px;}
.y20{bottom:766.725000px;}
.y99{bottom:767.100000px;}
.ydb{bottom:768.600000px;}
.ye8{bottom:769.350000px;}
.y1e1{bottom:770.100000px;}
.y164{bottom:770.475000px;}
.y31e{bottom:771.225000px;}
.y377{bottom:771.600000px;}
.yc8{bottom:772.350000px;}
.y3c8{bottom:773.850000px;}
.y10d{bottom:776.850000px;}
.y1e0{bottom:780.225000px;}
.y38d{bottom:780.600000px;}
.y25d{bottom:780.975000px;}
.y296{bottom:781.350000px;}
.y35b{bottom:782.475000px;}
.yaa{bottom:784.725000px;}
.y86{bottom:786.225000px;}
.y26e{bottom:786.600000px;}
.y5{bottom:787.350000px;}
.y48{bottom:787.725000px;}
.y127{bottom:788.100000px;}
.y1e2{bottom:789.000000px;}
.y22e{bottom:790.350000px;}
.y31d{bottom:791.475000px;}
.y18e{bottom:792.600000px;}
.y10c{bottom:794.100000px;}
.y27e{bottom:795.600000px;}
.y3eb{bottom:796.350000px;}
.y1f{bottom:797.850000px;}
.y30e{bottom:799.350000px;}
.y1e4{bottom:800.100000px;}
.y64{bottom:800.475000px;}
.y2cc{bottom:801.600000px;}
.y26d{bottom:803.850000px;}
.y115{bottom:804.225000px;}
.y2ea{bottom:804.600000px;}
.y3a4{bottom:805.725000px;}
.y176{bottom:807.225000px;}
.y3ff{bottom:807.975000px;}
.y98{bottom:808.350000px;}
.y31c{bottom:808.725000px;}
.y206{bottom:809.475000px;}
.y10b{bottom:811.350000px;}
.y376{bottom:813.225000px;}
.yc7{bottom:813.975000px;}
.y35a{bottom:814.350000px;}
.y1dc{bottom:814.875000px;}
.y3c7{bottom:815.475000px;}
.y30d{bottom:816.600000px;}
.y163{bottom:818.895000px;}
.y26{bottom:820.755000px;}
.y38c{bottom:821.895000px;}
.y295{bottom:822.630000px;}
.y31b{bottom:826.005000px;}
.ya9{bottom:826.380000px;}
.y85{bottom:827.505000px;}
.y303{bottom:827.880000px;}
.y47{bottom:829.020000px;}
.y346{bottom:829.380000px;}
.y4{bottom:830.880000px;}
.y22d{bottom:832.020000px;}
.y18d{bottom:833.880000px;}
.y30c{bottom:834.255000px;}
.y26c{bottom:835.005000px;}
.y2e9{bottom:839.130000px;}
.y3dd{bottom:841.005000px;}
.y126{bottom:842.895000px;}
.y31a{bottom:843.255000px;}
.y63{bottom:843.630000px;}
.y25c{bottom:844.755000px;}
.y114{bottom:845.520000px;}
.y3a3{bottom:847.005000px;}
.y1e{bottom:847.755000px;}
.y175{bottom:848.505000px;}
.y3fe{bottom:849.645000px;}
.y97{bottom:850.005000px;}
.y10a{bottom:851.505000px;}
.y375{bottom:854.505000px;}
.y30b{bottom:854.880000px;}
.y3c6{bottom:856.755000px;}
.y319{bottom:860.505000px;}
.y146{bottom:861.750000px;}
.y27d{bottom:862.005000px;}
.y25b{bottom:863.145000px;}
.y38b{bottom:863.505000px;}
.ya8{bottom:867.630000px;}
.y84{bottom:868.755000px;}
.y302{bottom:869.145000px;}
.y150{bottom:870.255000px;}
.y46{bottom:870.630000px;}
.y22c{bottom:873.270000px;}
.y62{bottom:874.755000px;}
.y18c{bottom:875.505000px;}
.y3{bottom:875.895000px;}
.y318{bottom:877.755000px;}
.y294{bottom:878.880000px;}
.y345{bottom:879.630000px;}
.y3dc{bottom:882.255000px;}
.y25{bottom:883.005000px;}
.y2cb{bottom:884.505000px;}
.y3a2{bottom:888.630000px;}
.y1d{bottom:889.380000px;}
.y113{bottom:890.880000px;}
.y5a{bottom:891.255000px;}
.y293{bottom:896.130000px;}
.y3c5{bottom:898.005000px;}
.y38a{bottom:904.755000px;}
.y61{bottom:905.505000px;}
.y317{bottom:908.880000px;}
.y14d{bottom:910.005000px;}
.y83{bottom:910.380000px;}
.y301{bottom:910.755000px;}
.y45{bottom:911.880000px;}
.y292{bottom:913.380000px;}
.y22b{bottom:914.505000px;}
.y18b{bottom:916.755000px;}
.ya7{bottom:922.005000px;}
.y14b{bottom:922.755000px;}
.y3db{bottom:923.505000px;}
.y2{bottom:925.380000px;}
.y2ca{bottom:925.755000px;}
.y3a1{bottom:929.880000px;}
.y1c{bottom:931.005000px;}
.y344{bottom:932.130000px;}
.y59{bottom:932.505000px;}
.y149{bottom:935.880000px;}
.y60{bottom:936.630000px;}
.y291{bottom:938.130000px;}
.y3c4{bottom:939.630000px;}
.y24{bottom:945.255000px;}
.y389{bottom:946.050000px;}
.y7d{bottom:947.175000px;}
.y82{bottom:951.675000px;}
.y3b5{bottom:952.050000px;}
.y44{bottom:953.550000px;}
.y330{bottom:956.175000px;}
.y18a{bottom:958.050000px;}
.y2aa{bottom:963.000000px;}
.y22a{bottom:965.175000px;}
.y2c9{bottom:967.050000px;}
.y5f{bottom:967.800000px;}
.y1{bottom:968.925000px;}
.y1b{bottom:973.050000px;}
.y3fd{bottom:973.800000px;}
.y58{bottom:974.175000px;}
.y374{bottom:975.300000px;}
.y7c{bottom:978.300000px;}
.y3c3{bottom:980.925000px;}
.y81{bottom:993.300000px;}
.y3b4{bottom:993.675000px;}
.y43{bottom:994.800000px;}
.y373{bottom:995.925000px;}
.y32f{bottom:997.425000px;}
.y5e{bottom:998.925000px;}
.y189{bottom:999.675000px;}
.y388{bottom:1000.425000px;}
.y3da{bottom:1006.425000px;}
.y23{bottom:1007.175000px;}
.y37f{bottom:1008.675000px;}
.y2c8{bottom:1012.425000px;}
.y372{bottom:1013.925000px;}
.y1a{bottom:1014.675000px;}
.y3fc{bottom:1015.050000px;}
.y57{bottom:1015.425000px;}
.y7b{bottom:1020.300000px;}
.y3c2{bottom:1022.550000px;}
.y371{bottom:1031.925000px;}
.y80{bottom:1034.550000px;}
.y3b3{bottom:1034.925000px;}
.y42{bottom:1036.050000px;}
.y32e{bottom:1039.050000px;}
.y5d{bottom:1040.925000px;}
.y3d9{bottom:1048.050000px;}
.y37e{bottom:1049.925000px;}
.y370{bottom:1050.675000px;}
.y19{bottom:1056.300000px;}
.y3b2{bottom:1056.675000px;}
.y56{bottom:1057.050000px;}
.y3c1{bottom:1060.050000px;}
.y140{bottom:1064.625000px;}
.y7a{bottom:1065.675000px;}
.y22{bottom:1069.425000px;}
.y137{bottom:1070.250000px;}
.ya6{bottom:1073.925000px;}
.y41{bottom:1077.705000px;}
.y2a8{bottom:1080.000000px;}
.y188{bottom:1082.580000px;}
.y2a6{bottom:1084.125000px;}
.y13e{bottom:1085.580000px;}
.y5c{bottom:1086.330000px;}
.y32d{bottom:1089.330000px;}
.y37d{bottom:1091.580000px;}
.y145{bottom:1091.955000px;}
.y7f{bottom:1094.205000px;}
.y13c{bottom:1097.580000px;}
.y18{bottom:1097.955000px;}
.y55{bottom:1098.330000px;}
.y144{bottom:1103.955000px;}
.y79{bottom:1108.830000px;}
.y13a{bottom:1109.580000px;}
.y218{bottom:1109.625000px;}
.y21b{bottom:1110.750000px;}
.y215{bottom:1111.500000px;}
.y143{bottom:1115.580000px;}
.y152{bottom:1122.750000px;}
.y7e{bottom:1128.330000px;}
.y21{bottom:1131.330000px;}
.y5b{bottom:1133.955000px;}
.y187{bottom:1136.580000px;}
.y17{bottom:1139.580000px;}
.y2ac{bottom:1140.750000px;}
.h57{height:1.875000px;}
.h53{height:11.250000px;}
.h41{height:15.750000px;}
.h2e{height:16.500000px;}
.h4a{height:18.000000px;}
.h2c{height:18.750000px;}
.h29{height:19.125000px;}
.h2f{height:20.250000px;}
.h3c{height:23.625000px;}
.h40{height:23.994141px;}
.h44{height:24.121582px;}
.h47{height:24.231226px;}
.h32{height:24.375000px;}
.h3a{height:24.750000px;}
.h37{height:24.814453px;}
.h36{height:24.927246px;}
.h49{height:25.993652px;}
.h3e{height:26.625000px;}
.h22{height:27.079102px;}
.h31{height:27.375000px;}
.h34{height:28.125000px;}
.h30{height:28.500000px;}
.h23{height:28.507324px;}
.h42{height:28.616968px;}
.h33{height:29.326172px;}
.h39{height:29.438965px;}
.h48{height:29.625000px;}
.h28{height:29.992676px;}
.h4d{height:30.750000px;}
.h27{height:31.245117px;}
.h45{height:31.500000px;}
.h55{height:31.875000px;}
.h4c{height:32.250000px;}
.h58{height:32.531250px;}
.h4b{height:32.625000px;}
.h50{height:32.822754px;}
.h25{height:32.893066px;}
.h2d{height:33.815918px;}
.h2a{height:33.837891px;}
.h38{height:34.875000px;}
.h21{height:35.085938px;}
.h56{height:35.991211px;}
.h3f{height:36.782227px;}
.h51{height:37.875000px;}
.h35{height:39.000000px;}
.h3b{height:39.990234px;}
.h3d{height:40.125000px;}
.h2b{height:40.664062px;}
.h4f{height:40.869141px;}
.h1e{height:41.660156px;}
.h10{height:47.988281px;}
.hd{height:48.796875px;}
.h59{height:49.042969px;}
.h1d{height:49.453125px;}
.h43{height:49.500000px;}
.h5b{height:49.576758px;}
.h15{height:49.992188px;}
.h4e{height:51.925781px;}
.he{height:52.136719px;}
.h5a{height:52.500000px;}
.h1b{height:52.646484px;}
.h54{height:53.709961px;}
.hf{height:53.789062px;}
.ha{height:54.158203px;}
.h3{height:56.481445px;}
.h1c{height:58.429688px;}
.h52{height:59.250000px;}
.h19{height:59.343750px;}
.h46{height:60.375000px;}
.h18{height:60.826172px;}
.h5{height:63.175781px;}
.h9{height:64.289062px;}
.h14{height:64.546875px;}
.h1{height:65.062500px;}
.h1f{height:66.117188px;}
.hc{height:68.440430px;}
.h20{height:68.625000px;}
.h13{height:69.234375px;}
.hb{height:69.925781px;}
.h11{height:73.195312px;}
.h4{height:73.705078px;}
.h2{height:73.860352px;}
.h16{height:75.304688px;}
.h17{height:78.205078px;}
.h24{height:79.500000px;}
.h1a{height:81.328125px;}
.h8{height:84.234375px;}
.h7{height:86.062500px;}
.h6{height:96.820312px;}
.h26{height:103.500000px;}
.h12{height:273.825000px;}
.h0{height:1263.000000px;}
.w1f{width:9.375000px;}
.w1e{width:11.250000px;}
.we{width:64.500000px;}
.w22{width:68.625000px;}
.w12{width:74.625000px;}
.w1c{width:79.875000px;}
.wd{width:88.125000px;}
.wc{width:88.500000px;}
.w21{width:95.625000px;}
.w16{width:100.875000px;}
.w15{width:101.250000px;}
.w4{width:103.875000px;}
.w23{width:104.625000px;}
.w8{width:105.750000px;}
.wf{width:106.125000px;}
.w11{width:107.250000px;}
.w10{width:114.750000px;}
.w1d{width:116.625000px;}
.w13{width:117.750000px;}
.w17{width:118.125000px;}
.w1a{width:129.000000px;}
.w24{width:133.950000px;}
.w18{width:139.500000px;}
.w9{width:149.625000px;}
.w14{width:152.250000px;}
.w7{width:154.500000px;}
.w5{width:162.750000px;}
.w19{width:163.500000px;}
.w1b{width:165.750000px;}
.wa{width:170.250000px;}
.wb{width:188.250000px;}
.w6{width:211.875000px;}
.w20{width:212.625000px;}
.w25{width:347.250000px;}
.w3{width:399.525000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x46{left:1.575000px;}
.x72{left:2.775000px;}
.x31{left:5.100000px;}
.x53{left:6.270000px;}
.x3f{left:8.700000px;}
.x2e{left:10.200000px;}
.x42{left:11.820000px;}
.x41{left:13.650000px;}
.x9f{left:14.820000px;}
.x5f{left:16.245000px;}
.x6c{left:17.880000px;}
.x5d{left:19.275000px;}
.x55{left:20.880000px;}
.x37{left:22.275000px;}
.x48{left:28.575000px;}
.x4e{left:35.400000px;}
.x47{left:36.495000px;}
.x59{left:40.395000px;}
.x34{left:44.400000px;}
.x51{left:47.445000px;}
.x4c{left:66.570000px;}
.xa0{left:101.475000px;}
.x6{left:106.537487px;}
.x27{left:107.662487px;}
.x28{left:109.162487px;}
.x17{left:110.662487px;}
.x3c{left:112.537487px;}
.x19{left:113.662487px;}
.x7f{left:114.787487px;}
.x1c{left:116.287487px;}
.x38{left:118.162487px;}
.x20{left:120.037487px;}
.xe{left:121.537487px;}
.x2b{left:123.412487px;}
.x11{left:124.537487px;}
.x5a{left:126.037487px;}
.x1a{left:127.912487px;}
.x26{left:129.824987px;}
.x1f{left:132.449987px;}
.xf{left:133.574987px;}
.x89{left:135.074987px;}
.x18{left:136.199987px;}
.x82{left:137.625000px;}
.x79{left:141.074987px;}
.x12{left:142.574987px;}
.x85{left:146.699987px;}
.x77{left:148.199987px;}
.x93{left:154.949987px;}
.xa2{left:159.824987px;}
.x97{left:162.074987px;}
.x3{left:168.449987px;}
.x64{left:176.250000px;}
.x3e{left:182.625000px;}
.x35{left:184.350000px;}
.x45{left:186.000000px;}
.x8c{left:192.074987px;}
.x8{left:196.949987px;}
.x23{left:198.449987px;}
.x66{left:199.500000px;}
.x2d{left:201.750000px;}
.x76{left:202.949987px;}
.x2a{left:205.949987px;}
.x65{left:207.824987px;}
.x1d{left:208.949987px;}
.x2f{left:210.449987px;}
.x5e{left:216.000000px;}
.x68{left:217.199987px;}
.x5{left:218.369987px;}
.x7d{left:220.994987px;}
.x21{left:232.619987px;}
.x3d{left:236.369987px;}
.x9a{left:243.494987px;}
.x61{left:251.369987px;}
.x60{left:252.494987px;}
.x67{left:254.744987px;}
.x4{left:273.119987px;}
.x96{left:283.619987px;}
.x81{left:302.625000px;}
.x71{left:307.274987px;}
.x86{left:312.000000px;}
.xb{left:313.274987px;}
.x98{left:315.524987px;}
.x33{left:321.000000px;}
.x5c{left:322.875000px;}
.x15{left:324.149987px;}
.x25{left:330.524987px;}
.x80{left:332.399987px;}
.xa1{left:334.274987px;}
.x7{left:336.149987px;}
.x8f{left:339.149987px;}
.x40{left:343.875000px;}
.x4d{left:346.125000px;}
.x87{left:347.250000px;}
.x88{left:355.125000px;}
.x36{left:361.500000px;}
.x4a{left:364.500000px;}
.x50{left:367.500000px;}
.x3a{left:372.149987px;}
.x5b{left:374.399987px;}
.x10{left:376.649987px;}
.x29{left:378.149987px;}
.x9d{left:379.274987px;}
.x14{left:380.399987px;}
.x49{left:386.625000px;}
.x7c{left:390.524987px;}
.x7a{left:396.569987px;}
.x4f{left:399.569987px;}
.x4b{left:404.069987px;}
.xd{left:408.195000px;}
.x9b{left:417.944987px;}
.x90{left:429.194987px;}
.x9e{left:431.625000px;}
.x43{left:436.500000px;}
.x13{left:439.319987px;}
.xc{left:443.069987px;}
.x2{left:446.819987px;}
.x73{left:496.125000px;}
.x83{left:506.625000px;}
.x30{left:533.250000px;}
.x62{left:537.000000px;}
.x32{left:542.099987px;}
.x1{left:550.349987px;}
.x69{left:563.250000px;}
.x63{left:567.599987px;}
.x1b{left:571.394987px;}
.x6d{left:574.875000px;}
.x44{left:579.000000px;}
.x6b{left:585.000000px;}
.x58{left:602.250000px;}
.x52{left:607.500000px;}
.x6a{left:608.519987px;}
.x6f{left:614.879987px;}
.x56{left:616.500000px;}
.x6e{left:617.504987px;}
.x54{left:622.500000px;}
.x74{left:638.625000px;}
.x57{left:644.144987px;}
.x9{left:646.754987px;}
.xa{left:648.254987px;}
.x94{left:653.879987px;}
.x95{left:659.924987px;}
.x16{left:665.924987px;}
.x78{left:671.924987px;}
.x39{left:674.174987px;}
.x2c{left:710.174987px;}
.x22{left:719.174987px;}
.x8d{left:732.674987px;}
.x9c{left:742.424987px;}
.x75{left:743.924987px;}
.x92{left:749.954987px;}
.x99{left:752.219987px;}
.x8e{left:753.719987px;}
.x7e{left:763.094987px;}
.x8b{left:766.469987px;}
.x70{left:773.219987px;}
.x7b{left:774.719987px;}
.x1e{left:776.954987px;}
.x91{left:779.204987px;}
.x3b{left:781.469987px;}
.x8a{left:784.454987px;}
.x24{left:787.829987px;}
.x84{left:798.344987px;}
@media print{
.v2{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls63{letter-spacing:-8.851200pt;}
.ls68{letter-spacing:-7.571200pt;}
.ls45{letter-spacing:-6.272000pt;}
.ls12{letter-spacing:-5.760000pt;}
.ls60{letter-spacing:-5.331200pt;}
.ls64{letter-spacing:-4.915200pt;}
.ls6b{letter-spacing:-4.416000pt;}
.lse{letter-spacing:-4.002133pt;}
.ls10{letter-spacing:-2.668800pt;}
.ls46{letter-spacing:-2.666667pt;}
.ls62{letter-spacing:-2.624000pt;}
.ls41{letter-spacing:-2.530667pt;}
.ls32{letter-spacing:-2.218667pt;}
.ls4f{letter-spacing:-1.728000pt;}
.ls1e{letter-spacing:-1.333333pt;}
.ls66{letter-spacing:-1.331200pt;}
.ls53{letter-spacing:-1.312000pt;}
.ls33{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.597333pt;}
.ls3a{letter-spacing:-0.586667pt;}
.lsd{letter-spacing:-0.574933pt;}
.ls11{letter-spacing:-0.557333pt;}
.ls21{letter-spacing:-0.460800pt;}
.ls42{letter-spacing:-0.450667pt;}
.ls17{letter-spacing:-0.448000pt;}
.ls40{letter-spacing:-0.440000pt;}
.ls49{letter-spacing:-0.435200pt;}
.ls24{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.416000pt;}
.ls43{letter-spacing:-0.322667pt;}
.ls30{letter-spacing:-0.312000pt;}
.lsf{letter-spacing:-0.304000pt;}
.ls48{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.152000pt;}
.ls5d{letter-spacing:-0.064160pt;}
.ls61{letter-spacing:-0.019200pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009600pt;}
.ls1a{letter-spacing:0.019200pt;}
.ls1b{letter-spacing:0.021333pt;}
.ls5f{letter-spacing:0.053333pt;}
.ls2e{letter-spacing:0.104000pt;}
.ls3b{letter-spacing:0.106667pt;}
.ls5b{letter-spacing:0.128000pt;}
.ls5e{letter-spacing:0.133333pt;}
.ls54{letter-spacing:0.154667pt;}
.ls51{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.181333pt;}
.ls18{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.253333pt;}
.ls2f{letter-spacing:0.277333pt;}
.ls19{letter-spacing:0.384000pt;}
.ls36{letter-spacing:0.416000pt;}
.ls50{letter-spacing:0.426667pt;}
.ls59{letter-spacing:0.435200pt;}
.ls9{letter-spacing:0.437333pt;}
.ls44{letter-spacing:0.452400pt;}
.ls3f{letter-spacing:0.456000pt;}
.ls7{letter-spacing:0.458667pt;}
.ls57{letter-spacing:0.460800pt;}
.lsa{letter-spacing:0.461333pt;}
.ls4c{letter-spacing:0.524800pt;}
.ls52{letter-spacing:0.533333pt;}
.ls2d{letter-spacing:0.554667pt;}
.ls4e{letter-spacing:0.586667pt;}
.ls58{letter-spacing:0.666400pt;}
.ls6{letter-spacing:0.666667pt;}
.ls47{letter-spacing:0.693333pt;}
.ls14{letter-spacing:0.709333pt;}
.ls2{letter-spacing:0.832000pt;}
.ls37{letter-spacing:0.876800pt;}
.ls3c{letter-spacing:0.915200pt;}
.ls25{letter-spacing:1.002667pt;}
.ls1f{letter-spacing:1.280000pt;}
.ls31{letter-spacing:1.282667pt;}
.ls4{letter-spacing:1.331200pt;}
.ls5{letter-spacing:1.333333pt;}
.ls23{letter-spacing:1.354667pt;}
.ls3e{letter-spacing:1.356800pt;}
.ls67{letter-spacing:1.386667pt;}
.ls28{letter-spacing:1.440000pt;}
.ls4b{letter-spacing:1.461333pt;}
.ls29{letter-spacing:2.666667pt;}
.ls4a{letter-spacing:2.773333pt;}
.ls26{letter-spacing:4.000000pt;}
.ls1d{letter-spacing:5.333333pt;}
.ls27{letter-spacing:6.666667pt;}
.ls35{letter-spacing:8.000000pt;}
.ls34{letter-spacing:9.333333pt;}
.ls56{letter-spacing:9.386667pt;}
.ls5a{letter-spacing:10.666667pt;}
.ls2c{letter-spacing:12.266667pt;}
.ls2b{letter-spacing:14.720000pt;}
.ls20{letter-spacing:17.333333pt;}
.ls39{letter-spacing:18.666667pt;}
.ls2a{letter-spacing:20.874667pt;}
.ls6a{letter-spacing:22.666667pt;}
.ls65{letter-spacing:24.106667pt;}
.ls3{letter-spacing:25.008000pt;}
.ls6c{letter-spacing:25.386667pt;}
.ls3d{letter-spacing:26.666667pt;}
.ls5c{letter-spacing:34.666667pt;}
.ls38{letter-spacing:49.008000pt;}
.ls55{letter-spacing:56.874667pt;}
.ls1c{letter-spacing:57.008000pt;}
.ls4d{letter-spacing:57.306667pt;}
.ls69{letter-spacing:99.946667pt;}
.ls8{letter-spacing:106.869333pt;}
.ws21{word-spacing:-64.000000pt;}
.ws31{word-spacing:-53.333333pt;}
.ws39{word-spacing:-26.880000pt;}
.ws10{word-spacing:-26.666667pt;}
.ws5{word-spacing:-24.000000pt;}
.ws6{word-spacing:-18.890667pt;}
.ws7{word-spacing:-18.666667pt;}
.wsf{word-spacing:-18.218667pt;}
.ws1{word-spacing:-18.165333pt;}
.ws9{word-spacing:-18.091733pt;}
.ws8{word-spacing:-18.069333pt;}
.ws0{word-spacing:-17.333333pt;}
.ws15{word-spacing:-17.331200pt;}
.ws14{word-spacing:-17.280000pt;}
.ws22{word-spacing:-16.915200pt;}
.ws1f{word-spacing:-16.876800pt;}
.ws3e{word-spacing:-16.832000pt;}
.ws37{word-spacing:-16.460800pt;}
.ws38{word-spacing:-16.435200pt;}
.ws1e{word-spacing:-16.416000pt;}
.ws12{word-spacing:-16.384000pt;}
.ws16{word-spacing:-16.019200pt;}
.ws4{word-spacing:-16.000000pt;}
.ws3d{word-spacing:-15.980800pt;}
.wsd{word-spacing:-15.584000pt;}
.ws30{word-spacing:-15.564800pt;}
.ws1d{word-spacing:-15.552000pt;}
.ws1c{word-spacing:-15.539200pt;}
.wsa{word-spacing:-14.664533pt;}
.ws35{word-spacing:-14.272000pt;}
.ws32{word-spacing:-13.920000pt;}
.ws36{word-spacing:-13.866667pt;}
.ws3f{word-spacing:-13.376000pt;}
.ws3b{word-spacing:-13.366667pt;}
.ws3{word-spacing:-13.333333pt;}
.wsb{word-spacing:-13.331200pt;}
.ws3a{word-spacing:-13.302507pt;}
.ws2e{word-spacing:-13.173333pt;}
.ws17{word-spacing:-12.906667pt;}
.ws20{word-spacing:-12.746667pt;}
.wse{word-spacing:-12.514667pt;}
.ws13{word-spacing:-12.000000pt;}
.ws43{word-spacing:-11.584000pt;}
.ws41{word-spacing:-11.084800pt;}
.ws34{word-spacing:-10.848000pt;}
.ws23{word-spacing:-10.680000pt;}
.ws3c{word-spacing:-10.668800pt;}
.ws29{word-spacing:-10.666667pt;}
.ws2d{word-spacing:-10.330667pt;}
.wsc{word-spacing:-10.240000pt;}
.ws2b{word-spacing:-10.192000pt;}
.ws24{word-spacing:-10.053333pt;}
.ws1a{word-spacing:-9.914667pt;}
.ws19{word-spacing:-9.741333pt;}
.ws2c{word-spacing:-9.674400pt;}
.ws18{word-spacing:-9.637333pt;}
.ws25{word-spacing:-9.325333pt;}
.ws2f{word-spacing:-9.186667pt;}
.ws27{word-spacing:-9.013333pt;}
.ws42{word-spacing:-8.428800pt;}
.ws26{word-spacing:-7.832000pt;}
.ws2a{word-spacing:-7.714667pt;}
.ws40{word-spacing:-7.148800pt;}
.ws28{word-spacing:-7.106667pt;}
.ws33{word-spacing:-6.629333pt;}
.ws1b{word-spacing:-3.712000pt;}
.ws11{word-spacing:-0.106667pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-17.872000pt;}
._12{margin-left:-16.124800pt;}
._15{margin-left:-14.160000pt;}
._14{margin-left:-12.266667pt;}
._17{margin-left:-11.152000pt;}
._13{margin-left:-10.000000pt;}
._0{margin-left:-8.160000pt;}
._2e{margin-left:-6.986667pt;}
._3{margin-left:-5.984000pt;}
._16{margin-left:-5.021333pt;}
._d{margin-left:-4.064000pt;}
._1{margin-left:-2.901333pt;}
._4{margin-left:-1.450667pt;}
._2{width:1.632000pt;}
._5{width:3.024000pt;}
._7{width:4.282667pt;}
._e{width:5.301333pt;}
._1b{width:6.304000pt;}
._1a{width:7.466667pt;}
._f{width:8.938667pt;}
._10{width:10.037333pt;}
._20{width:11.056000pt;}
._9{width:12.416000pt;}
._8{width:13.632000pt;}
._c{width:14.549333pt;}
._21{width:17.226667pt;}
._1e{width:18.176000pt;}
._1c{width:19.626667pt;}
._1d{width:20.778667pt;}
._1f{width:22.469333pt;}
._2a{width:23.552000pt;}
._25{width:24.768000pt;}
._24{width:25.685333pt;}
._22{width:26.677333pt;}
._19{width:28.405333pt;}
._49{width:29.354667pt;}
._a{width:30.250667pt;}
._b{width:31.274667pt;}
._23{width:32.245333pt;}
._32{width:33.141333pt;}
._28{width:34.037333pt;}
._2b{width:35.114667pt;}
._27{width:36.746667pt;}
._26{width:38.186667pt;}
._34{width:39.637333pt;}
._33{width:40.938667pt;}
._37{width:42.176000pt;}
._38{width:43.120000pt;}
._31{width:44.085333pt;}
._30{width:45.173333pt;}
._36{width:46.602667pt;}
._35{width:47.797333pt;}
._29{width:49.077333pt;}
._2f{width:50.570667pt;}
._39{width:51.520000pt;}
._3a{width:52.800000pt;}
._59{width:54.038933pt;}
._4d{width:55.102400pt;}
._4e{width:56.490667pt;}
._4b{width:57.738667pt;}
._4a{width:58.933333pt;}
._7a{width:59.840000pt;}
._7b{width:61.130667pt;}
._5f{width:63.733333pt;}
._60{width:64.640000pt;}
._6e{width:65.578667pt;}
._3f{width:67.136000pt;}
._3e{width:68.277333pt;}
._61{width:69.557333pt;}
._6a{width:71.253333pt;}
._40{width:72.677333pt;}
._47{width:73.930667pt;}
._48{width:74.826667pt;}
._72{width:76.458667pt;}
._77{width:82.133333pt;}
._75{width:83.317333pt;}
._76{width:84.597333pt;}
._58{width:88.768000pt;}
._54{width:89.930667pt;}
._53{width:91.178667pt;}
._68{width:92.138667pt;}
._46{width:93.109333pt;}
._69{width:95.872000pt;}
._73{width:99.520000pt;}
._74{width:101.184000pt;}
._55{width:102.528000pt;}
._56{width:104.341333pt;}
._3b{width:106.485333pt;}
._3d{width:109.802667pt;}
._4f{width:110.880000pt;}
._5e{width:115.562667pt;}
._5d{width:116.864000pt;}
._42{width:119.808000pt;}
._41{width:120.709333pt;}
._71{width:121.653333pt;}
._51{width:123.722667pt;}
._52{width:124.896000pt;}
._2d{width:131.509333pt;}
._44{width:137.952000pt;}
._43{width:138.922667pt;}
._45{width:140.245333pt;}
._6f{width:145.962667pt;}
._70{width:147.178667pt;}
._3c{width:152.960000pt;}
._7d{width:153.856000pt;}
._79{width:159.005333pt;}
._64{width:159.957333pt;}
._65{width:160.896000pt;}
._2c{width:175.861333pt;}
._66{width:179.413333pt;}
._67{width:180.789333pt;}
._63{width:186.282667pt;}
._5a{width:187.488000pt;}
._5c{width:265.888000pt;}
._5b{width:266.944000pt;}
._6d{width:270.297600pt;}
._6b{width:271.829333pt;}
._6c{width:273.248000pt;}
._50{width:301.098667pt;}
._57{width:332.437333pt;}
._78{width:412.064000pt;}
._62{width:475.882667pt;}
._7e{width:501.962667pt;}
._4c{width:514.805333pt;}
._7c{width:594.624000pt;}
._6{width:744.400000pt;}
._11{width:752.400000pt;}
.fsd{font-size:21.333333pt;}
.fse{font-size:29.333333pt;}
.fsf{font-size:29.466667pt;}
.fs12{font-size:32.000000pt;}
.fsb{font-size:34.666667pt;}
.fs10{font-size:34.800000pt;}
.fsc{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs11{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs14{font-size:53.466667pt;}
.fs13{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs1{font-size:90.666667pt;}
.fs5{font-size:96.000000pt;}
.fs8{font-size:106.666667pt;}
.y40{bottom:-32.666667pt;}
.y3f{bottom:-14.333333pt;}
.y2b5{bottom:-9.893333pt;}
.y154{bottom:-8.706667pt;}
.y1ba{bottom:-6.160000pt;}
.y2ab{bottom:-0.040000pt;}
.y0{bottom:0.000000pt;}
.y2a7{bottom:0.066667pt;}
.y2a9{bottom:0.173333pt;}
.y1c4{bottom:2.440000pt;}
.y13f{bottom:2.933333pt;}
.y2ad{bottom:2.960000pt;}
.y3fb{bottom:3.106667pt;}
.y217{bottom:3.960000pt;}
.y1aa{bottom:4.800000pt;}
.y1ce{bottom:5.106667pt;}
.y21a{bottom:5.626667pt;}
.y1dd{bottom:5.893333pt;}
.y1a8{bottom:6.506667pt;}
.y1a6{bottom:6.866667pt;}
.y3e{bottom:7.000000pt;}
.y1b5{bottom:7.133333pt;}
.y1b0{bottom:7.173333pt;}
.y151{bottom:7.560000pt;}
.y153{bottom:7.626667pt;}
.y1f1{bottom:7.840000pt;}
.y1ac{bottom:8.106667pt;}
.y392{bottom:9.666667pt;}
.y2b1{bottom:9.760000pt;}
.y2b3{bottom:9.773333pt;}
.y1c8{bottom:12.840000pt;}
.y1b7{bottom:13.106667pt;}
.y1b9{bottom:13.506667pt;}
.y13d{bottom:13.626667pt;}
.y1c6{bottom:13.840000pt;}
.y1b2{bottom:14.506667pt;}
.y1cd{bottom:15.106667pt;}
.y1b4{bottom:17.133333pt;}
.y1af{bottom:17.173333pt;}
.y1bf{bottom:17.506667pt;}
.y1ee{bottom:17.866667pt;}
.y3fa{bottom:18.426667pt;}
.y14f{bottom:18.560000pt;}
.y216{bottom:19.293333pt;}
.y1e3{bottom:19.866667pt;}
.y1f3{bottom:20.506667pt;}
.y219{bottom:20.960000pt;}
.y1c2{bottom:22.466667pt;}
.y13b{bottom:24.293333pt;}
.y1be{bottom:26.173333pt;}
.y1ca{bottom:27.466667pt;}
.y3d{bottom:29.373333pt;}
.y14e{bottom:31.226667pt;}
.y3f9{bottom:33.760000pt;}
.y139{bottom:34.960000pt;}
.y1ea{bottom:35.840000pt;}
.y1df{bottom:35.866667pt;}
.y14c{bottom:42.893333pt;}
.y142{bottom:45.293333pt;}
.y1e6{bottom:45.533333pt;}
.y3c{bottom:50.040000pt;}
.y138{bottom:50.960000pt;}
.y16{bottom:51.366667pt;}
.y14a{bottom:54.226667pt;}
.y141{bottom:61.293333pt;}
.y148{bottom:65.893333pt;}
.y3b{bottom:68.373333pt;}
.y15{bottom:69.700000pt;}
.y147{bottom:82.266667pt;}
.y3a{bottom:87.040000pt;}
.y3d8{bottom:99.033333pt;}
.yc2{bottom:99.366667pt;}
.y162{bottom:99.700000pt;}
.y229{bottom:101.366667pt;}
.y3d7{bottom:101.700000pt;}
.yc6{bottom:102.366667pt;}
.y397{bottom:102.700000pt;}
.y1db{bottom:103.700000pt;}
.y109{bottom:105.033333pt;}
.y2a5{bottom:105.366667pt;}
.y39{bottom:105.373333pt;}
.y14{bottom:106.700000pt;}
.y25a{bottom:107.700000pt;}
.y78{bottom:108.366667pt;}
.yba{bottom:108.700000pt;}
.y96{bottom:109.700000pt;}
.ye7{bottom:110.033333pt;}
.y348{bottom:111.366667pt;}
.y391{bottom:111.700000pt;}
.y23e{bottom:113.700000pt;}
.yc1{bottom:114.700000pt;}
.y343{bottom:117.033333pt;}
.yc5{bottom:117.700000pt;}
.y28c{bottom:118.366667pt;}
.y174{bottom:120.700000pt;}
.y36b{bottom:121.033333pt;}
.y1a4{bottom:121.700000pt;}
.y214{bottom:122.033333pt;}
.y31{bottom:122.366667pt;}
.y387{bottom:123.700000pt;}
.y359{bottom:124.700000pt;}
.yf8{bottom:125.366667pt;}
.y125{bottom:126.033333pt;}
.y112{bottom:127.033333pt;}
.y186{bottom:127.366667pt;}
.y334{bottom:127.700000pt;}
.y38{bottom:127.706667pt;}
.y205{bottom:129.033333pt;}
.y316{bottom:129.366667pt;}
.yda{bottom:129.700000pt;}
.yc0{bottom:130.033333pt;}
.y3a0{bottom:131.033333pt;}
.y3e7{bottom:131.366667pt;}
.y251{bottom:132.366667pt;}
.yc4{bottom:133.033333pt;}
.y32c{bottom:133.706667pt;}
.y26b{bottom:134.040000pt;}
.yd7{bottom:134.373333pt;}
.y249{bottom:134.693333pt;}
.y3d6{bottom:135.706667pt;}
.y77{bottom:136.040000pt;}
.y161{bottom:136.373333pt;}
.y228{bottom:138.026667pt;}
.y36f{bottom:138.360000pt;}
.y2e8{bottom:139.373333pt;}
.y1da{bottom:140.373333pt;}
.y2c7{bottom:141.360000pt;}
.y108{bottom:141.706667pt;}
.y2a4{bottom:142.373333pt;}
.y27c{bottom:143.373333pt;}
.y3ea{bottom:143.693333pt;}
.y13{bottom:144.026667pt;}
.y259{bottom:144.360000pt;}
.yb9{bottom:145.373333pt;}
.y95{bottom:146.693333pt;}
.y3e5{bottom:147.026667pt;}
.y136{bottom:148.373333pt;}
.y37{bottom:148.400000pt;}
.y23d{bottom:150.360000pt;}
.y3c0{bottom:151.040000pt;}
.y19c{bottom:152.373333pt;}
.y342{bottom:153.706667pt;}
.yfb{bottom:154.733333pt;}
.y28b{bottom:155.400000pt;}
.y173{bottom:157.400000pt;}
.y3be{bottom:157.733333pt;}
.y36a{bottom:158.066667pt;}
.y1a3{bottom:158.400000pt;}
.y213{bottom:158.733333pt;}
.y3e9{bottom:159.066667pt;}
.y386{bottom:160.400000pt;}
.ybf{bottom:160.733333pt;}
.yc3{bottom:161.400000pt;}
.yf7{bottom:162.400000pt;}
.y124{bottom:162.733333pt;}
.y2f5{bottom:163.066667pt;}
.y76{bottom:163.400000pt;}
.y111{bottom:163.733333pt;}
.y185{bottom:164.066667pt;}
.y333{bottom:164.400000pt;}
.y204{bottom:166.066667pt;}
.yd9{bottom:166.400000pt;}
.y36{bottom:166.733333pt;}
.y39f{bottom:167.733333pt;}
.y250{bottom:169.066667pt;}
.y3e6{bottom:170.066667pt;}
.y32b{bottom:170.400000pt;}
.y26a{bottom:171.066667pt;}
.yd6{bottom:171.400000pt;}
.y248{bottom:171.733333pt;}
.yfa{bottom:172.400000pt;}
.y3d5{bottom:172.733333pt;}
.y160{bottom:173.400000pt;}
.y227{bottom:174.733333pt;}
.y36e{bottom:175.066667pt;}
.ybe{bottom:176.066667pt;}
.y2e7{bottom:176.400000pt;}
.y2af{bottom:177.066667pt;}
.y1d9{bottom:177.400000pt;}
.y30{bottom:177.733333pt;}
.y107{bottom:178.400000pt;}
.y2a3{bottom:179.066667pt;}
.y27b{bottom:180.066667pt;}
.y12{bottom:181.066667pt;}
.yb8{bottom:182.400000pt;}
.y94{bottom:183.400000pt;}
.ye6{bottom:183.733333pt;}
.y35{bottom:185.066667pt;}
.y135{bottom:185.400000pt;}
.y3e8{bottom:186.733333pt;}
.y23c{bottom:187.400000pt;}
.y19b{bottom:189.066667pt;}
.y341{bottom:190.733333pt;}
.y75{bottom:191.066667pt;}
.ybd{bottom:191.400000pt;}
.y28a{bottom:192.066667pt;}
.y2ae{bottom:192.400000pt;}
.y172{bottom:194.400000pt;}
.y369{bottom:194.733333pt;}
.y1a2{bottom:195.066667pt;}
.y395{bottom:195.400000pt;}
.y212{bottom:195.733333pt;}
.y385{bottom:197.066667pt;}
.y358{bottom:198.400000pt;}
.yf6{bottom:199.066667pt;}
.y123{bottom:199.400000pt;}
.y2f4{bottom:199.733333pt;}
.yf9{bottom:200.733333pt;}
.y3b1{bottom:201.066667pt;}
.y332{bottom:201.400000pt;}
.y184{bottom:202.066667pt;}
.y203{bottom:202.733333pt;}
.y315{bottom:203.066667pt;}
.yd8{bottom:203.400000pt;}
.y34{bottom:203.733333pt;}
.y39e{bottom:204.733333pt;}
.y24f{bottom:205.733333pt;}
.y300{bottom:206.066667pt;}
.ybc{bottom:206.733333pt;}
.y32a{bottom:207.066667pt;}
.y269{bottom:207.733333pt;}
.yd5{bottom:208.066667pt;}
.y247{bottom:208.400000pt;}
.y3d4{bottom:209.400000pt;}
.y15f{bottom:210.066667pt;}
.y2b8{bottom:210.400000pt;}
.y394{bottom:210.733333pt;}
.y226{bottom:211.733333pt;}
.y2e6{bottom:213.066667pt;}
.y1d8{bottom:214.066667pt;}
.y2c6{bottom:215.066667pt;}
.y106{bottom:215.400000pt;}
.y2a2{bottom:216.066667pt;}
.y27a{bottom:217.066667pt;}
.y2d8{bottom:218.066667pt;}
.yb7{bottom:219.066667pt;}
.y11{bottom:219.733333pt;}
.y93{bottom:220.400000pt;}
.y3e4{bottom:220.733333pt;}
.y54{bottom:221.733333pt;}
.y134{bottom:222.066667pt;}
.y23b{bottom:224.066667pt;}
.y2b7{bottom:225.733333pt;}
.y33{bottom:226.066667pt;}
.y340{bottom:227.400000pt;}
.y74{bottom:228.733333pt;}
.y171{bottom:231.066667pt;}
.y368{bottom:231.400000pt;}
.y1a1{bottom:232.066667pt;}
.y211{bottom:232.400000pt;}
.y2f{bottom:232.733333pt;}
.y384{bottom:234.066667pt;}
.y357{bottom:235.066667pt;}
.yf5{bottom:235.733333pt;}
.y122{bottom:236.400000pt;}
.y110{bottom:237.400000pt;}
.y3b0{bottom:237.733333pt;}
.y331{bottom:238.066667pt;}
.y183{bottom:239.066667pt;}
.y241{bottom:239.400000pt;}
.y202{bottom:239.733333pt;}
.ya5{bottom:240.066667pt;}
.y39d{bottom:241.400000pt;}
.y3f7{bottom:242.066667pt;}
.ybb{bottom:242.733333pt;}
.y329{bottom:244.066667pt;}
.y268{bottom:244.400000pt;}
.yd4{bottom:245.066667pt;}
.y246{bottom:245.400000pt;}
.y3d3{bottom:246.400000pt;}
.y15e{bottom:246.733333pt;}
.y36d{bottom:247.066667pt;}
.y225{bottom:248.400000pt;}
.y2e5{bottom:249.733333pt;}
.y1a0{bottom:250.066667pt;}
.y1d7{bottom:250.733333pt;}
.y2c5{bottom:251.733333pt;}
.y105{bottom:252.066667pt;}
.y2a1{bottom:252.733333pt;}
.y279{bottom:253.733333pt;}
.y2d7{bottom:254.733333pt;}
.yb6{bottom:256.066667pt;}
.y393{bottom:256.733333pt;}
.y92{bottom:257.066667pt;}
.ye5{bottom:257.400000pt;}
.y3b7{bottom:258.066667pt;}
.y10{bottom:258.400000pt;}
.y347{bottom:258.733333pt;}
.y133{bottom:259.066667pt;}
.y23a{bottom:261.066667pt;}
.y2b6{bottom:261.400000pt;}
.y19a{bottom:262.733333pt;}
.y33f{bottom:264.066667pt;}
.y19f{bottom:265.400000pt;}
.y289{bottom:265.733333pt;}
.y73{bottom:267.066667pt;}
.y170{bottom:267.733333pt;}
.y3bd{bottom:268.066667pt;}
.y367{bottom:268.400000pt;}
.y3e3{bottom:269.106667pt;}
.y210{bottom:269.440000pt;}
.y258{bottom:270.760000pt;}
.y356{bottom:271.773333pt;}
.y3f8{bottom:272.666667pt;}
.yf4{bottom:272.773333pt;}
.y121{bottom:273.093333pt;}
.y2f3{bottom:273.426667pt;}
.y10f{bottom:274.440000pt;}
.y182{bottom:275.773333pt;}
.y201{bottom:276.426667pt;}
.y403{bottom:276.760000pt;}
.ya4{bottom:277.106667pt;}
.y39c{bottom:278.106667pt;}
.y3f6{bottom:278.773333pt;}
.y24e{bottom:279.426667pt;}
.y19e{bottom:280.773333pt;}
.y37c{bottom:281.106667pt;}
.y267{bottom:281.440000pt;}
.yd3{bottom:281.773333pt;}
.y245{bottom:282.093333pt;}
.y3d2{bottom:283.106667pt;}
.y15d{bottom:283.773333pt;}
.y290{bottom:284.773333pt;}
.y224{bottom:285.426667pt;}
.y2e4{bottom:286.773333pt;}
.y1d6{bottom:287.773333pt;}
.y2e{bottom:288.093333pt;}
.y2c4{bottom:288.760000pt;}
.y104{bottom:289.106667pt;}
.y2a0{bottom:289.440000pt;}
.y278{bottom:290.773333pt;}
.y2d6{bottom:291.760000pt;}
.yb5{bottom:292.773333pt;}
.y91{bottom:293.773333pt;}
.ye4{bottom:294.093333pt;}
.y72{bottom:294.426667pt;}
.y53{bottom:295.440000pt;}
.y132{bottom:295.773333pt;}
.yf{bottom:297.093333pt;}
.y239{bottom:297.760000pt;}
.y199{bottom:299.773333pt;}
.y33e{bottom:301.106667pt;}
.y288{bottom:302.440000pt;}
.y3b6{bottom:304.106667pt;}
.y16f{bottom:304.773333pt;}
.y366{bottom:305.106667pt;}
.y3e2{bottom:305.773333pt;}
.y20f{bottom:306.093333pt;}
.y257{bottom:307.440000pt;}
.y383{bottom:307.773333pt;}
.y36c{bottom:308.440000pt;}
.y355{bottom:308.773333pt;}
.y19d{bottom:309.093333pt;}
.yf3{bottom:309.426667pt;}
.y120{bottom:310.106667pt;}
.y3af{bottom:311.440000pt;}
.y1ad{bottom:311.666667pt;}
.y181{bottom:312.760000pt;}
.y200{bottom:313.106667pt;}
.y314{bottom:313.440000pt;}
.ya3{bottom:313.773333pt;}
.y39b{bottom:315.093333pt;}
.y3f5{bottom:315.426667pt;}
.y24d{bottom:316.440000pt;}
.y3bc{bottom:317.440000pt;}
.y328{bottom:317.773333pt;}
.y266{bottom:318.093333pt;}
.y2b4{bottom:318.333333pt;}
.yd2{bottom:318.426667pt;}
.y244{bottom:318.760000pt;}
.y3d1{bottom:319.773333pt;}
.y15c{bottom:320.440000pt;}
.y1d5{bottom:320.773333pt;}
.y71{bottom:322.106667pt;}
.y2e3{bottom:323.440000pt;}
.y2b0{bottom:323.666667pt;}
.y2c3{bottom:325.440000pt;}
.y103{bottom:325.773333pt;}
.y29f{bottom:326.440000pt;}
.y277{bottom:327.426667pt;}
.y2d5{bottom:328.440000pt;}
.yb4{bottom:329.440000pt;}
.y1ab{bottom:329.666667pt;}
.y90{bottom:330.760000pt;}
.y30a{bottom:331.106667pt;}
.y28f{bottom:331.773333pt;}
.y52{bottom:332.106667pt;}
.y131{bottom:332.440000pt;}
.y238{bottom:334.440000pt;}
.y396{bottom:335.106667pt;}
.ye{bottom:335.773333pt;}
.y198{bottom:336.426667pt;}
.y243{bottom:336.760000pt;}
.y33d{bottom:337.773333pt;}
.y3bb{bottom:338.106667pt;}
.y287{bottom:339.426667pt;}
.y16e{bottom:341.440000pt;}
.y365{bottom:342.093333pt;}
.y3e1{bottom:342.426667pt;}
.y20e{bottom:342.760000pt;}
.y2d{bottom:343.106667pt;}
.y256{bottom:344.440000pt;}
.y354{bottom:345.426667pt;}
.yf2{bottom:346.440000pt;}
.y11f{bottom:346.773333pt;}
.y28e{bottom:347.106667pt;}
.y1d4{bottom:347.440000pt;}
.y3ae{bottom:348.093333pt;}
.y180{bottom:349.440000pt;}
.y70{bottom:349.773333pt;}
.y1ff{bottom:350.106667pt;}
.ya2{bottom:350.440000pt;}
.y1b6{bottom:351.333333pt;}
.y39a{bottom:351.760000pt;}
.y242{bottom:352.106667pt;}
.y3f4{bottom:352.440000pt;}
.y2b2{bottom:352.666667pt;}
.y24c{bottom:353.106667pt;}
.y3ba{bottom:353.440000pt;}
.y327{bottom:354.426667pt;}
.y37b{bottom:354.773333pt;}
.y265{bottom:355.106667pt;}
.yd1{bottom:355.440000pt;}
.y3d0{bottom:356.773333pt;}
.y15b{bottom:357.440000pt;}
.y223{bottom:358.773333pt;}
.y2e2{bottom:360.106667pt;}
.y2c2{bottom:362.106667pt;}
.y1c1{bottom:362.333333pt;}
.y102{bottom:362.440000pt;}
.y1d3{bottom:362.773333pt;}
.y240{bottom:363.106667pt;}
.y276{bottom:364.106667pt;}
.y2d4{bottom:365.106667pt;}
.y1cc{bottom:366.000000pt;}
.yb3{bottom:366.440000pt;}
.y8f{bottom:367.440000pt;}
.ye3{bottom:367.773333pt;}
.y3b9{bottom:368.773333pt;}
.y51{bottom:369.106667pt;}
.y130{bottom:369.440000pt;}
.y237{bottom:371.440000pt;}
.y197{bottom:373.106667pt;}
.yd{bottom:374.106667pt;}
.y1c3{bottom:374.773333pt;}
.y28d{bottom:375.106667pt;}
.y286{bottom:376.106667pt;}
.y6f{bottom:377.440000pt;}
.y1d2{bottom:378.106667pt;}
.y16d{bottom:378.440000pt;}
.y364{bottom:378.773333pt;}
.y3e0{bottom:379.440000pt;}
.y20d{bottom:379.773333pt;}
.y255{bottom:381.106667pt;}
.y353{bottom:382.106667pt;}
.yf1{bottom:383.106667pt;}
.y11e{bottom:383.466667pt;}
.y2f2{bottom:383.800000pt;}
.y3b8{bottom:384.133333pt;}
.y3ad{bottom:385.133333pt;}
.y17f{bottom:386.133333pt;}
.y24b{bottom:386.466667pt;}
.y1fe{bottom:386.800000pt;}
.y313{bottom:387.133333pt;}
.ya1{bottom:387.466667pt;}
.y399{bottom:388.800000pt;}
.y3f3{bottom:389.133333pt;}
.y2ff{bottom:390.133333pt;}
.y326{bottom:391.133333pt;}
.y37a{bottom:391.466667pt;}
.y264{bottom:391.800000pt;}
.yd0{bottom:392.133333pt;}
.y1d1{bottom:393.466667pt;}
.y15a{bottom:394.133333pt;}
.y222{bottom:395.800000pt;}
.y2e1{bottom:397.133333pt;}
.y2c{bottom:398.466667pt;}
.y2c1{bottom:399.133333pt;}
.y101{bottom:399.466667pt;}
.y29e{bottom:400.133333pt;}
.y275{bottom:401.133333pt;}
.y2d3{bottom:402.133333pt;}
.yb2{bottom:403.133333pt;}
.y8e{bottom:404.466667pt;}
.y309{bottom:404.800000pt;}
.y6e{bottom:405.133333pt;}
.y50{bottom:405.800000pt;}
.y12f{bottom:406.133333pt;}
.y236{bottom:408.133333pt;}
.y1d0{bottom:408.800000pt;}
.y196{bottom:410.133333pt;}
.y1a9{bottom:411.333333pt;}
.y33c{bottom:411.466667pt;}
.yc{bottom:412.800000pt;}
.y24a{bottom:414.133333pt;}
.y16c{bottom:414.800000pt;}
.y363{bottom:415.466667pt;}
.y23f{bottom:416.133333pt;}
.y20c{bottom:416.466667pt;}
.y254{bottom:418.133333pt;}
.y352{bottom:419.133333pt;}
.yf0{bottom:419.800000pt;}
.y11d{bottom:420.466667pt;}
.y1b3{bottom:421.000000pt;}
.y3ac{bottom:421.800000pt;}
.y17e{bottom:423.133333pt;}
.y1fd{bottom:423.800000pt;}
.ya0{bottom:424.133333pt;}
.y398{bottom:425.466667pt;}
.y3f2{bottom:425.800000pt;}
.y2fe{bottom:426.800000pt;}
.y1c9{bottom:428.000000pt;}
.y325{bottom:428.133333pt;}
.y263{bottom:428.466667pt;}
.y1cf{bottom:428.800000pt;}
.ycf{bottom:429.133333pt;}
.y3cf{bottom:430.466667pt;}
.y159{bottom:430.800000pt;}
.y6d{bottom:432.466667pt;}
.y2e0{bottom:433.800000pt;}
.y1bb{bottom:435.000000pt;}
.y2c0{bottom:435.800000pt;}
.y100{bottom:436.133333pt;}
.y29d{bottom:436.800000pt;}
.y274{bottom:437.800000pt;}
.y2d2{bottom:438.800000pt;}
.yb1{bottom:440.133333pt;}
.y8d{bottom:441.133333pt;}
.y308{bottom:441.466667pt;}
.y1bc{bottom:442.133333pt;}
.y4f{bottom:442.466667pt;}
.y12e{bottom:442.800000pt;}
.y235{bottom:445.133333pt;}
.y1cb{bottom:445.466667pt;}
.y195{bottom:446.800000pt;}
.y33b{bottom:448.133333pt;}
.y285{bottom:449.800000pt;}
.yb{bottom:451.133333pt;}
.y362{bottom:452.466667pt;}
.y16b{bottom:453.133333pt;}
.y2b{bottom:453.800000pt;}
.y253{bottom:454.800000pt;}
.y351{bottom:455.800000pt;}
.yef{bottom:456.800000pt;}
.y11c{bottom:457.133333pt;}
.y2f1{bottom:457.466667pt;}
.y3ab{bottom:458.466667pt;}
.y17d{bottom:459.800000pt;}
.y1fc{bottom:460.466667pt;}
.y402{bottom:460.800000pt;}
.y9f{bottom:461.133333pt;}
.y3f1{bottom:462.800000pt;}
.y2fd{bottom:463.466667pt;}
.y158{bottom:464.133333pt;}
.y324{bottom:464.800000pt;}
.y379{bottom:465.133333pt;}
.y262{bottom:465.466667pt;}
.yce{bottom:465.800000pt;}
.y3ce{bottom:467.133333pt;}
.y221{bottom:469.466667pt;}
.y6c{bottom:470.133333pt;}
.y2df{bottom:470.800000pt;}
.y32{bottom:471.133333pt;}
.y2bf{bottom:472.800000pt;}
.yff{bottom:473.133333pt;}
.y29c{bottom:473.466667pt;}
.y273{bottom:474.466667pt;}
.y2d1{bottom:475.800000pt;}
.yb0{bottom:476.800000pt;}
.y8c{bottom:477.800000pt;}
.ye2{bottom:478.133333pt;}
.y4e{bottom:479.466667pt;}
.y12d{bottom:479.800000pt;}
.y234{bottom:481.800000pt;}
.y2fc{bottom:482.800000pt;}
.y1bd{bottom:483.000000pt;}
.y194{bottom:483.800000pt;}
.y33a{bottom:485.133333pt;}
.y1e9{bottom:485.333333pt;}
.y284{bottom:486.466667pt;}
.ya{bottom:488.466667pt;}
.y361{bottom:489.133333pt;}
.y16a{bottom:489.800000pt;}
.y20b{bottom:490.133333pt;}
.y1c0{bottom:491.466667pt;}
.y382{bottom:491.800000pt;}
.y1f5{bottom:492.666667pt;}
.y350{bottom:492.800000pt;}
.yee{bottom:493.466667pt;}
.y11b{bottom:493.800000pt;}
.y2f0{bottom:494.133333pt;}
.y3aa{bottom:495.466667pt;}
.y17c{bottom:496.466667pt;}
.y1b1{bottom:497.333333pt;}
.y312{bottom:497.466667pt;}
.y9e{bottom:497.840000pt;}
.y157{bottom:498.173333pt;}
.y3f0{bottom:499.506667pt;}
.y323{bottom:501.506667pt;}
.y378{bottom:501.840000pt;}
.y1ec{bottom:502.173333pt;}
.ycd{bottom:502.506667pt;}
.y3cd{bottom:503.840000pt;}
.y1f6{bottom:504.173333pt;}
.y220{bottom:506.173333pt;}
.y2de{bottom:507.506667pt;}
.y6b{bottom:508.506667pt;}
.y2a{bottom:508.840000pt;}
.y2be{bottom:509.506667pt;}
.yfe{bottom:509.840000pt;}
.y29b{bottom:510.506667pt;}
.y1eb{bottom:511.173333pt;}
.y272{bottom:511.506667pt;}
.y2d0{bottom:512.506667pt;}
.yaf{bottom:513.506667pt;}
.y2fb{bottom:514.506667pt;}
.y8b{bottom:514.840000pt;}
.y307{bottom:515.173333pt;}
.y1fb{bottom:515.840000pt;}
.y4d{bottom:516.173333pt;}
.y12c{bottom:516.506667pt;}
.y233{bottom:518.506667pt;}
.y193{bottom:520.506667pt;}
.y1c7{bottom:521.000000pt;}
.y339{bottom:521.840000pt;}
.y283{bottom:523.173333pt;}
.y21f{bottom:524.173333pt;}
.y360{bottom:525.840000pt;}
.y3df{bottom:526.506667pt;}
.y169{bottom:526.840000pt;}
.y381{bottom:528.506667pt;}
.y9{bottom:528.840000pt;}
.y34f{bottom:529.506667pt;}
.y2fa{bottom:529.840000pt;}
.yed{bottom:530.173333pt;}
.y11a{bottom:530.840000pt;}
.y3a9{bottom:532.173333pt;}
.y17b{bottom:533.506667pt;}
.y311{bottom:534.173333pt;}
.y9d{bottom:534.506667pt;}
.y6a{bottom:536.173333pt;}
.y252{bottom:536.506667pt;}
.y322{bottom:538.506667pt;}
.y261{bottom:538.840000pt;}
.ycc{bottom:539.506667pt;}
.y3cc{bottom:540.840000pt;}
.y156{bottom:544.173333pt;}
.y2f9{bottom:545.173333pt;}
.y2bd{bottom:546.173333pt;}
.yfd{bottom:546.506667pt;}
.y29a{bottom:547.173333pt;}
.y271{bottom:548.173333pt;}
.y2cf{bottom:549.173333pt;}
.yae{bottom:550.506667pt;}
.y1b8{bottom:550.666667pt;}
.y1f2{bottom:551.000000pt;}
.y8a{bottom:551.506667pt;}
.ye1{bottom:551.840000pt;}
.y1fa{bottom:552.840000pt;}
.y4c{bottom:553.173333pt;}
.y12b{bottom:553.506667pt;}
.y21e{bottom:554.840000pt;}
.y232{bottom:555.506667pt;}
.y192{bottom:557.173333pt;}
.y338{bottom:558.840000pt;}
.y282{bottom:560.173333pt;}
.y2f8{bottom:560.506667pt;}
.y8{bottom:562.173333pt;}
.y1f4{bottom:562.506667pt;}
.y35f{bottom:562.840000pt;}
.y69{bottom:563.506667pt;}
.y20a{bottom:563.840000pt;}
.y29{bottom:564.173333pt;}
.y380{bottom:565.173333pt;}
.y1ae{bottom:565.333333pt;}
.y34e{bottom:566.173333pt;}
.yec{bottom:567.173333pt;}
.y119{bottom:567.506667pt;}
.y3a8{bottom:568.840000pt;}
.y17a{bottom:570.173333pt;}
.y310{bottom:570.840000pt;}
.y401{bottom:571.173333pt;}
.y9c{bottom:571.506667pt;}
.y3ef{bottom:573.173333pt;}
.y321{bottom:575.173333pt;}
.y2dd{bottom:575.506667pt;}
.y260{bottom:575.840000pt;}
.ycb{bottom:576.173333pt;}
.y3cb{bottom:577.506667pt;}
.y155{bottom:579.840000pt;}
.y1e5{bottom:580.333333pt;}
.y2bc{bottom:583.173333pt;}
.y390{bottom:583.506667pt;}
.y2ef{bottom:583.840000pt;}
.y299{bottom:584.173333pt;}
.y1c5{bottom:584.333333pt;}
.y270{bottom:585.173333pt;}
.y21d{bottom:585.506667pt;}
.y34d{bottom:586.840000pt;}
.yad{bottom:587.173333pt;}
.y89{bottom:588.506667pt;}
.y306{bottom:588.840000pt;}
.y1f9{bottom:589.506667pt;}
.y4b{bottom:589.840000pt;}
.y12a{bottom:590.173333pt;}
.y2dc{bottom:590.840000pt;}
.y68{bottom:591.173333pt;}
.y231{bottom:592.173333pt;}
.y2f7{bottom:592.506667pt;}
.y191{bottom:594.173333pt;}
.y1a7{bottom:594.666667pt;}
.yfc{bottom:594.840000pt;}
.y7{bottom:595.506667pt;}
.y281{bottom:596.840000pt;}
.y1f0{bottom:600.000000pt;}
.y168{bottom:600.173333pt;}
.y209{bottom:600.506667pt;}
.y34c{bottom:602.173333pt;}
.yeb{bottom:603.840000pt;}
.y118{bottom:604.506667pt;}
.y3a7{bottom:605.840000pt;}
.y2db{bottom:606.173333pt;}
.ye0{bottom:606.506667pt;}
.y1e8{bottom:606.840000pt;}
.y179{bottom:607.173333pt;}
.y2f6{bottom:607.840000pt;}
.y9b{bottom:608.173333pt;}
.y21c{bottom:609.173333pt;}
.y3ee{bottom:609.840000pt;}
.y320{bottom:612.200000pt;}
.y25f{bottom:612.533333pt;}
.yca{bottom:612.866667pt;}
.y3ca{bottom:614.533333pt;}
.y35e{bottom:615.533333pt;}
.y1e7{bottom:615.866667pt;}
.y34b{bottom:617.533333pt;}
.y67{bottom:618.866667pt;}
.y28{bottom:619.200000pt;}
.y1a5{bottom:619.333333pt;}
.y38f{bottom:620.200000pt;}
.y2ee{bottom:620.533333pt;}
.y298{bottom:620.866667pt;}
.y2da{bottom:621.533333pt;}
.ydf{bottom:621.866667pt;}
.yea{bottom:622.200000pt;}
.yac{bottom:623.866667pt;}
.y88{bottom:625.200000pt;}
.y305{bottom:625.533333pt;}
.y1f8{bottom:626.200000pt;}
.y4a{bottom:626.533333pt;}
.y129{bottom:626.866667pt;}
.y230{bottom:628.866667pt;}
.y190{bottom:630.866667pt;}
.y337{bottom:632.200000pt;}
.y34a{bottom:632.866667pt;}
.y2bb{bottom:633.200000pt;}
.y167{bottom:633.533333pt;}
.y280{bottom:633.866667pt;}
.y3bf{bottom:634.866667pt;}
.y3de{bottom:636.866667pt;}
.yde{bottom:637.200000pt;}
.y2ed{bottom:638.533333pt;}
.y2ce{bottom:638.866667pt;}
.y117{bottom:641.200000pt;}
.y3a6{bottom:642.533333pt;}
.y178{bottom:643.866667pt;}
.y1ed{bottom:644.333333pt;}
.y400{bottom:644.533333pt;}
.y9a{bottom:644.866667pt;}
.y66{bottom:646.533333pt;}
.y2ba{bottom:648.533333pt;}
.y31f{bottom:648.866667pt;}
.y2d9{bottom:649.200000pt;}
.y25e{bottom:649.533333pt;}
.yc9{bottom:649.866667pt;}
.y336{bottom:650.200000pt;}
.y3c9{bottom:651.200000pt;}
.ydd{bottom:652.533333pt;}
.y1ef{bottom:653.200000pt;}
.y2ec{bottom:653.866667pt;}
.y166{bottom:654.200000pt;}
.y26f{bottom:655.200000pt;}
.ye9{bottom:655.533333pt;}
.y38e{bottom:656.866667pt;}
.y297{bottom:657.533333pt;}
.y3ed{bottom:659.200000pt;}
.y208{bottom:660.533333pt;}
.yab{bottom:660.866667pt;}
.y349{bottom:661.200000pt;}
.y87{bottom:661.866667pt;}
.y304{bottom:662.200000pt;}
.y6{bottom:662.533333pt;}
.y1f7{bottom:663.200000pt;}
.y49{bottom:663.533333pt;}
.y128{bottom:663.866667pt;}
.y35d{bottom:664.866667pt;}
.y22f{bottom:665.866667pt;}
.y18f{bottom:667.533333pt;}
.y1de{bottom:667.666667pt;}
.ydc{bottom:667.866667pt;}
.y2eb{bottom:669.200000pt;}
.y165{bottom:669.533333pt;}
.y27f{bottom:670.533333pt;}
.y2b9{bottom:673.200000pt;}
.y65{bottom:673.866667pt;}
.y27{bottom:674.533333pt;}
.y10e{bottom:675.200000pt;}
.y2cd{bottom:675.533333pt;}
.y207{bottom:675.866667pt;}
.y30f{bottom:676.533333pt;}
.y116{bottom:677.866667pt;}
.y335{bottom:678.533333pt;}
.y3a5{bottom:679.533333pt;}
.y3ec{bottom:679.866667pt;}
.y35c{bottom:680.200000pt;}
.y177{bottom:680.533333pt;}
.y20{bottom:681.533333pt;}
.y99{bottom:681.866667pt;}
.ydb{bottom:683.200000pt;}
.ye8{bottom:683.866667pt;}
.y1e1{bottom:684.533333pt;}
.y164{bottom:684.866667pt;}
.y31e{bottom:685.533333pt;}
.y377{bottom:685.866667pt;}
.yc8{bottom:686.533333pt;}
.y3c8{bottom:687.866667pt;}
.y10d{bottom:690.533333pt;}
.y1e0{bottom:693.533333pt;}
.y38d{bottom:693.866667pt;}
.y25d{bottom:694.200000pt;}
.y296{bottom:694.533333pt;}
.y35b{bottom:695.533333pt;}
.yaa{bottom:697.533333pt;}
.y86{bottom:698.866667pt;}
.y26e{bottom:699.200000pt;}
.y5{bottom:699.866667pt;}
.y48{bottom:700.200000pt;}
.y127{bottom:700.533333pt;}
.y1e2{bottom:701.333333pt;}
.y22e{bottom:702.533333pt;}
.y31d{bottom:703.533333pt;}
.y18e{bottom:704.533333pt;}
.y10c{bottom:705.866667pt;}
.y27e{bottom:707.200000pt;}
.y3eb{bottom:707.866667pt;}
.y1f{bottom:709.200000pt;}
.y30e{bottom:710.533333pt;}
.y1e4{bottom:711.200000pt;}
.y64{bottom:711.533333pt;}
.y2cc{bottom:712.533333pt;}
.y26d{bottom:714.533333pt;}
.y115{bottom:714.866667pt;}
.y2ea{bottom:715.200000pt;}
.y3a4{bottom:716.200000pt;}
.y176{bottom:717.533333pt;}
.y3ff{bottom:718.200000pt;}
.y98{bottom:718.533333pt;}
.y31c{bottom:718.866667pt;}
.y206{bottom:719.533333pt;}
.y10b{bottom:721.200000pt;}
.y376{bottom:722.866667pt;}
.yc7{bottom:723.533333pt;}
.y35a{bottom:723.866667pt;}
.y1dc{bottom:724.333333pt;}
.y3c7{bottom:724.866667pt;}
.y30d{bottom:725.866667pt;}
.y163{bottom:727.906667pt;}
.y26{bottom:729.560000pt;}
.y38c{bottom:730.573333pt;}
.y295{bottom:731.226667pt;}
.y31b{bottom:734.226667pt;}
.ya9{bottom:734.560000pt;}
.y85{bottom:735.560000pt;}
.y303{bottom:735.893333pt;}
.y47{bottom:736.906667pt;}
.y346{bottom:737.226667pt;}
.y4{bottom:738.560000pt;}
.y22d{bottom:739.573333pt;}
.y18d{bottom:741.226667pt;}
.y30c{bottom:741.560000pt;}
.y26c{bottom:742.226667pt;}
.y2e9{bottom:745.893333pt;}
.y3dd{bottom:747.560000pt;}
.y126{bottom:749.240000pt;}
.y31a{bottom:749.560000pt;}
.y63{bottom:749.893333pt;}
.y25c{bottom:750.893333pt;}
.y114{bottom:751.573333pt;}
.y3a3{bottom:752.893333pt;}
.y1e{bottom:753.560000pt;}
.y175{bottom:754.226667pt;}
.y3fe{bottom:755.240000pt;}
.y97{bottom:755.560000pt;}
.y10a{bottom:756.893333pt;}
.y375{bottom:759.560000pt;}
.y30b{bottom:759.893333pt;}
.y3c6{bottom:761.560000pt;}
.y319{bottom:764.893333pt;}
.y146{bottom:766.000000pt;}
.y27d{bottom:766.226667pt;}
.y25b{bottom:767.240000pt;}
.y38b{bottom:767.560000pt;}
.ya8{bottom:771.226667pt;}
.y84{bottom:772.226667pt;}
.y302{bottom:772.573333pt;}
.y150{bottom:773.560000pt;}
.y46{bottom:773.893333pt;}
.y22c{bottom:776.240000pt;}
.y62{bottom:777.560000pt;}
.y18c{bottom:778.226667pt;}
.y3{bottom:778.573333pt;}
.y318{bottom:780.226667pt;}
.y294{bottom:781.226667pt;}
.y345{bottom:781.893333pt;}
.y3dc{bottom:784.226667pt;}
.y25{bottom:784.893333pt;}
.y2cb{bottom:786.226667pt;}
.y3a2{bottom:789.893333pt;}
.y1d{bottom:790.560000pt;}
.y113{bottom:791.893333pt;}
.y5a{bottom:792.226667pt;}
.y293{bottom:796.560000pt;}
.y3c5{bottom:798.226667pt;}
.y38a{bottom:804.226667pt;}
.y61{bottom:804.893333pt;}
.y317{bottom:807.893333pt;}
.y14d{bottom:808.893333pt;}
.y83{bottom:809.226667pt;}
.y301{bottom:809.560000pt;}
.y45{bottom:810.560000pt;}
.y292{bottom:811.893333pt;}
.y22b{bottom:812.893333pt;}
.y18b{bottom:814.893333pt;}
.ya7{bottom:819.560000pt;}
.y14b{bottom:820.226667pt;}
.y3db{bottom:820.893333pt;}
.y2{bottom:822.560000pt;}
.y2ca{bottom:822.893333pt;}
.y3a1{bottom:826.560000pt;}
.y1c{bottom:827.560000pt;}
.y344{bottom:828.560000pt;}
.y59{bottom:828.893333pt;}
.y149{bottom:831.893333pt;}
.y60{bottom:832.560000pt;}
.y291{bottom:833.893333pt;}
.y3c4{bottom:835.226667pt;}
.y24{bottom:840.226667pt;}
.y389{bottom:840.933333pt;}
.y7d{bottom:841.933333pt;}
.y82{bottom:845.933333pt;}
.y3b5{bottom:846.266667pt;}
.y44{bottom:847.600000pt;}
.y330{bottom:849.933333pt;}
.y18a{bottom:851.600000pt;}
.y2aa{bottom:856.000000pt;}
.y22a{bottom:857.933333pt;}
.y2c9{bottom:859.600000pt;}
.y5f{bottom:860.266667pt;}
.y1{bottom:861.266667pt;}
.y1b{bottom:864.933333pt;}
.y3fd{bottom:865.600000pt;}
.y58{bottom:865.933333pt;}
.y374{bottom:866.933333pt;}
.y7c{bottom:869.600000pt;}
.y3c3{bottom:871.933333pt;}
.y81{bottom:882.933333pt;}
.y3b4{bottom:883.266667pt;}
.y43{bottom:884.266667pt;}
.y373{bottom:885.266667pt;}
.y32f{bottom:886.600000pt;}
.y5e{bottom:887.933333pt;}
.y189{bottom:888.600000pt;}
.y388{bottom:889.266667pt;}
.y3da{bottom:894.600000pt;}
.y23{bottom:895.266667pt;}
.y37f{bottom:896.600000pt;}
.y2c8{bottom:899.933333pt;}
.y372{bottom:901.266667pt;}
.y1a{bottom:901.933333pt;}
.y3fc{bottom:902.266667pt;}
.y57{bottom:902.600000pt;}
.y7b{bottom:906.933333pt;}
.y3c2{bottom:908.933333pt;}
.y371{bottom:917.266667pt;}
.y80{bottom:919.600000pt;}
.y3b3{bottom:919.933333pt;}
.y42{bottom:920.933333pt;}
.y32e{bottom:923.600000pt;}
.y5d{bottom:925.266667pt;}
.y3d9{bottom:931.600000pt;}
.y37e{bottom:933.266667pt;}
.y370{bottom:933.933333pt;}
.y19{bottom:938.933333pt;}
.y3b2{bottom:939.266667pt;}
.y56{bottom:939.600000pt;}
.y3c1{bottom:942.266667pt;}
.y140{bottom:946.333333pt;}
.y7a{bottom:947.266667pt;}
.y22{bottom:950.600000pt;}
.y137{bottom:951.333333pt;}
.ya6{bottom:954.600000pt;}
.y41{bottom:957.960000pt;}
.y2a8{bottom:960.000000pt;}
.y188{bottom:962.293333pt;}
.y2a6{bottom:963.666667pt;}
.y13e{bottom:964.960000pt;}
.y5c{bottom:965.626667pt;}
.y32d{bottom:968.293333pt;}
.y37d{bottom:970.293333pt;}
.y145{bottom:970.626667pt;}
.y7f{bottom:972.626667pt;}
.y13c{bottom:975.626667pt;}
.y18{bottom:975.960000pt;}
.y55{bottom:976.293333pt;}
.y144{bottom:981.293333pt;}
.y79{bottom:985.626667pt;}
.y13a{bottom:986.293333pt;}
.y218{bottom:986.333333pt;}
.y21b{bottom:987.333333pt;}
.y215{bottom:988.000000pt;}
.y143{bottom:991.626667pt;}
.y152{bottom:998.000000pt;}
.y7e{bottom:1002.960000pt;}
.y21{bottom:1005.626667pt;}
.y5b{bottom:1007.960000pt;}
.y187{bottom:1010.293333pt;}
.y17{bottom:1012.960000pt;}
.y2ac{bottom:1014.000000pt;}
.h57{height:1.666667pt;}
.h53{height:10.000000pt;}
.h41{height:14.000000pt;}
.h2e{height:14.666667pt;}
.h4a{height:16.000000pt;}
.h2c{height:16.666667pt;}
.h29{height:17.000000pt;}
.h2f{height:18.000000pt;}
.h3c{height:21.000000pt;}
.h40{height:21.328125pt;}
.h44{height:21.441406pt;}
.h47{height:21.538867pt;}
.h32{height:21.666667pt;}
.h3a{height:22.000000pt;}
.h37{height:22.057292pt;}
.h36{height:22.157552pt;}
.h49{height:23.105469pt;}
.h3e{height:23.666667pt;}
.h22{height:24.070312pt;}
.h31{height:24.333333pt;}
.h34{height:25.000000pt;}
.h30{height:25.333333pt;}
.h23{height:25.339844pt;}
.h42{height:25.437305pt;}
.h33{height:26.067708pt;}
.h39{height:26.167969pt;}
.h48{height:26.333333pt;}
.h28{height:26.660156pt;}
.h4d{height:27.333333pt;}
.h27{height:27.773438pt;}
.h45{height:28.000000pt;}
.h55{height:28.333333pt;}
.h4c{height:28.666667pt;}
.h58{height:28.916667pt;}
.h4b{height:29.000000pt;}
.h50{height:29.175781pt;}
.h25{height:29.238281pt;}
.h2d{height:30.058594pt;}
.h2a{height:30.078125pt;}
.h38{height:31.000000pt;}
.h21{height:31.187500pt;}
.h56{height:31.992188pt;}
.h3f{height:32.695312pt;}
.h51{height:33.666667pt;}
.h35{height:34.666667pt;}
.h3b{height:35.546875pt;}
.h3d{height:35.666667pt;}
.h2b{height:36.145833pt;}
.h4f{height:36.328125pt;}
.h1e{height:37.031250pt;}
.h10{height:42.656250pt;}
.hd{height:43.375000pt;}
.h59{height:43.593750pt;}
.h1d{height:43.958333pt;}
.h43{height:44.000000pt;}
.h5b{height:44.068229pt;}
.h15{height:44.437500pt;}
.h4e{height:46.156250pt;}
.he{height:46.343750pt;}
.h5a{height:46.666667pt;}
.h1b{height:46.796875pt;}
.h54{height:47.742188pt;}
.hf{height:47.812500pt;}
.ha{height:48.140625pt;}
.h3{height:50.205729pt;}
.h1c{height:51.937500pt;}
.h52{height:52.666667pt;}
.h19{height:52.750000pt;}
.h46{height:53.666667pt;}
.h18{height:54.067708pt;}
.h5{height:56.156250pt;}
.h9{height:57.145833pt;}
.h14{height:57.375000pt;}
.h1{height:57.833333pt;}
.h1f{height:58.770833pt;}
.hc{height:60.835938pt;}
.h20{height:61.000000pt;}
.h13{height:61.541667pt;}
.hb{height:62.156250pt;}
.h11{height:65.062500pt;}
.h4{height:65.515625pt;}
.h2{height:65.653646pt;}
.h16{height:66.937500pt;}
.h17{height:69.515625pt;}
.h24{height:70.666667pt;}
.h1a{height:72.291667pt;}
.h8{height:74.875000pt;}
.h7{height:76.500000pt;}
.h6{height:86.062500pt;}
.h26{height:92.000000pt;}
.h12{height:243.400000pt;}
.h0{height:1122.666667pt;}
.w1f{width:8.333333pt;}
.w1e{width:10.000000pt;}
.we{width:57.333333pt;}
.w22{width:61.000000pt;}
.w12{width:66.333333pt;}
.w1c{width:71.000000pt;}
.wd{width:78.333333pt;}
.wc{width:78.666667pt;}
.w21{width:85.000000pt;}
.w16{width:89.666667pt;}
.w15{width:90.000000pt;}
.w4{width:92.333333pt;}
.w23{width:93.000000pt;}
.w8{width:94.000000pt;}
.wf{width:94.333333pt;}
.w11{width:95.333333pt;}
.w10{width:102.000000pt;}
.w1d{width:103.666667pt;}
.w13{width:104.666667pt;}
.w17{width:105.000000pt;}
.w1a{width:114.666667pt;}
.w24{width:119.066667pt;}
.w18{width:124.000000pt;}
.w9{width:133.000000pt;}
.w14{width:135.333333pt;}
.w7{width:137.333333pt;}
.w5{width:144.666667pt;}
.w19{width:145.333333pt;}
.w1b{width:147.333333pt;}
.wa{width:151.333333pt;}
.wb{width:167.333333pt;}
.w6{width:188.333333pt;}
.w20{width:189.000000pt;}
.w25{width:308.666667pt;}
.w3{width:355.133333pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x46{left:1.400000pt;}
.x72{left:2.466667pt;}
.x31{left:4.533333pt;}
.x53{left:5.573333pt;}
.x3f{left:7.733333pt;}
.x2e{left:9.066667pt;}
.x42{left:10.506667pt;}
.x41{left:12.133333pt;}
.x9f{left:13.173333pt;}
.x5f{left:14.440000pt;}
.x6c{left:15.893333pt;}
.x5d{left:17.133333pt;}
.x55{left:18.560000pt;}
.x37{left:19.800000pt;}
.x48{left:25.400000pt;}
.x4e{left:31.466667pt;}
.x47{left:32.440000pt;}
.x59{left:35.906667pt;}
.x34{left:39.466667pt;}
.x51{left:42.173333pt;}
.x4c{left:59.173333pt;}
.xa0{left:90.200000pt;}
.x6{left:94.699988pt;}
.x27{left:95.699988pt;}
.x28{left:97.033322pt;}
.x17{left:98.366655pt;}
.x3c{left:100.033322pt;}
.x19{left:101.033322pt;}
.x7f{left:102.033322pt;}
.x1c{left:103.366655pt;}
.x38{left:105.033322pt;}
.x20{left:106.699988pt;}
.xe{left:108.033322pt;}
.x2b{left:109.699988pt;}
.x11{left:110.699988pt;}
.x5a{left:112.033322pt;}
.x1a{left:113.699988pt;}
.x26{left:115.399988pt;}
.x1f{left:117.733322pt;}
.xf{left:118.733322pt;}
.x89{left:120.066655pt;}
.x18{left:121.066655pt;}
.x82{left:122.333333pt;}
.x79{left:125.399988pt;}
.x12{left:126.733322pt;}
.x85{left:130.399988pt;}
.x77{left:131.733322pt;}
.x93{left:137.733322pt;}
.xa2{left:142.066655pt;}
.x97{left:144.066655pt;}
.x3{left:149.733322pt;}
.x64{left:156.666667pt;}
.x3e{left:162.333333pt;}
.x35{left:163.866667pt;}
.x45{left:165.333333pt;}
.x8c{left:170.733322pt;}
.x8{left:175.066655pt;}
.x23{left:176.399988pt;}
.x66{left:177.333333pt;}
.x2d{left:179.333333pt;}
.x76{left:180.399988pt;}
.x2a{left:183.066655pt;}
.x65{left:184.733322pt;}
.x1d{left:185.733322pt;}
.x2f{left:187.066655pt;}
.x5e{left:192.000000pt;}
.x68{left:193.066655pt;}
.x5{left:194.106655pt;}
.x7d{left:196.439988pt;}
.x21{left:206.773322pt;}
.x3d{left:210.106655pt;}
.x9a{left:216.439988pt;}
.x61{left:223.439988pt;}
.x60{left:224.439988pt;}
.x67{left:226.439988pt;}
.x4{left:242.773322pt;}
.x96{left:252.106655pt;}
.x81{left:269.000000pt;}
.x71{left:273.133322pt;}
.x86{left:277.333333pt;}
.xb{left:278.466655pt;}
.x98{left:280.466655pt;}
.x33{left:285.333333pt;}
.x5c{left:287.000000pt;}
.x15{left:288.133322pt;}
.x25{left:293.799988pt;}
.x80{left:295.466655pt;}
.xa1{left:297.133322pt;}
.x7{left:298.799988pt;}
.x8f{left:301.466655pt;}
.x40{left:305.666667pt;}
.x4d{left:307.666667pt;}
.x87{left:308.666667pt;}
.x88{left:315.666667pt;}
.x36{left:321.333333pt;}
.x4a{left:324.000000pt;}
.x50{left:326.666667pt;}
.x3a{left:330.799988pt;}
.x5b{left:332.799988pt;}
.x10{left:334.799988pt;}
.x29{left:336.133322pt;}
.x9d{left:337.133322pt;}
.x14{left:338.133322pt;}
.x49{left:343.666667pt;}
.x7c{left:347.133322pt;}
.x7a{left:352.506655pt;}
.x4f{left:355.173322pt;}
.x4b{left:359.173322pt;}
.xd{left:362.840000pt;}
.x9b{left:371.506655pt;}
.x90{left:381.506655pt;}
.x9e{left:383.666667pt;}
.x43{left:388.000000pt;}
.x13{left:390.506655pt;}
.xc{left:393.839988pt;}
.x2{left:397.173322pt;}
.x73{left:441.000000pt;}
.x83{left:450.333333pt;}
.x30{left:474.000000pt;}
.x62{left:477.333333pt;}
.x32{left:481.866655pt;}
.x1{left:489.199988pt;}
.x69{left:500.666667pt;}
.x63{left:504.533322pt;}
.x1b{left:507.906655pt;}
.x6d{left:511.000000pt;}
.x44{left:514.666667pt;}
.x6b{left:520.000000pt;}
.x58{left:535.333333pt;}
.x52{left:540.000000pt;}
.x6a{left:540.906655pt;}
.x6f{left:546.559988pt;}
.x56{left:548.000000pt;}
.x6e{left:548.893322pt;}
.x54{left:553.333333pt;}
.x74{left:567.666667pt;}
.x57{left:572.573322pt;}
.x9{left:574.893322pt;}
.xa{left:576.226655pt;}
.x94{left:581.226655pt;}
.x95{left:586.599988pt;}
.x16{left:591.933322pt;}
.x78{left:597.266655pt;}
.x39{left:599.266655pt;}
.x2c{left:631.266655pt;}
.x22{left:639.266655pt;}
.x8d{left:651.266655pt;}
.x9c{left:659.933322pt;}
.x75{left:661.266655pt;}
.x92{left:666.626655pt;}
.x99{left:668.639988pt;}
.x8e{left:669.973322pt;}
.x7e{left:678.306655pt;}
.x8b{left:681.306655pt;}
.x70{left:687.306655pt;}
.x7b{left:688.639988pt;}
.x1e{left:690.626655pt;}
.x91{left:692.626655pt;}
.x3b{left:694.639988pt;}
.x8a{left:697.293322pt;}
.x24{left:700.293322pt;}
.x84{left:709.639988pt;}
}




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