
    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_55a9cd3e838ddb77d96f3c85.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_607fd43d88ef6d2cd3e7070b.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_89fdd8d6cca7cd616f929bf9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c11034358e00394028eba86e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_b6def616cc32821c581b96cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_59ed5647bbbf797af186ec3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.746094;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_c8dabe1a6b661d741d63c412.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.875977;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_76dda01aafdbaeaabffb5e22.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_e832b4c59272866566eff7b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.575000;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_ce69b6c82bda2b0110781561.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_491d31783e8ab6322347feca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.765137;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_50a2a62da3d9547e4be9b809.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.575000;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_6b70a514878b5cb967fcc251.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1d2706d93c53fa5b3d34bffd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.860840;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_b004e466cf9906af4e8c949b.woff2')format("woff");}.fff{font-family:fff;line-height:1.575000;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_e1a56e7347312315cffeb853.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722656;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;}
.m15{transform:matrix(0.000000,0.249935,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249935,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249935,-0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.249935,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249935,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249935,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.250089,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250089,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250089,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.085505,-0.234931,0.234922,0.085508,0,0);-ms-transform:matrix(0.085505,-0.234931,0.234922,0.085508,0,0);-webkit-transform:matrix(0.085505,-0.234931,0.234922,0.085508,0,0);}
.m6{transform:matrix(0.085506,-0.234931,0.234922,0.085508,0,0);-ms-transform:matrix(0.085506,-0.234931,0.234922,0.085508,0,0);-webkit-transform:matrix(0.085506,-0.234931,0.234922,0.085508,0,0);}
.ma{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.mf{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m3{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,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);}
.mb{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.270654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270654,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-213.120000px;}
.v15{vertical-align:-151.500000px;}
.v14{vertical-align:-105.000000px;}
.v1a{vertical-align:-94.321440px;}
.v1b{vertical-align:-76.620000px;}
.v4{vertical-align:-69.660000px;}
.v12{vertical-align:-53.280000px;}
.v23{vertical-align:-50.400000px;}
.v1f{vertical-align:-32.250000px;}
.vf{vertical-align:-29.472480px;}
.v17{vertical-align:-26.640000px;}
.v13{vertical-align:-12.750000px;}
.ve{vertical-align:-4.500000px;}
.v2{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:1.500000px;}
.va{vertical-align:7.920000px;}
.v11{vertical-align:21.750000px;}
.vb{vertical-align:28.800000px;}
.v3{vertical-align:35.993280px;}
.v22{vertical-align:50.400000px;}
.v18{vertical-align:59.040000px;}
.v10{vertical-align:65.534400px;}
.v19{vertical-align:86.400000px;}
.v1e{vertical-align:96.791760px;}
.v1c{vertical-align:100.835280px;}
.v1d{vertical-align:115.199280px;}
.v5{vertical-align:126.045480px;}
.v6{vertical-align:128.844000px;}
.v7{vertical-align:137.520600px;}
.v21{vertical-align:149.040000px;}
.v9{vertical-align:164.880000px;}
.v8{vertical-align:166.320000px;}
.v20{vertical-align:171.300000px;}
.vc{vertical-align:172.800000px;}
.vd{vertical-align:195.000000px;}
.ls9d{letter-spacing:-12.582000px;}
.ls2c{letter-spacing:-6.372720px;}
.ls84{letter-spacing:-4.942282px;}
.ls89{letter-spacing:-4.315795px;}
.lse7{letter-spacing:-2.872800px;}
.lsdd{letter-spacing:-2.484000px;}
.ls7d{letter-spacing:-1.520760px;}
.ls80{letter-spacing:-1.404000px;}
.ls8a{letter-spacing:-1.392552px;}
.ls87{letter-spacing:-1.392192px;}
.ls3a{letter-spacing:-1.322640px;}
.ls85{letter-spacing:-1.113754px;}
.ls7c{letter-spacing:-0.922042px;}
.ls7f{letter-spacing:-0.921696px;}
.ls79{letter-spacing:-0.668472px;}
.ls7b{letter-spacing:-0.633890px;}
.ls88{letter-spacing:-0.487267px;}
.ls66{letter-spacing:-0.455368px;}
.lsb9{letter-spacing:-0.432000px;}
.ls54{letter-spacing:-0.384480px;}
.ls2a{letter-spacing:-0.360720px;}
.ls11{letter-spacing:-0.360000px;}
.ls48{letter-spacing:-0.336960px;}
.ls4{letter-spacing:-0.324000px;}
.ls9{letter-spacing:-0.288000px;}
.ls67{letter-spacing:-0.287280px;}
.ls98{letter-spacing:-0.264240px;}
.lscb{letter-spacing:-0.252720px;}
.ls2b{letter-spacing:-0.240480px;}
.ls1{letter-spacing:-0.239760px;}
.ls45{letter-spacing:-0.239040px;}
.ls5e{letter-spacing:-0.220735px;}
.lse{letter-spacing:-0.216000px;}
.ls8c{letter-spacing:-0.192240px;}
.ls68{letter-spacing:-0.191520px;}
.ls29{letter-spacing:-0.180000px;}
.ls91{letter-spacing:-0.168480px;}
.ls3{letter-spacing:-0.167760px;}
.ls7a{letter-spacing:-0.157320px;}
.ls8{letter-spacing:-0.144000px;}
.ls86{letter-spacing:-0.139219px;}
.ls5a{letter-spacing:-0.134545px;}
.ls93{letter-spacing:-0.120240px;}
.ls46{letter-spacing:-0.119520px;}
.ls5d{letter-spacing:-0.110368px;}
.ls8f{letter-spacing:-0.108000px;}
.ls5c{letter-spacing:-0.097321px;}
.lsba{letter-spacing:-0.095760px;}
.ls47{letter-spacing:-0.084240px;}
.ls5b{letter-spacing:-0.082073px;}
.lsa9{letter-spacing:-0.072000px;}
.ls59{letter-spacing:-0.048438px;}
.ls2{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.053280px;}
.ls3d{letter-spacing:0.063360px;}
.ls56{letter-spacing:0.082073px;}
.ls57{letter-spacing:0.082075px;}
.lscc{letter-spacing:0.084240px;}
.ls65{letter-spacing:0.091440px;}
.ls3e{letter-spacing:0.108000px;}
.ls8e{letter-spacing:0.113842px;}
.lsf{letter-spacing:0.120240px;}
.ls8b{letter-spacing:0.139255px;}
.lsd8{letter-spacing:0.144000px;}
.ls3f{letter-spacing:0.145800px;}
.ls69{letter-spacing:0.159840px;}
.ls40{letter-spacing:0.162000px;}
.ls4f{letter-spacing:0.167760px;}
.ls12{letter-spacing:0.168480px;}
.ls10{letter-spacing:0.180000px;}
.ls60{letter-spacing:0.184314px;}
.lsaa{letter-spacing:0.191520px;}
.ls55{letter-spacing:0.192240px;}
.ls26{letter-spacing:0.204480px;}
.lsde{letter-spacing:0.205200px;}
.ls76{letter-spacing:0.209760px;}
.ls3b{letter-spacing:0.216000px;}
.ls5f{letter-spacing:0.220735px;}
.lsbe{letter-spacing:0.223200px;}
.ls9a{letter-spacing:0.228456px;}
.ls41{letter-spacing:0.239040px;}
.ls64{letter-spacing:0.239760px;}
.ls25{letter-spacing:0.240480px;}
.lsbb{letter-spacing:0.252720px;}
.ls49{letter-spacing:0.256320px;}
.ls83{letter-spacing:0.259200px;}
.ls97{letter-spacing:0.264240px;}
.ls6{letter-spacing:0.288000px;}
.ls62{letter-spacing:0.303579px;}
.ls35{letter-spacing:0.324000px;}
.ls78{letter-spacing:0.334236px;}
.ls0{letter-spacing:0.335520px;}
.ls92{letter-spacing:0.336960px;}
.lsc8{letter-spacing:0.360000px;}
.lse0{letter-spacing:0.360720px;}
.lsdf{letter-spacing:0.384480px;}
.ls58{letter-spacing:0.435942px;}
.ls90{letter-spacing:0.480168px;}
.lsca{letter-spacing:0.551646px;}
.ls14{letter-spacing:0.720000px;}
.ls77{letter-spacing:0.822679px;}
.lscd{letter-spacing:0.864000px;}
.ls7e{letter-spacing:0.950842px;}
.ls8d{letter-spacing:1.342080px;}
.lse6{letter-spacing:1.445976px;}
.lse4{letter-spacing:1.455552px;}
.ls82{letter-spacing:1.671062px;}
.ls52{letter-spacing:1.713600px;}
.lsd9{letter-spacing:1.728000px;}
.lse5{letter-spacing:2.183328px;}
.lsdc{letter-spacing:2.376000px;}
.ls7{letter-spacing:2.448000px;}
.lsc9{letter-spacing:2.511131px;}
.ls81{letter-spacing:2.784384px;}
.ls4c{letter-spacing:3.019680px;}
.ls4d{letter-spacing:3.132000px;}
.ls61{letter-spacing:9.335044px;}
.lscf{letter-spacing:14.112000px;}
.lsd1{letter-spacing:17.064000px;}
.lsda{letter-spacing:22.647600px;}
.lsce{letter-spacing:34.344000px;}
.lsdb{letter-spacing:35.424000px;}
.lsb{letter-spacing:55.296000px;}
.lsb1{letter-spacing:58.752000px;}
.lsc{letter-spacing:65.891520px;}
.ls96{letter-spacing:69.495120px;}
.lsbc{letter-spacing:75.816000px;}
.ls9e{letter-spacing:76.452000px;}
.lse3{letter-spacing:83.028000px;}
.lsc3{letter-spacing:92.242800px;}
.ls63{letter-spacing:93.306240px;}
.lsc2{letter-spacing:95.865120px;}
.lse2{letter-spacing:98.778000px;}
.lsa{letter-spacing:103.340160px;}
.ls5{letter-spacing:111.600000px;}
.lsc1{letter-spacing:123.495840px;}
.lsd{letter-spacing:142.722720px;}
.lsbf{letter-spacing:150.031440px;}
.lsc0{letter-spacing:152.221680px;}
.lsbd{letter-spacing:155.286000px;}
.ls9f{letter-spacing:157.358880px;}
.lsa0{letter-spacing:159.099336px;}
.lsa5{letter-spacing:159.698736px;}
.lsa1{letter-spacing:159.699336px;}
.lsa6{letter-spacing:159.699936px;}
.ls9b{letter-spacing:162.788880px;}
.lsaf{letter-spacing:164.520720px;}
.lsae{letter-spacing:166.542480px;}
.lsac{letter-spacing:167.216400px;}
.lsb0{letter-spacing:169.238160px;}
.lsad{letter-spacing:170.333280px;}
.lsa7{letter-spacing:173.016000px;}
.lsa2{letter-spacing:173.088000px;}
.ls1b{letter-spacing:181.380000px;}
.lsb2{letter-spacing:182.232000px;}
.lsb4{letter-spacing:183.816000px;}
.lsb5{letter-spacing:185.256000px;}
.lsb3{letter-spacing:189.720000px;}
.ls30{letter-spacing:190.944000px;}
.lsb6{letter-spacing:191.952000px;}
.lsb7{letter-spacing:192.816000px;}
.lsa4{letter-spacing:193.320000px;}
.lsa3{letter-spacing:194.112000px;}
.ls1f{letter-spacing:200.820000px;}
.lsb8{letter-spacing:202.392000px;}
.ls72{letter-spacing:205.902240px;}
.ls71{letter-spacing:208.430160px;}
.lsa8{letter-spacing:210.672000px;}
.ls73{letter-spacing:239.864160px;}
.ls6f{letter-spacing:239.875920px;}
.ls6d{letter-spacing:240.625920px;}
.ls70{letter-spacing:240.654480px;}
.ls6e{letter-spacing:241.375920px;}
.ls16{letter-spacing:247.620000px;}
.ls22{letter-spacing:248.340000px;}
.ls27{letter-spacing:250.116720px;}
.ls6b{letter-spacing:269.217360px;}
.lsc4{letter-spacing:278.581680px;}
.ls23{letter-spacing:286.170000px;}
.ls6c{letter-spacing:286.341504px;}
.lsd3{letter-spacing:289.482000px;}
.lsd0{letter-spacing:289.554000px;}
.ls6a{letter-spacing:292.495824px;}
.lsc6{letter-spacing:294.653520px;}
.ls1a{letter-spacing:299.880000px;}
.ls18{letter-spacing:314.580000px;}
.lsc5{letter-spacing:316.008000px;}
.lsab{letter-spacing:319.709232px;}
.ls1c{letter-spacing:325.770000px;}
.ls24{letter-spacing:366.120000px;}
.lsc7{letter-spacing:366.780960px;}
.ls21{letter-spacing:366.840000px;}
.ls1d{letter-spacing:372.600000px;}
.ls75{letter-spacing:405.352080px;}
.ls20{letter-spacing:415.688640px;}
.ls15{letter-spacing:433.080000px;}
.lsd7{letter-spacing:433.296000px;}
.ls43{letter-spacing:503.670960px;}
.ls44{letter-spacing:511.168320px;}
.ls42{letter-spacing:519.423840px;}
.ls19{letter-spacing:549.047760px;}
.ls33{letter-spacing:551.016000px;}
.lsd4{letter-spacing:636.336000px;}
.ls37{letter-spacing:647.250000px;}
.ls38{letter-spacing:678.749400px;}
.ls9c{letter-spacing:681.053040px;}
.ls32{letter-spacing:711.612000px;}
.ls39{letter-spacing:712.500000px;}
.lsd5{letter-spacing:717.076800px;}
.ls2f{letter-spacing:743.871600px;}
.ls2e{letter-spacing:744.627600px;}
.lsd6{letter-spacing:746.496000px;}
.ls34{letter-spacing:771.228000px;}
.ls31{letter-spacing:771.984000px;}
.ls13{letter-spacing:809.640240px;}
.ls4b{letter-spacing:836.208000px;}
.lsd2{letter-spacing:847.296000px;}
.ls2d{letter-spacing:957.623400px;}
.ls28{letter-spacing:968.554800px;}
.ls17{letter-spacing:1055.151600px;}
.ls4a{letter-spacing:1091.664000px;}
.ls51{letter-spacing:1112.748000px;}
.ls36{letter-spacing:1219.500000px;}
.ls95{letter-spacing:1222.662960px;}
.ls94{letter-spacing:1325.853528px;}
.ls99{letter-spacing:1624.895616px;}
.lse1{letter-spacing:1666.174128px;}
.ls50{letter-spacing:1737.618000px;}
.ls74{letter-spacing:1808.880600px;}
.ls4e{letter-spacing:1996.437648px;}
.ls53{letter-spacing:2696.390760px;}
.ls3c{letter-spacing:2890.285920px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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);}
.sc1{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);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d{word-spacing:-120.240000px;}
.ws5a{word-spacing:-97.321200px;}
.wsa7{word-spacing:-73.722960px;}
.wsa6{word-spacing:-73.194480px;}
.ws8b{word-spacing:-63.288000px;}
.ws8c{word-spacing:-61.132320px;}
.ws4e{word-spacing:-60.264000px;}
.ws10{word-spacing:-59.832000px;}
.ws8d{word-spacing:-54.857520px;}
.ws4f{word-spacing:-53.634960px;}
.wsa1{word-spacing:-53.442720px;}
.wse2{word-spacing:-53.250480px;}
.wse3{word-spacing:-53.058240px;}
.wsc2{word-spacing:-50.400000px;}
.ws14{word-spacing:-50.220000px;}
.ws17{word-spacing:-49.860000px;}
.wsde{word-spacing:-48.444480px;}
.ws8e{word-spacing:-47.664000px;}
.ws11{word-spacing:-46.972800px;}
.wsd9{word-spacing:-46.805040px;}
.ws3f{word-spacing:-46.469520px;}
.wse5{word-spacing:-42.336000px;}
.wse4{word-spacing:-41.904000px;}
.ws8{word-spacing:-40.320000px;}
.ws7{word-spacing:-39.888000px;}
.ws9{word-spacing:-39.744000px;}
.ws98{word-spacing:-35.110080px;}
.wsa8{word-spacing:-34.055280px;}
.ws90{word-spacing:-33.912000px;}
.ws4b{word-spacing:-33.804000px;}
.wsa2{word-spacing:-33.696000px;}
.ws1a{word-spacing:-33.667200px;}
.ws1b{word-spacing:-33.546960px;}
.ws18{word-spacing:-33.426720px;}
.wsa9{word-spacing:-33.306480px;}
.ws1c{word-spacing:-33.186240px;}
.ws19{word-spacing:-33.066000px;}
.ws27{word-spacing:-32.104080px;}
.wsc3{word-spacing:-31.752000px;}
.wsc4{word-spacing:-31.428000px;}
.wse6{word-spacing:-31.224960px;}
.ws5d{word-spacing:-30.461458px;}
.ws23{word-spacing:-30.348000px;}
.ws50{word-spacing:-30.240000px;}
.wsd1{word-spacing:-30.024000px;}
.ws22{word-spacing:-29.808000px;}
.ws24{word-spacing:-29.700000px;}
.wsdf{word-spacing:-29.699280px;}
.wsba{word-spacing:-28.249200px;}
.wsb9{word-spacing:-28.057680px;}
.wsb8{word-spacing:-27.961920px;}
.wsdb{word-spacing:-27.540000px;}
.ws71{word-spacing:-27.416271px;}
.ws1e{word-spacing:-27.054000px;}
.ws5b{word-spacing:-26.957972px;}
.ws33{word-spacing:-26.621280px;}
.wsae{word-spacing:-26.429760px;}
.wse7{word-spacing:-26.334000px;}
.ws5e{word-spacing:-25.803960px;}
.wsc6{word-spacing:-24.766560px;}
.ws97{word-spacing:-24.682320px;}
.ws96{word-spacing:-24.513840px;}
.wsc5{word-spacing:-24.429600px;}
.wsbb{word-spacing:-24.345360px;}
.ws32{word-spacing:-23.334480px;}
.ws56{word-spacing:-22.898305px;}
.ws59{word-spacing:-22.816232px;}
.ws58{word-spacing:-22.734160px;}
.wsbc{word-spacing:-21.312000px;}
.wsbd{word-spacing:-20.952000px;}
.ws91{word-spacing:-20.304000px;}
.ws7c{word-spacing:-20.186784px;}
.wsd0{word-spacing:-20.160000px;}
.wsb6{word-spacing:-20.016000px;}
.wsb7{word-spacing:-19.584000px;}
.ws7f{word-spacing:-19.212250px;}
.ws72{word-spacing:-18.917758px;}
.ws57{word-spacing:-18.567272px;}
.ws7e{word-spacing:-18.237715px;}
.ws6e{word-spacing:-17.915050px;}
.ws81{word-spacing:-16.915133px;}
.wsb0{word-spacing:-16.416000px;}
.ws31{word-spacing:-16.374240px;}
.wsaf{word-spacing:-16.344000px;}
.ws85{word-spacing:-16.014348px;}
.ws2d{word-spacing:-15.228000px;}
.wsb1{word-spacing:-14.904000px;}
.ws70{word-spacing:-14.788080px;}
.ws6f{word-spacing:-14.421000px;}
.ws7d{word-spacing:-14.409187px;}
.ws55{word-spacing:-13.901706px;}
.wsa4{word-spacing:-12.744000px;}
.ws84{word-spacing:-12.460118px;}
.ws63{word-spacing:-11.498042px;}
.ws51{word-spacing:-7.689600px;}
.ws3b{word-spacing:-5.184000px;}
.wse1{word-spacing:-3.006000px;}
.ws36{word-spacing:-2.864160px;}
.ws86{word-spacing:-2.784384px;}
.wsaa{word-spacing:-2.525040px;}
.wsc8{word-spacing:-2.511131px;}
.ws41{word-spacing:-2.448000px;}
.wsbe{word-spacing:-2.304000px;}
.wsd4{word-spacing:-2.190240px;}
.ws8a{word-spacing:-1.923840px;}
.ws69{word-spacing:-1.803600px;}
.ws40{word-spacing:-1.728000px;}
.wsa5{word-spacing:-1.684800px;}
.ws6c{word-spacing:-1.683360px;}
.ws95{word-spacing:-1.584000px;}
.wsa3{word-spacing:-1.537920px;}
.wsb5{word-spacing:-1.512000px;}
.ws9d{word-spacing:-1.442880px;}
.ws44{word-spacing:-1.440000px;}
.ws73{word-spacing:-1.436400px;}
.wsd3{word-spacing:-1.432080px;}
.ws15{word-spacing:-1.263600px;}
.ws4a{word-spacing:-1.260000px;}
.ws65{word-spacing:-1.214315px;}
.ws53{word-spacing:-1.153440px;}
.ws12{word-spacing:-1.082160px;}
.wsa{word-spacing:-1.080000px;}
.ws2b{word-spacing:-1.077120px;}
.ws34{word-spacing:-1.015920px;}
.ws3d{word-spacing:-1.008000px;}
.ws47{word-spacing:-0.961920px;}
.ws78{word-spacing:-0.950842px;}
.ws4c{word-spacing:-0.864000px;}
.wse0{word-spacing:-0.841680px;}
.ws13{word-spacing:-0.838800px;}
.ws88{word-spacing:-0.835531px;}
.ws2f{word-spacing:-0.810000px;}
.ws99{word-spacing:-0.768960px;}
.ws2e{word-spacing:-0.756000px;}
.wsf1{word-spacing:-0.670320px;}
.ws16{word-spacing:-0.648000px;}
.ws9c{word-spacing:-0.601200px;}
.wscc{word-spacing:-0.589680px;}
.wsed{word-spacing:-0.576000px;}
.wsc9{word-spacing:-0.551646px;}
.wscb{word-spacing:-0.540000px;}
.ws9a{word-spacing:-0.505440px;}
.wsd6{word-spacing:-0.504000px;}
.wsad{word-spacing:-0.479520px;}
.ws64{word-spacing:-0.455368px;}
.ws60{word-spacing:-0.435942px;}
.ws29{word-spacing:-0.432000px;}
.wsc0{word-spacing:-0.421200px;}
.ws52{word-spacing:-0.384480px;}
.ws9e{word-spacing:-0.360720px;}
.ws46{word-spacing:-0.360000px;}
.wsdc{word-spacing:-0.335520px;}
.wsb{word-spacing:-0.288000px;}
.ws38{word-spacing:-0.256320px;}
.ws6b{word-spacing:-0.240480px;}
.ws62{word-spacing:-0.220735px;}
.ws30{word-spacing:-0.216000px;}
.ws3{word-spacing:-0.167760px;}
.wsdd{word-spacing:-0.162000px;}
.ws6a{word-spacing:-0.159840px;}
.wsb3{word-spacing:-0.144000px;}
.ws1f{word-spacing:-0.120240px;}
.ws2c{word-spacing:-0.108000px;}
.ws67{word-spacing:-0.095760px;}
.ws5f{word-spacing:-0.082075px;}
.ws1{word-spacing:0.000000px;}
.ws61{word-spacing:0.048438px;}
.ws35{word-spacing:0.059760px;}
.wsb4{word-spacing:0.072000px;}
.wscd{word-spacing:0.095760px;}
.ws21{word-spacing:0.108000px;}
.wse{word-spacing:0.144000px;}
.ws92{word-spacing:0.167760px;}
.ws9b{word-spacing:0.168480px;}
.ws48{word-spacing:0.180000px;}
.wsef{word-spacing:0.191520px;}
.ws2a{word-spacing:0.216000px;}
.wsac{word-spacing:0.239760px;}
.ws9f{word-spacing:0.240480px;}
.ws3e{word-spacing:0.288000px;}
.ws26{word-spacing:0.324000px;}
.ws5{word-spacing:0.335520px;}
.ws37{word-spacing:0.336960px;}
.ws28{word-spacing:0.360000px;}
.wsd8{word-spacing:0.384480px;}
.wsd{word-spacing:0.432000px;}
.ws66{word-spacing:0.455368px;}
.ws4{word-spacing:0.503280px;}
.ws20{word-spacing:0.540000px;}
.wsce{word-spacing:0.574560px;}
.ws3c{word-spacing:0.576000px;}
.ws89{word-spacing:0.648000px;}
.ws87{word-spacing:0.696276px;}
.ws2{word-spacing:0.719280px;}
.wscf{word-spacing:0.756000px;}
.ws6d{word-spacing:0.766080px;}
.ws94{word-spacing:0.796894px;}
.wsc1{word-spacing:0.842400px;}
.ws4d{word-spacing:0.864000px;}
.ws25{word-spacing:0.900000px;}
.wsd5{word-spacing:0.936000px;}
.wsb2{word-spacing:0.957600px;}
.wsca{word-spacing:0.972000px;}
.ws39{word-spacing:1.006560px;}
.wsa0{word-spacing:1.008000px;}
.ws45{word-spacing:1.080000px;}
.wsc{word-spacing:1.152000px;}
.ws54{word-spacing:1.198800px;}
.wsc7{word-spacing:1.260000px;}
.ws6{word-spacing:1.296000px;}
.ws93{word-spacing:1.342080px;}
.wsd7{word-spacing:1.350000px;}
.ws74{word-spacing:1.436400px;}
.wsab{word-spacing:1.509840px;}
.ws77{word-spacing:1.520760px;}
.ws43{word-spacing:1.620000px;}
.wsea{word-spacing:1.627920px;}
.wsee{word-spacing:1.728000px;}
.ws3a{word-spacing:1.845360px;}
.wsf{word-spacing:1.872000px;}
.ws75{word-spacing:1.901671px;}
.ws68{word-spacing:1.915200px;}
.ws49{word-spacing:1.980000px;}
.wsda{word-spacing:2.016000px;}
.ws0{word-spacing:2.157840px;}
.wsd2{word-spacing:2.160000px;}
.ws79{word-spacing:2.189028px;}
.ws76{word-spacing:2.189849px;}
.wseb{word-spacing:2.202480px;}
.wse8{word-spacing:2.394000px;}
.wsf0{word-spacing:2.872800px;}
.wsbf{word-spacing:2.968560px;}
.wsec{word-spacing:3.064320px;}
.ws7a{word-spacing:3.132000px;}
.ws8f{word-spacing:3.187440px;}
.ws42{word-spacing:3.312000px;}
.wse9{word-spacing:3.830400px;}
.ws82{word-spacing:57.915163px;}
.ws7b{word-spacing:300.712428px;}
.ws83{word-spacing:488.379658px;}
.ws80{word-spacing:776.286259px;}
.ws5c{word-spacing:836.906474px;}
._26{margin-left:-3349.949328px;}
._15{margin-left:-1755.511412px;}
._c{margin-left:-1698.624696px;}
._14{margin-left:-479.679274px;}
._4{margin-left:-30.225888px;}
._d{margin-left:-17.982000px;}
._b{margin-left:-14.110416px;}
._1a{margin-left:-9.679320px;}
._9{margin-left:-8.064000px;}
._a{margin-left:-6.631200px;}
._6{margin-left:-4.480704px;}
._3{margin-left:-2.733696px;}
._1{margin-left:-1.023336px;}
._0{width:1.150848px;}
._2{width:2.969352px;}
._8{width:4.116744px;}
._5{width:5.840640px;}
._e{width:7.647885px;}
._18{width:10.735200px;}
._17{width:11.750400px;}
._1b{width:12.910320px;}
._24{width:20.470320px;}
._28{width:54.576000px;}
._19{width:69.495120px;}
._27{width:74.952000px;}
._25{width:179.262720px;}
._1c{width:182.493840px;}
._22{width:186.591600px;}
._1d{width:210.168000px;}
._20{width:214.812000px;}
._1f{width:219.437568px;}
._23{width:223.992000px;}
._1e{width:226.656000px;}
._21{width:228.543120px;}
._10{width:276.191280px;}
._11{width:307.694160px;}
._f{width:325.369440px;}
._12{width:405.352080px;}
._7{width:553.035600px;}
._29{width:926.424000px;}
._13{width:1014.250239px;}
._16{width:1427.328000px;}
.fcb{color:rgb(0,0,255);}
.fca{color:rgb(221,253,105);}
.fc8{color:rgb(69,156,189);}
.fc7{color:rgb(0,0,153);}
.fc9{color:rgb(0,0,106);}
.fc5{color:transparent;}
.fc4{color:rgb(255,255,0);}
.fc6{color:rgb(242,242,242);}
.fc3{color:rgb(217,217,217);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs10{font-size:48.438000px;}
.fs1b{font-size:52.440000px;}
.fsa{font-size:54.000000px;}
.fs20{font-size:57.606000px;}
.fs1d{font-size:57.626400px;}
.fs1e{font-size:57.627600px;}
.fs16{font-size:59.598600px;}
.fsb{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fsd{font-size:64.080000px;}
.fs1a{font-size:66.847200px;}
.fs12{font-size:67.272723px;}
.fs21{font-size:69.609600px;}
.fs22{font-size:69.627600px;}
.fs18{font-size:72.000000px;}
.fs19{font-size:75.894664px;}
.fs8{font-size:79.920000px;}
.fs11{font-size:82.072779px;}
.fsf{font-size:82.075200px;}
.fs7{font-size:84.240000px;}
.fs1f{font-size:86.440200px;}
.fs27{font-size:91.941000px;}
.fs15{font-size:92.157000px;}
.fs1c{font-size:95.660400px;}
.fsc{font-size:95.760000px;}
.fs13{font-size:97.321200px;}
.fs2{font-size:108.000000px;}
.fs26{font-size:109.179600px;}
.fs14{font-size:110.367600px;}
.fs28{font-size:112.320000px;}
.fs17{font-size:113.841996px;}
.fs6{font-size:120.240000px;}
.fs4{font-size:144.000000px;}
.fs1{font-size:167.760000px;}
.fs3{font-size:180.000000px;}
.fse{font-size:192.240000px;}
.fs5{font-size:216.000000px;}
.fs0{font-size:239.760000px;}
.fs24{font-size:264.240000px;}
.fs23{font-size:288.000000px;}
.fs25{font-size:360.000000px;}
.y22{bottom:-49.312500px;}
.y13{bottom:-8.535000px;}
.y22c{bottom:-3.690000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:1.687500px;}
.ya8{bottom:2.019000px;}
.ya0{bottom:2.527500px;}
.y12a{bottom:5.640000px;}
.y4f{bottom:6.112500px;}
.yd7{bottom:7.762500px;}
.y3c{bottom:8.098350px;}
.y1ec{bottom:8.287500px;}
.y52{bottom:10.522500px;}
.y21{bottom:11.167500px;}
.y1cf{bottom:11.272500px;}
.y1f4{bottom:11.467500px;}
.y132{bottom:11.595000px;}
.y56{bottom:11.704800px;}
.yb2{bottom:11.864594px;}
.y1e9{bottom:12.007500px;}
.ye5{bottom:13.685700px;}
.yf0{bottom:13.685850px;}
.ya7{bottom:14.128050px;}
.y197{bottom:14.572500px;}
.y81{bottom:16.132500px;}
.y142{bottom:16.147500px;}
.y4b{bottom:16.717500px;}
.yee{bottom:16.999800px;}
.yf7{bottom:16.999950px;}
.y25{bottom:17.407500px;}
.y115{bottom:18.405000px;}
.y110{bottom:20.536440px;}
.y86{bottom:24.030000px;}
.y77{bottom:24.240000px;}
.y247{bottom:24.604860px;}
.yfa{bottom:25.695000px;}
.ye4{bottom:26.179500px;}
.y215{bottom:27.645000px;}
.yad{bottom:28.923645px;}
.y55{bottom:29.707500px;}
.y122{bottom:30.273750px;}
.y14d{bottom:30.697500px;}
.y35{bottom:32.655000px;}
.y4e{bottom:33.195000px;}
.y22b{bottom:33.203700px;}
.yae{bottom:36.551788px;}
.y13a{bottom:38.752500px;}
.y98{bottom:39.260250px;}
.y1ce{bottom:40.665000px;}
.y84{bottom:41.632500px;}
.yac{bottom:42.607455px;}
.y192{bottom:42.945000px;}
.y209{bottom:44.962500px;}
.y15c{bottom:46.065000px;}
.y33{bottom:50.070000px;}
.ye6{bottom:51.287700px;}
.yf1{bottom:51.287850px;}
.yab{bottom:51.354223px;}
.y12{bottom:51.945000px;}
.y193{bottom:53.467500px;}
.y57{bottom:55.207500px;}
.y246{bottom:56.277480px;}
.y3b{bottom:56.374350px;}
.yfc{bottom:56.383950px;}
.ybf{bottom:57.735180px;}
.y1eb{bottom:58.155000px;}
.yaa{bottom:58.193550px;}
.yfb{bottom:61.875000px;}
.y1cd{bottom:62.265000px;}
.y9f{bottom:62.997990px;}
.y17f{bottom:63.022500px;}
.ya9{bottom:66.939300px;}
.y22a{bottom:68.132160px;}
.yb1{bottom:70.773300px;}
.y20{bottom:71.635620px;}
.y19a{bottom:75.720000px;}
.yfd{bottom:77.092800px;}
.y140{bottom:78.204300px;}
.y214{bottom:79.485000px;}
.ye7{bottom:80.101050px;}
.y5{bottom:82.828140px;}
.yf2{bottom:85.863900px;}
.y4a{bottom:86.092500px;}
.ybe{bottom:86.535000px;}
.y8b{bottom:87.286800px;}
.y245{bottom:87.950100px;}
.y14a{bottom:87.967500px;}
.y208{bottom:88.162500px;}
.y76{bottom:89.040000px;}
.yef{bottom:93.931500px;}
.yb3{bottom:94.916213px;}
.y164{bottom:95.557500px;}
.y67{bottom:96.570000px;}
.y3a{bottom:100.060350px;}
.y1c1{bottom:101.058750px;}
.yf8{bottom:101.711100px;}
.y229{bottom:102.701520px;}
.y111{bottom:104.066700px;}
.y8e{bottom:104.140620px;}
.y183{bottom:104.977500px;}
.y80{bottom:105.007500px;}
.y8d{bottom:105.802500px;}
.y1c8{bottom:108.441030px;}
.ye8{bottom:108.914550px;}
.y19d{bottom:109.204500px;}
.y11{bottom:112.425000px;}
.ya2{bottom:113.806950px;}
.y85{bottom:115.252500px;}
.y1a9{bottom:119.347500px;}
.y244{bottom:119.622720px;}
.yf3{bottom:120.439950px;}
.y1cc{bottom:121.833750px;}
.y109{bottom:121.991250px;}
.y1f{bottom:122.040660px;}
.y1c7{bottom:122.488050px;}
.yfe{bottom:123.383400px;}
.y9e{bottom:123.475470px;}
.yb5{bottom:125.267250px;}
.y127{bottom:128.505000px;}
.y1c9{bottom:128.953470px;}
.y17b{bottom:129.922500px;}
.yb4{bottom:131.061450px;}
.y207{bottom:131.362500px;}
.y5b{bottom:132.322500px;}
.y213{bottom:132.755640px;}
.yb0{bottom:132.937500px;}
.y1c2{bottom:133.402500px;}
.y26{bottom:134.415000px;}
.y13f{bottom:135.828240px;}
.y228{bottom:137.270880px;}
.ye9{bottom:137.727900px;}
.y4{bottom:138.272820px;}
.y32{bottom:139.771530px;}
.y1da{bottom:140.767500px;}
.y19c{bottom:141.604500px;}
.y1cb{bottom:143.433750px;}
.y39{bottom:143.746350px;}
.y38{bottom:144.445980px;}
.y1ab{bottom:148.674000px;}
.y95{bottom:149.885400px;}
.y243{bottom:151.295340px;}
.y17a{bottom:151.522500px;}
.y8a{bottom:152.086800px;}
.yf4{bottom:155.016000px;}
.y121{bottom:156.795000px;}
.y18f{bottom:158.242500px;}
.y1e6{bottom:158.855880px;}
.y7f{bottom:164.047500px;}
.ya3{bottom:164.488386px;}
.y1ca{bottom:165.033750px;}
.y1c3{bottom:165.746250px;}
.yea{bottom:166.541250px;}
.y5a{bottom:167.174850px;}
.y195{bottom:169.191750px;}
.yff{bottom:169.674000px;}
.yaf{bottom:170.766900px;}
.y12e{bottom:171.067500px;}
.y10{bottom:171.465000px;}
.y227{bottom:171.840240px;}
.y17c{bottom:173.122500px;}
.y9d{bottom:173.880660px;}
.y206{bottom:174.562500px;}
.y1aa{bottom:177.473820px;}
.y146{bottom:177.502500px;}
.y18e{bottom:179.842500px;}
.y37{bottom:180.277500px;}
.y10a{bottom:182.377800px;}
.y1e{bottom:182.518140px;}
.y242{bottom:182.967960px;}
.y194{bottom:187.095000px;}
.yf5{bottom:189.592050px;}
.yd5{bottom:190.589850px;}
.yce{bottom:191.110500px;}
.y175{bottom:191.812500px;}
.y31{bottom:191.894850px;}
.yed{bottom:192.473100px;}
.y212{bottom:193.233120px;}
.y13e{bottom:193.404120px;}
.y3{bottom:193.717500px;}
.y1d9{bottom:194.062620px;}
.yf6{bottom:195.066300px;}
.yeb{bottom:195.354750px;}
.y49{bottom:196.684650px;}
.y15a{bottom:197.340000px;}
.y1a6{bottom:197.634450px;}
.y1c4{bottom:198.090000px;}
.y158{bottom:202.815000px;}
.y123{bottom:203.257500px;}
.y184{bottom:203.347500px;}
.y1e5{bottom:204.234960px;}
.y18d{bottom:204.532500px;}
.y226{bottom:206.409600px;}
.y139{bottom:209.955000px;}
.y241{bottom:214.640580px;}
.ya4{bottom:215.046709px;}
.y7e{bottom:215.887500px;}
.y100{bottom:216.138450px;}
.y89{bottom:216.886800px;}
.y205{bottom:217.762500px;}
.y176{bottom:220.635000px;}
.y1b1{bottom:221.671500px;}
.y1a0{bottom:222.517500px;}
.yf{bottom:223.305000px;}
.yec{bottom:224.168100px;}
.y5c{bottom:226.629180px;}
.y178{bottom:227.086320px;}
.y17e{bottom:227.095680px;}
.y1c5{bottom:230.433750px;}
.y15b{bottom:233.927100px;}
.y9c{bottom:234.358140px;}
.y94{bottom:235.042500px;}
.yc7{bottom:237.502500px;}
.y48{bottom:238.264650px;}
.y225{bottom:240.978960px;}
.ycd{bottom:242.122320px;}
.yd4{bottom:242.902500px;}
.y10b{bottom:242.938350px;}
.y1d{bottom:242.995620px;}
.y211{bottom:243.645000px;}
.y30{bottom:244.021530px;}
.y19f{bottom:244.117500px;}
.y16f{bottom:245.103750px;}
.y240{bottom:246.313200px;}
.y6f{bottom:248.300850px;}
.ye3{bottom:249.523500px;}
.y1e4{bottom:249.614040px;}
.y13d{bottom:250.980000px;}
.y120{bottom:252.877500px;}
.y138{bottom:253.155000px;}
.y152{bottom:253.219320px;}
.y1b0{bottom:254.071500px;}
.y1d8{bottom:254.540100px;}
.y97{bottom:256.926000px;}
.y17d{bottom:258.050100px;}
.y1a5{bottom:259.466610px;}
.y204{bottom:260.962500px;}
.y101{bottom:262.429050px;}
.y1c6{bottom:262.777500px;}
.y16b{bottom:263.285040px;}
.y19e{bottom:265.717500px;}
.ya5{bottom:265.830739px;}
.ye{bottom:266.505000px;}
.y7d{bottom:267.727500px;}
.y18a{bottom:270.075360px;}
.yc6{bottom:273.466860px;}
.y159{bottom:274.815000px;}
.y224{bottom:275.548320px;}
.y47{bottom:275.884800px;}
.y23f{bottom:277.985820px;}
.y88{bottom:281.686800px;}
.y1ae{bottom:284.340000px;}
.y5d{bottom:286.818660px;}
.y61{bottom:287.325000px;}
.y96{bottom:289.326000px;}
.ydb{bottom:291.382500px;}
.y6e{bottom:291.500850px;}
.y177{bottom:292.610100px;}
.y1be{bottom:293.262750px;}
.y1c0{bottom:293.265000px;}
.y1c{bottom:293.407500px;}
.y9b{bottom:294.835620px;}
.y1e3{bottom:294.993120px;}
.yd3{bottom:295.027500px;}
.ycc{bottom:295.569000px;}
.y2f{bottom:296.144850px;}
.y170{bottom:296.197500px;}
.y210{bottom:302.685000px;}
.y10c{bottom:303.498900px;}
.y203{bottom:304.162500px;}
.y1b2{bottom:308.433750px;}
.y1ac{bottom:308.782500px;}
.y102{bottom:308.893500px;}
.yc5{bottom:309.478740px;}
.y23e{bottom:309.658440px;}
.y1f3{bottom:310.021860px;}
.y223{bottom:310.117680px;}
.y11f{bottom:312.090000px;}
.y1d7{bottom:315.017580px;}
.y196{bottom:315.835800px;}
.y1b9{bottom:315.839280px;}
.ya6{bottom:316.512175px;}
.y46{bottom:317.464800px;}
.yd{bottom:318.345000px;}
.y198{bottom:320.080800px;}
.y7c{bottom:321.017580px;}
.y1a4{bottom:321.488310px;}
.y141{bottom:321.787500px;}
.y16a{bottom:323.762520px;}
.y112{bottom:325.947900px;}
.ya1{bottom:328.500000px;}
.y1bd{bottom:329.208750px;}
.y1bf{bottom:329.244750px;}
.y1a8{bottom:329.886180px;}
.y1b8{bottom:329.886300px;}
.y148{bottom:331.815000px;}
.y6d{bottom:334.700850px;}
.y1ba{bottom:336.351720px;}
.y59{bottom:340.447500px;}
.y1b3{bottom:340.777500px;}
.y23d{bottom:341.331060px;}
.y189{bottom:342.445980px;}
.y222{bottom:344.687040px;}
.y9a{bottom:345.247500px;}
.yc4{bottom:345.490620px;}
.y1f2{bottom:346.033740px;}
.y87{bottom:346.486800px;}
.y5e{bottom:347.197680px;}
.yd2{bottom:347.339850px;}
.y202{bottom:347.362500px;}
.y173{bottom:347.385000px;}
.y2e{bottom:348.271530px;}
.y151{bottom:348.279660px;}
.y1e2{bottom:350.437800px;}
.y1bc{bottom:350.808750px;}
.ycb{bottom:351.450540px;}
.y1b{bottom:352.447500px;}
.y75{bottom:352.687500px;}
.y44{bottom:353.452920px;}
.y20f{bottom:354.525000px;}
.y43{bottom:355.084650px;}
.y1a7{bottom:355.095000px;}
.y103{bottom:355.184100px;}
.yc{bottom:361.545000px;}
.y16e{bottom:361.839120px;}
.y10d{bottom:364.059300px;}
.y147{bottom:364.252500px;}
.y15f{bottom:368.172180px;}
.y1fc{bottom:371.025000px;}
.y1bb{bottom:372.408750px;}
.y23c{bottom:373.003680px;}
.y1b4{bottom:373.121250px;}
.y91{bottom:375.187500px;}
.y1d6{bottom:375.495060px;}
.y125{bottom:377.130000px;}
.y6c{bottom:377.900850px;}
.y63{bottom:378.135000px;}
.y137{bottom:378.672480px;}
.y221{bottom:379.256400px;}
.y124{bottom:379.897500px;}
.y7b{bottom:381.495060px;}
.yc3{bottom:381.508800px;}
.y1f1{bottom:382.045620px;}
.y1a3{bottom:382.941390px;}
.y149{bottom:387.570000px;}
.y157{bottom:388.416240px;}
.y201{bottom:390.562500px;}
.yd9{bottom:390.607500px;}
.y169{bottom:390.765000px;}
.y108{bottom:395.035650px;}
.y74{bottom:395.887500px;}
.y45{bottom:396.649140px;}
.y42{bottom:396.664650px;}
.y174{bottom:398.572500px;}
.yd1{bottom:399.464850px;}
.yca{bottom:400.027500px;}
.y2d{bottom:400.396530px;}
.y181{bottom:401.302500px;}
.y104{bottom:401.474550px;}
.y1a{bottom:403.027500px;}
.y15e{bottom:404.184060px;}
.y23b{bottom:404.676300px;}
.y1b5{bottom:405.465000px;}
.y1e1{bottom:405.882480px;}
.y5f{bottom:407.660940px;}
.y20e{bottom:407.793120px;}
.y18b{bottom:411.592500px;}
.yb{bottom:413.385000px;}
.y220{bottom:413.825760px;}
.y1fb{bottom:414.225000px;}
.y136{bottom:414.684360px;}
.yc2{bottom:417.490620px;}
.y1f0{bottom:418.057500px;}
.y107{bottom:419.050950px;}
.y188{bottom:419.125800px;}
.y12c{bottom:419.692500px;}
.y12b{bottom:422.460000px;}
.y156{bottom:424.428120px;}
.y10e{bottom:424.619850px;}
.y11e{bottom:426.045000px;}
.y6b{bottom:431.925450px;}
.yda{bottom:432.945000px;}
.y16d{bottom:433.827060px;}
.y3f{bottom:434.284800px;}
.y1d5{bottom:435.972540px;}
.y23a{bottom:436.348920px;}
.y1b6{bottom:437.808750px;}
.y73{bottom:439.087500px;}
.y15d{bottom:440.195940px;}
.y1f8{bottom:440.362500px;}
.y7a{bottom:441.972540px;}
.y106{bottom:443.066400px;}
.y11c{bottom:443.295000px;}
.y150{bottom:443.340000px;}
.y1a2{bottom:445.510650px;}
.y19{bottom:447.487500px;}
.y21f{bottom:448.395120px;}
.y200{bottom:449.505000px;}
.y171{bottom:449.760000px;}
.y135{bottom:450.696240px;}
.y1e0{bottom:451.261560px;}
.y2c{bottom:452.519850px;}
.y1ef{bottom:453.337500px;}
.yc1{bottom:453.490620px;}
.yd0{bottom:454.402500px;}
.y168{bottom:455.565000px;}
.ya{bottom:456.585000px;}
.y1ff{bottom:456.705000px;}
.y1fe{bottom:457.080000px;}
.y1fa{bottom:457.425000px;}
.y20d{bottom:458.205000px;}
.y11d{bottom:458.445000px;}
.y145{bottom:458.752500px;}
.yf9{bottom:466.882500px;}
.y105{bottom:467.081598px;}
.y58{bottom:467.947500px;}
.y239{bottom:468.021540px;}
.y6a{bottom:475.125450px;}
.y41{bottom:475.852920px;}
.y3e{bottom:477.124800px;}
.y64{bottom:477.517140px;}
.y72{bottom:482.287500px;}
.y21e{bottom:482.964480px;}
.y1f7{bottom:483.562500px;}
.y134{bottom:486.708120px;}
.y1af{bottom:486.757500px;}
.yc0{bottom:489.502500px;}
.y1ee{bottom:490.597500px;}
.yc9{bottom:492.007350px;}
.y66{bottom:493.387500px;}
.y1b7{bottom:495.464850px;}
.y1d4{bottom:496.450020px;}
.y187{bottom:496.930800px;}
.y155{bottom:498.315000px;}
.y2{bottom:498.979560px;}
.y163{bottom:499.440000px;}
.y238{bottom:499.694160px;}
.y1fd{bottom:500.280000px;}
.y1f9{bottom:500.625000px;}
.y18{bottom:500.767500px;}
.y172{bottom:500.853750px;}
.y79{bottom:502.450020px;}
.y16c{bottom:505.815000px;}
.y29{bottom:506.084850px;}
.y1df{bottom:506.706240px;}
.y1a1{bottom:507.532350px;}
.y9{bottom:508.425000px;}
.y11b{bottom:510.832500px;}
.y40{bottom:511.864800px;}
.y20c{bottom:517.245000px;}
.y21d{bottom:517.533840px;}
.y90{bottom:518.625000px;}
.y167{bottom:520.365000px;}
.y144{bottom:521.932500px;}
.y133{bottom:522.720000px;}
.yc8{bottom:524.407350px;}
.y71{bottom:525.487500px;}
.y60{bottom:528.313680px;}
.y10f{bottom:531.122700px;}
.y237{bottom:531.366780px;}
.ycf{bottom:532.657500px;}
.y179{bottom:534.045000px;}
.y199{bottom:534.780000px;}
.y19b{bottom:534.967500px;}
.y118{bottom:535.170000px;}
.ye0{bottom:538.875720px;}
.y11a{bottom:543.232500px;}
.y161{bottom:543.315000px;}
.y8c{bottom:545.865000px;}
.y1d2{bottom:546.658650px;}
.y2b{bottom:547.652970px;}
.y28{bottom:548.924850px;}
.y8{bottom:551.625000px;}
.y21c{bottom:552.103200px;}
.y65{bottom:552.511800px;}
.y1d3{bottom:556.927500px;}
.y17{bottom:559.807500px;}
.y1de{bottom:562.150920px;}
.y78{bottom:562.927500px;}
.y236{bottom:563.039400px;}
.yb8{bottom:564.067500px;}
.ydf{bottom:567.675540px;}
.y70{bottom:568.687500px;}
.y20b{bottom:569.085000px;}
.ybd{bottom:570.960000px;}
.y1{bottom:570.967500px;}
.y186{bottom:571.934820px;}
.y119{bottom:575.632500px;}
.y191{bottom:579.944250px;}
.y1f6{bottom:582.667500px;}
.y1ad{bottom:582.780000px;}
.yd8{bottom:583.065000px;}
.y2a{bottom:583.664850px;}
.y166{bottom:585.165000px;}
.y180{bottom:585.547500px;}
.y21b{bottom:586.672560px;}
.y62{bottom:589.260000px;}
.y160{bottom:590.345640px;}
.y1d1{bottom:590.398650px;}
.y235{bottom:594.712020px;}
.yb7{bottom:596.467500px;}
.yde{bottom:596.475360px;}
.ybc{bottom:596.700000px;}
.ye1{bottom:597.265380px;}
.y3d{bottom:599.610000px;}
.y1dd{bottom:607.530000px;}
.y16{bottom:611.647500px;}
.y230{bottom:615.090000px;}
.y190{bottom:615.720000px;}
.y21a{bottom:621.241920px;}
.y20a{bottom:622.365000px;}
.y126{bottom:624.502500px;}
.ydd{bottom:625.275180px;}
.y234{bottom:626.384640px;}
.y8f{bottom:629.250000px;}
.y92{bottom:629.266500px;}
.y4d{bottom:630.990000px;}
.y1d0{bottom:634.138650px;}
.y14c{bottom:634.927350px;}
.y22f{bottom:636.690000px;}
.y143{bottom:639.030000px;}
.ybb{bottom:639.900000px;}
.y129{bottom:644.842500px;}
.y162{bottom:645.690000px;}
.y154{bottom:646.065000px;}
.y185{bottom:647.872500px;}
.y24{bottom:650.610000px;}
.y7{bottom:653.610000px;}
.ydc{bottom:654.075000px;}
.y219{bottom:655.811280px;}
.y233{bottom:658.057260px;}
.y22e{bottom:658.290000px;}
.y165{bottom:658.732500px;}
.y114{bottom:658.800000px;}
.y117{bottom:660.626250px;}
.y15{bottom:664.927500px;}
.y93{bottom:666.750000px;}
.y12d{bottom:667.065000px;}
.y1f5{bottom:670.290000px;}
.y18c{bottom:673.972500px;}
.y1dc{bottom:674.628120px;}
.y34{bottom:679.110000px;}
.y22d{bottom:679.890000px;}
.yba{bottom:683.100000px;}
.yd6{bottom:686.429850px;}
.y54{bottom:687.240000px;}
.y27{bottom:687.547500px;}
.y232{bottom:689.729880px;}
.y14f{bottom:689.940000px;}
.y218{bottom:690.380640px;}
.y116{bottom:693.026250px;}
.y4c{bottom:695.790000px;}
.y36{bottom:695.985000px;}
.y13b{bottom:696.187500px;}
.y1ea{bottom:698.865000px;}
.y1ed{bottom:698.917500px;}
.y14b{bottom:699.727500px;}
.y131{bottom:700.404120px;}
.y113{bottom:702.000000px;}
.y23{bottom:704.610000px;}
.y83{bottom:706.860000px;}
.y69{bottom:708.078120px;}
.y1db{bottom:710.640000px;}
.y51{bottom:713.328120px;}
.y231{bottom:721.402500px;}
.y217{bottom:724.950000px;}
.yb9{bottom:726.300000px;}
.y6{bottom:730.507500px;}
.y13c{bottom:740.340000px;}
.y1e8{bottom:744.045000px;}
.y99{bottom:746.280000px;}
.y53{bottom:752.040000px;}
.y12f{bottom:753.877500px;}
.y14e{bottom:754.740000px;}
.y130{bottom:757.980000px;}
.y68{bottom:758.490000px;}
.y182{bottom:759.105000px;}
.y82{bottom:760.860000px;}
.y153{bottom:761.527500px;}
.y216{bottom:762.922500px;}
.y50{bottom:763.740000px;}
.y14{bottom:763.852500px;}
.yb6{bottom:769.500000px;}
.y128{bottom:770.940000px;}
.y1e7{bottom:776.445000px;}
.h2c{height:31.117500px;}
.h1c{height:50.519320px;}
.h2d{height:54.693281px;}
.h12{height:56.320312px;}
.h4d{height:57.618000px;}
.h32{height:60.081258px;}
.h2f{height:60.102534px;}
.h30{height:60.103786px;}
.h23{height:62.159477px;}
.h13{height:62.327813px;}
.h34{height:68.318016px;}
.h37{height:68.335682px;}
.h2b{height:69.719541px;}
.h1e{height:70.163348px;}
.h53{height:72.562500px;}
.h35{height:72.600638px;}
.h36{height:74.330625px;}
.h26{height:75.093750px;}
.h4b{height:75.099750px;}
.h4c{height:75.243750px;}
.h42{height:76.824000px;}
.h25{height:80.979606px;}
.h1d{height:85.599343px;}
.h1b{height:85.601869px;}
.h14{height:87.859687px;}
.h9{height:89.884080px;}
.h31{height:90.154427px;}
.h46{height:95.891590px;}
.h22{height:96.116871px;}
.h2e{height:99.770808px;}
.h15{height:99.874688px;}
.h1f{height:101.502970px;}
.h27{height:102.175920px;}
.h4f{height:105.996094px;}
.h3{height:112.640625px;}
.h45{height:113.870911px;}
.h21{height:115.109958px;}
.hb{height:115.236000px;}
.h50{height:118.008984px;}
.h24{height:121.469409px;}
.h11{height:123.156000px;}
.h3a{height:125.328516px;}
.h7{height:125.406562px;}
.h28{height:125.454083px;}
.h3f{height:126.906562px;}
.h3d{height:128.296080px;}
.h29{height:134.390625px;}
.h3b{height:143.616797px;}
.ha{height:145.125000px;}
.h5{height:150.187500px;}
.h3c{height:153.648000px;}
.h20{height:157.687500px;}
.h43{height:163.224000px;}
.h41{height:163.898438px;}
.h2{height:174.968437px;}
.h19{height:174.995197px;}
.h8{height:174.995798px;}
.h4a{height:186.675840px;}
.h4{height:187.734375px;}
.h4e{height:188.673047px;}
.h47{height:190.719360px;}
.h18{height:200.500313px;}
.h49{height:217.375200px;}
.h6{height:225.281250px;}
.h48{height:228.962160px;}
.h39{height:230.472000px;}
.hc{height:238.686105px;}
.hd{height:241.484625px;}
.h1{height:250.062187px;}
.he{height:262.927163px;}
.h3e{height:275.594063px;}
.h2a{height:278.625000px;}
.h10{height:290.286562px;}
.hf{height:291.726562px;}
.h38{height:300.375000px;}
.h16{height:322.987500px;}
.h51{height:324.948000px;}
.h52{height:328.039920px;}
.h1a{height:336.375000px;}
.h44{height:349.126500px;}
.h17{height:369.968438px;}
.h40{height:375.468750px;}
.h33{height:564.187500px;}
.h0{height:810.000000px;}
.w6{width:129.613500px;}
.w4{width:129.661500px;}
.w3{width:347.062500px;}
.w5{width:356.436000px;}
.w8{width:463.519500px;}
.w2{width:504.937500px;}
.w1{width:510.375000px;}
.w7{width:972.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x64{left:6.487500px;}
.x45{left:8.422650px;}
.x7{left:10.800000px;}
.x1d{left:11.925000px;}
.x95{left:13.050000px;}
.x13{left:14.925000px;}
.xd2{left:16.098750px;}
.x93{left:21.112500px;}
.x35{left:23.550000px;}
.x14{left:26.437500px;}
.x4b{left:30.093750px;}
.x3{left:31.987500px;}
.x2c{left:33.015000px;}
.x9b{left:34.800000px;}
.x5a{left:36.058500px;}
.x11{left:40.425000px;}
.xc0{left:43.237500px;}
.xd{left:44.250000px;}
.x1f{left:46.425000px;}
.xb6{left:47.737500px;}
.x5{left:49.800000px;}
.xa{left:51.314040px;}
.x3c{left:53.921399px;}
.x63{left:57.487500px;}
.xc1{left:60.277500px;}
.x8{left:64.800000px;}
.x4{left:66.112500px;}
.x87{left:70.946250px;}
.x5d{left:72.322650px;}
.x2f{left:74.550000px;}
.x3b{left:75.793800px;}
.x79{left:78.300000px;}
.x62{left:81.800700px;}
.xca{left:82.987500px;}
.xd0{left:88.237500px;}
.x6{left:90.300000px;}
.x94{left:91.800000px;}
.x22{left:95.055000px;}
.xe1{left:98.640000px;}
.x8a{left:100.063500px;}
.x9d{left:102.712500px;}
.x2e{left:103.800000px;}
.x89{left:108.487500px;}
.xb7{left:110.782500px;}
.x43{left:115.683767px;}
.x20{left:116.730000px;}
.x9{left:118.800000px;}
.x78{left:125.550000px;}
.xd1{left:131.267940px;}
.xc8{left:133.189500px;}
.x9e{left:134.240940px;}
.x4c{left:136.440000px;}
.x99{left:139.625220px;}
.x48{left:141.250050px;}
.x57{left:142.612500px;}
.x59{left:144.933600px;}
.xc7{left:149.947500px;}
.x5c{left:151.848900px;}
.xa2{left:153.795120px;}
.x4a{left:159.873750px;}
.x6b{left:161.013600px;}
.x61{left:162.161100px;}
.x5f{left:164.609250px;}
.x23{left:166.106250px;}
.xa0{left:169.425000px;}
.x49{left:174.664200px;}
.xd6{left:178.301250px;}
.x46{left:181.015463px;}
.x42{left:182.953840px;}
.x9f{left:187.042500px;}
.x1{left:191.017500px;}
.x56{left:193.612500px;}
.x67{left:196.523700px;}
.x8e{left:199.050000px;}
.x6f{left:206.370000px;}
.xb8{left:216.784500px;}
.x7c{left:217.935000px;}
.xdb{left:219.112500px;}
.x69{left:220.371150px;}
.x47{left:222.161551px;}
.x4d{left:227.636250px;}
.x4e{left:231.416250px;}
.x2d{left:233.517000px;}
.xa3{left:250.053750px;}
.x41{left:261.561451px;}
.x52{left:262.878780px;}
.x51{left:264.381780px;}
.x2{left:267.381060px;}
.x4f{left:268.500000px;}
.x50{left:272.437860px;}
.x15{left:281.624850px;}
.xa1{left:285.716250px;}
.xc{left:286.987500px;}
.xb9{left:290.656500px;}
.xcb{left:291.668100px;}
.x1c{left:294.112500px;}
.xa4{left:297.729750px;}
.xb5{left:301.425000px;}
.x98{left:304.050000px;}
.x6d{left:307.522500px;}
.xcc{left:316.876920px;}
.xc2{left:330.404250px;}
.x40{left:335.795678px;}
.xe2{left:336.862500px;}
.x75{left:342.888750px;}
.x91{left:345.675000px;}
.x66{left:350.574600px;}
.x5b{left:352.012500px;}
.xd3{left:354.862500px;}
.x19{left:357.375000px;}
.x6e{left:361.522500px;}
.xa5{left:366.921750px;}
.x76{left:372.112500px;}
.x54{left:380.625000px;}
.x39{left:389.175000px;}
.x53{left:393.562500px;}
.xcd{left:396.189000px;}
.x38{left:397.612500px;}
.xe{left:400.687500px;}
.x3f{left:404.532000px;}
.x37{left:414.675000px;}
.xdc{left:431.737500px;}
.x31{left:433.602000px;}
.x29{left:435.255000px;}
.x33{left:437.737500px;}
.xa6{left:440.055750px;}
.x8f{left:441.487500px;}
.x73{left:442.826250px;}
.x55{left:445.324650px;}
.x3d{left:448.371150px;}
.x9a{left:466.800000px;}
.x3e{left:472.028850px;}
.x8d{left:473.550000px;}
.x77{left:492.840000px;}
.x30{left:498.240000px;}
.x7f{left:505.612500px;}
.xa7{left:509.049750px;}
.xc3{left:512.175000px;}
.xba{left:515.296500px;}
.x9c{left:523.110750px;}
.x28{left:528.112500px;}
.x3a{left:531.562500px;}
.x36{left:533.737500px;}
.x32{left:535.662000px;}
.x16{left:536.801850px;}
.x6a{left:538.742697px;}
.x44{left:540.000000px;}
.xb3{left:542.736000px;}
.x1a{left:544.500000px;}
.x88{left:550.800000px;}
.x7e{left:576.487500px;}
.x72{left:577.965000px;}
.x96{left:586.237500px;}
.xc6{left:587.362500px;}
.xbb{left:591.598500px;}
.x7d{left:592.612500px;}
.x7b{left:597.300000px;}
.x5e{left:599.625000px;}
.x58{left:601.806780px;}
.xd4{left:606.112500px;}
.xf{left:613.312500px;}
.x71{left:616.116000px;}
.x2b{left:618.862500px;}
.x70{left:620.085000px;}
.x7a{left:622.612500px;}
.x86{left:627.300000px;}
.xab{left:631.187400px;}
.x80{left:637.938750px;}
.x85{left:640.361250px;}
.x83{left:642.297450px;}
.x60{left:657.087000px;}
.xac{left:659.987220px;}
.xda{left:664.425000px;}
.xbc{left:666.226500px;}
.x24{left:672.862500px;}
.xa9{left:675.667500px;}
.xc9{left:676.800000px;}
.xdd{left:678.300000px;}
.xc5{left:679.467000px;}
.xdf{left:680.550000px;}
.xd8{left:686.293890px;}
.x1e{left:687.915000px;}
.x8c{left:691.800000px;}
.xa8{left:693.292500px;}
.x74{left:703.800000px;}
.xc4{left:705.927000px;}
.x18{left:712.301850px;}
.x90{left:714.300000px;}
.x12{left:715.800000px;}
.x81{left:716.966490px;}
.xb{left:720.862500px;}
.x65{left:729.487500px;}
.x84{left:735.723930px;}
.xaa{left:737.231250px;}
.xae{left:740.070000px;}
.xbd{left:742.744500px;}
.x27{left:745.432350px;}
.xd9{left:751.103250px;}
.x26{left:755.162070px;}
.xad{left:761.396250px;}
.xcf{left:763.695000px;}
.x25{left:771.862650px;}
.x92{left:773.925000px;}
.x8b{left:780.490500px;}
.x2a{left:782.049750px;}
.x34{left:786.862500px;}
.x21{left:789.675000px;}
.x17{left:791.789850px;}
.x10{left:796.312500px;}
.xaf{left:803.988000px;}
.x82{left:816.344850px;}
.xb4{left:818.362500px;}
.xbf{left:827.677800px;}
.xd5{left:831.487650px;}
.xd7{left:843.780000px;}
.xb0{left:872.982000px;}
.xe0{left:884.737500px;}
.x1b{left:893.999850px;}
.x68{left:895.932000px;}
.xde{left:920.925000px;}
.x97{left:931.800150px;}
.x6c{left:939.797250px;}
.xb1{left:946.314000px;}
.xce{left:961.316250px;}
.xbe{left:969.022500px;}
.xb2{left:1015.290000px;}
@media print{
.v1{vertical-align:-189.440000pt;}
.v15{vertical-align:-134.666667pt;}
.v14{vertical-align:-93.333333pt;}
.v1a{vertical-align:-83.841280pt;}
.v1b{vertical-align:-68.106667pt;}
.v4{vertical-align:-61.920000pt;}
.v12{vertical-align:-47.360000pt;}
.v23{vertical-align:-44.800000pt;}
.v1f{vertical-align:-28.666667pt;}
.vf{vertical-align:-26.197760pt;}
.v17{vertical-align:-23.680000pt;}
.v13{vertical-align:-11.333333pt;}
.ve{vertical-align:-4.000000pt;}
.v2{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:1.333333pt;}
.va{vertical-align:7.040000pt;}
.v11{vertical-align:19.333333pt;}
.vb{vertical-align:25.600000pt;}
.v3{vertical-align:31.994027pt;}
.v22{vertical-align:44.800000pt;}
.v18{vertical-align:52.480000pt;}
.v10{vertical-align:58.252800pt;}
.v19{vertical-align:76.800000pt;}
.v1e{vertical-align:86.037120pt;}
.v1c{vertical-align:89.631360pt;}
.v1d{vertical-align:102.399360pt;}
.v5{vertical-align:112.040427pt;}
.v6{vertical-align:114.528000pt;}
.v7{vertical-align:122.240533pt;}
.v21{vertical-align:132.480000pt;}
.v9{vertical-align:146.560000pt;}
.v8{vertical-align:147.840000pt;}
.v20{vertical-align:152.266667pt;}
.vc{vertical-align:153.600000pt;}
.vd{vertical-align:173.333333pt;}
.ls9d{letter-spacing:-11.184000pt;}
.ls2c{letter-spacing:-5.664640pt;}
.ls84{letter-spacing:-4.393139pt;}
.ls89{letter-spacing:-3.836262pt;}
.lse7{letter-spacing:-2.553600pt;}
.lsdd{letter-spacing:-2.208000pt;}
.ls7d{letter-spacing:-1.351787pt;}
.ls80{letter-spacing:-1.248000pt;}
.ls8a{letter-spacing:-1.237824pt;}
.ls87{letter-spacing:-1.237504pt;}
.ls3a{letter-spacing:-1.175680pt;}
.ls85{letter-spacing:-0.990003pt;}
.ls7c{letter-spacing:-0.819593pt;}
.ls7f{letter-spacing:-0.819285pt;}
.ls79{letter-spacing:-0.594197pt;}
.ls7b{letter-spacing:-0.563458pt;}
.ls88{letter-spacing:-0.433126pt;}
.ls66{letter-spacing:-0.404772pt;}
.lsb9{letter-spacing:-0.384000pt;}
.ls54{letter-spacing:-0.341760pt;}
.ls2a{letter-spacing:-0.320640pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls48{letter-spacing:-0.299520pt;}
.ls4{letter-spacing:-0.288000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls67{letter-spacing:-0.255360pt;}
.ls98{letter-spacing:-0.234880pt;}
.lscb{letter-spacing:-0.224640pt;}
.ls2b{letter-spacing:-0.213760pt;}
.ls1{letter-spacing:-0.213120pt;}
.ls45{letter-spacing:-0.212480pt;}
.ls5e{letter-spacing:-0.196209pt;}
.lse{letter-spacing:-0.192000pt;}
.ls8c{letter-spacing:-0.170880pt;}
.ls68{letter-spacing:-0.170240pt;}
.ls29{letter-spacing:-0.160000pt;}
.ls91{letter-spacing:-0.149760pt;}
.ls3{letter-spacing:-0.149120pt;}
.ls7a{letter-spacing:-0.139840pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls86{letter-spacing:-0.123750pt;}
.ls5a{letter-spacing:-0.119596pt;}
.ls93{letter-spacing:-0.106880pt;}
.ls46{letter-spacing:-0.106240pt;}
.ls5d{letter-spacing:-0.098105pt;}
.ls8f{letter-spacing:-0.096000pt;}
.ls5c{letter-spacing:-0.086508pt;}
.lsba{letter-spacing:-0.085120pt;}
.ls47{letter-spacing:-0.074880pt;}
.ls5b{letter-spacing:-0.072954pt;}
.lsa9{letter-spacing:-0.064000pt;}
.ls59{letter-spacing:-0.043056pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.047360pt;}
.ls3d{letter-spacing:0.056320pt;}
.ls56{letter-spacing:0.072954pt;}
.ls57{letter-spacing:0.072956pt;}
.lscc{letter-spacing:0.074880pt;}
.ls65{letter-spacing:0.081280pt;}
.ls3e{letter-spacing:0.096000pt;}
.ls8e{letter-spacing:0.101193pt;}
.lsf{letter-spacing:0.106880pt;}
.ls8b{letter-spacing:0.123782pt;}
.lsd8{letter-spacing:0.128000pt;}
.ls3f{letter-spacing:0.129600pt;}
.ls69{letter-spacing:0.142080pt;}
.ls40{letter-spacing:0.144000pt;}
.ls4f{letter-spacing:0.149120pt;}
.ls12{letter-spacing:0.149760pt;}
.ls10{letter-spacing:0.160000pt;}
.ls60{letter-spacing:0.163835pt;}
.lsaa{letter-spacing:0.170240pt;}
.ls55{letter-spacing:0.170880pt;}
.ls26{letter-spacing:0.181760pt;}
.lsde{letter-spacing:0.182400pt;}
.ls76{letter-spacing:0.186453pt;}
.ls3b{letter-spacing:0.192000pt;}
.ls5f{letter-spacing:0.196209pt;}
.lsbe{letter-spacing:0.198400pt;}
.ls9a{letter-spacing:0.203072pt;}
.ls41{letter-spacing:0.212480pt;}
.ls64{letter-spacing:0.213120pt;}
.ls25{letter-spacing:0.213760pt;}
.lsbb{letter-spacing:0.224640pt;}
.ls49{letter-spacing:0.227840pt;}
.ls83{letter-spacing:0.230400pt;}
.ls97{letter-spacing:0.234880pt;}
.ls6{letter-spacing:0.256000pt;}
.ls62{letter-spacing:0.269848pt;}
.ls35{letter-spacing:0.288000pt;}
.ls78{letter-spacing:0.297099pt;}
.ls0{letter-spacing:0.298240pt;}
.ls92{letter-spacing:0.299520pt;}
.lsc8{letter-spacing:0.320000pt;}
.lse0{letter-spacing:0.320640pt;}
.lsdf{letter-spacing:0.341760pt;}
.ls58{letter-spacing:0.387504pt;}
.ls90{letter-spacing:0.426816pt;}
.lsca{letter-spacing:0.490352pt;}
.ls14{letter-spacing:0.640000pt;}
.ls77{letter-spacing:0.731271pt;}
.lscd{letter-spacing:0.768000pt;}
.ls7e{letter-spacing:0.845193pt;}
.ls8d{letter-spacing:1.192960pt;}
.lse6{letter-spacing:1.285312pt;}
.lse4{letter-spacing:1.293824pt;}
.ls82{letter-spacing:1.485389pt;}
.ls52{letter-spacing:1.523200pt;}
.lsd9{letter-spacing:1.536000pt;}
.lse5{letter-spacing:1.940736pt;}
.lsdc{letter-spacing:2.112000pt;}
.ls7{letter-spacing:2.176000pt;}
.lsc9{letter-spacing:2.232116pt;}
.ls81{letter-spacing:2.475008pt;}
.ls4c{letter-spacing:2.684160pt;}
.ls4d{letter-spacing:2.784000pt;}
.ls61{letter-spacing:8.297817pt;}
.lscf{letter-spacing:12.544000pt;}
.lsd1{letter-spacing:15.168000pt;}
.lsda{letter-spacing:20.131200pt;}
.lsce{letter-spacing:30.528000pt;}
.lsdb{letter-spacing:31.488000pt;}
.lsb{letter-spacing:49.152000pt;}
.lsb1{letter-spacing:52.224000pt;}
.lsc{letter-spacing:58.570240pt;}
.ls96{letter-spacing:61.773440pt;}
.lsbc{letter-spacing:67.392000pt;}
.ls9e{letter-spacing:67.957333pt;}
.lse3{letter-spacing:73.802667pt;}
.lsc3{letter-spacing:81.993600pt;}
.ls63{letter-spacing:82.938880pt;}
.lsc2{letter-spacing:85.213440pt;}
.lse2{letter-spacing:87.802667pt;}
.lsa{letter-spacing:91.857920pt;}
.ls5{letter-spacing:99.200000pt;}
.lsc1{letter-spacing:109.774080pt;}
.lsd{letter-spacing:126.864640pt;}
.lsbf{letter-spacing:133.361280pt;}
.lsc0{letter-spacing:135.308160pt;}
.lsbd{letter-spacing:138.032000pt;}
.ls9f{letter-spacing:139.874560pt;}
.lsa0{letter-spacing:141.421632pt;}
.lsa5{letter-spacing:141.954432pt;}
.lsa1{letter-spacing:141.954965pt;}
.lsa6{letter-spacing:141.955499pt;}
.ls9b{letter-spacing:144.701227pt;}
.lsaf{letter-spacing:146.240640pt;}
.lsae{letter-spacing:148.037760pt;}
.lsac{letter-spacing:148.636800pt;}
.lsb0{letter-spacing:150.433920pt;}
.lsad{letter-spacing:151.407360pt;}
.lsa7{letter-spacing:153.792000pt;}
.lsa2{letter-spacing:153.856000pt;}
.ls1b{letter-spacing:161.226667pt;}
.lsb2{letter-spacing:161.984000pt;}
.lsb4{letter-spacing:163.392000pt;}
.lsb5{letter-spacing:164.672000pt;}
.lsb3{letter-spacing:168.640000pt;}
.ls30{letter-spacing:169.728000pt;}
.lsb6{letter-spacing:170.624000pt;}
.lsb7{letter-spacing:171.392000pt;}
.lsa4{letter-spacing:171.840000pt;}
.lsa3{letter-spacing:172.544000pt;}
.ls1f{letter-spacing:178.506667pt;}
.lsb8{letter-spacing:179.904000pt;}
.ls72{letter-spacing:183.024213pt;}
.ls71{letter-spacing:185.271253pt;}
.lsa8{letter-spacing:187.264000pt;}
.ls73{letter-spacing:213.212587pt;}
.ls6f{letter-spacing:213.223040pt;}
.ls6d{letter-spacing:213.889707pt;}
.ls70{letter-spacing:213.915093pt;}
.ls6e{letter-spacing:214.556373pt;}
.ls16{letter-spacing:220.106667pt;}
.ls22{letter-spacing:220.746667pt;}
.ls27{letter-spacing:222.325973pt;}
.ls6b{letter-spacing:239.304320pt;}
.lsc4{letter-spacing:247.628160pt;}
.ls23{letter-spacing:254.373333pt;}
.ls6c{letter-spacing:254.525781pt;}
.lsd3{letter-spacing:257.317333pt;}
.lsd0{letter-spacing:257.381333pt;}
.ls6a{letter-spacing:259.996288pt;}
.lsc6{letter-spacing:261.914240pt;}
.ls1a{letter-spacing:266.560000pt;}
.ls18{letter-spacing:279.626667pt;}
.lsc5{letter-spacing:280.896000pt;}
.lsab{letter-spacing:284.185984pt;}
.ls1c{letter-spacing:289.573333pt;}
.ls24{letter-spacing:325.440000pt;}
.lsc7{letter-spacing:326.027520pt;}
.ls21{letter-spacing:326.080000pt;}
.ls1d{letter-spacing:331.200000pt;}
.ls75{letter-spacing:360.312960pt;}
.ls20{letter-spacing:369.501013pt;}
.ls15{letter-spacing:384.960000pt;}
.lsd7{letter-spacing:385.152000pt;}
.ls43{letter-spacing:447.707520pt;}
.ls44{letter-spacing:454.371840pt;}
.ls42{letter-spacing:461.710080pt;}
.ls19{letter-spacing:488.042453pt;}
.ls33{letter-spacing:489.792000pt;}
.lsd4{letter-spacing:565.632000pt;}
.ls37{letter-spacing:575.333333pt;}
.ls38{letter-spacing:603.332800pt;}
.ls9c{letter-spacing:605.380480pt;}
.ls32{letter-spacing:632.544000pt;}
.ls39{letter-spacing:633.333333pt;}
.lsd5{letter-spacing:637.401600pt;}
.ls2f{letter-spacing:661.219200pt;}
.ls2e{letter-spacing:661.891200pt;}
.lsd6{letter-spacing:663.552000pt;}
.ls34{letter-spacing:685.536000pt;}
.ls31{letter-spacing:686.208000pt;}
.ls13{letter-spacing:719.680213pt;}
.ls4b{letter-spacing:743.296000pt;}
.lsd2{letter-spacing:753.152000pt;}
.ls2d{letter-spacing:851.220800pt;}
.ls28{letter-spacing:860.937600pt;}
.ls17{letter-spacing:937.912533pt;}
.ls4a{letter-spacing:970.368000pt;}
.ls51{letter-spacing:989.109333pt;}
.ls36{letter-spacing:1084.000000pt;}
.ls95{letter-spacing:1086.811520pt;}
.ls94{letter-spacing:1178.536469pt;}
.ls99{letter-spacing:1444.351659pt;}
.lse1{letter-spacing:1481.043669pt;}
.ls50{letter-spacing:1544.549333pt;}
.ls74{letter-spacing:1607.893867pt;}
.ls4e{letter-spacing:1774.611243pt;}
.ls53{letter-spacing:2396.791787pt;}
.ls3c{letter-spacing:2569.143040pt;}
.ws1d{word-spacing:-106.880000pt;}
.ws5a{word-spacing:-86.507733pt;}
.wsa7{word-spacing:-65.531520pt;}
.wsa6{word-spacing:-65.061760pt;}
.ws8b{word-spacing:-56.256000pt;}
.ws8c{word-spacing:-54.339840pt;}
.ws4e{word-spacing:-53.568000pt;}
.ws10{word-spacing:-53.184000pt;}
.ws8d{word-spacing:-48.762240pt;}
.ws4f{word-spacing:-47.675520pt;}
.wsa1{word-spacing:-47.504640pt;}
.wse2{word-spacing:-47.333760pt;}
.wse3{word-spacing:-47.162880pt;}
.wsc2{word-spacing:-44.800000pt;}
.ws14{word-spacing:-44.640000pt;}
.ws17{word-spacing:-44.320000pt;}
.wsde{word-spacing:-43.061760pt;}
.ws8e{word-spacing:-42.368000pt;}
.ws11{word-spacing:-41.753600pt;}
.wsd9{word-spacing:-41.604480pt;}
.ws3f{word-spacing:-41.306240pt;}
.wse5{word-spacing:-37.632000pt;}
.wse4{word-spacing:-37.248000pt;}
.ws8{word-spacing:-35.840000pt;}
.ws7{word-spacing:-35.456000pt;}
.ws9{word-spacing:-35.328000pt;}
.ws98{word-spacing:-31.208960pt;}
.wsa8{word-spacing:-30.271360pt;}
.ws90{word-spacing:-30.144000pt;}
.ws4b{word-spacing:-30.048000pt;}
.wsa2{word-spacing:-29.952000pt;}
.ws1a{word-spacing:-29.926400pt;}
.ws1b{word-spacing:-29.819520pt;}
.ws18{word-spacing:-29.712640pt;}
.wsa9{word-spacing:-29.605760pt;}
.ws1c{word-spacing:-29.498880pt;}
.ws19{word-spacing:-29.392000pt;}
.ws27{word-spacing:-28.536960pt;}
.wsc3{word-spacing:-28.224000pt;}
.wsc4{word-spacing:-27.936000pt;}
.wse6{word-spacing:-27.755520pt;}
.ws5d{word-spacing:-27.076851pt;}
.ws23{word-spacing:-26.976000pt;}
.ws50{word-spacing:-26.880000pt;}
.wsd1{word-spacing:-26.688000pt;}
.ws22{word-spacing:-26.496000pt;}
.ws24{word-spacing:-26.400000pt;}
.wsdf{word-spacing:-26.399360pt;}
.wsba{word-spacing:-25.110400pt;}
.wsb9{word-spacing:-24.940160pt;}
.wsb8{word-spacing:-24.855040pt;}
.wsdb{word-spacing:-24.480000pt;}
.ws71{word-spacing:-24.370018pt;}
.ws1e{word-spacing:-24.048000pt;}
.ws5b{word-spacing:-23.962642pt;}
.ws33{word-spacing:-23.663360pt;}
.wsae{word-spacing:-23.493120pt;}
.wse7{word-spacing:-23.408000pt;}
.ws5e{word-spacing:-22.936853pt;}
.wsc6{word-spacing:-22.014720pt;}
.ws97{word-spacing:-21.939840pt;}
.ws96{word-spacing:-21.790080pt;}
.wsc5{word-spacing:-21.715200pt;}
.wsbb{word-spacing:-21.640320pt;}
.ws32{word-spacing:-20.741760pt;}
.ws56{word-spacing:-20.354049pt;}
.ws59{word-spacing:-20.281096pt;}
.ws58{word-spacing:-20.208142pt;}
.wsbc{word-spacing:-18.944000pt;}
.wsbd{word-spacing:-18.624000pt;}
.ws91{word-spacing:-18.048000pt;}
.ws7c{word-spacing:-17.943808pt;}
.wsd0{word-spacing:-17.920000pt;}
.wsb6{word-spacing:-17.792000pt;}
.wsb7{word-spacing:-17.408000pt;}
.ws7f{word-spacing:-17.077555pt;}
.ws72{word-spacing:-16.815785pt;}
.ws57{word-spacing:-16.504241pt;}
.ws7e{word-spacing:-16.211302pt;}
.ws6e{word-spacing:-15.924489pt;}
.ws81{word-spacing:-15.035674pt;}
.wsb0{word-spacing:-14.592000pt;}
.ws31{word-spacing:-14.554880pt;}
.wsaf{word-spacing:-14.528000pt;}
.ws85{word-spacing:-14.234976pt;}
.ws2d{word-spacing:-13.536000pt;}
.wsb1{word-spacing:-13.248000pt;}
.ws70{word-spacing:-13.144960pt;}
.ws6f{word-spacing:-12.818667pt;}
.ws7d{word-spacing:-12.808166pt;}
.ws55{word-spacing:-12.357072pt;}
.wsa4{word-spacing:-11.328000pt;}
.ws84{word-spacing:-11.075661pt;}
.ws63{word-spacing:-10.220481pt;}
.ws51{word-spacing:-6.835200pt;}
.ws3b{word-spacing:-4.608000pt;}
.wse1{word-spacing:-2.672000pt;}
.ws36{word-spacing:-2.545920pt;}
.ws86{word-spacing:-2.475008pt;}
.wsaa{word-spacing:-2.244480pt;}
.wsc8{word-spacing:-2.232116pt;}
.ws41{word-spacing:-2.176000pt;}
.wsbe{word-spacing:-2.048000pt;}
.wsd4{word-spacing:-1.946880pt;}
.ws8a{word-spacing:-1.710080pt;}
.ws69{word-spacing:-1.603200pt;}
.ws40{word-spacing:-1.536000pt;}
.wsa5{word-spacing:-1.497600pt;}
.ws6c{word-spacing:-1.496320pt;}
.ws95{word-spacing:-1.408000pt;}
.wsa3{word-spacing:-1.367040pt;}
.wsb5{word-spacing:-1.344000pt;}
.ws9d{word-spacing:-1.282560pt;}
.ws44{word-spacing:-1.280000pt;}
.ws73{word-spacing:-1.276800pt;}
.wsd3{word-spacing:-1.272960pt;}
.ws15{word-spacing:-1.123200pt;}
.ws4a{word-spacing:-1.120000pt;}
.ws65{word-spacing:-1.079391pt;}
.ws53{word-spacing:-1.025280pt;}
.ws12{word-spacing:-0.961920pt;}
.wsa{word-spacing:-0.960000pt;}
.ws2b{word-spacing:-0.957440pt;}
.ws34{word-spacing:-0.903040pt;}
.ws3d{word-spacing:-0.896000pt;}
.ws47{word-spacing:-0.855040pt;}
.ws78{word-spacing:-0.845193pt;}
.ws4c{word-spacing:-0.768000pt;}
.wse0{word-spacing:-0.748160pt;}
.ws13{word-spacing:-0.745600pt;}
.ws88{word-spacing:-0.742694pt;}
.ws2f{word-spacing:-0.720000pt;}
.ws99{word-spacing:-0.683520pt;}
.ws2e{word-spacing:-0.672000pt;}
.wsf1{word-spacing:-0.595840pt;}
.ws16{word-spacing:-0.576000pt;}
.ws9c{word-spacing:-0.534400pt;}
.wscc{word-spacing:-0.524160pt;}
.wsed{word-spacing:-0.512000pt;}
.wsc9{word-spacing:-0.490352pt;}
.wscb{word-spacing:-0.480000pt;}
.ws9a{word-spacing:-0.449280pt;}
.wsd6{word-spacing:-0.448000pt;}
.wsad{word-spacing:-0.426240pt;}
.ws64{word-spacing:-0.404772pt;}
.ws60{word-spacing:-0.387504pt;}
.ws29{word-spacing:-0.384000pt;}
.wsc0{word-spacing:-0.374400pt;}
.ws52{word-spacing:-0.341760pt;}
.ws9e{word-spacing:-0.320640pt;}
.ws46{word-spacing:-0.320000pt;}
.wsdc{word-spacing:-0.298240pt;}
.wsb{word-spacing:-0.256000pt;}
.ws38{word-spacing:-0.227840pt;}
.ws6b{word-spacing:-0.213760pt;}
.ws62{word-spacing:-0.196209pt;}
.ws30{word-spacing:-0.192000pt;}
.ws3{word-spacing:-0.149120pt;}
.wsdd{word-spacing:-0.144000pt;}
.ws6a{word-spacing:-0.142080pt;}
.wsb3{word-spacing:-0.128000pt;}
.ws1f{word-spacing:-0.106880pt;}
.ws2c{word-spacing:-0.096000pt;}
.ws67{word-spacing:-0.085120pt;}
.ws5f{word-spacing:-0.072956pt;}
.ws1{word-spacing:0.000000pt;}
.ws61{word-spacing:0.043056pt;}
.ws35{word-spacing:0.053120pt;}
.wsb4{word-spacing:0.064000pt;}
.wscd{word-spacing:0.085120pt;}
.ws21{word-spacing:0.096000pt;}
.wse{word-spacing:0.128000pt;}
.ws92{word-spacing:0.149120pt;}
.ws9b{word-spacing:0.149760pt;}
.ws48{word-spacing:0.160000pt;}
.wsef{word-spacing:0.170240pt;}
.ws2a{word-spacing:0.192000pt;}
.wsac{word-spacing:0.213120pt;}
.ws9f{word-spacing:0.213760pt;}
.ws3e{word-spacing:0.256000pt;}
.ws26{word-spacing:0.288000pt;}
.ws5{word-spacing:0.298240pt;}
.ws37{word-spacing:0.299520pt;}
.ws28{word-spacing:0.320000pt;}
.wsd8{word-spacing:0.341760pt;}
.wsd{word-spacing:0.384000pt;}
.ws66{word-spacing:0.404772pt;}
.ws4{word-spacing:0.447360pt;}
.ws20{word-spacing:0.480000pt;}
.wsce{word-spacing:0.510720pt;}
.ws3c{word-spacing:0.512000pt;}
.ws89{word-spacing:0.576000pt;}
.ws87{word-spacing:0.618912pt;}
.ws2{word-spacing:0.639360pt;}
.wscf{word-spacing:0.672000pt;}
.ws6d{word-spacing:0.680960pt;}
.ws94{word-spacing:0.708350pt;}
.wsc1{word-spacing:0.748800pt;}
.ws4d{word-spacing:0.768000pt;}
.ws25{word-spacing:0.800000pt;}
.wsd5{word-spacing:0.832000pt;}
.wsb2{word-spacing:0.851200pt;}
.wsca{word-spacing:0.864000pt;}
.ws39{word-spacing:0.894720pt;}
.wsa0{word-spacing:0.896000pt;}
.ws45{word-spacing:0.960000pt;}
.wsc{word-spacing:1.024000pt;}
.ws54{word-spacing:1.065600pt;}
.wsc7{word-spacing:1.120000pt;}
.ws6{word-spacing:1.152000pt;}
.ws93{word-spacing:1.192960pt;}
.wsd7{word-spacing:1.200000pt;}
.ws74{word-spacing:1.276800pt;}
.wsab{word-spacing:1.342080pt;}
.ws77{word-spacing:1.351787pt;}
.ws43{word-spacing:1.440000pt;}
.wsea{word-spacing:1.447040pt;}
.wsee{word-spacing:1.536000pt;}
.ws3a{word-spacing:1.640320pt;}
.wsf{word-spacing:1.664000pt;}
.ws75{word-spacing:1.690374pt;}
.ws68{word-spacing:1.702400pt;}
.ws49{word-spacing:1.760000pt;}
.wsda{word-spacing:1.792000pt;}
.ws0{word-spacing:1.918080pt;}
.wsd2{word-spacing:1.920000pt;}
.ws79{word-spacing:1.945803pt;}
.ws76{word-spacing:1.946532pt;}
.wseb{word-spacing:1.957760pt;}
.wse8{word-spacing:2.128000pt;}
.wsf0{word-spacing:2.553600pt;}
.wsbf{word-spacing:2.638720pt;}
.wsec{word-spacing:2.723840pt;}
.ws7a{word-spacing:2.784000pt;}
.ws8f{word-spacing:2.833280pt;}
.ws42{word-spacing:2.944000pt;}
.wse9{word-spacing:3.404800pt;}
.ws82{word-spacing:51.480145pt;}
.ws7b{word-spacing:267.299936pt;}
.ws83{word-spacing:434.115251pt;}
.ws80{word-spacing:690.032230pt;}
.ws5c{word-spacing:743.916866pt;}
._26{margin-left:-2977.732736pt;}
._15{margin-left:-1560.454588pt;}
._c{margin-left:-1509.888619pt;}
._14{margin-left:-426.381577pt;}
._4{margin-left:-26.867456pt;}
._d{margin-left:-15.984000pt;}
._b{margin-left:-12.542592pt;}
._1a{margin-left:-8.603840pt;}
._9{margin-left:-7.168000pt;}
._a{margin-left:-5.894400pt;}
._6{margin-left:-3.982848pt;}
._3{margin-left:-2.429952pt;}
._1{margin-left:-0.909632pt;}
._0{width:1.022976pt;}
._2{width:2.639424pt;}
._8{width:3.659328pt;}
._5{width:5.191680pt;}
._e{width:6.798120pt;}
._18{width:9.542400pt;}
._17{width:10.444800pt;}
._1b{width:11.475840pt;}
._24{width:18.195840pt;}
._28{width:48.512000pt;}
._19{width:61.773440pt;}
._27{width:66.624000pt;}
._25{width:159.344640pt;}
._1c{width:162.216747pt;}
._22{width:165.859200pt;}
._1d{width:186.816000pt;}
._20{width:190.944000pt;}
._1f{width:195.055616pt;}
._23{width:199.104000pt;}
._1e{width:201.472000pt;}
._21{width:203.149440pt;}
._10{width:245.503360pt;}
._11{width:273.505920pt;}
._f{width:289.217280pt;}
._12{width:360.312960pt;}
._7{width:491.587200pt;}
._29{width:823.488000pt;}
._13{width:901.555768pt;}
._16{width:1268.736000pt;}
.fs10{font-size:43.056000pt;}
.fs1b{font-size:46.613333pt;}
.fsa{font-size:48.000000pt;}
.fs20{font-size:51.205333pt;}
.fs1d{font-size:51.223467pt;}
.fs1e{font-size:51.224533pt;}
.fs16{font-size:52.976533pt;}
.fsb{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fsd{font-size:56.960000pt;}
.fs1a{font-size:59.419733pt;}
.fs12{font-size:59.797976pt;}
.fs21{font-size:61.875200pt;}
.fs22{font-size:61.891200pt;}
.fs18{font-size:64.000000pt;}
.fs19{font-size:67.461923pt;}
.fs8{font-size:71.040000pt;}
.fs11{font-size:72.953581pt;}
.fsf{font-size:72.955733pt;}
.fs7{font-size:74.880000pt;}
.fs1f{font-size:76.835733pt;}
.fs27{font-size:81.725333pt;}
.fs15{font-size:81.917333pt;}
.fs1c{font-size:85.031467pt;}
.fsc{font-size:85.120000pt;}
.fs13{font-size:86.507733pt;}
.fs2{font-size:96.000000pt;}
.fs26{font-size:97.048533pt;}
.fs14{font-size:98.104533pt;}
.fs28{font-size:99.840000pt;}
.fs17{font-size:101.192885pt;}
.fs6{font-size:106.880000pt;}
.fs4{font-size:128.000000pt;}
.fs1{font-size:149.120000pt;}
.fs3{font-size:160.000000pt;}
.fse{font-size:170.880000pt;}
.fs5{font-size:192.000000pt;}
.fs0{font-size:213.120000pt;}
.fs24{font-size:234.880000pt;}
.fs23{font-size:256.000000pt;}
.fs25{font-size:320.000000pt;}
.y22{bottom:-43.833333pt;}
.y13{bottom:-7.586667pt;}
.y22c{bottom:-3.280000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:1.500000pt;}
.ya8{bottom:1.794667pt;}
.ya0{bottom:2.246667pt;}
.y12a{bottom:5.013333pt;}
.y4f{bottom:5.433333pt;}
.yd7{bottom:6.900000pt;}
.y3c{bottom:7.198533pt;}
.y1ec{bottom:7.366667pt;}
.y52{bottom:9.353333pt;}
.y21{bottom:9.926667pt;}
.y1cf{bottom:10.020000pt;}
.y1f4{bottom:10.193333pt;}
.y132{bottom:10.306667pt;}
.y56{bottom:10.404267pt;}
.yb2{bottom:10.546305pt;}
.y1e9{bottom:10.673333pt;}
.ye5{bottom:12.165067pt;}
.yf0{bottom:12.165200pt;}
.ya7{bottom:12.558267pt;}
.y197{bottom:12.953333pt;}
.y81{bottom:14.340000pt;}
.y142{bottom:14.353333pt;}
.y4b{bottom:14.860000pt;}
.yee{bottom:15.110933pt;}
.yf7{bottom:15.111067pt;}
.y25{bottom:15.473333pt;}
.y115{bottom:16.360000pt;}
.y110{bottom:18.254613pt;}
.y86{bottom:21.360000pt;}
.y77{bottom:21.546667pt;}
.y247{bottom:21.870987pt;}
.yfa{bottom:22.840000pt;}
.ye4{bottom:23.270667pt;}
.y215{bottom:24.573333pt;}
.yad{bottom:25.709906pt;}
.y55{bottom:26.406667pt;}
.y122{bottom:26.910000pt;}
.y14d{bottom:27.286667pt;}
.y35{bottom:29.026667pt;}
.y4e{bottom:29.506667pt;}
.y22b{bottom:29.514400pt;}
.yae{bottom:32.490479pt;}
.y13a{bottom:34.446667pt;}
.y98{bottom:34.898000pt;}
.y1ce{bottom:36.146667pt;}
.y84{bottom:37.006667pt;}
.yac{bottom:37.873293pt;}
.y192{bottom:38.173333pt;}
.y209{bottom:39.966667pt;}
.y15c{bottom:40.946667pt;}
.y33{bottom:44.506667pt;}
.ye6{bottom:45.589067pt;}
.yf1{bottom:45.589200pt;}
.yab{bottom:45.648198pt;}
.y12{bottom:46.173333pt;}
.y193{bottom:47.526667pt;}
.y57{bottom:49.073333pt;}
.y246{bottom:50.024427pt;}
.y3b{bottom:50.110533pt;}
.yfc{bottom:50.119067pt;}
.ybf{bottom:51.320160pt;}
.y1eb{bottom:51.693333pt;}
.yaa{bottom:51.727600pt;}
.yfb{bottom:55.000000pt;}
.y1cd{bottom:55.346667pt;}
.y9f{bottom:55.998213pt;}
.y17f{bottom:56.020000pt;}
.ya9{bottom:59.501600pt;}
.y22a{bottom:60.561920pt;}
.yb1{bottom:62.909600pt;}
.y20{bottom:63.676107pt;}
.y19a{bottom:67.306667pt;}
.yfd{bottom:68.526933pt;}
.y140{bottom:69.514933pt;}
.y214{bottom:70.653333pt;}
.ye7{bottom:71.200933pt;}
.y5{bottom:73.625013pt;}
.yf2{bottom:76.323467pt;}
.y4a{bottom:76.526667pt;}
.ybe{bottom:76.920000pt;}
.y8b{bottom:77.588267pt;}
.y245{bottom:78.177867pt;}
.y14a{bottom:78.193333pt;}
.y208{bottom:78.366667pt;}
.y76{bottom:79.146667pt;}
.yef{bottom:83.494667pt;}
.yb3{bottom:84.369967pt;}
.y164{bottom:84.940000pt;}
.y67{bottom:85.840000pt;}
.y3a{bottom:88.942533pt;}
.y1c1{bottom:89.830000pt;}
.yf8{bottom:90.409867pt;}
.y229{bottom:91.290240pt;}
.y111{bottom:92.503733pt;}
.y8e{bottom:92.569440pt;}
.y183{bottom:93.313333pt;}
.y80{bottom:93.340000pt;}
.y8d{bottom:94.046667pt;}
.y1c8{bottom:96.392027pt;}
.ye8{bottom:96.812933pt;}
.y19d{bottom:97.070667pt;}
.y11{bottom:99.933333pt;}
.ya2{bottom:101.161733pt;}
.y85{bottom:102.446667pt;}
.y1a9{bottom:106.086667pt;}
.y244{bottom:106.331307pt;}
.yf3{bottom:107.057733pt;}
.y1cc{bottom:108.296667pt;}
.y109{bottom:108.436667pt;}
.y1f{bottom:108.480587pt;}
.y1c7{bottom:108.878267pt;}
.yfe{bottom:109.674133pt;}
.y9e{bottom:109.755973pt;}
.yb5{bottom:111.348667pt;}
.y127{bottom:114.226667pt;}
.y1c9{bottom:114.625307pt;}
.y17b{bottom:115.486667pt;}
.yb4{bottom:116.499067pt;}
.y207{bottom:116.766667pt;}
.y5b{bottom:117.620000pt;}
.y213{bottom:118.005013pt;}
.yb0{bottom:118.166667pt;}
.y1c2{bottom:118.580000pt;}
.y26{bottom:119.480000pt;}
.y13f{bottom:120.736213pt;}
.y228{bottom:122.018560pt;}
.ye9{bottom:122.424800pt;}
.y4{bottom:122.909173pt;}
.y32{bottom:124.241360pt;}
.y1da{bottom:125.126667pt;}
.y19c{bottom:125.870667pt;}
.y1cb{bottom:127.496667pt;}
.y39{bottom:127.774533pt;}
.y38{bottom:128.396427pt;}
.y1ab{bottom:132.154667pt;}
.y95{bottom:133.231467pt;}
.y243{bottom:134.484747pt;}
.y17a{bottom:134.686667pt;}
.y8a{bottom:135.188267pt;}
.yf4{bottom:137.792000pt;}
.y121{bottom:139.373333pt;}
.y18f{bottom:140.660000pt;}
.y1e6{bottom:141.205227pt;}
.y7f{bottom:145.820000pt;}
.ya3{bottom:146.211899pt;}
.y1ca{bottom:146.696667pt;}
.y1c3{bottom:147.330000pt;}
.yea{bottom:148.036667pt;}
.y5a{bottom:148.599867pt;}
.y195{bottom:150.392667pt;}
.yff{bottom:150.821333pt;}
.yaf{bottom:151.792800pt;}
.y12e{bottom:152.060000pt;}
.y10{bottom:152.413333pt;}
.y227{bottom:152.746880pt;}
.y17c{bottom:153.886667pt;}
.y9d{bottom:154.560587pt;}
.y206{bottom:155.166667pt;}
.y1aa{bottom:157.754507pt;}
.y146{bottom:157.780000pt;}
.y18e{bottom:159.860000pt;}
.y37{bottom:160.246667pt;}
.y10a{bottom:162.113600pt;}
.y1e{bottom:162.238347pt;}
.y242{bottom:162.638187pt;}
.y194{bottom:166.306667pt;}
.yf5{bottom:168.526267pt;}
.yd5{bottom:169.413200pt;}
.yce{bottom:169.876000pt;}
.y175{bottom:170.500000pt;}
.y31{bottom:170.573200pt;}
.yed{bottom:171.087200pt;}
.y212{bottom:171.762773pt;}
.y13e{bottom:171.914773pt;}
.y3{bottom:172.193333pt;}
.y1d9{bottom:172.500107pt;}
.yf6{bottom:173.392267pt;}
.yeb{bottom:173.648667pt;}
.y49{bottom:174.830800pt;}
.y15a{bottom:175.413333pt;}
.y1a6{bottom:175.675067pt;}
.y1c4{bottom:176.080000pt;}
.y158{bottom:180.280000pt;}
.y123{bottom:180.673333pt;}
.y184{bottom:180.753333pt;}
.y1e5{bottom:181.542187pt;}
.y18d{bottom:181.806667pt;}
.y226{bottom:183.475200pt;}
.y139{bottom:186.626667pt;}
.y241{bottom:190.791627pt;}
.ya4{bottom:191.152630pt;}
.y7e{bottom:191.900000pt;}
.y100{bottom:192.123067pt;}
.y89{bottom:192.788267pt;}
.y205{bottom:193.566667pt;}
.y176{bottom:196.120000pt;}
.y1b1{bottom:197.041333pt;}
.y1a0{bottom:197.793333pt;}
.yf{bottom:198.493333pt;}
.yec{bottom:199.260533pt;}
.y5c{bottom:201.448160pt;}
.y178{bottom:201.854507pt;}
.y17e{bottom:201.862827pt;}
.y1c5{bottom:204.830000pt;}
.y15b{bottom:207.935200pt;}
.y9c{bottom:208.318347pt;}
.y94{bottom:208.926667pt;}
.yc7{bottom:211.113333pt;}
.y48{bottom:211.790800pt;}
.y225{bottom:214.203520pt;}
.ycd{bottom:215.219840pt;}
.yd4{bottom:215.913333pt;}
.y10b{bottom:215.945200pt;}
.y1d{bottom:215.996107pt;}
.y211{bottom:216.573333pt;}
.y30{bottom:216.908027pt;}
.y19f{bottom:216.993333pt;}
.y16f{bottom:217.870000pt;}
.y240{bottom:218.945067pt;}
.y6f{bottom:220.711867pt;}
.ye3{bottom:221.798667pt;}
.y1e4{bottom:221.879147pt;}
.y13d{bottom:223.093333pt;}
.y120{bottom:224.780000pt;}
.y138{bottom:225.026667pt;}
.y152{bottom:225.083840pt;}
.y1b0{bottom:225.841333pt;}
.y1d8{bottom:226.257867pt;}
.y97{bottom:228.378667pt;}
.y17d{bottom:229.377867pt;}
.y1a5{bottom:230.636987pt;}
.y204{bottom:231.966667pt;}
.y101{bottom:233.270267pt;}
.y1c6{bottom:233.580000pt;}
.y16b{bottom:234.031147pt;}
.y19e{bottom:236.193333pt;}
.ya5{bottom:236.293990pt;}
.ye{bottom:236.893333pt;}
.y7d{bottom:237.980000pt;}
.y18a{bottom:240.066987pt;}
.yc6{bottom:243.081653pt;}
.y159{bottom:244.280000pt;}
.y224{bottom:244.931840pt;}
.y47{bottom:245.230933pt;}
.y23f{bottom:247.098507pt;}
.y88{bottom:250.388267pt;}
.y1ae{bottom:252.746667pt;}
.y5d{bottom:254.949920pt;}
.y61{bottom:255.400000pt;}
.y96{bottom:257.178667pt;}
.ydb{bottom:259.006667pt;}
.y6e{bottom:259.111867pt;}
.y177{bottom:260.097867pt;}
.y1be{bottom:260.678000pt;}
.y1c0{bottom:260.680000pt;}
.y1c{bottom:260.806667pt;}
.y9b{bottom:262.076107pt;}
.y1e3{bottom:262.216107pt;}
.yd3{bottom:262.246667pt;}
.ycc{bottom:262.728000pt;}
.y2f{bottom:263.239867pt;}
.y170{bottom:263.286667pt;}
.y210{bottom:269.053333pt;}
.y10c{bottom:269.776800pt;}
.y203{bottom:270.366667pt;}
.y1b2{bottom:274.163333pt;}
.y1ac{bottom:274.473333pt;}
.y102{bottom:274.572000pt;}
.yc5{bottom:275.092213pt;}
.y23e{bottom:275.251947pt;}
.y1f3{bottom:275.574987pt;}
.y223{bottom:275.660160pt;}
.y11f{bottom:277.413333pt;}
.y1d7{bottom:280.015627pt;}
.y196{bottom:280.742933pt;}
.y1b9{bottom:280.746027pt;}
.ya6{bottom:281.344156pt;}
.y46{bottom:282.190933pt;}
.yd{bottom:282.973333pt;}
.y198{bottom:284.516267pt;}
.y7c{bottom:285.348960pt;}
.y1a4{bottom:285.767387pt;}
.y141{bottom:286.033333pt;}
.y16a{bottom:287.788907pt;}
.y112{bottom:289.731467pt;}
.ya1{bottom:292.000000pt;}
.y1bd{bottom:292.630000pt;}
.y1bf{bottom:292.662000pt;}
.y1a8{bottom:293.232160pt;}
.y1b8{bottom:293.232267pt;}
.y148{bottom:294.946667pt;}
.y6d{bottom:297.511867pt;}
.y1ba{bottom:298.979307pt;}
.y59{bottom:302.620000pt;}
.y1b3{bottom:302.913333pt;}
.y23d{bottom:303.405387pt;}
.y189{bottom:304.396427pt;}
.y222{bottom:306.388480pt;}
.y9a{bottom:306.886667pt;}
.yc4{bottom:307.102773pt;}
.y1f2{bottom:307.585547pt;}
.y87{bottom:307.988267pt;}
.y5e{bottom:308.620160pt;}
.yd2{bottom:308.746533pt;}
.y202{bottom:308.766667pt;}
.y173{bottom:308.786667pt;}
.y2e{bottom:309.574693pt;}
.y151{bottom:309.581920pt;}
.y1e2{bottom:311.500267pt;}
.y1bc{bottom:311.830000pt;}
.ycb{bottom:312.400480pt;}
.y1b{bottom:313.286667pt;}
.y75{bottom:313.500000pt;}
.y44{bottom:314.180373pt;}
.y20f{bottom:315.133333pt;}
.y43{bottom:315.630800pt;}
.y1a7{bottom:315.640000pt;}
.y103{bottom:315.719200pt;}
.yc{bottom:321.373333pt;}
.y16e{bottom:321.634773pt;}
.y10d{bottom:323.608267pt;}
.y147{bottom:323.780000pt;}
.y15f{bottom:327.264160pt;}
.y1fc{bottom:329.800000pt;}
.y1bb{bottom:331.030000pt;}
.y23c{bottom:331.558827pt;}
.y1b4{bottom:331.663333pt;}
.y91{bottom:333.500000pt;}
.y1d6{bottom:333.773387pt;}
.y125{bottom:335.226667pt;}
.y6c{bottom:335.911867pt;}
.y63{bottom:336.120000pt;}
.y137{bottom:336.597760pt;}
.y221{bottom:337.116800pt;}
.y124{bottom:337.686667pt;}
.y7b{bottom:339.106720pt;}
.yc3{bottom:339.118933pt;}
.y1f1{bottom:339.596107pt;}
.y1a3{bottom:340.392347pt;}
.y149{bottom:344.506667pt;}
.y157{bottom:345.258880pt;}
.y201{bottom:347.166667pt;}
.yd9{bottom:347.206667pt;}
.y169{bottom:347.346667pt;}
.y108{bottom:351.142800pt;}
.y74{bottom:351.900000pt;}
.y45{bottom:352.577013pt;}
.y42{bottom:352.590800pt;}
.y174{bottom:354.286667pt;}
.yd1{bottom:355.079867pt;}
.yca{bottom:355.580000pt;}
.y2d{bottom:355.908027pt;}
.y181{bottom:356.713333pt;}
.y104{bottom:356.866267pt;}
.y1a{bottom:358.246667pt;}
.y15e{bottom:359.274720pt;}
.y23b{bottom:359.712267pt;}
.y1b5{bottom:360.413333pt;}
.y1e1{bottom:360.784427pt;}
.y5f{bottom:362.365280pt;}
.y20e{bottom:362.482773pt;}
.y18b{bottom:365.860000pt;}
.yb{bottom:367.453333pt;}
.y220{bottom:367.845120pt;}
.y1fb{bottom:368.200000pt;}
.y136{bottom:368.608320pt;}
.yc2{bottom:371.102773pt;}
.y1f0{bottom:371.606667pt;}
.y107{bottom:372.489733pt;}
.y188{bottom:372.556267pt;}
.y12c{bottom:373.060000pt;}
.y12b{bottom:375.520000pt;}
.y156{bottom:377.269440pt;}
.y10e{bottom:377.439867pt;}
.y11e{bottom:378.706667pt;}
.y6b{bottom:383.933733pt;}
.yda{bottom:384.840000pt;}
.y16d{bottom:385.624053pt;}
.y3f{bottom:386.030933pt;}
.y1d5{bottom:387.531147pt;}
.y23a{bottom:387.865707pt;}
.y1b6{bottom:389.163333pt;}
.y73{bottom:390.300000pt;}
.y15d{bottom:391.285280pt;}
.y1f8{bottom:391.433333pt;}
.y7a{bottom:392.864480pt;}
.y106{bottom:393.836800pt;}
.y11c{bottom:394.040000pt;}
.y150{bottom:394.080000pt;}
.y1a2{bottom:396.009467pt;}
.y19{bottom:397.766667pt;}
.y21f{bottom:398.573440pt;}
.y200{bottom:399.560000pt;}
.y171{bottom:399.786667pt;}
.y135{bottom:400.618880pt;}
.y1e0{bottom:401.121387pt;}
.y2c{bottom:402.239867pt;}
.y1ef{bottom:402.966667pt;}
.yc1{bottom:403.102773pt;}
.yd0{bottom:403.913333pt;}
.y168{bottom:404.946667pt;}
.ya{bottom:405.853333pt;}
.y1ff{bottom:405.960000pt;}
.y1fe{bottom:406.293333pt;}
.y1fa{bottom:406.600000pt;}
.y20d{bottom:407.293333pt;}
.y11d{bottom:407.506667pt;}
.y145{bottom:407.780000pt;}
.yf9{bottom:415.006667pt;}
.y105{bottom:415.183643pt;}
.y58{bottom:415.953333pt;}
.y239{bottom:416.019147pt;}
.y6a{bottom:422.333733pt;}
.y41{bottom:422.980373pt;}
.y3e{bottom:424.110933pt;}
.y64{bottom:424.459680pt;}
.y72{bottom:428.700000pt;}
.y21e{bottom:429.301760pt;}
.y1f7{bottom:429.833333pt;}
.y134{bottom:432.629440pt;}
.y1af{bottom:432.673333pt;}
.yc0{bottom:435.113333pt;}
.y1ee{bottom:436.086667pt;}
.yc9{bottom:437.339867pt;}
.y66{bottom:438.566667pt;}
.y1b7{bottom:440.413200pt;}
.y1d4{bottom:441.288907pt;}
.y187{bottom:441.716267pt;}
.y155{bottom:442.946667pt;}
.y2{bottom:443.537387pt;}
.y163{bottom:443.946667pt;}
.y238{bottom:444.172587pt;}
.y1fd{bottom:444.693333pt;}
.y1f9{bottom:445.000000pt;}
.y18{bottom:445.126667pt;}
.y172{bottom:445.203333pt;}
.y79{bottom:446.622240pt;}
.y16c{bottom:449.613333pt;}
.y29{bottom:449.853200pt;}
.y1df{bottom:450.405547pt;}
.y1a1{bottom:451.139867pt;}
.y9{bottom:451.933333pt;}
.y11b{bottom:454.073333pt;}
.y40{bottom:454.990933pt;}
.y20c{bottom:459.773333pt;}
.y21d{bottom:460.030080pt;}
.y90{bottom:461.000000pt;}
.y167{bottom:462.546667pt;}
.y144{bottom:463.940000pt;}
.y133{bottom:464.640000pt;}
.yc8{bottom:466.139867pt;}
.y71{bottom:467.100000pt;}
.y60{bottom:469.612160pt;}
.y10f{bottom:472.109067pt;}
.y237{bottom:472.326027pt;}
.ycf{bottom:473.473333pt;}
.y179{bottom:474.706667pt;}
.y199{bottom:475.360000pt;}
.y19b{bottom:475.526667pt;}
.y118{bottom:475.706667pt;}
.ye0{bottom:479.000640pt;}
.y11a{bottom:482.873333pt;}
.y161{bottom:482.946667pt;}
.y8c{bottom:485.213333pt;}
.y1d2{bottom:485.918800pt;}
.y2b{bottom:486.802640pt;}
.y28{bottom:487.933200pt;}
.y8{bottom:490.333333pt;}
.y21c{bottom:490.758400pt;}
.y65{bottom:491.121600pt;}
.y1d3{bottom:495.046667pt;}
.y17{bottom:497.606667pt;}
.y1de{bottom:499.689707pt;}
.y78{bottom:500.380000pt;}
.y236{bottom:500.479467pt;}
.yb8{bottom:501.393333pt;}
.ydf{bottom:504.600480pt;}
.y70{bottom:505.500000pt;}
.y20b{bottom:505.853333pt;}
.ybd{bottom:507.520000pt;}
.y1{bottom:507.526667pt;}
.y186{bottom:508.386507pt;}
.y119{bottom:511.673333pt;}
.y191{bottom:515.506000pt;}
.y1f6{bottom:517.926667pt;}
.y1ad{bottom:518.026667pt;}
.yd8{bottom:518.280000pt;}
.y2a{bottom:518.813200pt;}
.y166{bottom:520.146667pt;}
.y180{bottom:520.486667pt;}
.y21b{bottom:521.486720pt;}
.y62{bottom:523.786667pt;}
.y160{bottom:524.751680pt;}
.y1d1{bottom:524.798800pt;}
.y235{bottom:528.632907pt;}
.yb7{bottom:530.193333pt;}
.yde{bottom:530.200320pt;}
.ybc{bottom:530.400000pt;}
.ye1{bottom:530.902560pt;}
.y3d{bottom:532.986667pt;}
.y1dd{bottom:540.026667pt;}
.y16{bottom:543.686667pt;}
.y230{bottom:546.746667pt;}
.y190{bottom:547.306667pt;}
.y21a{bottom:552.215040pt;}
.y20a{bottom:553.213333pt;}
.y126{bottom:555.113333pt;}
.ydd{bottom:555.800160pt;}
.y234{bottom:556.786347pt;}
.y8f{bottom:559.333333pt;}
.y92{bottom:559.348000pt;}
.y4d{bottom:560.880000pt;}
.y1d0{bottom:563.678800pt;}
.y14c{bottom:564.379867pt;}
.y22f{bottom:565.946667pt;}
.y143{bottom:568.026667pt;}
.ybb{bottom:568.800000pt;}
.y129{bottom:573.193333pt;}
.y162{bottom:573.946667pt;}
.y154{bottom:574.280000pt;}
.y185{bottom:575.886667pt;}
.y24{bottom:578.320000pt;}
.y7{bottom:580.986667pt;}
.ydc{bottom:581.400000pt;}
.y219{bottom:582.943360pt;}
.y233{bottom:584.939787pt;}
.y22e{bottom:585.146667pt;}
.y165{bottom:585.540000pt;}
.y114{bottom:585.600000pt;}
.y117{bottom:587.223333pt;}
.y15{bottom:591.046667pt;}
.y93{bottom:592.666667pt;}
.y12d{bottom:592.946667pt;}
.y1f5{bottom:595.813333pt;}
.y18c{bottom:599.086667pt;}
.y1dc{bottom:599.669440pt;}
.y34{bottom:603.653333pt;}
.y22d{bottom:604.346667pt;}
.yba{bottom:607.200000pt;}
.yd6{bottom:610.159867pt;}
.y54{bottom:610.880000pt;}
.y27{bottom:611.153333pt;}
.y232{bottom:613.093227pt;}
.y14f{bottom:613.280000pt;}
.y218{bottom:613.671680pt;}
.y116{bottom:616.023333pt;}
.y4c{bottom:618.480000pt;}
.y36{bottom:618.653333pt;}
.y13b{bottom:618.833333pt;}
.y1ea{bottom:621.213333pt;}
.y1ed{bottom:621.260000pt;}
.y14b{bottom:621.980000pt;}
.y131{bottom:622.581440pt;}
.y113{bottom:624.000000pt;}
.y23{bottom:626.320000pt;}
.y83{bottom:628.320000pt;}
.y69{bottom:629.402773pt;}
.y1db{bottom:631.680000pt;}
.y51{bottom:634.069440pt;}
.y231{bottom:641.246667pt;}
.y217{bottom:644.400000pt;}
.yb9{bottom:645.600000pt;}
.y6{bottom:649.340000pt;}
.y13c{bottom:658.080000pt;}
.y1e8{bottom:661.373333pt;}
.y99{bottom:663.360000pt;}
.y53{bottom:668.480000pt;}
.y12f{bottom:670.113333pt;}
.y14e{bottom:670.880000pt;}
.y130{bottom:673.760000pt;}
.y68{bottom:674.213333pt;}
.y182{bottom:674.760000pt;}
.y82{bottom:676.320000pt;}
.y153{bottom:676.913333pt;}
.y216{bottom:678.153333pt;}
.y50{bottom:678.880000pt;}
.y14{bottom:678.980000pt;}
.yb6{bottom:684.000000pt;}
.y128{bottom:685.280000pt;}
.y1e7{bottom:690.173333pt;}
.h2c{height:27.660000pt;}
.h1c{height:44.906062pt;}
.h2d{height:48.616250pt;}
.h12{height:50.062500pt;}
.h4d{height:51.216000pt;}
.h32{height:53.405562pt;}
.h2f{height:53.424475pt;}
.h30{height:53.425587pt;}
.h23{height:55.252869pt;}
.h13{height:55.402500pt;}
.h34{height:60.727125pt;}
.h37{height:60.742828pt;}
.h2b{height:61.972925pt;}
.h1e{height:62.367420pt;}
.h53{height:64.500000pt;}
.h35{height:64.533900pt;}
.h36{height:66.071667pt;}
.h26{height:66.750000pt;}
.h4b{height:66.755333pt;}
.h4c{height:66.883333pt;}
.h42{height:68.288000pt;}
.h25{height:71.981872pt;}
.h1d{height:76.088305pt;}
.h1b{height:76.090550pt;}
.h14{height:78.097500pt;}
.h9{height:79.896960pt;}
.h31{height:80.137269pt;}
.h46{height:85.236969pt;}
.h22{height:85.437219pt;}
.h2e{height:88.685163pt;}
.h15{height:88.777500pt;}
.h1f{height:90.224862pt;}
.h27{height:90.823040pt;}
.h4f{height:94.218750pt;}
.h3{height:100.125000pt;}
.h45{height:101.218587pt;}
.h21{height:102.319963pt;}
.hb{height:102.432000pt;}
.h50{height:104.896875pt;}
.h24{height:107.972808pt;}
.h11{height:109.472000pt;}
.h3a{height:111.403125pt;}
.h7{height:111.472500pt;}
.h28{height:111.514740pt;}
.h3f{height:112.805833pt;}
.h3d{height:114.040960pt;}
.h29{height:119.458333pt;}
.h3b{height:127.659375pt;}
.ha{height:129.000000pt;}
.h5{height:133.500000pt;}
.h3c{height:136.576000pt;}
.h20{height:140.166667pt;}
.h43{height:145.088000pt;}
.h41{height:145.687500pt;}
.h2{height:155.527500pt;}
.h19{height:155.551287pt;}
.h8{height:155.551820pt;}
.h4a{height:165.934080pt;}
.h4{height:166.875000pt;}
.h4e{height:167.709375pt;}
.h47{height:169.528320pt;}
.h18{height:178.222500pt;}
.h49{height:193.222400pt;}
.h6{height:200.250000pt;}
.h48{height:203.521920pt;}
.h39{height:204.864000pt;}
.hc{height:212.165427pt;}
.hd{height:214.653000pt;}
.h1{height:222.277500pt;}
.he{height:233.713033pt;}
.h3e{height:244.972500pt;}
.h2a{height:247.666667pt;}
.h10{height:258.032500pt;}
.hf{height:259.312500pt;}
.h38{height:267.000000pt;}
.h16{height:287.100000pt;}
.h51{height:288.842667pt;}
.h52{height:291.591040pt;}
.h1a{height:299.000000pt;}
.h44{height:310.334667pt;}
.h17{height:328.860833pt;}
.h40{height:333.750000pt;}
.h33{height:501.500000pt;}
.h0{height:720.000000pt;}
.w6{width:115.212000pt;}
.w4{width:115.254667pt;}
.w3{width:308.500000pt;}
.w5{width:316.832000pt;}
.w8{width:412.017333pt;}
.w2{width:448.833333pt;}
.w1{width:453.666667pt;}
.w7{width:864.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x64{left:5.766667pt;}
.x45{left:7.486800pt;}
.x7{left:9.600000pt;}
.x1d{left:10.600000pt;}
.x95{left:11.600000pt;}
.x13{left:13.266667pt;}
.xd2{left:14.310000pt;}
.x93{left:18.766667pt;}
.x35{left:20.933333pt;}
.x14{left:23.500000pt;}
.x4b{left:26.750000pt;}
.x3{left:28.433333pt;}
.x2c{left:29.346667pt;}
.x9b{left:30.933333pt;}
.x5a{left:32.052000pt;}
.x11{left:35.933333pt;}
.xc0{left:38.433333pt;}
.xd{left:39.333333pt;}
.x1f{left:41.266667pt;}
.xb6{left:42.433333pt;}
.x5{left:44.266667pt;}
.xa{left:45.612480pt;}
.x3c{left:47.930132pt;}
.x63{left:51.100000pt;}
.xc1{left:53.580000pt;}
.x8{left:57.600000pt;}
.x4{left:58.766667pt;}
.x87{left:63.063333pt;}
.x5d{left:64.286800pt;}
.x2f{left:66.266667pt;}
.x3b{left:67.372267pt;}
.x79{left:69.600000pt;}
.x62{left:72.711733pt;}
.xca{left:73.766667pt;}
.xd0{left:78.433333pt;}
.x6{left:80.266667pt;}
.x94{left:81.600000pt;}
.x22{left:84.493333pt;}
.xe1{left:87.680000pt;}
.x8a{left:88.945333pt;}
.x9d{left:91.300000pt;}
.x2e{left:92.266667pt;}
.x89{left:96.433333pt;}
.xb7{left:98.473333pt;}
.x43{left:102.830015pt;}
.x20{left:103.760000pt;}
.x9{left:105.600000pt;}
.x78{left:111.600000pt;}
.xd1{left:116.682613pt;}
.xc8{left:118.390667pt;}
.x9e{left:119.325280pt;}
.x4c{left:121.280000pt;}
.x99{left:124.111307pt;}
.x48{left:125.555600pt;}
.x57{left:126.766667pt;}
.x59{left:128.829867pt;}
.xc7{left:133.286667pt;}
.x5c{left:134.976800pt;}
.xa2{left:136.706773pt;}
.x4a{left:142.110000pt;}
.x6b{left:143.123200pt;}
.x61{left:144.143200pt;}
.x5f{left:146.319333pt;}
.x23{left:147.650000pt;}
.xa0{left:150.600000pt;}
.x49{left:155.257067pt;}
.xd6{left:158.490000pt;}
.x46{left:160.902633pt;}
.x42{left:162.625635pt;}
.x9f{left:166.260000pt;}
.x1{left:169.793333pt;}
.x56{left:172.100000pt;}
.x67{left:174.687733pt;}
.x8e{left:176.933333pt;}
.x6f{left:183.440000pt;}
.xb8{left:192.697333pt;}
.x7c{left:193.720000pt;}
.xdb{left:194.766667pt;}
.x69{left:195.885467pt;}
.x47{left:197.476935pt;}
.x4d{left:202.343333pt;}
.x4e{left:205.703333pt;}
.x2d{left:207.570667pt;}
.xa3{left:222.270000pt;}
.x41{left:232.499068pt;}
.x52{left:233.670027pt;}
.x51{left:235.006027pt;}
.x2{left:237.672053pt;}
.x4f{left:238.666667pt;}
.x50{left:242.166987pt;}
.x15{left:250.333200pt;}
.xa1{left:253.970000pt;}
.xc{left:255.100000pt;}
.xb9{left:258.361333pt;}
.xcb{left:259.260533pt;}
.x1c{left:261.433333pt;}
.xa4{left:264.648667pt;}
.xb5{left:267.933333pt;}
.x98{left:270.266667pt;}
.x6d{left:273.353333pt;}
.xcc{left:281.668373pt;}
.xc2{left:293.692667pt;}
.x40{left:298.485047pt;}
.xe2{left:299.433333pt;}
.x75{left:304.790000pt;}
.x91{left:307.266667pt;}
.x66{left:311.621867pt;}
.x5b{left:312.900000pt;}
.xd3{left:315.433333pt;}
.x19{left:317.666667pt;}
.x6e{left:321.353333pt;}
.xa5{left:326.152667pt;}
.x76{left:330.766667pt;}
.x54{left:338.333333pt;}
.x39{left:345.933333pt;}
.x53{left:349.833333pt;}
.xcd{left:352.168000pt;}
.x38{left:353.433333pt;}
.xe{left:356.166667pt;}
.x3f{left:359.584000pt;}
.x37{left:368.600000pt;}
.xdc{left:383.766667pt;}
.x31{left:385.424000pt;}
.x29{left:386.893333pt;}
.x33{left:389.100000pt;}
.xa6{left:391.160667pt;}
.x8f{left:392.433333pt;}
.x73{left:393.623333pt;}
.x55{left:395.844133pt;}
.x3d{left:398.552133pt;}
.x9a{left:414.933333pt;}
.x3e{left:419.581200pt;}
.x8d{left:420.933333pt;}
.x77{left:438.080000pt;}
.x30{left:442.880000pt;}
.x7f{left:449.433333pt;}
.xa7{left:452.488667pt;}
.xc3{left:455.266667pt;}
.xba{left:458.041333pt;}
.x9c{left:464.987333pt;}
.x28{left:469.433333pt;}
.x3a{left:472.500000pt;}
.x36{left:474.433333pt;}
.x32{left:476.144000pt;}
.x16{left:477.157200pt;}
.x6a{left:478.882397pt;}
.x44{left:480.000000pt;}
.xb3{left:482.432000pt;}
.x1a{left:484.000000pt;}
.x88{left:489.600000pt;}
.x7e{left:512.433333pt;}
.x72{left:513.746667pt;}
.x96{left:521.100000pt;}
.xc6{left:522.100000pt;}
.xbb{left:525.865333pt;}
.x7d{left:526.766667pt;}
.x7b{left:530.933333pt;}
.x5e{left:533.000000pt;}
.x58{left:534.939360pt;}
.xd4{left:538.766667pt;}
.xf{left:545.166667pt;}
.x71{left:547.658667pt;}
.x2b{left:550.100000pt;}
.x70{left:551.186667pt;}
.x7a{left:553.433333pt;}
.x86{left:557.600000pt;}
.xab{left:561.055467pt;}
.x80{left:567.056667pt;}
.x85{left:569.210000pt;}
.x83{left:570.931067pt;}
.x60{left:584.077333pt;}
.xac{left:586.655307pt;}
.xda{left:590.600000pt;}
.xbc{left:592.201333pt;}
.x24{left:598.100000pt;}
.xa9{left:600.593333pt;}
.xc9{left:601.600000pt;}
.xdd{left:602.933333pt;}
.xc5{left:603.970667pt;}
.xdf{left:604.933333pt;}
.xd8{left:610.039013pt;}
.x1e{left:611.480000pt;}
.x8c{left:614.933333pt;}
.xa8{left:616.260000pt;}
.x74{left:625.600000pt;}
.xc4{left:627.490667pt;}
.x18{left:633.157200pt;}
.x90{left:634.933333pt;}
.x12{left:636.266667pt;}
.x81{left:637.303547pt;}
.xb{left:640.766667pt;}
.x65{left:648.433333pt;}
.x84{left:653.976827pt;}
.xaa{left:655.316667pt;}
.xae{left:657.840000pt;}
.xbd{left:660.217333pt;}
.x27{left:662.606533pt;}
.xd9{left:667.647333pt;}
.x26{left:671.255173pt;}
.xad{left:676.796667pt;}
.xcf{left:678.840000pt;}
.x25{left:686.100133pt;}
.x92{left:687.933333pt;}
.x8b{left:693.769333pt;}
.x2a{left:695.155333pt;}
.x34{left:699.433333pt;}
.x21{left:701.933333pt;}
.x17{left:703.813200pt;}
.x10{left:707.833333pt;}
.xaf{left:714.656000pt;}
.x82{left:725.639867pt;}
.xb4{left:727.433333pt;}
.xbf{left:735.713600pt;}
.xd5{left:739.100133pt;}
.xd7{left:750.026667pt;}
.xb0{left:775.984000pt;}
.xe0{left:786.433333pt;}
.x1b{left:794.666533pt;}
.x68{left:796.384000pt;}
.xde{left:818.600000pt;}
.x97{left:828.266800pt;}
.x6c{left:835.375333pt;}
.xb1{left:841.168000pt;}
.xce{left:854.503333pt;}
.xbe{left:861.353333pt;}
.xb2{left:902.480000pt;}
}




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