
    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_2b151e32d8cf364550e384d0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.769000;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_e1226e28df54803dc241f697.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977000;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_ff52c0c3e291e5313754014f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.977000;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_d4b8df8b9dbf966e2e189103.woff')format("woff");}.ff4{font-family:ff4;line-height:0.972000;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_b2546d226b8c152b014feb21.woff')format("woff");}.ff5{font-family:ff5;line-height:0.967000;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_44e0d22a694b61962c65f8d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.976074;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_68316a0c7bfe5f6eb0dd0350.woff')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_7bf7d27d87a19bfe30a4f5d6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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_9ff9ed5bb19b54c494edaf06.woff')format("woff");}.ff9{font-family:ff9;line-height:0.971191;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_87c58f4a51c6bb2e17dd129b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.120605;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_9d7b2ff315f375b3ccae41ca.woff')format("woff");}.ffb{font-family:ffb;line-height:0.971000;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_40a199f5a8d83c776c9a5ade.woff')format("woff");}.ffc{font-family:ffc;line-height:0.971000;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_9b876157d1002d2685d9a03c.woff')format("woff");}.ffd{font-family:ffd;line-height:1.010000;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_bc2a5991bb10471b89cb76af.woff')format("woff");}.ffe{font-family:ffe;line-height:0.661000;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_d29e72b34214fb3f963509d5.woff')format("woff");}.fff{font-family:fff;line-height:0.661000;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_2707d29f6a1e7add64d0f45c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.632000;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_23242a8f6c7536b04d469494.woff')format("woff");}.ff11{font-family:ff11;line-height:0.675000;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_612a4d962025dfbe1fa772ce.woff')format("woff");}.ff12{font-family:ff12;line-height:0.862000;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_0276775bc511323aae53413d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.625000;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_5d437bcfeadb8237640253d0.woff')format("woff");}.ff14{font-family:ff14;line-height:0.871000;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_0d95db4f915d733c98933dbf.woff')format("woff");}.ff15{font-family:ff15;line-height:0.840000;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_4766cc15e00a5870fa3b0a3d.woff')format("woff");}.ff16{font-family:ff16;line-height:0.850000;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_32b09b7340e09d477d198505.woff')format("woff");}.ff17{font-family:ff17;line-height:1.121000;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_5cb5c33af0cbbe06c8ab49ad.woff')format("woff");}.ff18{font-family:ff18;line-height:0.850000;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_32d04ea422c899bfdcaee696.woff')format("woff");}.ff19{font-family:ff19;line-height:0.850000;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_ec2de2cb7931380e223f6e4c.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.896000;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_5760a747b1fb14e1693e84fc.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.896000;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_df4ca09d087fab8d0cf157e3.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.862000;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_68c54cd16c0199586fae56d3.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_0276775bc511323aae53413d.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.625000;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:ff1f;src:url('chunks/assets/font_d331fad60bb72df04e1a8917.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_06283e29f21114a7ae69821c.woff')format("woff");}.ff20{font-family:ff20;line-height:1.009000;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:ff21;src:url('chunks/assets/font_0276775bc511323aae53413d.woff')format("woff");}.ff21{font-family:ff21;line-height:0.625000;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;}
.m5{transform:matrix(-0.249855,0.000000,0.000000,-0.250000,0,0);-ms-transform:matrix(-0.249855,0.000000,0.000000,-0.250000,0,0);-webkit-transform:matrix(-0.249855,0.000000,0.000000,-0.250000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250145,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250145,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250145,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.086600px;}
.ls0{letter-spacing:-5.940000px;}
.ls71{letter-spacing:-4.331381px;}
.ls5f{letter-spacing:-4.293115px;}
.ls5e{letter-spacing:-4.287149px;}
.ls17{letter-spacing:-3.201600px;}
.ls69{letter-spacing:-3.066034px;}
.ls68{letter-spacing:-2.092690px;}
.ls15{letter-spacing:-1.932000px;}
.ls13{letter-spacing:-1.656000px;}
.lsc{letter-spacing:-1.545600px;}
.ls16{letter-spacing:-1.324800px;}
.lsd{letter-spacing:-1.159200px;}
.ls60{letter-spacing:-1.096157px;}
.ls8{letter-spacing:-1.080000px;}
.ls66{letter-spacing:-1.070678px;}
.lsa{letter-spacing:-1.048800px;}
.ls6d{letter-spacing:-1.022011px;}
.ls6b{letter-spacing:-0.973008px;}
.lsb{letter-spacing:-0.938400px;}
.lse{letter-spacing:-0.828000px;}
.ls4{letter-spacing:-0.792000px;}
.ls70{letter-spacing:-0.730008px;}
.ls14{letter-spacing:-0.717600px;}
.ls9{letter-spacing:-0.662400px;}
.ls5a{letter-spacing:-0.437760px;}
.ls84{letter-spacing:-0.333792px;}
.ls50{letter-spacing:-0.318384px;}
.ls5c{letter-spacing:-0.289440px;}
.ls51{letter-spacing:-0.260496px;}
.ls6c{letter-spacing:-0.259469px;}
.ls67{letter-spacing:-0.243336px;}
.ls88{letter-spacing:-0.238464px;}
.ls74{letter-spacing:-0.231552px;}
.ls5b{letter-spacing:-0.213408px;}
.ls62{letter-spacing:-0.213142px;}
.ls75{letter-spacing:-0.212256px;}
.ls89{letter-spacing:-0.205344px;}
.ls52{letter-spacing:-0.202608px;}
.ls18{letter-spacing:-0.191520px;}
.ls4d{letter-spacing:-0.185472px;}
.ls86{letter-spacing:-0.178848px;}
.ls49{letter-spacing:-0.172224px;}
.ls87{letter-spacing:-0.165600px;}
.ls99{letter-spacing:-0.164016px;}
.lsa1{letter-spacing:-0.159844px;}
.ls9f{letter-spacing:-0.159751px;}
.ls4a{letter-spacing:-0.158976px;}
.ls3c{letter-spacing:-0.152352px;}
.ls6a{letter-spacing:-0.146002px;}
.ls3b{letter-spacing:-0.145728px;}
.ls4c{letter-spacing:-0.139104px;}
.ls38{letter-spacing:-0.132480px;}
.ls3a{letter-spacing:-0.125856px;}
.ls39{letter-spacing:-0.112608px;}
.ls4b{letter-spacing:-0.105984px;}
.ls7e{letter-spacing:-0.099360px;}
.ls3d{letter-spacing:-0.092736px;}
.ls83{letter-spacing:-0.086112px;}
.ls7f{letter-spacing:-0.079488px;}
.ls85{letter-spacing:-0.077184px;}
.lsa4{letter-spacing:-0.068465px;}
.ls82{letter-spacing:-0.066240px;}
.ls80{letter-spacing:-0.059616px;}
.ls4e{letter-spacing:-0.052992px;}
.ls57{letter-spacing:-0.036000px;}
.ls54{letter-spacing:-0.028800px;}
.ls53{letter-spacing:-0.021600px;}
.ls81{letter-spacing:-0.019872px;}
.ls1e{letter-spacing:-0.014400px;}
.ls4f{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls9d{letter-spacing:0.006846px;}
.ls1d{letter-spacing:0.007200px;}
.ls1b{letter-spacing:0.014400px;}
.ls47{letter-spacing:0.021600px;}
.ls19{letter-spacing:0.028800px;}
.ls1f{letter-spacing:0.036000px;}
.ls59{letter-spacing:0.043200px;}
.ls1a{letter-spacing:0.050400px;}
.ls10{letter-spacing:0.055200px;}
.ls56{letter-spacing:0.057600px;}
.ls9b{letter-spacing:0.079247px;}
.lsa0{letter-spacing:0.091286px;}
.lsa2{letter-spacing:0.091339px;}
.ls37{letter-spacing:0.116928px;}
.lsb1{letter-spacing:0.141984px;}
.ls3{letter-spacing:0.156000px;}
.lsb0{letter-spacing:0.158688px;}
.lsa6{letter-spacing:0.167040px;}
.lsab{letter-spacing:0.175392px;}
.lsa3{letter-spacing:0.182573px;}
.lsad{letter-spacing:0.192096px;}
.lsa5{letter-spacing:0.205394px;}
.lsb2{letter-spacing:0.208800px;}
.lsaf{letter-spacing:0.217152px;}
.ls1c{letter-spacing:0.242208px;}
.lsac{letter-spacing:0.250560px;}
.ls9e{letter-spacing:0.258912px;}
.ls5{letter-spacing:0.270000px;}
.lsa7{letter-spacing:0.275616px;}
.lsae{letter-spacing:0.292320px;}
.lsa8{letter-spacing:0.309024px;}
.lsaa{letter-spacing:0.317376px;}
.ls7{letter-spacing:0.331200px;}
.ls61{letter-spacing:0.365386px;}
.ls5d{letter-spacing:0.390283px;}
.ls11{letter-spacing:0.441600px;}
.ls55{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.708000px;}
.ls12{letter-spacing:0.717600px;}
.ls6e{letter-spacing:0.778675px;}
.ls72{letter-spacing:0.827342px;}
.ls6f{letter-spacing:0.924677px;}
.lsf{letter-spacing:1.048800px;}
.ls6{letter-spacing:1.339200px;}
.ls73{letter-spacing:1.584000px;}
.ls43{letter-spacing:1.589760px;}
.ls48{letter-spacing:1.656000px;}
.ls46{letter-spacing:1.670400px;}
.ls8f{letter-spacing:1.944000px;}
.ls94{letter-spacing:2.088000px;}
.ls93{letter-spacing:2.124000px;}
.ls90{letter-spacing:2.620800px;}
.ls91{letter-spacing:2.656800px;}
.ls92{letter-spacing:2.721600px;}
.ls8a{letter-spacing:3.060000px;}
.ls79{letter-spacing:3.636000px;}
.ls76{letter-spacing:3.873600px;}
.ls8c{letter-spacing:4.449600px;}
.ls97{letter-spacing:4.536000px;}
.ls8e{letter-spacing:5.112000px;}
.ls8d{letter-spacing:5.119200px;}
.ls40{letter-spacing:5.696640px;}
.ls77{letter-spacing:5.904000px;}
.ls7b{letter-spacing:6.336000px;}
.ls7a{letter-spacing:6.379200px;}
.ls8b{letter-spacing:6.465600px;}
.ls64{letter-spacing:6.825600px;}
.ls65{letter-spacing:6.868800px;}
.ls98{letter-spacing:7.488000px;}
.ls96{letter-spacing:8.265600px;}
.ls58{letter-spacing:8.297280px;}
.ls63{letter-spacing:8.560800px;}
.ls2a{letter-spacing:8.862912px;}
.ls42{letter-spacing:8.869536px;}
.ls30{letter-spacing:8.876160px;}
.ls29{letter-spacing:8.889408px;}
.ls2b{letter-spacing:8.896032px;}
.ls44{letter-spacing:8.902656px;}
.ls32{letter-spacing:8.909280px;}
.ls34{letter-spacing:8.915904px;}
.ls2e{letter-spacing:8.922528px;}
.ls24{letter-spacing:9.869760px;}
.ls21{letter-spacing:10.134720px;}
.ls35{letter-spacing:11.062080px;}
.ls78{letter-spacing:11.620800px;}
.ls26{letter-spacing:12.386880px;}
.ls22{letter-spacing:12.585600px;}
.ls41{letter-spacing:12.784320px;}
.ls25{letter-spacing:12.916800px;}
.ls31{letter-spacing:13.181760px;}
.ls3e{letter-spacing:13.380480px;}
.ls28{letter-spacing:13.592448px;}
.ls3f{letter-spacing:13.777920px;}
.ls2f{letter-spacing:14.109120px;}
.ls45{letter-spacing:14.241600px;}
.ls36{letter-spacing:14.374080px;}
.ls2d{letter-spacing:14.506560px;}
.ls27{letter-spacing:15.301440px;}
.ls2c{letter-spacing:15.433920px;}
.ls33{letter-spacing:15.897600px;}
.ls9a{letter-spacing:21.575277px;}
.ls95{letter-spacing:27.712800px;}
.ls9c{letter-spacing:48.743763px;}
.ls7c{letter-spacing:59.218560px;}
.ls7d{letter-spacing:70.545600px;}
.ls20{letter-spacing:127.823328px;}
.ls23{letter-spacing:162.354240px;}
.lsa9{letter-spacing:843.984000px;}
.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;}
}
.ws4{word-spacing:-54.000000px;}
.ws66{word-spacing:-53.011402px;}
.ws60{word-spacing:-25.705987px;}
.ws3{word-spacing:-24.552000px;}
.ws57{word-spacing:-21.804480px;}
.ws5d{word-spacing:-21.640464px;}
.ws35{word-spacing:-21.601872px;}
.ws5e{word-spacing:-21.592224px;}
.ws34{word-spacing:-21.543984px;}
.ws38{word-spacing:-21.515040px;}
.ws33{word-spacing:-21.486096px;}
.wsa{word-spacing:-20.479200px;}
.ws8{word-spacing:-19.485600px;}
.ws9{word-spacing:-19.430400px;}
.ws73{word-spacing:-19.184544px;}
.ws74{word-spacing:-19.167840px;}
.ws77{word-spacing:-19.134432px;}
.ws24{word-spacing:-19.117728px;}
.ws75{word-spacing:-19.067616px;}
.ws76{word-spacing:-19.034208px;}
.ws28{word-spacing:-18.992448px;}
.ws6{word-spacing:-18.878400px;}
.wsb{word-spacing:-18.381600px;}
.ws7{word-spacing:-17.719200px;}
.ws1{word-spacing:-16.608000px;}
.ws5c{word-spacing:-16.322400px;}
.ws3f{word-spacing:-16.315200px;}
.ws27{word-spacing:-16.308000px;}
.ws25{word-spacing:-16.300800px;}
.ws32{word-spacing:-16.293600px;}
.ws36{word-spacing:-16.286400px;}
.ws40{word-spacing:-16.279200px;}
.ws4d{word-spacing:-16.272000px;}
.ws3c{word-spacing:-16.264800px;}
.ws26{word-spacing:-16.257600px;}
.ws3d{word-spacing:-16.250400px;}
.ws3e{word-spacing:-16.243200px;}
.ws4c{word-spacing:-16.236000px;}
.wsc{word-spacing:-16.228800px;}
.ws5{word-spacing:-15.206400px;}
.ws54{word-spacing:-14.970240px;}
.ws5a{word-spacing:-14.950368px;}
.ws53{word-spacing:-14.910624px;}
.ws50{word-spacing:-14.890752px;}
.ws56{word-spacing:-14.884128px;}
.ws4f{word-spacing:-14.870880px;}
.ws55{word-spacing:-14.857632px;}
.ws59{word-spacing:-14.831136px;}
.ws4e{word-spacing:-14.824512px;}
.ws58{word-spacing:-14.791392px;}
.ws51{word-spacing:-14.784768px;}
.ws46{word-spacing:-13.168042px;}
.ws47{word-spacing:-12.908573px;}
.ws2f{word-spacing:-12.784320px;}
.ws2e{word-spacing:-12.691584px;}
.ws31{word-spacing:-12.678336px;}
.ws2b{word-spacing:-12.671712px;}
.ws2a{word-spacing:-12.658464px;}
.ws29{word-spacing:-12.651840px;}
.ws30{word-spacing:-12.645216px;}
.ws2c{word-spacing:-12.638592px;}
.ws2d{word-spacing:-12.631968px;}
.ws37{word-spacing:-12.366720px;}
.ws5b{word-spacing:-12.032928px;}
.ws4a{word-spacing:-10.804118px;}
.ws3b{word-spacing:-10.741843px;}
.ws49{word-spacing:-10.658117px;}
.ws39{word-spacing:-10.293719px;}
.ws3a{word-spacing:-9.889673px;}
.ws44{word-spacing:-9.879442px;}
.ws45{word-spacing:-9.733440px;}
.ws42{word-spacing:-9.636106px;}
.ws4b{word-spacing:-9.149434px;}
.ws48{word-spacing:-8.857430px;}
.ws41{word-spacing:-8.808763px;}
.ws43{word-spacing:-6.813408px;}
.ws6d{word-spacing:-4.361447px;}
.ws72{word-spacing:-4.336104px;}
.ws70{word-spacing:-4.313282px;}
.ws6c{word-spacing:-4.270108px;}
.ws65{word-spacing:-4.267639px;}
.ws6f{word-spacing:-4.137556px;}
.ws6a{word-spacing:-4.133099px;}
.ws6e{word-spacing:-4.130710px;}
.ws71{word-spacing:-4.062245px;}
.ws6b{word-spacing:-3.739424px;}
.ws1b{word-spacing:-3.643200px;}
.ws19{word-spacing:-3.312000px;}
.ws1c{word-spacing:-3.036000px;}
.ws1d{word-spacing:-1.876800px;}
.wse{word-spacing:-1.380000px;}
.ws14{word-spacing:-1.269600px;}
.ws10{word-spacing:-1.104000px;}
.ws1a{word-spacing:-0.938400px;}
.ws17{word-spacing:-0.662400px;}
.ws22{word-spacing:-0.095760px;}
.ws52{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:0.496800px;}
.ws23{word-spacing:0.574560px;}
.ws16{word-spacing:0.662400px;}
.ws1f{word-spacing:0.717600px;}
.ws18{word-spacing:0.938400px;}
.ws11{word-spacing:0.993600px;}
.wsd{word-spacing:1.080000px;}
.ws21{word-spacing:1.104000px;}
.ws13{word-spacing:1.159200px;}
.ws15{word-spacing:1.269600px;}
.wsf{word-spacing:1.380000px;}
.ws1e{word-spacing:1.711200px;}
.ws12{word-spacing:1.876800px;}
.ws0{word-spacing:5.400000px;}
.ws5f{word-spacing:6.353270px;}
.ws69{word-spacing:44.476124px;}
.ws64{word-spacing:47.238796px;}
.ws63{word-spacing:78.754167px;}
.ws62{word-spacing:104.836081px;}
.ws67{word-spacing:240.952969px;}
.ws68{word-spacing:854.600166px;}
.ws61{word-spacing:992.436281px;}
._3b{margin-left:-48.743763px;}
._12{margin-left:-14.544000px;}
._f{margin-left:-11.505888px;}
._e{margin-left:-8.743680px;}
._11{margin-left:-6.763104px;}
._9{margin-left:-5.214960px;}
._1{margin-left:-3.515400px;}
._8{margin-left:-2.469840px;}
._2{margin-left:-1.468800px;}
._3{width:1.050000px;}
._4{width:2.410800px;}
._5{width:3.459600px;}
._a{width:5.151720px;}
._b{width:6.479760px;}
._c{width:8.186400px;}
._d{width:9.223200px;}
._0{width:10.800000px;}
._18{width:12.376800px;}
._16{width:13.636800px;}
._13{width:14.868000px;}
._22{width:16.162560px;}
._14{width:17.280000px;}
._15{width:18.288000px;}
._17{width:19.562400px;}
._1c{width:21.128040px;}
._1f{width:22.662720px;}
._19{width:23.904000px;}
._24{width:26.363520px;}
._25{width:27.475200px;}
._1d{width:30.867840px;}
._23{width:32.258880px;}
._21{width:33.318720px;}
._1b{width:35.769600px;}
._28{width:37.339200px;}
._1a{width:42.935040px;}
._34{width:47.158949px;}
._47{width:48.743763px;}
._3a{width:50.414831px;}
._39{width:52.040855px;}
._2d{width:54.783730px;}
._1e{width:69.883200px;}
._20{width:70.943040px;}
._2b{width:109.103720px;}
._2e{width:114.528312px;}
._10{width:162.407232px;}
._4c{width:174.842627px;}
._35{width:183.671187px;}
._43{width:201.974335px;}
._52{width:256.402507px;}
._26{width:309.060000px;}
._27{width:346.838400px;}
._4e{width:421.758008px;}
._50{width:428.664735px;}
._3c{width:441.080906px;}
._4b{width:506.851537px;}
._44{width:519.368705px;}
._38{width:524.959997px;}
._2c{width:529.767137px;}
._31{width:572.108015px;}
._41{width:581.594991px;}
._46{width:588.111037px;}
._30{width:594.244967px;}
._51{width:623.723665px;}
._3d{width:643.334229px;}
._2a{width:665.448359px;}
._49{width:678.270961px;}
._40{width:694.112289px;}
._4a{width:697.685756px;}
._36{width:710.581266px;}
._37{width:723.358798px;}
._45{width:739.792914px;}
._4f{width:742.795842px;}
._48{width:744.590493px;}
._53{width:747.073294px;}
._33{width:763.649704px;}
._2f{width:768.388379px;}
._3e{width:785.892546px;}
._3f{width:793.902928px;}
._54{width:845.138880px;}
._29{width:847.728000px;}
._42{width:870.081429px;}
._4d{width:923.187292px;}
._32{width:1035.006783px;}
._7{width:1154.155200px;}
._6{width:1334.184000px;}
.fcb{color:rgb(70,120,134);}
.fca{color:rgb(255,0,0);}
.fc9{color:rgb(233,113,50);}
.fc7{color:rgb(14,40,65);}
.fc6{color:rgb(15,71,97);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(32,108,138);}
.fc2{color:transparent;}
.fc8{color:rgb(255,255,255);}
.fc3{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1a{font-size:20.659800px;}
.fs18{font-size:22.821600px;}
.fs19{font-size:22.834800px;}
.fs13{font-size:30.448800px;}
.fs14{font-size:30.516600px;}
.fs10{font-size:38.568000px;}
.fs11{font-size:38.635800px;}
.fs3{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs16{font-size:48.667200px;}
.fs12{font-size:48.717600px;}
.fsf{font-size:48.785400px;}
.fs1{font-size:54.000000px;}
.fse{font-size:54.720000px;}
.fs6{font-size:55.200000px;}
.fsb{font-size:60.480000px;}
.fs5{font-size:63.000000px;}
.fsc{font-size:63.360000px;}
.fs17{font-size:64.867200px;}
.fsa{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs15{font-size:74.992200px;}
.fs9{font-size:83.520000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:96.000000px;}
.fsd{font-size:96.480000px;}
.fs0{font-size:540.000000px;}
.y0{bottom:0.000000px;}
.y27b{bottom:4.893450px;}
.y279{bottom:7.611900px;}
.y26a{bottom:8.019900px;}
.y27e{bottom:8.699400px;}
.y27d{bottom:9.106950px;}
.y27f{bottom:9.242550px;}
.y268{bottom:9.379350px;}
.y257{bottom:9.922200px;}
.y259{bottom:9.922500px;}
.y263{bottom:9.922800px;}
.y25b{bottom:10.058700px;}
.y25f{bottom:10.329450px;}
.y11e{bottom:10.470900px;}
.y11f{bottom:10.657050px;}
.y25d{bottom:10.738500px;}
.y26e{bottom:11.552850px;}
.y255{bottom:12.369300px;}
.y270{bottom:12.777000px;}
.y261{bottom:12.912600px;}
.y276{bottom:13.185000px;}
.y274{bottom:13.185150px;}
.y278{bottom:14.136600px;}
.y1c7{bottom:14.400000px;}
.y20f{bottom:14.621280px;}
.y1f3{bottom:14.675520px;}
.y21c{bottom:14.739840px;}
.y1fe{bottom:14.752800px;}
.y1de{bottom:14.761440px;}
.y1f9{bottom:14.814240px;}
.y1d3{bottom:14.940000px;}
.y1ea{bottom:15.336960px;}
.y26c{bottom:15.495450px;}
.y1b1{bottom:15.900000px;}
.y225{bottom:16.200000px;}
.y272{bottom:16.582650px;}
.y1be{bottom:17.280000px;}
.y1f6{bottom:30.301440px;}
.y221{bottom:32.402880px;}
.y254{bottom:42.950734px;}
.y253{bottom:42.951600px;}
.y20e{bottom:44.859840px;}
.y21b{bottom:44.978400px;}
.y1fd{bottom:44.991360px;}
.y1c6{bottom:45.000000px;}
.y1f8{bottom:45.052800px;}
.y1d2{bottom:45.180000px;}
.y1f2{bottom:45.278400px;}
.y1e9{bottom:45.575520px;}
.y1e4{bottom:47.044320px;}
.y224{bottom:47.145600px;}
.y1bd{bottom:47.520000px;}
.y32{bottom:57.599400px;}
.y5c{bottom:58.080000px;}
.ye{bottom:58.162500px;}
.yb4{bottom:58.440000px;}
.y1f5{bottom:60.540000px;}
.y1ee{bottom:61.501440px;}
.y21e{bottom:62.640000px;}
.y220{bottom:62.641440px;}
.y1fc{bottom:75.229920px;}
.y1d1{bottom:75.420000px;}
.y20d{bottom:75.462720px;}
.y21a{bottom:75.581280px;}
.y1c5{bottom:75.960000px;}
.y1f7{bottom:76.020000px;}
.y1e8{bottom:76.178400px;}
.y1f1{bottom:76.245600px;}
.y1ec{bottom:76.620000px;}
.y1e3{bottom:77.282880px;}
.y1bc{bottom:77.760000px;}
.y223{bottom:78.112800px;}
.y18d{bottom:82.033500px;}
.yb3{bottom:91.200000px;}
.y203{bottom:91.688640px;}
.y1ed{bottom:91.740000px;}
.y214{bottom:91.802880px;}
.y28d{bottom:92.292240px;}
.y1e0{bottom:92.400000px;}
.ye4{bottom:92.640000px;}
.y8b{bottom:92.848800px;}
.y21f{bottom:92.880000px;}
.yd2{bottom:96.600000px;}
.y1f4{bottom:100.500000px;}
.y22b{bottom:100.560000px;}
.y290{bottom:101.280000px;}
.y1a0{bottom:104.880000px;}
.y1d5{bottom:105.660000px;}
.y266{bottom:105.769950px;}
.y1d0{bottom:106.020000px;}
.y20c{bottom:106.065600px;}
.y1fb{bottom:106.197120px;}
.y1c4{bottom:106.200000px;}
.y219{bottom:106.548480px;}
.y206{bottom:106.802880px;}
.yfe{bottom:107.040000px;}
.y1e7{bottom:107.145600px;}
.y1f0{bottom:107.212800px;}
.y283{bottom:107.400000px;}
.y1e2{bottom:107.521440px;}
.y1bb{bottom:108.000000px;}
.y176{bottom:108.480000px;}
.y222{bottom:109.080000px;}
.y1dc{bottom:109.200000px;}
.y297{bottom:110.640000px;}
.y28b{bottom:111.360000px;}
.y294{bottom:111.720000px;}
.yb2{bottom:113.160000px;}
.y24c{bottom:115.320000px;}
.y186{bottom:115.513500px;}
.y157{bottom:117.840000px;}
.y24e{bottom:120.720000px;}
.y13f{bottom:121.800000px;}
.y202{bottom:121.927200px;}
.y17f{bottom:122.007000px;}
.y211{bottom:122.040000px;}
.y213{bottom:122.041440px;}
.y28f{bottom:123.240000px;}
.y28c{bottom:123.967200px;}
.y8a{bottom:124.892400px;}
.ye3{bottom:125.760000px;}
.y282{bottom:129.360000px;}
.yd1{bottom:129.720000px;}
.y250{bottom:132.600000px;}
.y28a{bottom:133.320000px;}
.y22a{bottom:133.680000px;}
.y185{bottom:133.752000px;}
.y1d4{bottom:135.900000px;}
.y1cf{bottom:136.620000px;}
.y20b{bottom:136.668480px;}
.y218{bottom:136.787040px;}
.y1fa{bottom:136.800000px;}
.y205{bottom:137.041440px;}
.y19f{bottom:137.640000px;}
.y1e1{bottom:137.760000px;}
.y1e6{bottom:138.112800px;}
.y1ef{bottom:138.180000px;}
.yfd{bottom:139.800000px;}
.y17e{bottom:140.758500px;}
.y1c3{bottom:140.760000px;}
.y58{bottom:141.633600px;}
.y1db{bottom:141.960000px;}
.y1ba{bottom:142.560000px;}
.y296{bottom:143.400000px;}
.yb1{bottom:144.120000px;}
.y293{bottom:144.840000px;}
.y28e{bottom:145.200000px;}
.y184{bottom:147.434250px;}
.y24b{bottom:148.440000px;}
.y137{bottom:150.600000px;}
.y281{bottom:151.320000px;}
.y286{bottom:151.680000px;}
.y201{bottom:152.165760px;}
.y212{bottom:152.280000px;}
.y17d{bottom:153.934500px;}
.y13e{bottom:154.560000px;}
.y89{bottom:156.936000px;}
.ye2{bottom:158.520000px;}
.y2e{bottom:159.420000px;}
.y183{bottom:160.617000px;}
.y57{bottom:161.436600px;}
.y289{bottom:161.760000px;}
.y288{bottom:162.120000px;}
.yd0{bottom:162.480000px;}
.yb0{bottom:163.920000px;}
.y1af{bottom:166.800000px;}
.y1ce{bottom:166.860000px;}
.y204{bottom:167.280000px;}
.y20a{bottom:167.635680px;}
.y217{bottom:167.754240px;}
.y177{bottom:168.012000px;}
.y175{bottom:168.240000px;}
.y1e5{bottom:169.080000px;}
.y19e{bottom:170.760000px;}
.y1c2{bottom:171.000000px;}
.y24f{bottom:171.480000px;}
.y292{bottom:171.840000px;}
.y1b9{bottom:172.800000px;}
.yfc{bottom:172.920000px;}
.y1da{bottom:175.080000px;}
.y182{bottom:175.467000px;}
.y295{bottom:176.520000px;}
.y285{bottom:176.880000px;}
.y56{bottom:180.632400px;}
.y2d{bottom:181.200000px;}
.y200{bottom:182.040000px;}
.y136{bottom:183.720000px;}
.yaf{bottom:185.880000px;}
.y265{bottom:186.099600px;}
.y13d{bottom:187.680000px;}
.y88{bottom:189.343920px;}
.ye1{bottom:191.640000px;}
.y1eb{bottom:193.500000px;}
.y284{bottom:193.800000px;}
.y156{bottom:195.600000px;}
.y1cd{bottom:197.460000px;}
.y209{bottom:197.874240px;}
.y216{bottom:197.992800px;}
.y1ae{bottom:199.560000px;}
.y229{bottom:199.920000px;}
.y181{bottom:200.293500px;}
.y55{bottom:200.435400px;}
.y2c{bottom:200.700000px;}
.y1c1{bottom:201.600000px;}
.y1b8{bottom:203.040000px;}
.y174{bottom:203.520000px;}
.yfb{bottom:206.040000px;}
.ycf{bottom:206.760000px;}
.yae{bottom:207.840000px;}
.y1d9{bottom:208.200000px;}
.y24a{bottom:214.320000px;}
.y135{bottom:216.480000px;}
.y54{bottom:219.631200px;}
.y13c{bottom:220.440000px;}
.y87{bottom:221.387520px;}
.y2b{bottom:223.200000px;}
.y190{bottom:224.249250px;}
.ye0{bottom:224.400000px;}
.y180{bottom:225.133500px;}
.y208{bottom:228.112800px;}
.y155{bottom:228.360000px;}
.y215{bottom:228.960000px;}
.y251{bottom:230.340000px;}
.y18c{bottom:231.829500px;}
.y1cc{bottom:232.020000px;}
.y1c0{bottom:232.560000px;}
.y1ad{bottom:232.680000px;}
.y1b7{bottom:233.280000px;}
.y173{bottom:236.640000px;}
.yfa{bottom:238.800000px;}
.y18f{bottom:238.950750px;}
.y53{bottom:239.434200px;}
.yad{bottom:240.600000px;}
.y1d8{bottom:240.960000px;}
.y228{bottom:243.850440px;}
.y18b{bottom:246.531000px;}
.y249{bottom:247.080000px;}
.y19d{bottom:247.800000px;}
.y134{bottom:249.600000px;}
.y260{bottom:250.864500px;}
.y2a{bottom:253.200000px;}
.y86{bottom:253.431120px;}
.y13b{bottom:253.560000px;}
.y18e{bottom:253.645500px;}
.yce{bottom:257.520000px;}
.y52{bottom:258.630000px;}
.y207{bottom:259.080000px;}
.y18a{bottom:261.225750px;}
.y154{bottom:261.480000px;}
.y1cb{bottom:262.260000px;}
.y1bf{bottom:262.800000px;}
.y1b6{bottom:263.520000px;}
.y1ac{bottom:265.440000px;}
.y17c{bottom:266.862000px;}
.y172{bottom:269.400000px;}
.y11d{bottom:270.431400px;}
.y116{bottom:271.108050px;}
.y112{bottom:271.297500px;}
.yf9{bottom:271.920000px;}
.y29{bottom:272.700000px;}
.yac{bottom:273.720000px;}
.y119{bottom:277.299300px;}
.y51{bottom:278.433000px;}
.y17b{bottom:280.044750px;}
.y248{bottom:280.200000px;}
.y11c{bottom:282.123750px;}
.y133{bottom:282.360000px;}
.y115{bottom:282.780000px;}
.y111{bottom:282.989850px;}
.y1d7{bottom:285.240000px;}
.y85{bottom:285.839040px;}
.y13a{bottom:286.320000px;}
.y118{bottom:288.470550px;}
.ycd{bottom:290.280000px;}
.y6{bottom:291.324450px;}
.y28{bottom:292.200000px;}
.y1ca{bottom:292.500000px;}
.y1c9{bottom:293.220000px;}
.y11b{bottom:293.288250px;}
.y1b5{bottom:293.760000px;}
.y114{bottom:293.964900px;}
.y110{bottom:294.167850px;}
.y153{bottom:294.600000px;}
.y50{bottom:297.628800px;}
.y19c{bottom:298.560000px;}
.y17a{bottom:298.789500px;}
.y227{bottom:299.640000px;}
.y117{bottom:300.663600px;}
.y171{bottom:302.520000px;}
.yf8{bottom:304.680000px;}
.y11a{bottom:305.481150px;}
.y113{bottom:306.164700px;}
.y10f{bottom:306.347250px;}
.yab{bottom:306.840000px;}
.y179{bottom:311.972250px;}
.y5{bottom:312.330450px;}
.y247{bottom:312.960000px;}
.y27{bottom:315.120000px;}
.y132{bottom:315.480000px;}
.y4f{bottom:317.431800px;}
.y84{bottom:317.882640px;}
.y139{bottom:319.440000px;}
.ycc{bottom:323.400000px;}
.y1b4{bottom:324.000000px;}
.y1b3{bottom:324.720000px;}
.y1d6{bottom:326.640000px;}
.y152{bottom:327.360000px;}
.y19b{bottom:331.320000px;}
.y170{bottom:335.280000px;}
.y4e{bottom:336.627600px;}
.yf7{bottom:337.800000px;}
.y189{bottom:339.525750px;}
.yaa{bottom:339.600000px;}
.y1c8{bottom:340.500000px;}
.y226{bottom:341.040000px;}
.y26{bottom:345.105000px;}
.y246{bottom:346.080000px;}
.y4{bottom:346.836450px;}
.y1df{bottom:348.000000px;}
.y131{bottom:348.600000px;}
.y83{bottom:349.926240px;}
.yed{bottom:352.560000px;}
.y21d{bottom:354.000000px;}
.y188{bottom:354.227250px;}
.y4d{bottom:356.430600px;}
.ycb{bottom:356.520000px;}
.y151{bottom:360.480000px;}
.y19a{bottom:364.440000px;}
.y25{bottom:364.605000px;}
.y121{bottom:367.680000px;}
.y3{bottom:367.842450px;}
.y16f{bottom:368.400000px;}
.y187{bottom:368.922000px;}
.yf6{bottom:370.560000px;}
.y10e{bottom:371.778150px;}
.ya9{bottom:372.720000px;}
.y4c{bottom:375.626400px;}
.y245{bottom:379.200000px;}
.y130{bottom:381.360000px;}
.y82{bottom:382.334160px;}
.y10d{bottom:384.478500px;}
.y24{bottom:384.855000px;}
.yec{bottom:385.320000px;}
.y252{bottom:389.064300px;}
.yca{bottom:389.280000px;}
.y150{bottom:393.240000px;}
.y199{bottom:397.200000px;}
.y10c{bottom:397.693350px;}
.y16e{bottom:401.160000px;}
.y2{bottom:402.348450px;}
.yf5{bottom:403.680000px;}
.ya8{bottom:405.480000px;}
.y10b{bottom:410.908050px;}
.y244{bottom:411.960000px;}
.y81{bottom:414.377760px;}
.y12f{bottom:414.480000px;}
.y23{bottom:415.995000px;}
.y105{bottom:416.402250px;}
.yeb{bottom:418.440000px;}
.y4b{bottom:421.221600px;}
.yc9{bottom:422.400000px;}
.y10a{bottom:424.102500px;}
.y14f{bottom:426.360000px;}
.y104{bottom:427.580250px;}
.y198{bottom:430.320000px;}
.y16d{bottom:434.280000px;}
.yf4{bottom:436.440000px;}
.y109{bottom:436.802850px;}
.ya7{bottom:438.600000px;}
.y103{bottom:438.765150px;}
.y4a{bottom:441.024600px;}
.y243{bottom:445.080000px;}
.y80{bottom:446.421360px;}
.y12e{bottom:447.240000px;}
.ya{bottom:449.801850px;}
.y108{bottom:450.017550px;}
.y102{bottom:450.450600px;}
.yea{bottom:451.200000px;}
.yc8{bottom:455.160000px;}
.y22{bottom:457.275000px;}
.y14e{bottom:459.120000px;}
.y101{bottom:461.615100px;}
.y107{bottom:463.225500px;}
.y197{bottom:463.440000px;}
.y178{bottom:463.536750px;}
.y16c{bottom:467.400000px;}
.yf3{bottom:469.560000px;}
.ya6{bottom:471.360000px;}
.y100{bottom:473.814900px;}
.y25a{bottom:476.380500px;}
.y106{bottom:476.419950px;}
.y242{bottom:477.840000px;}
.y7f{bottom:478.829280px;}
.y210{bottom:480.000000px;}
.y12d{bottom:480.360000px;}
.y9{bottom:482.801850px;}
.ye9{bottom:484.320000px;}
.y49{bottom:486.619800px;}
.yc7{bottom:488.280000px;}
.y14d{bottom:492.240000px;}
.y25c{bottom:492.453000px;}
.y196{bottom:496.200000px;}
.y21{bottom:499.275000px;}
.y16b{bottom:500.160000px;}
.yf2{bottom:502.320000px;}
.ya5{bottom:504.480000px;}
.y48{bottom:505.815600px;}
.y25e{bottom:509.308500px;}
.y7e{bottom:510.872880px;}
.y241{bottom:510.960000px;}
.y12c{bottom:513.120000px;}
.y8{bottom:515.801850px;}
.ye8{bottom:517.080000px;}
.yc6{bottom:521.040000px;}
.y14c{bottom:525.000000px;}
.y47{bottom:525.618600px;}
.y256{bottom:525.754500px;}
.y195{bottom:529.320000px;}
.y16a{bottom:533.280000px;}
.y1dd{bottom:534.000000px;}
.yf1{bottom:535.440000px;}
.ya4{bottom:537.240000px;}
.y258{bottom:540.841500px;}
.y20{bottom:540.900000px;}
.y7d{bottom:543.280800px;}
.y240{bottom:543.720000px;}
.y46{bottom:544.814400px;}
.y12b{bottom:546.240000px;}
.y7{bottom:548.801850px;}
.ye7{bottom:550.200000px;}
.yc5{bottom:554.160000px;}
.y262{bottom:555.928500px;}
.y14b{bottom:558.120000px;}
.y22d{bottom:561.360000px;}
.y194{bottom:562.080000px;}
.y45{bottom:564.617400px;}
.ydf{bottom:565.320000px;}
.y169{bottom:566.040000px;}
.ya3{bottom:570.360000px;}
.y277{bottom:571.015500px;}
.y7c{bottom:575.324400px;}
.y23f{bottom:576.840000px;}
.y12a{bottom:579.000000px;}
.yf0{bottom:579.720000px;}
.y1f{bottom:582.945000px;}
.ye6{bottom:582.960000px;}
.yc4{bottom:586.920000px;}
.y14a{bottom:591.240000px;}
.y5b{bottom:593.820000px;}
.y193{bottom:595.200000px;}
.y168{bottom:599.160000px;}
.ya2{bottom:603.480000px;}
.y7b{bottom:607.368000px;}
.y23e{bottom:609.600000px;}
.y44{bottom:610.212600px;}
.y129{bottom:612.120000px;}
.y1e{bottom:615.570000px;}
.yde{bottom:616.080000px;}
.y264{bottom:617.637000px;}
.yc3{bottom:620.040000px;}
.yef{bottom:621.120000px;}
.y149{bottom:624.000000px;}
.y192{bottom:627.960000px;}
.y43{bottom:629.408400px;}
.y1aa{bottom:631.920000px;}
.ya1{bottom:636.240000px;}
.y7a{bottom:639.775920px;}
.y23d{bottom:642.720000px;}
.y167{bottom:643.440000px;}
.yff{bottom:645.187500px;}
.yee{bottom:645.240000px;}
.y1d{bottom:647.070000px;}
.ydd{bottom:649.200000px;}
.y42{bottom:649.211400px;}
.y27a{bottom:650.802000px;}
.y1b2{bottom:651.000000px;}
.y148{bottom:657.120000px;}
.y138{bottom:660.360000px;}
.y191{bottom:661.080000px;}
.y5a{bottom:662.040000px;}
.yc2{bottom:664.320000px;}
.y1a9{bottom:665.040000px;}
.y41{bottom:668.407200px;}
.ya0{bottom:669.360000px;}
.y79{bottom:671.819520px;}
.y6b{bottom:672.600000px;}
.y23c{bottom:675.840000px;}
.y1c{bottom:677.820000px;}
.y128{bottom:678.000000px;}
.ydc{bottom:681.960000px;}
.y27c{bottom:683.989500px;}
.y40{bottom:688.210200px;}
.y147{bottom:689.880000px;}
.y166{bottom:693.840000px;}
.y1a8{bottom:697.800000px;}
.y9f{bottom:702.120000px;}
.y78{bottom:703.863120px;}
.y6a{bottom:705.360000px;}
.y1b{bottom:708.600000px;}
.y127{bottom:711.120000px;}
.yc1{bottom:715.080000px;}
.y1{bottom:725.146350px;}
.y267{bottom:725.445000px;}
.y1ff{bottom:726.000000px;}
.y158{bottom:726.240000px;}
.y165{bottom:726.960000px;}
.y59{bottom:730.083300px;}
.y1a7{bottom:730.920000px;}
.y3f{bottom:733.805400px;}
.y146{bottom:734.160000px;}
.y9e{bottom:735.240000px;}
.y77{bottom:736.271040px;}
.y69{bottom:738.480000px;}
.y23b{bottom:741.720000px;}
.y126{bottom:743.880000px;}
.yc0{bottom:747.840000px;}
.y1a{bottom:750.225000px;}
.y3e{bottom:753.001200px;}
.y269{bottom:758.610000px;}
.y22c{bottom:759.360000px;}
.y164{bottom:760.080000px;}
.y1a6{bottom:764.040000px;}
.y9d{bottom:768.000000px;}
.y76{bottom:768.314640px;}
.y68{bottom:771.240000px;}
.y3d{bottom:772.804200px;}
.y23a{bottom:774.480000px;}
.y125{bottom:777.000000px;}
.ybf{bottom:780.960000px;}
.y19{bottom:782.850000px;}
.y145{bottom:784.920000px;}
.y26b{bottom:791.775000px;}
.y3c{bottom:792.000000px;}
.y1ab{bottom:792.120000px;}
.y163{bottom:792.840000px;}
.y1a5{bottom:796.800000px;}
.y75{bottom:800.358240px;}
.y9c{bottom:801.120000px;}
.y67{bottom:804.360000px;}
.y239{bottom:807.600000px;}
.y124{bottom:809.760000px;}
.y3b{bottom:811.810200px;}
.ybe{bottom:813.720000px;}
.y18{bottom:815.850000px;}
.y144{bottom:817.680000px;}
.y22e{bottom:825.240000px;}
.y162{bottom:825.960000px;}
.y1a4{bottom:829.920000px;}
.y3a{bottom:831.006000px;}
.y74{bottom:832.766160px;}
.y26d{bottom:833.232000px;}
.y9b{bottom:833.880000px;}
.y66{bottom:837.480000px;}
.y238{bottom:840.360000px;}
.y123{bottom:842.880000px;}
.ybd{bottom:846.840000px;}
.y17{bottom:848.505000px;}
.y143{bottom:850.800000px;}
.y39{bottom:850.809000px;}
.ydb{bottom:858.000000px;}
.y161{bottom:858.720000px;}
.y1a3{bottom:862.680000px;}
.y73{bottom:864.809760px;}
.y9a{bottom:864.833520px;}
.y26f{bottom:866.430000px;}
.y38{bottom:870.004800px;}
.y65{bottom:870.240000px;}
.y237{bottom:873.480000px;}
.y122{bottom:875.640000px;}
.ybc{bottom:879.600000px;}
.y142{bottom:883.560000px;}
.y99{bottom:886.445760px;}
.y37{bottom:889.807800px;}
.y160{bottom:891.840000px;}
.y16{bottom:895.380000px;}
.y1a2{bottom:895.800000px;}
.y72{bottom:896.853360px;}
.y271{bottom:899.595000px;}
.y64{bottom:903.360000px;}
.y236{bottom:906.240000px;}
.yda{bottom:908.760000px;}
.y36{bottom:909.003600px;}
.y98{bottom:909.480720px;}
.ybb{bottom:912.720000px;}
.y15{bottom:922.755000px;}
.y15f{bottom:924.600000px;}
.y35{bottom:925.798200px;}
.y141{bottom:928.200000px;}
.y71{bottom:929.261280px;}
.y97{bottom:932.880000px;}
.y96{bottom:932.890800px;}
.y63{bottom:936.120000px;}
.y235{bottom:939.360000px;}
.y1a1{bottom:940.080000px;}
.y273{bottom:941.050500px;}
.yd9{bottom:941.520000px;}
.y14{bottom:942.255000px;}
.yba{bottom:945.840000px;}
.y95{bottom:955.925760px;}
.y120{bottom:957.000000px;}
.y15e{bottom:957.720000px;}
.y70{bottom:961.304880px;}
.y13{bottom:961.800000px;}
.y62{bottom:969.240000px;}
.y234{bottom:972.480000px;}
.y275{bottom:974.215500px;}
.yd8{bottom:974.640000px;}
.yb9{bottom:978.600000px;}
.y94{bottom:978.960720px;}
.y12{bottom:981.300000px;}
.y15d{bottom:990.480000px;}
.y1b0{bottom:991.500000px;}
.y6f{bottom:993.348480px;}
.y11{bottom:1000.800000px;}
.y34{bottom:1000.801200px;}
.y61{bottom:1002.000000px;}
.y93{bottom:1002.360000px;}
.y92{bottom:1002.381600px;}
.y233{bottom:1005.240000px;}
.yd7{bottom:1007.760000px;}
.yb8{bottom:1011.720000px;}
.y10{bottom:1020.300000px;}
.y33{bottom:1020.604200px;}
.ye5{bottom:1022.880000px;}
.y15c{bottom:1023.600000px;}
.y91{bottom:1025.416560px;}
.y6e{bottom:1025.756400px;}
.y60{bottom:1035.120000px;}
.y232{bottom:1038.360000px;}
.yf{bottom:1039.800000px;}
.yd6{bottom:1040.520000px;}
.yb7{bottom:1044.480000px;}
.y90{bottom:1048.451520px;}
.y140{bottom:1056.000000px;}
.y15b{bottom:1056.720000px;}
.y6d{bottom:1057.800000px;}
.y5f{bottom:1067.880000px;}
.y231{bottom:1071.120000px;}
.y8f{bottom:1071.850800px;}
.yd5{bottom:1073.640000px;}
.yb6{bottom:1077.600000px;}
.y15a{bottom:1089.480000px;}
.y8e{bottom:1094.885760px;}
.y24d{bottom:1095.240000px;}
.y6c{bottom:1100.640000px;}
.y5e{bottom:1101.000000px;}
.y230{bottom:1104.240000px;}
.yd4{bottom:1106.400000px;}
.y8d{bottom:1117.920720px;}
.yb5{bottom:1121.880000px;}
.y159{bottom:1133.760000px;}
.y22f{bottom:1134.120000px;}
.y287{bottom:1136.280000px;}
.y5d{bottom:1136.640000px;}
.y280{bottom:1137.000000px;}
.yd3{bottom:1139.520000px;}
.y291{bottom:1139.880000px;}
.y8c{bottom:1141.320000px;}
.yd{bottom:1165.080000px;}
.y31{bottom:1165.201200px;}
.y30{bottom:1184.397000px;}
.yc{bottom:1184.580000px;}
.yb{bottom:1204.125000px;}
.y2f{bottom:1204.200000px;}
.h39{height:15.087000px;}
.h33{height:15.632796px;}
.h38{height:15.641838px;}
.h3e{height:16.039500px;}
.h3b{height:16.066500px;}
.h3d{height:16.854000px;}
.h3c{height:17.044335px;}
.h34{height:18.827820px;}
.h3a{height:18.838710px;}
.h35{height:19.914420px;}
.h36{height:19.915020px;}
.h37{height:20.524500px;}
.h3f{height:21.067500px;}
.h1b{height:25.686288px;}
.h1c{height:25.731443px;}
.h1e{height:27.830203px;}
.h1f{height:27.892172px;}
.h6{height:32.130000px;}
.h1d{height:32.397204px;}
.h22{height:32.412355px;}
.h1a{height:32.442291px;}
.h25{height:33.000000px;}
.h42{height:33.165000px;}
.h44{height:33.192000px;}
.h18{height:37.920960px;}
.h14{height:39.977280px;}
.h15{height:40.043520px;}
.h3{height:40.878000px;}
.h5{height:41.310000px;}
.h43{height:41.455500px;}
.hc{height:42.208594px;}
.h23{height:43.201555px;}
.h47{height:45.262500px;}
.h28{height:45.308160px;}
.h45{height:46.621500px;}
.h26{height:47.560320px;}
.h31{height:47.617920px;}
.h16{height:47.952000px;}
.ha{height:48.195000px;}
.h46{height:48.958500px;}
.h21{height:49.944805px;}
.hb{height:50.456250px;}
.h24{height:51.696000px;}
.h12{height:54.714240px;}
.h9{height:54.720000px;}
.h8{height:55.080000px;}
.h10{height:57.096000px;}
.h2a{height:61.500000px;}
.h17{height:65.992320px;}
.h11{height:66.231360px;}
.h4{height:72.672000px;}
.h7{height:72.960000px;}
.he{height:87.530385px;}
.hf{height:87.530625px;}
.h2d{height:93.000000px;}
.h30{height:126.000000px;}
.h2c{height:154.500000px;}
.h2b{height:186.000000px;}
.h2f{height:246.000000px;}
.h41{height:246.040500px;}
.h2e{height:276.000000px;}
.h29{height:309.000000px;}
.h27{height:340.500000px;}
.h40{height:398.035500px;}
.h2{height:408.780000px;}
.h20{height:510.300000px;}
.h19{height:511.537500px;}
.h32{height:822.325500px;}
.h13{height:1236.000000px;}
.h0{height:1262.835000px;}
.hd{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:7.606500px;}
.w17{width:9.237000px;}
.w19{width:26.380500px;}
.w12{width:58.981500px;}
.w18{width:68.220000px;}
.w16{width:78.271500px;}
.w15{width:104.326500px;}
.wc{width:132.000000px;}
.w13{width:139.123500px;}
.w14{width:148.360500px;}
.w9{width:159.000000px;}
.wa{width:223.500000px;}
.wd{width:240.000000px;}
.wb{width:298.500000px;}
.we{width:307.500000px;}
.w11{width:330.966000px;}
.w10{width:541.440000px;}
.w8{width:680.400000px;}
.w7{width:682.050000px;}
.w6{width:865.500000px;}
.w4{width:892.500000px;}
.w3{width:892.800000px;}
.w2{width:892.875000px;}
.w0{width:892.914000px;}
.w5{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x79{left:5.840550px;}
.x71{left:8.700000px;}
.xa5{left:14.674650px;}
.x27{left:19.165800px;}
.x12{left:27.000000px;}
.x39{left:28.469550px;}
.x28{left:30.533400px;}
.x73{left:35.160000px;}
.x26{left:36.453900px;}
.x3a{left:46.248300px;}
.x3b{left:54.875400px;}
.xa0{left:57.487200px;}
.x75{left:61.860000px;}
.x3c{left:64.009950px;}
.x69{left:65.694450px;}
.xa4{left:70.913100px;}
.x3d{left:73.158150px;}
.x7a{left:74.604450px;}
.x6a{left:78.333900px;}
.x3e{left:81.785250px;}
.x7b{left:83.298300px;}
.xa1{left:87.333750px;}
.x3f{left:90.940050px;}
.x7c{left:91.992150px;}
.x1{left:95.460750px;}
.x40{left:99.567300px;}
.x7d{left:100.686000px;}
.xa3{left:104.620200px;}
.x10{left:106.200000px;}
.x7e{left:109.651500px;}
.x3{left:110.662500px;}
.x7f{left:118.345350px;}
.xb{left:122.983800px;}
.x11{left:124.200150px;}
.x80{left:126.767400px;}
.x2a{left:128.107800px;}
.x2b{left:136.376250px;}
.x2c{left:139.691850px;}
.x5{left:141.600000px;}
.x29{left:143.934300px;}
.x41{left:149.875200px;}
.xc{left:152.998200px;}
.x76{left:159.300000px;}
.x42{left:160.552500px;}
.x81{left:161.848350px;}
.x13{left:171.387150px;}
.xa{left:174.582000px;}
.x82{left:179.236050px;}
.x43{left:180.844800px;}
.x44{left:191.014650px;}
.x6c{left:192.051150px;}
.x6b{left:195.176400px;}
.x84{left:196.623750px;}
.x45{left:201.671700px;}
.x9f{left:204.060000px;}
.x85{left:205.317600px;}
.x14{left:206.459850px;}
.x78{left:207.657000px;}
.xd{left:210.588450px;}
.x15{left:212.790150px;}
.x86{left:217.135650px;}
.x5c{left:226.428900px;}
.x87{left:234.523350px;}
.x74{left:238.500000px;}
.x2e{left:240.700200px;}
.x5f{left:243.054150px;}
.x2f{left:244.651800px;}
.x16{left:247.862850px;}
.x2d{left:251.404500px;}
.x60{left:254.056650px;}
.x22{left:256.411650px;}
.x20{left:258.150600px;}
.xe{left:260.640000px;}
.x46{left:262.501500px;}
.x72{left:265.500000px;}
.x21{left:269.457300px;}
.x24{left:273.293850px;}
.x23{left:274.295250px;}
.x88{left:277.992600px;}
.x47{left:283.328250px;}
.x25{left:286.034850px;}
.x48{left:293.471100px;}
.x89{left:295.402800px;}
.x49{left:303.640950px;}
.x6{left:304.785000px;}
.x5e{left:306.328650px;}
.x6d{left:308.967900px;}
.x62{left:310.925400px;}
.x8a{left:312.790500px;}
.x1f{left:314.534850px;}
.x61{left:316.068900px;}
.xf{left:318.060000px;}
.x5d{left:322.211400px;}
.x8b{left:330.178200px;}
.x8c{left:338.872050px;}
.x8d{left:347.565750px;}
.x31{left:352.000200px;}
.x83{left:353.311500px;}
.x32{left:354.659400px;}
.x8e{left:356.259600px;}
.x30{left:358.888350px;}
.x8f{left:364.953450px;}
.x9{left:367.174800px;}
.x4a{left:369.443850px;}
.x90{left:373.647300px;}
.x4b{left:380.121300px;}
.x91{left:382.341150px;}
.x64{left:383.791650px;}
.x4c{left:390.270750px;}
.x63{left:394.348650px;}
.x65{left:396.920400px;}
.x4d{left:400.433850px;}
.x66{left:403.400400px;}
.x92{left:408.422550px;}
.x4e{left:410.583450px;}
.x93{left:417.116400px;}
.x94{left:425.844300px;}
.x95{left:434.538000px;}
.x96{left:443.231850px;}
.x97{left:451.925700px;}
.x35{left:459.483900px;}
.x34{left:460.688400px;}
.x36{left:462.143100px;}
.x33{left:466.372200px;}
.x98{left:469.313400px;}
.x7{left:473.973000px;}
.x4f{left:477.590850px;}
.x99{left:486.702280px;}
.x50{left:487.740300px;}
.x2{left:489.529200px;}
.x9a{left:495.397309px;}
.x51{left:498.410850px;}
.x9b{left:504.086633px;}
.x67{left:507.107400px;}
.x52{left:508.560450px;}
.x9c{left:512.781663px;}
.x1a{left:514.650150px;}
.x1d{left:516.341700px;}
.x9d{left:521.476693px;}
.x1c{left:524.867400px;}
.x1b{left:528.473850px;}
.x9e{left:530.171722px;}
.x70{left:533.270400px;}
.x6f{left:535.997400px;}
.x1e{left:539.043000px;}
.x68{left:546.162900px;}
.x19{left:550.701450px;}
.x6e{left:556.672650px;}
.x38{left:558.239100px;}
.x37{left:562.792950px;}
.xa2{left:564.574500px;}
.x53{left:569.647200px;}
.x8{left:574.768200px;}
.x54{left:579.810300px;}
.x55{left:590.467350px;}
.x56{left:600.630450px;}
.x57{left:610.786800px;}
.x58{left:620.949900px;}
.x59{left:631.606950px;}
.x5a{left:724.443450px;}
.x17{left:734.058750px;}
.xa6{left:759.960300px;}
.x77{left:780.120000px;}
.x4{left:785.580000px;}
.x5b{left:786.960000px;}
.x18{left:788.400750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:0.965867pt;}
.ls0{letter-spacing:-5.280000pt;}
.ls71{letter-spacing:-3.850116pt;}
.ls5f{letter-spacing:-3.816102pt;}
.ls5e{letter-spacing:-3.810799pt;}
.ls17{letter-spacing:-2.845867pt;}
.ls69{letter-spacing:-2.725363pt;}
.ls68{letter-spacing:-1.860169pt;}
.ls15{letter-spacing:-1.717333pt;}
.ls13{letter-spacing:-1.472000pt;}
.lsc{letter-spacing:-1.373867pt;}
.ls16{letter-spacing:-1.177600pt;}
.lsd{letter-spacing:-1.030400pt;}
.ls60{letter-spacing:-0.974362pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls66{letter-spacing:-0.951714pt;}
.lsa{letter-spacing:-0.932267pt;}
.ls6d{letter-spacing:-0.908454pt;}
.ls6b{letter-spacing:-0.864896pt;}
.lsb{letter-spacing:-0.834133pt;}
.lse{letter-spacing:-0.736000pt;}
.ls4{letter-spacing:-0.704000pt;}
.ls70{letter-spacing:-0.648896pt;}
.ls14{letter-spacing:-0.637867pt;}
.ls9{letter-spacing:-0.588800pt;}
.ls5a{letter-spacing:-0.389120pt;}
.ls84{letter-spacing:-0.296704pt;}
.ls50{letter-spacing:-0.283008pt;}
.ls5c{letter-spacing:-0.257280pt;}
.ls51{letter-spacing:-0.231552pt;}
.ls6c{letter-spacing:-0.230639pt;}
.ls67{letter-spacing:-0.216299pt;}
.ls88{letter-spacing:-0.211968pt;}
.ls74{letter-spacing:-0.205824pt;}
.ls5b{letter-spacing:-0.189696pt;}
.ls62{letter-spacing:-0.189459pt;}
.ls75{letter-spacing:-0.188672pt;}
.ls89{letter-spacing:-0.182528pt;}
.ls52{letter-spacing:-0.180096pt;}
.ls18{letter-spacing:-0.170240pt;}
.ls4d{letter-spacing:-0.164864pt;}
.ls86{letter-spacing:-0.158976pt;}
.ls49{letter-spacing:-0.153088pt;}
.ls87{letter-spacing:-0.147200pt;}
.ls99{letter-spacing:-0.145792pt;}
.lsa1{letter-spacing:-0.142083pt;}
.ls9f{letter-spacing:-0.142001pt;}
.ls4a{letter-spacing:-0.141312pt;}
.ls3c{letter-spacing:-0.135424pt;}
.ls6a{letter-spacing:-0.129779pt;}
.ls3b{letter-spacing:-0.129536pt;}
.ls4c{letter-spacing:-0.123648pt;}
.ls38{letter-spacing:-0.117760pt;}
.ls3a{letter-spacing:-0.111872pt;}
.ls39{letter-spacing:-0.100096pt;}
.ls4b{letter-spacing:-0.094208pt;}
.ls7e{letter-spacing:-0.088320pt;}
.ls3d{letter-spacing:-0.082432pt;}
.ls83{letter-spacing:-0.076544pt;}
.ls7f{letter-spacing:-0.070656pt;}
.ls85{letter-spacing:-0.068608pt;}
.lsa4{letter-spacing:-0.060858pt;}
.ls82{letter-spacing:-0.058880pt;}
.ls80{letter-spacing:-0.052992pt;}
.ls4e{letter-spacing:-0.047104pt;}
.ls57{letter-spacing:-0.032000pt;}
.ls54{letter-spacing:-0.025600pt;}
.ls53{letter-spacing:-0.019200pt;}
.ls81{letter-spacing:-0.017664pt;}
.ls1e{letter-spacing:-0.012800pt;}
.ls4f{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9d{letter-spacing:0.006086pt;}
.ls1d{letter-spacing:0.006400pt;}
.ls1b{letter-spacing:0.012800pt;}
.ls47{letter-spacing:0.019200pt;}
.ls19{letter-spacing:0.025600pt;}
.ls1f{letter-spacing:0.032000pt;}
.ls59{letter-spacing:0.038400pt;}
.ls1a{letter-spacing:0.044800pt;}
.ls10{letter-spacing:0.049067pt;}
.ls56{letter-spacing:0.051200pt;}
.ls9b{letter-spacing:0.070441pt;}
.lsa0{letter-spacing:0.081143pt;}
.lsa2{letter-spacing:0.081190pt;}
.ls37{letter-spacing:0.103936pt;}
.lsb1{letter-spacing:0.126208pt;}
.ls3{letter-spacing:0.138667pt;}
.lsb0{letter-spacing:0.141056pt;}
.lsa6{letter-spacing:0.148480pt;}
.lsab{letter-spacing:0.155904pt;}
.lsa3{letter-spacing:0.162287pt;}
.lsad{letter-spacing:0.170752pt;}
.lsa5{letter-spacing:0.182573pt;}
.lsb2{letter-spacing:0.185600pt;}
.lsaf{letter-spacing:0.193024pt;}
.ls1c{letter-spacing:0.215296pt;}
.lsac{letter-spacing:0.222720pt;}
.ls9e{letter-spacing:0.230144pt;}
.ls5{letter-spacing:0.240000pt;}
.lsa7{letter-spacing:0.244992pt;}
.lsae{letter-spacing:0.259840pt;}
.lsa8{letter-spacing:0.274688pt;}
.lsaa{letter-spacing:0.282112pt;}
.ls7{letter-spacing:0.294400pt;}
.ls61{letter-spacing:0.324787pt;}
.ls5d{letter-spacing:0.346918pt;}
.ls11{letter-spacing:0.392533pt;}
.ls55{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.629333pt;}
.ls12{letter-spacing:0.637867pt;}
.ls6e{letter-spacing:0.692156pt;}
.ls72{letter-spacing:0.735415pt;}
.ls6f{letter-spacing:0.821935pt;}
.lsf{letter-spacing:0.932267pt;}
.ls6{letter-spacing:1.190400pt;}
.ls73{letter-spacing:1.408000pt;}
.ls43{letter-spacing:1.413120pt;}
.ls48{letter-spacing:1.472000pt;}
.ls46{letter-spacing:1.484800pt;}
.ls8f{letter-spacing:1.728000pt;}
.ls94{letter-spacing:1.856000pt;}
.ls93{letter-spacing:1.888000pt;}
.ls90{letter-spacing:2.329600pt;}
.ls91{letter-spacing:2.361600pt;}
.ls92{letter-spacing:2.419200pt;}
.ls8a{letter-spacing:2.720000pt;}
.ls79{letter-spacing:3.232000pt;}
.ls76{letter-spacing:3.443200pt;}
.ls8c{letter-spacing:3.955200pt;}
.ls97{letter-spacing:4.032000pt;}
.ls8e{letter-spacing:4.544000pt;}
.ls8d{letter-spacing:4.550400pt;}
.ls40{letter-spacing:5.063680pt;}
.ls77{letter-spacing:5.248000pt;}
.ls7b{letter-spacing:5.632000pt;}
.ls7a{letter-spacing:5.670400pt;}
.ls8b{letter-spacing:5.747200pt;}
.ls64{letter-spacing:6.067200pt;}
.ls65{letter-spacing:6.105600pt;}
.ls98{letter-spacing:6.656000pt;}
.ls96{letter-spacing:7.347200pt;}
.ls58{letter-spacing:7.375360pt;}
.ls63{letter-spacing:7.609600pt;}
.ls2a{letter-spacing:7.878144pt;}
.ls42{letter-spacing:7.884032pt;}
.ls30{letter-spacing:7.889920pt;}
.ls29{letter-spacing:7.901696pt;}
.ls2b{letter-spacing:7.907584pt;}
.ls44{letter-spacing:7.913472pt;}
.ls32{letter-spacing:7.919360pt;}
.ls34{letter-spacing:7.925248pt;}
.ls2e{letter-spacing:7.931136pt;}
.ls24{letter-spacing:8.773120pt;}
.ls21{letter-spacing:9.008640pt;}
.ls35{letter-spacing:9.832960pt;}
.ls78{letter-spacing:10.329600pt;}
.ls26{letter-spacing:11.010560pt;}
.ls22{letter-spacing:11.187200pt;}
.ls41{letter-spacing:11.363840pt;}
.ls25{letter-spacing:11.481600pt;}
.ls31{letter-spacing:11.717120pt;}
.ls3e{letter-spacing:11.893760pt;}
.ls28{letter-spacing:12.082176pt;}
.ls3f{letter-spacing:12.247040pt;}
.ls2f{letter-spacing:12.541440pt;}
.ls45{letter-spacing:12.659200pt;}
.ls36{letter-spacing:12.776960pt;}
.ls2d{letter-spacing:12.894720pt;}
.ls27{letter-spacing:13.601280pt;}
.ls2c{letter-spacing:13.719040pt;}
.ls33{letter-spacing:14.131200pt;}
.ls9a{letter-spacing:19.178024pt;}
.ls95{letter-spacing:24.633600pt;}
.ls9c{letter-spacing:43.327789pt;}
.ls7c{letter-spacing:52.638720pt;}
.ls7d{letter-spacing:62.707200pt;}
.ls20{letter-spacing:113.620736pt;}
.ls23{letter-spacing:144.314880pt;}
.lsa9{letter-spacing:750.208000pt;}
.ws4{word-spacing:-48.000000pt;}
.ws66{word-spacing:-47.121246pt;}
.ws60{word-spacing:-22.849766pt;}
.ws3{word-spacing:-21.824000pt;}
.ws57{word-spacing:-19.381760pt;}
.ws5d{word-spacing:-19.235968pt;}
.ws35{word-spacing:-19.201664pt;}
.ws5e{word-spacing:-19.193088pt;}
.ws34{word-spacing:-19.150208pt;}
.ws38{word-spacing:-19.124480pt;}
.ws33{word-spacing:-19.098752pt;}
.wsa{word-spacing:-18.203733pt;}
.ws8{word-spacing:-17.320533pt;}
.ws9{word-spacing:-17.271467pt;}
.ws73{word-spacing:-17.052928pt;}
.ws74{word-spacing:-17.038080pt;}
.ws77{word-spacing:-17.008384pt;}
.ws24{word-spacing:-16.993536pt;}
.ws75{word-spacing:-16.948992pt;}
.ws76{word-spacing:-16.919296pt;}
.ws28{word-spacing:-16.882176pt;}
.ws6{word-spacing:-16.780800pt;}
.wsb{word-spacing:-16.339200pt;}
.ws7{word-spacing:-15.750400pt;}
.ws1{word-spacing:-14.762667pt;}
.ws5c{word-spacing:-14.508800pt;}
.ws3f{word-spacing:-14.502400pt;}
.ws27{word-spacing:-14.496000pt;}
.ws25{word-spacing:-14.489600pt;}
.ws32{word-spacing:-14.483200pt;}
.ws36{word-spacing:-14.476800pt;}
.ws40{word-spacing:-14.470400pt;}
.ws4d{word-spacing:-14.464000pt;}
.ws3c{word-spacing:-14.457600pt;}
.ws26{word-spacing:-14.451200pt;}
.ws3d{word-spacing:-14.444800pt;}
.ws3e{word-spacing:-14.438400pt;}
.ws4c{word-spacing:-14.432000pt;}
.wsc{word-spacing:-14.425600pt;}
.ws5{word-spacing:-13.516800pt;}
.ws54{word-spacing:-13.306880pt;}
.ws5a{word-spacing:-13.289216pt;}
.ws53{word-spacing:-13.253888pt;}
.ws50{word-spacing:-13.236224pt;}
.ws56{word-spacing:-13.230336pt;}
.ws4f{word-spacing:-13.218560pt;}
.ws55{word-spacing:-13.206784pt;}
.ws59{word-spacing:-13.183232pt;}
.ws4e{word-spacing:-13.177344pt;}
.ws58{word-spacing:-13.147904pt;}
.ws51{word-spacing:-13.142016pt;}
.ws46{word-spacing:-11.704926pt;}
.ws47{word-spacing:-11.474287pt;}
.ws2f{word-spacing:-11.363840pt;}
.ws2e{word-spacing:-11.281408pt;}
.ws31{word-spacing:-11.269632pt;}
.ws2b{word-spacing:-11.263744pt;}
.ws2a{word-spacing:-11.251968pt;}
.ws29{word-spacing:-11.246080pt;}
.ws30{word-spacing:-11.240192pt;}
.ws2c{word-spacing:-11.234304pt;}
.ws2d{word-spacing:-11.228416pt;}
.ws37{word-spacing:-10.992640pt;}
.ws5b{word-spacing:-10.695936pt;}
.ws4a{word-spacing:-9.603661pt;}
.ws3b{word-spacing:-9.548305pt;}
.ws49{word-spacing:-9.473882pt;}
.ws39{word-spacing:-9.149973pt;}
.ws3a{word-spacing:-8.790820pt;}
.ws44{word-spacing:-8.781726pt;}
.ws45{word-spacing:-8.651947pt;}
.ws42{word-spacing:-8.565427pt;}
.ws4b{word-spacing:-8.132830pt;}
.ws48{word-spacing:-7.873271pt;}
.ws41{word-spacing:-7.830012pt;}
.ws43{word-spacing:-6.056363pt;}
.ws6d{word-spacing:-3.876842pt;}
.ws72{word-spacing:-3.854315pt;}
.ws70{word-spacing:-3.834029pt;}
.ws6c{word-spacing:-3.795651pt;}
.ws65{word-spacing:-3.793457pt;}
.ws6f{word-spacing:-3.677828pt;}
.ws6a{word-spacing:-3.673866pt;}
.ws6e{word-spacing:-3.671742pt;}
.ws71{word-spacing:-3.610884pt;}
.ws6b{word-spacing:-3.323932pt;}
.ws1b{word-spacing:-3.238400pt;}
.ws19{word-spacing:-2.944000pt;}
.ws1c{word-spacing:-2.698667pt;}
.ws1d{word-spacing:-1.668267pt;}
.wse{word-spacing:-1.226667pt;}
.ws14{word-spacing:-1.128533pt;}
.ws10{word-spacing:-0.981333pt;}
.ws1a{word-spacing:-0.834133pt;}
.ws17{word-spacing:-0.588800pt;}
.ws22{word-spacing:-0.085120pt;}
.ws52{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:0.441600pt;}
.ws23{word-spacing:0.510720pt;}
.ws16{word-spacing:0.588800pt;}
.ws1f{word-spacing:0.637867pt;}
.ws18{word-spacing:0.834133pt;}
.ws11{word-spacing:0.883200pt;}
.wsd{word-spacing:0.960000pt;}
.ws21{word-spacing:0.981333pt;}
.ws13{word-spacing:1.030400pt;}
.ws15{word-spacing:1.128533pt;}
.wsf{word-spacing:1.226667pt;}
.ws1e{word-spacing:1.521067pt;}
.ws12{word-spacing:1.668267pt;}
.ws0{word-spacing:4.800000pt;}
.ws5f{word-spacing:5.647351pt;}
.ws69{word-spacing:39.534332pt;}
.ws64{word-spacing:41.990040pt;}
.ws63{word-spacing:70.003704pt;}
.ws62{word-spacing:93.187628pt;}
.ws67{word-spacing:214.180417pt;}
.ws68{word-spacing:759.644592pt;}
.ws61{word-spacing:882.165583pt;}
._3b{margin-left:-43.327789pt;}
._12{margin-left:-12.928000pt;}
._f{margin-left:-10.227456pt;}
._e{margin-left:-7.772160pt;}
._11{margin-left:-6.011648pt;}
._9{margin-left:-4.635520pt;}
._1{margin-left:-3.124800pt;}
._8{margin-left:-2.195413pt;}
._2{margin-left:-1.305600pt;}
._3{width:0.933333pt;}
._4{width:2.142933pt;}
._5{width:3.075200pt;}
._a{width:4.579307pt;}
._b{width:5.759787pt;}
._c{width:7.276800pt;}
._d{width:8.198400pt;}
._0{width:9.600000pt;}
._18{width:11.001600pt;}
._16{width:12.121600pt;}
._13{width:13.216000pt;}
._22{width:14.366720pt;}
._14{width:15.360000pt;}
._15{width:16.256000pt;}
._17{width:17.388800pt;}
._1c{width:18.780480pt;}
._1f{width:20.144640pt;}
._19{width:21.248000pt;}
._24{width:23.434240pt;}
._25{width:24.422400pt;}
._1d{width:27.438080pt;}
._23{width:28.674560pt;}
._21{width:29.616640pt;}
._1b{width:31.795200pt;}
._28{width:33.190400pt;}
._1a{width:38.164480pt;}
._34{width:41.919066pt;}
._47{width:43.327789pt;}
._3a{width:44.813183pt;}
._39{width:46.258538pt;}
._2d{width:48.696649pt;}
._1e{width:62.118400pt;}
._20{width:63.060480pt;}
._2b{width:96.981085pt;}
._2e{width:101.802944pt;}
._10{width:144.361984pt;}
._4c{width:155.415668pt;}
._35{width:163.263277pt;}
._43{width:179.532742pt;}
._52{width:227.913340pt;}
._26{width:274.720000pt;}
._27{width:308.300800pt;}
._4e{width:374.896007pt;}
._50{width:381.035320pt;}
._3c{width:392.071917pt;}
._4b{width:450.534699pt;}
._44{width:461.661071pt;}
._38{width:466.631109pt;}
._2c{width:470.904122pt;}
._31{width:508.540458pt;}
._41{width:516.973325pt;}
._46{width:522.765366pt;}
._30{width:528.217748pt;}
._51{width:554.421035pt;}
._3d{width:571.852648pt;}
._2a{width:591.509652pt;}
._49{width:602.907521pt;}
._40{width:616.988701pt;}
._4a{width:620.165117pt;}
._36{width:631.627792pt;}
._37{width:642.985598pt;}
._45{width:657.593701pt;}
._4f{width:660.262970pt;}
._48{width:661.858216pt;}
._53{width:664.065150pt;}
._33{width:678.799737pt;}
._2f{width:683.011892pt;}
._3e{width:698.571152pt;}
._3f{width:705.691491pt;}
._54{width:751.234560pt;}
._29{width:753.536000pt;}
._42{width:773.405714pt;}
._4d{width:820.610926pt;}
._32{width:920.006029pt;}
._7{width:1025.915733pt;}
._6{width:1185.941333pt;}
.fs1a{font-size:18.364267pt;}
.fs18{font-size:20.285867pt;}
.fs19{font-size:20.297600pt;}
.fs13{font-size:27.065600pt;}
.fs14{font-size:27.125867pt;}
.fs10{font-size:34.282667pt;}
.fs11{font-size:34.342933pt;}
.fs3{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs16{font-size:43.259733pt;}
.fs12{font-size:43.304533pt;}
.fsf{font-size:43.364800pt;}
.fs1{font-size:48.000000pt;}
.fse{font-size:48.640000pt;}
.fs6{font-size:49.066667pt;}
.fsb{font-size:53.760000pt;}
.fs5{font-size:56.000000pt;}
.fsc{font-size:56.320000pt;}
.fs17{font-size:57.659733pt;}
.fsa{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs15{font-size:66.659733pt;}
.fs9{font-size:74.240000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:85.333333pt;}
.fsd{font-size:85.760000pt;}
.fs0{font-size:480.000000pt;}
.y0{bottom:0.000000pt;}
.y27b{bottom:4.349733pt;}
.y279{bottom:6.766133pt;}
.y26a{bottom:7.128800pt;}
.y27e{bottom:7.732800pt;}
.y27d{bottom:8.095067pt;}
.y27f{bottom:8.215600pt;}
.y268{bottom:8.337200pt;}
.y257{bottom:8.819733pt;}
.y259{bottom:8.820000pt;}
.y263{bottom:8.820267pt;}
.y25b{bottom:8.941067pt;}
.y25f{bottom:9.181733pt;}
.y11e{bottom:9.307467pt;}
.y11f{bottom:9.472933pt;}
.y25d{bottom:9.545333pt;}
.y26e{bottom:10.269200pt;}
.y255{bottom:10.994933pt;}
.y270{bottom:11.357333pt;}
.y261{bottom:11.477867pt;}
.y276{bottom:11.720000pt;}
.y274{bottom:11.720133pt;}
.y278{bottom:12.565867pt;}
.y1c7{bottom:12.800000pt;}
.y20f{bottom:12.996693pt;}
.y1f3{bottom:13.044907pt;}
.y21c{bottom:13.102080pt;}
.y1fe{bottom:13.113600pt;}
.y1de{bottom:13.121280pt;}
.y1f9{bottom:13.168213pt;}
.y1d3{bottom:13.280000pt;}
.y1ea{bottom:13.632853pt;}
.y26c{bottom:13.773733pt;}
.y1b1{bottom:14.133333pt;}
.y225{bottom:14.400000pt;}
.y272{bottom:14.740133pt;}
.y1be{bottom:15.360000pt;}
.y1f6{bottom:26.934613pt;}
.y221{bottom:28.802560pt;}
.y254{bottom:38.178430pt;}
.y253{bottom:38.179200pt;}
.y20e{bottom:39.875413pt;}
.y21b{bottom:39.980800pt;}
.y1fd{bottom:39.992320pt;}
.y1c6{bottom:40.000000pt;}
.y1f8{bottom:40.046933pt;}
.y1d2{bottom:40.160000pt;}
.y1f2{bottom:40.247467pt;}
.y1e9{bottom:40.511573pt;}
.y1e4{bottom:41.817173pt;}
.y224{bottom:41.907200pt;}
.y1bd{bottom:42.240000pt;}
.y32{bottom:51.199467pt;}
.y5c{bottom:51.626667pt;}
.ye{bottom:51.700000pt;}
.yb4{bottom:51.946667pt;}
.y1f5{bottom:53.813333pt;}
.y1ee{bottom:54.667947pt;}
.y21e{bottom:55.680000pt;}
.y220{bottom:55.681280pt;}
.y1fc{bottom:66.871040pt;}
.y1d1{bottom:67.040000pt;}
.y20d{bottom:67.077973pt;}
.y21a{bottom:67.183360pt;}
.y1c5{bottom:67.520000pt;}
.y1f7{bottom:67.573333pt;}
.y1e8{bottom:67.714133pt;}
.y1f1{bottom:67.773867pt;}
.y1ec{bottom:68.106667pt;}
.y1e3{bottom:68.695893pt;}
.y1bc{bottom:69.120000pt;}
.y223{bottom:69.433600pt;}
.y18d{bottom:72.918667pt;}
.yb3{bottom:81.066667pt;}
.y203{bottom:81.501013pt;}
.y1ed{bottom:81.546667pt;}
.y214{bottom:81.602560pt;}
.y28d{bottom:82.037547pt;}
.y1e0{bottom:82.133333pt;}
.ye4{bottom:82.346667pt;}
.y8b{bottom:82.532267pt;}
.y21f{bottom:82.560000pt;}
.yd2{bottom:85.866667pt;}
.y1f4{bottom:89.333333pt;}
.y22b{bottom:89.386667pt;}
.y290{bottom:90.026667pt;}
.y1a0{bottom:93.226667pt;}
.y1d5{bottom:93.920000pt;}
.y266{bottom:94.017733pt;}
.y1d0{bottom:94.240000pt;}
.y20c{bottom:94.280533pt;}
.y1fb{bottom:94.397440pt;}
.y1c4{bottom:94.400000pt;}
.y219{bottom:94.709760pt;}
.y206{bottom:94.935893pt;}
.yfe{bottom:95.146667pt;}
.y1e7{bottom:95.240533pt;}
.y1f0{bottom:95.300267pt;}
.y283{bottom:95.466667pt;}
.y1e2{bottom:95.574613pt;}
.y1bb{bottom:96.000000pt;}
.y176{bottom:96.426667pt;}
.y222{bottom:96.960000pt;}
.y1dc{bottom:97.066667pt;}
.y297{bottom:98.346667pt;}
.y28b{bottom:98.986667pt;}
.y294{bottom:99.306667pt;}
.yb2{bottom:100.586667pt;}
.y24c{bottom:102.506667pt;}
.y186{bottom:102.678667pt;}
.y157{bottom:104.746667pt;}
.y24e{bottom:107.306667pt;}
.y13f{bottom:108.266667pt;}
.y202{bottom:108.379733pt;}
.y17f{bottom:108.450667pt;}
.y211{bottom:108.480000pt;}
.y213{bottom:108.481280pt;}
.y28f{bottom:109.546667pt;}
.y28c{bottom:110.193067pt;}
.y8a{bottom:111.015467pt;}
.ye3{bottom:111.786667pt;}
.y282{bottom:114.986667pt;}
.yd1{bottom:115.306667pt;}
.y250{bottom:117.866667pt;}
.y28a{bottom:118.506667pt;}
.y22a{bottom:118.826667pt;}
.y185{bottom:118.890667pt;}
.y1d4{bottom:120.800000pt;}
.y1cf{bottom:121.440000pt;}
.y20b{bottom:121.483093pt;}
.y218{bottom:121.588480pt;}
.y1fa{bottom:121.600000pt;}
.y205{bottom:121.814613pt;}
.y19f{bottom:122.346667pt;}
.y1e1{bottom:122.453333pt;}
.y1e6{bottom:122.766933pt;}
.y1ef{bottom:122.826667pt;}
.yfd{bottom:124.266667pt;}
.y17e{bottom:125.118667pt;}
.y1c3{bottom:125.120000pt;}
.y58{bottom:125.896533pt;}
.y1db{bottom:126.186667pt;}
.y1ba{bottom:126.720000pt;}
.y296{bottom:127.466667pt;}
.yb1{bottom:128.106667pt;}
.y293{bottom:128.746667pt;}
.y28e{bottom:129.066667pt;}
.y184{bottom:131.052667pt;}
.y24b{bottom:131.946667pt;}
.y137{bottom:133.866667pt;}
.y281{bottom:134.506667pt;}
.y286{bottom:134.826667pt;}
.y201{bottom:135.258453pt;}
.y212{bottom:135.360000pt;}
.y17d{bottom:136.830667pt;}
.y13e{bottom:137.386667pt;}
.y89{bottom:139.498667pt;}
.ye2{bottom:140.906667pt;}
.y2e{bottom:141.706667pt;}
.y183{bottom:142.770667pt;}
.y57{bottom:143.499200pt;}
.y289{bottom:143.786667pt;}
.y288{bottom:144.106667pt;}
.yd0{bottom:144.426667pt;}
.yb0{bottom:145.706667pt;}
.y1af{bottom:148.266667pt;}
.y1ce{bottom:148.320000pt;}
.y204{bottom:148.693333pt;}
.y20a{bottom:149.009493pt;}
.y217{bottom:149.114880pt;}
.y177{bottom:149.344000pt;}
.y175{bottom:149.546667pt;}
.y1e5{bottom:150.293333pt;}
.y19e{bottom:151.786667pt;}
.y1c2{bottom:152.000000pt;}
.y24f{bottom:152.426667pt;}
.y292{bottom:152.746667pt;}
.y1b9{bottom:153.600000pt;}
.yfc{bottom:153.706667pt;}
.y1da{bottom:155.626667pt;}
.y182{bottom:155.970667pt;}
.y295{bottom:156.906667pt;}
.y285{bottom:157.226667pt;}
.y56{bottom:160.562133pt;}
.y2d{bottom:161.066667pt;}
.y200{bottom:161.813333pt;}
.y136{bottom:163.306667pt;}
.yaf{bottom:165.226667pt;}
.y265{bottom:165.421867pt;}
.y13d{bottom:166.826667pt;}
.y88{bottom:168.305707pt;}
.ye1{bottom:170.346667pt;}
.y1eb{bottom:172.000000pt;}
.y284{bottom:172.266667pt;}
.y156{bottom:173.866667pt;}
.y1cd{bottom:175.520000pt;}
.y209{bottom:175.888213pt;}
.y216{bottom:175.993600pt;}
.y1ae{bottom:177.386667pt;}
.y229{bottom:177.706667pt;}
.y181{bottom:178.038667pt;}
.y55{bottom:178.164800pt;}
.y2c{bottom:178.400000pt;}
.y1c1{bottom:179.200000pt;}
.y1b8{bottom:180.480000pt;}
.y174{bottom:180.906667pt;}
.yfb{bottom:183.146667pt;}
.ycf{bottom:183.786667pt;}
.yae{bottom:184.746667pt;}
.y1d9{bottom:185.066667pt;}
.y24a{bottom:190.506667pt;}
.y135{bottom:192.426667pt;}
.y54{bottom:195.227733pt;}
.y13c{bottom:195.946667pt;}
.y87{bottom:196.788907pt;}
.y2b{bottom:198.400000pt;}
.y190{bottom:199.332667pt;}
.ye0{bottom:199.466667pt;}
.y180{bottom:200.118667pt;}
.y208{bottom:202.766933pt;}
.y155{bottom:202.986667pt;}
.y215{bottom:203.520000pt;}
.y251{bottom:204.746667pt;}
.y18c{bottom:206.070667pt;}
.y1cc{bottom:206.240000pt;}
.y1c0{bottom:206.720000pt;}
.y1ad{bottom:206.826667pt;}
.y1b7{bottom:207.360000pt;}
.y173{bottom:210.346667pt;}
.yfa{bottom:212.266667pt;}
.y18f{bottom:212.400667pt;}
.y53{bottom:212.830400pt;}
.yad{bottom:213.866667pt;}
.y1d8{bottom:214.186667pt;}
.y228{bottom:216.755947pt;}
.y18b{bottom:219.138667pt;}
.y249{bottom:219.626667pt;}
.y19d{bottom:220.266667pt;}
.y134{bottom:221.866667pt;}
.y260{bottom:222.990667pt;}
.y2a{bottom:225.066667pt;}
.y86{bottom:225.272107pt;}
.y13b{bottom:225.386667pt;}
.y18e{bottom:225.462667pt;}
.yce{bottom:228.906667pt;}
.y52{bottom:229.893333pt;}
.y207{bottom:230.293333pt;}
.y18a{bottom:232.200667pt;}
.y154{bottom:232.426667pt;}
.y1cb{bottom:233.120000pt;}
.y1bf{bottom:233.600000pt;}
.y1b6{bottom:234.240000pt;}
.y1ac{bottom:235.946667pt;}
.y17c{bottom:237.210667pt;}
.y172{bottom:239.466667pt;}
.y11d{bottom:240.383467pt;}
.y116{bottom:240.984933pt;}
.y112{bottom:241.153333pt;}
.yf9{bottom:241.706667pt;}
.y29{bottom:242.400000pt;}
.yac{bottom:243.306667pt;}
.y119{bottom:246.488267pt;}
.y51{bottom:247.496000pt;}
.y17b{bottom:248.928667pt;}
.y248{bottom:249.066667pt;}
.y11c{bottom:250.776667pt;}
.y133{bottom:250.986667pt;}
.y115{bottom:251.360000pt;}
.y111{bottom:251.546533pt;}
.y1d7{bottom:253.546667pt;}
.y85{bottom:254.079147pt;}
.y13a{bottom:254.506667pt;}
.y118{bottom:256.418267pt;}
.ycd{bottom:258.026667pt;}
.y6{bottom:258.955067pt;}
.y28{bottom:259.733333pt;}
.y1ca{bottom:260.000000pt;}
.y1c9{bottom:260.640000pt;}
.y11b{bottom:260.700667pt;}
.y1b5{bottom:261.120000pt;}
.y114{bottom:261.302133pt;}
.y110{bottom:261.482533pt;}
.y153{bottom:261.866667pt;}
.y50{bottom:264.558933pt;}
.y19c{bottom:265.386667pt;}
.y17a{bottom:265.590667pt;}
.y227{bottom:266.346667pt;}
.y117{bottom:267.256533pt;}
.y171{bottom:268.906667pt;}
.yf8{bottom:270.826667pt;}
.y11a{bottom:271.538800pt;}
.y113{bottom:272.146400pt;}
.y10f{bottom:272.308667pt;}
.yab{bottom:272.746667pt;}
.y179{bottom:277.308667pt;}
.y5{bottom:277.627067pt;}
.y247{bottom:278.186667pt;}
.y27{bottom:280.106667pt;}
.y132{bottom:280.426667pt;}
.y4f{bottom:282.161600pt;}
.y84{bottom:282.562347pt;}
.y139{bottom:283.946667pt;}
.ycc{bottom:287.466667pt;}
.y1b4{bottom:288.000000pt;}
.y1b3{bottom:288.640000pt;}
.y1d6{bottom:290.346667pt;}
.y152{bottom:290.986667pt;}
.y19b{bottom:294.506667pt;}
.y170{bottom:298.026667pt;}
.y4e{bottom:299.224533pt;}
.yf7{bottom:300.266667pt;}
.y189{bottom:301.800667pt;}
.yaa{bottom:301.866667pt;}
.y1c8{bottom:302.666667pt;}
.y226{bottom:303.146667pt;}
.y26{bottom:306.760000pt;}
.y246{bottom:307.626667pt;}
.y4{bottom:308.299067pt;}
.y1df{bottom:309.333333pt;}
.y131{bottom:309.866667pt;}
.y83{bottom:311.045547pt;}
.yed{bottom:313.386667pt;}
.y21d{bottom:314.666667pt;}
.y188{bottom:314.868667pt;}
.y4d{bottom:316.827200pt;}
.ycb{bottom:316.906667pt;}
.y151{bottom:320.426667pt;}
.y19a{bottom:323.946667pt;}
.y25{bottom:324.093333pt;}
.y121{bottom:326.826667pt;}
.y3{bottom:326.971067pt;}
.y16f{bottom:327.466667pt;}
.y187{bottom:327.930667pt;}
.yf6{bottom:329.386667pt;}
.y10e{bottom:330.469467pt;}
.ya9{bottom:331.306667pt;}
.y4c{bottom:333.890133pt;}
.y245{bottom:337.066667pt;}
.y130{bottom:338.986667pt;}
.y82{bottom:339.852587pt;}
.y10d{bottom:341.758667pt;}
.y24{bottom:342.093333pt;}
.yec{bottom:342.506667pt;}
.y252{bottom:345.834933pt;}
.yca{bottom:346.026667pt;}
.y150{bottom:349.546667pt;}
.y199{bottom:353.066667pt;}
.y10c{bottom:353.505200pt;}
.y16e{bottom:356.586667pt;}
.y2{bottom:357.643067pt;}
.yf5{bottom:358.826667pt;}
.ya8{bottom:360.426667pt;}
.y10b{bottom:365.251600pt;}
.y244{bottom:366.186667pt;}
.y81{bottom:368.335787pt;}
.y12f{bottom:368.426667pt;}
.y23{bottom:369.773333pt;}
.y105{bottom:370.135333pt;}
.yeb{bottom:371.946667pt;}
.y4b{bottom:374.419200pt;}
.yc9{bottom:375.466667pt;}
.y10a{bottom:376.980000pt;}
.y14f{bottom:378.986667pt;}
.y104{bottom:380.071333pt;}
.y198{bottom:382.506667pt;}
.y16d{bottom:386.026667pt;}
.yf4{bottom:387.946667pt;}
.y109{bottom:388.269200pt;}
.ya7{bottom:389.866667pt;}
.y103{bottom:390.013467pt;}
.y4a{bottom:392.021867pt;}
.y243{bottom:395.626667pt;}
.y80{bottom:396.818987pt;}
.y12e{bottom:397.546667pt;}
.ya{bottom:399.823867pt;}
.y108{bottom:400.015600pt;}
.y102{bottom:400.400533pt;}
.yea{bottom:401.066667pt;}
.yc8{bottom:404.586667pt;}
.y22{bottom:406.466667pt;}
.y14e{bottom:408.106667pt;}
.y101{bottom:410.324533pt;}
.y107{bottom:411.756000pt;}
.y197{bottom:411.946667pt;}
.y178{bottom:412.032667pt;}
.y16c{bottom:415.466667pt;}
.yf3{bottom:417.386667pt;}
.ya6{bottom:418.986667pt;}
.y100{bottom:421.168800pt;}
.y25a{bottom:423.449333pt;}
.y106{bottom:423.484400pt;}
.y242{bottom:424.746667pt;}
.y7f{bottom:425.626027pt;}
.y210{bottom:426.666667pt;}
.y12d{bottom:426.986667pt;}
.y9{bottom:429.157200pt;}
.ye9{bottom:430.506667pt;}
.y49{bottom:432.550933pt;}
.yc7{bottom:434.026667pt;}
.y14d{bottom:437.546667pt;}
.y25c{bottom:437.736000pt;}
.y196{bottom:441.066667pt;}
.y21{bottom:443.800000pt;}
.y16b{bottom:444.586667pt;}
.yf2{bottom:446.506667pt;}
.ya5{bottom:448.426667pt;}
.y48{bottom:449.613867pt;}
.y25e{bottom:452.718667pt;}
.y7e{bottom:454.109227pt;}
.y241{bottom:454.186667pt;}
.y12c{bottom:456.106667pt;}
.y8{bottom:458.490533pt;}
.ye8{bottom:459.626667pt;}
.yc6{bottom:463.146667pt;}
.y14c{bottom:466.666667pt;}
.y47{bottom:467.216533pt;}
.y256{bottom:467.337333pt;}
.y195{bottom:470.506667pt;}
.y16a{bottom:474.026667pt;}
.y1dd{bottom:474.666667pt;}
.yf1{bottom:475.946667pt;}
.ya4{bottom:477.546667pt;}
.y258{bottom:480.748000pt;}
.y20{bottom:480.800000pt;}
.y7d{bottom:482.916267pt;}
.y240{bottom:483.306667pt;}
.y46{bottom:484.279467pt;}
.y12b{bottom:485.546667pt;}
.y7{bottom:487.823867pt;}
.ye7{bottom:489.066667pt;}
.yc5{bottom:492.586667pt;}
.y262{bottom:494.158667pt;}
.y14b{bottom:496.106667pt;}
.y22d{bottom:498.986667pt;}
.y194{bottom:499.626667pt;}
.y45{bottom:501.882133pt;}
.ydf{bottom:502.506667pt;}
.y169{bottom:503.146667pt;}
.ya3{bottom:506.986667pt;}
.y277{bottom:507.569333pt;}
.y7c{bottom:511.399467pt;}
.y23f{bottom:512.746667pt;}
.y12a{bottom:514.666667pt;}
.yf0{bottom:515.306667pt;}
.y1f{bottom:518.173333pt;}
.ye6{bottom:518.186667pt;}
.yc4{bottom:521.706667pt;}
.y14a{bottom:525.546667pt;}
.y5b{bottom:527.840000pt;}
.y193{bottom:529.066667pt;}
.y168{bottom:532.586667pt;}
.ya2{bottom:536.426667pt;}
.y7b{bottom:539.882667pt;}
.y23e{bottom:541.866667pt;}
.y44{bottom:542.411200pt;}
.y129{bottom:544.106667pt;}
.y1e{bottom:547.173333pt;}
.yde{bottom:547.626667pt;}
.y264{bottom:549.010667pt;}
.yc3{bottom:551.146667pt;}
.yef{bottom:552.106667pt;}
.y149{bottom:554.666667pt;}
.y192{bottom:558.186667pt;}
.y43{bottom:559.474133pt;}
.y1aa{bottom:561.706667pt;}
.ya1{bottom:565.546667pt;}
.y7a{bottom:568.689707pt;}
.y23d{bottom:571.306667pt;}
.y167{bottom:571.946667pt;}
.yff{bottom:573.500000pt;}
.yee{bottom:573.546667pt;}
.y1d{bottom:575.173333pt;}
.ydd{bottom:577.066667pt;}
.y42{bottom:577.076800pt;}
.y27a{bottom:578.490667pt;}
.y1b2{bottom:578.666667pt;}
.y148{bottom:584.106667pt;}
.y138{bottom:586.986667pt;}
.y191{bottom:587.626667pt;}
.y5a{bottom:588.480000pt;}
.yc2{bottom:590.506667pt;}
.y1a9{bottom:591.146667pt;}
.y41{bottom:594.139733pt;}
.ya0{bottom:594.986667pt;}
.y79{bottom:597.172907pt;}
.y6b{bottom:597.866667pt;}
.y23c{bottom:600.746667pt;}
.y1c{bottom:602.506667pt;}
.y128{bottom:602.666667pt;}
.ydc{bottom:606.186667pt;}
.y27c{bottom:607.990667pt;}
.y40{bottom:611.742400pt;}
.y147{bottom:613.226667pt;}
.y166{bottom:616.746667pt;}
.y1a8{bottom:620.266667pt;}
.y9f{bottom:624.106667pt;}
.y78{bottom:625.656107pt;}
.y6a{bottom:626.986667pt;}
.y1b{bottom:629.866667pt;}
.y127{bottom:632.106667pt;}
.yc1{bottom:635.626667pt;}
.y1{bottom:644.574533pt;}
.y267{bottom:644.840000pt;}
.y1ff{bottom:645.333333pt;}
.y158{bottom:645.546667pt;}
.y165{bottom:646.186667pt;}
.y59{bottom:648.962933pt;}
.y1a7{bottom:649.706667pt;}
.y3f{bottom:652.271467pt;}
.y146{bottom:652.586667pt;}
.y9e{bottom:653.546667pt;}
.y77{bottom:654.463147pt;}
.y69{bottom:656.426667pt;}
.y23b{bottom:659.306667pt;}
.y126{bottom:661.226667pt;}
.yc0{bottom:664.746667pt;}
.y1a{bottom:666.866667pt;}
.y3e{bottom:669.334400pt;}
.y269{bottom:674.320000pt;}
.y22c{bottom:674.986667pt;}
.y164{bottom:675.626667pt;}
.y1a6{bottom:679.146667pt;}
.y9d{bottom:682.666667pt;}
.y76{bottom:682.946347pt;}
.y68{bottom:685.546667pt;}
.y3d{bottom:686.937067pt;}
.y23a{bottom:688.426667pt;}
.y125{bottom:690.666667pt;}
.ybf{bottom:694.186667pt;}
.y19{bottom:695.866667pt;}
.y145{bottom:697.706667pt;}
.y26b{bottom:703.800000pt;}
.y3c{bottom:704.000000pt;}
.y1ab{bottom:704.106667pt;}
.y163{bottom:704.746667pt;}
.y1a5{bottom:708.266667pt;}
.y75{bottom:711.429547pt;}
.y9c{bottom:712.106667pt;}
.y67{bottom:714.986667pt;}
.y239{bottom:717.866667pt;}
.y124{bottom:719.786667pt;}
.y3b{bottom:721.609067pt;}
.ybe{bottom:723.306667pt;}
.y18{bottom:725.200000pt;}
.y144{bottom:726.826667pt;}
.y22e{bottom:733.546667pt;}
.y162{bottom:734.186667pt;}
.y1a4{bottom:737.706667pt;}
.y3a{bottom:738.672000pt;}
.y74{bottom:740.236587pt;}
.y26d{bottom:740.650667pt;}
.y9b{bottom:741.226667pt;}
.y66{bottom:744.426667pt;}
.y238{bottom:746.986667pt;}
.y123{bottom:749.226667pt;}
.ybd{bottom:752.746667pt;}
.y17{bottom:754.226667pt;}
.y143{bottom:756.266667pt;}
.y39{bottom:756.274667pt;}
.ydb{bottom:762.666667pt;}
.y161{bottom:763.306667pt;}
.y1a3{bottom:766.826667pt;}
.y73{bottom:768.719787pt;}
.y9a{bottom:768.740907pt;}
.y26f{bottom:770.160000pt;}
.y38{bottom:773.337600pt;}
.y65{bottom:773.546667pt;}
.y237{bottom:776.426667pt;}
.y122{bottom:778.346667pt;}
.ybc{bottom:781.866667pt;}
.y142{bottom:785.386667pt;}
.y99{bottom:787.951787pt;}
.y37{bottom:790.940267pt;}
.y160{bottom:792.746667pt;}
.y16{bottom:795.893333pt;}
.y1a2{bottom:796.266667pt;}
.y72{bottom:797.202987pt;}
.y271{bottom:799.640000pt;}
.y64{bottom:802.986667pt;}
.y236{bottom:805.546667pt;}
.yda{bottom:807.786667pt;}
.y36{bottom:808.003200pt;}
.y98{bottom:808.427307pt;}
.ybb{bottom:811.306667pt;}
.y15{bottom:820.226667pt;}
.y15f{bottom:821.866667pt;}
.y35{bottom:822.931733pt;}
.y141{bottom:825.066667pt;}
.y71{bottom:826.010027pt;}
.y97{bottom:829.226667pt;}
.y96{bottom:829.236267pt;}
.y63{bottom:832.106667pt;}
.y235{bottom:834.986667pt;}
.y1a1{bottom:835.626667pt;}
.y273{bottom:836.489333pt;}
.yd9{bottom:836.906667pt;}
.y14{bottom:837.560000pt;}
.yba{bottom:840.746667pt;}
.y95{bottom:849.711787pt;}
.y120{bottom:850.666667pt;}
.y15e{bottom:851.306667pt;}
.y70{bottom:854.493227pt;}
.y13{bottom:854.933333pt;}
.y62{bottom:861.546667pt;}
.y234{bottom:864.426667pt;}
.y275{bottom:865.969333pt;}
.yd8{bottom:866.346667pt;}
.yb9{bottom:869.866667pt;}
.y94{bottom:870.187307pt;}
.y12{bottom:872.266667pt;}
.y15d{bottom:880.426667pt;}
.y1b0{bottom:881.333333pt;}
.y6f{bottom:882.976427pt;}
.y11{bottom:889.600000pt;}
.y34{bottom:889.601067pt;}
.y61{bottom:890.666667pt;}
.y93{bottom:890.986667pt;}
.y92{bottom:891.005867pt;}
.y233{bottom:893.546667pt;}
.yd7{bottom:895.786667pt;}
.yb8{bottom:899.306667pt;}
.y10{bottom:906.933333pt;}
.y33{bottom:907.203733pt;}
.ye5{bottom:909.226667pt;}
.y15c{bottom:909.866667pt;}
.y91{bottom:911.481387pt;}
.y6e{bottom:911.783467pt;}
.y60{bottom:920.106667pt;}
.y232{bottom:922.986667pt;}
.yf{bottom:924.266667pt;}
.yd6{bottom:924.906667pt;}
.yb7{bottom:928.426667pt;}
.y90{bottom:931.956907pt;}
.y140{bottom:938.666667pt;}
.y15b{bottom:939.306667pt;}
.y6d{bottom:940.266667pt;}
.y5f{bottom:949.226667pt;}
.y231{bottom:952.106667pt;}
.y8f{bottom:952.756267pt;}
.yd5{bottom:954.346667pt;}
.yb6{bottom:957.866667pt;}
.y15a{bottom:968.426667pt;}
.y8e{bottom:973.231787pt;}
.y24d{bottom:973.546667pt;}
.y6c{bottom:978.346667pt;}
.y5e{bottom:978.666667pt;}
.y230{bottom:981.546667pt;}
.yd4{bottom:983.466667pt;}
.y8d{bottom:993.707307pt;}
.yb5{bottom:997.226667pt;}
.y159{bottom:1007.786667pt;}
.y22f{bottom:1008.106667pt;}
.y287{bottom:1010.026667pt;}
.y5d{bottom:1010.346667pt;}
.y280{bottom:1010.666667pt;}
.yd3{bottom:1012.906667pt;}
.y291{bottom:1013.226667pt;}
.y8c{bottom:1014.506667pt;}
.yd{bottom:1035.626667pt;}
.y31{bottom:1035.734400pt;}
.y30{bottom:1052.797333pt;}
.yc{bottom:1052.960000pt;}
.yb{bottom:1070.333333pt;}
.y2f{bottom:1070.400000pt;}
.h39{height:13.410667pt;}
.h33{height:13.895819pt;}
.h38{height:13.903856pt;}
.h3e{height:14.257333pt;}
.h3b{height:14.281333pt;}
.h3d{height:14.981333pt;}
.h3c{height:15.150520pt;}
.h34{height:16.735840pt;}
.h3a{height:16.745520pt;}
.h35{height:17.701707pt;}
.h36{height:17.702240pt;}
.h37{height:18.244000pt;}
.h3f{height:18.726667pt;}
.h1b{height:22.832256pt;}
.h1c{height:22.872394pt;}
.h1e{height:24.737958pt;}
.h1f{height:24.793042pt;}
.h6{height:28.560000pt;}
.h1d{height:28.797515pt;}
.h22{height:28.810982pt;}
.h1a{height:28.837592pt;}
.h25{height:29.333333pt;}
.h42{height:29.480000pt;}
.h44{height:29.504000pt;}
.h18{height:33.707520pt;}
.h14{height:35.535360pt;}
.h15{height:35.594240pt;}
.h3{height:36.336000pt;}
.h5{height:36.720000pt;}
.h43{height:36.849333pt;}
.hc{height:37.518750pt;}
.h23{height:38.401382pt;}
.h47{height:40.233333pt;}
.h28{height:40.273920pt;}
.h45{height:41.441333pt;}
.h26{height:42.275840pt;}
.h31{height:42.327040pt;}
.h16{height:42.624000pt;}
.ha{height:42.840000pt;}
.h46{height:43.518667pt;}
.h21{height:44.395382pt;}
.hb{height:44.850000pt;}
.h24{height:45.952000pt;}
.h12{height:48.634880pt;}
.h9{height:48.640000pt;}
.h8{height:48.960000pt;}
.h10{height:50.752000pt;}
.h2a{height:54.666667pt;}
.h17{height:58.659840pt;}
.h11{height:58.872320pt;}
.h4{height:64.597333pt;}
.h7{height:64.853333pt;}
.he{height:77.804787pt;}
.hf{height:77.805000pt;}
.h2d{height:82.666667pt;}
.h30{height:112.000000pt;}
.h2c{height:137.333333pt;}
.h2b{height:165.333333pt;}
.h2f{height:218.666667pt;}
.h41{height:218.702667pt;}
.h2e{height:245.333333pt;}
.h29{height:274.666667pt;}
.h27{height:302.666667pt;}
.h40{height:353.809333pt;}
.h2{height:363.360000pt;}
.h20{height:453.600000pt;}
.h19{height:454.700000pt;}
.h32{height:730.956000pt;}
.h13{height:1098.666667pt;}
.h0{height:1122.520000pt;}
.hd{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:6.761333pt;}
.w17{width:8.210667pt;}
.w19{width:23.449333pt;}
.w12{width:52.428000pt;}
.w18{width:60.640000pt;}
.w16{width:69.574667pt;}
.w15{width:92.734667pt;}
.wc{width:117.333333pt;}
.w13{width:123.665333pt;}
.w14{width:131.876000pt;}
.w9{width:141.333333pt;}
.wa{width:198.666667pt;}
.wd{width:213.333333pt;}
.wb{width:265.333333pt;}
.we{width:273.333333pt;}
.w11{width:294.192000pt;}
.w10{width:481.280000pt;}
.w8{width:604.800000pt;}
.w7{width:606.266667pt;}
.w6{width:769.333333pt;}
.w4{width:793.333333pt;}
.w3{width:793.600000pt;}
.w2{width:793.666667pt;}
.w0{width:793.701333pt;}
.w5{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x79{left:5.191600pt;}
.x71{left:7.733333pt;}
.xa5{left:13.044133pt;}
.x27{left:17.036267pt;}
.x12{left:24.000000pt;}
.x39{left:25.306267pt;}
.x28{left:27.140800pt;}
.x73{left:31.253333pt;}
.x26{left:32.403467pt;}
.x3a{left:41.109600pt;}
.x3b{left:48.778133pt;}
.xa0{left:51.099733pt;}
.x75{left:54.986667pt;}
.x3c{left:56.897733pt;}
.x69{left:58.395067pt;}
.xa4{left:63.033867pt;}
.x3d{left:65.029467pt;}
.x7a{left:66.315067pt;}
.x6a{left:69.630133pt;}
.x3e{left:72.698000pt;}
.x7b{left:74.042933pt;}
.xa1{left:77.630000pt;}
.x3f{left:80.835600pt;}
.x7c{left:81.770800pt;}
.x1{left:84.854000pt;}
.x40{left:88.504267pt;}
.x7d{left:89.498667pt;}
.xa3{left:92.995733pt;}
.x10{left:94.400000pt;}
.x7e{left:97.468000pt;}
.x3{left:98.366667pt;}
.x7f{left:105.195867pt;}
.xb{left:109.318933pt;}
.x11{left:110.400133pt;}
.x80{left:112.682133pt;}
.x2a{left:113.873600pt;}
.x2b{left:121.223333pt;}
.x2c{left:124.170533pt;}
.x5{left:125.866667pt;}
.x29{left:127.941600pt;}
.x41{left:133.222400pt;}
.xc{left:135.998400pt;}
.x76{left:141.600000pt;}
.x42{left:142.713333pt;}
.x81{left:143.865200pt;}
.x13{left:152.344133pt;}
.xa{left:155.184000pt;}
.x82{left:159.320933pt;}
.x43{left:160.750933pt;}
.x44{left:169.790800pt;}
.x6c{left:170.712133pt;}
.x6b{left:173.490133pt;}
.x84{left:174.776667pt;}
.x45{left:179.263733pt;}
.x9f{left:181.386667pt;}
.x85{left:182.504533pt;}
.x14{left:183.519867pt;}
.x78{left:184.584000pt;}
.xd{left:187.189733pt;}
.x15{left:189.146800pt;}
.x86{left:193.009467pt;}
.x5c{left:201.270133pt;}
.x87{left:208.465200pt;}
.x74{left:212.000000pt;}
.x2e{left:213.955733pt;}
.x5f{left:216.048133pt;}
.x2f{left:217.468267pt;}
.x16{left:220.322533pt;}
.x2d{left:223.470667pt;}
.x60{left:225.828133pt;}
.x22{left:227.921467pt;}
.x20{left:229.467200pt;}
.xe{left:231.680000pt;}
.x46{left:233.334667pt;}
.x72{left:236.000000pt;}
.x21{left:239.517600pt;}
.x24{left:242.927867pt;}
.x23{left:243.818000pt;}
.x88{left:247.104533pt;}
.x47{left:251.847333pt;}
.x25{left:254.253200pt;}
.x48{left:260.863200pt;}
.x89{left:262.580267pt;}
.x49{left:269.903067pt;}
.x6{left:270.920000pt;}
.x5e{left:272.292133pt;}
.x6d{left:274.638133pt;}
.x62{left:276.378133pt;}
.x8a{left:278.036000pt;}
.x1f{left:279.586533pt;}
.x61{left:280.950133pt;}
.xf{left:282.720000pt;}
.x5d{left:286.410133pt;}
.x8b{left:293.491733pt;}
.x8c{left:301.219600pt;}
.x8d{left:308.947333pt;}
.x31{left:312.889067pt;}
.x83{left:314.054667pt;}
.x32{left:315.252800pt;}
.x8e{left:316.675200pt;}
.x30{left:319.011867pt;}
.x8f{left:324.403067pt;}
.x9{left:326.377600pt;}
.x4a{left:328.394533pt;}
.x90{left:332.130933pt;}
.x4b{left:337.885600pt;}
.x91{left:339.858800pt;}
.x64{left:341.148133pt;}
.x4c{left:346.907333pt;}
.x63{left:350.532133pt;}
.x65{left:352.818133pt;}
.x4d{left:355.941200pt;}
.x66{left:358.578133pt;}
.x92{left:363.042267pt;}
.x4e{left:364.963067pt;}
.x93{left:370.770133pt;}
.x94{left:378.528267pt;}
.x95{left:386.256000pt;}
.x96{left:393.983867pt;}
.x97{left:401.711733pt;}
.x35{left:408.430133pt;}
.x34{left:409.500800pt;}
.x36{left:410.793867pt;}
.x33{left:414.553067pt;}
.x98{left:417.167467pt;}
.x7{left:421.309333pt;}
.x4f{left:424.525200pt;}
.x99{left:432.624249pt;}
.x50{left:433.546933pt;}
.x2{left:435.137067pt;}
.x9a{left:440.353164pt;}
.x51{left:443.031867pt;}
.x9b{left:448.077007pt;}
.x67{left:450.762133pt;}
.x52{left:452.053733pt;}
.x9c{left:455.805923pt;}
.x1a{left:457.466800pt;}
.x1d{left:458.970400pt;}
.x9d{left:463.534838pt;}
.x1c{left:466.548800pt;}
.x1b{left:469.754533pt;}
.x9e{left:471.263753pt;}
.x70{left:474.018133pt;}
.x6f{left:476.442133pt;}
.x1e{left:479.149333pt;}
.x68{left:485.478133pt;}
.x19{left:489.512400pt;}
.x6e{left:494.820133pt;}
.x38{left:496.212533pt;}
.x37{left:500.260400pt;}
.xa2{left:501.844000pt;}
.x53{left:506.353067pt;}
.x8{left:510.905067pt;}
.x54{left:515.386933pt;}
.x55{left:524.859867pt;}
.x56{left:533.893733pt;}
.x57{left:542.921600pt;}
.x58{left:551.955467pt;}
.x59{left:561.428400pt;}
.x5a{left:643.949733pt;}
.x17{left:652.496667pt;}
.xa6{left:675.520267pt;}
.x77{left:693.440000pt;}
.x4{left:698.293333pt;}
.x5b{left:699.520000pt;}
.x18{left:700.800667pt;}
}




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