
    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_17b3a9d73e0ea2bc87111298.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ab502fd35a3409c55d4f8d5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_1276db17cac9f572cac94e03.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_12bfe9cf86400ddc0d4177cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_7e27b45c3ab859c23bf2ed4e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.077000;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_2dade0d97ea6a99a53b9a87e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_ae7cc084da2d039e55eb2cd7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;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_cb2efeaf90dd4effcb4f4714.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e8abd4e6afaaf339bb3110e6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942000;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_8f9cd724be0777bc52c77371.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936000;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_c3faa94158717663d968a5be.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;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_b57ac1f98dd9c58ebcbd749c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.945000;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_fd9b0f478f52369ac928584b.woff2')format("woff");}.fff{font-family:fff;line-height:0.701660;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_d987bc52de2221a863d795bb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.962000;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_67b0fd8095da1ed079ac48c6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.526000;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_7b2c8c5a849b68404d3b739d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.943000;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_1dff061266a9f8f8340a5a35.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b763887f22f6b30194787a74.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_ca1e6ba2d05736f2dc24875d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4877ed4b7783dcb7a74e5c77.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2b650e77bd4f6057b5c16377.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.041000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_984d7725706fb77aa1011f3a.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_d8732c64cc983fd6344df564.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_88d5a54bca48322c6a82e821.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_d7a040b520a372d961da0a3e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_2b650e77bd4f6057b5c16377.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.041000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_177563a5c1e58c888685e3b5.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.709473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_d987bc52de2221a863d795bb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.962000;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;}
.m3{transform:matrix(0.159134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159134,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,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);}
.v3{vertical-align:-38.400000px;}
.v1{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.200000px;}
.v5{vertical-align:15.840000px;}
.v4{vertical-align:51.600000px;}
.ls23{letter-spacing:-17.343600px;}
.ls2a{letter-spacing:-3.168000px;}
.ls2c{letter-spacing:-1.350000px;}
.ls1e{letter-spacing:-1.320000px;}
.ls29{letter-spacing:-0.960000px;}
.ls1f{letter-spacing:-0.840000px;}
.ls11{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.600000px;}
.ls30{letter-spacing:-0.594000px;}
.ls7{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.300000px;}
.ls2f{letter-spacing:-0.270000px;}
.ls19{letter-spacing:-0.240000px;}
.ls25{letter-spacing:-0.120000px;}
.ls2e{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.060000px;}
.lse{letter-spacing:-0.034687px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.450000px;}
.lsa{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.554995px;}
.ls8{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.630000px;}
.ls2b{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.ls1a{letter-spacing:1.140000px;}
.ls1{letter-spacing:1.200000px;}
.ls2d{letter-spacing:9.157800px;}
.ls6{letter-spacing:65.755800px;}
.lsf{letter-spacing:74.460000px;}
.ls27{letter-spacing:79.140000px;}
.ls26{letter-spacing:85.860000px;}
.ls28{letter-spacing:89.458289px;}
.ls10{letter-spacing:180.060000px;}
.ls15{letter-spacing:196.800000px;}
.ls13{letter-spacing:207.660000px;}
.ls22{letter-spacing:212.880000px;}
.ls17{letter-spacing:218.155129px;}
.ls14{letter-spacing:227.443970px;}
.ls1d{letter-spacing:231.596820px;}
.ls21{letter-spacing:232.855174px;}
.ls1b{letter-spacing:237.780756px;}
.ls1c{letter-spacing:321.143820px;}
.ls24{letter-spacing:342.085200px;}
.ls18{letter-spacing:421.969788px;}
.ls16{letter-spacing:577.200000px;}
.ls20{letter-spacing:691.585620px;}
.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;}
}
.wsed{word-spacing:-691.585620px;}
.wse4{word-spacing:-402.191147px;}
.wse9{word-spacing:-321.143820px;}
.wsea{word-spacing:-231.596820px;}
.wsf0{word-spacing:-212.880000px;}
.wscf{word-spacing:-180.060000px;}
.wsd8{word-spacing:-177.209967px;}
.wsdc{word-spacing:-137.923245px;}
.wsdb{word-spacing:-110.994000px;}
.wsd7{word-spacing:-60.240000px;}
.wsd2{word-spacing:-59.940000px;}
.wsd6{word-spacing:-59.760000px;}
.wsde{word-spacing:-59.160000px;}
.wsdd{word-spacing:-58.680000px;}
.wsda{word-spacing:-32.940000px;}
.wsd4{word-spacing:-23.233487px;}
.wsd5{word-spacing:-22.633398px;}
.wsdf{word-spacing:-21.454033px;}
.wse5{word-spacing:-17.343600px;}
.ws1{word-spacing:-13.986000px;}
.ws10f{word-spacing:-13.620000px;}
.ws137{word-spacing:-13.332000px;}
.ws95{word-spacing:-13.200000px;}
.ws33{word-spacing:-12.960000px;}
.ws129{word-spacing:-12.726000px;}
.ws4{word-spacing:-12.720000px;}
.ws97{word-spacing:-12.420000px;}
.wsbf{word-spacing:-12.120000px;}
.ws136{word-spacing:-11.448000px;}
.ws139{word-spacing:-11.340000px;}
.ws158{word-spacing:-11.178000px;}
.ws96{word-spacing:-10.908000px;}
.ws17c{word-spacing:-10.854000px;}
.ws138{word-spacing:-9.828000px;}
.ws7{word-spacing:-9.810000px;}
.ws13a{word-spacing:-9.720000px;}
.ws100{word-spacing:-9.696000px;}
.ws110{word-spacing:-9.408000px;}
.ws2{word-spacing:-9.360000px;}
.ws17d{word-spacing:-9.234000px;}
.ws5{word-spacing:-8.820000px;}
.wsc3{word-spacing:-8.268000px;}
.ws6{word-spacing:-8.232000px;}
.wsff{word-spacing:-6.115200px;}
.ws3{word-spacing:-2.666400px;}
.ws10e{word-spacing:-2.324700px;}
.wse8{word-spacing:-1.140000px;}
.ws11a{word-spacing:-0.900000px;}
.wsb6{word-spacing:-0.780000px;}
.wse6{word-spacing:-0.554995px;}
.ws5a{word-spacing:-0.450000px;}
.wsee{word-spacing:-0.240000px;}
.ws0{word-spacing:0.000000px;}
.wse7{word-spacing:0.034687px;}
.wsef{word-spacing:0.060000px;}
.ws154{word-spacing:0.108000px;}
.wsb7{word-spacing:0.120000px;}
.wsac{word-spacing:0.300000px;}
.ws184{word-spacing:0.594000px;}
.wsbb{word-spacing:1.320000px;}
.ws174{word-spacing:1.566000px;}
.wsba{word-spacing:1.800000px;}
.ws173{word-spacing:1.836000px;}
.wsb8{word-spacing:2.400000px;}
.wsb5{word-spacing:2.460000px;}
.ws126{word-spacing:3.840000px;}
.wsb4{word-spacing:3.960000px;}
.wsb9{word-spacing:4.260000px;}
.ws9d{word-spacing:4.380000px;}
.wscd{word-spacing:5.040000px;}
.wsec{word-spacing:5.160000px;}
.ws1b{word-spacing:5.184000px;}
.ws153{word-spacing:5.346000px;}
.wsb3{word-spacing:5.400000px;}
.ws145{word-spacing:5.508000px;}
.ws2e{word-spacing:5.760000px;}
.ws10d{word-spacing:5.808000px;}
.ws50{word-spacing:5.820000px;}
.ws14c{word-spacing:5.886000px;}
.wsf2{word-spacing:5.940000px;}
.ws16c{word-spacing:5.994000px;}
.ws25{word-spacing:6.180000px;}
.ws23{word-spacing:6.264000px;}
.ws16d{word-spacing:6.318000px;}
.ws61{word-spacing:6.360000px;}
.ws11f{word-spacing:6.420000px;}
.ws75{word-spacing:6.480000px;}
.ws58{word-spacing:6.540000px;}
.ws12e{word-spacing:6.588000px;}
.ws2d{word-spacing:6.594000px;}
.ws4d{word-spacing:6.600000px;}
.ws9{word-spacing:6.615000px;}
.ws1a{word-spacing:6.660000px;}
.ws8b{word-spacing:6.720000px;}
.ws14e{word-spacing:6.750000px;}
.ws5b{word-spacing:6.780000px;}
.ws185{word-spacing:6.804000px;}
.ws54{word-spacing:6.840000px;}
.ws152{word-spacing:6.858000px;}
.wscb{word-spacing:6.900000px;}
.ws183{word-spacing:6.912000px;}
.ws57{word-spacing:7.020000px;}
.wsa{word-spacing:7.065000px;}
.ws46{word-spacing:7.080000px;}
.ws76{word-spacing:7.140000px;}
.ws177{word-spacing:7.182000px;}
.ws24{word-spacing:7.200000px;}
.wsad{word-spacing:7.260000px;}
.ws135{word-spacing:7.290000px;}
.ws36{word-spacing:7.320000px;}
.ws17b{word-spacing:7.344000px;}
.ws4a{word-spacing:7.440000px;}
.wsa2{word-spacing:7.500000px;}
.ws1c{word-spacing:7.506000px;}
.ws2f{word-spacing:7.536000px;}
.ws86{word-spacing:7.560000px;}
.ws188{word-spacing:7.614000px;}
.wsf5{word-spacing:7.620000px;}
.ws186{word-spacing:7.668000px;}
.ws2b{word-spacing:7.680000px;}
.ws150{word-spacing:7.722000px;}
.wsd1{word-spacing:7.776000px;}
.ws14d{word-spacing:7.830000px;}
.wsa1{word-spacing:7.860000px;}
.ws14b{word-spacing:7.884000px;}
.ws38{word-spacing:7.920000px;}
.ws130{word-spacing:7.938000px;}
.ws9f{word-spacing:7.980000px;}
.ws151{word-spacing:7.992000px;}
.ws70{word-spacing:8.040000px;}
.ws182{word-spacing:8.046000px;}
.ws81{word-spacing:8.100000px;}
.ws32{word-spacing:8.160000px;}
.ws35{word-spacing:8.220000px;}
.wsa6{word-spacing:8.280000px;}
.ws18a{word-spacing:8.316000px;}
.ws45{word-spacing:8.340000px;}
.ws176{word-spacing:8.370000px;}
.ws9b{word-spacing:8.400000px;}
.ws172{word-spacing:8.424000px;}
.ws65{word-spacing:8.460000px;}
.wsd{word-spacing:8.478000px;}
.ws31{word-spacing:8.484000px;}
.ws11e{word-spacing:8.580000px;}
.ws160{word-spacing:8.586000px;}
.ws56{word-spacing:8.640000px;}
.ws157{word-spacing:8.694000px;}
.ws7c{word-spacing:8.700000px;}
.ws16a{word-spacing:8.748000px;}
.wsa3{word-spacing:8.760000px;}
.wsbd{word-spacing:8.778000px;}
.ws131{word-spacing:8.802000px;}
.wsaf{word-spacing:8.820000px;}
.ws3e{word-spacing:8.940000px;}
.wsbe{word-spacing:8.949000px;}
.ws12{word-spacing:8.964000px;}
.ws4b{word-spacing:9.000000px;}
.ws179{word-spacing:9.018000px;}
.ws109{word-spacing:9.060000px;}
.ws167{word-spacing:9.072000px;}
.wsca{word-spacing:9.120000px;}
.ws12d{word-spacing:9.126000px;}
.ws19{word-spacing:9.180000px;}
.wscc{word-spacing:9.198000px;}
.ws18{word-spacing:9.234000px;}
.ws5e{word-spacing:9.240000px;}
.ws8a{word-spacing:9.261000px;}
.ws141{word-spacing:9.288000px;}
.ws34{word-spacing:9.300000px;}
.ws178{word-spacing:9.342000px;}
.ws4f{word-spacing:9.360000px;}
.ws13{word-spacing:9.396000px;}
.ws10{word-spacing:9.450000px;}
.ws5c{word-spacing:9.480000px;}
.ws13b{word-spacing:9.504000px;}
.ws6c{word-spacing:9.540000px;}
.ws133{word-spacing:9.558000px;}
.ws8{word-spacing:9.600000px;}
.ws155{word-spacing:9.612000px;}
.ws189{word-spacing:9.666000px;}
.ws44{word-spacing:9.720000px;}
.ws168{word-spacing:9.774000px;}
.ws80{word-spacing:9.780000px;}
.ws1d{word-spacing:9.828000px;}
.ws10a{word-spacing:9.840000px;}
.ws17a{word-spacing:9.882000px;}
.wsab{word-spacing:9.900000px;}
.ws53{word-spacing:9.960000px;}
.ws15f{word-spacing:9.990000px;}
.ws4e{word-spacing:10.020000px;}
.ws20{word-spacing:10.044000px;}
.ws2a{word-spacing:10.080000px;}
.ws147{word-spacing:10.098000px;}
.ws37{word-spacing:10.140000px;}
.ws156{word-spacing:10.152000px;}
.ws28{word-spacing:10.200000px;}
.ws14a{word-spacing:10.206000px;}
.wsf{word-spacing:10.260000px;}
.wsb0{word-spacing:10.320000px;}
.ws98{word-spacing:10.380000px;}
.ws13e{word-spacing:10.422000px;}
.ws11b{word-spacing:10.440000px;}
.ws5f{word-spacing:10.500000px;}
.ws15e{word-spacing:10.530000px;}
.ws39{word-spacing:10.560000px;}
.ws175{word-spacing:10.584000px;}
.wsc9{word-spacing:10.620000px;}
.ws4c{word-spacing:10.680000px;}
.ws89{word-spacing:10.692000px;}
.wsc{word-spacing:10.710000px;}
.wsce{word-spacing:10.740000px;}
.ws142{word-spacing:10.746000px;}
.ws3d{word-spacing:10.860000px;}
.ws144{word-spacing:10.908000px;}
.ws117{word-spacing:10.920000px;}
.wsf3{word-spacing:10.980000px;}
.ws12c{word-spacing:11.016000px;}
.ws7a{word-spacing:11.040000px;}
.ws134{word-spacing:11.070000px;}
.ws122{word-spacing:11.100000px;}
.ws149{word-spacing:11.124000px;}
.ws8f{word-spacing:11.160000px;}
.ws16e{word-spacing:11.178000px;}
.wsa9{word-spacing:11.220000px;}
.ws17{word-spacing:11.232000px;}
.ws9a{word-spacing:11.280000px;}
.ws30{word-spacing:11.298000px;}
.wsb1{word-spacing:11.340000px;}
.ws9c{word-spacing:11.400000px;}
.ws93{word-spacing:11.520000px;}
.ws10c{word-spacing:11.580000px;}
.ws16b{word-spacing:11.610000px;}
.ws107{word-spacing:11.700000px;}
.ws15a{word-spacing:11.718000px;}
.ws16{word-spacing:11.772000px;}
.ws5d{word-spacing:11.820000px;}
.ws162{word-spacing:11.826000px;}
.ws2c{word-spacing:11.880000px;}
.ws161{word-spacing:11.934000px;}
.ws78{word-spacing:11.940000px;}
.ws124{word-spacing:12.000000px;}
.ws18c{word-spacing:12.042000px;}
.ws3f{word-spacing:12.060000px;}
.ws88{word-spacing:12.120000px;}
.ws29{word-spacing:12.180000px;}
.ws3c{word-spacing:12.240000px;}
.ws15d{word-spacing:12.258000px;}
.ws6e{word-spacing:12.300000px;}
.ws48{word-spacing:12.420000px;}
.ws3b{word-spacing:12.480000px;}
.ws49{word-spacing:12.540000px;}
.ws13c{word-spacing:12.582000px;}
.ws108{word-spacing:12.600000px;}
.wsb2{word-spacing:12.720000px;}
.ws1e{word-spacing:12.744000px;}
.wsf4{word-spacing:12.840000px;}
.ws16f{word-spacing:12.852000px;}
.wsa5{word-spacing:12.900000px;}
.wsc8{word-spacing:12.960000px;}
.ws123{word-spacing:13.020000px;}
.ws171{word-spacing:13.122000px;}
.ws68{word-spacing:13.140000px;}
.ws10b{word-spacing:13.260000px;}
.ws90{word-spacing:13.320000px;}
.ws18e{word-spacing:13.392000px;}
.ws43{word-spacing:13.440000px;}
.ws21{word-spacing:13.446000px;}
.ws92{word-spacing:13.500000px;}
.ws132{word-spacing:13.554000px;}
.ws8e{word-spacing:13.560000px;}
.ws120{word-spacing:13.620000px;}
.ws159{word-spacing:13.662000px;}
.ws121{word-spacing:13.740000px;}
.ws140{word-spacing:13.770000px;}
.ws143{word-spacing:13.824000px;}
.ws69{word-spacing:13.860000px;}
.ws12f{word-spacing:13.878000px;}
.wsb{word-spacing:13.944000px;}
.ws84{word-spacing:13.980000px;}
.ws13d{word-spacing:14.094000px;}
.ws82{word-spacing:14.100000px;}
.ws9e{word-spacing:14.160000px;}
.ws7d{word-spacing:14.220000px;}
.ws12b{word-spacing:14.340000px;}
.ws77{word-spacing:14.400000px;}
.ws7e{word-spacing:14.460000px;}
.ws18b{word-spacing:14.526000px;}
.wsa8{word-spacing:14.580000px;}
.ws14f{word-spacing:14.634000px;}
.ws99{word-spacing:14.640000px;}
.ws64{word-spacing:14.760000px;}
.ws14{word-spacing:14.850000px;}
.ws60{word-spacing:14.880000px;}
.ws63{word-spacing:14.940000px;}
.wsaa{word-spacing:15.000000px;}
.ws128{word-spacing:15.060000px;}
.ws6d{word-spacing:15.180000px;}
.ws66{word-spacing:15.300000px;}
.ws13f{word-spacing:15.444000px;}
.ws85{word-spacing:15.540000px;}
.ws40{word-spacing:15.600000px;}
.ws18d{word-spacing:15.606000px;}
.ws125{word-spacing:15.840000px;}
.ws127{word-spacing:16.020000px;}
.ws146{word-spacing:16.038000px;}
.ws15c{word-spacing:16.092000px;}
.ws187{word-spacing:16.200000px;}
.ws17e{word-spacing:16.254000px;}
.wsae{word-spacing:16.380000px;}
.ws83{word-spacing:16.440000px;}
.ws6a{word-spacing:16.500000px;}
.ws91{word-spacing:16.560000px;}
.ws3a{word-spacing:16.620000px;}
.ws106{word-spacing:16.800000px;}
.ws79{word-spacing:16.920000px;}
.ws71{word-spacing:16.980000px;}
.ws52{word-spacing:17.220000px;}
.ws51{word-spacing:17.340000px;}
.ws41{word-spacing:17.400000px;}
.ws7f{word-spacing:17.760000px;}
.ws7b{word-spacing:18.060000px;}
.ws8c{word-spacing:18.120000px;}
.wsa4{word-spacing:18.240000px;}
.ws27{word-spacing:18.300000px;}
.ws42{word-spacing:18.420000px;}
.ws72{word-spacing:18.600000px;}
.ws73{word-spacing:18.660000px;}
.wsa7{word-spacing:18.720000px;}
.ws15b{word-spacing:18.792000px;}
.ws12a{word-spacing:18.900000px;}
.ws119{word-spacing:19.020000px;}
.ws47{word-spacing:19.380000px;}
.ws164{word-spacing:19.386000px;}
.ws11{word-spacing:19.494000px;}
.ws87{word-spacing:19.500000px;}
.wse{word-spacing:19.926000px;}
.ws67{word-spacing:20.100000px;}
.ws170{word-spacing:20.358000px;}
.ws62{word-spacing:20.460000px;}
.ws181{word-spacing:21.060000px;}
.ws11c{word-spacing:21.180000px;}
.wsbc{word-spacing:22.440000px;}
.ws11d{word-spacing:22.500000px;}
.ws163{word-spacing:22.626000px;}
.ws26{word-spacing:22.800000px;}
.ws94{word-spacing:23.400000px;}
.ws15{word-spacing:23.490000px;}
.ws6f{word-spacing:23.580000px;}
.ws55{word-spacing:23.760000px;}
.ws6b{word-spacing:23.820000px;}
.ws59{word-spacing:23.940000px;}
.ws8d{word-spacing:24.840000px;}
.ws1f{word-spacing:25.002000px;}
.ws169{word-spacing:25.758000px;}
.ws118{word-spacing:26.580000px;}
.ws166{word-spacing:26.892000px;}
.wsfa{word-spacing:28.249256px;}
.wsc4{word-spacing:28.260000px;}
.ws148{word-spacing:29.052000px;}
.wsc2{word-spacing:29.280000px;}
.ws180{word-spacing:30.510000px;}
.ws74{word-spacing:30.840000px;}
.ws165{word-spacing:31.320000px;}
.ws22{word-spacing:31.536000px;}
.ws17f{word-spacing:35.532000px;}
.wsa0{word-spacing:37.320000px;}
.wsc1{word-spacing:54.746808px;}
.wsf8{word-spacing:55.080000px;}
.wsf6{word-spacing:66.186000px;}
.wsf9{word-spacing:68.520000px;}
.wsc0{word-spacing:73.788000px;}
.wsc6{word-spacing:84.132000px;}
.wse3{word-spacing:91.851706px;}
.wsc5{word-spacing:100.346601px;}
.wse2{word-spacing:121.640990px;}
.wsd3{word-spacing:127.872000px;}
.wsd9{word-spacing:178.932000px;}
.wse0{word-spacing:181.344682px;}
.wse1{word-spacing:184.332000px;}
.wsf7{word-spacing:205.937906px;}
.ws112{word-spacing:212.314200px;}
.ws116{word-spacing:217.065600px;}
.ws114{word-spacing:224.169600px;}
.ws115{word-spacing:224.170200px;}
.ws101{word-spacing:237.979800px;}
.wsfc{word-spacing:238.978800px;}
.ws102{word-spacing:239.481600px;}
.ws104{word-spacing:261.651600px;}
.ws105{word-spacing:264.697800px;}
.ws111{word-spacing:289.330800px;}
.wsfe{word-spacing:294.648600px;}
.ws103{word-spacing:325.923600px;}
.wsfb{word-spacing:343.902000px;}
.ws113{word-spacing:417.881400px;}
.wsfd{word-spacing:570.348000px;}
.wsf1{word-spacing:574.074000px;}
.wseb{word-spacing:705.834000px;}
.wsd0{word-spacing:1029.564000px;}
.wsc7{word-spacing:1905.329400px;}
._40{margin-left:-1720.576200px;}
._30{margin-left:-1331.400000px;}
._24{margin-left:-913.140000px;}
._19{margin-left:-385.800000px;}
._1b{margin-left:-17.580015px;}
._1a{margin-left:-15.960000px;}
._26{margin-left:-14.760015px;}
._53{margin-left:-8.202029px;}
._51{margin-left:-6.660044px;}
._15{margin-left:-5.616015px;}
._1{margin-left:-4.140000px;}
._6{margin-left:-3.024000px;}
._0{margin-left:-1.919985px;}
._4{width:1.163985px;}
._7{width:2.173785px;}
._16{width:3.353385px;}
._2{width:5.999927px;}
._3{width:7.207785px;}
._11{width:8.268000px;}
._9{width:9.287985px;}
._a{width:10.458615px;}
._c{width:11.942385px;}
._e{width:13.368000px;}
._14{width:14.394000px;}
._50{width:15.959985px;}
._10{width:17.154000px;}
._12{width:18.578400px;}
._d{width:19.906171px;}
._f{width:24.179971px;}
._52{width:26.606985px;}
._13{width:31.104000px;}
._54{width:35.993356px;}
._35{width:52.080000px;}
._5{width:60.127200px;}
._23{width:81.005018px;}
._1c{width:91.602015px;}
._18{width:98.997269px;}
._b{width:131.698171px;}
._8{width:133.679400px;}
._28{width:135.582000px;}
._29{width:138.654000px;}
._2f{width:149.400000px;}
._1e{width:153.048000px;}
._32{width:159.120000px;}
._2e{width:180.000000px;}
._1d{width:184.782183px;}
._31{width:187.449197px;}
._2d{width:190.200000px;}
._34{width:193.193829px;}
._17{width:196.190803px;}
._33{width:205.799158px;}
._22{width:208.289699px;}
._39{width:223.527000px;}
._46{width:233.578200px;}
._4f{width:240.777600px;}
._27{width:246.960000px;}
._47{width:250.255829px;}
._44{width:252.178200px;}
._3a{width:266.060400px;}
._3d{width:273.988368px;}
._4d{width:275.635800px;}
._49{width:276.970200px;}
._2b{width:279.578832px;}
._48{width:286.640400px;}
._3e{width:293.835000px;}
._3c{width:296.281800px;}
._4b{width:303.848400px;}
._4c{width:305.577600px;}
._25{width:315.048000px;}
._38{width:321.705600px;}
._3f{width:327.496200px;}
._42{width:331.733385px;}
._43{width:341.560785px;}
._37{width:349.053600px;}
._2c{width:357.000662px;}
._41{width:378.687000px;}
._3b{width:392.022000px;}
._2a{width:408.580529px;}
._4e{width:424.193385px;}
._4a{width:449.080800px;}
._36{width:531.024000px;}
._45{width:710.370000px;}
._1f{width:1440.520785px;}
._21{width:1524.148800px;}
._20{width:1799.536800px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:31.200000px;}
.fsd{font-size:34.687200px;}
.fsf{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fse{font-size:61.434844px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs10{font-size:94.260000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y14a{bottom:3.449250px;}
.y17f{bottom:5.249850px;}
.y16d{bottom:5.250300px;}
.y149{bottom:7.499250px;}
.y1a6{bottom:7.499700px;}
.y15a{bottom:8.999250px;}
.y175{bottom:20.999850px;}
.y168{bottom:21.000300px;}
.y17b{bottom:32.099850px;}
.y16e{bottom:32.100300px;}
.y166{bottom:32.700300px;}
.y5{bottom:66.525004px;}
.y35{bottom:67.597501px;}
.y34{bottom:84.097501px;}
.y27c{bottom:85.222350px;}
.yda{bottom:85.275000px;}
.yb5{bottom:85.426200px;}
.y1fc{bottom:85.634850px;}
.y13b{bottom:86.131200px;}
.y117{bottom:86.176200px;}
.y229{bottom:86.926200px;}
.y24d{bottom:87.186900px;}
.y4{bottom:97.125005px;}
.y163{bottom:98.775000px;}
.y1a3{bottom:99.579450px;}
.y27b{bottom:101.722350px;}
.y69{bottom:103.065600px;}
.y24c{bottom:103.686900px;}
.y1d5{bottom:104.385000px;}
.yd9{bottom:104.775000px;}
.yb4{bottom:104.926200px;}
.y1fb{bottom:105.134850px;}
.y13a{bottom:105.631200px;}
.y228{bottom:106.426200px;}
.y2b8{bottom:110.551200px;}
.y162{bottom:112.275000px;}
.y68{bottom:115.065600px;}
.y1d4{bottom:117.510000px;}
.y116{bottom:117.676200px;}
.y27a{bottom:118.222350px;}
.y1a2{bottom:119.079450px;}
.y24b{bottom:120.186900px;}
.yd8{bottom:124.275000px;}
.yb3{bottom:124.426200px;}
.y1fa{bottom:124.634850px;}
.y139{bottom:125.131200px;}
.y161{bottom:125.775000px;}
.y227{bottom:125.926200px;}
.y2b7{bottom:127.051200px;}
.y67{bottom:127.065600px;}
.y1d3{bottom:131.550000px;}
.y279{bottom:134.722350px;}
.y115{bottom:137.176200px;}
.y1a1{bottom:138.579450px;}
.y21{bottom:139.264499px;}
.y160{bottom:139.275000px;}
.y63{bottom:139.440600px;}
.y2b6{bottom:143.551200px;}
.yd7{bottom:143.775000px;}
.yb2{bottom:143.926200px;}
.y1f9{bottom:144.134850px;}
.y138{bottom:144.631200px;}
.y1d2{bottom:145.050000px;}
.y226{bottom:145.426200px;}
.y24a{bottom:147.186900px;}
.y65{bottom:150.315600px;}
.y278{bottom:151.222350px;}
.y15f{bottom:152.775000px;}
.y114{bottom:156.676200px;}
.y1d1{bottom:158.550000px;}
.y2b5{bottom:160.051200px;}
.yd6{bottom:163.275000px;}
.yb1{bottom:163.426200px;}
.y64{bottom:163.815600px;}
.y137{bottom:164.131200px;}
.y225{bottom:164.926200px;}
.y15e{bottom:166.275000px;}
.y277{bottom:167.722350px;}
.y1a0{bottom:168.579450px;}
.y113{bottom:176.176200px;}
.y2b4{bottom:176.551200px;}
.y1d0{bottom:176.925000px;}
.yd5{bottom:182.775000px;}
.yb0{bottom:182.926200px;}
.y136{bottom:183.631200px;}
.y276{bottom:184.222350px;}
.y15d{bottom:184.275000px;}
.y224{bottom:184.426200px;}
.y1f8{bottom:191.185200px;}
.y2b3{bottom:193.051200px;}
.y1cf{bottom:195.675000px;}
.y112{bottom:195.676200px;}
.y18{bottom:196.933500px;}
.y249{bottom:198.476250px;}
.y62{bottom:199.282800px;}
.y275{bottom:200.722350px;}
.yd4{bottom:202.275000px;}
.yaf{bottom:202.426200px;}
.y15c{bottom:203.025000px;}
.y135{bottom:203.131200px;}
.y223{bottom:203.926200px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y2b2{bottom:209.551200px;}
.y1f7{bottom:210.685200px;}
.y1ce{bottom:214.425000px;}
.y248{bottom:214.976250px;}
.y111{bottom:215.176200px;}
.y274{bottom:217.222350px;}
.y61{bottom:218.782800px;}
.y19f{bottom:219.579450px;}
.yd3{bottom:221.775000px;}
.yae{bottom:221.926200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y134{bottom:222.631200px;}
.y222{bottom:223.426200px;}
.y2b1{bottom:226.051200px;}
.y1f6{bottom:230.185200px;}
.y247{bottom:231.476250px;}
.yf0{bottom:232.275000px;}
.y273{bottom:233.722350px;}
.y110{bottom:234.676200px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y159{bottom:238.035000px;}
.y60{bottom:238.282800px;}
.y19e{bottom:239.079450px;}
.yd2{bottom:241.275000px;}
.yad{bottom:241.426200px;}
.y133{bottom:242.131200px;}
.y2b0{bottom:242.551200px;}
.y221{bottom:242.926200px;}
.y15b{bottom:243.134250px;}
.y158{bottom:247.034250px;}
.y1f5{bottom:249.685200px;}
.y272{bottom:250.222350px;}
.y10f{bottom:254.176200px;}
.y5f{bottom:257.782800px;}
.y246{bottom:258.476250px;}
.y19d{bottom:258.579450px;}
.y2af{bottom:259.051200px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yd1{bottom:260.775000px;}
.yac{bottom:260.926200px;}
.y132{bottom:261.631200px;}
.y220{bottom:262.426200px;}
.y271{bottom:266.722350px;}
.y1f4{bottom:269.185200px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1cd{bottom:273.661200px;}
.y10e{bottom:273.676200px;}
.y2ae{bottom:275.551200px;}
.y5e{bottom:277.282800px;}
.y19c{bottom:278.079450px;}
.yd0{bottom:280.275000px;}
.yab{bottom:280.426200px;}
.y131{bottom:281.131200px;}
.y21f{bottom:281.926200px;}
.y157{bottom:283.155300px;}
.y270{bottom:283.222350px;}
.yef{bottom:284.850600px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y33{bottom:286.426501px;}
.y1cc{bottom:286.786200px;}
.y1f3{bottom:288.685200px;}
.y2ad{bottom:292.051200px;}
.y10d{bottom:293.176200px;}
.y5d{bottom:296.782800px;}
.y19b{bottom:297.579450px;}
.y26f{bottom:299.722350px;}
.ycf{bottom:299.775000px;}
.yaa{bottom:299.926200px;}
.y1cb{bottom:300.826200px;}
.y21e{bottom:301.426200px;}
.y156{bottom:302.655300px;}
.yee{bottom:304.350600px;}
.y1f2{bottom:308.185200px;}
.y2ac{bottom:308.551200px;}
.y245{bottom:309.765750px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y130{bottom:311.131200px;}
.y10c{bottom:312.676200px;}
.y26e{bottom:316.222350px;}
.y5c{bottom:316.282800px;}
.yce{bottom:319.275000px;}
.ya9{bottom:319.426200px;}
.y1c9{bottom:319.576200px;}
.y21d{bottom:320.926200px;}
.y155{bottom:322.155300px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yed{bottom:323.850600px;}
.y2ab{bottom:325.051200px;}
.y244{bottom:326.265750px;}
.y1f1{bottom:327.685200px;}
.y1ca{bottom:333.076200px;}
.y5b{bottom:335.782800px;}
.ycd{bottom:338.775000px;}
.ya8{bottom:338.926200px;}
.y21c{bottom:340.426200px;}
.y2aa{bottom:341.551200px;}
.y154{bottom:341.655300px;}
.y26d{bottom:343.222350px;}
.yec{bottom:343.350600px;}
.y19a{bottom:345.700350px;}
.y10b{bottom:347.176200px;}
.y1f0{bottom:347.185200px;}
.yf{bottom:348.133500px;}
.y32{bottom:350.776501px;}
.y1c8{bottom:351.826200px;}
.y243{bottom:353.265750px;}
.y5a{bottom:355.282800px;}
.y2a9{bottom:358.051200px;}
.ycc{bottom:358.275000px;}
.ya7{bottom:358.426200px;}
.y21b{bottom:359.926200px;}
.yeb{bottom:362.850600px;}
.y199{bottom:365.200350px;}
.y12f{bottom:365.986200px;}
.y1ef{bottom:366.685200px;}
.y1c7{bottom:370.576200px;}
.y2a8{bottom:374.551200px;}
.y59{bottom:374.782800px;}
.ycb{bottom:377.775000px;}
.ya6{bottom:377.926200px;}
.y10a{bottom:379.426200px;}
.yea{bottom:382.350600px;}
.y198{bottom:384.700350px;}
.y12e{bottom:385.486200px;}
.y1ee{bottom:386.185200px;}
.y153{bottom:386.347950px;}
.ye{bottom:386.785499px;}
.y2a7{bottom:391.051200px;}
.yca{bottom:397.275000px;}
.ya5{bottom:397.426200px;}
.y109{bottom:398.926200px;}
.ye9{bottom:401.850600px;}
.y242{bottom:402.765750px;}
.y26c{bottom:403.222350px;}
.y197{bottom:404.200350px;}
.y58{bottom:404.782800px;}
.y12d{bottom:404.986200px;}
.y1ed{bottom:405.685200px;}
.y152{bottom:405.847950px;}
.y2a6{bottom:407.551200px;}
.yd{bottom:408.044999px;}
.y31{bottom:415.126501px;}
.yc9{bottom:416.775000px;}
.ya4{bottom:416.926200px;}
.y1c6{bottom:417.000750px;}
.y108{bottom:418.426200px;}
.y26b{bottom:419.722350px;}
.ye8{bottom:421.350600px;}
.y196{bottom:423.700350px;}
.y2a5{bottom:424.051200px;}
.y12c{bottom:424.486200px;}
.y1ec{bottom:425.185200px;}
.y151{bottom:425.347950px;}
.y241{bottom:429.765750px;}
.y26a{bottom:436.222350px;}
.yc8{bottom:436.275000px;}
.ya3{bottom:436.426200px;}
.y1c5{bottom:436.500750px;}
.y107{bottom:437.926200px;}
.y2a4{bottom:440.551200px;}
.ye7{bottom:440.850600px;}
.y195{bottom:443.200350px;}
.y12b{bottom:443.986200px;}
.y1eb{bottom:444.685200px;}
.y150{bottom:444.847950px;}
.yc7{bottom:455.775000px;}
.ya2{bottom:455.926200px;}
.y1c4{bottom:456.000750px;}
.y2a3{bottom:457.051200px;}
.y106{bottom:457.426200px;}
.ye6{bottom:460.350600px;}
.y194{bottom:462.700350px;}
.y269{bottom:463.222350px;}
.y12a{bottom:463.486200px;}
.y1ea{bottom:464.185200px;}
.y14f{bottom:464.347950px;}
.y2a2{bottom:473.551200px;}
.yc6{bottom:475.275000px;}
.y57{bottom:475.282800px;}
.ya1{bottom:475.426200px;}
.y1c3{bottom:475.500750px;}
.y105{bottom:476.926200px;}
.ye5{bottom:479.850600px;}
.y240{bottom:482.265750px;}
.y30{bottom:482.407500px;}
.y129{bottom:482.986200px;}
.y1e9{bottom:483.685200px;}
.y14e{bottom:483.847950px;}
.y2a1{bottom:490.051200px;}
.y56{bottom:490.282800px;}
.yc5{bottom:494.775000px;}
.ya0{bottom:494.926200px;}
.y1c2{bottom:495.000750px;}
.y104{bottom:496.426200px;}
.y23f{bottom:498.765750px;}
.ye4{bottom:499.350600px;}
.y128{bottom:502.486200px;}
.yc{bottom:502.864502px;}
.y1e8{bottom:503.185200px;}
.y14d{bottom:503.347950px;}
.y55{bottom:505.282800px;}
.y2a0{bottom:506.551200px;}
.y193{bottom:510.821400px;}
.yc4{bottom:514.275000px;}
.y9f{bottom:514.426200px;}
.y1c1{bottom:514.500750px;}
.y268{bottom:514.511700px;}
.y23e{bottom:515.265750px;}
.y103{bottom:515.926200px;}
.ye3{bottom:518.850600px;}
.y54{bottom:520.282800px;}
.yb{bottom:520.864502px;}
.y127{bottom:521.986200px;}
.y1e7{bottom:522.685200px;}
.y14c{bottom:522.847950px;}
.y29f{bottom:523.051200px;}
.y21a{bottom:526.426200px;}
.y192{bottom:530.321400px;}
.y23d{bottom:531.765750px;}
.yc3{bottom:533.775000px;}
.y9e{bottom:533.926200px;}
.y1c0{bottom:534.000750px;}
.y53{bottom:535.282800px;}
.y102{bottom:535.426200px;}
.ye2{bottom:538.350600px;}
.ya{bottom:538.864499px;}
.y29e{bottom:539.551200px;}
.y126{bottom:541.486200px;}
.y267{bottom:541.511700px;}
.y14b{bottom:542.347950px;}
.y2f{bottom:543.826501px;}
.y23c{bottom:548.265750px;}
.y191{bottom:549.821400px;}
.y52{bottom:550.282800px;}
.yc2{bottom:553.275000px;}
.y9d{bottom:553.426200px;}
.y7f{bottom:553.483200px;}
.y1bf{bottom:553.500750px;}
.y101{bottom:554.926200px;}
.y29d{bottom:556.051200px;}
.y9{bottom:556.864499px;}
.ye1{bottom:557.850600px;}
.y125{bottom:560.986200px;}
.y23b{bottom:564.765750px;}
.y51{bottom:565.282800px;}
.y7e{bottom:566.983200px;}
.y190{bottom:569.321400px;}
.y148{bottom:570.541500px;}
.y29c{bottom:572.551200px;}
.yc1{bottom:572.775000px;}
.y9c{bottom:572.926200px;}
.y1be{bottom:573.000750px;}
.y1e6{bottom:576.685200px;}
.ye0{bottom:577.350600px;}
.y147{bottom:578.040750px;}
.y50{bottom:580.282800px;}
.y219{bottom:580.426200px;}
.y7d{bottom:580.483200px;}
.y23a{bottom:581.265750px;}
.y18f{bottom:588.821400px;}
.y29b{bottom:589.051200px;}
.y100{bottom:590.176200px;}
.yc0{bottom:592.275000px;}
.y9b{bottom:592.426200px;}
.y1bd{bottom:592.500750px;}
.y266{bottom:592.511700px;}
.y7c{bottom:593.983200px;}
.y4f{bottom:595.282800px;}
.y1e5{bottom:596.185200px;}
.ydf{bottom:596.850600px;}
.y124{bottom:598.486200px;}
.y218{bottom:599.926200px;}
.y29a{bottom:605.551200px;}
.y7b{bottom:607.483200px;}
.y239{bottom:608.265750px;}
.y18e{bottom:608.321400px;}
.y265{bottom:609.011700px;}
.y4e{bottom:610.282800px;}
.y146{bottom:610.733400px;}
.y2e{bottom:611.107500px;}
.ybf{bottom:611.775000px;}
.y9a{bottom:611.926200px;}
.y1e4{bottom:615.685200px;}
.yde{bottom:616.350600px;}
.y123{bottom:617.986200px;}
.y217{bottom:619.426200px;}
.y7a{bottom:620.983200px;}
.y299{bottom:622.051200px;}
.yff{bottom:622.426200px;}
.y4d{bottom:625.282800px;}
.y264{bottom:625.511700px;}
.y18d{bottom:627.821400px;}
.y145{bottom:630.233400px;}
.ybe{bottom:631.275000px;}
.y99{bottom:631.426200px;}
.y1bc{bottom:634.276050px;}
.y79{bottom:634.483200px;}
.y1e3{bottom:635.185200px;}
.ydd{bottom:635.850600px;}
.y122{bottom:637.486200px;}
.y298{bottom:638.551200px;}
.y216{bottom:638.926200px;}
.y4c{bottom:640.282800px;}
.yfe{bottom:641.926200px;}
.y263{bottom:642.011700px;}
.y2d{bottom:645.457501px;}
.y8{bottom:645.510000px;}
.y18c{bottom:647.321400px;}
.y144{bottom:649.733400px;}
.ybd{bottom:650.775000px;}
.y98{bottom:650.926200px;}
.y1bb{bottom:653.776050px;}
.y1e2{bottom:654.685200px;}
.y297{bottom:655.051200px;}
.y4b{bottom:655.282800px;}
.y121{bottom:656.986200px;}
.y78{bottom:657.570300px;}
.y215{bottom:658.426200px;}
.y238{bottom:659.265750px;}
.y2c{bottom:660.457501px;}
.yfd{bottom:661.426200px;}
.ydc{bottom:665.850600px;}
.y7{bottom:666.771000px;}
.y262{bottom:667.511700px;}
.y143{bottom:669.233400px;}
.ybc{bottom:670.275000px;}
.y97{bottom:670.426200px;}
.y77{bottom:671.070300px;}
.y296{bottom:671.551200px;}
.y1ba{bottom:673.276050px;}
.y1e1{bottom:674.185200px;}
.y2b{bottom:675.457500px;}
.y120{bottom:676.486200px;}
.y214{bottom:677.926200px;}
.y237{bottom:678.765750px;}
.yfc{bottom:680.926200px;}
.y4a{bottom:682.282800px;}
.y261{bottom:684.011700px;}
.y76{bottom:684.570300px;}
.y295{bottom:688.051200px;}
.y142{bottom:688.733400px;}
.ybb{bottom:689.775000px;}
.y96{bottom:689.926200px;}
.y1b9{bottom:692.776050px;}
.y1e0{bottom:693.685200px;}
.y18b{bottom:695.442300px;}
.ydb{bottom:695.850600px;}
.y11f{bottom:695.986200px;}
.y213{bottom:697.426200px;}
.y75{bottom:698.070300px;}
.y236{bottom:698.265750px;}
.y49{bottom:698.782800px;}
.yfb{bottom:700.426200px;}
.y260{bottom:700.511700px;}
.y294{bottom:704.551200px;}
.y141{bottom:708.233400px;}
.yba{bottom:709.275000px;}
.y95{bottom:709.426200px;}
.y74{bottom:711.570300px;}
.y1b8{bottom:712.276050px;}
.y1df{bottom:713.185200px;}
.y48{bottom:713.782800px;}
.y18a{bottom:714.942300px;}
.y11e{bottom:715.486200px;}
.y212{bottom:716.926200px;}
.y25f{bottom:717.011700px;}
.yfa{bottom:719.926200px;}
.y293{bottom:721.051200px;}
.y6{bottom:726.298500px;}
.y140{bottom:727.733400px;}
.yb9{bottom:728.775000px;}
.y47{bottom:728.782800px;}
.y94{bottom:728.926200px;}
.y1b7{bottom:731.776050px;}
.y1de{bottom:732.685200px;}
.y235{bottom:733.096050px;}
.y25e{bottom:733.511700px;}
.y73{bottom:734.332800px;}
.y189{bottom:734.442300px;}
.y11d{bottom:734.986200px;}
.y211{bottom:736.426200px;}
.y292{bottom:737.551200px;}
.yf9{bottom:739.426200px;}
.y46{bottom:743.782800px;}
.y13f{bottom:747.233400px;}
.y72{bottom:747.832800px;}
.yb8{bottom:748.275000px;}
.y93{bottom:748.426200px;}
.y25d{bottom:750.011700px;}
.y1b6{bottom:751.276050px;}
.y1dd{bottom:752.185200px;}
.y234{bottom:752.596050px;}
.y3{bottom:752.599495px;}
.y188{bottom:753.942300px;}
.y291{bottom:754.051200px;}
.y11c{bottom:754.486200px;}
.y210{bottom:755.926200px;}
.y2a{bottom:756.817498px;}
.y45{bottom:758.782800px;}
.yf8{bottom:758.926200px;}
.y71{bottom:761.332800px;}
.y25c{bottom:766.511700px;}
.y13e{bottom:766.733400px;}
.y92{bottom:767.926200px;}
.y290{bottom:770.551200px;}
.y1b5{bottom:770.776050px;}
.y1dc{bottom:771.685200px;}
.y233{bottom:772.096050px;}
.y187{bottom:773.442300px;}
.y44{bottom:773.782800px;}
.y11b{bottom:773.986200px;}
.y70{bottom:774.832800px;}
.y20f{bottom:775.426200px;}
.yb7{bottom:778.275000px;}
.yf7{bottom:778.426200px;}
.y25b{bottom:783.011700px;}
.y29{bottom:786.817498px;}
.y28f{bottom:787.051200px;}
.y91{bottom:787.426200px;}
.y6f{bottom:788.332800px;}
.y43{bottom:788.782800px;}
.y1b4{bottom:790.276050px;}
.y1db{bottom:791.185200px;}
.y232{bottom:791.596050px;}
.y186{bottom:792.942300px;}
.y11a{bottom:793.486200px;}
.y20e{bottom:794.926200px;}
.y13d{bottom:796.733400px;}
.yf6{bottom:797.926200px;}
.y25a{bottom:799.511700px;}
.y6e{bottom:801.832800px;}
.y28e{bottom:803.551200px;}
.y42{bottom:803.782800px;}
.y28{bottom:804.817498px;}
.y90{bottom:806.926200px;}
.y1b3{bottom:809.776050px;}
.y1da{bottom:810.685200px;}
.y231{bottom:811.096050px;}
.y185{bottom:812.442300px;}
.y119{bottom:812.986200px;}
.y20d{bottom:814.426200px;}
.yf5{bottom:817.426200px;}
.y41{bottom:818.782800px;}
.y28d{bottom:820.051200px;}
.y27{bottom:822.817498px;}
.y6d{bottom:824.595300px;}
.y8f{bottom:826.426200px;}
.y259{bottom:826.511700px;}
.y1b2{bottom:829.276050px;}
.y1d9{bottom:830.185200px;}
.y230{bottom:830.596050px;}
.y184{bottom:831.942300px;}
.y118{bottom:832.486200px;}
.y40{bottom:833.782800px;}
.y20c{bottom:833.926200px;}
.y28c{bottom:836.551200px;}
.yf4{bottom:836.926200px;}
.y6c{bottom:838.095300px;}
.y8e{bottom:845.926200px;}
.y1b1{bottom:848.776050px;}
.y3f{bottom:848.782800px;}
.y1d8{bottom:849.685200px;}
.y22f{bottom:850.096050px;}
.y183{bottom:851.442300px;}
.y6b{bottom:851.595300px;}
.y28b{bottom:853.051200px;}
.y20b{bottom:853.426200px;}
.yf3{bottom:856.426200px;}
.y3e{bottom:863.782800px;}
.y6a{bottom:865.095300px;}
.y8d{bottom:865.426200px;}
.y1b0{bottom:868.276050px;}
.y1d7{bottom:869.185200px;}
.y28a{bottom:869.551200px;}
.y22e{bottom:869.596050px;}
.y13c{bottom:870.736200px;}
.y182{bottom:870.942300px;}
.y20a{bottom:872.926200px;}
.y26{bottom:875.289002px;}
.yf2{bottom:875.926200px;}
.y258{bottom:877.511700px;}
.y2{bottom:879.369000px;}
.y8c{bottom:884.926200px;}
.y289{bottom:886.051200px;}
.y1af{bottom:887.776050px;}
.y22d{bottom:889.096050px;}
.y181{bottom:890.442300px;}
.y209{bottom:892.426200px;}
.y257{bottom:894.011700px;}
.y1d6{bottom:899.185200px;}
.y288{bottom:902.551200px;}
.y8b{bottom:904.426200px;}
.y1ae{bottom:907.276050px;}
.y22c{bottom:908.596050px;}
.y256{bottom:910.511700px;}
.y3d{bottom:910.657800px;}
.yf1{bottom:911.176200px;}
.y208{bottom:911.926200px;}
.y287{bottom:919.051200px;}
.y8a{bottom:923.926200px;}
.y1ad{bottom:926.776050px;}
.y255{bottom:927.011700px;}
.y174{bottom:928.063500px;}
.y22b{bottom:928.096050px;}
.y180{bottom:933.313350px;}
.y179{bottom:933.317671px;}
.y286{bottom:935.551200px;}
.y177{bottom:937.213200px;}
.y17d{bottom:937.213350px;}
.y3c{bottom:937.657800px;}
.y25{bottom:938.940000px;}
.y89{bottom:943.426200px;}
.y207{bottom:943.823700px;}
.y178{bottom:945.163350px;}
.y1ac{bottom:946.276050px;}
.y22a{bottom:947.596050px;}
.y173{bottom:949.063350px;}
.y285{bottom:952.051200px;}
.y254{bottom:954.011700px;}
.y206{bottom:957.863700px;}
.y17a{bottom:958.066988px;}
.y17c{bottom:958.663350px;}
.y176{bottom:961.963200px;}
.y17e{bottom:961.963350px;}
.y88{bottom:962.926200px;}
.y1ab{bottom:965.776050px;}
.y1{bottom:966.726000px;}
.y284{bottom:968.551200px;}
.y24{bottom:970.440000px;}
.y205{bottom:971.363700px;}
.y3b{bottom:976.657800px;}
.y87{bottom:982.426200px;}
.y204{bottom:984.863700px;}
.y283{bottom:985.051200px;}
.y172{bottom:985.184400px;}
.y1aa{bottom:985.276050px;}
.y203{bottom:998.363700px;}
.y3a{bottom:1000.657800px;}
.y282{bottom:1001.551200px;}
.y86{bottom:1001.926200px;}
.y171{bottom:1004.684400px;}
.y253{bottom:1005.301200px;}
.y202{bottom:1011.863700px;}
.y1a9{bottom:1015.275900px;}
.y281{bottom:1018.051200px;}
.y85{bottom:1021.426200px;}
.y252{bottom:1021.801200px;}
.y37{bottom:1029.511200px;}
.y1ff{bottom:1030.238700px;}
.y280{bottom:1034.551200px;}
.y23{bottom:1035.546001px;}
.y251{bottom:1038.301200px;}
.y84{bottom:1040.926200px;}
.y165{bottom:1042.305000px;}
.y1a8{bottom:1045.275900px;}
.y36{bottom:1047.511200px;}
.y16a{bottom:1047.555271px;}
.y200{bottom:1048.988700px;}
.y27f{bottom:1051.051200px;}
.y167{bottom:1051.455300px;}
.y250{bottom:1054.801200px;}
.y16f{bottom:1059.405300px;}
.y83{bottom:1060.426200px;}
.y201{bottom:1062.488700px;}
.y164{bottom:1063.305300px;}
.y27e{bottom:1067.551200px;}
.y169{bottom:1071.255300px;}
.y24f{bottom:1071.301200px;}
.y16b{bottom:1072.304588px;}
.y170{bottom:1072.905300px;}
.y16c{bottom:1076.205300px;}
.y82{bottom:1079.926200px;}
.y1fe{bottom:1081.238700px;}
.y66{bottom:1083.782250px;}
.y27d{bottom:1084.051200px;}
.y1a5{bottom:1093.051500px;}
.y1a7{bottom:1096.501200px;}
.y39{bottom:1097.407950px;}
.y24e{bottom:1098.301200px;}
.y81{bottom:1099.426200px;}
.y1fd{bottom:1099.988700px;}
.y1a4{bottom:1100.551200px;}
.y38{bottom:1110.907950px;}
.yb6{bottom:1141.238100px;}
.y80{bottom:1141.313100px;}
.y22{bottom:1165.122003px;}
.h2d{height:9.434918px;}
.h33{height:22.308000px;}
.h21{height:22.498500px;}
.h26{height:23.998500px;}
.h23{height:24.084570px;}
.h28{height:24.101507px;}
.h1a{height:30.030000px;}
.h17{height:31.500000px;}
.h25{height:31.516075px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1b{height:34.320000px;}
.h2a{height:34.608000px;}
.hb{height:36.726562px;}
.h1d{height:37.215000px;}
.h32{height:38.148000px;}
.h16{height:38.610000px;}
.h1c{height:39.696000px;}
.h29{height:39.990234px;}
.h2c{height:40.634766px;}
.h1f{height:40.755000px;}
.hf{height:41.317383px;}
.h22{height:41.660156px;}
.h27{height:41.689453px;}
.h31{height:42.656420px;}
.h24{height:44.400000px;}
.h18{height:44.658000px;}
.h1e{height:44.730000px;}
.h20{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h19{height:47.586000px;}
.h3{height:48.195000px;}
.h12{height:49.620000px;}
.h15{height:52.101000px;}
.h2b{height:52.500000px;}
.h2f{height:54.860156px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h14{height:60.564000px;}
.h2e{height:65.448105px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h30{height:93.260156px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:127.224000px;}
.w6{width:143.559000px;}
.w8{width:289.081500px;}
.w9{width:354.972000px;}
.wa{width:380.589000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x27{left:25.350000px;}
.x10{left:30.384150px;}
.x45{left:39.384000px;}
.x11{left:41.034000px;}
.x12{left:58.884150px;}
.x3b{left:76.107000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x3f{left:114.657000px;}
.x18{left:123.000000px;}
.xb{left:126.112500px;}
.x29{left:129.450000px;}
.x48{left:135.000000px;}
.xe{left:142.500000px;}
.x6{left:145.650000px;}
.x38{left:155.457000px;}
.x53{left:169.130550px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x4d{left:217.363500px;}
.x2b{left:221.400000px;}
.x4e{left:225.595200px;}
.x9{left:228.743990px;}
.x43{left:256.162500px;}
.x2f{left:268.971000px;}
.x1d{left:282.600000px;}
.x44{left:286.546500px;}
.x8{left:293.590494px;}
.x1b{left:301.917000px;}
.x1c{left:304.317000px;}
.x3a{left:307.707000px;}
.x46{left:316.396500px;}
.x1f{left:321.413092px;}
.x1e{left:330.267000px;}
.x37{left:332.778000px;}
.x28{left:342.267000px;}
.x3c{left:353.028000px;}
.x2d{left:361.167000px;}
.x3d{left:372.678000px;}
.xf{left:374.745000px;}
.x32{left:377.928454px;}
.x2e{left:380.817000px;}
.x15{left:382.845000px;}
.x49{left:407.452650px;}
.x16{left:413.475000px;}
.x4f{left:417.779700px;}
.x4c{left:424.690650px;}
.x40{left:430.728000px;}
.x30{left:439.728000px;}
.x25{left:444.117000px;}
.x24{left:446.667000px;}
.x3{left:454.959000px;}
.x21{left:465.859265px;}
.x33{left:472.581151px;}
.x20{left:479.361257px;}
.x34{left:488.485232px;}
.x2a{left:496.017000px;}
.x3e{left:502.278000px;}
.x13{left:505.929000px;}
.x17{left:510.069000px;}
.x14{left:518.169000px;}
.x26{left:529.467000px;}
.x50{left:533.489550px;}
.x51{left:536.903550px;}
.x39{left:548.028000px;}
.x23{left:550.764859px;}
.x22{left:557.060585px;}
.x54{left:565.175550px;}
.xd{left:570.946500px;}
.x4a{left:572.326050px;}
.x2c{left:573.717000px;}
.x31{left:582.828000px;}
.x4b{left:590.916300px;}
.x36{left:604.141028px;}
.x35{left:610.436755px;}
.x41{left:612.228000px;}
.x19{left:622.510200px;}
.x42{left:623.943000px;}
.x1a{left:625.360200px;}
.x47{left:636.751500px;}
.xc{left:650.025750px;}
.x52{left:663.619650px;}
@media print{
.v3{vertical-align:-34.133333pt;}
.v1{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.733333pt;}
.v5{vertical-align:14.080000pt;}
.v4{vertical-align:45.866667pt;}
.ls23{letter-spacing:-15.416533pt;}
.ls2a{letter-spacing:-2.816000pt;}
.ls2c{letter-spacing:-1.200000pt;}
.ls1e{letter-spacing:-1.173333pt;}
.ls29{letter-spacing:-0.853333pt;}
.ls1f{letter-spacing:-0.746667pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls30{letter-spacing:-0.528000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.266667pt;}
.ls2f{letter-spacing:-0.240000pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls25{letter-spacing:-0.106667pt;}
.ls2e{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.053333pt;}
.lse{letter-spacing:-0.030833pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.400000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.493329pt;}
.ls8{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.560000pt;}
.ls2b{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:1.013333pt;}
.ls1{letter-spacing:1.066667pt;}
.ls2d{letter-spacing:8.140267pt;}
.ls6{letter-spacing:58.449600pt;}
.lsf{letter-spacing:66.186667pt;}
.ls27{letter-spacing:70.346667pt;}
.ls26{letter-spacing:76.320000pt;}
.ls28{letter-spacing:79.518479pt;}
.ls10{letter-spacing:160.053333pt;}
.ls15{letter-spacing:174.933333pt;}
.ls13{letter-spacing:184.586667pt;}
.ls22{letter-spacing:189.226667pt;}
.ls17{letter-spacing:193.915671pt;}
.ls14{letter-spacing:202.172418pt;}
.ls1d{letter-spacing:205.863840pt;}
.ls21{letter-spacing:206.982377pt;}
.ls1b{letter-spacing:211.360672pt;}
.ls1c{letter-spacing:285.461173pt;}
.ls24{letter-spacing:304.075733pt;}
.ls18{letter-spacing:375.084256pt;}
.ls16{letter-spacing:513.066667pt;}
.ls20{letter-spacing:614.742773pt;}
.wsed{word-spacing:-614.742773pt;}
.wse4{word-spacing:-357.503241pt;}
.wse9{word-spacing:-285.461173pt;}
.wsea{word-spacing:-205.863840pt;}
.wsf0{word-spacing:-189.226667pt;}
.wscf{word-spacing:-160.053333pt;}
.wsd8{word-spacing:-157.519971pt;}
.wsdc{word-spacing:-122.598440pt;}
.wsdb{word-spacing:-98.661333pt;}
.wsd7{word-spacing:-53.546667pt;}
.wsd2{word-spacing:-53.280000pt;}
.wsd6{word-spacing:-53.120000pt;}
.wsde{word-spacing:-52.586667pt;}
.wsdd{word-spacing:-52.160000pt;}
.wsda{word-spacing:-29.280000pt;}
.wsd4{word-spacing:-20.651988pt;}
.wsd5{word-spacing:-20.118576pt;}
.wsdf{word-spacing:-19.070252pt;}
.wse5{word-spacing:-15.416533pt;}
.ws1{word-spacing:-12.432000pt;}
.ws10f{word-spacing:-12.106667pt;}
.ws137{word-spacing:-11.850667pt;}
.ws95{word-spacing:-11.733333pt;}
.ws33{word-spacing:-11.520000pt;}
.ws129{word-spacing:-11.312000pt;}
.ws4{word-spacing:-11.306667pt;}
.ws97{word-spacing:-11.040000pt;}
.wsbf{word-spacing:-10.773333pt;}
.ws136{word-spacing:-10.176000pt;}
.ws139{word-spacing:-10.080000pt;}
.ws158{word-spacing:-9.936000pt;}
.ws96{word-spacing:-9.696000pt;}
.ws17c{word-spacing:-9.648000pt;}
.ws138{word-spacing:-8.736000pt;}
.ws7{word-spacing:-8.720000pt;}
.ws13a{word-spacing:-8.640000pt;}
.ws100{word-spacing:-8.618667pt;}
.ws110{word-spacing:-8.362667pt;}
.ws2{word-spacing:-8.320000pt;}
.ws17d{word-spacing:-8.208000pt;}
.ws5{word-spacing:-7.840000pt;}
.wsc3{word-spacing:-7.349333pt;}
.ws6{word-spacing:-7.317333pt;}
.wsff{word-spacing:-5.435733pt;}
.ws3{word-spacing:-2.370133pt;}
.ws10e{word-spacing:-2.066400pt;}
.wse8{word-spacing:-1.013333pt;}
.ws11a{word-spacing:-0.800000pt;}
.wsb6{word-spacing:-0.693333pt;}
.wse6{word-spacing:-0.493329pt;}
.ws5a{word-spacing:-0.400000pt;}
.wsee{word-spacing:-0.213333pt;}
.ws0{word-spacing:0.000000pt;}
.wse7{word-spacing:0.030833pt;}
.wsef{word-spacing:0.053333pt;}
.ws154{word-spacing:0.096000pt;}
.wsb7{word-spacing:0.106667pt;}
.wsac{word-spacing:0.266667pt;}
.ws184{word-spacing:0.528000pt;}
.wsbb{word-spacing:1.173333pt;}
.ws174{word-spacing:1.392000pt;}
.wsba{word-spacing:1.600000pt;}
.ws173{word-spacing:1.632000pt;}
.wsb8{word-spacing:2.133333pt;}
.wsb5{word-spacing:2.186667pt;}
.ws126{word-spacing:3.413333pt;}
.wsb4{word-spacing:3.520000pt;}
.wsb9{word-spacing:3.786667pt;}
.ws9d{word-spacing:3.893333pt;}
.wscd{word-spacing:4.480000pt;}
.wsec{word-spacing:4.586667pt;}
.ws1b{word-spacing:4.608000pt;}
.ws153{word-spacing:4.752000pt;}
.wsb3{word-spacing:4.800000pt;}
.ws145{word-spacing:4.896000pt;}
.ws2e{word-spacing:5.120000pt;}
.ws10d{word-spacing:5.162667pt;}
.ws50{word-spacing:5.173333pt;}
.ws14c{word-spacing:5.232000pt;}
.wsf2{word-spacing:5.280000pt;}
.ws16c{word-spacing:5.328000pt;}
.ws25{word-spacing:5.493333pt;}
.ws23{word-spacing:5.568000pt;}
.ws16d{word-spacing:5.616000pt;}
.ws61{word-spacing:5.653333pt;}
.ws11f{word-spacing:5.706667pt;}
.ws75{word-spacing:5.760000pt;}
.ws58{word-spacing:5.813333pt;}
.ws12e{word-spacing:5.856000pt;}
.ws2d{word-spacing:5.861333pt;}
.ws4d{word-spacing:5.866667pt;}
.ws9{word-spacing:5.880000pt;}
.ws1a{word-spacing:5.920000pt;}
.ws8b{word-spacing:5.973333pt;}
.ws14e{word-spacing:6.000000pt;}
.ws5b{word-spacing:6.026667pt;}
.ws185{word-spacing:6.048000pt;}
.ws54{word-spacing:6.080000pt;}
.ws152{word-spacing:6.096000pt;}
.wscb{word-spacing:6.133333pt;}
.ws183{word-spacing:6.144000pt;}
.ws57{word-spacing:6.240000pt;}
.wsa{word-spacing:6.280000pt;}
.ws46{word-spacing:6.293333pt;}
.ws76{word-spacing:6.346667pt;}
.ws177{word-spacing:6.384000pt;}
.ws24{word-spacing:6.400000pt;}
.wsad{word-spacing:6.453333pt;}
.ws135{word-spacing:6.480000pt;}
.ws36{word-spacing:6.506667pt;}
.ws17b{word-spacing:6.528000pt;}
.ws4a{word-spacing:6.613333pt;}
.wsa2{word-spacing:6.666667pt;}
.ws1c{word-spacing:6.672000pt;}
.ws2f{word-spacing:6.698667pt;}
.ws86{word-spacing:6.720000pt;}
.ws188{word-spacing:6.768000pt;}
.wsf5{word-spacing:6.773333pt;}
.ws186{word-spacing:6.816000pt;}
.ws2b{word-spacing:6.826667pt;}
.ws150{word-spacing:6.864000pt;}
.wsd1{word-spacing:6.912000pt;}
.ws14d{word-spacing:6.960000pt;}
.wsa1{word-spacing:6.986667pt;}
.ws14b{word-spacing:7.008000pt;}
.ws38{word-spacing:7.040000pt;}
.ws130{word-spacing:7.056000pt;}
.ws9f{word-spacing:7.093333pt;}
.ws151{word-spacing:7.104000pt;}
.ws70{word-spacing:7.146667pt;}
.ws182{word-spacing:7.152000pt;}
.ws81{word-spacing:7.200000pt;}
.ws32{word-spacing:7.253333pt;}
.ws35{word-spacing:7.306667pt;}
.wsa6{word-spacing:7.360000pt;}
.ws18a{word-spacing:7.392000pt;}
.ws45{word-spacing:7.413333pt;}
.ws176{word-spacing:7.440000pt;}
.ws9b{word-spacing:7.466667pt;}
.ws172{word-spacing:7.488000pt;}
.ws65{word-spacing:7.520000pt;}
.wsd{word-spacing:7.536000pt;}
.ws31{word-spacing:7.541333pt;}
.ws11e{word-spacing:7.626667pt;}
.ws160{word-spacing:7.632000pt;}
.ws56{word-spacing:7.680000pt;}
.ws157{word-spacing:7.728000pt;}
.ws7c{word-spacing:7.733333pt;}
.ws16a{word-spacing:7.776000pt;}
.wsa3{word-spacing:7.786667pt;}
.wsbd{word-spacing:7.802667pt;}
.ws131{word-spacing:7.824000pt;}
.wsaf{word-spacing:7.840000pt;}
.ws3e{word-spacing:7.946667pt;}
.wsbe{word-spacing:7.954667pt;}
.ws12{word-spacing:7.968000pt;}
.ws4b{word-spacing:8.000000pt;}
.ws179{word-spacing:8.016000pt;}
.ws109{word-spacing:8.053333pt;}
.ws167{word-spacing:8.064000pt;}
.wsca{word-spacing:8.106667pt;}
.ws12d{word-spacing:8.112000pt;}
.ws19{word-spacing:8.160000pt;}
.wscc{word-spacing:8.176000pt;}
.ws18{word-spacing:8.208000pt;}
.ws5e{word-spacing:8.213333pt;}
.ws8a{word-spacing:8.232000pt;}
.ws141{word-spacing:8.256000pt;}
.ws34{word-spacing:8.266667pt;}
.ws178{word-spacing:8.304000pt;}
.ws4f{word-spacing:8.320000pt;}
.ws13{word-spacing:8.352000pt;}
.ws10{word-spacing:8.400000pt;}
.ws5c{word-spacing:8.426667pt;}
.ws13b{word-spacing:8.448000pt;}
.ws6c{word-spacing:8.480000pt;}
.ws133{word-spacing:8.496000pt;}
.ws8{word-spacing:8.533333pt;}
.ws155{word-spacing:8.544000pt;}
.ws189{word-spacing:8.592000pt;}
.ws44{word-spacing:8.640000pt;}
.ws168{word-spacing:8.688000pt;}
.ws80{word-spacing:8.693333pt;}
.ws1d{word-spacing:8.736000pt;}
.ws10a{word-spacing:8.746667pt;}
.ws17a{word-spacing:8.784000pt;}
.wsab{word-spacing:8.800000pt;}
.ws53{word-spacing:8.853333pt;}
.ws15f{word-spacing:8.880000pt;}
.ws4e{word-spacing:8.906667pt;}
.ws20{word-spacing:8.928000pt;}
.ws2a{word-spacing:8.960000pt;}
.ws147{word-spacing:8.976000pt;}
.ws37{word-spacing:9.013333pt;}
.ws156{word-spacing:9.024000pt;}
.ws28{word-spacing:9.066667pt;}
.ws14a{word-spacing:9.072000pt;}
.wsf{word-spacing:9.120000pt;}
.wsb0{word-spacing:9.173333pt;}
.ws98{word-spacing:9.226667pt;}
.ws13e{word-spacing:9.264000pt;}
.ws11b{word-spacing:9.280000pt;}
.ws5f{word-spacing:9.333333pt;}
.ws15e{word-spacing:9.360000pt;}
.ws39{word-spacing:9.386667pt;}
.ws175{word-spacing:9.408000pt;}
.wsc9{word-spacing:9.440000pt;}
.ws4c{word-spacing:9.493333pt;}
.ws89{word-spacing:9.504000pt;}
.wsc{word-spacing:9.520000pt;}
.wsce{word-spacing:9.546667pt;}
.ws142{word-spacing:9.552000pt;}
.ws3d{word-spacing:9.653333pt;}
.ws144{word-spacing:9.696000pt;}
.ws117{word-spacing:9.706667pt;}
.wsf3{word-spacing:9.760000pt;}
.ws12c{word-spacing:9.792000pt;}
.ws7a{word-spacing:9.813333pt;}
.ws134{word-spacing:9.840000pt;}
.ws122{word-spacing:9.866667pt;}
.ws149{word-spacing:9.888000pt;}
.ws8f{word-spacing:9.920000pt;}
.ws16e{word-spacing:9.936000pt;}
.wsa9{word-spacing:9.973333pt;}
.ws17{word-spacing:9.984000pt;}
.ws9a{word-spacing:10.026667pt;}
.ws30{word-spacing:10.042667pt;}
.wsb1{word-spacing:10.080000pt;}
.ws9c{word-spacing:10.133333pt;}
.ws93{word-spacing:10.240000pt;}
.ws10c{word-spacing:10.293333pt;}
.ws16b{word-spacing:10.320000pt;}
.ws107{word-spacing:10.400000pt;}
.ws15a{word-spacing:10.416000pt;}
.ws16{word-spacing:10.464000pt;}
.ws5d{word-spacing:10.506667pt;}
.ws162{word-spacing:10.512000pt;}
.ws2c{word-spacing:10.560000pt;}
.ws161{word-spacing:10.608000pt;}
.ws78{word-spacing:10.613333pt;}
.ws124{word-spacing:10.666667pt;}
.ws18c{word-spacing:10.704000pt;}
.ws3f{word-spacing:10.720000pt;}
.ws88{word-spacing:10.773333pt;}
.ws29{word-spacing:10.826667pt;}
.ws3c{word-spacing:10.880000pt;}
.ws15d{word-spacing:10.896000pt;}
.ws6e{word-spacing:10.933333pt;}
.ws48{word-spacing:11.040000pt;}
.ws3b{word-spacing:11.093333pt;}
.ws49{word-spacing:11.146667pt;}
.ws13c{word-spacing:11.184000pt;}
.ws108{word-spacing:11.200000pt;}
.wsb2{word-spacing:11.306667pt;}
.ws1e{word-spacing:11.328000pt;}
.wsf4{word-spacing:11.413333pt;}
.ws16f{word-spacing:11.424000pt;}
.wsa5{word-spacing:11.466667pt;}
.wsc8{word-spacing:11.520000pt;}
.ws123{word-spacing:11.573333pt;}
.ws171{word-spacing:11.664000pt;}
.ws68{word-spacing:11.680000pt;}
.ws10b{word-spacing:11.786667pt;}
.ws90{word-spacing:11.840000pt;}
.ws18e{word-spacing:11.904000pt;}
.ws43{word-spacing:11.946667pt;}
.ws21{word-spacing:11.952000pt;}
.ws92{word-spacing:12.000000pt;}
.ws132{word-spacing:12.048000pt;}
.ws8e{word-spacing:12.053333pt;}
.ws120{word-spacing:12.106667pt;}
.ws159{word-spacing:12.144000pt;}
.ws121{word-spacing:12.213333pt;}
.ws140{word-spacing:12.240000pt;}
.ws143{word-spacing:12.288000pt;}
.ws69{word-spacing:12.320000pt;}
.ws12f{word-spacing:12.336000pt;}
.wsb{word-spacing:12.394667pt;}
.ws84{word-spacing:12.426667pt;}
.ws13d{word-spacing:12.528000pt;}
.ws82{word-spacing:12.533333pt;}
.ws9e{word-spacing:12.586667pt;}
.ws7d{word-spacing:12.640000pt;}
.ws12b{word-spacing:12.746667pt;}
.ws77{word-spacing:12.800000pt;}
.ws7e{word-spacing:12.853333pt;}
.ws18b{word-spacing:12.912000pt;}
.wsa8{word-spacing:12.960000pt;}
.ws14f{word-spacing:13.008000pt;}
.ws99{word-spacing:13.013333pt;}
.ws64{word-spacing:13.120000pt;}
.ws14{word-spacing:13.200000pt;}
.ws60{word-spacing:13.226667pt;}
.ws63{word-spacing:13.280000pt;}
.wsaa{word-spacing:13.333333pt;}
.ws128{word-spacing:13.386667pt;}
.ws6d{word-spacing:13.493333pt;}
.ws66{word-spacing:13.600000pt;}
.ws13f{word-spacing:13.728000pt;}
.ws85{word-spacing:13.813333pt;}
.ws40{word-spacing:13.866667pt;}
.ws18d{word-spacing:13.872000pt;}
.ws125{word-spacing:14.080000pt;}
.ws127{word-spacing:14.240000pt;}
.ws146{word-spacing:14.256000pt;}
.ws15c{word-spacing:14.304000pt;}
.ws187{word-spacing:14.400000pt;}
.ws17e{word-spacing:14.448000pt;}
.wsae{word-spacing:14.560000pt;}
.ws83{word-spacing:14.613333pt;}
.ws6a{word-spacing:14.666667pt;}
.ws91{word-spacing:14.720000pt;}
.ws3a{word-spacing:14.773333pt;}
.ws106{word-spacing:14.933333pt;}
.ws79{word-spacing:15.040000pt;}
.ws71{word-spacing:15.093333pt;}
.ws52{word-spacing:15.306667pt;}
.ws51{word-spacing:15.413333pt;}
.ws41{word-spacing:15.466667pt;}
.ws7f{word-spacing:15.786667pt;}
.ws7b{word-spacing:16.053333pt;}
.ws8c{word-spacing:16.106667pt;}
.wsa4{word-spacing:16.213333pt;}
.ws27{word-spacing:16.266667pt;}
.ws42{word-spacing:16.373333pt;}
.ws72{word-spacing:16.533333pt;}
.ws73{word-spacing:16.586667pt;}
.wsa7{word-spacing:16.640000pt;}
.ws15b{word-spacing:16.704000pt;}
.ws12a{word-spacing:16.800000pt;}
.ws119{word-spacing:16.906667pt;}
.ws47{word-spacing:17.226667pt;}
.ws164{word-spacing:17.232000pt;}
.ws11{word-spacing:17.328000pt;}
.ws87{word-spacing:17.333333pt;}
.wse{word-spacing:17.712000pt;}
.ws67{word-spacing:17.866667pt;}
.ws170{word-spacing:18.096000pt;}
.ws62{word-spacing:18.186667pt;}
.ws181{word-spacing:18.720000pt;}
.ws11c{word-spacing:18.826667pt;}
.wsbc{word-spacing:19.946667pt;}
.ws11d{word-spacing:20.000000pt;}
.ws163{word-spacing:20.112000pt;}
.ws26{word-spacing:20.266667pt;}
.ws94{word-spacing:20.800000pt;}
.ws15{word-spacing:20.880000pt;}
.ws6f{word-spacing:20.960000pt;}
.ws55{word-spacing:21.120000pt;}
.ws6b{word-spacing:21.173333pt;}
.ws59{word-spacing:21.280000pt;}
.ws8d{word-spacing:22.080000pt;}
.ws1f{word-spacing:22.224000pt;}
.ws169{word-spacing:22.896000pt;}
.ws118{word-spacing:23.626667pt;}
.ws166{word-spacing:23.904000pt;}
.wsfa{word-spacing:25.110449pt;}
.wsc4{word-spacing:25.120000pt;}
.ws148{word-spacing:25.824000pt;}
.wsc2{word-spacing:26.026667pt;}
.ws180{word-spacing:27.120000pt;}
.ws74{word-spacing:27.413333pt;}
.ws165{word-spacing:27.840000pt;}
.ws22{word-spacing:28.032000pt;}
.ws17f{word-spacing:31.584000pt;}
.wsa0{word-spacing:33.173333pt;}
.wsc1{word-spacing:48.663829pt;}
.wsf8{word-spacing:48.960000pt;}
.wsf6{word-spacing:58.832000pt;}
.wsf9{word-spacing:60.906667pt;}
.wsc0{word-spacing:65.589333pt;}
.wsc6{word-spacing:74.784000pt;}
.wse3{word-spacing:81.645961pt;}
.wsc5{word-spacing:89.196979pt;}
.wse2{word-spacing:108.125325pt;}
.wsd3{word-spacing:113.664000pt;}
.wsd9{word-spacing:159.050667pt;}
.wse0{word-spacing:161.195273pt;}
.wse1{word-spacing:163.850667pt;}
.wsf7{word-spacing:183.055917pt;}
.ws112{word-spacing:188.723733pt;}
.ws116{word-spacing:192.947200pt;}
.ws114{word-spacing:199.261867pt;}
.ws115{word-spacing:199.262400pt;}
.ws101{word-spacing:211.537600pt;}
.wsfc{word-spacing:212.425600pt;}
.ws102{word-spacing:212.872533pt;}
.ws104{word-spacing:232.579200pt;}
.ws105{word-spacing:235.286933pt;}
.ws111{word-spacing:257.182933pt;}
.wsfe{word-spacing:261.909867pt;}
.ws103{word-spacing:289.709867pt;}
.wsfb{word-spacing:305.690667pt;}
.ws113{word-spacing:371.450133pt;}
.wsfd{word-spacing:506.976000pt;}
.wsf1{word-spacing:510.288000pt;}
.wseb{word-spacing:627.408000pt;}
.wsd0{word-spacing:915.168000pt;}
.wsc7{word-spacing:1693.626133pt;}
._40{margin-left:-1529.401067pt;}
._30{margin-left:-1183.466667pt;}
._24{margin-left:-811.680000pt;}
._19{margin-left:-342.933333pt;}
._1b{margin-left:-15.626680pt;}
._1a{margin-left:-14.186667pt;}
._26{margin-left:-13.120013pt;}
._53{margin-left:-7.290693pt;}
._51{margin-left:-5.920039pt;}
._15{margin-left:-4.992013pt;}
._1{margin-left:-3.680000pt;}
._6{margin-left:-2.688000pt;}
._0{margin-left:-1.706654pt;}
._4{width:1.034654pt;}
._7{width:1.932254pt;}
._16{width:2.980787pt;}
._2{width:5.333268pt;}
._3{width:6.406920pt;}
._11{width:7.349333pt;}
._9{width:8.255987pt;}
._a{width:9.296546pt;}
._c{width:10.615454pt;}
._e{width:11.882667pt;}
._14{width:12.794667pt;}
._50{width:14.186654pt;}
._10{width:15.248000pt;}
._12{width:16.514133pt;}
._d{width:17.694374pt;}
._f{width:21.493307pt;}
._52{width:23.650654pt;}
._13{width:27.648000pt;}
._54{width:31.994094pt;}
._35{width:46.293333pt;}
._5{width:53.446400pt;}
._23{width:72.004461pt;}
._1c{width:81.424013pt;}
._18{width:87.997572pt;}
._b{width:117.065041pt;}
._8{width:118.826133pt;}
._28{width:120.517333pt;}
._29{width:123.248000pt;}
._2f{width:132.800000pt;}
._1e{width:136.042667pt;}
._32{width:141.440000pt;}
._2e{width:160.000000pt;}
._1d{width:164.250829pt;}
._31{width:166.621508pt;}
._2d{width:169.066667pt;}
._34{width:171.727848pt;}
._17{width:174.391825pt;}
._33{width:182.932585pt;}
._22{width:185.146399pt;}
._39{width:198.690667pt;}
._46{width:207.625067pt;}
._4f{width:214.024533pt;}
._27{width:219.520000pt;}
._47{width:222.449626pt;}
._44{width:224.158400pt;}
._3a{width:236.498133pt;}
._3d{width:243.545216pt;}
._4d{width:245.009600pt;}
._49{width:246.195733pt;}
._2b{width:248.514517pt;}
._48{width:254.791467pt;}
._3e{width:261.186667pt;}
._3c{width:263.361600pt;}
._4b{width:270.087467pt;}
._4c{width:271.624533pt;}
._25{width:280.042667pt;}
._38{width:285.960533pt;}
._3f{width:291.107733pt;}
._42{width:294.874120pt;}
._43{width:303.609587pt;}
._37{width:310.269867pt;}
._2c{width:317.333922pt;}
._41{width:336.610667pt;}
._3b{width:348.464000pt;}
._2a{width:363.182692pt;}
._4e{width:377.060787pt;}
._4a{width:399.182933pt;}
._36{width:472.021333pt;}
._45{width:631.440000pt;}
._1f{width:1280.462920pt;}
._21{width:1354.798933pt;}
._20{width:1599.588267pt;}
.fs11{font-size:27.733333pt;}
.fsd{font-size:30.833067pt;}
.fsf{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:54.608750pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs10{font-size:83.786667pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y14a{bottom:3.066000pt;}
.y17f{bottom:4.666533pt;}
.y16d{bottom:4.666933pt;}
.y149{bottom:6.666000pt;}
.y1a6{bottom:6.666400pt;}
.y15a{bottom:7.999333pt;}
.y175{bottom:18.666533pt;}
.y168{bottom:18.666933pt;}
.y17b{bottom:28.533200pt;}
.y16e{bottom:28.533600pt;}
.y166{bottom:29.066933pt;}
.y5{bottom:59.133337pt;}
.y35{bottom:60.086668pt;}
.y34{bottom:74.753335pt;}
.y27c{bottom:75.753200pt;}
.yda{bottom:75.800000pt;}
.yb5{bottom:75.934400pt;}
.y1fc{bottom:76.119867pt;}
.y13b{bottom:76.561067pt;}
.y117{bottom:76.601067pt;}
.y229{bottom:77.267733pt;}
.y24d{bottom:77.499467pt;}
.y4{bottom:86.333337pt;}
.y163{bottom:87.800000pt;}
.y1a3{bottom:88.515067pt;}
.y27b{bottom:90.419867pt;}
.y69{bottom:91.613867pt;}
.y24c{bottom:92.166133pt;}
.y1d5{bottom:92.786667pt;}
.yd9{bottom:93.133333pt;}
.yb4{bottom:93.267733pt;}
.y1fb{bottom:93.453200pt;}
.y13a{bottom:93.894400pt;}
.y228{bottom:94.601067pt;}
.y2b8{bottom:98.267733pt;}
.y162{bottom:99.800000pt;}
.y68{bottom:102.280533pt;}
.y1d4{bottom:104.453333pt;}
.y116{bottom:104.601067pt;}
.y27a{bottom:105.086533pt;}
.y1a2{bottom:105.848400pt;}
.y24b{bottom:106.832800pt;}
.yd8{bottom:110.466667pt;}
.yb3{bottom:110.601067pt;}
.y1fa{bottom:110.786533pt;}
.y139{bottom:111.227733pt;}
.y161{bottom:111.800000pt;}
.y227{bottom:111.934400pt;}
.y2b7{bottom:112.934400pt;}
.y67{bottom:112.947200pt;}
.y1d3{bottom:116.933333pt;}
.y279{bottom:119.753200pt;}
.y115{bottom:121.934400pt;}
.y1a1{bottom:123.181733pt;}
.y21{bottom:123.790666pt;}
.y160{bottom:123.800000pt;}
.y63{bottom:123.947200pt;}
.y2b6{bottom:127.601067pt;}
.yd7{bottom:127.800000pt;}
.yb2{bottom:127.934400pt;}
.y1f9{bottom:128.119867pt;}
.y138{bottom:128.561067pt;}
.y1d2{bottom:128.933333pt;}
.y226{bottom:129.267733pt;}
.y24a{bottom:130.832800pt;}
.y65{bottom:133.613867pt;}
.y278{bottom:134.419867pt;}
.y15f{bottom:135.800000pt;}
.y114{bottom:139.267733pt;}
.y1d1{bottom:140.933333pt;}
.y2b5{bottom:142.267733pt;}
.yd6{bottom:145.133333pt;}
.yb1{bottom:145.267733pt;}
.y64{bottom:145.613867pt;}
.y137{bottom:145.894400pt;}
.y225{bottom:146.601067pt;}
.y15e{bottom:147.800000pt;}
.y277{bottom:149.086533pt;}
.y1a0{bottom:149.848400pt;}
.y113{bottom:156.601067pt;}
.y2b4{bottom:156.934400pt;}
.y1d0{bottom:157.266667pt;}
.yd5{bottom:162.466667pt;}
.yb0{bottom:162.601067pt;}
.y136{bottom:163.227733pt;}
.y276{bottom:163.753200pt;}
.y15d{bottom:163.800000pt;}
.y224{bottom:163.934400pt;}
.y1f8{bottom:169.942400pt;}
.y2b3{bottom:171.601067pt;}
.y1cf{bottom:173.933333pt;}
.y112{bottom:173.934400pt;}
.y18{bottom:175.052000pt;}
.y249{bottom:176.423333pt;}
.y62{bottom:177.140267pt;}
.y275{bottom:178.419867pt;}
.yd4{bottom:179.800000pt;}
.yaf{bottom:179.934400pt;}
.y15c{bottom:180.466667pt;}
.y135{bottom:180.561067pt;}
.y223{bottom:181.267733pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y2b2{bottom:186.267733pt;}
.y1f7{bottom:187.275733pt;}
.y1ce{bottom:190.600000pt;}
.y248{bottom:191.090000pt;}
.y111{bottom:191.267733pt;}
.y274{bottom:193.086533pt;}
.y61{bottom:194.473600pt;}
.y19f{bottom:195.181733pt;}
.yd3{bottom:197.133333pt;}
.yae{bottom:197.267733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y134{bottom:197.894400pt;}
.y222{bottom:198.601067pt;}
.y2b1{bottom:200.934400pt;}
.y1f6{bottom:204.609067pt;}
.y247{bottom:205.756667pt;}
.yf0{bottom:206.466667pt;}
.y273{bottom:207.753200pt;}
.y110{bottom:208.601067pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y159{bottom:211.586667pt;}
.y60{bottom:211.806933pt;}
.y19e{bottom:212.515067pt;}
.yd2{bottom:214.466667pt;}
.yad{bottom:214.601067pt;}
.y133{bottom:215.227733pt;}
.y2b0{bottom:215.601067pt;}
.y221{bottom:215.934400pt;}
.y15b{bottom:216.119333pt;}
.y158{bottom:219.586000pt;}
.y1f5{bottom:221.942400pt;}
.y272{bottom:222.419867pt;}
.y10f{bottom:225.934400pt;}
.y5f{bottom:229.140267pt;}
.y246{bottom:229.756667pt;}
.y19d{bottom:229.848400pt;}
.y2af{bottom:230.267733pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yd1{bottom:231.800000pt;}
.yac{bottom:231.934400pt;}
.y132{bottom:232.561067pt;}
.y220{bottom:233.267733pt;}
.y271{bottom:237.086533pt;}
.y1f4{bottom:239.275733pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1cd{bottom:243.254400pt;}
.y10e{bottom:243.267733pt;}
.y2ae{bottom:244.934400pt;}
.y5e{bottom:246.473600pt;}
.y19c{bottom:247.181733pt;}
.yd0{bottom:249.133333pt;}
.yab{bottom:249.267733pt;}
.y131{bottom:249.894400pt;}
.y21f{bottom:250.601067pt;}
.y157{bottom:251.693600pt;}
.y270{bottom:251.753200pt;}
.yef{bottom:253.200533pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y33{bottom:254.601334pt;}
.y1cc{bottom:254.921067pt;}
.y1f3{bottom:256.609067pt;}
.y2ad{bottom:259.601067pt;}
.y10d{bottom:260.601067pt;}
.y5d{bottom:263.806933pt;}
.y19b{bottom:264.515067pt;}
.y26f{bottom:266.419867pt;}
.ycf{bottom:266.466667pt;}
.yaa{bottom:266.601067pt;}
.y1cb{bottom:267.401067pt;}
.y21e{bottom:267.934400pt;}
.y156{bottom:269.026933pt;}
.yee{bottom:270.533867pt;}
.y1f2{bottom:273.942400pt;}
.y2ac{bottom:274.267733pt;}
.y245{bottom:275.347333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y130{bottom:276.561067pt;}
.y10c{bottom:277.934400pt;}
.y26e{bottom:281.086533pt;}
.y5c{bottom:281.140267pt;}
.yce{bottom:283.800000pt;}
.ya9{bottom:283.934400pt;}
.y1c9{bottom:284.067733pt;}
.y21d{bottom:285.267733pt;}
.y155{bottom:286.360267pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yed{bottom:287.867200pt;}
.y2ab{bottom:288.934400pt;}
.y244{bottom:290.014000pt;}
.y1f1{bottom:291.275733pt;}
.y1ca{bottom:296.067733pt;}
.y5b{bottom:298.473600pt;}
.ycd{bottom:301.133333pt;}
.ya8{bottom:301.267733pt;}
.y21c{bottom:302.601067pt;}
.y2aa{bottom:303.601067pt;}
.y154{bottom:303.693600pt;}
.y26d{bottom:305.086533pt;}
.yec{bottom:305.200533pt;}
.y19a{bottom:307.289200pt;}
.y10b{bottom:308.601067pt;}
.y1f0{bottom:308.609067pt;}
.yf{bottom:309.452000pt;}
.y32{bottom:311.801334pt;}
.y1c8{bottom:312.734400pt;}
.y243{bottom:314.014000pt;}
.y5a{bottom:315.806933pt;}
.y2a9{bottom:318.267733pt;}
.ycc{bottom:318.466667pt;}
.ya7{bottom:318.601067pt;}
.y21b{bottom:319.934400pt;}
.yeb{bottom:322.533867pt;}
.y199{bottom:324.622533pt;}
.y12f{bottom:325.321067pt;}
.y1ef{bottom:325.942400pt;}
.y1c7{bottom:329.401067pt;}
.y2a8{bottom:332.934400pt;}
.y59{bottom:333.140267pt;}
.ycb{bottom:335.800000pt;}
.ya6{bottom:335.934400pt;}
.y10a{bottom:337.267733pt;}
.yea{bottom:339.867200pt;}
.y198{bottom:341.955867pt;}
.y12e{bottom:342.654400pt;}
.y1ee{bottom:343.275733pt;}
.y153{bottom:343.420400pt;}
.ye{bottom:343.809333pt;}
.y2a7{bottom:347.601067pt;}
.yca{bottom:353.133333pt;}
.ya5{bottom:353.267733pt;}
.y109{bottom:354.601067pt;}
.ye9{bottom:357.200533pt;}
.y242{bottom:358.014000pt;}
.y26c{bottom:358.419867pt;}
.y197{bottom:359.289200pt;}
.y58{bottom:359.806933pt;}
.y12d{bottom:359.987733pt;}
.y1ed{bottom:360.609067pt;}
.y152{bottom:360.753733pt;}
.y2a6{bottom:362.267733pt;}
.yd{bottom:362.706666pt;}
.y31{bottom:369.001334pt;}
.yc9{bottom:370.466667pt;}
.ya4{bottom:370.601067pt;}
.y1c6{bottom:370.667333pt;}
.y108{bottom:371.934400pt;}
.y26b{bottom:373.086533pt;}
.ye8{bottom:374.533867pt;}
.y196{bottom:376.622533pt;}
.y2a5{bottom:376.934400pt;}
.y12c{bottom:377.321067pt;}
.y1ec{bottom:377.942400pt;}
.y151{bottom:378.087067pt;}
.y241{bottom:382.014000pt;}
.y26a{bottom:387.753200pt;}
.yc8{bottom:387.800000pt;}
.ya3{bottom:387.934400pt;}
.y1c5{bottom:388.000667pt;}
.y107{bottom:389.267733pt;}
.y2a4{bottom:391.601067pt;}
.ye7{bottom:391.867200pt;}
.y195{bottom:393.955867pt;}
.y12b{bottom:394.654400pt;}
.y1eb{bottom:395.275733pt;}
.y150{bottom:395.420400pt;}
.yc7{bottom:405.133333pt;}
.ya2{bottom:405.267733pt;}
.y1c4{bottom:405.334000pt;}
.y2a3{bottom:406.267733pt;}
.y106{bottom:406.601067pt;}
.ye6{bottom:409.200533pt;}
.y194{bottom:411.289200pt;}
.y269{bottom:411.753200pt;}
.y12a{bottom:411.987733pt;}
.y1ea{bottom:412.609067pt;}
.y14f{bottom:412.753733pt;}
.y2a2{bottom:420.934400pt;}
.yc6{bottom:422.466667pt;}
.y57{bottom:422.473600pt;}
.ya1{bottom:422.601067pt;}
.y1c3{bottom:422.667333pt;}
.y105{bottom:423.934400pt;}
.ye5{bottom:426.533867pt;}
.y240{bottom:428.680667pt;}
.y30{bottom:428.806667pt;}
.y129{bottom:429.321067pt;}
.y1e9{bottom:429.942400pt;}
.y14e{bottom:430.087067pt;}
.y2a1{bottom:435.601067pt;}
.y56{bottom:435.806933pt;}
.yc5{bottom:439.800000pt;}
.ya0{bottom:439.934400pt;}
.y1c2{bottom:440.000667pt;}
.y104{bottom:441.267733pt;}
.y23f{bottom:443.347333pt;}
.ye4{bottom:443.867200pt;}
.y128{bottom:446.654400pt;}
.yc{bottom:446.990669pt;}
.y1e8{bottom:447.275733pt;}
.y14d{bottom:447.420400pt;}
.y55{bottom:449.140267pt;}
.y2a0{bottom:450.267733pt;}
.y193{bottom:454.063467pt;}
.yc4{bottom:457.133333pt;}
.y9f{bottom:457.267733pt;}
.y1c1{bottom:457.334000pt;}
.y268{bottom:457.343733pt;}
.y23e{bottom:458.014000pt;}
.y103{bottom:458.601067pt;}
.ye3{bottom:461.200533pt;}
.y54{bottom:462.473600pt;}
.yb{bottom:462.990669pt;}
.y127{bottom:463.987733pt;}
.y1e7{bottom:464.609067pt;}
.y14c{bottom:464.753733pt;}
.y29f{bottom:464.934400pt;}
.y21a{bottom:467.934400pt;}
.y192{bottom:471.396800pt;}
.y23d{bottom:472.680667pt;}
.yc3{bottom:474.466667pt;}
.y9e{bottom:474.601067pt;}
.y1c0{bottom:474.667333pt;}
.y53{bottom:475.806933pt;}
.y102{bottom:475.934400pt;}
.ye2{bottom:478.533867pt;}
.ya{bottom:478.990666pt;}
.y29e{bottom:479.601067pt;}
.y126{bottom:481.321067pt;}
.y267{bottom:481.343733pt;}
.y14b{bottom:482.087067pt;}
.y2f{bottom:483.401334pt;}
.y23c{bottom:487.347333pt;}
.y191{bottom:488.730133pt;}
.y52{bottom:489.140267pt;}
.yc2{bottom:491.800000pt;}
.y9d{bottom:491.934400pt;}
.y7f{bottom:491.985067pt;}
.y1bf{bottom:492.000667pt;}
.y101{bottom:493.267733pt;}
.y29d{bottom:494.267733pt;}
.y9{bottom:494.990666pt;}
.ye1{bottom:495.867200pt;}
.y125{bottom:498.654400pt;}
.y23b{bottom:502.014000pt;}
.y51{bottom:502.473600pt;}
.y7e{bottom:503.985067pt;}
.y190{bottom:506.063467pt;}
.y148{bottom:507.148000pt;}
.y29c{bottom:508.934400pt;}
.yc1{bottom:509.133333pt;}
.y9c{bottom:509.267733pt;}
.y1be{bottom:509.334000pt;}
.y1e6{bottom:512.609067pt;}
.ye0{bottom:513.200533pt;}
.y147{bottom:513.814000pt;}
.y50{bottom:515.806933pt;}
.y219{bottom:515.934400pt;}
.y7d{bottom:515.985067pt;}
.y23a{bottom:516.680667pt;}
.y18f{bottom:523.396800pt;}
.y29b{bottom:523.601067pt;}
.y100{bottom:524.601067pt;}
.yc0{bottom:526.466667pt;}
.y9b{bottom:526.601067pt;}
.y1bd{bottom:526.667333pt;}
.y266{bottom:526.677067pt;}
.y7c{bottom:527.985067pt;}
.y4f{bottom:529.140267pt;}
.y1e5{bottom:529.942400pt;}
.ydf{bottom:530.533867pt;}
.y124{bottom:531.987733pt;}
.y218{bottom:533.267733pt;}
.y29a{bottom:538.267733pt;}
.y7b{bottom:539.985067pt;}
.y239{bottom:540.680667pt;}
.y18e{bottom:540.730133pt;}
.y265{bottom:541.343733pt;}
.y4e{bottom:542.473600pt;}
.y146{bottom:542.874133pt;}
.y2e{bottom:543.206667pt;}
.ybf{bottom:543.800000pt;}
.y9a{bottom:543.934400pt;}
.y1e4{bottom:547.275733pt;}
.yde{bottom:547.867200pt;}
.y123{bottom:549.321067pt;}
.y217{bottom:550.601067pt;}
.y7a{bottom:551.985067pt;}
.y299{bottom:552.934400pt;}
.yff{bottom:553.267733pt;}
.y4d{bottom:555.806933pt;}
.y264{bottom:556.010400pt;}
.y18d{bottom:558.063467pt;}
.y145{bottom:560.207467pt;}
.ybe{bottom:561.133333pt;}
.y99{bottom:561.267733pt;}
.y1bc{bottom:563.800933pt;}
.y79{bottom:563.985067pt;}
.y1e3{bottom:564.609067pt;}
.ydd{bottom:565.200533pt;}
.y122{bottom:566.654400pt;}
.y298{bottom:567.601067pt;}
.y216{bottom:567.934400pt;}
.y4c{bottom:569.140267pt;}
.yfe{bottom:570.601067pt;}
.y263{bottom:570.677067pt;}
.y2d{bottom:573.740001pt;}
.y8{bottom:573.786667pt;}
.y18c{bottom:575.396800pt;}
.y144{bottom:577.540800pt;}
.ybd{bottom:578.466667pt;}
.y98{bottom:578.601067pt;}
.y1bb{bottom:581.134267pt;}
.y1e2{bottom:581.942400pt;}
.y297{bottom:582.267733pt;}
.y4b{bottom:582.473600pt;}
.y121{bottom:583.987733pt;}
.y78{bottom:584.506933pt;}
.y215{bottom:585.267733pt;}
.y238{bottom:586.014000pt;}
.y2c{bottom:587.073335pt;}
.yfd{bottom:587.934400pt;}
.ydc{bottom:591.867200pt;}
.y7{bottom:592.685334pt;}
.y262{bottom:593.343733pt;}
.y143{bottom:594.874133pt;}
.ybc{bottom:595.800000pt;}
.y97{bottom:595.934400pt;}
.y77{bottom:596.506933pt;}
.y296{bottom:596.934400pt;}
.y1ba{bottom:598.467600pt;}
.y1e1{bottom:599.275733pt;}
.y2b{bottom:600.406667pt;}
.y120{bottom:601.321067pt;}
.y214{bottom:602.601067pt;}
.y237{bottom:603.347333pt;}
.yfc{bottom:605.267733pt;}
.y4a{bottom:606.473600pt;}
.y261{bottom:608.010400pt;}
.y76{bottom:608.506933pt;}
.y295{bottom:611.601067pt;}
.y142{bottom:612.207467pt;}
.ybb{bottom:613.133333pt;}
.y96{bottom:613.267733pt;}
.y1b9{bottom:615.800933pt;}
.y1e0{bottom:616.609067pt;}
.y18b{bottom:618.170933pt;}
.ydb{bottom:618.533867pt;}
.y11f{bottom:618.654400pt;}
.y213{bottom:619.934400pt;}
.y75{bottom:620.506933pt;}
.y236{bottom:620.680667pt;}
.y49{bottom:621.140267pt;}
.yfb{bottom:622.601067pt;}
.y260{bottom:622.677067pt;}
.y294{bottom:626.267733pt;}
.y141{bottom:629.540800pt;}
.yba{bottom:630.466667pt;}
.y95{bottom:630.601067pt;}
.y74{bottom:632.506933pt;}
.y1b8{bottom:633.134267pt;}
.y1df{bottom:633.942400pt;}
.y48{bottom:634.473600pt;}
.y18a{bottom:635.504267pt;}
.y11e{bottom:635.987733pt;}
.y212{bottom:637.267733pt;}
.y25f{bottom:637.343733pt;}
.yfa{bottom:639.934400pt;}
.y293{bottom:640.934400pt;}
.y6{bottom:645.598667pt;}
.y140{bottom:646.874133pt;}
.yb9{bottom:647.800000pt;}
.y47{bottom:647.806933pt;}
.y94{bottom:647.934400pt;}
.y1b7{bottom:650.467600pt;}
.y1de{bottom:651.275733pt;}
.y235{bottom:651.640933pt;}
.y25e{bottom:652.010400pt;}
.y73{bottom:652.740267pt;}
.y189{bottom:652.837600pt;}
.y11d{bottom:653.321067pt;}
.y211{bottom:654.601067pt;}
.y292{bottom:655.601067pt;}
.yf9{bottom:657.267733pt;}
.y46{bottom:661.140267pt;}
.y13f{bottom:664.207467pt;}
.y72{bottom:664.740267pt;}
.yb8{bottom:665.133333pt;}
.y93{bottom:665.267733pt;}
.y25d{bottom:666.677067pt;}
.y1b6{bottom:667.800933pt;}
.y1dd{bottom:668.609067pt;}
.y234{bottom:668.974267pt;}
.y3{bottom:668.977329pt;}
.y188{bottom:670.170933pt;}
.y291{bottom:670.267733pt;}
.y11c{bottom:670.654400pt;}
.y210{bottom:671.934400pt;}
.y2a{bottom:672.726665pt;}
.y45{bottom:674.473600pt;}
.yf8{bottom:674.601067pt;}
.y71{bottom:676.740267pt;}
.y25c{bottom:681.343733pt;}
.y13e{bottom:681.540800pt;}
.y92{bottom:682.601067pt;}
.y290{bottom:684.934400pt;}
.y1b5{bottom:685.134267pt;}
.y1dc{bottom:685.942400pt;}
.y233{bottom:686.307600pt;}
.y187{bottom:687.504267pt;}
.y44{bottom:687.806933pt;}
.y11b{bottom:687.987733pt;}
.y70{bottom:688.740267pt;}
.y20f{bottom:689.267733pt;}
.yb7{bottom:691.800000pt;}
.yf7{bottom:691.934400pt;}
.y25b{bottom:696.010400pt;}
.y29{bottom:699.393332pt;}
.y28f{bottom:699.601067pt;}
.y91{bottom:699.934400pt;}
.y6f{bottom:700.740267pt;}
.y43{bottom:701.140267pt;}
.y1b4{bottom:702.467600pt;}
.y1db{bottom:703.275733pt;}
.y232{bottom:703.640933pt;}
.y186{bottom:704.837600pt;}
.y11a{bottom:705.321067pt;}
.y20e{bottom:706.601067pt;}
.y13d{bottom:708.207467pt;}
.yf6{bottom:709.267733pt;}
.y25a{bottom:710.677067pt;}
.y6e{bottom:712.740267pt;}
.y28e{bottom:714.267733pt;}
.y42{bottom:714.473600pt;}
.y28{bottom:715.393332pt;}
.y90{bottom:717.267733pt;}
.y1b3{bottom:719.800933pt;}
.y1da{bottom:720.609067pt;}
.y231{bottom:720.974267pt;}
.y185{bottom:722.170933pt;}
.y119{bottom:722.654400pt;}
.y20d{bottom:723.934400pt;}
.yf5{bottom:726.601067pt;}
.y41{bottom:727.806933pt;}
.y28d{bottom:728.934400pt;}
.y27{bottom:731.393332pt;}
.y6d{bottom:732.973600pt;}
.y8f{bottom:734.601067pt;}
.y259{bottom:734.677067pt;}
.y1b2{bottom:737.134267pt;}
.y1d9{bottom:737.942400pt;}
.y230{bottom:738.307600pt;}
.y184{bottom:739.504267pt;}
.y118{bottom:739.987733pt;}
.y40{bottom:741.140267pt;}
.y20c{bottom:741.267733pt;}
.y28c{bottom:743.601067pt;}
.yf4{bottom:743.934400pt;}
.y6c{bottom:744.973600pt;}
.y8e{bottom:751.934400pt;}
.y1b1{bottom:754.467600pt;}
.y3f{bottom:754.473600pt;}
.y1d8{bottom:755.275733pt;}
.y22f{bottom:755.640933pt;}
.y183{bottom:756.837600pt;}
.y6b{bottom:756.973600pt;}
.y28b{bottom:758.267733pt;}
.y20b{bottom:758.601067pt;}
.yf3{bottom:761.267733pt;}
.y3e{bottom:767.806933pt;}
.y6a{bottom:768.973600pt;}
.y8d{bottom:769.267733pt;}
.y1b0{bottom:771.800933pt;}
.y1d7{bottom:772.609067pt;}
.y28a{bottom:772.934400pt;}
.y22e{bottom:772.974267pt;}
.y13c{bottom:773.987733pt;}
.y182{bottom:774.170933pt;}
.y20a{bottom:775.934400pt;}
.y26{bottom:778.034669pt;}
.yf2{bottom:778.601067pt;}
.y258{bottom:780.010400pt;}
.y2{bottom:781.661334pt;}
.y8c{bottom:786.601067pt;}
.y289{bottom:787.601067pt;}
.y1af{bottom:789.134267pt;}
.y22d{bottom:790.307600pt;}
.y181{bottom:791.504267pt;}
.y209{bottom:793.267733pt;}
.y257{bottom:794.677067pt;}
.y1d6{bottom:799.275733pt;}
.y288{bottom:802.267733pt;}
.y8b{bottom:803.934400pt;}
.y1ae{bottom:806.467600pt;}
.y22c{bottom:807.640933pt;}
.y256{bottom:809.343733pt;}
.y3d{bottom:809.473600pt;}
.yf1{bottom:809.934400pt;}
.y208{bottom:810.601067pt;}
.y287{bottom:816.934400pt;}
.y8a{bottom:821.267733pt;}
.y1ad{bottom:823.800933pt;}
.y255{bottom:824.010400pt;}
.y174{bottom:824.945333pt;}
.y22b{bottom:824.974267pt;}
.y180{bottom:829.611867pt;}
.y179{bottom:829.615708pt;}
.y286{bottom:831.601067pt;}
.y177{bottom:833.078400pt;}
.y17d{bottom:833.078533pt;}
.y3c{bottom:833.473600pt;}
.y25{bottom:834.613333pt;}
.y89{bottom:838.601067pt;}
.y207{bottom:838.954400pt;}
.y178{bottom:840.145200pt;}
.y1ac{bottom:841.134267pt;}
.y22a{bottom:842.307600pt;}
.y173{bottom:843.611867pt;}
.y285{bottom:846.267733pt;}
.y254{bottom:848.010400pt;}
.y206{bottom:851.434400pt;}
.y17a{bottom:851.615101pt;}
.y17c{bottom:852.145200pt;}
.y176{bottom:855.078400pt;}
.y17e{bottom:855.078533pt;}
.y88{bottom:855.934400pt;}
.y1ab{bottom:858.467600pt;}
.y1{bottom:859.312000pt;}
.y284{bottom:860.934400pt;}
.y24{bottom:862.613333pt;}
.y205{bottom:863.434400pt;}
.y3b{bottom:868.140267pt;}
.y87{bottom:873.267733pt;}
.y204{bottom:875.434400pt;}
.y283{bottom:875.601067pt;}
.y172{bottom:875.719467pt;}
.y1aa{bottom:875.800933pt;}
.y203{bottom:887.434400pt;}
.y3a{bottom:889.473600pt;}
.y282{bottom:890.267733pt;}
.y86{bottom:890.601067pt;}
.y171{bottom:893.052800pt;}
.y253{bottom:893.601067pt;}
.y202{bottom:899.434400pt;}
.y1a9{bottom:902.467467pt;}
.y281{bottom:904.934400pt;}
.y85{bottom:907.934400pt;}
.y252{bottom:908.267733pt;}
.y37{bottom:915.121067pt;}
.y1ff{bottom:915.767733pt;}
.y280{bottom:919.601067pt;}
.y23{bottom:920.485335pt;}
.y251{bottom:922.934400pt;}
.y84{bottom:925.267733pt;}
.y165{bottom:926.493333pt;}
.y1a8{bottom:929.134133pt;}
.y36{bottom:931.121067pt;}
.y16a{bottom:931.160241pt;}
.y200{bottom:932.434400pt;}
.y27f{bottom:934.267733pt;}
.y167{bottom:934.626933pt;}
.y250{bottom:937.601067pt;}
.y16f{bottom:941.693600pt;}
.y83{bottom:942.601067pt;}
.y201{bottom:944.434400pt;}
.y164{bottom:945.160267pt;}
.y27e{bottom:948.934400pt;}
.y169{bottom:952.226933pt;}
.y24f{bottom:952.267733pt;}
.y16b{bottom:953.159634pt;}
.y170{bottom:953.693600pt;}
.y16c{bottom:956.626933pt;}
.y82{bottom:959.934400pt;}
.y1fe{bottom:961.101067pt;}
.y66{bottom:963.362000pt;}
.y27d{bottom:963.601067pt;}
.y1a5{bottom:971.601333pt;}
.y1a7{bottom:974.667733pt;}
.y39{bottom:975.473733pt;}
.y24e{bottom:976.267733pt;}
.y81{bottom:977.267733pt;}
.y1fd{bottom:977.767733pt;}
.y1a4{bottom:978.267733pt;}
.y38{bottom:987.473733pt;}
.yb6{bottom:1014.433867pt;}
.y80{bottom:1014.500533pt;}
.y22{bottom:1035.664002pt;}
.h2d{height:8.386594pt;}
.h33{height:19.829333pt;}
.h21{height:19.998667pt;}
.h26{height:21.332000pt;}
.h23{height:21.408506pt;}
.h28{height:21.423561pt;}
.h1a{height:26.693333pt;}
.h17{height:28.000000pt;}
.h25{height:28.014289pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1b{height:30.506667pt;}
.h2a{height:30.762667pt;}
.hb{height:32.645833pt;}
.h1d{height:33.080000pt;}
.h32{height:33.909333pt;}
.h16{height:34.320000pt;}
.h1c{height:35.285333pt;}
.h29{height:35.546875pt;}
.h2c{height:36.119792pt;}
.h1f{height:36.226667pt;}
.hf{height:36.726562pt;}
.h22{height:37.031250pt;}
.h27{height:37.057292pt;}
.h31{height:37.916817pt;}
.h24{height:39.466667pt;}
.h18{height:39.696000pt;}
.h1e{height:39.760000pt;}
.h20{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h19{height:42.298667pt;}
.h3{height:42.840000pt;}
.h12{height:44.106667pt;}
.h15{height:46.312000pt;}
.h2b{height:46.666667pt;}
.h2f{height:48.764583pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h14{height:53.834667pt;}
.h2e{height:58.176094pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h30{height:82.897917pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:113.088000pt;}
.w6{width:127.608000pt;}
.w8{width:256.961333pt;}
.w9{width:315.530667pt;}
.wa{width:338.301333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x27{left:22.533333pt;}
.x10{left:27.008133pt;}
.x45{left:35.008000pt;}
.x11{left:36.474667pt;}
.x12{left:52.341467pt;}
.x3b{left:67.650667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x3f{left:101.917333pt;}
.x18{left:109.333333pt;}
.xb{left:112.100000pt;}
.x29{left:115.066667pt;}
.x48{left:120.000000pt;}
.xe{left:126.666667pt;}
.x6{left:129.466667pt;}
.x38{left:138.184000pt;}
.x53{left:150.338267pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x4d{left:193.212000pt;}
.x2b{left:196.800000pt;}
.x4e{left:200.529067pt;}
.x9{left:203.327991pt;}
.x43{left:227.700000pt;}
.x2f{left:239.085333pt;}
.x1d{left:251.200000pt;}
.x44{left:254.708000pt;}
.x8{left:260.969328pt;}
.x1b{left:268.370667pt;}
.x1c{left:270.504000pt;}
.x3a{left:273.517333pt;}
.x46{left:281.241333pt;}
.x1f{left:285.700526pt;}
.x1e{left:293.570667pt;}
.x37{left:295.802667pt;}
.x28{left:304.237333pt;}
.x3c{left:313.802667pt;}
.x2d{left:321.037333pt;}
.x3d{left:331.269333pt;}
.xf{left:333.106667pt;}
.x32{left:335.936403pt;}
.x2e{left:338.504000pt;}
.x15{left:340.306667pt;}
.x49{left:362.180133pt;}
.x16{left:367.533333pt;}
.x4f{left:371.359733pt;}
.x4c{left:377.502800pt;}
.x40{left:382.869333pt;}
.x30{left:390.869333pt;}
.x25{left:394.770667pt;}
.x24{left:397.037333pt;}
.x3{left:404.408000pt;}
.x21{left:414.097124pt;}
.x33{left:420.072134pt;}
.x20{left:426.098895pt;}
.x34{left:434.209095pt;}
.x2a{left:440.904000pt;}
.x3e{left:446.469333pt;}
.x13{left:449.714667pt;}
.x17{left:453.394667pt;}
.x14{left:460.594667pt;}
.x26{left:470.637333pt;}
.x50{left:474.212933pt;}
.x51{left:477.247600pt;}
.x39{left:487.136000pt;}
.x23{left:489.568763pt;}
.x22{left:495.164965pt;}
.x54{left:502.378267pt;}
.xd{left:507.508000pt;}
.x4a{left:508.734267pt;}
.x2c{left:509.970667pt;}
.x31{left:518.069333pt;}
.x4b{left:525.258933pt;}
.x36{left:537.014247pt;}
.x35{left:542.610449pt;}
.x41{left:544.202667pt;}
.x19{left:553.342400pt;}
.x42{left:554.616000pt;}
.x1a{left:555.875733pt;}
.x47{left:566.001333pt;}
.xc{left:577.800667pt;}
.x52{left:589.884133pt;}
}




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