
    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_e9daabe24707f575f7727138.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_34ba32997c7b2c509d16cfbb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_f71e0c48f760a65bef64ba29.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_354a4b4301fb663992ee93eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f0b65154043062bf29a4facf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_86ab2b4c74dcb4f0dcf5c388.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.349000;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_8337e839fc5b7cf7371d1377.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.362000;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_36c5f91fd4146934cbeafce2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_0c5c9ddd3dbd6fc609b47335.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.200885;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_715bd0f1a67cadc1f8f3458f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.939000;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.384000;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_85bdfaa76813abed792ef23e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4407fad00c0873445c4b8abd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.939000;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_9cbc427fe9364bd5e0363981.woff2')format("woff");}.fff{font-family:fff;line-height:0.732000;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_e7f8f701e118998280e0473c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.411000;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_715bd0f1a67cadc1f8f3458f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.939000;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_73a6a96f6837f2a107383b86.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.225182;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.000000,-0.250038,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.250040,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250040,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250040,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);}
.m4{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250042,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);}
.v1{vertical-align:-20.399963px;}
.v9{vertical-align:-18.374086px;}
.v4{vertical-align:-17.339996px;}
.v8{vertical-align:-10.818028px;}
.v7{vertical-align:-1.545235px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.952834px;}
.v3{vertical-align:18.185982px;}
.v2{vertical-align:20.399963px;}
.v5{vertical-align:36.792114px;}
.ls40{letter-spacing:-5.130000px;}
.ls8f{letter-spacing:-2.052000px;}
.ls46{letter-spacing:-1.970760px;}
.lsb0{letter-spacing:-1.755000px;}
.ls90{letter-spacing:-1.674000px;}
.ls8c{letter-spacing:-1.458000px;}
.ls8b{letter-spacing:-1.404000px;}
.lsb9{letter-spacing:-1.350000px;}
.ls59{letter-spacing:-1.339819px;}
.ls91{letter-spacing:-1.296000px;}
.ls60{letter-spacing:-1.255504px;}
.ls43{letter-spacing:-1.182456px;}
.ls48{letter-spacing:-1.146624px;}
.ls77{letter-spacing:-1.053192px;}
.ls5c{letter-spacing:-1.030157px;}
.ls61{letter-spacing:-0.997964px;}
.ls54{letter-spacing:-0.987235px;}
.ls97{letter-spacing:-0.972000px;}
.ls4a{letter-spacing:-0.895800px;}
.ls42{letter-spacing:-0.859968px;}
.ls7a{letter-spacing:-0.816224px;}
.ls5a{letter-spacing:-0.810943px;}
.ls2f{letter-spacing:-0.810000px;}
.ls79{letter-spacing:-0.789894px;}
.lsbf{letter-spacing:-0.765000px;}
.ls38{letter-spacing:-0.756000px;}
.lsbc{letter-spacing:-0.720000px;}
.ls5e{letter-spacing:-0.711302px;}
.ls39{letter-spacing:-0.702000px;}
.ls5d{letter-spacing:-0.689074px;}
.ls3e{letter-spacing:-0.648000px;}
.ls76{letter-spacing:-0.631915px;}
.lsb5{letter-spacing:-0.630000px;}
.ls4b{letter-spacing:-0.609144px;}
.ls15{letter-spacing:-0.600000px;}
.ls96{letter-spacing:-0.596700px;}
.ls89{letter-spacing:-0.594000px;}
.lsb7{letter-spacing:-0.585000px;}
.ls47{letter-spacing:-0.573312px;}
.ls58{letter-spacing:-0.564134px;}
.ls68{letter-spacing:-0.547271px;}
.ls3c{letter-spacing:-0.540000px;}
.ls45{letter-spacing:-0.537480px;}
.ls5b{letter-spacing:-0.515078px;}
.lsaf{letter-spacing:-0.495000px;}
.ls55{letter-spacing:-0.493618px;}
.ls3d{letter-spacing:-0.486000px;}
.ls6b{letter-spacing:-0.482886px;}
.ls95{letter-spacing:-0.480000px;}
.lsb2{letter-spacing:-0.450000px;}
.ls52{letter-spacing:-0.432000px;}
.ls78{letter-spacing:-0.421277px;}
.lsbe{letter-spacing:-0.405000px;}
.ls8a{letter-spacing:-0.386100px;}
.ls51{letter-spacing:-0.378000px;}
.ls82{letter-spacing:-0.351000px;}
.ls50{letter-spacing:-0.324000px;}
.ls4f{letter-spacing:-0.300000px;}
.ls8d{letter-spacing:-0.280800px;}
.ls4d{letter-spacing:-0.270000px;}
.ls2c{letter-spacing:-0.216000px;}
.lsb1{letter-spacing:-0.180000px;}
.lsa3{letter-spacing:-0.175500px;}
.ls2a{letter-spacing:-0.162000px;}
.ls3a{letter-spacing:-0.140400px;}
.lsb4{letter-spacing:-0.135000px;}
.ls6f{letter-spacing:-0.120000px;}
.ls16{letter-spacing:-0.108000px;}
.ls30{letter-spacing:-0.105300px;}
.lsb6{letter-spacing:-0.090000px;}
.ls81{letter-spacing:-0.060000px;}
.ls2b{letter-spacing:-0.054000px;}
.lsc0{letter-spacing:-0.045000px;}
.ls70{letter-spacing:-0.035100px;}
.ls14{letter-spacing:0.000000px;}
.ls9e{letter-spacing:0.000084px;}
.ls75{letter-spacing:0.000310px;}
.ls74{letter-spacing:0.000401px;}
.ls2{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.013956px;}
.ls87{letter-spacing:0.018595px;}
.ls1a{letter-spacing:0.024620px;}
.lsc1{letter-spacing:0.029250px;}
.ls33{letter-spacing:0.035100px;}
.ls1c{letter-spacing:0.036156px;}
.lsad{letter-spacing:0.045000px;}
.ls1b{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.058655px;}
.ls85{letter-spacing:0.060000px;}
.ls7f{letter-spacing:0.070199px;}
.ls92{letter-spacing:0.070200px;}
.lsaa{letter-spacing:0.090000px;}
.ls1f{letter-spacing:0.091849px;}
.lsf{letter-spacing:0.102000px;}
.ls93{letter-spacing:0.105300px;}
.ls21{letter-spacing:0.108000px;}
.ls3f{letter-spacing:0.120000px;}
.lsae{letter-spacing:0.135000px;}
.lse{letter-spacing:0.142792px;}
.lsa2{letter-spacing:0.151185px;}
.ls3b{letter-spacing:0.161998px;}
.ls35{letter-spacing:0.162000px;}
.ls31{letter-spacing:0.175500px;}
.ls8e{letter-spacing:0.180000px;}
.ls6c{letter-spacing:0.189598px;}
.ls20{letter-spacing:0.194388px;}
.ls23{letter-spacing:0.210600px;}
.ls86{letter-spacing:0.212486px;}
.ls18{letter-spacing:0.216000px;}
.lsbb{letter-spacing:0.225000px;}
.ls7c{letter-spacing:0.226219px;}
.ls9{letter-spacing:0.244860px;}
.ls8{letter-spacing:0.245699px;}
.lsd{letter-spacing:0.255000px;}
.ls84{letter-spacing:0.269988px;}
.ls24{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.280800px;}
.ls25{letter-spacing:0.280801px;}
.ls6a{letter-spacing:0.289732px;}
.lsa1{letter-spacing:0.296968px;}
.ls5{letter-spacing:0.298805px;}
.ls11{letter-spacing:0.311799px;}
.ls2d{letter-spacing:0.315900px;}
.ls17{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.329285px;}
.lsa{letter-spacing:0.346589px;}
.lsc{letter-spacing:0.346772px;}
.ls80{letter-spacing:0.351000px;}
.ls7b{letter-spacing:0.360000px;}
.ls73{letter-spacing:0.368617px;}
.ls7{letter-spacing:0.378000px;}
.lsa0{letter-spacing:0.378001px;}
.ls32{letter-spacing:0.386100px;}
.lsa8{letter-spacing:0.405000px;}
.ls83{letter-spacing:0.421200px;}
.ls6{letter-spacing:0.432000px;}
.ls9d{letter-spacing:0.432001px;}
.lsbd{letter-spacing:0.450000px;}
.ls6d{letter-spacing:0.453636px;}
.ls37{letter-spacing:0.456300px;}
.ls1d{letter-spacing:0.486000px;}
.ls5f{letter-spacing:0.489020px;}
.lsba{letter-spacing:0.495000px;}
.ls12{letter-spacing:0.510000px;}
.ls69{letter-spacing:0.515078px;}
.ls9b{letter-spacing:0.529184px;}
.ls49{letter-spacing:0.537480px;}
.ls6e{letter-spacing:0.539999px;}
.ls2e{letter-spacing:0.540000px;}
.ls99{letter-spacing:0.545372px;}
.ls64{letter-spacing:0.547271px;}
.lsb{letter-spacing:0.561000px;}
.lsa6{letter-spacing:0.561600px;}
.ls53{letter-spacing:0.564134px;}
.ls9f{letter-spacing:0.572392px;}
.ls44{letter-spacing:0.573312px;}
.lsb8{letter-spacing:0.585000px;}
.ls1e{letter-spacing:0.594000px;}
.lsa9{letter-spacing:0.630000px;}
.ls34{letter-spacing:0.648000px;}
.ls57{letter-spacing:0.669910px;}
.ls36{letter-spacing:0.702000px;}
.ls71{letter-spacing:0.720000px;}
.ls4e{letter-spacing:0.756000px;}
.ls41{letter-spacing:0.810000px;}
.lsab{letter-spacing:0.819016px;}
.ls9c{letter-spacing:0.864000px;}
.lsc2{letter-spacing:0.900000px;}
.ls9a{letter-spacing:0.918001px;}
.ls56{letter-spacing:0.951977px;}
.ls22{letter-spacing:0.972000px;}
.ls7d{letter-spacing:1.026000px;}
.ls94{letter-spacing:1.080000px;}
.lsb3{letter-spacing:1.170000px;}
.ls98{letter-spacing:1.176004px;}
.ls7e{letter-spacing:1.188000px;}
.ls26{letter-spacing:1.296000px;}
.lsac{letter-spacing:1.305000px;}
.lsa5{letter-spacing:1.350000px;}
.ls72{letter-spacing:1.360854px;}
.lsa4{letter-spacing:1.380000px;}
.ls29{letter-spacing:1.404000px;}
.lsa7{letter-spacing:1.620000px;}
.ls28{letter-spacing:1.782000px;}
.ls27{letter-spacing:1.800000px;}
.ls0{letter-spacing:2.592000px;}
.ls19{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.lsc3{letter-spacing:4.620000px;}
.ls88{letter-spacing:6.120000px;}
.ls65{letter-spacing:57.656587px;}
.ls67{letter-spacing:95.257312px;}
.ls63{letter-spacing:114.443980px;}
.ls66{letter-spacing:123.618809px;}
.ls62{letter-spacing:161.155151px;}
.ls4c{letter-spacing:431.298233px;}
.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;}
}
.ws76{word-spacing:-170.104637px;}
.ws8d{word-spacing:-161.155151px;}
.ws78{word-spacing:-132.568296px;}
.ws8e{word-spacing:-114.443980px;}
.ws7a{word-spacing:-104.206799px;}
.ws77{word-spacing:-66.606073px;}
.ws1{word-spacing:-15.067500px;}
.ws1e{word-spacing:-14.700000px;}
.ws29{word-spacing:-13.596000px;}
.ws64{word-spacing:-13.500000px;}
.wsb9{word-spacing:-13.014000px;}
.ws92{word-spacing:-12.960000px;}
.ws9b{word-spacing:-12.906000px;}
.ws6{word-spacing:-12.744000px;}
.wsa8{word-spacing:-12.690000px;}
.ws96{word-spacing:-12.582000px;}
.wsb8{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.480000px;}
.ws2b{word-spacing:-12.420000px;}
.ws52{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws27{word-spacing:-12.312000px;}
.ws23{word-spacing:-12.258000px;}
.ws1f{word-spacing:-12.204000px;}
.ws2a{word-spacing:-12.150000px;}
.wsaa{word-spacing:-12.096000px;}
.ws82{word-spacing:-11.880000px;}
.ws4a{word-spacing:-11.826000px;}
.ws4{word-spacing:-11.760000px;}
.ws65{word-spacing:-11.502000px;}
.ws21{word-spacing:-11.448000px;}
.wsc0{word-spacing:-11.286000px;}
.wsbc{word-spacing:-11.070000px;}
.wsb5{word-spacing:-10.908000px;}
.wsd8{word-spacing:-10.755000px;}
.wsbb{word-spacing:-10.692000px;}
.ws4e{word-spacing:-10.534608px;}
.ws50{word-spacing:-10.498776px;}
.wsd9{word-spacing:-10.485000px;}
.wsb7{word-spacing:-10.314000px;}
.wsee{word-spacing:-10.305000px;}
.wsde{word-spacing:-10.215000px;}
.wsd5{word-spacing:-10.125000px;}
.wseb{word-spacing:-10.080000px;}
.wsdb{word-spacing:-10.035000px;}
.ws4b{word-spacing:-9.961296px;}
.wsf8{word-spacing:-9.900000px;}
.wsdc{word-spacing:-9.765000px;}
.wsf4{word-spacing:-9.720000px;}
.wsf6{word-spacing:-9.630000px;}
.wsd7{word-spacing:-9.585000px;}
.wsda{word-spacing:-9.540000px;}
.ws51{word-spacing:-9.423816px;}
.ws80{word-spacing:-9.239219px;}
.ws4c{word-spacing:-9.101328px;}
.wsd6{word-spacing:-8.955000px;}
.ws74{word-spacing:-8.949487px;}
.ws4f{word-spacing:-8.814672px;}
.ws4d{word-spacing:-8.778840px;}
.wsa0{word-spacing:-8.775000px;}
.wsc9{word-spacing:-8.529300px;}
.wsbd{word-spacing:-8.459100px;}
.ws6d{word-spacing:-8.434409px;}
.ws2c{word-spacing:-8.424000px;}
.ws7b{word-spacing:-8.402216px;}
.wsba{word-spacing:-8.388900px;}
.ws26{word-spacing:-8.353800px;}
.wsa9{word-spacing:-8.318700px;}
.ws20{word-spacing:-8.283600px;}
.ws25{word-spacing:-8.213400px;}
.wsa7{word-spacing:-8.178300px;}
.ws24{word-spacing:-8.143200px;}
.wsbe{word-spacing:-8.073000px;}
.wsa1{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws28{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws75{word-spacing:-7.951523px;}
.ws91{word-spacing:-7.932600px;}
.ws7d{word-spacing:-7.919330px;}
.ws22{word-spacing:-7.862400px;}
.ws2d{word-spacing:-7.827300px;}
.wsc8{word-spacing:-7.792200px;}
.wsb6{word-spacing:-7.686900px;}
.wsab{word-spacing:-7.616700px;}
.wsb4{word-spacing:-7.581600px;}
.wsbf{word-spacing:-7.441200px;}
.ws9d{word-spacing:-7.319684px;}
.ws9c{word-spacing:-6.687769px;}
.wsdd{word-spacing:-6.669000px;}
.ws7{word-spacing:-6.630000px;}
.ws9e{word-spacing:-6.529790px;}
.ws9f{word-spacing:-6.503461px;}
.ws70{word-spacing:-6.179440px;}
.wsc1{word-spacing:-6.120000px;}
.ws63{word-spacing:-5.508000px;}
.ws71{word-spacing:-5.490365px;}
.ws72{word-spacing:-5.468137px;}
.wsfd{word-spacing:-4.620000px;}
.wsd4{word-spacing:-4.224000px;}
.wsfe{word-spacing:-3.960000px;}
.wsa{word-spacing:-3.276000px;}
.wsc{word-spacing:-2.700000px;}
.wsaf{word-spacing:-1.998000px;}
.ws94{word-spacing:-1.890000px;}
.wsf{word-spacing:-1.836000px;}
.ws42{word-spacing:-1.800000px;}
.ws84{word-spacing:-1.782000px;}
.wsad{word-spacing:-1.728000px;}
.ws12{word-spacing:-1.674000px;}
.ws11{word-spacing:-1.620000px;}
.ws83{word-spacing:-1.566000px;}
.wse4{word-spacing:-1.530000px;}
.ws5a{word-spacing:-1.512000px;}
.ws86{word-spacing:-1.458000px;}
.ws98{word-spacing:-1.404000px;}
.wsff{word-spacing:-1.386000px;}
.wscc{word-spacing:-1.380000px;}
.ws41{word-spacing:-1.350000px;}
.ws3f{word-spacing:-1.296000px;}
.ws1d{word-spacing:-1.275000px;}
.wsb{word-spacing:-1.260000px;}
.ws14{word-spacing:-1.242000px;}
.ws35{word-spacing:-1.188000px;}
.wse{word-spacing:-1.134000px;}
.wse8{word-spacing:-1.080000px;}
.wsdf{word-spacing:-1.035000px;}
.ws33{word-spacing:-1.026000px;}
.ws69{word-spacing:-0.987235px;}
.ws5b{word-spacing:-0.972000px;}
.ws9{word-spacing:-0.960000px;}
.ws30{word-spacing:-0.918000px;}
.ws53{word-spacing:-0.864000px;}
.wsea{word-spacing:-0.855000px;}
.ws2e{word-spacing:-0.810000px;}
.ws95{word-spacing:-0.756000px;}
.ws97{word-spacing:-0.720000px;}
.ws6a{word-spacing:-0.705168px;}
.ws54{word-spacing:-0.702000px;}
.ws89{word-spacing:-0.669910px;}
.wsc7{word-spacing:-0.660000px;}
.ws18{word-spacing:-0.648000px;}
.wsc5{word-spacing:-0.600000px;}
.ws66{word-spacing:-0.599393px;}
.ws2f{word-spacing:-0.594000px;}
.wse3{word-spacing:-0.585000px;}
.ws5d{word-spacing:-0.573312px;}
.ws90{word-spacing:-0.547271px;}
.ws3c{word-spacing:-0.540000px;}
.ws1c{word-spacing:-0.510000px;}
.wse9{word-spacing:-0.495000px;}
.ws8b{word-spacing:-0.489020px;}
.ws48{word-spacing:-0.486000px;}
.ws1a{word-spacing:-0.459000px;}
.ws16{word-spacing:-0.432000px;}
.wsa4{word-spacing:-0.421277px;}
.wse1{word-spacing:-0.405000px;}
.ws32{word-spacing:-0.378000px;}
.wsac{word-spacing:-0.360000px;}
.ws38{word-spacing:-0.324000px;}
.ws17{word-spacing:-0.270000px;}
.ws3e{word-spacing:-0.245700px;}
.ws15{word-spacing:-0.216000px;}
.wsc2{word-spacing:-0.180000px;}
.ws3d{word-spacing:-0.175500px;}
.ws13{word-spacing:-0.162000px;}
.ws58{word-spacing:-0.120000px;}
.ws10{word-spacing:-0.108000px;}
.ws1b{word-spacing:-0.102000px;}
.wsf2{word-spacing:-0.090000px;}
.ws31{word-spacing:-0.054000px;}
.wsf5{word-spacing:-0.045000px;}
.ws67{word-spacing:-0.035258px;}
.wsb2{word-spacing:-0.035100px;}
.ws8{word-spacing:0.000000px;}
.wse2{word-spacing:0.045000px;}
.ws37{word-spacing:0.054000px;}
.wsb3{word-spacing:0.060000px;}
.wsf1{word-spacing:0.090000px;}
.ws39{word-spacing:0.105300px;}
.ws46{word-spacing:0.108000px;}
.ws93{word-spacing:0.120000px;}
.ws55{word-spacing:0.162000px;}
.wse5{word-spacing:0.180000px;}
.ws34{word-spacing:0.216000px;}
.wsed{word-spacing:0.225000px;}
.ws9a{word-spacing:0.270000px;}
.ws85{word-spacing:0.300000px;}
.ws3b{word-spacing:0.324000px;}
.ws19{word-spacing:0.357000px;}
.ws44{word-spacing:0.378000px;}
.wsa3{word-spacing:0.421277px;}
.ws87{word-spacing:0.432000px;}
.ws68{word-spacing:0.458359px;}
.wsd0{word-spacing:0.480000px;}
.ws6f{word-spacing:0.482886px;}
.ws99{word-spacing:0.486000px;}
.wsec{word-spacing:0.495000px;}
.ws8f{word-spacing:0.515078px;}
.ws6b{word-spacing:0.528876px;}
.ws47{word-spacing:0.540000px;}
.ws5f{word-spacing:0.573312px;}
.ws57{word-spacing:0.594000px;}
.wsd{word-spacing:0.600000px;}
.ws62{word-spacing:0.609144px;}
.wsf0{word-spacing:0.630000px;}
.wsa6{word-spacing:0.631915px;}
.ws56{word-spacing:0.648000px;}
.wsc3{word-spacing:0.702000px;}
.wse0{word-spacing:0.720000px;}
.ws36{word-spacing:0.756000px;}
.wsa5{word-spacing:0.789894px;}
.wsc4{word-spacing:0.810000px;}
.ws8a{word-spacing:0.810943px;}
.ws5c{word-spacing:0.864000px;}
.ws61{word-spacing:0.895800px;}
.wscf{word-spacing:0.918000px;}
.wsd3{word-spacing:0.972000px;}
.ws88{word-spacing:0.987235px;}
.ws6e{word-spacing:0.997964px;}
.ws49{word-spacing:1.026000px;}
.wsa2{word-spacing:1.053192px;}
.wsef{word-spacing:1.080000px;}
.ws3a{word-spacing:1.134000px;}
.ws60{word-spacing:1.182456px;}
.wsae{word-spacing:1.188000px;}
.wsfc{word-spacing:1.242000px;}
.ws8c{word-spacing:1.255504px;}
.wsfa{word-spacing:1.260000px;}
.wsb0{word-spacing:1.296000px;}
.ws6c{word-spacing:1.304561px;}
.wsf9{word-spacing:1.350000px;}
.wsca{word-spacing:1.380000px;}
.wscb{word-spacing:1.404000px;}
.wsc6{word-spacing:1.458000px;}
.wsd1{word-spacing:1.674000px;}
.wsf7{word-spacing:1.710000px;}
.wsb1{word-spacing:1.836000px;}
.wsd2{word-spacing:1.890000px;}
.wsfb{word-spacing:1.944000px;}
.ws5e{word-spacing:1.970760px;}
.ws40{word-spacing:1.998000px;}
.wsce{word-spacing:2.052000px;}
.wscd{word-spacing:2.160000px;}
.wsf3{word-spacing:2.250000px;}
.ws45{word-spacing:2.376000px;}
.wse6{word-spacing:3.060000px;}
.ws43{word-spacing:3.240000px;}
.wse7{word-spacing:3.555000px;}
.ws59{word-spacing:5.130000px;}
.ws7e{word-spacing:5.850222px;}
.ws7c{word-spacing:46.518020px;}
.ws81{word-spacing:51.861954px;}
.ws79{word-spacing:64.811188px;}
.ws73{word-spacing:135.304659px;}
.ws7f{word-spacing:221.941752px;}
._11{margin-left:-1340.081057px;}
._f{margin-left:-1172.305698px;}
._d{margin-left:-955.670618px;}
._c{margin-left:-920.693412px;}
._e{margin-left:-522.518378px;}
._1a{margin-left:-197.239733px;}
._17{margin-left:-160.157185px;}
._19{margin-left:-124.616776px;}
._1c{margin-left:-94.727364px;}
._18{margin-left:-57.141513px;}
._23{margin-left:-13.230000px;}
._26{margin-left:-11.835000px;}
._21{margin-left:-10.395000px;}
._8{margin-left:-8.564400px;}
._1{margin-left:-7.396783px;}
._4{margin-left:-5.620761px;}
._6{margin-left:-4.618165px;}
._2{margin-left:-3.403240px;}
._0{margin-left:-1.776017px;}
._5{width:1.208435px;}
._7{width:2.294417px;}
._14{width:3.909089px;}
._9{width:5.016000px;}
._15{width:6.442998px;}
._25{width:7.529398px;}
._16{width:8.589159px;}
._13{width:9.981227px;}
._22{width:11.701240px;}
._1f{width:12.960000px;}
._12{width:15.281992px;}
._24{width:16.785002px;}
._20{width:18.021019px;}
._3{width:42.925173px;}
._1e{width:46.391426px;}
._b{width:47.481705px;}
._1d{width:48.593679px;}
._a{width:49.728667px;}
._1b{width:384.956701px;}
._10{width:732.856309px;}
.fc5{color:rgb(228,227,62);}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(245,130,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(206,221,228);}
.fs12{font-size:22.228200px;}
.fse{font-size:24.740999px;}
.fs14{font-size:26.329800px;}
.fs17{font-size:29.250000px;}
.fs11{font-size:32.192399px;}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fsf{font-size:35.258400px;}
.fsd{font-size:35.832001px;}
.fs13{font-size:38.324401px;}
.fs4{font-size:39.000000px;}
.fs16{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fsc{font-size:49.481998px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs10{font-size:76.648201px;}
.fsb{font-size:85.313999px;}
.fs15{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y173{bottom:2.477692px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y32{bottom:68.307899px;}
.y7a{bottom:68.551502px;}
.y1c3{bottom:68.552997px;}
.y1fe{bottom:68.554498px;}
.yd6{bottom:68.569506px;}
.y99{bottom:69.558305px;}
.y156{bottom:74.052302px;}
.y27f{bottom:77.052302px;}
.y16b{bottom:78.274057px;}
.y31{bottom:83.307899px;}
.y1c2{bottom:83.551496px;}
.y1fd{bottom:83.552997px;}
.y79{bottom:83.559000px;}
.yd5{bottom:83.568005px;}
.y98{bottom:84.556804px;}
.y155{bottom:89.050801px;}
.y232{bottom:89.796298px;}
.y27e{bottom:92.050801px;}
.y16a{bottom:93.272556px;}
.y11b{bottom:95.058305px;}
.y30{bottom:98.307899px;}
.y1fc{bottom:98.551496px;}
.y78{bottom:98.557499px;}
.y1c1{bottom:98.563503px;}
.yd4{bottom:98.566504px;}
.y142{bottom:98.978701px;}
.y97{bottom:99.555303px;}
.yf0{bottom:100.348663px;}
.y154{bottom:104.049300px;}
.y231{bottom:104.794798px;}
.y27d{bottom:107.049300px;}
.y169{bottom:108.271055px;}
.y11a{bottom:110.056804px;}
.y2f{bottom:113.307899px;}
.y77{bottom:113.555999px;}
.y1fb{bottom:113.557499px;}
.y1c0{bottom:113.562002px;}
.yd3{bottom:113.565004px;}
.y141{bottom:113.977200px;}
.y96{bottom:114.553802px;}
.y153{bottom:119.047799px;}
.y230{bottom:119.793297px;}
.y27c{bottom:122.047799px;}
.y168{bottom:123.269554px;}
.yec{bottom:123.726196px;}
.y119{bottom:125.055303px;}
.y2e{bottom:128.307899px;}
.y76{bottom:128.554498px;}
.y1fa{bottom:128.555999px;}
.y1bf{bottom:128.560501px;}
.yd2{bottom:128.563503px;}
.y140{bottom:128.975699px;}
.y95{bottom:129.552302px;}
.y16d{bottom:129.916809px;}
.y152{bottom:134.046298px;}
.y22f{bottom:134.793297px;}
.y27b{bottom:137.046298px;}
.y118{bottom:140.053802px;}
.y2d{bottom:143.307899px;}
.y75{bottom:143.552997px;}
.y1f9{bottom:143.554498px;}
.y1be{bottom:143.559000px;}
.yd1{bottom:143.562002px;}
.y13f{bottom:143.974198px;}
.y94{bottom:144.550801px;}
.ye9{bottom:147.103638px;}
.y151{bottom:149.044798px;}
.y27a{bottom:152.044798px;}
.y117{bottom:155.052302px;}
.y2c{bottom:158.307899px;}
.y74{bottom:158.551496px;}
.y1f8{bottom:158.552997px;}
.y1bd{bottom:158.557499px;}
.yd0{bottom:158.560501px;}
.y13e{bottom:158.972698px;}
.y93{bottom:159.549300px;}
.y22e{bottom:161.794798px;}
.y150{bottom:164.043297px;}
.y279{bottom:167.043297px;}
.y116{bottom:170.050801px;}
.ye6{bottom:170.481171px;}
.y1f7{bottom:173.551496px;}
.y73{bottom:173.554498px;}
.y1bc{bottom:173.555999px;}
.ycf{bottom:173.559000px;}
.y13d{bottom:173.971197px;}
.y92{bottom:174.547799px;}
.y22d{bottom:176.802302px;}
.y2b{bottom:177.636898px;}
.y278{bottom:182.043297px;}
.y189{bottom:183.487365px;}
.y17a{bottom:183.516907px;}
.y115{bottom:185.049300px;}
.y72{bottom:188.552997px;}
.y1bb{bottom:188.554498px;}
.yce{bottom:188.557499px;}
.y13c{bottom:188.989207px;}
.y91{bottom:189.546298px;}
.y22c{bottom:191.800801px;}
.ye4{bottom:193.860443px;}
.y178{bottom:196.525543px;}
.y14f{bottom:197.050801px;}
.y188{bottom:198.485864px;}
.y114{bottom:200.047799px;}
.y71{bottom:203.551496px;}
.y1ba{bottom:203.552997px;}
.ycd{bottom:203.555999px;}
.y13b{bottom:203.987706px;}
.y90{bottom:204.544798px;}
.y22b{bottom:206.799300px;}
.y277{bottom:209.054546px;}
.y14e{bottom:212.049300px;}
.y187{bottom:213.484363px;}
.y113{bottom:215.046298px;}
.y70{bottom:218.549995px;}
.y1b9{bottom:218.551496px;}
.y1f6{bottom:218.552997px;}
.ycc{bottom:218.554498px;}
.y13a{bottom:218.986205px;}
.y8f{bottom:219.552302px;}
.y2a{bottom:221.185812px;}
.y22a{bottom:221.797799px;}
.y276{bottom:221.800797px;}
.y14d{bottom:227.047799px;}
.y186{bottom:228.482862px;}
.y112{bottom:230.044798px;}
.y1b8{bottom:233.549995px;}
.y1f5{bottom:233.551496px;}
.ycb{bottom:233.552997px;}
.y139{bottom:233.984704px;}
.y275{bottom:234.547047px;}
.y8e{bottom:234.550801px;}
.y29{bottom:236.188813px;}
.y229{bottom:236.796298px;}
.y14c{bottom:242.046298px;}
.y185{bottom:243.482862px;}
.y111{bottom:245.044798px;}
.y274{bottom:247.537017px;}
.y1f4{bottom:248.549995px;}
.yca{bottom:248.551496px;}
.y6f{bottom:248.685153px;}
.y138{bottom:248.983203px;}
.y8d{bottom:249.549300px;}
.y28{bottom:251.187313px;}
.y228{bottom:251.794798px;}
.y14b{bottom:257.044798px;}
.y184{bottom:258.484363px;}
.y110{bottom:260.044798px;}
.y273{bottom:260.283267px;}
.yc9{bottom:263.549995px;}
.y1b7{bottom:263.635499px;}
.y6e{bottom:263.683653px;}
.y137{bottom:263.981703px;}
.y8c{bottom:264.547799px;}
.y27{bottom:266.185812px;}
.y227{bottom:266.793297px;}
.y14a{bottom:272.043297px;}
.y272{bottom:273.029517px;}
.y183{bottom:273.482862px;}
.y10f{bottom:275.044798px;}
.y1f3{bottom:276.095094px;}
.y1b6{bottom:278.633998px;}
.y6d{bottom:278.682152px;}
.y136{bottom:278.980202px;}
.y8b{bottom:279.546298px;}
.y26{bottom:281.193316px;}
.y271{bottom:285.775767px;}
.y149{bottom:287.043297px;}
.y182{bottom:288.482862px;}
.y10e{bottom:290.044798px;}
.y1f2{bottom:291.093593px;}
.y1b5{bottom:293.632498px;}
.y6c{bottom:293.680651px;}
.y135{bottom:293.978701px;}
.y8a{bottom:294.544798px;}
.yc8{bottom:295.566157px;}
.y25{bottom:296.191815px;}
.y270{bottom:298.522017px;}
.y226{bottom:299.820334px;}
.y10d{bottom:305.044798px;}
.y1f1{bottom:306.092092px;}
.y181{bottom:308.074883px;}
.y1b4{bottom:308.634159px;}
.y6b{bottom:308.679150px;}
.y134{bottom:308.977200px;}
.y89{bottom:309.543297px;}
.yc7{bottom:310.564656px;}
.y24{bottom:311.190314px;}
.y26f{bottom:311.268267px;}
.y225{bottom:314.818833px;}
.y180{bottom:318.482862px;}
.y10c{bottom:320.047799px;}
.y1f0{bottom:321.090591px;}
.y1b3{bottom:323.632658px;}
.y6a{bottom:323.677649px;}
.yde{bottom:323.778900px;}
.y133{bottom:323.975699px;}
.y26e{bottom:324.014517px;}
.yc6{bottom:325.563155px;}
.y23{bottom:326.188813px;}
.y224{bottom:329.817333px;}
.y17f{bottom:333.481361px;}
.y10b{bottom:335.046298px;}
.y26d{bottom:336.760767px;}
.y167{bottom:337.704303px;}
.y1b2{bottom:338.632658px;}
.y69{bottom:338.676149px;}
.y132{bottom:338.974198px;}
.yc5{bottom:340.561654px;}
.y22{bottom:341.187313px;}
.y88{bottom:342.562830px;}
.y223{bottom:344.815832px;}
.y1ef{bottom:348.646035px;}
.y26c{bottom:349.507018px;}
.y10a{bottom:350.044798px;}
.y166{bottom:352.702802px;}
.y1b1{bottom:353.632658px;}
.y68{bottom:353.674648px;}
.y131{bottom:353.972698px;}
.yc4{bottom:355.560153px;}
.y21{bottom:356.185812px;}
.y87{bottom:357.561329px;}
.y222{bottom:359.814331px;}
.y26b{bottom:362.253268px;}
.y1ee{bottom:363.644535px;}
.y9b{bottom:364.604691px;}
.y109{bottom:365.043297px;}
.yac{bottom:365.884323px;}
.y165{bottom:367.722290px;}
.y1b0{bottom:368.632658px;}
.y67{bottom:368.673147px;}
.y130{bottom:368.971197px;}
.yc3{bottom:370.558653px;}
.y20{bottom:371.227812px;}
.y86{bottom:372.559829px;}
.y221{bottom:374.812830px;}
.y26a{bottom:374.999518px;}
.y1ed{bottom:378.643034px;}
.y164{bottom:382.720789px;}
.y1af{bottom:383.643141px;}
.y66{bottom:383.671646px;}
.y12f{bottom:383.980202px;}
.yc2{bottom:385.557152px;}
.y1f{bottom:386.226311px;}
.y85{bottom:387.558328px;}
.y269{bottom:387.745768px;}
.y220{bottom:389.811329px;}
.y1ec{bottom:393.641533px;}
.y163{bottom:397.719288px;}
.y1ae{bottom:398.641640px;}
.y65{bottom:398.671646px;}
.y12e{bottom:398.978701px;}
.y268{bottom:400.492018px;}
.yc1{bottom:400.555651px;}
.y84{bottom:402.556827px;}
.y21f{bottom:404.809829px;}
.y1eb{bottom:408.640032px;}
.y162{bottom:412.717788px;}
.y267{bottom:413.238268px;}
.y1ad{bottom:413.640139px;}
.y12d{bottom:413.977200px;}
.yc0{bottom:415.554150px;}
.y83{bottom:417.555326px;}
.y21e{bottom:419.808328px;}
.y1ea{bottom:423.638531px;}
.y127{bottom:424.145125px;}
.y266{bottom:425.984518px;}
.y161{bottom:427.716287px;}
.y1ac{bottom:428.638638px;}
.y64{bottom:428.799323px;}
.y12c{bottom:428.975699px;}
.ybf{bottom:430.552649px;}
.y82{bottom:432.553825px;}
.y1e{bottom:433.476311px;}
.y21d{bottom:434.806827px;}
.y1e9{bottom:438.637030px;}
.y265{bottom:438.730768px;}
.y126{bottom:439.143624px;}
.y160{bottom:442.714786px;}
.y1ab{bottom:443.637137px;}
.y63{bottom:443.797822px;}
.y12b{bottom:443.974198px;}
.ybe{bottom:445.551149px;}
.y81{bottom:447.552325px;}
.y21c{bottom:449.805326px;}
.y1d{bottom:449.973311px;}
.y264{bottom:451.477018px;}
.y1e8{bottom:453.635530px;}
.y125{bottom:454.142124px;}
.y15f{bottom:457.713285px;}
.y1aa{bottom:458.635636px;}
.y62{bottom:458.796321px;}
.y12a{bottom:458.972698px;}
.ybd{bottom:460.549648px;}
.y80{bottom:462.550824px;}
.y263{bottom:464.223269px;}
.y21b{bottom:464.803825px;}
.y1c{bottom:466.470311px;}
.y1e7{bottom:468.634029px;}
.y124{bottom:469.140623px;}
.y15e{bottom:472.711784px;}
.y1a9{bottom:473.634136px;}
.y61{bottom:473.794821px;}
.y129{bottom:473.971197px;}
.ybc{bottom:475.548147px;}
.y262{bottom:476.969519px;}
.y7f{bottom:477.549323px;}
.y21a{bottom:479.802325px;}
.y1b{bottom:482.967311px;}
.y1e6{bottom:483.632528px;}
.y123{bottom:484.139122px;}
.y15d{bottom:487.710284px;}
.y1a8{bottom:488.632635px;}
.y60{bottom:488.800824px;}
.y128{bottom:488.969696px;}
.y261{bottom:489.715769px;}
.ybb{bottom:490.546646px;}
.y7e{bottom:492.547822px;}
.y219{bottom:494.800824px;}
.y1e5{bottom:498.631027px;}
.y122{bottom:499.137621px;}
.y1a{bottom:499.464311px;}
.y260{bottom:502.462019px;}
.y15c{bottom:502.708783px;}
.y1a7{bottom:503.631134px;}
.y5f{bottom:503.799323px;}
.y7d{bottom:507.546321px;}
.y218{bottom:509.799323px;}
.y121{bottom:514.136120px;}
.y25f{bottom:515.208269px;}
.y19{bottom:515.961311px;}
.y15b{bottom:517.707282px;}
.y5e{bottom:518.797822px;}
.y7c{bottom:522.544821px;}
.y217{bottom:524.797822px;}
.y1e4{bottom:526.173147px;}
.y25e{bottom:527.954519px;}
.y120{bottom:529.134620px;}
.y18{bottom:532.458311px;}
.y15a{bottom:532.705781px;}
.y1a6{bottom:533.721163px;}
.y5d{bottom:533.796321px;}
.y7b{bottom:537.543320px;}
.y216{bottom:539.796321px;}
.y25d{bottom:540.700769px;}
.y1e3{bottom:541.171646px;}
.y11f{bottom:544.133119px;}
.y159{bottom:547.704280px;}
.y1a5{bottom:548.719662px;}
.y5c{bottom:548.794821px;}
.y17{bottom:548.955311px;}
.y148{bottom:550.248135px;}
.y25c{bottom:553.447019px;}
.y215{bottom:554.794821px;}
.y11e{bottom:559.131618px;}
.y158{bottom:562.702780px;}
.y1a4{bottom:563.718161px;}
.y5b{bottom:563.794821px;}
.y147{bottom:565.246634px;}
.y16{bottom:565.452311px;}
.y25b{bottom:566.193269px;}
.y1e2{bottom:568.715084px;}
.y214{bottom:569.794821px;}
.y11d{bottom:574.130117px;}
.y157{bottom:577.701279px;}
.y1a3{bottom:578.716661px;}
.y5a{bottom:578.794821px;}
.y25a{bottom:578.939520px;}
.y146{bottom:580.245134px;}
.y15{bottom:581.949311px;}
.y1e1{bottom:583.713583px;}
.y213{bottom:584.794821px;}
.y108{bottom:585.775811px;}
.yba{bottom:586.807045px;}
.y11c{bottom:589.128616px;}
.y259{bottom:591.685770px;}
.y1a2{bottom:593.715160px;}
.y59{bottom:593.794821px;}
.y145{bottom:595.243633px;}
.y14{bottom:598.446311px;}
.y1e0{bottom:598.713583px;}
.y212{bottom:599.793320px;}
.y107{bottom:600.774310px;}
.yb9{bottom:601.805544px;}
.y258{bottom:604.432020px;}
.y1a1{bottom:608.713659px;}
.y58{bottom:608.800824px;}
.y144{bottom:610.242132px;}
.y1df{bottom:613.713583px;}
.y13{bottom:614.943311px;}
.y106{bottom:615.772810px;}
.yb8{bottom:616.804043px;}
.y257{bottom:617.178270px;}
.y1a0{bottom:623.730168px;}
.y57{bottom:623.799323px;}
.y143{bottom:625.240631px;}
.y1de{bottom:628.712082px;}
.y256{bottom:629.924520px;}
.y105{bottom:630.771309px;}
.y12{bottom:631.440311px;}
.yb7{bottom:631.802543px;}
.y211{bottom:632.794821px;}
.y19f{bottom:638.728667px;}
.y56{bottom:638.797822px;}
.y255{bottom:642.670770px;}
.y104{bottom:645.769808px;}
.yb6{bottom:646.801042px;}
.y210{bottom:647.796321px;}
.y11{bottom:647.937311px;}
.y19e{bottom:653.727166px;}
.y55{bottom:653.796321px;}
.y254{bottom:655.417020px;}
.y1dd{bottom:656.254202px;}
.y103{bottom:660.768307px;}
.yb5{bottom:661.799541px;}
.y20f{bottom:662.794821px;}
.y10{bottom:664.434311px;}
.y253{bottom:668.163270px;}
.y19d{bottom:668.725665px;}
.y54{bottom:668.794821px;}
.y294{bottom:669.556781px;}
.y1dc{bottom:671.258704px;}
.y102{bottom:675.766806px;}
.yb4{bottom:676.798040px;}
.y20e{bottom:677.803780px;}
.y252{bottom:680.909520px;}
.y19c{bottom:683.724165px;}
.y53{bottom:683.802279px;}
.y293{bottom:684.555280px;}
.y1db{bottom:686.257203px;}
.y101{bottom:690.765306px;}
.yb3{bottom:691.796539px;}
.y20d{bottom:692.802279px;}
.y251{bottom:693.655771px;}
.ye{bottom:694.434310px;}
.y19b{bottom:698.722664px;}
.y52{bottom:698.800778px;}
.yf{bottom:699.534302px;}
.y292{bottom:699.553780px;}
.y1da{bottom:701.255702px;}
.y100{bottom:705.763805px;}
.y250{bottom:706.402021px;}
.y20c{bottom:707.800778px;}
.yc{bottom:712.434310px;}
.y19a{bottom:713.721163px;}
.y51{bottom:713.799277px;}
.y291{bottom:714.552279px;}
.y1d9{bottom:716.254202px;}
.yd{bottom:717.534302px;}
.y24f{bottom:719.148271px;}
.y9a{bottom:719.611496px;}
.yff{bottom:720.762304px;}
.y20b{bottom:722.799277px;}
.y199{bottom:728.719662px;}
.y50{bottom:728.797776px;}
.y290{bottom:729.550778px;}
.ya{bottom:730.434310px;}
.y1d8{bottom:731.261660px;}
.y24e{bottom:731.894521px;}
.y9d{bottom:734.000381px;}
.yb{bottom:735.534302px;}
.yfe{bottom:735.760803px;}
.y20a{bottom:737.797776px;}
.y198{bottom:743.718161px;}
.y4f{bottom:743.796276px;}
.y28f{bottom:744.549277px;}
.y24d{bottom:744.640771px;}
.y1d7{bottom:746.260159px;}
.y8{bottom:748.434311px;}
.y209{bottom:752.796276px;}
.y9{bottom:753.534302px;}
.y35{bottom:757.139396px;}
.y24c{bottom:757.387021px;}
.y17e{bottom:758.131328px;}
.y197{bottom:758.716661px;}
.y4e{bottom:758.794775px;}
.ya2{bottom:759.166419px;}
.y28e{bottom:759.547776px;}
.y1d6{bottom:761.258658px;}
.ydd{bottom:763.574982px;}
.y208{bottom:767.794775px;}
.y24b{bottom:770.133271px;}
.ydc{bottom:770.217698px;}
.y17d{bottom:773.129827px;}
.y196{bottom:773.715160px;}
.y4d{bottom:773.803780px;}
.yfa{bottom:774.241701px;}
.y28d{bottom:774.546276px;}
.y1d5{bottom:776.257157px;}
.y34{bottom:778.138646px;}
.y7{bottom:781.416260px;}
.y207{bottom:782.793274px;}
.y24a{bottom:782.879521px;}
.yf5{bottom:785.165307px;}
.yf7{bottom:785.167694px;}
.yf6{bottom:787.659119px;}
.y17c{bottom:788.129827px;}
.y195{bottom:788.713659px;}
.y4c{bottom:788.802279px;}
.y28c{bottom:789.544775px;}
.y1d4{bottom:791.255657px;}
.y9c{bottom:791.375427px;}
.y249{bottom:795.625771px;}
.ydb{bottom:796.282471px;}
.yf9{bottom:797.621430px;}
.y33{bottom:799.137895px;}
.y17b{bottom:803.128326px;}
.y194{bottom:803.719662px;}
.y4b{bottom:803.800778px;}
.y28b{bottom:804.543274px;}
.y1d3{bottom:806.254156px;}
.y248{bottom:808.372022px;}
.yd8{bottom:815.443226px;}
.yd9{bottom:815.452043px;}
.yd7{bottom:815.637177px;}
.yda{bottom:815.645993px;}
.y206{bottom:815.797776px;}
.y193{bottom:818.718161px;}
.y4a{bottom:818.799277px;}
.yf3{bottom:820.425110px;}
.yf4{bottom:820.617188px;}
.yf8{bottom:821.001160px;}
.y247{bottom:821.118272px;}
.y1d2{bottom:821.257157px;}
.yf2{bottom:825.792114px;}
.y28a{bottom:826.299277px;}
.y6{bottom:826.422262px;}
.y205{bottom:830.796276px;}
.y16c{bottom:830.942963px;}
.y192{bottom:833.716661px;}
.y49{bottom:833.797776px;}
.y246{bottom:833.864522px;}
.y1d1{bottom:836.255657px;}
.y9f{bottom:840.431396px;}
.y289{bottom:841.297776px;}
.y174{bottom:843.607178px;}
.y204{bottom:845.794775px;}
.y245{bottom:846.610772px;}
.y191{bottom:848.715160px;}
.y48{bottom:848.796276px;}
.y1d0{bottom:851.254156px;}
.ya5{bottom:857.915891px;}
.y244{bottom:859.357022px;}
.y203{bottom:860.794775px;}
.y288{bottom:863.046276px;}
.y190{bottom:863.713659px;}
.y47{bottom:863.794775px;}
.yf1{bottom:863.923645px;}
.yef{bottom:863.929496px;}
.y1cf{bottom:866.254156px;}
.ya4{bottom:868.584869px;}
.y5{bottom:871.428264px;}
.y243{bottom:872.103272px;}
.yee{bottom:875.615337px;}
.y172{bottom:875.760163px;}
.y202{bottom:875.793274px;}
.ye1{bottom:877.722107px;}
.y287{bottom:878.044775px;}
.y18f{bottom:878.712158px;}
.y46{bottom:878.805280px;}
.y1ce{bottom:881.258658px;}
.y242{bottom:884.849522px;}
.ya1{bottom:886.074406px;}
.yeb{bottom:887.298890px;}
.yed{bottom:887.301178px;}
.ya6{bottom:892.046356px;}
.y45{bottom:893.803780px;}
.y1cd{bottom:896.257157px;}
.y241{bottom:897.595772px;}
.y286{bottom:899.793274px;}
.yab{bottom:906.552645px;}
.y44{bottom:908.802279px;}
.y240{bottom:910.342022px;}
.yea{bottom:910.678619px;}
.ye8{bottom:910.684470px;}
.y1cc{bottom:911.255657px;}
.y285{bottom:914.793274px;}
.y9e{bottom:915.293427px;}
.y4{bottom:916.434265px;}
.ye0{bottom:921.604901px;}
.y171{bottom:921.837312px;}
.ye7{bottom:922.370311px;}
.y23f{bottom:923.088273px;}
.y43{bottom:923.800778px;}
.y1cb{bottom:926.254156px;}
.y36{bottom:926.409576px;}
.ye5{bottom:934.056152px;}
.y23e{bottom:935.834523px;}
.y42{bottom:938.799277px;}
.ydf{bottom:941.146637px;}
.y1ca{bottom:941.254156px;}
.y284{bottom:941.797776px;}
.yaa{bottom:944.516649px;}
.y23d{bottom:948.580773px;}
.ye2{bottom:953.220154px;}
.y41{bottom:953.797776px;}
.y1c9{bottom:956.254156px;}
.y283{bottom:956.796276px;}
.ye3{bottom:957.435425px;}
.y23c{bottom:961.327023px;}
.ya0{bottom:962.217407px;}
.y170{bottom:968.697773px;}
.y40{bottom:968.796276px;}
.ya3{bottom:971.175018px;}
.y1c8{bottom:971.252655px;}
.y282{bottom:971.794775px;}
.y23b{bottom:974.073273px;}
.yad{bottom:975.014374px;}
.ya9{bottom:982.480653px;}
.y3f{bottom:983.794775px;}
.y1c7{bottom:986.252655px;}
.y281{bottom:986.793274px;}
.y23a{bottom:986.819523px;}
.y3e{bottom:998.794775px;}
.y201{bottom:998.797776px;}
.y18e{bottom:998.802279px;}
.y239{bottom:999.565773px;}
.y280{bottom:1001.793274px;}
.yfd{bottom:1010.897827px;}
.y238{bottom:1012.312023px;}
.y200{bottom:1013.796276px;}
.y1c6{bottom:1013.797776px;}
.y3d{bottom:1013.799277px;}
.y18d{bottom:1013.800778px;}
.y179{bottom:1014.459869px;}
.y16f{bottom:1014.774922px;}
.yaf{bottom:1018.737762px;}
.ya8{bottom:1020.444657px;}
.yae{bottom:1021.510620px;}
.y237{bottom:1025.058273px;}
.y177{bottom:1027.472770px;}
.y1ff{bottom:1028.794775px;}
.y1c5{bottom:1028.796276px;}
.y3c{bottom:1028.797776px;}
.y18c{bottom:1028.799277px;}
.y236{bottom:1037.804524px;}
.yb0{bottom:1038.575610px;}
.yfc{bottom:1039.257294px;}
.y176{bottom:1040.321712px;}
.y1c4{bottom:1043.794775px;}
.y3b{bottom:1043.796276px;}
.y18b{bottom:1043.797776px;}
.y235{bottom:1050.550774px;}
.y175{bottom:1053.170654px;}
.yb1{bottom:1055.640600px;}
.ya7{bottom:1058.408661px;}
.y3a{bottom:1058.794775px;}
.y18a{bottom:1058.796276px;}
.y16e{bottom:1060.694092px;}
.y234{bottom:1063.297024px;}
.y39{bottom:1073.794775px;}
.y233{bottom:1076.043274px;}
.yfb{bottom:1077.582001px;}
.yb2{bottom:1078.457977px;}
.y38{bottom:1088.793274px;}
.y37{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.h23{height:16.204358px;}
.h18{height:18.036188px;}
.h26{height:19.194424px;}
.h22{height:23.146335px;}
.h21{height:23.468259px;}
.he{height:23.842749px;}
.h1a{height:24.504588px;}
.h17{height:26.121529px;}
.h1e{height:26.157192px;}
.h1f{height:26.164563px;}
.h20{height:27.938488px;}
.h7{height:28.050293px;}
.h11{height:35.394000px;}
.h27{height:35.733914px;}
.h16{height:36.072377px;}
.h10{height:36.681152px;}
.hb{height:38.826000px;}
.ha{height:38.838867px;}
.hf{height:41.158746px;}
.h2{height:43.140000px;}
.h9{height:43.154297px;}
.h4{height:44.218500px;}
.h2e{height:44.505000px;}
.h2d{height:45.090000px;}
.h3{height:45.744000px;}
.h2c{height:46.080000px;}
.h13{height:47.454000px;}
.h29{height:47.469727px;}
.h8{height:48.450259px;}
.hc{height:53.406000px;}
.h24{height:54.029958px;}
.h28{height:54.071981px;}
.hd{height:54.108000px;}
.h19{height:55.296000px;}
.h1c{height:55.876538px;}
.h1d{height:60.260373px;}
.h15{height:62.193905px;}
.h2a{height:76.913984px;}
.h2b{height:76.937997px;}
.h12{height:77.652000px;}
.h5{height:112.164000px;}
.h6{height:112.201172px;}
.h25{height:272.851501px;}
.h1b{height:340.219505px;}
.h14{height:384.183014px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w4{width:273.000000px;}
.w3{width:450.001511px;}
.w2{width:594.001511px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:5.646904px;}
.xb{left:14.081385px;}
.x2{left:61.191450px;}
.x41{left:91.710892px;}
.xc{left:140.952747px;}
.x4{left:233.456406px;}
.x14{left:234.523361px;}
.x2a{left:246.486740px;}
.x40{left:248.038598px;}
.x3f{left:250.230904px;}
.xa{left:251.460740px;}
.x3a{left:260.475151px;}
.x2c{left:266.223907px;}
.x35{left:267.376896px;}
.x42{left:268.608765px;}
.x36{left:295.541405px;}
.x45{left:300.594589px;}
.x3c{left:319.494598px;}
.x11{left:321.757050px;}
.xe{left:324.316795px;}
.x1d{left:332.219212px;}
.x2b{left:335.783358px;}
.x37{left:337.123947px;}
.x9{left:351.902550px;}
.x10{left:362.281952px;}
.x34{left:367.399361px;}
.x31{left:389.699707px;}
.x5{left:399.297729px;}
.x33{left:400.938171px;}
.x3b{left:403.807480px;}
.x3d{left:420.287979px;}
.x2d{left:423.928482px;}
.x20{left:429.486008px;}
.x19{left:431.476501px;}
.x2f{left:445.523849px;}
.x21{left:447.300313px;}
.xf{left:459.113983px;}
.x22{left:461.862032px;}
.x7{left:473.078979px;}
.x23{left:476.811593px;}
.x1b{left:495.585022px;}
.x24{left:496.935325px;}
.x1c{left:498.997513px;}
.xd{left:501.130508px;}
.x25{left:514.564525px;}
.x26{left:527.980346px;}
.x27{left:538.522607px;}
.x28{left:550.210767px;}
.x39{left:564.191656px;}
.x29{left:567.068848px;}
.x12{left:582.160554px;}
.x3{left:584.586594px;}
.x13{left:585.789092px;}
.x30{left:611.332352px;}
.x38{left:621.680832px;}
.x1a{left:667.492493px;}
.x2e{left:668.820007px;}
.x32{left:673.296432px;}
.x17{left:678.157516px;}
.x18{left:683.058281px;}
.x16{left:708.869980px;}
.x6{left:726.405579px;}
.x15{left:747.048019px;}
.x1e{left:752.593506px;}
.x8{left:808.183777px;}
.x43{left:816.003571px;}
.x44{left:817.278168px;}
.x1f{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v1{vertical-align:-18.133301pt;}
.v9{vertical-align:-16.332521pt;}
.v4{vertical-align:-15.413330pt;}
.v8{vertical-align:-9.616025pt;}
.v7{vertical-align:-1.373542pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.846964pt;}
.v3{vertical-align:16.165317pt;}
.v2{vertical-align:18.133301pt;}
.v5{vertical-align:32.704102pt;}
.ls40{letter-spacing:-4.560000pt;}
.ls8f{letter-spacing:-1.824000pt;}
.ls46{letter-spacing:-1.751787pt;}
.lsb0{letter-spacing:-1.560000pt;}
.ls90{letter-spacing:-1.488000pt;}
.ls8c{letter-spacing:-1.296000pt;}
.ls8b{letter-spacing:-1.248000pt;}
.lsb9{letter-spacing:-1.200000pt;}
.ls59{letter-spacing:-1.190950pt;}
.ls91{letter-spacing:-1.152000pt;}
.ls60{letter-spacing:-1.116003pt;}
.ls43{letter-spacing:-1.051072pt;}
.ls48{letter-spacing:-1.019221pt;}
.ls77{letter-spacing:-0.936171pt;}
.ls5c{letter-spacing:-0.915695pt;}
.ls61{letter-spacing:-0.887079pt;}
.ls54{letter-spacing:-0.877542pt;}
.ls97{letter-spacing:-0.864000pt;}
.ls4a{letter-spacing:-0.796267pt;}
.ls42{letter-spacing:-0.764416pt;}
.ls7a{letter-spacing:-0.725532pt;}
.ls5a{letter-spacing:-0.720838pt;}
.ls2f{letter-spacing:-0.720000pt;}
.ls79{letter-spacing:-0.702128pt;}
.lsbf{letter-spacing:-0.680000pt;}
.ls38{letter-spacing:-0.672000pt;}
.lsbc{letter-spacing:-0.640000pt;}
.ls5e{letter-spacing:-0.632269pt;}
.ls39{letter-spacing:-0.624000pt;}
.ls5d{letter-spacing:-0.612510pt;}
.ls3e{letter-spacing:-0.576000pt;}
.ls76{letter-spacing:-0.561702pt;}
.lsb5{letter-spacing:-0.560000pt;}
.ls4b{letter-spacing:-0.541461pt;}
.ls15{letter-spacing:-0.533333pt;}
.ls96{letter-spacing:-0.530400pt;}
.ls89{letter-spacing:-0.528000pt;}
.lsb7{letter-spacing:-0.520000pt;}
.ls47{letter-spacing:-0.509611pt;}
.ls58{letter-spacing:-0.501453pt;}
.ls68{letter-spacing:-0.486463pt;}
.ls3c{letter-spacing:-0.480000pt;}
.ls45{letter-spacing:-0.477760pt;}
.ls5b{letter-spacing:-0.457847pt;}
.lsaf{letter-spacing:-0.440000pt;}
.ls55{letter-spacing:-0.438771pt;}
.ls3d{letter-spacing:-0.432000pt;}
.ls6b{letter-spacing:-0.429232pt;}
.ls95{letter-spacing:-0.426667pt;}
.lsb2{letter-spacing:-0.400000pt;}
.ls52{letter-spacing:-0.384000pt;}
.ls78{letter-spacing:-0.374468pt;}
.lsbe{letter-spacing:-0.360000pt;}
.ls8a{letter-spacing:-0.343200pt;}
.ls51{letter-spacing:-0.336000pt;}
.ls82{letter-spacing:-0.312000pt;}
.ls50{letter-spacing:-0.288000pt;}
.ls4f{letter-spacing:-0.266667pt;}
.ls8d{letter-spacing:-0.249600pt;}
.ls4d{letter-spacing:-0.240000pt;}
.ls2c{letter-spacing:-0.192000pt;}
.lsb1{letter-spacing:-0.160000pt;}
.lsa3{letter-spacing:-0.156000pt;}
.ls2a{letter-spacing:-0.144000pt;}
.ls3a{letter-spacing:-0.124800pt;}
.lsb4{letter-spacing:-0.120000pt;}
.ls6f{letter-spacing:-0.106667pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls30{letter-spacing:-0.093600pt;}
.lsb6{letter-spacing:-0.080000pt;}
.ls81{letter-spacing:-0.053333pt;}
.ls2b{letter-spacing:-0.048000pt;}
.lsc0{letter-spacing:-0.040000pt;}
.ls70{letter-spacing:-0.031200pt;}
.ls14{letter-spacing:0.000000pt;}
.ls9e{letter-spacing:0.000074pt;}
.ls75{letter-spacing:0.000275pt;}
.ls74{letter-spacing:0.000357pt;}
.ls2{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.012405pt;}
.ls87{letter-spacing:0.016529pt;}
.ls1a{letter-spacing:0.021884pt;}
.lsc1{letter-spacing:0.026000pt;}
.ls33{letter-spacing:0.031200pt;}
.ls1c{letter-spacing:0.032138pt;}
.lsad{letter-spacing:0.040000pt;}
.ls1b{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.052138pt;}
.ls85{letter-spacing:0.053333pt;}
.ls7f{letter-spacing:0.062399pt;}
.ls92{letter-spacing:0.062400pt;}
.lsaa{letter-spacing:0.080000pt;}
.ls1f{letter-spacing:0.081643pt;}
.lsf{letter-spacing:0.090667pt;}
.ls93{letter-spacing:0.093600pt;}
.ls21{letter-spacing:0.096000pt;}
.ls3f{letter-spacing:0.106667pt;}
.lsae{letter-spacing:0.120000pt;}
.lse{letter-spacing:0.126927pt;}
.lsa2{letter-spacing:0.134387pt;}
.ls3b{letter-spacing:0.143999pt;}
.ls35{letter-spacing:0.144000pt;}
.ls31{letter-spacing:0.156000pt;}
.ls8e{letter-spacing:0.160000pt;}
.ls6c{letter-spacing:0.168532pt;}
.ls20{letter-spacing:0.172789pt;}
.ls23{letter-spacing:0.187200pt;}
.ls86{letter-spacing:0.188877pt;}
.ls18{letter-spacing:0.192000pt;}
.lsbb{letter-spacing:0.200000pt;}
.ls7c{letter-spacing:0.201084pt;}
.ls9{letter-spacing:0.217653pt;}
.ls8{letter-spacing:0.218399pt;}
.lsd{letter-spacing:0.226667pt;}
.ls84{letter-spacing:0.239989pt;}
.ls24{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.249600pt;}
.ls25{letter-spacing:0.249601pt;}
.ls6a{letter-spacing:0.257539pt;}
.lsa1{letter-spacing:0.263971pt;}
.ls5{letter-spacing:0.265604pt;}
.ls11{letter-spacing:0.277154pt;}
.ls2d{letter-spacing:0.280800pt;}
.ls17{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.292698pt;}
.lsa{letter-spacing:0.308079pt;}
.lsc{letter-spacing:0.308242pt;}
.ls80{letter-spacing:0.312000pt;}
.ls7b{letter-spacing:0.320000pt;}
.ls73{letter-spacing:0.327660pt;}
.ls7{letter-spacing:0.336000pt;}
.lsa0{letter-spacing:0.336001pt;}
.ls32{letter-spacing:0.343200pt;}
.lsa8{letter-spacing:0.360000pt;}
.ls83{letter-spacing:0.374400pt;}
.ls6{letter-spacing:0.384000pt;}
.ls9d{letter-spacing:0.384001pt;}
.lsbd{letter-spacing:0.400000pt;}
.ls6d{letter-spacing:0.403232pt;}
.ls37{letter-spacing:0.405600pt;}
.ls1d{letter-spacing:0.432000pt;}
.ls5f{letter-spacing:0.434685pt;}
.lsba{letter-spacing:0.440000pt;}
.ls12{letter-spacing:0.453333pt;}
.ls69{letter-spacing:0.457847pt;}
.ls9b{letter-spacing:0.470386pt;}
.ls49{letter-spacing:0.477760pt;}
.ls6e{letter-spacing:0.479999pt;}
.ls2e{letter-spacing:0.480000pt;}
.ls99{letter-spacing:0.484775pt;}
.ls64{letter-spacing:0.486463pt;}
.lsb{letter-spacing:0.498667pt;}
.lsa6{letter-spacing:0.499200pt;}
.ls53{letter-spacing:0.501453pt;}
.ls9f{letter-spacing:0.508793pt;}
.ls44{letter-spacing:0.509611pt;}
.lsb8{letter-spacing:0.520000pt;}
.ls1e{letter-spacing:0.528000pt;}
.lsa9{letter-spacing:0.560000pt;}
.ls34{letter-spacing:0.576000pt;}
.ls57{letter-spacing:0.595475pt;}
.ls36{letter-spacing:0.624000pt;}
.ls71{letter-spacing:0.640000pt;}
.ls4e{letter-spacing:0.672000pt;}
.ls41{letter-spacing:0.720000pt;}
.lsab{letter-spacing:0.728014pt;}
.ls9c{letter-spacing:0.768000pt;}
.lsc2{letter-spacing:0.800000pt;}
.ls9a{letter-spacing:0.816000pt;}
.ls56{letter-spacing:0.846202pt;}
.ls22{letter-spacing:0.864000pt;}
.ls7d{letter-spacing:0.912000pt;}
.ls94{letter-spacing:0.960000pt;}
.lsb3{letter-spacing:1.040000pt;}
.ls98{letter-spacing:1.045337pt;}
.ls7e{letter-spacing:1.056000pt;}
.ls26{letter-spacing:1.152000pt;}
.lsac{letter-spacing:1.160000pt;}
.lsa5{letter-spacing:1.200000pt;}
.ls72{letter-spacing:1.209648pt;}
.lsa4{letter-spacing:1.226667pt;}
.ls29{letter-spacing:1.248000pt;}
.lsa7{letter-spacing:1.440000pt;}
.ls28{letter-spacing:1.584000pt;}
.ls27{letter-spacing:1.600000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls19{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.lsc3{letter-spacing:4.106667pt;}
.ls88{letter-spacing:5.440000pt;}
.ls65{letter-spacing:51.250299pt;}
.ls67{letter-spacing:84.673166pt;}
.ls63{letter-spacing:101.727982pt;}
.ls66{letter-spacing:109.883386pt;}
.ls62{letter-spacing:143.249023pt;}
.ls4c{letter-spacing:383.376207pt;}
.ws76{word-spacing:-151.204122pt;}
.ws8d{word-spacing:-143.249023pt;}
.ws78{word-spacing:-117.838485pt;}
.ws8e{word-spacing:-101.727982pt;}
.ws7a{word-spacing:-92.628266pt;}
.ws77{word-spacing:-59.205399pt;}
.ws1{word-spacing:-13.393333pt;}
.ws1e{word-spacing:-13.066667pt;}
.ws29{word-spacing:-12.085333pt;}
.ws64{word-spacing:-12.000000pt;}
.wsb9{word-spacing:-11.568000pt;}
.ws92{word-spacing:-11.520000pt;}
.ws9b{word-spacing:-11.472000pt;}
.ws6{word-spacing:-11.328000pt;}
.wsa8{word-spacing:-11.280000pt;}
.ws96{word-spacing:-11.184000pt;}
.wsb8{word-spacing:-11.136000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws2b{word-spacing:-11.040000pt;}
.ws52{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws27{word-spacing:-10.944000pt;}
.ws23{word-spacing:-10.896000pt;}
.ws1f{word-spacing:-10.848000pt;}
.ws2a{word-spacing:-10.800000pt;}
.wsaa{word-spacing:-10.752000pt;}
.ws82{word-spacing:-10.560000pt;}
.ws4a{word-spacing:-10.512000pt;}
.ws4{word-spacing:-10.453333pt;}
.ws65{word-spacing:-10.224000pt;}
.ws21{word-spacing:-10.176000pt;}
.wsc0{word-spacing:-10.032000pt;}
.wsbc{word-spacing:-9.840000pt;}
.wsb5{word-spacing:-9.696000pt;}
.wsd8{word-spacing:-9.560000pt;}
.wsbb{word-spacing:-9.504000pt;}
.ws4e{word-spacing:-9.364096pt;}
.ws50{word-spacing:-9.332246pt;}
.wsd9{word-spacing:-9.320000pt;}
.wsb7{word-spacing:-9.168000pt;}
.wsee{word-spacing:-9.160000pt;}
.wsde{word-spacing:-9.080000pt;}
.wsd5{word-spacing:-9.000000pt;}
.wseb{word-spacing:-8.960000pt;}
.wsdb{word-spacing:-8.920000pt;}
.ws4b{word-spacing:-8.854486pt;}
.wsf8{word-spacing:-8.800000pt;}
.wsdc{word-spacing:-8.680000pt;}
.wsf4{word-spacing:-8.640000pt;}
.wsf6{word-spacing:-8.560000pt;}
.wsd7{word-spacing:-8.520000pt;}
.wsda{word-spacing:-8.480000pt;}
.ws51{word-spacing:-8.376726pt;}
.ws80{word-spacing:-8.212639pt;}
.ws4c{word-spacing:-8.090069pt;}
.wsd6{word-spacing:-7.960000pt;}
.ws74{word-spacing:-7.955099pt;}
.ws4f{word-spacing:-7.835264pt;}
.ws4d{word-spacing:-7.803413pt;}
.wsa0{word-spacing:-7.800000pt;}
.wsc9{word-spacing:-7.581600pt;}
.wsbd{word-spacing:-7.519200pt;}
.ws6d{word-spacing:-7.497252pt;}
.ws2c{word-spacing:-7.488000pt;}
.ws7b{word-spacing:-7.468637pt;}
.wsba{word-spacing:-7.456800pt;}
.ws26{word-spacing:-7.425600pt;}
.wsa9{word-spacing:-7.394400pt;}
.ws20{word-spacing:-7.363200pt;}
.ws25{word-spacing:-7.300800pt;}
.wsa7{word-spacing:-7.269600pt;}
.ws24{word-spacing:-7.238400pt;}
.wsbe{word-spacing:-7.176000pt;}
.wsa1{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws28{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws75{word-spacing:-7.068020pt;}
.ws91{word-spacing:-7.051200pt;}
.ws7d{word-spacing:-7.039405pt;}
.ws22{word-spacing:-6.988800pt;}
.ws2d{word-spacing:-6.957600pt;}
.wsc8{word-spacing:-6.926400pt;}
.wsb6{word-spacing:-6.832800pt;}
.wsab{word-spacing:-6.770400pt;}
.wsb4{word-spacing:-6.739200pt;}
.wsbf{word-spacing:-6.614400pt;}
.ws9d{word-spacing:-6.506386pt;}
.ws9c{word-spacing:-5.944684pt;}
.wsdd{word-spacing:-5.928000pt;}
.ws7{word-spacing:-5.893333pt;}
.ws9e{word-spacing:-5.804258pt;}
.ws9f{word-spacing:-5.780854pt;}
.ws70{word-spacing:-5.492835pt;}
.wsc1{word-spacing:-5.440000pt;}
.ws63{word-spacing:-4.896000pt;}
.ws71{word-spacing:-4.880325pt;}
.ws72{word-spacing:-4.860566pt;}
.wsfd{word-spacing:-4.106667pt;}
.wsd4{word-spacing:-3.754667pt;}
.wsfe{word-spacing:-3.520000pt;}
.wsa{word-spacing:-2.912000pt;}
.wsc{word-spacing:-2.400000pt;}
.wsaf{word-spacing:-1.776000pt;}
.ws94{word-spacing:-1.680000pt;}
.wsf{word-spacing:-1.632000pt;}
.ws42{word-spacing:-1.600000pt;}
.ws84{word-spacing:-1.584000pt;}
.wsad{word-spacing:-1.536000pt;}
.ws12{word-spacing:-1.488000pt;}
.ws11{word-spacing:-1.440000pt;}
.ws83{word-spacing:-1.392000pt;}
.wse4{word-spacing:-1.360000pt;}
.ws5a{word-spacing:-1.344000pt;}
.ws86{word-spacing:-1.296000pt;}
.ws98{word-spacing:-1.248000pt;}
.wsff{word-spacing:-1.232000pt;}
.wscc{word-spacing:-1.226667pt;}
.ws41{word-spacing:-1.200000pt;}
.ws3f{word-spacing:-1.152000pt;}
.ws1d{word-spacing:-1.133333pt;}
.wsb{word-spacing:-1.120000pt;}
.ws14{word-spacing:-1.104000pt;}
.ws35{word-spacing:-1.056000pt;}
.wse{word-spacing:-1.008000pt;}
.wse8{word-spacing:-0.960000pt;}
.wsdf{word-spacing:-0.920000pt;}
.ws33{word-spacing:-0.912000pt;}
.ws69{word-spacing:-0.877542pt;}
.ws5b{word-spacing:-0.864000pt;}
.ws9{word-spacing:-0.853333pt;}
.ws30{word-spacing:-0.816000pt;}
.ws53{word-spacing:-0.768000pt;}
.wsea{word-spacing:-0.760000pt;}
.ws2e{word-spacing:-0.720000pt;}
.ws95{word-spacing:-0.672000pt;}
.ws97{word-spacing:-0.640000pt;}
.ws6a{word-spacing:-0.626816pt;}
.ws54{word-spacing:-0.624000pt;}
.ws89{word-spacing:-0.595475pt;}
.wsc7{word-spacing:-0.586667pt;}
.ws18{word-spacing:-0.576000pt;}
.wsc5{word-spacing:-0.533333pt;}
.ws66{word-spacing:-0.532794pt;}
.ws2f{word-spacing:-0.528000pt;}
.wse3{word-spacing:-0.520000pt;}
.ws5d{word-spacing:-0.509611pt;}
.ws90{word-spacing:-0.486463pt;}
.ws3c{word-spacing:-0.480000pt;}
.ws1c{word-spacing:-0.453333pt;}
.wse9{word-spacing:-0.440000pt;}
.ws8b{word-spacing:-0.434685pt;}
.ws48{word-spacing:-0.432000pt;}
.ws1a{word-spacing:-0.408000pt;}
.ws16{word-spacing:-0.384000pt;}
.wsa4{word-spacing:-0.374468pt;}
.wse1{word-spacing:-0.360000pt;}
.ws32{word-spacing:-0.336000pt;}
.wsac{word-spacing:-0.320000pt;}
.ws38{word-spacing:-0.288000pt;}
.ws17{word-spacing:-0.240000pt;}
.ws3e{word-spacing:-0.218400pt;}
.ws15{word-spacing:-0.192000pt;}
.wsc2{word-spacing:-0.160000pt;}
.ws3d{word-spacing:-0.156000pt;}
.ws13{word-spacing:-0.144000pt;}
.ws58{word-spacing:-0.106667pt;}
.ws10{word-spacing:-0.096000pt;}
.ws1b{word-spacing:-0.090667pt;}
.wsf2{word-spacing:-0.080000pt;}
.ws31{word-spacing:-0.048000pt;}
.wsf5{word-spacing:-0.040000pt;}
.ws67{word-spacing:-0.031341pt;}
.wsb2{word-spacing:-0.031200pt;}
.ws8{word-spacing:0.000000pt;}
.wse2{word-spacing:0.040000pt;}
.ws37{word-spacing:0.048000pt;}
.wsb3{word-spacing:0.053333pt;}
.wsf1{word-spacing:0.080000pt;}
.ws39{word-spacing:0.093600pt;}
.ws46{word-spacing:0.096000pt;}
.ws93{word-spacing:0.106667pt;}
.ws55{word-spacing:0.144000pt;}
.wse5{word-spacing:0.160000pt;}
.ws34{word-spacing:0.192000pt;}
.wsed{word-spacing:0.200000pt;}
.ws9a{word-spacing:0.240000pt;}
.ws85{word-spacing:0.266667pt;}
.ws3b{word-spacing:0.288000pt;}
.ws19{word-spacing:0.317333pt;}
.ws44{word-spacing:0.336000pt;}
.wsa3{word-spacing:0.374468pt;}
.ws87{word-spacing:0.384000pt;}
.ws68{word-spacing:0.407430pt;}
.wsd0{word-spacing:0.426667pt;}
.ws6f{word-spacing:0.429232pt;}
.ws99{word-spacing:0.432000pt;}
.wsec{word-spacing:0.440000pt;}
.ws8f{word-spacing:0.457847pt;}
.ws6b{word-spacing:0.470112pt;}
.ws47{word-spacing:0.480000pt;}
.ws5f{word-spacing:0.509611pt;}
.ws57{word-spacing:0.528000pt;}
.wsd{word-spacing:0.533333pt;}
.ws62{word-spacing:0.541461pt;}
.wsf0{word-spacing:0.560000pt;}
.wsa6{word-spacing:0.561702pt;}
.ws56{word-spacing:0.576000pt;}
.wsc3{word-spacing:0.624000pt;}
.wse0{word-spacing:0.640000pt;}
.ws36{word-spacing:0.672000pt;}
.wsa5{word-spacing:0.702128pt;}
.wsc4{word-spacing:0.720000pt;}
.ws8a{word-spacing:0.720838pt;}
.ws5c{word-spacing:0.768000pt;}
.ws61{word-spacing:0.796267pt;}
.wscf{word-spacing:0.816000pt;}
.wsd3{word-spacing:0.864000pt;}
.ws88{word-spacing:0.877542pt;}
.ws6e{word-spacing:0.887079pt;}
.ws49{word-spacing:0.912000pt;}
.wsa2{word-spacing:0.936171pt;}
.wsef{word-spacing:0.960000pt;}
.ws3a{word-spacing:1.008000pt;}
.ws60{word-spacing:1.051072pt;}
.wsae{word-spacing:1.056000pt;}
.wsfc{word-spacing:1.104000pt;}
.ws8c{word-spacing:1.116003pt;}
.wsfa{word-spacing:1.120000pt;}
.wsb0{word-spacing:1.152000pt;}
.ws6c{word-spacing:1.159610pt;}
.wsf9{word-spacing:1.200000pt;}
.wsca{word-spacing:1.226667pt;}
.wscb{word-spacing:1.248000pt;}
.wsc6{word-spacing:1.296000pt;}
.wsd1{word-spacing:1.488000pt;}
.wsf7{word-spacing:1.520000pt;}
.wsb1{word-spacing:1.632000pt;}
.wsd2{word-spacing:1.680000pt;}
.wsfb{word-spacing:1.728000pt;}
.ws5e{word-spacing:1.751787pt;}
.ws40{word-spacing:1.776000pt;}
.wsce{word-spacing:1.824000pt;}
.wscd{word-spacing:1.920000pt;}
.wsf3{word-spacing:2.000000pt;}
.ws45{word-spacing:2.112000pt;}
.wse6{word-spacing:2.720000pt;}
.ws43{word-spacing:2.880000pt;}
.wse7{word-spacing:3.160000pt;}
.ws59{word-spacing:4.560000pt;}
.ws7e{word-spacing:5.200198pt;}
.ws7c{word-spacing:41.349351pt;}
.ws81{word-spacing:46.099515pt;}
.ws79{word-spacing:57.609945pt;}
.ws73{word-spacing:120.270808pt;}
.ws7f{word-spacing:197.281557pt;}
._11{margin-left:-1191.183162pt;}
._f{margin-left:-1042.049510pt;}
._d{margin-left:-849.484994pt;}
._c{margin-left:-818.394144pt;}
._e{margin-left:-464.460780pt;}
._1a{margin-left:-175.324207pt;}
._17{margin-left:-142.361942pt;}
._19{margin-left:-110.770468pt;}
._1c{margin-left:-84.202101pt;}
._18{margin-left:-50.792456pt;}
._23{margin-left:-11.760000pt;}
._26{margin-left:-10.520000pt;}
._21{margin-left:-9.240000pt;}
._8{margin-left:-7.612800pt;}
._1{margin-left:-6.574918pt;}
._4{margin-left:-4.996232pt;}
._6{margin-left:-4.105036pt;}
._2{margin-left:-3.025103pt;}
._0{margin-left:-1.578682pt;}
._5{width:1.074164pt;}
._7{width:2.039482pt;}
._14{width:3.474746pt;}
._9{width:4.458667pt;}
._15{width:5.727110pt;}
._25{width:6.692798pt;}
._16{width:7.634808pt;}
._13{width:8.872202pt;}
._22{width:10.401103pt;}
._1f{width:11.520000pt;}
._12{width:13.583993pt;}
._24{width:14.920002pt;}
._20{width:16.018684pt;}
._3{width:38.155710pt;}
._1e{width:41.236823pt;}
._b{width:42.205960pt;}
._1d{width:43.194381pt;}
._a{width:44.203260pt;}
._1b{width:342.183734pt;}
._10{width:651.427831pt;}
.fs12{font-size:19.758400pt;}
.fse{font-size:21.991999pt;}
.fs14{font-size:23.404266pt;}
.fs17{font-size:26.000000pt;}
.fs11{font-size:28.615466pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fsf{font-size:31.340800pt;}
.fsd{font-size:31.850667pt;}
.fs13{font-size:34.066134pt;}
.fs4{font-size:34.666667pt;}
.fs16{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fsc{font-size:43.983999pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs10{font-size:68.131734pt;}
.fsb{font-size:75.834666pt;}
.fs15{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y173{bottom:2.202393pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y32{bottom:60.718132pt;}
.y7a{bottom:60.934668pt;}
.y1c3{bottom:60.935997pt;}
.y1fe{bottom:60.937331pt;}
.yd6{bottom:60.950672pt;}
.y99{bottom:61.829604pt;}
.y156{bottom:65.824268pt;}
.y27f{bottom:68.490935pt;}
.y16b{bottom:69.576939pt;}
.y31{bottom:74.051466pt;}
.y1c2{bottom:74.267997pt;}
.y1fd{bottom:74.269331pt;}
.y79{bottom:74.274667pt;}
.yd5{bottom:74.282671pt;}
.y98{bottom:75.161604pt;}
.y155{bottom:79.156267pt;}
.y232{bottom:79.818932pt;}
.y27e{bottom:81.822934pt;}
.y16a{bottom:82.908938pt;}
.y11b{bottom:84.496271pt;}
.y30{bottom:87.384799pt;}
.y1fc{bottom:87.601330pt;}
.y78{bottom:87.606666pt;}
.y1c1{bottom:87.612002pt;}
.yd4{bottom:87.614671pt;}
.y142{bottom:87.981067pt;}
.y97{bottom:88.493603pt;}
.yf0{bottom:89.198812pt;}
.y154{bottom:92.488267pt;}
.y231{bottom:93.150931pt;}
.y27d{bottom:95.154933pt;}
.y169{bottom:96.240938pt;}
.y11a{bottom:97.828270pt;}
.y2f{bottom:100.718132pt;}
.y77{bottom:100.938665pt;}
.y1fb{bottom:100.940000pt;}
.y1c0{bottom:100.944002pt;}
.yd3{bottom:100.946670pt;}
.y141{bottom:101.313067pt;}
.y96{bottom:101.825602pt;}
.y153{bottom:105.820266pt;}
.y230{bottom:106.482930pt;}
.y27c{bottom:108.486933pt;}
.y168{bottom:109.572937pt;}
.yec{bottom:109.978841pt;}
.y119{bottom:111.160270pt;}
.y2e{bottom:114.051466pt;}
.y76{bottom:114.270665pt;}
.y1fa{bottom:114.271999pt;}
.y1bf{bottom:114.276001pt;}
.yd2{bottom:114.278669pt;}
.y140{bottom:114.645066pt;}
.y95{bottom:115.157601pt;}
.y16d{bottom:115.481608pt;}
.y152{bottom:119.152265pt;}
.y22f{bottom:119.816264pt;}
.y27b{bottom:121.818932pt;}
.y118{bottom:124.492269pt;}
.y2d{bottom:127.384799pt;}
.y75{bottom:127.602664pt;}
.y1f9{bottom:127.603998pt;}
.y1be{bottom:127.608000pt;}
.yd1{bottom:127.610668pt;}
.y13f{bottom:127.977065pt;}
.y94{bottom:128.489601pt;}
.ye9{bottom:130.758789pt;}
.y151{bottom:132.484265pt;}
.y27a{bottom:135.150931pt;}
.y117{bottom:137.824268pt;}
.y2c{bottom:140.718132pt;}
.y74{bottom:140.934663pt;}
.y1f8{bottom:140.935997pt;}
.y1bd{bottom:140.940000pt;}
.yd0{bottom:140.942668pt;}
.y13e{bottom:141.309065pt;}
.y93{bottom:141.821600pt;}
.y22e{bottom:143.817598pt;}
.y150{bottom:145.816264pt;}
.y279{bottom:148.482930pt;}
.y116{bottom:151.156267pt;}
.ye6{bottom:151.538818pt;}
.y1f7{bottom:154.267997pt;}
.y73{bottom:154.270665pt;}
.y1bc{bottom:154.271999pt;}
.ycf{bottom:154.274667pt;}
.y13d{bottom:154.641064pt;}
.y92{bottom:155.153599pt;}
.y22d{bottom:157.157601pt;}
.y2b{bottom:157.899465pt;}
.y278{bottom:161.816264pt;}
.y189{bottom:163.099880pt;}
.y17a{bottom:163.126139pt;}
.y115{bottom:164.488267pt;}
.y72{bottom:167.602664pt;}
.y1bb{bottom:167.603998pt;}
.yce{bottom:167.606666pt;}
.y13c{bottom:167.990406pt;}
.y91{bottom:168.485599pt;}
.y22c{bottom:170.489601pt;}
.ye4{bottom:172.320394pt;}
.y178{bottom:174.689372pt;}
.y14f{bottom:175.156267pt;}
.y188{bottom:176.431879pt;}
.y114{bottom:177.820266pt;}
.y71{bottom:180.934663pt;}
.y1ba{bottom:180.935997pt;}
.ycd{bottom:180.938665pt;}
.y13b{bottom:181.322405pt;}
.y90{bottom:181.817598pt;}
.y22b{bottom:183.821600pt;}
.y277{bottom:185.826264pt;}
.y14e{bottom:188.488267pt;}
.y187{bottom:189.763878pt;}
.y113{bottom:191.152265pt;}
.y70{bottom:194.266663pt;}
.y1b9{bottom:194.267997pt;}
.y1f6{bottom:194.269331pt;}
.ycc{bottom:194.270665pt;}
.y13a{bottom:194.654404pt;}
.y8f{bottom:195.157601pt;}
.y2a{bottom:196.609610pt;}
.y22a{bottom:197.153599pt;}
.y276{bottom:197.156264pt;}
.y14d{bottom:201.820266pt;}
.y186{bottom:203.095878pt;}
.y112{bottom:204.484265pt;}
.y1b8{bottom:207.599996pt;}
.y1f5{bottom:207.601330pt;}
.ycb{bottom:207.602664pt;}
.y139{bottom:207.986404pt;}
.y275{bottom:208.486264pt;}
.y8e{bottom:208.489601pt;}
.y29{bottom:209.945612pt;}
.y229{bottom:210.485599pt;}
.y14c{bottom:215.152265pt;}
.y185{bottom:216.429211pt;}
.y111{bottom:217.817598pt;}
.y274{bottom:220.032904pt;}
.y1f4{bottom:220.933329pt;}
.yca{bottom:220.934663pt;}
.y6f{bottom:221.053470pt;}
.y138{bottom:221.318403pt;}
.y8d{bottom:221.821600pt;}
.y28{bottom:223.277611pt;}
.y228{bottom:223.817598pt;}
.y14b{bottom:228.484265pt;}
.y184{bottom:229.763878pt;}
.y110{bottom:231.150931pt;}
.y273{bottom:231.362904pt;}
.yc9{bottom:234.266663pt;}
.y1b7{bottom:234.342666pt;}
.y6e{bottom:234.385469pt;}
.y137{bottom:234.650402pt;}
.y8c{bottom:235.153599pt;}
.y27{bottom:236.609610pt;}
.y227{bottom:237.149597pt;}
.y14a{bottom:241.816264pt;}
.y272{bottom:242.692904pt;}
.y183{bottom:243.095878pt;}
.y10f{bottom:244.484265pt;}
.y1f3{bottom:245.417861pt;}
.y1b6{bottom:247.674665pt;}
.y6d{bottom:247.717468pt;}
.y136{bottom:247.982402pt;}
.y8b{bottom:248.485599pt;}
.y26{bottom:249.949614pt;}
.y271{bottom:254.022904pt;}
.y149{bottom:255.149597pt;}
.y182{bottom:256.429211pt;}
.y10e{bottom:257.817598pt;}
.y1f2{bottom:258.749860pt;}
.y1b5{bottom:261.006664pt;}
.y6c{bottom:261.049468pt;}
.y135{bottom:261.314401pt;}
.y8a{bottom:261.817598pt;}
.yc8{bottom:262.725473pt;}
.y25{bottom:263.281613pt;}
.y270{bottom:265.352904pt;}
.y226{bottom:266.506964pt;}
.y10d{bottom:271.150931pt;}
.y1f1{bottom:272.081860pt;}
.y181{bottom:273.844340pt;}
.y1b4{bottom:274.341474pt;}
.y6b{bottom:274.381467pt;}
.y134{bottom:274.646400pt;}
.y89{bottom:275.149597pt;}
.yc7{bottom:276.057472pt;}
.y24{bottom:276.613613pt;}
.y26f{bottom:276.682904pt;}
.y225{bottom:279.838963pt;}
.y180{bottom:283.095878pt;}
.y10c{bottom:284.486933pt;}
.y1f0{bottom:285.413859pt;}
.y1b3{bottom:287.673474pt;}
.y6a{bottom:287.713466pt;}
.yde{bottom:287.803467pt;}
.y133{bottom:287.978399pt;}
.y26e{bottom:288.012904pt;}
.yc6{bottom:289.389471pt;}
.y23{bottom:289.945612pt;}
.y224{bottom:293.170962pt;}
.y17f{bottom:296.427877pt;}
.y10b{bottom:297.818932pt;}
.y26d{bottom:299.342904pt;}
.y167{bottom:300.181603pt;}
.y1b2{bottom:301.006807pt;}
.y69{bottom:301.045465pt;}
.y132{bottom:301.310399pt;}
.yc5{bottom:302.721470pt;}
.y22{bottom:303.277611pt;}
.y88{bottom:304.500294pt;}
.y223{bottom:306.502962pt;}
.y1ef{bottom:309.907587pt;}
.y26c{bottom:310.672904pt;}
.y10a{bottom:311.150931pt;}
.y166{bottom:313.513602pt;}
.y1b1{bottom:314.340140pt;}
.y68{bottom:314.377465pt;}
.y131{bottom:314.642398pt;}
.yc4{bottom:316.053470pt;}
.y21{bottom:316.609610pt;}
.y87{bottom:317.832293pt;}
.y222{bottom:319.834961pt;}
.y26b{bottom:322.002905pt;}
.y1ee{bottom:323.239586pt;}
.y9b{bottom:324.093058pt;}
.y109{bottom:324.482930pt;}
.yac{bottom:325.230509pt;}
.y165{bottom:326.864258pt;}
.y1b0{bottom:327.673474pt;}
.y67{bottom:327.709464pt;}
.y130{bottom:327.974397pt;}
.yc3{bottom:329.385469pt;}
.y20{bottom:329.980277pt;}
.y86{bottom:331.164292pt;}
.y221{bottom:333.166960pt;}
.y26a{bottom:333.332905pt;}
.y1ed{bottom:336.571586pt;}
.y164{bottom:340.196257pt;}
.y1af{bottom:341.016125pt;}
.y66{bottom:341.041463pt;}
.y12f{bottom:341.315735pt;}
.yc2{bottom:342.717468pt;}
.y1f{bottom:343.312276pt;}
.y85{bottom:344.496291pt;}
.y269{bottom:344.662905pt;}
.y220{bottom:346.498959pt;}
.y1ec{bottom:349.903585pt;}
.y163{bottom:353.528256pt;}
.y1ae{bottom:354.348124pt;}
.y65{bottom:354.374797pt;}
.y12e{bottom:354.647734pt;}
.y268{bottom:355.992905pt;}
.yc1{bottom:356.049468pt;}
.y84{bottom:357.828291pt;}
.y21f{bottom:359.830959pt;}
.y1eb{bottom:363.235584pt;}
.y162{bottom:366.860256pt;}
.y267{bottom:367.322905pt;}
.y1ad{bottom:367.680123pt;}
.y12d{bottom:367.979733pt;}
.yc0{bottom:369.381467pt;}
.y83{bottom:371.160290pt;}
.y21e{bottom:373.162958pt;}
.y1ea{bottom:376.567583pt;}
.y127{bottom:377.017889pt;}
.y266{bottom:378.652905pt;}
.y161{bottom:380.192255pt;}
.y1ac{bottom:381.012123pt;}
.y64{bottom:381.154954pt;}
.y12c{bottom:381.311733pt;}
.ybf{bottom:382.713466pt;}
.y82{bottom:384.492289pt;}
.y1e{bottom:385.312276pt;}
.y21d{bottom:386.494957pt;}
.y1e9{bottom:389.899583pt;}
.y265{bottom:389.982905pt;}
.y126{bottom:390.349888pt;}
.y160{bottom:393.524254pt;}
.y1ab{bottom:394.344122pt;}
.y63{bottom:394.486953pt;}
.y12b{bottom:394.643732pt;}
.ybe{bottom:396.045465pt;}
.y81{bottom:397.824288pt;}
.y21c{bottom:399.826957pt;}
.y1d{bottom:399.976276pt;}
.y264{bottom:401.312905pt;}
.y1e8{bottom:403.231582pt;}
.y125{bottom:403.681888pt;}
.y15f{bottom:406.856253pt;}
.y1aa{bottom:407.676121pt;}
.y62{bottom:407.818952pt;}
.y12a{bottom:407.975731pt;}
.ybd{bottom:409.377465pt;}
.y80{bottom:411.156288pt;}
.y263{bottom:412.642905pt;}
.y21b{bottom:413.158956pt;}
.y1c{bottom:414.640276pt;}
.y1e7{bottom:416.563581pt;}
.y124{bottom:417.013887pt;}
.y15e{bottom:420.188253pt;}
.y1a9{bottom:421.008121pt;}
.y61{bottom:421.150952pt;}
.y129{bottom:421.307731pt;}
.ybc{bottom:422.709464pt;}
.y262{bottom:423.972905pt;}
.y7f{bottom:424.488287pt;}
.y21a{bottom:426.490955pt;}
.y1b{bottom:429.304276pt;}
.y1e6{bottom:429.895580pt;}
.y123{bottom:430.345886pt;}
.y15d{bottom:433.520252pt;}
.y1a8{bottom:434.340120pt;}
.y60{bottom:434.489621pt;}
.y128{bottom:434.639730pt;}
.y261{bottom:435.302906pt;}
.ybb{bottom:436.041463pt;}
.y7e{bottom:437.820286pt;}
.y219{bottom:439.822954pt;}
.y1e5{bottom:443.227580pt;}
.y122{bottom:443.677885pt;}
.y1a{bottom:443.968276pt;}
.y260{bottom:446.632906pt;}
.y15c{bottom:446.852251pt;}
.y1a7{bottom:447.672119pt;}
.y5f{bottom:447.821620pt;}
.y7d{bottom:451.152286pt;}
.y218{bottom:453.154954pt;}
.y121{bottom:457.009885pt;}
.y25f{bottom:457.962906pt;}
.y19{bottom:458.632276pt;}
.y15b{bottom:460.184251pt;}
.y5e{bottom:461.153620pt;}
.y7c{bottom:464.484285pt;}
.y217{bottom:466.486953pt;}
.y1e4{bottom:467.709464pt;}
.y25e{bottom:469.292906pt;}
.y120{bottom:470.341884pt;}
.y18{bottom:473.296276pt;}
.y15a{bottom:473.516250pt;}
.y1a6{bottom:474.418812pt;}
.y5d{bottom:474.485619pt;}
.y7b{bottom:477.816284pt;}
.y216{bottom:479.818952pt;}
.y25d{bottom:480.622906pt;}
.y1e3{bottom:481.041463pt;}
.y11f{bottom:483.673883pt;}
.y159{bottom:486.848249pt;}
.y1a5{bottom:487.750811pt;}
.y5c{bottom:487.817618pt;}
.y17{bottom:487.960276pt;}
.y148{bottom:489.109453pt;}
.y25c{bottom:491.952906pt;}
.y215{bottom:493.150952pt;}
.y11e{bottom:497.005883pt;}
.y158{bottom:500.180248pt;}
.y1a4{bottom:501.082810pt;}
.y5b{bottom:501.150952pt;}
.y147{bottom:502.441453pt;}
.y16{bottom:502.624276pt;}
.y25b{bottom:503.282906pt;}
.y1e2{bottom:505.524519pt;}
.y214{bottom:506.484285pt;}
.y11d{bottom:510.337882pt;}
.y157{bottom:513.512248pt;}
.y1a3{bottom:514.414809pt;}
.y5a{bottom:514.484285pt;}
.y25a{bottom:514.612906pt;}
.y146{bottom:515.773452pt;}
.y15{bottom:517.288276pt;}
.y1e1{bottom:518.856518pt;}
.y213{bottom:519.817618pt;}
.y108{bottom:520.689610pt;}
.yba{bottom:521.606262pt;}
.y11c{bottom:523.669881pt;}
.y259{bottom:525.942906pt;}
.y1a2{bottom:527.746809pt;}
.y59{bottom:527.817618pt;}
.y145{bottom:529.105451pt;}
.y14{bottom:531.952276pt;}
.y1e0{bottom:532.189851pt;}
.y212{bottom:533.149618pt;}
.y107{bottom:534.021609pt;}
.yb9{bottom:534.938261pt;}
.y258{bottom:537.272906pt;}
.y1a1{bottom:541.078808pt;}
.y58{bottom:541.156288pt;}
.y144{bottom:542.437451pt;}
.y1df{bottom:545.523185pt;}
.y13{bottom:546.616276pt;}
.y106{bottom:547.353609pt;}
.yb8{bottom:548.270261pt;}
.y257{bottom:548.602907pt;}
.y1a0{bottom:554.426816pt;}
.y57{bottom:554.488287pt;}
.y143{bottom:555.769450pt;}
.y1de{bottom:558.855184pt;}
.y256{bottom:559.932907pt;}
.y105{bottom:560.685608pt;}
.y12{bottom:561.280276pt;}
.yb7{bottom:561.602260pt;}
.y211{bottom:562.484285pt;}
.y19f{bottom:567.758815pt;}
.y56{bottom:567.820286pt;}
.y255{bottom:571.262907pt;}
.y104{bottom:574.017607pt;}
.yb6{bottom:574.934259pt;}
.y210{bottom:575.818952pt;}
.y11{bottom:575.944276pt;}
.y19e{bottom:581.090814pt;}
.y55{bottom:581.152286pt;}
.y254{bottom:582.592907pt;}
.y1dd{bottom:583.337068pt;}
.y103{bottom:587.349606pt;}
.yb5{bottom:588.266259pt;}
.y20f{bottom:589.150952pt;}
.y10{bottom:590.608276pt;}
.y253{bottom:593.922907pt;}
.y19d{bottom:594.422814pt;}
.y54{bottom:594.484285pt;}
.y294{bottom:595.161583pt;}
.y1dc{bottom:596.674404pt;}
.y102{bottom:600.681606pt;}
.yb4{bottom:601.598258pt;}
.y20e{bottom:602.492249pt;}
.y252{bottom:605.252907pt;}
.y19c{bottom:607.754813pt;}
.y53{bottom:607.824248pt;}
.y293{bottom:608.493583pt;}
.y1db{bottom:610.006403pt;}
.y101{bottom:614.013605pt;}
.yb3{bottom:614.930257pt;}
.y20d{bottom:615.824248pt;}
.y251{bottom:616.582907pt;}
.ye{bottom:617.274942pt;}
.y19b{bottom:621.086812pt;}
.y52{bottom:621.156247pt;}
.yf{bottom:621.808268pt;}
.y292{bottom:621.825582pt;}
.y1da{bottom:623.338402pt;}
.y100{bottom:627.345604pt;}
.y250{bottom:627.912907pt;}
.y20c{bottom:629.156247pt;}
.yc{bottom:633.274942pt;}
.y19a{bottom:634.418812pt;}
.y51{bottom:634.488246pt;}
.y291{bottom:635.157581pt;}
.y1d9{bottom:636.670401pt;}
.yd{bottom:637.808268pt;}
.y24f{bottom:639.242907pt;}
.y9a{bottom:639.654663pt;}
.yff{bottom:640.677604pt;}
.y20b{bottom:642.488246pt;}
.y199{bottom:647.750811pt;}
.y50{bottom:647.820246pt;}
.y290{bottom:648.489580pt;}
.ya{bottom:649.274942pt;}
.y1d8{bottom:650.010364pt;}
.y24e{bottom:650.572907pt;}
.y9d{bottom:652.444784pt;}
.yb{bottom:653.808268pt;}
.yfe{bottom:654.009603pt;}
.y20a{bottom:655.820246pt;}
.y198{bottom:661.082810pt;}
.y4f{bottom:661.152245pt;}
.y28f{bottom:661.821580pt;}
.y24d{bottom:661.902908pt;}
.y1d7{bottom:663.342364pt;}
.y8{bottom:665.274943pt;}
.y209{bottom:669.152245pt;}
.y9{bottom:669.808268pt;}
.y35{bottom:673.012797pt;}
.y24c{bottom:673.232908pt;}
.y17e{bottom:673.894514pt;}
.y197{bottom:674.414809pt;}
.y4e{bottom:674.484244pt;}
.ya2{bottom:674.814595pt;}
.y28e{bottom:675.153579pt;}
.y1d6{bottom:676.674363pt;}
.ydd{bottom:678.733317pt;}
.y208{bottom:682.484244pt;}
.y24b{bottom:684.562908pt;}
.ydc{bottom:684.637954pt;}
.y17d{bottom:687.226513pt;}
.y196{bottom:687.746809pt;}
.y4d{bottom:687.825582pt;}
.yfa{bottom:688.214845pt;}
.y28d{bottom:688.485578pt;}
.y1d5{bottom:690.006362pt;}
.y34{bottom:691.678796pt;}
.y7{bottom:694.592232pt;}
.y207{bottom:695.816243pt;}
.y24a{bottom:695.892908pt;}
.yf5{bottom:697.924717pt;}
.yf7{bottom:697.926839pt;}
.yf6{bottom:700.141439pt;}
.y17c{bottom:700.559846pt;}
.y195{bottom:701.078808pt;}
.y4c{bottom:701.157581pt;}
.y28c{bottom:701.817578pt;}
.y1d4{bottom:703.338361pt;}
.y9c{bottom:703.444824pt;}
.y249{bottom:707.222908pt;}
.ydb{bottom:707.806641pt;}
.yf9{bottom:708.996827pt;}
.y33{bottom:710.344796pt;}
.y17b{bottom:713.891846pt;}
.y194{bottom:714.417478pt;}
.y4b{bottom:714.489580pt;}
.y28b{bottom:715.149577pt;}
.y1d3{bottom:716.670361pt;}
.y248{bottom:718.552908pt;}
.yd8{bottom:724.838423pt;}
.yd9{bottom:724.846260pt;}
.yd7{bottom:725.010824pt;}
.yda{bottom:725.018661pt;}
.y206{bottom:725.153579pt;}
.y193{bottom:727.749477pt;}
.y4a{bottom:727.821580pt;}
.yf3{bottom:729.266764pt;}
.yf4{bottom:729.437500pt;}
.yf8{bottom:729.778809pt;}
.y247{bottom:729.882908pt;}
.y1d2{bottom:730.006362pt;}
.yf2{bottom:734.037435pt;}
.y28a{bottom:734.488246pt;}
.y6{bottom:734.597566pt;}
.y205{bottom:738.485578pt;}
.y16c{bottom:738.615967pt;}
.y192{bottom:741.081476pt;}
.y49{bottom:741.153579pt;}
.y246{bottom:741.212908pt;}
.y1d1{bottom:743.338361pt;}
.y9f{bottom:747.050130pt;}
.y289{bottom:747.820246pt;}
.y174{bottom:749.873047pt;}
.y204{bottom:751.817578pt;}
.y245{bottom:752.542908pt;}
.y191{bottom:754.413475pt;}
.y48{bottom:754.485578pt;}
.y1d0{bottom:756.670361pt;}
.ya5{bottom:762.591903pt;}
.y244{bottom:763.872908pt;}
.y203{bottom:765.150911pt;}
.y288{bottom:767.152245pt;}
.y190{bottom:767.745475pt;}
.y47{bottom:767.817578pt;}
.yf1{bottom:767.932129pt;}
.yef{bottom:767.937330pt;}
.y1cf{bottom:770.003694pt;}
.ya4{bottom:772.075439pt;}
.y5{bottom:774.602901pt;}
.y243{bottom:775.202909pt;}
.yee{bottom:778.324744pt;}
.y172{bottom:778.453478pt;}
.y202{bottom:778.482910pt;}
.ye1{bottom:780.197428pt;}
.y287{bottom:780.484244pt;}
.y18f{bottom:781.077474pt;}
.y46{bottom:781.160249pt;}
.y1ce{bottom:783.341030pt;}
.y242{bottom:786.532909pt;}
.ya1{bottom:787.621694pt;}
.yeb{bottom:788.710124pt;}
.yed{bottom:788.712158pt;}
.ya6{bottom:792.930094pt;}
.y45{bottom:794.492249pt;}
.y1cd{bottom:796.673029pt;}
.y241{bottom:797.862909pt;}
.y286{bottom:799.816243pt;}
.yab{bottom:805.824573pt;}
.y44{bottom:807.824248pt;}
.y240{bottom:809.192909pt;}
.yea{bottom:809.492106pt;}
.ye8{bottom:809.497307pt;}
.y1cc{bottom:810.005028pt;}
.y285{bottom:813.149577pt;}
.y9e{bottom:813.594157pt;}
.y4{bottom:814.608236pt;}
.ye0{bottom:819.204356pt;}
.y171{bottom:819.410944pt;}
.ye7{bottom:819.884721pt;}
.y23f{bottom:820.522909pt;}
.y43{bottom:821.156247pt;}
.y1cb{bottom:823.337027pt;}
.y36{bottom:823.475179pt;}
.ye5{bottom:830.272135pt;}
.y23e{bottom:831.852909pt;}
.y42{bottom:834.488246pt;}
.ydf{bottom:836.574788pt;}
.y1ca{bottom:836.670361pt;}
.y284{bottom:837.153579pt;}
.yaa{bottom:839.570355pt;}
.y23d{bottom:843.182909pt;}
.ye2{bottom:847.306803pt;}
.y41{bottom:847.820246pt;}
.y1c9{bottom:850.003694pt;}
.y283{bottom:850.485578pt;}
.ye3{bottom:851.053711pt;}
.y23c{bottom:854.512909pt;}
.ya0{bottom:855.304362pt;}
.y170{bottom:861.064687pt;}
.y40{bottom:861.152245pt;}
.ya3{bottom:863.266683pt;}
.y1c8{bottom:863.335693pt;}
.y282{bottom:863.817578pt;}
.y23b{bottom:865.842909pt;}
.yad{bottom:866.679443pt;}
.ya9{bottom:873.316136pt;}
.y3f{bottom:874.484244pt;}
.y1c7{bottom:876.669027pt;}
.y281{bottom:877.149577pt;}
.y23a{bottom:877.172909pt;}
.y3e{bottom:887.817578pt;}
.y201{bottom:887.820246pt;}
.y18e{bottom:887.824248pt;}
.y239{bottom:888.502910pt;}
.y280{bottom:890.482910pt;}
.yfd{bottom:898.575846pt;}
.y238{bottom:899.832910pt;}
.y200{bottom:901.152245pt;}
.y1c6{bottom:901.153579pt;}
.y3d{bottom:901.154913pt;}
.y18d{bottom:901.156247pt;}
.y179{bottom:901.742106pt;}
.y16f{bottom:902.022153pt;}
.yaf{bottom:905.544678pt;}
.ya8{bottom:907.061917pt;}
.yae{bottom:908.009440pt;}
.y237{bottom:911.162910pt;}
.y177{bottom:913.309129pt;}
.y1ff{bottom:914.484244pt;}
.y1c5{bottom:914.485578pt;}
.y3c{bottom:914.486912pt;}
.y18c{bottom:914.488246pt;}
.y236{bottom:922.492910pt;}
.yb0{bottom:923.178320pt;}
.yfc{bottom:923.784261pt;}
.y176{bottom:924.730411pt;}
.y1c4{bottom:927.817578pt;}
.y3b{bottom:927.818912pt;}
.y18b{bottom:927.820246pt;}
.y235{bottom:933.822910pt;}
.y175{bottom:936.151693pt;}
.yb1{bottom:938.347200pt;}
.ya7{bottom:940.807699pt;}
.y3a{bottom:941.150911pt;}
.y18a{bottom:941.152245pt;}
.y16e{bottom:942.839193pt;}
.y234{bottom:945.152910pt;}
.y39{bottom:954.484244pt;}
.y233{bottom:956.482910pt;}
.yfb{bottom:957.850667pt;}
.yb2{bottom:958.629313pt;}
.y38{bottom:967.816243pt;}
.y37{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.h23{height:14.403874pt;}
.h18{height:16.032167pt;}
.h26{height:17.061710pt;}
.h22{height:20.574520pt;}
.h21{height:20.860675pt;}
.he{height:21.193555pt;}
.h1a{height:21.781856pt;}
.h17{height:23.219136pt;}
.h1e{height:23.250837pt;}
.h1f{height:23.257389pt;}
.h20{height:24.834212pt;}
.h7{height:24.933594pt;}
.h11{height:31.461333pt;}
.h27{height:31.763479pt;}
.h16{height:32.064335pt;}
.h10{height:32.605469pt;}
.hb{height:34.512000pt;}
.ha{height:34.523438pt;}
.hf{height:36.585552pt;}
.h2{height:38.346667pt;}
.h9{height:38.359375pt;}
.h4{height:39.305333pt;}
.h2e{height:39.560000pt;}
.h2d{height:40.080000pt;}
.h3{height:40.661333pt;}
.h2c{height:40.960000pt;}
.h13{height:42.181333pt;}
.h29{height:42.195312pt;}
.h8{height:43.066897pt;}
.hc{height:47.472000pt;}
.h24{height:48.026629pt;}
.h28{height:48.063983pt;}
.hd{height:48.096000pt;}
.h19{height:49.152000pt;}
.h1c{height:49.668034pt;}
.h1d{height:53.564776pt;}
.h15{height:55.283471pt;}
.h2a{height:68.367986pt;}
.h2b{height:68.389330pt;}
.h12{height:69.024000pt;}
.h5{height:99.701333pt;}
.h6{height:99.734375pt;}
.h25{height:242.534668pt;}
.h1b{height:302.417338pt;}
.h14{height:341.496012pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w4{width:242.666667pt;}
.w3{width:400.001343pt;}
.w2{width:528.001343pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:5.019470pt;}
.xb{left:12.516787pt;}
.x2{left:54.392400pt;}
.x41{left:81.520793pt;}
.xc{left:125.291331pt;}
.x4{left:207.516805pt;}
.x14{left:208.465210pt;}
.x2a{left:219.099325pt;}
.x40{left:220.478754pt;}
.x3f{left:222.427470pt;}
.xa{left:223.520658pt;}
.x3a{left:231.533468pt;}
.x2c{left:236.643473pt;}
.x35{left:237.668352pt;}
.x42{left:238.763346pt;}
.x36{left:262.703471pt;}
.x45{left:267.195190pt;}
.x3c{left:283.995199pt;}
.x11{left:286.006266pt;}
.xe{left:288.281596pt;}
.x1d{left:295.305966pt;}
.x2b{left:298.474096pt;}
.x37{left:299.665731pt;}
.x9{left:312.802266pt;}
.x10{left:322.028402pt;}
.x34{left:326.577209pt;}
.x31{left:346.399740pt;}
.x5{left:354.931315pt;}
.x33{left:356.389486pt;}
.x3b{left:358.939982pt;}
.x3d{left:373.589315pt;}
.x2d{left:376.825317pt;}
.x20{left:381.765340pt;}
.x19{left:383.534668pt;}
.x2f{left:396.021200pt;}
.x21{left:397.600279pt;}
.xf{left:408.101318pt;}
.x22{left:410.544029pt;}
.x7{left:420.514648pt;}
.x23{left:423.832528pt;}
.x1b{left:440.520020pt;}
.x24{left:441.720289pt;}
.x1c{left:443.553345pt;}
.xd{left:445.449341pt;}
.x25{left:457.390689pt;}
.x26{left:469.315863pt;}
.x27{left:478.686762pt;}
.x28{left:489.076237pt;}
.x39{left:501.503695pt;}
.x29{left:504.061198pt;}
.x12{left:517.476048pt;}
.x3{left:519.632528pt;}
.x13{left:520.701415pt;}
.x30{left:543.406535pt;}
.x38{left:552.605184pt;}
.x1a{left:593.326660pt;}
.x2e{left:594.506673pt;}
.x32{left:598.485718pt;}
.x17{left:602.806681pt;}
.x18{left:607.162916pt;}
.x16{left:630.106649pt;}
.x6{left:645.693848pt;}
.x15{left:664.042684pt;}
.x1e{left:668.972005pt;}
.x8{left:718.385579pt;}
.x43{left:725.336507pt;}
.x44{left:726.469482pt;}
.x1f{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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