
    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_98831bd57d262b96579751bd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_f877f4baeb2da12eb4d7633a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_e378d882b1be3da3a373c785.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_c4703c1769007bde5e5ed042.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_f2409b35750aa7c77b3ac908.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.873535;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_b29a1283e51fe720374402d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_8de7d03d773355a5987221da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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_437272d40d9ee43c1cb97a6c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_6ba241210f18aec3eb9653e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_962a51b7e793a53b30cf13d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_8c0d347b1620d61d04cd00b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.002930;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_7c512627d074f2873d64b7d7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_8ad7de5cda65c27cf0b95e89.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.106934;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_2a117f1fde17be1cd4de0164.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.106445;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_9a462d7c0a1669482fa738b0.woff2')format("woff");}.fff{font-family:fff;line-height:1.106445;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_42f597633470aba062c2486c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.762207;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_47a86a042b398435e50c0057.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.115234;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_60551f8ace2d450965ae115b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_73789ba193cca37d4ecdabfe.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.783691;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;}
.ma{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);}
.m6{transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250876,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.261161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261161,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);}
.v1c{vertical-align:-197.040000px;}
.v1b{vertical-align:-182.640000px;}
.v1a{vertical-align:-168.480000px;}
.v19{vertical-align:-154.380000px;}
.v18{vertical-align:-140.580000px;}
.v17{vertical-align:-127.020000px;}
.v16{vertical-align:-113.520000px;}
.v15{vertical-align:-100.260000px;}
.v14{vertical-align:-87.120000px;}
.v13{vertical-align:-74.160000px;}
.v4{vertical-align:-62.100000px;}
.v21{vertical-align:-50.919986px;}
.v12{vertical-align:-48.840000px;}
.v11{vertical-align:-36.480000px;}
.v24{vertical-align:-29.637713px;}
.v26{vertical-align:-27.647613px;}
.v10{vertical-align:-24.060000px;}
.vd{vertical-align:-23.040000px;}
.v1f{vertical-align:-21.978507px;}
.v9{vertical-align:-20.160000px;}
.v28{vertical-align:-18.720000px;}
.v2{vertical-align:-17.280000px;}
.v2b{vertical-align:-15.720000px;}
.vf{vertical-align:-12.000000px;}
.v5{vertical-align:-10.080000px;}
.v22{vertical-align:-8.751466px;}
.v2a{vertical-align:-6.720000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.016000px;}
.v25{vertical-align:3.531919px;}
.v2d{vertical-align:5.760000px;}
.vc{vertical-align:7.200000px;}
.v7{vertical-align:8.640000px;}
.v6{vertical-align:10.080000px;}
.v29{vertical-align:14.400000px;}
.v27{vertical-align:16.140252px;}
.v3{vertical-align:17.280000px;}
.va{vertical-align:20.160000px;}
.vb{vertical-align:21.600000px;}
.ve{vertical-align:25.200000px;}
.v1e{vertical-align:26.354240px;}
.v8{vertical-align:28.800000px;}
.v23{vertical-align:31.624220px;}
.v1d{vertical-align:44.751418px;}
.v20{vertical-align:54.401472px;}
.v2c{vertical-align:73.140000px;}
.v30{vertical-align:79.056000px;}
.v2e{vertical-align:86.949990px;}
.v31{vertical-align:90.720000px;}
.v2f{vertical-align:173.899979px;}
.ls16{letter-spacing:-4.752000px;}
.lsa0{letter-spacing:-3.312000px;}
.ls7b{letter-spacing:-2.916000px;}
.ls9f{letter-spacing:-2.304000px;}
.ls41{letter-spacing:-1.068000px;}
.lsbc{letter-spacing:-0.756000px;}
.lsb0{letter-spacing:-0.690000px;}
.ls91{letter-spacing:-0.445200px;}
.ls57{letter-spacing:-0.422400px;}
.ls5d{letter-spacing:-0.383400px;}
.ls59{letter-spacing:-0.368400px;}
.ls9{letter-spacing:-0.360000px;}
.lsaf{letter-spacing:-0.350400px;}
.ls3a{letter-spacing:-0.341400px;}
.ls80{letter-spacing:-0.334200px;}
.ls54{letter-spacing:-0.327000px;}
.ls6{letter-spacing:-0.324600px;}
.ls4d{letter-spacing:-0.310200px;}
.ls5{letter-spacing:-0.306000px;}
.ls32{letter-spacing:-0.302400px;}
.ls47{letter-spacing:-0.288000px;}
.lsaa{letter-spacing:-0.284915px;}
.ls3c{letter-spacing:-0.265200px;}
.ls26{letter-spacing:-0.229800px;}
.lsab{letter-spacing:-0.219000px;}
.ls46{letter-spacing:-0.216000px;}
.ls85{letter-spacing:-0.215400px;}
.ls40{letter-spacing:-0.205800px;}
.ls4c{letter-spacing:-0.189600px;}
.ls1f{letter-spacing:-0.179400px;}
.lsb1{letter-spacing:-0.161400px;}
.ls20{letter-spacing:-0.144000px;}
.ls38{letter-spacing:-0.133800px;}
.ls5a{letter-spacing:-0.131400px;}
.ls92{letter-spacing:-0.117600px;}
.lsa9{letter-spacing:-0.117565px;}
.ls1c{letter-spacing:-0.109200px;}
.ls21{letter-spacing:-0.106800px;}
.ls4f{letter-spacing:-0.088800px;}
.lsad{letter-spacing:-0.072000px;}
.ls5b{letter-spacing:-0.058320px;}
.ls90{letter-spacing:-0.037440px;}
.lsa8{letter-spacing:-0.037429px;}
.ls5e{letter-spacing:-0.036000px;}
.ls4e{letter-spacing:-0.033120px;}
.ls3b{letter-spacing:-0.028080px;}
.lsae{letter-spacing:-0.026640px;}
.ls7c{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls5c{letter-spacing:0.006060px;}
.ls2{letter-spacing:0.018000px;}
.lsa2{letter-spacing:0.018714px;}
.ls1e{letter-spacing:0.022320px;}
.lsb6{letter-spacing:0.036000px;}
.ls17{letter-spacing:0.037440px;}
.ls25{letter-spacing:0.076800px;}
.ls39{letter-spacing:0.079800px;}
.ls30{letter-spacing:0.084096px;}
.ls48{letter-spacing:0.087120px;}
.ls50{letter-spacing:0.092880px;}
.ls2f{letter-spacing:0.098496px;}
.ls4b{letter-spacing:0.101520px;}
.lsa7{letter-spacing:0.106768px;}
.ls29{letter-spacing:0.124560px;}
.ls2b{letter-spacing:0.142560px;}
.ls55{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.154560px;}
.ls58{letter-spacing:0.175200px;}
.ls2c{letter-spacing:0.178560px;}
.ls45{letter-spacing:0.202320px;}
.ls84{letter-spacing:0.205200px;}
.ls1{letter-spacing:0.216000px;}
.lsb5{letter-spacing:0.217440px;}
.lsf{letter-spacing:0.252000px;}
.ls2e{letter-spacing:0.253872px;}
.lsa3{letter-spacing:0.262080px;}
.lsac{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.288000px;}
.ls3f{letter-spacing:0.301200px;}
.lsb2{letter-spacing:0.305400px;}
.ls37{letter-spacing:0.320400px;}
.ls28{letter-spacing:0.326880px;}
.ls31{letter-spacing:0.327000px;}
.ls3d{letter-spacing:0.341400px;}
.ls44{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.382080px;}
.ls2d{letter-spacing:0.433872px;}
.ls94{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.506880px;}
.ls7d{letter-spacing:14.065920px;}
.lsd{letter-spacing:16.424496px;}
.lse{letter-spacing:16.552800px;}
.ls13{letter-spacing:17.035200px;}
.ls74{letter-spacing:18.702830px;}
.ls34{letter-spacing:18.812880px;}
.ls33{letter-spacing:19.148400px;}
.ls10{letter-spacing:19.944000px;}
.ls73{letter-spacing:20.383702px;}
.ls36{letter-spacing:21.917952px;}
.lsc{letter-spacing:24.340896px;}
.lsb{letter-spacing:24.469200px;}
.ls8{letter-spacing:39.015696px;}
.lsa{letter-spacing:39.132000px;}
.ls7{letter-spacing:39.144000px;}
.ls82{letter-spacing:43.632720px;}
.ls81{letter-spacing:43.776720px;}
.ls3{letter-spacing:44.601840px;}
.ls60{letter-spacing:53.954375px;}
.ls67{letter-spacing:54.026783px;}
.ls6e{letter-spacing:54.031130px;}
.ls78{letter-spacing:57.374523px;}
.ls4{letter-spacing:57.382560px;}
.ls83{letter-spacing:59.326560px;}
.ls12{letter-spacing:59.372640px;}
.ls1a{letter-spacing:65.125056px;}
.ls3e{letter-spacing:65.149056px;}
.ls1d{letter-spacing:65.253360px;}
.ls18{letter-spacing:65.277360px;}
.ls62{letter-spacing:65.280056px;}
.ls70{letter-spacing:65.377270px;}
.ls69{letter-spacing:65.394659px;}
.ls5f{letter-spacing:65.414627px;}
.ls22{letter-spacing:65.421360px;}
.ls66{letter-spacing:65.481603px;}
.ls6d{letter-spacing:65.507686px;}
.lsba{letter-spacing:68.359104px;}
.lsb9{letter-spacing:68.473440px;}
.ls19{letter-spacing:69.768000px;}
.lsb3{letter-spacing:88.037856px;}
.lsb4{letter-spacing:88.166160px;}
.ls97{letter-spacing:88.198560px;}
.ls64{letter-spacing:93.125379px;}
.ls6b{letter-spacing:93.270901px;}
.lsb8{letter-spacing:98.786160px;}
.lsb7{letter-spacing:98.966160px;}
.ls7a{letter-spacing:109.100880px;}
.ls99{letter-spacing:136.918560px;}
.ls96{letter-spacing:147.276000px;}
.ls9a{letter-spacing:155.724000px;}
.ls65{letter-spacing:170.553764px;}
.ls72{letter-spacing:170.752921px;}
.ls6c{letter-spacing:170.796392px;}
.ls9e{letter-spacing:187.318560px;}
.ls9d{letter-spacing:189.478560px;}
.ls93{letter-spacing:200.244000px;}
.ls61{letter-spacing:216.655235px;}
.ls6f{letter-spacing:216.963447px;}
.ls68{letter-spacing:216.985183px;}
.ls43{letter-spacing:229.462320px;}
.ls98{letter-spacing:253.018560px;}
.ls9b{letter-spacing:260.796000px;}
.ls95{letter-spacing:265.824000px;}
.ls52{letter-spacing:305.846880px;}
.ls23{letter-spacing:309.959760px;}
.lsa6{letter-spacing:323.038560px;}
.lsa5{letter-spacing:323.578560px;}
.ls53{letter-spacing:327.918480px;}
.lsa4{letter-spacing:341.758560px;}
.ls8c{letter-spacing:349.202496px;}
.ls8f{letter-spacing:349.282560px;}
.ls87{letter-spacing:354.455040px;}
.ls8d{letter-spacing:379.522560px;}
.ls8a{letter-spacing:382.402560px;}
.ls89{letter-spacing:383.122560px;}
.ls51{letter-spacing:410.906880px;}
.ls8e{letter-spacing:434.915040px;}
.ls8b{letter-spacing:437.075040px;}
.ls56{letter-spacing:437.366880px;}
.ls42{letter-spacing:446.842320px;}
.ls88{letter-spacing:465.202560px;}
.ls76{letter-spacing:468.094986px;}
.ls7e{letter-spacing:488.845920px;}
.ls49{letter-spacing:489.811440px;}
.ls27{letter-spacing:490.024560px;}
.ls86{letter-spacing:506.735040px;}
.ls4a{letter-spacing:515.321520px;}
.ls35{letter-spacing:546.424560px;}
.lsa1{letter-spacing:547.406808px;}
.ls77{letter-spacing:550.888163px;}
.ls63{letter-spacing:566.961299px;}
.ls71{letter-spacing:567.737425px;}
.ls6a{letter-spacing:567.738729px;}
.ls7f{letter-spacing:626.965920px;}
.ls75{letter-spacing:688.682689px;}
.ls9c{letter-spacing:740.316000px;}
.lsbb{letter-spacing:903.388080px;}
.ls79{letter-spacing:1093.896378px;}
.ls11{letter-spacing:1100.484000px;}
.ls15{letter-spacing:1102.644000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(240,171,0),0 0.015em rgb(240,171,0),0.015em 0 rgb(240,171,0),0 -0.015em  rgb(240,171,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(240,171,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse1{word-spacing:-108.000000px;}
.wscc{word-spacing:-95.446448px;}
.ws4d{word-spacing:-84.240000px;}
.wscd{word-spacing:-66.021000px;}
.wsa5{word-spacing:-40.039920px;}
.wsf4{word-spacing:-33.426720px;}
.wse2{word-spacing:-30.024000px;}
.wsf3{word-spacing:-29.736000px;}
.ws13{word-spacing:-26.658720px;}
.ws14{word-spacing:-26.621280px;}
.ws63{word-spacing:-26.431680px;}
.wsc{word-spacing:-24.440544px;}
.wsb{word-spacing:-24.408000px;}
.wsac{word-spacing:-23.458752px;}
.wscb{word-spacing:-23.451737px;}
.ws45{word-spacing:-23.418720px;}
.ws46{word-spacing:-23.390640px;}
.ws43{word-spacing:-23.077320px;}
.wsad{word-spacing:-23.013552px;}
.wsf6{word-spacing:-22.662720px;}
.ws4e{word-spacing:-22.350720px;}
.wsa7{word-spacing:-21.846960px;}
.ws1d{word-spacing:-21.674304px;}
.ws1e{word-spacing:-21.641760px;}
.wsf1{word-spacing:-21.331560px;}
.wsfb{word-spacing:-20.232000px;}
.wsfa{word-spacing:-20.056032px;}
.ws0{word-spacing:-20.016000px;}
.wsbc{word-spacing:-19.872000px;}
.ws77{word-spacing:-19.245984px;}
.wsa{word-spacing:-19.070784px;}
.ws9{word-spacing:-19.038240px;}
.ws31{word-spacing:-18.904440px;}
.ws4c{word-spacing:-18.808440px;}
.ws6f{word-spacing:-18.711240px;}
.ws79{word-spacing:-18.702384px;}
.wscf{word-spacing:-18.676920px;}
.ws76{word-spacing:-18.648384px;}
.ws9e{word-spacing:-18.414720px;}
.ws15{word-spacing:-18.305520px;}
.ws9d{word-spacing:-16.653312px;}
.ws9f{word-spacing:-16.613280px;}
.ws22{word-spacing:-16.506480px;}
.ws16{word-spacing:-16.488000px;}
.ws3{word-spacing:-16.272000px;}
.ws1a{word-spacing:-16.128000px;}
.ws56{word-spacing:-16.056000px;}
.ws21{word-spacing:-16.041180px;}
.wsae{word-spacing:-15.652512px;}
.ws44{word-spacing:-15.612480px;}
.ws68{word-spacing:-14.482080px;}
.wsa0{word-spacing:-13.410720px;}
.ws95{word-spacing:-13.252842px;}
.ws98{word-spacing:-13.230600px;}
.ws8f{word-spacing:-13.024178px;}
.ws8c{word-spacing:-13.005676px;}
.ws93{word-spacing:-12.230653px;}
.wsa3{word-spacing:-10.902240px;}
.ws96{word-spacing:-10.082077px;}
.ws90{word-spacing:-9.893276px;}
.ws8d{word-spacing:-9.879221px;}
.ws92{word-spacing:-9.291814px;}
.wsf8{word-spacing:-4.614336px;}
.wse5{word-spacing:-3.148080px;}
.wsec{word-spacing:-2.802960px;}
.wsf9{word-spacing:-2.545200px;}
.ws11{word-spacing:-2.466480px;}
.ws99{word-spacing:-2.435760px;}
.ws9b{word-spacing:-2.425680px;}
.ws9a{word-spacing:-2.412960px;}
.wse9{word-spacing:-2.403360px;}
.wsf7{word-spacing:-2.354784px;}
.wseb{word-spacing:-2.307840px;}
.wsef{word-spacing:-2.273760px;}
.wse8{word-spacing:-1.970160px;}
.wse4{word-spacing:-1.545120px;}
.ws48{word-spacing:-1.112400px;}
.wsf5{word-spacing:-1.001040px;}
.ws10{word-spacing:-0.864000px;}
.wsa9{word-spacing:-0.719280px;}
.wse6{word-spacing:-0.654480px;}
.ws20{word-spacing:-0.630960px;}
.ws1f{word-spacing:-0.606960px;}
.wsea{word-spacing:-0.534480px;}
.wsee{word-spacing:-0.435840px;}
.ws8{word-spacing:-0.319200px;}
.ws1b{word-spacing:-0.164160px;}
.wse3{word-spacing:-0.146880px;}
.ws2{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:0.036000px;}
.wsed{word-spacing:0.522000px;}
.ws7{word-spacing:0.675120px;}
.ws6{word-spacing:0.822240px;}
.wse7{word-spacing:0.852240px;}
.ws5{word-spacing:0.864000px;}
.wsf{word-spacing:0.924336px;}
.ws47{word-spacing:1.043040px;}
.ws1c{word-spacing:1.290240px;}
.wse{word-spacing:1.491600px;}
.ws4{word-spacing:2.688000px;}
.wsa2{word-spacing:5.792040px;}
.ws12{word-spacing:9.216000px;}
.ws97{word-spacing:15.920058px;}
.ws94{word-spacing:15.928865px;}
.ws7b{word-spacing:27.304560px;}
.ws7c{word-spacing:28.600560px;}
.ws7d{word-spacing:29.896560px;}
.ws7e{word-spacing:31.204560px;}
.ws7f{word-spacing:32.452560px;}
.ws80{word-spacing:33.952560px;}
.ws81{word-spacing:35.392560px;}
.ws82{word-spacing:36.652560px;}
.ws83{word-spacing:38.092560px;}
.ws84{word-spacing:39.712560px;}
.ws85{word-spacing:41.092560px;}
.ws86{word-spacing:42.753240px;}
.ws87{word-spacing:44.332560px;}
.ws88{word-spacing:45.712560px;}
.ws89{word-spacing:47.632560px;}
.ws2c{word-spacing:86.484720px;}
.wsc0{word-spacing:90.564000px;}
.ws24{word-spacing:93.285360px;}
.ws2a{word-spacing:95.789280px;}
.ws53{word-spacing:96.024000px;}
.ws2e{word-spacing:99.468288px;}
.wsce{word-spacing:99.855840px;}
.ws7a{word-spacing:103.691616px;}
.wsb3{word-spacing:104.364000px;}
.ws78{word-spacing:109.260864px;}
.wsc5{word-spacing:112.740000px;}
.ws8e{word-spacing:116.639556px;}
.ws91{word-spacing:116.788098px;}
.ws2d{word-spacing:129.441360px;}
.ws2b{word-spacing:132.871440px;}
.ws52{word-spacing:135.852000px;}
.ws2f{word-spacing:139.963872px;}
.wsbd{word-spacing:145.980000px;}
.wsbe{word-spacing:146.160000px;}
.wsc1{word-spacing:147.924000px;}
.wsc8{word-spacing:147.996000px;}
.wsb4{word-spacing:148.224000px;}
.ws6e{word-spacing:149.371800px;}
.ws30{word-spacing:152.025360px;}
.wsb2{word-spacing:154.224000px;}
.ws73{word-spacing:157.591800px;}
.wsd0{word-spacing:164.873760px;}
.ws49{word-spacing:169.660560px;}
.wsc4{word-spacing:170.940000px;}
.ws25{word-spacing:172.560720px;}
.wsc9{word-spacing:173.916000px;}
.ws75{word-spacing:174.911040px;}
.wsb6{word-spacing:175.116000px;}
.wsc7{word-spacing:176.076000px;}
.wsbf{word-spacing:176.508000px;}
.wsbb{word-spacing:176.700000px;}
.wsc3{word-spacing:176.796000px;}
.ws18{word-spacing:180.576000px;}
.ws39{word-spacing:185.841360px;}
.ws38{word-spacing:188.424720px;}
.ws37{word-spacing:189.271440px;}
.ws6c{word-spacing:191.851800px;}
.ws3b{word-spacing:196.560720px;}
.ws62{word-spacing:197.328000px;}
.ws36{word-spacing:197.729280px;}
.wsd1{word-spacing:197.980320px;}
.ws3a{word-spacing:201.408288px;}
.wsb5{word-spacing:203.040000px;}
.ws59{word-spacing:204.840000px;}
.ws3d{word-spacing:206.534784px;}
.ws17{word-spacing:209.796000px;}
.ws72{word-spacing:217.351800px;}
.ws51{word-spacing:219.240000px;}
.wsb8{word-spacing:225.072000px;}
.ws19{word-spacing:227.796000px;}
.ws58{word-spacing:229.944000px;}
.ws61{word-spacing:233.052000px;}
.wsba{word-spacing:234.432000px;}
.ws5d{word-spacing:238.728000px;}
.ws41{word-spacing:241.332240px;}
.wsc2{word-spacing:247.356000px;}
.wsb7{word-spacing:258.240000px;}
.wsc6{word-spacing:258.660000px;}
.ws74{word-spacing:261.558720px;}
.wsb9{word-spacing:272.640000px;}
.ws71{word-spacing:273.240240px;}
.wsdc{word-spacing:286.662000px;}
.wsda{word-spacing:286.703040px;}
.ws42{word-spacing:289.260600px;}
.ws55{word-spacing:292.812000px;}
.wsdd{word-spacing:293.933760px;}
.wsd8{word-spacing:294.036960px;}
.wsd7{word-spacing:294.053760px;}
.ws6d{word-spacing:295.245360px;}
.ws5c{word-spacing:296.412000px;}
.ws4f{word-spacing:303.612000px;}
.wsdf{word-spacing:304.842000px;}
.ws6b{word-spacing:308.757984px;}
.wsd3{word-spacing:312.474000px;}
.wsd9{word-spacing:312.594000px;}
.wsdb{word-spacing:312.695136px;}
.ws6a{word-spacing:312.851040px;}
.ws28{word-spacing:321.384720px;}
.wsd2{word-spacing:331.194000px;}
.wsa8{word-spacing:334.841520px;}
.ws70{word-spacing:338.491800px;}
.ws5e{word-spacing:343.212000px;}
.ws23{word-spacing:350.714640px;}
.wsd4{word-spacing:356.076960px;}
.wsde{word-spacing:356.796960px;}
.ws5a{word-spacing:357.864000px;}
.ws54{word-spacing:359.772000px;}
.ws67{word-spacing:369.928200px;}
.ws29{word-spacing:370.320600px;}
.wse0{word-spacing:374.590560px;}
.wsd6{word-spacing:374.796960px;}
.ws69{word-spacing:380.467200px;}
.wsaf{word-spacing:381.036000px;}
.ws5b{word-spacing:381.072000px;}
.wsb0{word-spacing:381.180000px;}
.ws57{word-spacing:384.504000px;}
.ws60{word-spacing:392.664000px;}
.wsd5{word-spacing:393.516960px;}
.ws50{word-spacing:400.435440px;}
.wsab{word-spacing:415.417440px;}
.ws34{word-spacing:423.324720px;}
.ws35{word-spacing:426.720600px;}
.ws27{word-spacing:430.847040px;}
.ws5f{word-spacing:435.804000px;}
.wsb1{word-spacing:451.200000px;}
.ws65{word-spacing:459.328200px;}
.ws66{word-spacing:461.946000px;}
.ws26{word-spacing:463.641024px;}
.wsaa{word-spacing:467.760000px;}
.wsca{word-spacing:476.443476px;}
.ws64{word-spacing:490.888200px;}
.ws33{word-spacing:503.090640px;}
.ws3c{word-spacing:503.097504px;}
.ws32{word-spacing:532.787040px;}
.ws3f{word-spacing:589.304400px;}
.ws8a{word-spacing:598.576200px;}
.ws8b{word-spacing:598.617240px;}
.ws3e{word-spacing:607.656480px;}
.ws40{word-spacing:648.344400px;}
.ws4b{word-spacing:1001.351520px;}
.wsa4{word-spacing:1024.718880px;}
.ws4a{word-spacing:1107.911520px;}
.wsa1{word-spacing:1150.424640px;}
.ws9c{word-spacing:1155.596640px;}
.wsf2{word-spacing:1251.030000px;}
.wsa6{word-spacing:1779.641280px;}
.wsf0{word-spacing:1918.320480px;}
._36{margin-left:-176.471948px;}
._38{margin-left:-11.300400px;}
._5{margin-left:-9.517680px;}
._4{margin-left:-8.360640px;}
._8{margin-left:-7.260960px;}
._3{margin-left:-6.252480px;}
._14{margin-left:-4.940880px;}
._7{margin-left:-3.727440px;}
._6{margin-left:-2.386080px;}
._1{margin-left:-1.221120px;}
._0{width:1.149120px;}
._b{width:2.234160px;}
._11{width:3.415680px;}
._39{width:5.366592px;}
._13{width:15.031440px;}
._f{width:18.108000px;}
._1f{width:20.040672px;}
._47{width:21.498240px;}
._19{width:22.840128px;}
._e{width:24.143520px;}
._d{width:25.824960px;}
._9{width:28.750800px;}
._c{width:30.168480px;}
._45{width:31.479600px;}
._46{width:35.005680px;}
._12{width:44.380560px;}
._37{width:97.094076px;}
._10{width:106.206240px;}
._20{width:113.136000px;}
._15{width:136.391280px;}
._26{width:153.300960px;}
._43{width:161.614560px;}
._42{width:192.156000px;}
._1a{width:200.970000px;}
._1e{width:234.913680px;}
._40{width:236.316000px;}
._34{width:242.072256px;}
._24{width:244.366080px;}
._41{width:248.340000px;}
._3d{width:253.080000px;}
._23{width:259.464000px;}
._3f{width:265.536000px;}
._1b{width:267.068160px;}
._22{width:268.630080px;}
._25{width:270.463440px;}
._33{width:292.485840px;}
._2e{width:298.176000px;}
._30{width:327.019200px;}
._32{width:339.124320px;}
._21{width:341.292000px;}
._29{width:350.760480px;}
._2b{width:359.940480px;}
._1c{width:362.240640px;}
._1d{width:375.068160px;}
._2a{width:404.196000px;}
._18{width:408.964560px;}
._44{width:411.142080px;}
._2d{width:423.420000px;}
._28{width:424.524000px;}
._2f{width:434.328768px;}
._2c{width:435.948000px;}
._31{width:459.978480px;}
._27{width:466.764000px;}
._3c{width:490.802784px;}
._a{width:507.586080px;}
._3a{width:520.518720px;}
._3b{width:534.018720px;}
._16{width:539.192880px;}
._17{width:638.933280px;}
._3e{width:771.816000px;}
._35{width:804.392160px;}
._2{width:1120.428000px;}
.fc15{color:rgb(0,51,153);}
.fc14{color:rgb(4,53,123);}
.fc12{color:rgb(102,102,102);}
.fc10{color:rgb(21,16,21);}
.fc16{color:rgb(0,255,0);}
.fcf{color:rgb(0,0,204);}
.fce{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(0,51,204);}
.fc13{color:rgb(240,171,0);}
.fc5{color:rgb(13,13,13);}
.fc11{color:rgb(89,89,89);}
.fcc{color:rgb(31,73,125);}
.fc1{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc6{color:rgb(0,32,96);}
.fc8{color:rgb(149,55,53);}
.fc7{color:rgb(55,96,146);}
.fc9{color:rgb(255,0,0);}
.fcd{color:rgb(0,37,84);}
.fc2{color:rgb(192,0,0);}
.fca{color:rgb(0,0,102);}
.fcb{color:rgb(79,129,189);}
.fs28{font-size:31.680000px;}
.fs22{font-size:33.423792px;}
.fs1e{font-size:35.536768px;}
.fs20{font-size:35.587322px;}
.fs26{font-size:36.099539px;}
.fs24{font-size:36.266464px;}
.fs21{font-size:43.995153px;}
.fs1d{font-size:46.783009px;}
.fs1f{font-size:46.849562px;}
.fs25{font-size:47.592088px;}
.fs23{font-size:47.672095px;}
.fs16{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs19{font-size:56.160000px;}
.fs1a{font-size:56.304000px;}
.fs18{font-size:57.702086px;}
.fs17{font-size:59.760000px;}
.fs1c{font-size:59.904000px;}
.fs1b{font-size:64.080000px;}
.fs15{font-size:66.240000px;}
.fs2d{font-size:66.384000px;}
.fs27{font-size:66.960000px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:72.144000px;}
.fs11{font-size:77.040000px;}
.fs13{font-size:77.184000px;}
.fs10{font-size:79.200000px;}
.fse{font-size:79.344000px;}
.fs2a{font-size:84.214808px;}
.fs6{font-size:84.240000px;}
.fs2b{font-size:84.358765px;}
.fs8{font-size:84.384000px;}
.fs12{font-size:90.000000px;}
.fs2c{font-size:95.731363px;}
.fs1{font-size:95.760000px;}
.fs14{font-size:95.904000px;}
.fs29{font-size:102.240000px;}
.fs5{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fsc{font-size:118.800000px;}
.fsd{font-size:118.944000px;}
.fs4{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fs3{font-size:131.760000px;}
.fs7{font-size:144.000000px;}
.fs2e{font-size:239.760000px;}
.fsa{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.y141{bottom:1.765629px;}
.y14f{bottom:2.108882px;}
.y130{bottom:2.170816px;}
.y13c{bottom:2.446580px;}
.y111{bottom:3.853618px;}
.y127{bottom:3.859101px;}
.y73{bottom:4.787317px;}
.y134{bottom:9.390940px;}
.y114{bottom:10.665957px;}
.y12a{bottom:10.681131px;}
.y13f{bottom:11.148444px;}
.y147{bottom:12.938625px;}
.y8{bottom:13.320000px;}
.y12e{bottom:13.921774px;}
.y14c{bottom:14.151637px;}
.y13b{bottom:14.956707px;}
.y137{bottom:15.183507px;}
.y194{bottom:21.845229px;}
.y12f{bottom:26.285240px;}
.y13e{bottom:26.584074px;}
.y100{bottom:26.652684px;}
.y116{bottom:26.690600px;}
.y139{bottom:28.828956px;}
.y145{bottom:29.031535px;}
.y115{bottom:29.160000px;}
.y149{bottom:29.320284px;}
.y14e{bottom:29.524352px;}
.ye1{bottom:30.060000px;}
.y109{bottom:31.475541px;}
.y11f{bottom:31.520317px;}
.y1db{bottom:31.608000px;}
.y105{bottom:31.699102px;}
.y11b{bottom:31.744197px;}
.y7{bottom:33.156000px;}
.yf4{bottom:37.590000px;}
.y10d{bottom:40.251967px;}
.y123{bottom:40.309229px;}
.y140{bottom:41.995483px;}
.y138{bottom:42.222283px;}
.y14d{bottom:42.227553px;}
.y13a{bottom:42.676984px;}
.y143{bottom:42.903785px;}
.y103{bottom:43.533767px;}
.y119{bottom:43.595698px;}
.y135{bottom:43.603774px;}
.y1e1{bottom:46.512000px;}
.ye4{bottom:46.692000px;}
.y193{bottom:50.587734px;}
.y142{bottom:52.059469px;}
.y1bb{bottom:52.776000px;}
.yfc{bottom:52.812000px;}
.y13d{bottom:53.194572px;}
.y155{bottom:53.280000px;}
.y6{bottom:54.792000px;}
.y144{bottom:56.750712px;}
.y192{bottom:59.328000px;}
.y1c2{bottom:59.544000px;}
.y1da{bottom:60.444000px;}
.y67{bottom:61.380000px;}
.y14a{bottom:62.070898px;}
.y18c{bottom:64.008000px;}
.y131{bottom:65.854717px;}
.y1e0{bottom:65.952000px;}
.y1df{bottom:65.988000px;}
.y146{bottom:67.041499px;}
.y101{bottom:67.228056px;}
.y117{bottom:67.323694px;}
.y186{bottom:67.428000px;}
.y195{bottom:67.803481px;}
.y87{bottom:68.040000px;}
.y1be{bottom:68.112000px;}
.y133{bottom:69.559432px;}
.yf3{bottom:71.460000px;}
.y34{bottom:71.712000px;}
.y10b{bottom:71.827351px;}
.y121{bottom:71.929532px;}
.y108{bottom:72.050912px;}
.y11e{bottom:72.153412px;}
.y106{bottom:72.274474px;}
.y11c{bottom:72.377291px;}
.y104{bottom:73.144846px;}
.y11a{bottom:73.248901px;}
.yd4{bottom:73.548000px;}
.y5{bottom:76.392000px;}
.y1e5{bottom:78.912000px;}
.y132{bottom:80.696233px;}
.yc3{bottom:80.820000px;}
.yb2{bottom:81.105000px;}
.yae{bottom:81.150000px;}
.yaa{bottom:81.180000px;}
.y1ba{bottom:81.468000px;}
.y154{bottom:82.080000px;}
.y177{bottom:82.368000px;}
.yc6{bottom:84.708000px;}
.y1de{bottom:85.788000px;}
.yfb{bottom:85.932000px;}
.y10a{bottom:87.614500px;}
.y120{bottom:87.739140px;}
.y14b{bottom:89.054388px;}
.y1d9{bottom:89.244000px;}
.y66{bottom:90.180000px;}
.y1bf{bottom:90.936000px;}
.y9c{bottom:92.340000px;}
.y9a{bottom:92.370000px;}
.y21{bottom:93.780000px;}
.y18b{bottom:96.444000px;}
.y4{bottom:97.992000px;}
.ya4{bottom:98.100000px;}
.y5e{bottom:98.208000px;}
.y107{bottom:98.578793px;}
.y11d{bottom:98.719030px;}
.y102{bottom:98.803440px;}
.y118{bottom:98.943997px;}
.y196{bottom:100.301759px;}
.y191{bottom:101.520000px;}
.y113{bottom:104.073420px;}
.y129{bottom:104.221474px;}
.yc9{bottom:105.120000px;}
.y185{bottom:105.264000px;}
.y1d2{bottom:105.300000px;}
.y1dd{bottom:105.588000px;}
.yd3{bottom:105.948000px;}
.ye{bottom:106.956000px;}
.y10c{bottom:107.355219px;}
.y122{bottom:107.507942px;}
.y84{bottom:107.640000px;}
.y33{bottom:107.712000px;}
.y1b9{bottom:110.160000px;}
.y153{bottom:110.880000px;}
.y10e{bottom:111.086313px;}
.y124{bottom:111.244344px;}
.ye3{bottom:111.852000px;}
.y112{bottom:114.591674px;}
.y128{bottom:114.754692px;}
.y110{bottom:116.555979px;}
.y126{bottom:116.721791px;}
.y1c0{bottom:117.900000px;}
.y90{bottom:118.944000px;}
.y10f{bottom:118.965237px;}
.ybc{bottom:118.980000px;}
.yfa{bottom:119.052000px;}
.y125{bottom:119.134476px;}
.y3{bottom:119.592000px;}
.yeb{bottom:121.536000px;}
.ye6{bottom:122.550000px;}
.ydc{bottom:122.655000px;}
.y85{bottom:122.685000px;}
.y1bd{bottom:125.388000px;}
.y97{bottom:126.432000px;}
.ya2{bottom:126.900000px;}
.y31{bottom:127.764000px;}
.y29{bottom:129.060000px;}
.y1d6{bottom:129.096000px;}
.y1d1{bottom:129.240000px;}
.y197{bottom:132.800038px;}
.yf2{bottom:133.350000px;}
.yd2{bottom:138.348000px;}
.y1b8{bottom:138.852000px;}
.yd6{bottom:140.250000px;}
.y184{bottom:143.064000px;}
.y18a{bottom:144.648000px;}
.y7f{bottom:145.764000px;}
.y190{bottom:146.520000px;}
.y1d8{bottom:146.844000px;}
.ye2{bottom:147.672000px;}
.ybb{bottom:149.256000px;}
.y2{bottom:151.455000px;}
.ydb{bottom:151.740000px;}
.yf9{bottom:152.175000px;}
.ye0{bottom:152.715000px;}
.y89{bottom:154.050000px;}
.yed{bottom:154.470000px;}
.y1d0{bottom:155.160000px;}
.y170{bottom:155.520000px;}
.y9f{bottom:155.700000px;}
.y5d{bottom:156.090000px;}
.y8f{bottom:156.750000px;}
.y1bc{bottom:158.190000px;}
.ya6{bottom:161.640000px;}
.y96{bottom:164.235000px;}
.yea{bottom:164.310000px;}
.y198{bottom:165.302815px;}
.y1b7{bottom:167.550000px;}
.yd5{bottom:167.580000px;}
.y152{bottom:168.480000px;}
.ye5{bottom:168.840000px;}
.yd1{bottom:170.745000px;}
.yc5{bottom:174.240000px;}
.y7e{bottom:174.600000px;}
.y1d7{bottom:176.550000px;}
.yda{bottom:178.200000px;}
.yd{bottom:178.995000px;}
.yba{bottom:179.490000px;}
.y27{bottom:179.745000px;}
.y183{bottom:180.900000px;}
.y18f{bottom:183.210000px;}
.y9b{bottom:184.500000px;}
.yf8{bottom:185.295000px;}
.y64{bottom:185.685000px;}
.y17d{bottom:189.000000px;}
.ya5{bottom:190.440000px;}
.y88{bottom:190.725000px;}
.y86{bottom:193.245000px;}
.ydf{bottom:193.575000px;}
.y169{bottom:193.830000px;}
.y8e{bottom:194.550000px;}
.y5b{bottom:194.730000px;}
.y1b6{bottom:196.230000px;}
.y1f1{bottom:197.310000px;}
.y199{bottom:197.798094px;}
.y151{bottom:198.180000px;}
.y162{bottom:199.650000px;}
.y95{bottom:202.035000px;}
.yd0{bottom:203.190000px;}
.yee{bottom:204.015000px;}
.ye9{bottom:207.105000px;}
.y16c{bottom:208.695000px;}
.y189{bottom:209.265000px;}
.yb9{bottom:209.730000px;}
.y99{bottom:213.300000px;}
.yf7{bottom:218.445000px;}
.y182{bottom:218.730000px;}
.y15b{bottom:218.775000px;}
.ya3{bottom:219.240000px;}
.y1eb{bottom:220.710000px;}
.yd9{bottom:221.400000px;}
.y1cf{bottom:223.410000px;}
.y1b5{bottom:224.925000px;}
.y6d{bottom:226.695000px;}
.y15f{bottom:229.830000px;}
.y19a{bottom:230.293373px;}
.y83{bottom:230.325000px;}
.y16e{bottom:230.400000px;}
.y8d{bottom:232.350000px;}
.yde{bottom:234.435000px;}
.y5c{bottom:235.185000px;}
.ycf{bottom:235.590000px;}
.y18e{bottom:237.675000px;}
.y94{bottom:239.835000px;}
.yb8{bottom:239.970000px;}
.ya0{bottom:242.280000px;}
.y7b{bottom:245.415000px;}
.y1d5{bottom:245.910000px;}
.y17c{bottom:246.600000px;}
.y1ce{bottom:247.350000px;}
.ya1{bottom:248.040000px;}
.y1ee{bottom:248.145000px;}
.y1f0{bottom:248.250000px;}
.y1b4{bottom:249.300000px;}
.ye8{bottom:249.915000px;}
.y163{bottom:253.290000px;}
.yef{bottom:254.415000px;}
.y6c{bottom:255.495000px;}
.y181{bottom:256.530000px;}
.y188{bottom:258.120000px;}
.y19b{bottom:262.833639px;}
.y1e8{bottom:264.090000px;}
.yd8{bottom:264.600000px;}
.y7a{bottom:267.375000px;}
.y82{bottom:267.585000px;}
.yce{bottom:267.990000px;}
.yb7{bottom:270.210000px;}
.y8c{bottom:270.540000px;}
.y32{bottom:270.825000px;}
.y9d{bottom:271.080000px;}
.y2a{bottom:272.160000px;}
.yf6{bottom:272.235000px;}
.y1cd{bottom:273.270000px;}
.ydd{bottom:274.395000px;}
.y9e{bottom:276.840000px;}
.y93{bottom:278.025000px;}
.y6b{bottom:284.295000px;}
.y16a{bottom:284.730000px;}
.yc2{bottom:285.840000px;}
.yec{bottom:286.020000px;}
.y63{bottom:289.590000px;}
.y187{bottom:290.595000px;}
.ye7{bottom:291.390000px;}
.y1f8{bottom:291.600000px;}
.y1f5{bottom:291.930000px;}
.yc8{bottom:292.500000px;}
.y18d{bottom:293.010000px;}
.y180{bottom:294.375000px;}
.y19c{bottom:295.328919px;}
.ycd{bottom:300.390000px;}
.yb6{bottom:300.495000px;}
.y201{bottom:303.195000px;}
.y17b{bottom:304.230000px;}
.y98{bottom:305.670000px;}
.yf0{bottom:305.715000px;}
.y8b{bottom:306.570000px;}
.y1b3{bottom:306.720000px;}
.yd7{bottom:307.830000px;}
.y59{bottom:309.525000px;}
.y92{bottom:314.070000px;}
.y160{bottom:314.820000px;}
.y3d{bottom:316.155000px;}
.ybd{bottom:317.445000px;}
.y19d{bottom:327.824198px;}
.y2b{bottom:329.835000px;}
.yb5{bottom:330.735000px;}
.y17f{bottom:332.175000px;}
.ycc{bottom:332.790000px;}
.y1b2{bottom:335.415000px;}
.y3c{bottom:339.915000px;}
.y1cc{bottom:341.490000px;}
.y62{bottom:343.440000px;}
.ya7{bottom:348.765000px;}
.yc{bottom:349.815000px;}
.y5a{bottom:350.025000px;}
.y1e7{bottom:350.535000px;}
.yb1{bottom:351.180000px;}
.y150{bottom:353.235000px;}
.yf1{bottom:357.990000px;}
.y19e{bottom:360.319477px;}
.y24{bottom:360.540000px;}
.y17a{bottom:361.830000px;}
.y3b{bottom:363.675000px;}
.y1b1{bottom:364.110000px;}
.y1{bottom:364.965000px;}
.ycb{bottom:365.220000px;}
.y1cb{bottom:365.475000px;}
.y16d{bottom:366.630000px;}
.yc4{bottom:366.660000px;}
.yc1{bottom:366.840000px;}
.y200{bottom:369.435000px;}
.y17e{bottom:370.005000px;}
.y16b{bottom:370.335000px;}
.y61{bottom:371.370000px;}
.y1f4{bottom:377.895000px;}
.y81{bottom:378.435000px;}
.y164{bottom:381.030000px;}
.y168{bottom:382.140000px;}
.y161{bottom:383.835000px;}
.y1d4{bottom:384.330000px;}
.y28{bottom:384.660000px;}
.y3a{bottom:387.465000px;}
.y79{bottom:388.620000px;}
.yad{bottom:388.980000px;}
.y1ca{bottom:389.415000px;}
.y1b0{bottom:392.790000px;}
.y19f{bottom:392.829752px;}
.y23{bottom:392.940000px;}
.y15e{bottom:393.585000px;}
.y176{bottom:397.050000px;}
.yca{bottom:397.620000px;}
.y174{bottom:400.575000px;}
.y25{bottom:400.605000px;}
.yb{bottom:403.815000px;}
.y78{bottom:412.050000px;}
.y1c9{bottom:415.335000px;}
.y7d{bottom:417.990000px;}
.y2f{bottom:418.035000px;}
.yf{bottom:418.290000px;}
.yff{bottom:420.480000px;}
.y1af{bottom:421.485000px;}
.y57{bottom:424.365000px;}
.y1a0{bottom:425.325031px;}
.y22{bottom:425.340000px;}
.y202{bottom:429.300000px;}
.yb4{bottom:429.765000px;}
.yb3{bottom:432.285000px;}
.y175{bottom:432.690000px;}
.y173{bottom:436.245000px;}
.y77{bottom:436.830000px;}
.y16{bottom:436.935000px;}
.y12b{bottom:437.400000px;}
.y166{bottom:437.475000px;}
.y40{bottom:441.285000px;}
.y1ae{bottom:450.180000px;}
.y7c{bottom:450.390000px;}
.y4b{bottom:453.570000px;}
.y1a1{bottom:457.850302px;}
.y1ff{bottom:458.565000px;}
.y76{bottom:460.080000px;}
.y1e9{bottom:461.520000px;}
.y1f7{bottom:463.320000px;}
.y1f3{bottom:464.145000px;}
.y58{bottom:464.865000px;}
.y15{bottom:467.175000px;}
.yb0{bottom:467.610000px;}
.y20{bottom:469.080000px;}
.yaf{bottom:470.130000px;}
.y172{bottom:471.885000px;}
.y6a{bottom:473.835000px;}
.yc0{bottom:473.910000px;}
.y17{bottom:476.430000px;}
.y1ad{bottom:478.875000px;}
.y158{bottom:479.265000px;}
.y2e{bottom:482.865000px;}
.y26{bottom:483.270000px;}
.y1c8{bottom:483.555000px;}
.y75{bottom:484.275000px;}
.y1ef{bottom:489.090000px;}
.y15c{bottom:490.170000px;}
.y1a2{bottom:490.360577px;}
.ya{bottom:493.845000px;}
.y1fe{bottom:496.365000px;}
.y14{bottom:497.415000px;}
.y136{bottom:498.600000px;}
.ya9{bottom:500.580000px;}
.y69{bottom:502.635000px;}
.y1ed{bottom:504.150000px;}
.y4a{bottom:505.590000px;}
.y167{bottom:506.595000px;}
.y1c7{bottom:507.495000px;}
.y1ac{bottom:507.570000px;}
.yac{bottom:507.930000px;}
.y74{bottom:508.830000px;}
.y165{bottom:509.790000px;}
.y15a{bottom:510.555000px;}
.y3f{bottom:510.870000px;}
.y15d{bottom:511.845000px;}
.y65{bottom:516.030000px;}
.y50{bottom:519.585000px;}
.y1b{bottom:520.275000px;}
.y39{bottom:520.845000px;}
.y1a3{bottom:522.855856px;}
.y1e6{bottom:523.365000px;}
.y48{bottom:526.755000px;}
.y49{bottom:527.190000px;}
.y72{bottom:527.220000px;}
.y13{bottom:527.655000px;}
.y44{bottom:528.480000px;}
.y68{bottom:531.465000px;}
.y1c6{bottom:533.445000px;}
.y1f{bottom:533.910000px;}
.y1fd{bottom:534.165000px;}
.y1ab{bottom:536.250000px;}
.y56{bottom:539.205000px;}
.y157{bottom:541.545000px;}
.yab{bottom:543.570000px;}
.y1ec{bottom:544.140000px;}
.y1a{bottom:545.475000px;}
.y2d{bottom:547.665000px;}
.y9{bottom:547.845000px;}
.y1f2{bottom:551.010000px;}
.y1f6{bottom:551.085000px;}
.y47{bottom:552.675000px;}
.y43{bottom:554.430000px;}
.y1a4{bottom:555.381126px;}
.y38{bottom:557.385000px;}
.y1c{bottom:558.540000px;}
.y54{bottom:560.805000px;}
.y1aa{bottom:564.945000px;}
.ybf{bottom:568.365000px;}
.y1e4{bottom:570.390000px;}
.y19{bottom:570.675000px;}
.y1fc{bottom:571.965000px;}
.y16f{bottom:575.100000px;}
.y46{bottom:578.595000px;}
.ya8{bottom:579.600000px;}
.y42{bottom:580.350000px;}
.y55{bottom:582.405000px;}
.y148{bottom:589.500000px;}
.y71{bottom:590.295000px;}
.y12d{bottom:594.000000px;}
.y18{bottom:595.875000px;}
.y1e{bottom:598.710000px;}
.y1a9{bottom:600.450000px;}
.y1c5{bottom:601.665000px;}
.y37{bottom:602.790000px;}
.y156{bottom:603.690000px;}
.y45{bottom:604.515000px;}
.y41{bottom:606.270000px;}
.y1a5{bottom:607.610502px;}
.y1fb{bottom:609.810000px;}
.y179{bottom:611.715000px;}
.y2c{bottom:612.510000px;}
.y70{bottom:616.965000px;}
.yfe{bottom:620.355000px;}
.y80{bottom:623.700000px;}
.y1c4{bottom:625.605000px;}
.y1d3{bottom:625.710000px;}
.y12{bottom:627.450000px;}
.y1a6{bottom:629.130000px;}
.ybe{bottom:630.930000px;}
.y53{bottom:632.010000px;}
.y91{bottom:633.630000px;}
.y1e3{bottom:635.220000px;}
.y178{bottom:636.945000px;}
.y171{bottom:639.870000px;}
.y4f{bottom:640.725000px;}
.y6f{bottom:645.765000px;}
.y1fa{bottom:647.610000px;}
.y1a8{bottom:647.850000px;}
.y36{bottom:648.150000px;}
.y4e{bottom:649.230000px;}
.y1c3{bottom:651.525000px;}
.y8a{bottom:651.705000px;}
.y11{bottom:654.270000px;}
.y51{bottom:657.720000px;}
.y1c1{bottom:657.870000px;}
.y4d{bottom:659.160000px;}
.y1d{bottom:663.510000px;}
.y3e{bottom:665.670000px;}
.y1e2{bottom:667.620000px;}
.y1a7{bottom:670.530000px;}
.yfd{bottom:680.550000px;}
.y6e{bottom:680.940000px;}
.y52{bottom:683.250000px;}
.y1f9{bottom:685.410000px;}
.yf5{bottom:697.575000px;}
.y4c{bottom:708.765000px;}
.y35{bottom:711.690000px;}
.y60{bottom:716.145000px;}
.y1ea{bottom:721.770000px;}
.y5f{bottom:734.865000px;}
.y10{bottom:750.390000px;}
.yc7{bottom:753.450000px;}
.y12c{bottom:755.790000px;}
.y1dc{bottom:756.360000px;}
.y159{bottom:767.415000px;}
.y30{bottom:775.905000px;}
.h21{height:19.212835px;}
.h50{height:34.859971px;}
.h41{height:37.063738px;}
.h4b{height:37.116465px;}
.h59{height:37.824788px;}
.h63{height:39.783867px;}
.h4f{height:45.885570px;}
.h34{height:46.315547px;}
.h3b{height:48.793216px;}
.h45{height:48.862629px;}
.h1e{height:49.284492px;}
.h37{height:49.403250px;}
.h5e{height:49.637060px;}
.h55{height:49.720506px;}
.h1d{height:50.062500px;}
.h61{height:50.312812px;}
.h2a{height:52.847227px;}
.h54{height:53.252424px;}
.h52{height:54.585488px;}
.h38{height:54.628594px;}
.h51{height:54.680243px;}
.h42{height:58.047721px;}
.h4c{height:58.130300px;}
.h3a{height:58.147998px;}
.h44{height:58.230719px;}
.h7{height:58.573125px;}
.h5f{height:58.993489px;}
.h3d{height:59.042245px;}
.h60{height:59.095523px;}
.h47{height:59.126239px;}
.h58{height:59.214476px;}
.h5c{height:59.311361px;}
.h57{height:59.315765px;}
.h5{height:59.378906px;}
.h22{height:60.181473px;}
.h56{height:60.218562px;}
.h5b{height:60.222966px;}
.h16{height:60.637500px;}
.h15{height:60.747750px;}
.h30{height:61.383867px;}
.h23{height:62.327813px;}
.h19{height:62.578125px;}
.h31{height:66.578906px;}
.h18{height:66.583125px;}
.h1a{height:66.683250px;}
.h1b{height:69.086250px;}
.h70{height:69.236437px;}
.h5a{height:69.392676px;}
.h6{height:69.473320px;}
.h9{height:69.592078px;}
.h2d{height:70.493320px;}
.h62{height:70.547812px;}
.h33{height:71.515547px;}
.h24{height:71.633320px;}
.hc{height:74.830078px;}
.hd{height:74.929852px;}
.h1{height:75.093750px;}
.h79{height:75.243937px;}
.h4e{height:75.519163px;}
.h28{height:78.113320px;}
.h1c{height:78.973945px;}
.h1f{height:79.092703px;}
.h26{height:79.553320px;}
.h27{height:79.672078px;}
.h40{height:80.417436px;}
.h53{height:80.460148px;}
.h4a{height:80.531837px;}
.h6a{height:80.853750px;}
.h3f{height:80.920910px;}
.h49{height:81.036027px;}
.h68{height:81.393750px;}
.h69{height:81.573750px;}
.h2b{height:81.647227px;}
.h17{height:82.635820px;}
.ha{height:82.687500px;}
.hb{height:82.797750px;}
.h11{height:83.604375px;}
.h12{height:83.704500px;}
.h2e{height:86.585445px;}
.h6e{height:87.833413px;}
.h20{height:87.859687px;}
.h6d{height:87.983555px;}
.h66{height:88.009875px;}
.he{height:89.068359px;}
.hf{height:89.187117px;}
.h13{height:90.956250px;}
.h14{height:91.066500px;}
.h4d{height:93.059699px;}
.h3c{height:93.544635px;}
.h46{height:93.677711px;}
.h4{height:99.162773px;}
.h6f{height:99.844820px;}
.h2{height:99.874688px;}
.h8{height:100.125000px;}
.h3{height:100.878750px;}
.h5d{height:102.418590px;}
.h3e{height:103.194688px;}
.h48{height:103.341492px;}
.h64{height:106.633125px;}
.h65{height:108.850078px;}
.h72{height:112.640625px;}
.h71{height:118.757812px;}
.h73{height:125.406562px;}
.h74{height:125.556750px;}
.h39{height:129.058073px;}
.h43{height:129.241670px;}
.h77{height:148.142250px;}
.h67{height:160.999687px;}
.h2c{height:176.400000px;}
.h78{height:178.579688px;}
.h76{height:183.566250px;}
.h75{height:183.676500px;}
.h10{height:197.850516px;}
.h29{height:201.600000px;}
.h2f{height:226.800000px;}
.h35{height:253.800000px;}
.h6c{height:261.733392px;}
.h25{height:264.600000px;}
.h32{height:302.400000px;}
.h36{height:459.180000px;}
.h6b{height:652.132184px;}
.h0{height:810.000000px;}
.w2{width:63.302215px;}
.w9{width:67.320000px;}
.w10{width:70.200000px;}
.wc{width:77.220000px;}
.wf{width:81.540000px;}
.wa{width:100.080000px;}
.wb{width:102.780000px;}
.we{width:120.420000px;}
.wd{width:122.940000px;}
.w17{width:123.119459px;}
.w3{width:133.200000px;}
.w5{width:135.720000px;}
.w7{width:136.080000px;}
.w8{width:144.540000px;}
.w12{width:178.924685px;}
.w15{width:189.721964px;}
.w13{width:208.255541px;}
.w6{width:255.060000px;}
.w4{width:265.680000px;}
.w14{width:370.794764px;}
.w18{width:504.536228px;}
.w16{width:509.565862px;}
.w11{width:650.520000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.xac{left:-578.254828px;}
.xab{left:-542.009600px;}
.x9d{left:-524.525067px;}
.x9f{left:-514.904757px;}
.x9e{left:-459.855202px;}
.xa0{left:-391.705883px;}
.xbe{left:-374.004831px;}
.xbd{left:-337.759445px;}
.xa1{left:-336.023701px;}
.xae{left:-320.274836px;}
.xa2{left:-317.023042px;}
.xb0{left:-310.654484px;}
.xaf{left:-255.615597px;}
.xa5{left:-199.506914px;}
.xb1{left:-187.455074px;}
.xa3{left:-136.571323px;}
.xa7{left:-132.873721px;}
.xb2{left:-131.772649px;}
.xb3{left:-112.771908px;}
.xa4{left:-103.817547px;}
.xa6{left:-53.148398px;}
.x0{left:0.000000px;}
.x52{left:1.947544px;}
.xaa{left:5.170862px;}
.x6a{left:8.676000px;}
.x62{left:10.656000px;}
.x5f{left:11.736000px;}
.x92{left:14.295000px;}
.x4c{left:22.391984px;}
.x97{left:27.000000px;}
.x64{left:30.990000px;}
.x1e{left:32.003984px;}
.x29{left:33.227984px;}
.x76{left:35.745000px;}
.x73{left:36.825000px;}
.x7{left:37.835984px;}
.x96{left:38.880000px;}
.x95{left:40.968000px;}
.x94{left:42.984000px;}
.x51{left:44.567984px;}
.xca{left:48.000806px;}
.xc{left:49.031984px;}
.xed{left:51.947984px;}
.x2f{left:54.035984px;}
.x8a{left:55.185000px;}
.x19{left:57.527984px;}
.x5b{left:58.751984px;}
.x9{left:61.811984px;}
.x1f{left:62.963984px;}
.xbf{left:64.441663px;}
.x8d{left:66.390000px;}
.xb4{left:67.675143px;}
.x98{left:69.516000px;}
.xb6{left:71.379306px;}
.xd{left:73.151984px;}
.x9a{left:74.555984px;}
.x7f{left:76.211984px;}
.x21{left:77.795984px;}
.xef{left:81.323984px;}
.x78{left:82.439984px;}
.xd6{left:84.801488px;}
.x22{left:86.111984px;}
.xf7{left:87.155984px;}
.x2a{left:89.531984px;}
.xd5{left:90.804751px;}
.x2b{left:92.411984px;}
.x7a{left:93.455984px;}
.x6e{left:94.715984px;}
.x6b{left:98.895000px;}
.x79{left:101.267984px;}
.x5d{left:103.535984px;}
.x4a{left:106.199984px;}
.x10{left:108.575984px;}
.x5c{left:109.763984px;}
.x7b{left:111.419984px;}
.xf{left:117.575984px;}
.x40{left:119.879984px;}
.x3e{left:121.859984px;}
.x2c{left:123.155984px;}
.x5a{left:125.315984px;}
.xcc{left:127.961803px;}
.xcd{left:130.255616px;}
.x5e{left:134.460000px;}
.xa9{left:137.323933px;}
.xea{left:146.219088px;}
.x83{left:147.779984px;}
.xb5{left:151.100613px;}
.x14{left:154.649984px;}
.xa8{left:157.208089px;}
.x63{left:158.969984px;}
.x60{left:160.049984px;}
.xec{left:161.669984px;}
.xcb{left:164.027029px;}
.xe6{left:167.789984px;}
.xfa{left:182.189984px;}
.xf4{left:185.114984px;}
.xc0{left:187.616763px;}
.x30{left:197.714984px;}
.xe8{left:198.794984px;}
.x59{left:202.349984px;}
.xbb{left:209.422636px;}
.xce{left:218.840869px;}
.x46{left:221.759984px;}
.xcf{left:223.238796px;}
.xe9{left:225.614984px;}
.x99{left:227.804984px;}
.xe{left:232.019984px;}
.xdb{left:233.639984px;}
.xbc{left:236.527597px;}
.xda{left:239.249984px;}
.x6d{left:243.794984px;}
.x69{left:246.960000px;}
.x6c{left:248.294984px;}
.xe3{left:250.709984px;}
.x81{left:257.684984px;}
.xba{left:259.236864px;}
.x15{left:260.489984px;}
.xc1{left:262.301387px;}
.xd3{left:263.567791px;}
.xeb{left:267.554984px;}
.x7c{left:269.129984px;}
.x4{left:270.179984px;}
.xd2{left:272.407625px;}
.x8{left:280.334984px;}
.x25{left:286.814984px;}
.x4b{left:292.169984px;}
.x61{left:301.964984px;}
.x5{left:304.019984px;}
.xb7{left:314.275750px;}
.x31{left:320.069984px;}
.x23{left:322.814984px;}
.x32{left:325.289984px;}
.xb9{left:327.386480px;}
.x6{left:329.729984px;}
.x68{left:330.809984px;}
.x49{left:332.204984px;}
.xd8{left:333.749984px;}
.xf0{left:335.909984px;}
.x33{left:337.529984px;}
.x13{left:339.554984px;}
.x86{left:341.174984px;}
.xd7{left:342.254984px;}
.x44{left:344.594984px;}
.x1b{left:352.079984px;}
.xdc{left:355.709984px;}
.xb8{left:361.450381px;}
.x47{left:365.324984px;}
.x26{left:380.774984px;}
.xe5{left:384.149984px;}
.x2e{left:393.374984px;}
.xf5{left:401.294984px;}
.xd0{left:416.098909px;}
.xd9{left:422.489984px;}
.xe4{left:423.929984px;}
.x34{left:426.674984px;}
.x88{left:430.020000px;}
.x35{left:436.574984px;}
.xc2{left:442.720158px;}
.x80{left:446.009984px;}
.x36{left:448.814984px;}
.xd1{left:458.198069px;}
.x2d{left:460.979984px;}
.x16{left:466.229984px;}
.x84{left:468.509984px;}
.xc3{left:475.471023px;}
.x89{left:478.004984px;}
.x24{left:482.039984px;}
.x85{left:489.959984px;}
.x67{left:500.114984px;}
.xd4{left:501.594618px;}
.x20{left:510.554984px;}
.x3{left:515.594984px;}
.xc4{left:526.140527px;}
.xad{left:527.220000px;}
.xf1{left:533.879984px;}
.xe7{left:538.094984px;}
.xf3{left:542.369984px;}
.xfe{left:543.704984px;}
.x1a{left:549.689984px;}
.x1c{left:551.804984px;}
.x8b{left:552.960000px;}
.xf2{left:555.224984px;}
.x87{left:559.049984px;}
.x53{left:562.529984px;}
.x1d{left:564.449984px;}
.x54{left:566.669984px;}
.x3f{left:571.139984px;}
.xa{left:573.479984px;}
.x8c{left:575.069984px;}
.x9c{left:582.480000px;}
.xb{left:585.029984px;}
.xdd{left:597.449984px;}
.x8f{left:599.580000px;}
.x27{left:604.769984px;}
.x41{left:607.424984px;}
.xc8{left:611.556704px;}
.x72{left:621.540000px;}
.x2{left:623.054984px;}
.xfb{left:628.124984px;}
.x93{left:629.744984px;}
.xc7{left:634.263098px;}
.x75{left:636.944984px;}
.x37{left:638.819984px;}
.x66{left:641.054984px;}
.xc9{left:649.800000px;}
.x71{left:656.204984px;}
.xe2{left:664.019984px;}
.x77{left:669.989984px;}
.x9b{left:673.949984px;}
.x6f{left:683.744984px;}
.x48{left:686.009984px;}
.xc5{left:689.295022px;}
.x57{left:692.744984px;}
.xe0{left:698.834984px;}
.x8e{left:701.849984px;}
.xf8{left:712.514984px;}
.xc6{left:716.581957px;}
.x45{left:727.769984px;}
.x90{left:737.204984px;}
.xff{left:741.089984px;}
.x58{left:742.604984px;}
.xde{left:749.519984px;}
.x70{left:757.620000px;}
.x18{left:763.049984px;}
.xfd{left:783.509984px;}
.x65{left:785.774984px;}
.x82{left:807.044984px;}
.x28{left:812.489984px;}
.x1{left:820.259984px;}
.xfc{left:823.649984px;}
.xf6{left:824.834984px;}
.xf9{left:829.184984px;}
.x38{left:830.984984px;}
.x39{left:836.384984px;}
.x3a{left:848.624984px;}
.x74{left:854.924984px;}
.x7d{left:861.509984px;}
.xe1{left:874.514984px;}
.xee{left:877.289984px;}
.x43{left:885.524984px;}
.x12{left:894.089984px;}
.x17{left:898.094984px;}
.x7e{left:900.029984px;}
.x42{left:915.584984px;}
.x3b{left:925.889984px;}
.xdf{left:928.904984px;}
.x50{left:930.269984px;}
.x11{left:933.689984px;}
.x3c{left:935.789984px;}
.x91{left:937.620000px;}
.x4f{left:943.454984px;}
.x3d{left:948.029984px;}
.x55{left:949.394984px;}
.x4e{left:958.934984px;}
.x4d{left:982.004984px;}
.x56{left:1008.464984px;}
@media print{
.v1c{vertical-align:-175.146667pt;}
.v1b{vertical-align:-162.346667pt;}
.v1a{vertical-align:-149.760000pt;}
.v19{vertical-align:-137.226667pt;}
.v18{vertical-align:-124.960000pt;}
.v17{vertical-align:-112.906667pt;}
.v16{vertical-align:-100.906667pt;}
.v15{vertical-align:-89.120000pt;}
.v14{vertical-align:-77.440000pt;}
.v13{vertical-align:-65.920000pt;}
.v4{vertical-align:-55.200000pt;}
.v21{vertical-align:-45.262210pt;}
.v12{vertical-align:-43.413333pt;}
.v11{vertical-align:-32.426667pt;}
.v24{vertical-align:-26.344634pt;}
.v26{vertical-align:-24.575656pt;}
.v10{vertical-align:-21.386667pt;}
.vd{vertical-align:-20.480000pt;}
.v1f{vertical-align:-19.536451pt;}
.v9{vertical-align:-17.920000pt;}
.v28{vertical-align:-16.640000pt;}
.v2{vertical-align:-15.360000pt;}
.v2b{vertical-align:-13.973333pt;}
.vf{vertical-align:-10.666667pt;}
.v5{vertical-align:-8.960000pt;}
.v22{vertical-align:-7.779081pt;}
.v2a{vertical-align:-5.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.792000pt;}
.v25{vertical-align:3.139483pt;}
.v2d{vertical-align:5.120000pt;}
.vc{vertical-align:6.400000pt;}
.v7{vertical-align:7.680000pt;}
.v6{vertical-align:8.960000pt;}
.v29{vertical-align:12.800000pt;}
.v27{vertical-align:14.346891pt;}
.v3{vertical-align:15.360000pt;}
.va{vertical-align:17.920000pt;}
.vb{vertical-align:19.200000pt;}
.ve{vertical-align:22.400000pt;}
.v1e{vertical-align:23.425991pt;}
.v8{vertical-align:25.600000pt;}
.v23{vertical-align:28.110418pt;}
.v1d{vertical-align:39.779039pt;}
.v20{vertical-align:48.356864pt;}
.v2c{vertical-align:65.013333pt;}
.v30{vertical-align:70.272000pt;}
.v2e{vertical-align:77.288880pt;}
.v31{vertical-align:80.640000pt;}
.v2f{vertical-align:154.577759pt;}
.ls16{letter-spacing:-4.224000pt;}
.lsa0{letter-spacing:-2.944000pt;}
.ls7b{letter-spacing:-2.592000pt;}
.ls9f{letter-spacing:-2.048000pt;}
.ls41{letter-spacing:-0.949333pt;}
.lsbc{letter-spacing:-0.672000pt;}
.lsb0{letter-spacing:-0.613333pt;}
.ls91{letter-spacing:-0.395733pt;}
.ls57{letter-spacing:-0.375467pt;}
.ls5d{letter-spacing:-0.340800pt;}
.ls59{letter-spacing:-0.327467pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsaf{letter-spacing:-0.311467pt;}
.ls3a{letter-spacing:-0.303467pt;}
.ls80{letter-spacing:-0.297067pt;}
.ls54{letter-spacing:-0.290667pt;}
.ls6{letter-spacing:-0.288533pt;}
.ls4d{letter-spacing:-0.275733pt;}
.ls5{letter-spacing:-0.272000pt;}
.ls32{letter-spacing:-0.268800pt;}
.ls47{letter-spacing:-0.256000pt;}
.lsaa{letter-spacing:-0.253258pt;}
.ls3c{letter-spacing:-0.235733pt;}
.ls26{letter-spacing:-0.204267pt;}
.lsab{letter-spacing:-0.194667pt;}
.ls46{letter-spacing:-0.192000pt;}
.ls85{letter-spacing:-0.191467pt;}
.ls40{letter-spacing:-0.182933pt;}
.ls4c{letter-spacing:-0.168533pt;}
.ls1f{letter-spacing:-0.159467pt;}
.lsb1{letter-spacing:-0.143467pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls38{letter-spacing:-0.118933pt;}
.ls5a{letter-spacing:-0.116800pt;}
.ls92{letter-spacing:-0.104533pt;}
.lsa9{letter-spacing:-0.104502pt;}
.ls1c{letter-spacing:-0.097067pt;}
.ls21{letter-spacing:-0.094933pt;}
.ls4f{letter-spacing:-0.078933pt;}
.lsad{letter-spacing:-0.064000pt;}
.ls5b{letter-spacing:-0.051840pt;}
.ls90{letter-spacing:-0.033280pt;}
.lsa8{letter-spacing:-0.033270pt;}
.ls5e{letter-spacing:-0.032000pt;}
.ls4e{letter-spacing:-0.029440pt;}
.ls3b{letter-spacing:-0.024960pt;}
.lsae{letter-spacing:-0.023680pt;}
.ls7c{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5c{letter-spacing:0.005387pt;}
.ls2{letter-spacing:0.016000pt;}
.lsa2{letter-spacing:0.016635pt;}
.ls1e{letter-spacing:0.019840pt;}
.lsb6{letter-spacing:0.032000pt;}
.ls17{letter-spacing:0.033280pt;}
.ls25{letter-spacing:0.068267pt;}
.ls39{letter-spacing:0.070933pt;}
.ls30{letter-spacing:0.074752pt;}
.ls48{letter-spacing:0.077440pt;}
.ls50{letter-spacing:0.082560pt;}
.ls2f{letter-spacing:0.087552pt;}
.ls4b{letter-spacing:0.090240pt;}
.lsa7{letter-spacing:0.094905pt;}
.ls29{letter-spacing:0.110720pt;}
.ls2b{letter-spacing:0.126720pt;}
.ls55{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.137387pt;}
.ls58{letter-spacing:0.155733pt;}
.ls2c{letter-spacing:0.158720pt;}
.ls45{letter-spacing:0.179840pt;}
.ls84{letter-spacing:0.182400pt;}
.ls1{letter-spacing:0.192000pt;}
.lsb5{letter-spacing:0.193280pt;}
.lsf{letter-spacing:0.224000pt;}
.ls2e{letter-spacing:0.225664pt;}
.lsa3{letter-spacing:0.232960pt;}
.lsac{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.256000pt;}
.ls3f{letter-spacing:0.267733pt;}
.lsb2{letter-spacing:0.271467pt;}
.ls37{letter-spacing:0.284800pt;}
.ls28{letter-spacing:0.290560pt;}
.ls31{letter-spacing:0.290667pt;}
.ls3d{letter-spacing:0.303467pt;}
.ls44{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.339627pt;}
.ls2d{letter-spacing:0.385664pt;}
.ls94{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.450560pt;}
.ls7d{letter-spacing:12.503040pt;}
.lsd{letter-spacing:14.599552pt;}
.lse{letter-spacing:14.713600pt;}
.ls13{letter-spacing:15.142400pt;}
.ls74{letter-spacing:16.624738pt;}
.ls34{letter-spacing:16.722560pt;}
.ls33{letter-spacing:17.020800pt;}
.ls10{letter-spacing:17.728000pt;}
.ls73{letter-spacing:18.118846pt;}
.ls36{letter-spacing:19.482624pt;}
.lsc{letter-spacing:21.636352pt;}
.lsb{letter-spacing:21.750400pt;}
.ls8{letter-spacing:34.680619pt;}
.lsa{letter-spacing:34.784000pt;}
.ls7{letter-spacing:34.794667pt;}
.ls82{letter-spacing:38.784640pt;}
.ls81{letter-spacing:38.912640pt;}
.ls3{letter-spacing:39.646080pt;}
.ls60{letter-spacing:47.959444pt;}
.ls67{letter-spacing:48.023807pt;}
.ls6e{letter-spacing:48.027671pt;}
.ls78{letter-spacing:50.999576pt;}
.ls4{letter-spacing:51.006720pt;}
.ls83{letter-spacing:52.734720pt;}
.ls12{letter-spacing:52.775680pt;}
.ls1a{letter-spacing:57.888939pt;}
.ls3e{letter-spacing:57.910272pt;}
.ls1d{letter-spacing:58.002987pt;}
.ls18{letter-spacing:58.024320pt;}
.ls62{letter-spacing:58.026717pt;}
.ls70{letter-spacing:58.113129pt;}
.ls69{letter-spacing:58.128586pt;}
.ls5f{letter-spacing:58.146335pt;}
.ls22{letter-spacing:58.152320pt;}
.ls66{letter-spacing:58.205869pt;}
.ls6d{letter-spacing:58.229054pt;}
.lsba{letter-spacing:60.763648pt;}
.lsb9{letter-spacing:60.865280pt;}
.ls19{letter-spacing:62.016000pt;}
.lsb3{letter-spacing:78.255872pt;}
.lsb4{letter-spacing:78.369920pt;}
.ls97{letter-spacing:78.398720pt;}
.ls64{letter-spacing:82.778115pt;}
.ls6b{letter-spacing:82.907467pt;}
.lsb8{letter-spacing:87.809920pt;}
.lsb7{letter-spacing:87.969920pt;}
.ls7a{letter-spacing:96.978560pt;}
.ls99{letter-spacing:121.705387pt;}
.ls96{letter-spacing:130.912000pt;}
.ls9a{letter-spacing:138.421333pt;}
.ls65{letter-spacing:151.603345pt;}
.ls72{letter-spacing:151.780374pt;}
.ls6c{letter-spacing:151.819015pt;}
.ls9e{letter-spacing:166.505387pt;}
.ls9d{letter-spacing:168.425387pt;}
.ls93{letter-spacing:177.994667pt;}
.ls61{letter-spacing:192.582431pt;}
.ls6f{letter-spacing:192.856397pt;}
.ls68{letter-spacing:192.875718pt;}
.ls43{letter-spacing:203.966507pt;}
.ls98{letter-spacing:224.905387pt;}
.ls9b{letter-spacing:231.818667pt;}
.ls95{letter-spacing:236.288000pt;}
.ls52{letter-spacing:271.863893pt;}
.ls23{letter-spacing:275.519787pt;}
.lsa6{letter-spacing:287.145387pt;}
.lsa5{letter-spacing:287.625387pt;}
.ls53{letter-spacing:291.483093pt;}
.lsa4{letter-spacing:303.785387pt;}
.ls8c{letter-spacing:310.402219pt;}
.ls8f{letter-spacing:310.473387pt;}
.ls87{letter-spacing:315.071147pt;}
.ls8d{letter-spacing:337.353387pt;}
.ls8a{letter-spacing:339.913387pt;}
.ls89{letter-spacing:340.553387pt;}
.ls51{letter-spacing:365.250560pt;}
.ls8e{letter-spacing:386.591147pt;}
.ls8b{letter-spacing:388.511147pt;}
.ls56{letter-spacing:388.770560pt;}
.ls42{letter-spacing:397.193173pt;}
.ls88{letter-spacing:413.513387pt;}
.ls76{letter-spacing:416.084432pt;}
.ls7e{letter-spacing:434.529707pt;}
.ls49{letter-spacing:435.387947pt;}
.ls27{letter-spacing:435.577387pt;}
.ls86{letter-spacing:450.431147pt;}
.ls4a{letter-spacing:458.063573pt;}
.ls35{letter-spacing:485.710720pt;}
.lsa1{letter-spacing:486.583829pt;}
.ls77{letter-spacing:489.678367pt;}
.ls63{letter-spacing:503.965599pt;}
.ls71{letter-spacing:504.655488pt;}
.ls6a{letter-spacing:504.656648pt;}
.ls7f{letter-spacing:557.303040pt;}
.ls75{letter-spacing:612.162390pt;}
.ls9c{letter-spacing:658.058667pt;}
.lsbb{letter-spacing:803.011627pt;}
.ls79{letter-spacing:972.352336pt;}
.ls11{letter-spacing:978.208000pt;}
.ls15{letter-spacing:980.128000pt;}
.wse1{word-spacing:-96.000000pt;}
.wscc{word-spacing:-84.841287pt;}
.ws4d{word-spacing:-74.880000pt;}
.wscd{word-spacing:-58.685333pt;}
.wsa5{word-spacing:-35.591040pt;}
.wsf4{word-spacing:-29.712640pt;}
.wse2{word-spacing:-26.688000pt;}
.wsf3{word-spacing:-26.432000pt;}
.ws13{word-spacing:-23.696640pt;}
.ws14{word-spacing:-23.663360pt;}
.ws63{word-spacing:-23.494827pt;}
.wsc{word-spacing:-21.724928pt;}
.wsb{word-spacing:-21.696000pt;}
.wsac{word-spacing:-20.852224pt;}
.wscb{word-spacing:-20.845988pt;}
.ws45{word-spacing:-20.816640pt;}
.ws46{word-spacing:-20.791680pt;}
.ws43{word-spacing:-20.513173pt;}
.wsad{word-spacing:-20.456491pt;}
.wsf6{word-spacing:-20.144640pt;}
.ws4e{word-spacing:-19.867307pt;}
.wsa7{word-spacing:-19.419520pt;}
.ws1d{word-spacing:-19.266048pt;}
.ws1e{word-spacing:-19.237120pt;}
.wsf1{word-spacing:-18.961387pt;}
.wsfb{word-spacing:-17.984000pt;}
.wsfa{word-spacing:-17.827584pt;}
.ws0{word-spacing:-17.792000pt;}
.wsbc{word-spacing:-17.664000pt;}
.ws77{word-spacing:-17.107541pt;}
.wsa{word-spacing:-16.951808pt;}
.ws9{word-spacing:-16.922880pt;}
.ws31{word-spacing:-16.803947pt;}
.ws4c{word-spacing:-16.718613pt;}
.ws6f{word-spacing:-16.632213pt;}
.ws79{word-spacing:-16.624341pt;}
.wscf{word-spacing:-16.601707pt;}
.ws76{word-spacing:-16.576341pt;}
.ws9e{word-spacing:-16.368640pt;}
.ws15{word-spacing:-16.271573pt;}
.ws9d{word-spacing:-14.802944pt;}
.ws9f{word-spacing:-14.767360pt;}
.ws22{word-spacing:-14.672427pt;}
.ws16{word-spacing:-14.656000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws1a{word-spacing:-14.336000pt;}
.ws56{word-spacing:-14.272000pt;}
.ws21{word-spacing:-14.258827pt;}
.wsae{word-spacing:-13.913344pt;}
.ws44{word-spacing:-13.877760pt;}
.ws68{word-spacing:-12.872960pt;}
.wsa0{word-spacing:-11.920640pt;}
.ws95{word-spacing:-11.780304pt;}
.ws98{word-spacing:-11.760534pt;}
.ws8f{word-spacing:-11.577047pt;}
.ws8c{word-spacing:-11.560601pt;}
.ws93{word-spacing:-10.871691pt;}
.wsa3{word-spacing:-9.690880pt;}
.ws96{word-spacing:-8.961846pt;}
.ws90{word-spacing:-8.794023pt;}
.ws8d{word-spacing:-8.781530pt;}
.ws92{word-spacing:-8.259390pt;}
.wsf8{word-spacing:-4.101632pt;}
.wse5{word-spacing:-2.798293pt;}
.wsec{word-spacing:-2.491520pt;}
.wsf9{word-spacing:-2.262400pt;}
.ws11{word-spacing:-2.192427pt;}
.ws99{word-spacing:-2.165120pt;}
.ws9b{word-spacing:-2.156160pt;}
.ws9a{word-spacing:-2.144853pt;}
.wse9{word-spacing:-2.136320pt;}
.wsf7{word-spacing:-2.093141pt;}
.wseb{word-spacing:-2.051413pt;}
.wsef{word-spacing:-2.021120pt;}
.wse8{word-spacing:-1.751253pt;}
.wse4{word-spacing:-1.373440pt;}
.ws48{word-spacing:-0.988800pt;}
.wsf5{word-spacing:-0.889813pt;}
.ws10{word-spacing:-0.768000pt;}
.wsa9{word-spacing:-0.639360pt;}
.wse6{word-spacing:-0.581760pt;}
.ws20{word-spacing:-0.560853pt;}
.ws1f{word-spacing:-0.539520pt;}
.wsea{word-spacing:-0.475093pt;}
.wsee{word-spacing:-0.387413pt;}
.ws8{word-spacing:-0.283733pt;}
.ws1b{word-spacing:-0.145920pt;}
.wse3{word-spacing:-0.130560pt;}
.ws2{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:0.032000pt;}
.wsed{word-spacing:0.464000pt;}
.ws7{word-spacing:0.600107pt;}
.ws6{word-spacing:0.730880pt;}
.wse7{word-spacing:0.757547pt;}
.ws5{word-spacing:0.768000pt;}
.wsf{word-spacing:0.821632pt;}
.ws47{word-spacing:0.927147pt;}
.ws1c{word-spacing:1.146880pt;}
.wse{word-spacing:1.325867pt;}
.ws4{word-spacing:2.389333pt;}
.wsa2{word-spacing:5.148480pt;}
.ws12{word-spacing:8.192000pt;}
.ws97{word-spacing:14.151162pt;}
.ws94{word-spacing:14.158991pt;}
.ws7b{word-spacing:24.270720pt;}
.ws7c{word-spacing:25.422720pt;}
.ws7d{word-spacing:26.574720pt;}
.ws7e{word-spacing:27.737387pt;}
.ws7f{word-spacing:28.846720pt;}
.ws80{word-spacing:30.180053pt;}
.ws81{word-spacing:31.460053pt;}
.ws82{word-spacing:32.580053pt;}
.ws83{word-spacing:33.860053pt;}
.ws84{word-spacing:35.300053pt;}
.ws85{word-spacing:36.526720pt;}
.ws86{word-spacing:38.002880pt;}
.ws87{word-spacing:39.406720pt;}
.ws88{word-spacing:40.633387pt;}
.ws89{word-spacing:42.340053pt;}
.ws2c{word-spacing:76.875307pt;}
.wsc0{word-spacing:80.501333pt;}
.ws24{word-spacing:82.920320pt;}
.ws2a{word-spacing:85.146027pt;}
.ws53{word-spacing:85.354667pt;}
.ws2e{word-spacing:88.416256pt;}
.wsce{word-spacing:88.760747pt;}
.ws7a{word-spacing:92.170325pt;}
.wsb3{word-spacing:92.768000pt;}
.ws78{word-spacing:97.120768pt;}
.wsc5{word-spacing:100.213333pt;}
.ws8e{word-spacing:103.679606pt;}
.ws91{word-spacing:103.811643pt;}
.ws2d{word-spacing:115.058987pt;}
.ws2b{word-spacing:118.107947pt;}
.ws52{word-spacing:120.757333pt;}
.ws2f{word-spacing:124.412331pt;}
.wsbd{word-spacing:129.760000pt;}
.wsbe{word-spacing:129.920000pt;}
.wsc1{word-spacing:131.488000pt;}
.wsc8{word-spacing:131.552000pt;}
.wsb4{word-spacing:131.754667pt;}
.ws6e{word-spacing:132.774933pt;}
.ws30{word-spacing:135.133653pt;}
.wsb2{word-spacing:137.088000pt;}
.ws73{word-spacing:140.081600pt;}
.wsd0{word-spacing:146.554453pt;}
.ws49{word-spacing:150.809387pt;}
.wsc4{word-spacing:151.946667pt;}
.ws25{word-spacing:153.387307pt;}
.wsc9{word-spacing:154.592000pt;}
.ws75{word-spacing:155.476480pt;}
.wsb6{word-spacing:155.658667pt;}
.wsc7{word-spacing:156.512000pt;}
.wsbf{word-spacing:156.896000pt;}
.wsbb{word-spacing:157.066667pt;}
.wsc3{word-spacing:157.152000pt;}
.ws18{word-spacing:160.512000pt;}
.ws39{word-spacing:165.192320pt;}
.ws38{word-spacing:167.488640pt;}
.ws37{word-spacing:168.241280pt;}
.ws6c{word-spacing:170.534933pt;}
.ws3b{word-spacing:174.720640pt;}
.ws62{word-spacing:175.402667pt;}
.ws36{word-spacing:175.759360pt;}
.wsd1{word-spacing:175.982507pt;}
.ws3a{word-spacing:179.029589pt;}
.wsb5{word-spacing:180.480000pt;}
.ws59{word-spacing:182.080000pt;}
.ws3d{word-spacing:183.586475pt;}
.ws17{word-spacing:186.485333pt;}
.ws72{word-spacing:193.201600pt;}
.ws51{word-spacing:194.880000pt;}
.wsb8{word-spacing:200.064000pt;}
.ws19{word-spacing:202.485333pt;}
.ws58{word-spacing:204.394667pt;}
.ws61{word-spacing:207.157333pt;}
.wsba{word-spacing:208.384000pt;}
.ws5d{word-spacing:212.202667pt;}
.ws41{word-spacing:214.517547pt;}
.wsc2{word-spacing:219.872000pt;}
.wsb7{word-spacing:229.546667pt;}
.wsc6{word-spacing:229.920000pt;}
.ws74{word-spacing:232.496640pt;}
.wsb9{word-spacing:242.346667pt;}
.ws71{word-spacing:242.880213pt;}
.wsdc{word-spacing:254.810667pt;}
.wsda{word-spacing:254.847147pt;}
.ws42{word-spacing:257.120533pt;}
.ws55{word-spacing:260.277333pt;}
.wsdd{word-spacing:261.274453pt;}
.wsd8{word-spacing:261.366187pt;}
.wsd7{word-spacing:261.381120pt;}
.ws6d{word-spacing:262.440320pt;}
.ws5c{word-spacing:263.477333pt;}
.ws4f{word-spacing:269.877333pt;}
.wsdf{word-spacing:270.970667pt;}
.ws6b{word-spacing:274.451541pt;}
.wsd3{word-spacing:277.754667pt;}
.wsd9{word-spacing:277.861333pt;}
.wsdb{word-spacing:277.951232pt;}
.ws6a{word-spacing:278.089813pt;}
.ws28{word-spacing:285.675307pt;}
.wsd2{word-spacing:294.394667pt;}
.wsa8{word-spacing:297.636907pt;}
.ws70{word-spacing:300.881600pt;}
.ws5e{word-spacing:305.077333pt;}
.ws23{word-spacing:311.746347pt;}
.wsd4{word-spacing:316.512853pt;}
.wsde{word-spacing:317.152853pt;}
.ws5a{word-spacing:318.101333pt;}
.ws54{word-spacing:319.797333pt;}
.ws67{word-spacing:328.825067pt;}
.ws29{word-spacing:329.173867pt;}
.wse0{word-spacing:332.969387pt;}
.wsd6{word-spacing:333.152853pt;}
.ws69{word-spacing:338.193067pt;}
.wsaf{word-spacing:338.698667pt;}
.ws5b{word-spacing:338.730667pt;}
.wsb0{word-spacing:338.826667pt;}
.ws57{word-spacing:341.781333pt;}
.ws60{word-spacing:349.034667pt;}
.wsd5{word-spacing:349.792853pt;}
.ws50{word-spacing:355.942613pt;}
.wsab{word-spacing:369.259947pt;}
.ws34{word-spacing:376.288640pt;}
.ws35{word-spacing:379.307200pt;}
.ws27{word-spacing:382.975147pt;}
.ws5f{word-spacing:387.381333pt;}
.wsb1{word-spacing:401.066667pt;}
.ws65{word-spacing:408.291733pt;}
.ws66{word-spacing:410.618667pt;}
.ws26{word-spacing:412.125355pt;}
.wsaa{word-spacing:415.786667pt;}
.wsca{word-spacing:423.505312pt;}
.ws64{word-spacing:436.345067pt;}
.ws33{word-spacing:447.191680pt;}
.ws3c{word-spacing:447.197781pt;}
.ws32{word-spacing:473.588480pt;}
.ws3f{word-spacing:523.826133pt;}
.ws8a{word-spacing:532.067733pt;}
.ws8b{word-spacing:532.104213pt;}
.ws3e{word-spacing:540.139093pt;}
.ws40{word-spacing:576.306133pt;}
.ws4b{word-spacing:890.090240pt;}
.wsa4{word-spacing:910.861227pt;}
.ws4a{word-spacing:984.810240pt;}
.wsa1{word-spacing:1022.599680pt;}
.ws9c{word-spacing:1027.197013pt;}
.wsf2{word-spacing:1112.026667pt;}
.wsa6{word-spacing:1581.903360pt;}
.wsf0{word-spacing:1705.173760pt;}
._36{margin-left:-156.863953pt;}
._38{margin-left:-10.044800pt;}
._5{margin-left:-8.460160pt;}
._4{margin-left:-7.431680pt;}
._8{margin-left:-6.454187pt;}
._3{margin-left:-5.557760pt;}
._14{margin-left:-4.391893pt;}
._7{margin-left:-3.313280pt;}
._6{margin-left:-2.120960pt;}
._1{margin-left:-1.085440pt;}
._0{width:1.021440pt;}
._b{width:1.985920pt;}
._11{width:3.036160pt;}
._39{width:4.770304pt;}
._13{width:13.361280pt;}
._f{width:16.096000pt;}
._1f{width:17.813931pt;}
._47{width:19.109547pt;}
._19{width:20.302336pt;}
._e{width:21.460907pt;}
._d{width:22.955520pt;}
._9{width:25.556267pt;}
._c{width:26.816427pt;}
._45{width:27.981867pt;}
._46{width:31.116160pt;}
._12{width:39.449387pt;}
._37{width:86.305845pt;}
._10{width:94.405547pt;}
._20{width:100.565333pt;}
._15{width:121.236693pt;}
._26{width:136.267520pt;}
._43{width:143.657387pt;}
._42{width:170.805333pt;}
._1a{width:178.640000pt;}
._1e{width:208.812160pt;}
._40{width:210.058667pt;}
._34{width:215.175339pt;}
._24{width:217.214293pt;}
._41{width:220.746667pt;}
._3d{width:224.960000pt;}
._23{width:230.634667pt;}
._3f{width:236.032000pt;}
._1b{width:237.393920pt;}
._22{width:238.782293pt;}
._25{width:240.411947pt;}
._33{width:259.987413pt;}
._2e{width:265.045333pt;}
._30{width:290.683733pt;}
._32{width:301.443840pt;}
._21{width:303.370667pt;}
._29{width:311.787093pt;}
._2b{width:319.947093pt;}
._1c{width:321.991680pt;}
._1d{width:333.393920pt;}
._2a{width:359.285333pt;}
._18{width:363.524053pt;}
._44{width:365.459627pt;}
._2d{width:376.373333pt;}
._28{width:377.354667pt;}
._2f{width:386.070016pt;}
._2c{width:387.509333pt;}
._31{width:408.869760pt;}
._27{width:414.901333pt;}
._3c{width:436.269141pt;}
._a{width:451.187627pt;}
._3a{width:462.683307pt;}
._3b{width:474.683307pt;}
._16{width:479.282560pt;}
._17{width:567.940693pt;}
._3e{width:686.058667pt;}
._35{width:715.015253pt;}
._2{width:995.936000pt;}
.fs28{font-size:28.160000pt;}
.fs22{font-size:29.710038pt;}
.fs1e{font-size:31.588238pt;}
.fs20{font-size:31.633175pt;}
.fs26{font-size:32.088479pt;}
.fs24{font-size:32.236857pt;}
.fs21{font-size:39.106803pt;}
.fs1d{font-size:41.584897pt;}
.fs1f{font-size:41.644055pt;}
.fs25{font-size:42.304078pt;}
.fs23{font-size:42.375196pt;}
.fs16{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs19{font-size:49.920000pt;}
.fs1a{font-size:50.048000pt;}
.fs18{font-size:51.290743pt;}
.fs17{font-size:53.120000pt;}
.fs1c{font-size:53.248000pt;}
.fs1b{font-size:56.960000pt;}
.fs15{font-size:58.880000pt;}
.fs2d{font-size:59.008000pt;}
.fs27{font-size:59.520000pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:64.128000pt;}
.fs11{font-size:68.480000pt;}
.fs13{font-size:68.608000pt;}
.fs10{font-size:70.400000pt;}
.fse{font-size:70.528000pt;}
.fs2a{font-size:74.857607pt;}
.fs6{font-size:74.880000pt;}
.fs2b{font-size:74.985569pt;}
.fs8{font-size:75.008000pt;}
.fs12{font-size:80.000000pt;}
.fs2c{font-size:85.094545pt;}
.fs1{font-size:85.120000pt;}
.fs14{font-size:85.248000pt;}
.fs29{font-size:90.880000pt;}
.fs5{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fsc{font-size:105.600000pt;}
.fsd{font-size:105.728000pt;}
.fs4{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fs3{font-size:117.120000pt;}
.fs7{font-size:128.000000pt;}
.fs2e{font-size:213.120000pt;}
.fsa{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.y141{bottom:1.569448pt;}
.y14f{bottom:1.874562pt;}
.y130{bottom:1.929614pt;}
.y13c{bottom:2.174738pt;}
.y111{bottom:3.425439pt;}
.y127{bottom:3.430312pt;}
.y73{bottom:4.255393pt;}
.y134{bottom:8.347503pt;}
.y114{bottom:9.480851pt;}
.y12a{bottom:9.494338pt;}
.y13f{bottom:9.909728pt;}
.y147{bottom:11.501000pt;}
.y8{bottom:11.840000pt;}
.y12e{bottom:12.374910pt;}
.y14c{bottom:12.579233pt;}
.y13b{bottom:13.294851pt;}
.y137{bottom:13.496451pt;}
.y194{bottom:19.417981pt;}
.y12f{bottom:23.364658pt;}
.y13e{bottom:23.630288pt;}
.y100{bottom:23.691275pt;}
.y116{bottom:23.724978pt;}
.y139{bottom:25.625739pt;}
.y145{bottom:25.805809pt;}
.y115{bottom:25.920000pt;}
.y149{bottom:26.062475pt;}
.y14e{bottom:26.243868pt;}
.ye1{bottom:26.720000pt;}
.y109{bottom:27.978258pt;}
.y11f{bottom:28.018060pt;}
.y1db{bottom:28.096000pt;}
.y105{bottom:28.176980pt;}
.y11b{bottom:28.217064pt;}
.y7{bottom:29.472000pt;}
.yf4{bottom:33.413333pt;}
.y10d{bottom:35.779526pt;}
.y123{bottom:35.830426pt;}
.y140{bottom:37.329318pt;}
.y138{bottom:37.530918pt;}
.y14d{bottom:37.535603pt;}
.y13a{bottom:37.935097pt;}
.y143{bottom:38.136698pt;}
.y103{bottom:38.696681pt;}
.y119{bottom:38.751731pt;}
.y135{bottom:38.758910pt;}
.y1e1{bottom:41.344000pt;}
.ye4{bottom:41.504000pt;}
.y193{bottom:44.966875pt;}
.y142{bottom:46.275084pt;}
.y1bb{bottom:46.912000pt;}
.yfc{bottom:46.944000pt;}
.y13d{bottom:47.284064pt;}
.y155{bottom:47.360000pt;}
.y6{bottom:48.704000pt;}
.y144{bottom:50.445077pt;}
.y192{bottom:52.736000pt;}
.y1c2{bottom:52.928000pt;}
.y1da{bottom:53.728000pt;}
.y67{bottom:54.560000pt;}
.y14a{bottom:55.174132pt;}
.y18c{bottom:56.896000pt;}
.y131{bottom:58.537527pt;}
.y1e0{bottom:58.624000pt;}
.y1df{bottom:58.656000pt;}
.y146{bottom:59.592443pt;}
.y101{bottom:59.758272pt;}
.y117{bottom:59.843284pt;}
.y186{bottom:59.936000pt;}
.y195{bottom:60.269761pt;}
.y87{bottom:60.480000pt;}
.y1be{bottom:60.544000pt;}
.y133{bottom:61.830606pt;}
.yf3{bottom:63.520000pt;}
.y34{bottom:63.744000pt;}
.y10b{bottom:63.846534pt;}
.y121{bottom:63.937362pt;}
.y108{bottom:64.045255pt;}
.y11e{bottom:64.136366pt;}
.y106{bottom:64.243977pt;}
.y11c{bottom:64.335370pt;}
.y104{bottom:65.017641pt;}
.y11a{bottom:65.110134pt;}
.yd4{bottom:65.376000pt;}
.y5{bottom:67.904000pt;}
.y1e5{bottom:70.144000pt;}
.y132{bottom:71.729985pt;}
.yc3{bottom:71.840000pt;}
.yb2{bottom:72.093333pt;}
.yae{bottom:72.133333pt;}
.yaa{bottom:72.160000pt;}
.y1ba{bottom:72.416000pt;}
.y154{bottom:72.960000pt;}
.y177{bottom:73.216000pt;}
.yc6{bottom:75.296000pt;}
.y1de{bottom:76.256000pt;}
.yfb{bottom:76.384000pt;}
.y10a{bottom:77.879555pt;}
.y120{bottom:77.990346pt;}
.y14b{bottom:79.159456pt;}
.y1d9{bottom:79.328000pt;}
.y66{bottom:80.160000pt;}
.y1bf{bottom:80.832000pt;}
.y9c{bottom:82.080000pt;}
.y9a{bottom:82.106667pt;}
.y21{bottom:83.360000pt;}
.y18b{bottom:85.728000pt;}
.y4{bottom:87.104000pt;}
.ya4{bottom:87.200000pt;}
.y5e{bottom:87.296000pt;}
.y107{bottom:87.625594pt;}
.y11d{bottom:87.750249pt;}
.y102{bottom:87.825280pt;}
.y118{bottom:87.950220pt;}
.y196{bottom:89.157119pt;}
.y191{bottom:90.240000pt;}
.y113{bottom:92.509706pt;}
.y129{bottom:92.641310pt;}
.yc9{bottom:93.440000pt;}
.y185{bottom:93.568000pt;}
.y1d2{bottom:93.600000pt;}
.y1dd{bottom:93.856000pt;}
.yd3{bottom:94.176000pt;}
.ye{bottom:95.072000pt;}
.y10c{bottom:95.426862pt;}
.y122{bottom:95.562615pt;}
.y84{bottom:95.680000pt;}
.y33{bottom:95.744000pt;}
.y1b9{bottom:97.920000pt;}
.y153{bottom:98.560000pt;}
.y10e{bottom:98.743389pt;}
.y124{bottom:98.883861pt;}
.ye3{bottom:99.424000pt;}
.y112{bottom:101.859266pt;}
.y128{bottom:102.004170pt;}
.y110{bottom:103.605315pt;}
.y126{bottom:103.752703pt;}
.y1c0{bottom:104.800000pt;}
.y90{bottom:105.728000pt;}
.y10f{bottom:105.746877pt;}
.ybc{bottom:105.760000pt;}
.yfa{bottom:105.824000pt;}
.y125{bottom:105.897312pt;}
.y3{bottom:106.304000pt;}
.yeb{bottom:108.032000pt;}
.ye6{bottom:108.933333pt;}
.ydc{bottom:109.026667pt;}
.y85{bottom:109.053333pt;}
.y1bd{bottom:111.456000pt;}
.y97{bottom:112.384000pt;}
.ya2{bottom:112.800000pt;}
.y31{bottom:113.568000pt;}
.y29{bottom:114.720000pt;}
.y1d6{bottom:114.752000pt;}
.y1d1{bottom:114.880000pt;}
.y197{bottom:118.044478pt;}
.yf2{bottom:118.533333pt;}
.yd2{bottom:122.976000pt;}
.y1b8{bottom:123.424000pt;}
.yd6{bottom:124.666667pt;}
.y184{bottom:127.168000pt;}
.y18a{bottom:128.576000pt;}
.y7f{bottom:129.568000pt;}
.y190{bottom:130.240000pt;}
.y1d8{bottom:130.528000pt;}
.ye2{bottom:131.264000pt;}
.ybb{bottom:132.672000pt;}
.y2{bottom:134.626667pt;}
.ydb{bottom:134.880000pt;}
.yf9{bottom:135.266667pt;}
.ye0{bottom:135.746667pt;}
.y89{bottom:136.933333pt;}
.yed{bottom:137.306667pt;}
.y1d0{bottom:137.920000pt;}
.y170{bottom:138.240000pt;}
.y9f{bottom:138.400000pt;}
.y5d{bottom:138.746667pt;}
.y8f{bottom:139.333333pt;}
.y1bc{bottom:140.613333pt;}
.ya6{bottom:143.680000pt;}
.y96{bottom:145.986667pt;}
.yea{bottom:146.053333pt;}
.y198{bottom:146.935835pt;}
.y1b7{bottom:148.933333pt;}
.yd5{bottom:148.960000pt;}
.y152{bottom:149.760000pt;}
.ye5{bottom:150.080000pt;}
.yd1{bottom:151.773333pt;}
.yc5{bottom:154.880000pt;}
.y7e{bottom:155.200000pt;}
.y1d7{bottom:156.933333pt;}
.yda{bottom:158.400000pt;}
.yd{bottom:159.106667pt;}
.yba{bottom:159.546667pt;}
.y27{bottom:159.773333pt;}
.y183{bottom:160.800000pt;}
.y18f{bottom:162.853333pt;}
.y9b{bottom:164.000000pt;}
.yf8{bottom:164.706667pt;}
.y64{bottom:165.053333pt;}
.y17d{bottom:168.000000pt;}
.ya5{bottom:169.280000pt;}
.y88{bottom:169.533333pt;}
.y86{bottom:171.773333pt;}
.ydf{bottom:172.066667pt;}
.y169{bottom:172.293333pt;}
.y8e{bottom:172.933333pt;}
.y5b{bottom:173.093333pt;}
.y1b6{bottom:174.426667pt;}
.y1f1{bottom:175.386667pt;}
.y199{bottom:175.820528pt;}
.y151{bottom:176.160000pt;}
.y162{bottom:177.466667pt;}
.y95{bottom:179.586667pt;}
.yd0{bottom:180.613333pt;}
.yee{bottom:181.346667pt;}
.ye9{bottom:184.093333pt;}
.y16c{bottom:185.506667pt;}
.y189{bottom:186.013333pt;}
.yb9{bottom:186.426667pt;}
.y99{bottom:189.600000pt;}
.yf7{bottom:194.173333pt;}
.y182{bottom:194.426667pt;}
.y15b{bottom:194.466667pt;}
.ya3{bottom:194.880000pt;}
.y1eb{bottom:196.186667pt;}
.yd9{bottom:196.800000pt;}
.y1cf{bottom:198.586667pt;}
.y1b5{bottom:199.933333pt;}
.y6d{bottom:201.506667pt;}
.y15f{bottom:204.293333pt;}
.y19a{bottom:204.705221pt;}
.y83{bottom:204.733333pt;}
.y16e{bottom:204.800000pt;}
.y8d{bottom:206.533333pt;}
.yde{bottom:208.386667pt;}
.y5c{bottom:209.053333pt;}
.ycf{bottom:209.413333pt;}
.y18e{bottom:211.266667pt;}
.y94{bottom:213.186667pt;}
.yb8{bottom:213.306667pt;}
.ya0{bottom:215.360000pt;}
.y7b{bottom:218.146667pt;}
.y1d5{bottom:218.586667pt;}
.y17c{bottom:219.200000pt;}
.y1ce{bottom:219.866667pt;}
.ya1{bottom:220.480000pt;}
.y1ee{bottom:220.573333pt;}
.y1f0{bottom:220.666667pt;}
.y1b4{bottom:221.600000pt;}
.ye8{bottom:222.146667pt;}
.y163{bottom:225.146667pt;}
.yef{bottom:226.146667pt;}
.y6c{bottom:227.106667pt;}
.y181{bottom:228.026667pt;}
.y188{bottom:229.440000pt;}
.y19b{bottom:233.629902pt;}
.y1e8{bottom:234.746667pt;}
.yd8{bottom:235.200000pt;}
.y7a{bottom:237.666667pt;}
.y82{bottom:237.853333pt;}
.yce{bottom:238.213333pt;}
.yb7{bottom:240.186667pt;}
.y8c{bottom:240.480000pt;}
.y32{bottom:240.733333pt;}
.y9d{bottom:240.960000pt;}
.y2a{bottom:241.920000pt;}
.yf6{bottom:241.986667pt;}
.y1cd{bottom:242.906667pt;}
.ydd{bottom:243.906667pt;}
.y9e{bottom:246.080000pt;}
.y93{bottom:247.133333pt;}
.y6b{bottom:252.706667pt;}
.y16a{bottom:253.093333pt;}
.yc2{bottom:254.080000pt;}
.yec{bottom:254.240000pt;}
.y63{bottom:257.413333pt;}
.y187{bottom:258.306667pt;}
.ye7{bottom:259.013333pt;}
.y1f8{bottom:259.200000pt;}
.y1f5{bottom:259.493333pt;}
.yc8{bottom:260.000000pt;}
.y18d{bottom:260.453333pt;}
.y180{bottom:261.666667pt;}
.y19c{bottom:262.514594pt;}
.ycd{bottom:267.013333pt;}
.yb6{bottom:267.106667pt;}
.y201{bottom:269.506667pt;}
.y17b{bottom:270.426667pt;}
.y98{bottom:271.706667pt;}
.yf0{bottom:271.746667pt;}
.y8b{bottom:272.506667pt;}
.y1b3{bottom:272.640000pt;}
.yd7{bottom:273.626667pt;}
.y59{bottom:275.133333pt;}
.y92{bottom:279.173333pt;}
.y160{bottom:279.840000pt;}
.y3d{bottom:281.026667pt;}
.ybd{bottom:282.173333pt;}
.y19d{bottom:291.399287pt;}
.y2b{bottom:293.186667pt;}
.yb5{bottom:293.986667pt;}
.y17f{bottom:295.266667pt;}
.ycc{bottom:295.813333pt;}
.y1b2{bottom:298.146667pt;}
.y3c{bottom:302.146667pt;}
.y1cc{bottom:303.546667pt;}
.y62{bottom:305.280000pt;}
.ya7{bottom:310.013333pt;}
.yc{bottom:310.946667pt;}
.y5a{bottom:311.133333pt;}
.y1e7{bottom:311.586667pt;}
.yb1{bottom:312.160000pt;}
.y150{bottom:313.986667pt;}
.yf1{bottom:318.213333pt;}
.y19e{bottom:320.283980pt;}
.y24{bottom:320.480000pt;}
.y17a{bottom:321.626667pt;}
.y3b{bottom:323.266667pt;}
.y1b1{bottom:323.653333pt;}
.y1{bottom:324.413333pt;}
.ycb{bottom:324.640000pt;}
.y1cb{bottom:324.866667pt;}
.y16d{bottom:325.893333pt;}
.yc4{bottom:325.920000pt;}
.yc1{bottom:326.080000pt;}
.y200{bottom:328.386667pt;}
.y17e{bottom:328.893333pt;}
.y16b{bottom:329.186667pt;}
.y61{bottom:330.106667pt;}
.y1f4{bottom:335.906667pt;}
.y81{bottom:336.386667pt;}
.y164{bottom:338.693333pt;}
.y168{bottom:339.680000pt;}
.y161{bottom:341.186667pt;}
.y1d4{bottom:341.626667pt;}
.y28{bottom:341.920000pt;}
.y3a{bottom:344.413333pt;}
.y79{bottom:345.440000pt;}
.yad{bottom:345.760000pt;}
.y1ca{bottom:346.146667pt;}
.y1b0{bottom:349.146667pt;}
.y19f{bottom:349.182002pt;}
.y23{bottom:349.280000pt;}
.y15e{bottom:349.853333pt;}
.y176{bottom:352.933333pt;}
.yca{bottom:353.440000pt;}
.y174{bottom:356.066667pt;}
.y25{bottom:356.093333pt;}
.yb{bottom:358.946667pt;}
.y78{bottom:366.266667pt;}
.y1c9{bottom:369.186667pt;}
.y7d{bottom:371.546667pt;}
.y2f{bottom:371.586667pt;}
.yf{bottom:371.813333pt;}
.yff{bottom:373.760000pt;}
.y1af{bottom:374.653333pt;}
.y57{bottom:377.213333pt;}
.y1a0{bottom:378.066695pt;}
.y22{bottom:378.080000pt;}
.y202{bottom:381.600000pt;}
.yb4{bottom:382.013333pt;}
.yb3{bottom:384.253333pt;}
.y175{bottom:384.613333pt;}
.y173{bottom:387.773333pt;}
.y77{bottom:388.293333pt;}
.y16{bottom:388.386667pt;}
.y12b{bottom:388.800000pt;}
.y166{bottom:388.866667pt;}
.y40{bottom:392.253333pt;}
.y1ae{bottom:400.160000pt;}
.y7c{bottom:400.346667pt;}
.y4b{bottom:403.173333pt;}
.y1a1{bottom:406.978046pt;}
.y1ff{bottom:407.613333pt;}
.y76{bottom:408.960000pt;}
.y1e9{bottom:410.240000pt;}
.y1f7{bottom:411.840000pt;}
.y1f3{bottom:412.573333pt;}
.y58{bottom:413.213333pt;}
.y15{bottom:415.266667pt;}
.yb0{bottom:415.653333pt;}
.y20{bottom:416.960000pt;}
.yaf{bottom:417.893333pt;}
.y172{bottom:419.453333pt;}
.y6a{bottom:421.186667pt;}
.yc0{bottom:421.253333pt;}
.y17{bottom:423.493333pt;}
.y1ad{bottom:425.666667pt;}
.y158{bottom:426.013333pt;}
.y2e{bottom:429.213333pt;}
.y26{bottom:429.573333pt;}
.y1c8{bottom:429.826667pt;}
.y75{bottom:430.466667pt;}
.y1ef{bottom:434.746667pt;}
.y15c{bottom:435.706667pt;}
.y1a2{bottom:435.876068pt;}
.ya{bottom:438.973333pt;}
.y1fe{bottom:441.213333pt;}
.y14{bottom:442.146667pt;}
.y136{bottom:443.200000pt;}
.ya9{bottom:444.960000pt;}
.y69{bottom:446.786667pt;}
.y1ed{bottom:448.133333pt;}
.y4a{bottom:449.413333pt;}
.y167{bottom:450.306667pt;}
.y1c7{bottom:451.106667pt;}
.y1ac{bottom:451.173333pt;}
.yac{bottom:451.493333pt;}
.y74{bottom:452.293333pt;}
.y165{bottom:453.146667pt;}
.y15a{bottom:453.826667pt;}
.y3f{bottom:454.106667pt;}
.y15d{bottom:454.973333pt;}
.y65{bottom:458.693333pt;}
.y50{bottom:461.853333pt;}
.y1b{bottom:462.466667pt;}
.y39{bottom:462.973333pt;}
.y1a3{bottom:464.760761pt;}
.y1e6{bottom:465.213333pt;}
.y48{bottom:468.226667pt;}
.y49{bottom:468.613333pt;}
.y72{bottom:468.640000pt;}
.y13{bottom:469.026667pt;}
.y44{bottom:469.760000pt;}
.y68{bottom:472.413333pt;}
.y1c6{bottom:474.173333pt;}
.y1f{bottom:474.586667pt;}
.y1fd{bottom:474.813333pt;}
.y1ab{bottom:476.666667pt;}
.y56{bottom:479.293333pt;}
.y157{bottom:481.373333pt;}
.yab{bottom:483.173333pt;}
.y1ec{bottom:483.680000pt;}
.y1a{bottom:484.866667pt;}
.y2d{bottom:486.813333pt;}
.y9{bottom:486.973333pt;}
.y1f2{bottom:489.786667pt;}
.y1f6{bottom:489.853333pt;}
.y47{bottom:491.266667pt;}
.y43{bottom:492.826667pt;}
.y1a4{bottom:493.672112pt;}
.y38{bottom:495.453333pt;}
.y1c{bottom:496.480000pt;}
.y54{bottom:498.493333pt;}
.y1aa{bottom:502.173333pt;}
.ybf{bottom:505.213333pt;}
.y1e4{bottom:507.013333pt;}
.y19{bottom:507.266667pt;}
.y1fc{bottom:508.413333pt;}
.y16f{bottom:511.200000pt;}
.y46{bottom:514.306667pt;}
.ya8{bottom:515.200000pt;}
.y42{bottom:515.866667pt;}
.y55{bottom:517.693333pt;}
.y148{bottom:524.000000pt;}
.y71{bottom:524.706667pt;}
.y12d{bottom:528.000000pt;}
.y18{bottom:529.666667pt;}
.y1e{bottom:532.186667pt;}
.y1a9{bottom:533.733333pt;}
.y1c5{bottom:534.813333pt;}
.y37{bottom:535.813333pt;}
.y156{bottom:536.613333pt;}
.y45{bottom:537.346667pt;}
.y41{bottom:538.906667pt;}
.y1a5{bottom:540.098224pt;}
.y1fb{bottom:542.053333pt;}
.y179{bottom:543.746667pt;}
.y2c{bottom:544.453333pt;}
.y70{bottom:548.413333pt;}
.yfe{bottom:551.426667pt;}
.y80{bottom:554.400000pt;}
.y1c4{bottom:556.093333pt;}
.y1d3{bottom:556.186667pt;}
.y12{bottom:557.733333pt;}
.y1a6{bottom:559.226667pt;}
.ybe{bottom:560.826667pt;}
.y53{bottom:561.786667pt;}
.y91{bottom:563.226667pt;}
.y1e3{bottom:564.640000pt;}
.y178{bottom:566.173333pt;}
.y171{bottom:568.773333pt;}
.y4f{bottom:569.533333pt;}
.y6f{bottom:574.013333pt;}
.y1fa{bottom:575.653333pt;}
.y1a8{bottom:575.866667pt;}
.y36{bottom:576.133333pt;}
.y4e{bottom:577.093333pt;}
.y1c3{bottom:579.133333pt;}
.y8a{bottom:579.293333pt;}
.y11{bottom:581.573333pt;}
.y51{bottom:584.640000pt;}
.y1c1{bottom:584.773333pt;}
.y4d{bottom:585.920000pt;}
.y1d{bottom:589.786667pt;}
.y3e{bottom:591.706667pt;}
.y1e2{bottom:593.440000pt;}
.y1a7{bottom:596.026667pt;}
.yfd{bottom:604.933333pt;}
.y6e{bottom:605.280000pt;}
.y52{bottom:607.333333pt;}
.y1f9{bottom:609.253333pt;}
.yf5{bottom:620.066667pt;}
.y4c{bottom:630.013333pt;}
.y35{bottom:632.613333pt;}
.y60{bottom:636.573333pt;}
.y1ea{bottom:641.573333pt;}
.y5f{bottom:653.213333pt;}
.y10{bottom:667.013333pt;}
.yc7{bottom:669.733333pt;}
.y12c{bottom:671.813333pt;}
.y1dc{bottom:672.320000pt;}
.y159{bottom:682.146667pt;}
.y30{bottom:689.693333pt;}
.h21{height:17.078076pt;}
.h50{height:30.986641pt;}
.h41{height:32.945545pt;}
.h4b{height:32.992413pt;}
.h59{height:33.622034pt;}
.h63{height:35.363437pt;}
.h4f{height:40.787174pt;}
.h34{height:41.169375pt;}
.h3b{height:43.371748pt;}
.h45{height:43.433448pt;}
.h1e{height:43.808438pt;}
.h37{height:43.914000pt;}
.h5e{height:44.121832pt;}
.h55{height:44.196005pt;}
.h1d{height:44.500000pt;}
.h61{height:44.722500pt;}
.h2a{height:46.975312pt;}
.h54{height:47.335488pt;}
.h52{height:48.520434pt;}
.h38{height:48.558750pt;}
.h51{height:48.604660pt;}
.h42{height:51.597974pt;}
.h4c{height:51.671377pt;}
.h3a{height:51.687110pt;}
.h44{height:51.760639pt;}
.h7{height:52.065000pt;}
.h5f{height:52.438657pt;}
.h3d{height:52.481996pt;}
.h60{height:52.529354pt;}
.h47{height:52.556656pt;}
.h58{height:52.635090pt;}
.h5c{height:52.721210pt;}
.h57{height:52.725125pt;}
.h5{height:52.781250pt;}
.h22{height:53.494643pt;}
.h56{height:53.527611pt;}
.h5b{height:53.531526pt;}
.h16{height:53.900000pt;}
.h15{height:53.998000pt;}
.h30{height:54.563437pt;}
.h23{height:55.402500pt;}
.h19{height:55.625000pt;}
.h31{height:59.181250pt;}
.h18{height:59.185000pt;}
.h1a{height:59.274000pt;}
.h1b{height:61.410000pt;}
.h70{height:61.543500pt;}
.h5a{height:61.682379pt;}
.h6{height:61.754062pt;}
.h9{height:61.859625pt;}
.h2d{height:62.660729pt;}
.h62{height:62.709167pt;}
.h33{height:63.569375pt;}
.h24{height:63.674062pt;}
.hc{height:66.515625pt;}
.hd{height:66.604313pt;}
.h1{height:66.750000pt;}
.h79{height:66.883500pt;}
.h4e{height:67.128145pt;}
.h28{height:69.434062pt;}
.h1c{height:70.199062pt;}
.h1f{height:70.304625pt;}
.h26{height:70.714062pt;}
.h27{height:70.819625pt;}
.h40{height:71.482165pt;}
.h53{height:71.520131pt;}
.h4a{height:71.583856pt;}
.h6a{height:71.870000pt;}
.h3f{height:71.929697pt;}
.h49{height:72.032024pt;}
.h68{height:72.350000pt;}
.h69{height:72.510000pt;}
.h2b{height:72.575312pt;}
.h17{height:73.454062pt;}
.ha{height:73.500000pt;}
.hb{height:73.598000pt;}
.h11{height:74.315000pt;}
.h12{height:74.404000pt;}
.h2e{height:76.964840pt;}
.h6e{height:78.074145pt;}
.h20{height:78.097500pt;}
.h6d{height:78.207605pt;}
.h66{height:78.231000pt;}
.he{height:79.171875pt;}
.hf{height:79.277438pt;}
.h13{height:80.850000pt;}
.h14{height:80.948000pt;}
.h4d{height:82.719732pt;}
.h3c{height:83.150786pt;}
.h46{height:83.269076pt;}
.h4{height:88.144687pt;}
.h6f{height:88.750951pt;}
.h2{height:88.777500pt;}
.h8{height:89.000000pt;}
.h3{height:89.670000pt;}
.h5d{height:91.038747pt;}
.h3e{height:91.728612pt;}
.h48{height:91.859104pt;}
.h64{height:94.785000pt;}
.h65{height:96.755625pt;}
.h72{height:100.125000pt;}
.h71{height:105.562500pt;}
.h73{height:111.472500pt;}
.h74{height:111.606000pt;}
.h39{height:114.718287pt;}
.h43{height:114.881484pt;}
.h77{height:131.682000pt;}
.h67{height:143.110833pt;}
.h2c{height:156.800000pt;}
.h78{height:158.737500pt;}
.h76{height:163.170000pt;}
.h75{height:163.268000pt;}
.h10{height:175.867125pt;}
.h29{height:179.200000pt;}
.h2f{height:201.600000pt;}
.h35{height:225.600000pt;}
.h6c{height:232.651904pt;}
.h25{height:235.200000pt;}
.h32{height:268.800000pt;}
.h36{height:408.160000pt;}
.h6b{height:579.673052pt;}
.h0{height:720.000000pt;}
.w2{width:56.268635pt;}
.w9{width:59.840000pt;}
.w10{width:62.400000pt;}
.wc{width:68.640000pt;}
.wf{width:72.480000pt;}
.wa{width:88.960000pt;}
.wb{width:91.360000pt;}
.we{width:107.040000pt;}
.wd{width:109.280000pt;}
.w17{width:109.439519pt;}
.w3{width:118.400000pt;}
.w5{width:120.640000pt;}
.w7{width:120.960000pt;}
.w8{width:128.480000pt;}
.w12{width:159.044165pt;}
.w15{width:168.641746pt;}
.w13{width:185.116036pt;}
.w6{width:226.720000pt;}
.w4{width:236.160000pt;}
.w14{width:329.595346pt;}
.w18{width:448.476647pt;}
.w16{width:452.947433pt;}
.w11{width:578.240000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.xac{left:-514.004292pt;}
.xab{left:-481.786311pt;}
.x9d{left:-466.244504pt;}
.x9f{left:-457.693117pt;}
.x9e{left:-408.760180pt;}
.xa0{left:-348.183007pt;}
.xbe{left:-332.448739pt;}
.xbd{left:-300.230618pt;}
.xa1{left:-298.687734pt;}
.xae{left:-284.688743pt;}
.xa2{left:-281.798260pt;}
.xb0{left:-276.137319pt;}
.xaf{left:-227.213864pt;}
.xa5{left:-177.339479pt;}
.xb1{left:-166.626732pt;}
.xa3{left:-121.396732pt;}
.xa7{left:-118.109974pt;}
.xb2{left:-117.131244pt;}
.xb3{left:-100.241696pt;}
.xa4{left:-92.282264pt;}
.xa6{left:-47.243020pt;}
.x0{left:0.000000pt;}
.x52{left:1.731151pt;}
.xaa{left:4.596322pt;}
.x6a{left:7.712000pt;}
.x62{left:9.472000pt;}
.x5f{left:10.432000pt;}
.x92{left:12.706667pt;}
.x4c{left:19.903986pt;}
.x97{left:24.000000pt;}
.x64{left:27.546667pt;}
.x1e{left:28.447986pt;}
.x29{left:29.535986pt;}
.x76{left:31.773333pt;}
.x73{left:32.733333pt;}
.x7{left:33.631986pt;}
.x96{left:34.560000pt;}
.x95{left:36.416000pt;}
.x94{left:38.208000pt;}
.x51{left:39.615986pt;}
.xca{left:42.667383pt;}
.xc{left:43.583986pt;}
.xed{left:46.175986pt;}
.x2f{left:48.031986pt;}
.x8a{left:49.053333pt;}
.x19{left:51.135986pt;}
.x5b{left:52.223986pt;}
.x9{left:54.943986pt;}
.x1f{left:55.967986pt;}
.xbf{left:57.281478pt;}
.x8d{left:59.013333pt;}
.xb4{left:60.155683pt;}
.x98{left:61.792000pt;}
.xb6{left:63.448272pt;}
.xd{left:65.023986pt;}
.x9a{left:66.271986pt;}
.x7f{left:67.743986pt;}
.x21{left:69.151986pt;}
.xef{left:72.287986pt;}
.x78{left:73.279986pt;}
.xd6{left:75.379100pt;}
.x22{left:76.543986pt;}
.xf7{left:77.471986pt;}
.x2a{left:79.583986pt;}
.xd5{left:80.715334pt;}
.x2b{left:82.143986pt;}
.x7a{left:83.071986pt;}
.x6e{left:84.191986pt;}
.x6b{left:87.906667pt;}
.x79{left:90.015986pt;}
.x5d{left:92.031986pt;}
.x4a{left:94.399986pt;}
.x10{left:96.511986pt;}
.x5c{left:97.567986pt;}
.x7b{left:99.039986pt;}
.xf{left:104.511986pt;}
.x40{left:106.559986pt;}
.x3e{left:108.319986pt;}
.x2c{left:109.471986pt;}
.x5a{left:111.391986pt;}
.xcc{left:113.743825pt;}
.xcd{left:115.782769pt;}
.x5e{left:119.520000pt;}
.xa9{left:122.065718pt;}
.xea{left:129.972523pt;}
.x83{left:131.359986pt;}
.xb5{left:134.311656pt;}
.x14{left:137.466652pt;}
.xa8{left:139.740524pt;}
.x63{left:141.306652pt;}
.x60{left:142.266652pt;}
.xec{left:143.706652pt;}
.xcb{left:145.801804pt;}
.xe6{left:149.146652pt;}
.xfa{left:161.946652pt;}
.xf4{left:164.546652pt;}
.xc0{left:166.770456pt;}
.x30{left:175.746652pt;}
.xe8{left:176.706652pt;}
.x59{left:179.866652pt;}
.xbb{left:186.153454pt;}
.xce{left:194.525217pt;}
.x46{left:197.119986pt;}
.xcf{left:198.434486pt;}
.xe9{left:200.546652pt;}
.x99{left:202.493319pt;}
.xe{left:206.239986pt;}
.xdb{left:207.679986pt;}
.xbc{left:210.246753pt;}
.xda{left:212.666652pt;}
.x6d{left:216.706652pt;}
.x69{left:219.520000pt;}
.x6c{left:220.706652pt;}
.xe3{left:222.853319pt;}
.x81{left:229.053319pt;}
.xba{left:230.432768pt;}
.x15{left:231.546652pt;}
.xc1{left:233.156789pt;}
.xd3{left:234.282481pt;}
.xeb{left:237.826652pt;}
.x7c{left:239.226652pt;}
.x4{left:240.159986pt;}
.xd2{left:242.140111pt;}
.x8{left:249.186652pt;}
.x25{left:254.946652pt;}
.x4b{left:259.706652pt;}
.x61{left:268.413319pt;}
.x5{left:270.239986pt;}
.xb7{left:279.356223pt;}
.x31{left:284.506652pt;}
.x23{left:286.946652pt;}
.x32{left:289.146652pt;}
.xb9{left:291.010204pt;}
.x6{left:293.093319pt;}
.x68{left:294.053319pt;}
.x49{left:295.293319pt;}
.xd8{left:296.666652pt;}
.xf0{left:298.586652pt;}
.x33{left:300.026652pt;}
.x13{left:301.826652pt;}
.x86{left:303.266652pt;}
.xd7{left:304.226652pt;}
.x44{left:306.306652pt;}
.x1b{left:312.959986pt;}
.xdc{left:316.186652pt;}
.xb8{left:321.289227pt;}
.x47{left:324.733319pt;}
.x26{left:338.466652pt;}
.xe5{left:341.466652pt;}
.x2e{left:349.666652pt;}
.xf5{left:356.706652pt;}
.xd0{left:369.865697pt;}
.xd9{left:375.546652pt;}
.xe4{left:376.826652pt;}
.x34{left:379.266652pt;}
.x88{left:382.240000pt;}
.x35{left:388.066652pt;}
.xc2{left:393.529029pt;}
.x80{left:396.453319pt;}
.x36{left:398.946652pt;}
.xd1{left:407.287173pt;}
.x2d{left:409.759986pt;}
.x16{left:414.426652pt;}
.x84{left:416.453319pt;}
.xc3{left:422.640910pt;}
.x89{left:424.893319pt;}
.x24{left:428.479986pt;}
.x85{left:435.519986pt;}
.x67{left:444.546652pt;}
.xd4{left:445.861883pt;}
.x20{left:453.826652pt;}
.x3{left:458.306652pt;}
.xc4{left:467.680469pt;}
.xad{left:468.640000pt;}
.xf1{left:474.559986pt;}
.xe7{left:478.306652pt;}
.xf3{left:482.106652pt;}
.xfe{left:483.293319pt;}
.x1a{left:488.613319pt;}
.x1c{left:490.493319pt;}
.x8b{left:491.520000pt;}
.xf2{left:493.533319pt;}
.x87{left:496.933319pt;}
.x53{left:500.026652pt;}
.x1d{left:501.733319pt;}
.x54{left:503.706652pt;}
.x3f{left:507.679986pt;}
.xa{left:509.759986pt;}
.x8c{left:511.173319pt;}
.x9c{left:517.760000pt;}
.xb{left:520.026652pt;}
.xdd{left:531.066652pt;}
.x8f{left:532.960000pt;}
.x27{left:537.573319pt;}
.x41{left:539.933319pt;}
.xc8{left:543.605959pt;}
.x72{left:552.480000pt;}
.x2{left:553.826652pt;}
.xfb{left:558.333319pt;}
.x93{left:559.773319pt;}
.xc7{left:563.789421pt;}
.x75{left:566.173319pt;}
.x37{left:567.839986pt;}
.x66{left:569.826652pt;}
.xc9{left:577.600000pt;}
.x71{left:583.293319pt;}
.xe2{left:590.239986pt;}
.x77{left:595.546652pt;}
.x9b{left:599.066652pt;}
.x6f{left:607.773319pt;}
.x48{left:609.786652pt;}
.xc5{left:612.706686pt;}
.x57{left:615.773319pt;}
.xe0{left:621.186652pt;}
.x8e{left:623.866652pt;}
.xf8{left:633.346652pt;}
.xc6{left:636.961740pt;}
.x45{left:646.906652pt;}
.x90{left:655.293319pt;}
.xff{left:658.746652pt;}
.x58{left:660.093319pt;}
.xde{left:666.239986pt;}
.x70{left:673.440000pt;}
.x18{left:678.266652pt;}
.xfd{left:696.453319pt;}
.x65{left:698.466652pt;}
.x82{left:717.373319pt;}
.x28{left:722.213319pt;}
.x1{left:729.119986pt;}
.xfc{left:732.133319pt;}
.xf6{left:733.186652pt;}
.xf9{left:737.053319pt;}
.x38{left:738.653319pt;}
.x39{left:743.453319pt;}
.x3a{left:754.333319pt;}
.x74{left:759.933319pt;}
.x7d{left:765.786652pt;}
.xe1{left:777.346652pt;}
.xee{left:779.813319pt;}
.x43{left:787.133319pt;}
.x12{left:794.746652pt;}
.x17{left:798.306652pt;}
.x7e{left:800.026652pt;}
.x42{left:813.853319pt;}
.x3b{left:823.013319pt;}
.xdf{left:825.693319pt;}
.x50{left:826.906652pt;}
.x11{left:829.946652pt;}
.x3c{left:831.813319pt;}
.x91{left:833.440000pt;}
.x4f{left:838.626652pt;}
.x3d{left:842.693319pt;}
.x55{left:843.906652pt;}
.x4e{left:852.386652pt;}
.x4d{left:872.893319pt;}
.x56{left:896.413319pt;}
}




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