
    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_43cc0f1cc0734b0e9b5ac1ac.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_4a36cce32f72153f3afc37ea.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_2e3fd5067fb2e022f1167415.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_c84cf2ce5fdb67f1531b7319.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3438f532874cff95b430d1c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b7de9e42970f8d66aab93766.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_1ae62ef1372ab5aabe3d0428.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_c68822a159f66bb8790138af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_0f4852f8784f7999d92b1042.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a46a695656ed693862ad3b35.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9ea89751daae0b99b71d0cf4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_fff742755e0b4780caa1a09d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2be4e104326806a3f44a9805.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.110840;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_d341f19f84d74180f3f44248.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_db1f04d8622343504155ffc7.woff2')format("woff");}.fff{font-family:fff;line-height:0.960938;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_85213dfef58427c918e13117.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_79f32a2f85cb9e155557aafd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b2968fcc1942aa2ebffc990d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2964da498cd4237e8fb68140.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f7324f52a9e9892aad4dc758.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_afb8e4a6585d8b163872ab17.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8f41fd3beb252b57a3390b21.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_6a82509ceca17c536c20efad.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a3437bec4d0a578b7a95a528.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_3314ef46d9b6cd519678201d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_7a67cbc5d811f92064976602.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a14349073864cd97599b17cc.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.989258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_531ccdca7548afd859c397f6.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.886719;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_74e2cb3d195106c0a0983ecc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.770508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_01ed9df3a6d64b427b754415.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_822c42cac16aee440eac8ea5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_27983cd770d41cc3cb13e5e7.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_da79348817d4b03d464e0762.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_f569f492827361b98794a35d.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.675781;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:ff23;src:url('chunks/assets/font_7ae62098d8633aac6e824966.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_5f210f6a0ac9d0e0b028f3dc.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938477;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;}
.m1{transform:matrix(0.236705,0.000000,-0.080442,0.236705,0,0);-ms-transform:matrix(0.236705,0.000000,-0.080442,0.236705,0,0);-webkit-transform:matrix(0.236705,0.000000,-0.080442,0.236705,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);}
.v6{vertical-align:-72.000000px;}
.v2{vertical-align:-12.960000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.440000px;}
.v3{vertical-align:12.960000px;}
.v7{vertical-align:14.400000px;}
.v4{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls65{letter-spacing:-0.483840px;}
.ls81{letter-spacing:-0.447552px;}
.ls2a{letter-spacing:-0.441504px;}
.lsa3{letter-spacing:-0.424512px;}
.ls74{letter-spacing:-0.423360px;}
.ls3d{letter-spacing:-0.411264px;}
.ls86{letter-spacing:-0.399168px;}
.ls98{letter-spacing:-0.368928px;}
.ls28{letter-spacing:-0.356832px;}
.ls85{letter-spacing:-0.350784px;}
.ls4f{letter-spacing:-0.347328px;}
.ls29{letter-spacing:-0.344736px;}
.ls9d{letter-spacing:-0.338549px;}
.ls82{letter-spacing:-0.337680px;}
.ls41{letter-spacing:-0.332640px;}
.ls7{letter-spacing:-0.328032px;}
.ls73{letter-spacing:-0.326592px;}
.ls9b{letter-spacing:-0.325773px;}
.ls51{letter-spacing:-0.320544px;}
.ls54{letter-spacing:-0.314496px;}
.ls2c{letter-spacing:-0.308448px;}
.ls40{letter-spacing:-0.302400px;}
.ls67{letter-spacing:-0.300222px;}
.ls87{letter-spacing:-0.296352px;}
.lse{letter-spacing:-0.290304px;}
.ls6d{letter-spacing:-0.289440px;}
.ls32{letter-spacing:-0.284256px;}
.ls9e{letter-spacing:-0.281059px;}
.lsa2{letter-spacing:-0.279792px;}
.ls3e{letter-spacing:-0.278208px;}
.ls99{letter-spacing:-0.274672px;}
.ls6b{letter-spacing:-0.272160px;}
.ls52{letter-spacing:-0.270144px;}
.lsf{letter-spacing:-0.266112px;}
.ls7c{letter-spacing:-0.260496px;}
.ls30{letter-spacing:-0.260064px;}
.ls6c{letter-spacing:-0.254016px;}
.ls50{letter-spacing:-0.250848px;}
.ls2b{letter-spacing:-0.247968px;}
.ls3b{letter-spacing:-0.235872px;}
.ls2f{letter-spacing:-0.229824px;}
.ls3c{letter-spacing:-0.223776px;}
.ls6e{letter-spacing:-0.221904px;}
.ls1c{letter-spacing:-0.218592px;}
.ls1b{letter-spacing:-0.211968px;}
.ls75{letter-spacing:-0.211680px;}
.ls33{letter-spacing:-0.199584px;}
.lsa6{letter-spacing:-0.198720px;}
.ls31{letter-spacing:-0.193536px;}
.ls88{letter-spacing:-0.192960px;}
.ls59{letter-spacing:-0.187488px;}
.ls72{letter-spacing:-0.181440px;}
.ls2d{letter-spacing:-0.175392px;}
.ls15{letter-spacing:-0.172224px;}
.ls9c{letter-spacing:-0.169344px;}
.ls17{letter-spacing:-0.165600px;}
.ls34{letter-spacing:-0.163296px;}
.ls18{letter-spacing:-0.158976px;}
.ls3f{letter-spacing:-0.157248px;}
.ls53{letter-spacing:-0.151200px;}
.ls9a{letter-spacing:-0.140530px;}
.ls1a{letter-spacing:-0.139104px;}
.ls2e{letter-spacing:-0.133056px;}
.ls16{letter-spacing:-0.132480px;}
.ls19{letter-spacing:-0.125856px;}
.lsa7{letter-spacing:-0.119232px;}
.lsa5{letter-spacing:-0.079488px;}
.ls8{letter-spacing:-0.036000px;}
.ls3a{letter-spacing:-0.032400px;}
.ls21{letter-spacing:-0.028800px;}
.ls20{letter-spacing:-0.021600px;}
.ls4{letter-spacing:-0.007200px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.007200px;}
.ls49{letter-spacing:0.010800px;}
.ls1{letter-spacing:0.014400px;}
.lsd{letter-spacing:0.017280px;}
.ls14{letter-spacing:0.021600px;}
.ls23{letter-spacing:0.028800px;}
.ls66{letter-spacing:0.031104px;}
.ls10{letter-spacing:0.032400px;}
.ls3{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.043200px;}
.ls8c{letter-spacing:0.054000px;}
.ls61{letter-spacing:0.057600px;}
.ls69{letter-spacing:0.066816px;}
.ls62{letter-spacing:0.072000px;}
.ls5b{letter-spacing:0.086400px;}
.ls5c{letter-spacing:0.092160px;}
.ls7f{letter-spacing:0.110880px;}
.ls63{letter-spacing:0.116928px;}
.ls5e{letter-spacing:0.128160px;}
.ls68{letter-spacing:0.129456px;}
.ls83{letter-spacing:0.133920px;}
.ls60{letter-spacing:0.150336px;}
.ls6a{letter-spacing:0.171216px;}
.ls22{letter-spacing:0.185328px;}
.ls2{letter-spacing:0.191520px;}
.ls13{letter-spacing:0.228096px;}
.lsa{letter-spacing:0.247104px;}
.lsc{letter-spacing:0.261360px;}
.lsb{letter-spacing:0.270864px;}
.ls9{letter-spacing:0.280368px;}
.ls5d{letter-spacing:0.293760px;}
.ls6{letter-spacing:0.325584px;}
.ls5{letter-spacing:0.440496px;}
.ls89{letter-spacing:0.745920px;}
.ls24{letter-spacing:1.195200px;}
.ls5a{letter-spacing:1.344960px;}
.ls8f{letter-spacing:1.653120px;}
.ls38{letter-spacing:1.690560px;}
.ls4e{letter-spacing:1.748160px;}
.ls5f{letter-spacing:2.151360px;}
.ls79{letter-spacing:2.161440px;}
.ls47{letter-spacing:2.364480px;}
.ls25{letter-spacing:2.496960px;}
.ls39{letter-spacing:3.142080px;}
.ls42{letter-spacing:3.229920px;}
.ls4b{letter-spacing:3.327840px;}
.ls56{letter-spacing:3.744000px;}
.ls78{letter-spacing:3.866400px;}
.ls43{letter-spacing:3.893760px;}
.ls96{letter-spacing:4.173304px;}
.ls95{letter-spacing:4.188513px;}
.ls64{letter-spacing:4.340160px;}
.ls8d{letter-spacing:4.705920px;}
.ls8b{letter-spacing:5.103360px;}
.ls58{letter-spacing:5.276160px;}
.ls57{letter-spacing:5.279040px;}
.ls8a{letter-spacing:5.385600px;}
.ls7a{letter-spacing:5.434560px;}
.ls8e{letter-spacing:5.535360px;}
.ls6f{letter-spacing:6.312960px;}
.ls91{letter-spacing:7.058880px;}
.ls7d{letter-spacing:7.623360px;}
.ls76{letter-spacing:7.644960px;}
.ls77{letter-spacing:7.652160px;}
.ls84{letter-spacing:7.921440px;}
.ls26{letter-spacing:8.428320px;}
.ls7e{letter-spacing:8.458560px;}
.ls4d{letter-spacing:9.336960px;}
.ls97{letter-spacing:9.557232px;}
.ls36{letter-spacing:10.272960px;}
.ls35{letter-spacing:10.287360px;}
.ls90{letter-spacing:10.791360px;}
.ls37{letter-spacing:11.050560px;}
.ls45{letter-spacing:11.612160px;}
.ls80{letter-spacing:12.303360px;}
.ls46{letter-spacing:12.424320px;}
.ls55{letter-spacing:16.309440px;}
.ls44{letter-spacing:18.970560px;}
.ls7b{letter-spacing:20.653920px;}
.ls70{letter-spacing:31.802400px;}
.ls4c{letter-spacing:40.268160px;}
.lsa1{letter-spacing:54.866880px;}
.ls71{letter-spacing:55.180800px;}
.ls4a{letter-spacing:55.696320px;}
.lsa4{letter-spacing:59.227200px;}
.ls92{letter-spacing:59.545631px;}
.ls93{letter-spacing:59.547152px;}
.ls94{letter-spacing:59.548673px;}
.ls1f{letter-spacing:64.424160px;}
.ls1e{letter-spacing:65.525760px;}
.ls1d{letter-spacing:90.627840px;}
.ls9f{letter-spacing:177.420186px;}
.lsa0{letter-spacing:177.426270px;}
.ls27{letter-spacing:831.251520px;}
.ls48{letter-spacing:841.464000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-56.440944px;}
.ws48{word-spacing:-31.698000px;}
.ws27{word-spacing:-31.687200px;}
.ws8{word-spacing:-31.676400px;}
.wsc{word-spacing:-31.665600px;}
.ws2b{word-spacing:-31.654800px;}
.ws26{word-spacing:-31.611600px;}
.ws50{word-spacing:-28.268640px;}
.ws41{word-spacing:-28.046736px;}
.ws2e{word-spacing:-27.940608px;}
.ws2d{word-spacing:-27.921312px;}
.ws9{word-spacing:-22.579200px;}
.ws2{word-spacing:-22.572000px;}
.ws17{word-spacing:-22.564800px;}
.wsb{word-spacing:-22.543200px;}
.ws5{word-spacing:-22.536000px;}
.ws3{word-spacing:-22.528800px;}
.ws14{word-spacing:-22.514400px;}
.ws15{word-spacing:-22.507200px;}
.ws6{word-spacing:-22.500000px;}
.ws2f{word-spacing:-21.124800px;}
.ws2c{word-spacing:-21.074400px;}
.ws11{word-spacing:-20.607264px;}
.ws12{word-spacing:-20.594016px;}
.ws13{word-spacing:-20.560896px;}
.ws4a{word-spacing:-19.853005px;}
.ws49{word-spacing:-19.718863px;}
.ws4e{word-spacing:-19.712475px;}
.ws4b{word-spacing:-19.667761px;}
.ws4d{word-spacing:-19.654986px;}
.ws10{word-spacing:-19.282464px;}
.wsf{word-spacing:-19.249344px;}
.wse{word-spacing:-19.242720px;}
.wsd{word-spacing:-19.236096px;}
.ws1e{word-spacing:-18.930240px;}
.ws21{word-spacing:-18.797184px;}
.ws22{word-spacing:-18.791136px;}
.ws1d{word-spacing:-18.754848px;}
.ws25{word-spacing:-18.736704px;}
.ws23{word-spacing:-18.730656px;}
.ws44{word-spacing:-18.700416px;}
.ws33{word-spacing:-18.694368px;}
.ws1b{word-spacing:-18.682272px;}
.ws1f{word-spacing:-18.670176px;}
.ws7{word-spacing:-18.664128px;}
.ws24{word-spacing:-18.645984px;}
.ws20{word-spacing:-18.639936px;}
.ws1c{word-spacing:-18.621792px;}
.ws4c{word-spacing:-18.615744px;}
.ws43{word-spacing:-18.609696px;}
.ws2a{word-spacing:-18.585504px;}
.ws4f{word-spacing:-18.531072px;}
.ws47{word-spacing:-18.518976px;}
.ws1a{word-spacing:-18.488736px;}
.ws28{word-spacing:-17.720640px;}
.ws42{word-spacing:-17.490816px;}
.ws29{word-spacing:-17.418240px;}
.ws35{word-spacing:-17.400096px;}
.ws46{word-spacing:-17.394048px;}
.ws19{word-spacing:-17.375904px;}
.ws45{word-spacing:-17.369856px;}
.ws18{word-spacing:-17.363808px;}
.wsa{word-spacing:-15.101856px;}
.ws16{word-spacing:-15.059088px;}
.ws3a{word-spacing:-0.212976px;}
.ws3b{word-spacing:-0.192096px;}
.ws39{word-spacing:-0.171216px;}
.ws51{word-spacing:-0.072000px;}
.ws34{word-spacing:-0.069984px;}
.ws53{word-spacing:-0.066240px;}
.ws32{word-spacing:-0.060480px;}
.ws52{word-spacing:-0.024480px;}
.ws0{word-spacing:0.000000px;}
.ws36{word-spacing:0.169344px;}
.ws3e{word-spacing:0.193536px;}
.ws3d{word-spacing:0.211680px;}
.ws3c{word-spacing:0.229824px;}
.ws31{word-spacing:0.241920px;}
.ws40{word-spacing:11.822400px;}
.ws30{word-spacing:18.419040px;}
.ws37{word-spacing:19.754496px;}
.ws3f{word-spacing:19.768896px;}
.ws38{word-spacing:20.091744px;}
.ws1{word-spacing:702.960000px;}
._32{margin-left:-542.939472px;}
._2c{margin-left:-24.559200px;}
._1a{margin-left:-21.900960px;}
._17{margin-left:-20.416320px;}
._1e{margin-left:-19.130400px;}
._19{margin-left:-17.998560px;}
._23{margin-left:-16.781472px;}
._1c{margin-left:-15.118560px;}
._1d{margin-left:-13.764960px;}
._21{margin-left:-12.199680px;}
._16{margin-left:-10.879200px;}
._1b{margin-left:-9.444960px;}
._1f{margin-left:-8.292960px;}
._18{margin-left:-6.796800px;}
._2e{margin-left:-5.484096px;}
._15{margin-left:-4.266720px;}
._d{margin-left:-2.682720px;}
._a{margin-left:-1.149120px;}
._b{width:1.149120px;}
._22{width:2.740320px;}
._e{width:4.229280px;}
._20{width:5.796000px;}
._27{width:6.926400px;}
._12{width:8.712000px;}
._13{width:9.720000px;}
._24{width:11.167200px;}
._26{width:12.708000px;}
._2d{width:13.743360px;}
._29{width:14.938560px;}
._2a{width:15.964992px;}
._2b{width:17.083872px;}
._25{width:18.377280px;}
._2f{width:19.825344px;}
._31{width:21.530880px;}
._14{width:25.538400px;}
._11{width:26.575200px;}
._34{width:49.170240px;}
._33{width:56.609280px;}
._37{width:90.815328px;}
._36{width:91.976544px;}
._38{width:130.377600px;}
._35{width:168.194880px;}
._9{width:289.320000px;}
._8{width:329.580000px;}
._7{width:346.140000px;}
._5{width:352.860000px;}
._2{width:386.160000px;}
._3{width:442.860000px;}
._4{width:456.240000px;}
._0{width:462.900000px;}
._6{width:589.560000px;}
._1{width:599.640000px;}
._28{width:831.251520px;}
._c{width:841.464000px;}
._f{width:939.873888px;}
._30{width:1276.364160px;}
._10{width:1309.109760px;}
.fcd{color:rgb(0,82,116);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(17,27,31);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(76,76,76);}
.fca{color:rgb(51,51,51);}
.fc3{color:transparent;}
.fc8{color:rgb(34,34,34);}
.fc5{color:rgb(0,120,212);}
.fc6{color:rgb(241,136,73);}
.fc7{color:rgb(0,67,109);}
.fcc{color:rgb(28,29,30);}
.fc9{color:rgb(149,79,114);}
.fcb{color:rgb(0,106,204);}
.fs3{font-size:5.760000px;}
.fsf{font-size:24.480000px;}
.fsd{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:60.480000px;}
.fse{font-size:63.877107px;}
.fsa{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:96.480000px;}
.fs9{font-size:108.000000px;}
.fsb{font-size:119.520000px;}
.fs5{font-size:191.520000px;}
.fs4{font-size:204.480000px;}
.y46{bottom:-38.040000px;}
.y45{bottom:-22.200000px;}
.y44{bottom:-6.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:4.620000px;}
.yc2{bottom:4.800000px;}
.yc5{bottom:5.580000px;}
.y6a{bottom:5.880000px;}
.y63{bottom:6.060000px;}
.yc3{bottom:6.120000px;}
.y6e{bottom:6.240000px;}
.y57{bottom:6.360000px;}
.y61{bottom:6.420000px;}
.y55{bottom:6.720000px;}
.y5e{bottom:6.780000px;}
.y53{bottom:7.080000px;}
.y5c{bottom:7.140000px;}
.y51{bottom:7.440000px;}
.y5a{bottom:7.500000px;}
.y4e{bottom:7.560000px;}
.yc0{bottom:10.380000px;}
.y1cd{bottom:15.420000px;}
.y1d0{bottom:15.960000px;}
.y1d4{bottom:16.500000px;}
.y6c{bottom:17.040000px;}
.y1cb{bottom:21.180000px;}
.y1d1{bottom:24.960000px;}
.y1d5{bottom:25.500000px;}
.y6d{bottom:28.200000px;}
.y1c9{bottom:30.540000px;}
.y50{bottom:31.200000px;}
.y1cf{bottom:33.960000px;}
.y1d3{bottom:34.500000px;}
.y1ca{bottom:39.540000px;}
.y9{bottom:41.115000px;}
.y1cc{bottom:45.300000px;}
.y2a{bottom:49.500000px;}
.y48{bottom:56.280000px;}
.y29{bottom:57.000000px;}
.yb6{bottom:113.520000px;}
.y1aa{bottom:114.960000px;}
.y75{bottom:118.920000px;}
.y1e9{bottom:125.400000px;}
.y102{bottom:126.120000px;}
.y147{bottom:135.120000px;}
.y247{bottom:136.560000px;}
.y93{bottom:139.800000px;}
.y101{bottom:144.480000px;}
.yb5{bottom:146.280000px;}
.y74{bottom:154.560000px;}
.y1e8{bottom:157.080000px;}
.y1a9{bottom:161.040000px;}
.y100{bottom:162.480000px;}
.y146{bottom:165.360000px;}
.y159{bottom:166.080000px;}
.yb4{bottom:170.040000px;}
.y92{bottom:172.560000px;}
.yff{bottom:180.480000px;}
.y1c8{bottom:181.920000px;}
.y145{bottom:183.360000px;}
.y246{bottom:184.800000px;}
.y73{bottom:189.840000px;}
.y201{bottom:190.200000px;}
.y158{bottom:192.360000px;}
.y20e{bottom:195.600000px;}
.yfe{bottom:198.840000px;}
.y144{bottom:201.360000px;}
.y245{bottom:202.800000px;}
.yb3{bottom:203.160000px;}
.y1e7{bottom:205.320000px;}
.y91{bottom:205.680000px;}
.y1c7{bottom:214.680000px;}
.yfd{bottom:216.840000px;}
.y143{bottom:219.360000px;}
.y200{bottom:223.320000px;}
.y72{bottom:225.120000px;}
.yb2{bottom:226.920000px;}
.y20d{bottom:228.360000px;}
.y185{bottom:231.600000px;}
.y1c6{bottom:232.680000px;}
.yfc{bottom:237.720000px;}
.y1e6{bottom:238.080000px;}
.y90{bottom:238.440000px;}
.y142{bottom:240.600000px;}
.y1ff{bottom:241.320000px;}
.y21a{bottom:248.880000px;}
.y184{bottom:249.600000px;}
.y1c5{bottom:251.040000px;}
.y271{bottom:254.280000px;}
.y1e5{bottom:256.080000px;}
.y1fe{bottom:259.320000px;}
.yb1{bottom:260.040000px;}
.y71{bottom:260.760000px;}
.y20c{bottom:261.480000px;}
.y183{bottom:267.600000px;}
.y244{bottom:269.040000px;}
.yfb{bottom:269.760000px;}
.y141{bottom:271.200000px;}
.y8f{bottom:271.560000px;}
.y1c4{bottom:271.920000px;}
.y1e4{bottom:274.440000px;}
.y70{bottom:279.000000px;}
.y20b{bottom:279.480000px;}
.y1fd{bottom:280.560000px;}
.y219{bottom:282.000000px;}
.y270{bottom:285.240000px;}
.y182{bottom:285.960000px;}
.yfa{bottom:289.560000px;}
.y43{bottom:291.720000px;}
.y1e3{bottom:292.440000px;}
.yb0{bottom:292.800000px;}
.y28b{bottom:296.040000px;}
.y243{bottom:299.280000px;}
.y218{bottom:300.000000px;}
.y20a{bottom:300.720000px;}
.y181{bottom:303.960000px;}
.y8e{bottom:304.320000px;}
.y26f{bottom:307.200000px;}
.y1e2{bottom:310.440000px;}
.y6f{bottom:310.500000px;}
.y1fc{bottom:312.240000px;}
.yf9{bottom:315.480000px;}
.y42{bottom:315.840000px;}
.y242{bottom:317.280000px;}
.y217{bottom:318.360000px;}
.y28a{bottom:319.800000px;}
.y180{bottom:321.960000px;}
.y190{bottom:325.200000px;}
.yaf{bottom:325.560000px;}
.y26e{bottom:327.720000px;}
.y1e1{bottom:328.800000px;}
.y209{bottom:332.400000px;}
.ydd{bottom:333.120000px;}
.y241{bottom:335.280000px;}
.y140{bottom:336.000000px;}
.y8d{bottom:337.080000px;}
.y1fb{bottom:338.520000px;}
.y17f{bottom:340.320000px;}
.y6b{bottom:342.000000px;}
.y18f{bottom:345.360000px;}
.y1e0{bottom:346.800000px;}
.y216{bottom:347.160000px;}
.y41{bottom:348.600000px;}
.yae{bottom:349.680000px;}
.y1c3{bottom:350.760000px;}
.y289{bottom:352.920000px;}
.y17e{bottom:358.320000px;}
.y208{bottom:358.680000px;}
.y1df{bottom:364.800000px;}
.y240{bottom:365.520000px;}
.y8c{bottom:370.200000px;}
.ydc{bottom:370.560000px;}
.y18e{bottom:371.640000px;}
.y26d{bottom:372.000000px;}
.y1f8{bottom:372.360000px;}
.yad{bottom:373.440000px;}
.y215{bottom:375.960000px;}
.y17d{bottom:376.320000px;}
.y288{bottom:376.680000px;}
.y40{bottom:381.360000px;}
.y1de{bottom:383.160000px;}
.y23f{bottom:383.520000px;}
.y13f{bottom:383.880000px;}
.y8{bottom:384.960000px;}
.y1c2{bottom:390.720000px;}
.y26c{bottom:392.520000px;}
.y69{bottom:396.000000px;}
.y287{bottom:400.440000px;}
.y1dd{bottom:401.160000px;}
.y23e{bottom:401.520000px;}
.y8b{bottom:402.960000px;}
.y214{bottom:404.760000px;}
.y1f7{bottom:405.480000px;}
.yac{bottom:406.560000px;}
.y178{bottom:413.400000px;}
.y13e{bottom:414.120000px;}
.y3f{bottom:414.480000px;}
.y28{bottom:415.395000px;}
.y1dc{bottom:419.160000px;}
.y1c1{bottom:419.520000px;}
.y17c{bottom:421.320000px;}
.y1f6{bottom:423.480000px;}
.y286{bottom:424.560000px;}
.y17a{bottom:424.920000px;}
.y179{bottom:425.280000px;}
.yab{bottom:430.320000px;}
.y17b{bottom:430.680000px;}
.y23d{bottom:431.760000px;}
.y13d{bottom:432.120000px;}
.y26b{bottom:435.000000px;}
.y8a{bottom:436.080000px;}
.y1db{bottom:440.400000px;}
.y1f5{bottom:441.480000px;}
.y27{bottom:441.810000px;}
.y68{bottom:445.440000px;}
.y285{bottom:448.320000px;}
.y3e{bottom:449.040000px;}
.y23c{bottom:449.760000px;}
.y13c{bottom:450.120000px;}
.ydb{bottom:451.560000px;}
.y1b7{bottom:451.920000px;}
.y177{bottom:453.360000px;}
.yaa{bottom:454.080000px;}
.y26a{bottom:457.320000px;}
.y19c{bottom:467.400000px;}
.y23b{bottom:468.120000px;}
.y26{bottom:468.210000px;}
.y13b{bottom:468.480000px;}
.y89{bottom:468.840000px;}
.y1a8{bottom:470.280000px;}
.y176{bottom:471.360000px;}
.y1f4{bottom:471.720000px;}
.y1da{bottom:472.080000px;}
.y284{bottom:472.440000px;}
.y269{bottom:477.840000px;}
.yda{bottom:481.440000px;}
.y1b6{bottom:485.040000px;}
.y13a{bottom:486.480000px;}
.ya9{bottom:487.200000px;}
.y1a7{bottom:488.280000px;}
.y1f3{bottom:489.720000px;}
.y3d{bottom:490.080000px;}
.y67{bottom:490.440000px;}
.y1d9{bottom:491.880000px;}
.y121{bottom:496.560000px;}
.y23a{bottom:498.000000px;}
.y19b{bottom:498.720000px;}
.yd9{bottom:499.440000px;}
.y88{bottom:501.600000px;}
.y1b5{bottom:503.040000px;}
.y139{bottom:504.480000px;}
.y7{bottom:504.870000px;}
.y25{bottom:505.110000px;}
.y283{bottom:505.200000px;}
.y1a6{bottom:506.640000px;}
.y1f2{bottom:507.720000px;}
.y268{bottom:508.440000px;}
.ya8{bottom:510.960000px;}
.y173{bottom:511.680000px;}
.yf8{bottom:515.280000px;}
.y239{bottom:516.360000px;}
.yd8{bottom:517.800000px;}
.y1d8{bottom:518.160000px;}
.y1b4{bottom:521.040000px;}
.y138{bottom:522.840000px;}
.y175{bottom:523.560000px;}
.y174{bottom:523.920000px;}
.y1a5{bottom:524.640000px;}
.y1f1{bottom:526.080000px;}
.y282{bottom:528.960000px;}
.y120{bottom:529.680000px;}
.y19a{bottom:530.400000px;}
.y3c{bottom:530.760000px;}
.y87{bottom:534.720000px;}
.y66{bottom:535.080000px;}
.yd7{bottom:535.800000px;}
.y1b3{bottom:539.400000px;}
.y267{bottom:539.760000px;}
.y137{bottom:540.840000px;}
.y1a4{bottom:542.640000px;}
.y1f0{bottom:544.080000px;}
.y238{bottom:546.240000px;}
.yf7{bottom:548.400000px;}
.y172{bottom:552.000000px;}
.y157{bottom:553.800000px;}
.y136{bottom:558.840000px;}
.y1b2{bottom:560.280000px;}
.y1a3{bottom:560.640000px;}
.y199{bottom:561.720000px;}
.y1ef{bottom:562.080000px;}
.y11f{bottom:562.800000px;}
.y237{bottom:564.240000px;}
.yd6{bottom:566.040000px;}
.yf6{bottom:566.400000px;}
.y86{bottom:567.480000px;}
.ya7{bottom:567.840000px;}
.y24{bottom:570.090000px;}
.y171{bottom:570.360000px;}
.y3b{bottom:573.960000px;}
.y135{bottom:576.840000px;}
.y1a2{bottom:579.000000px;}
.y65{bottom:580.080000px;}
.y1ee{bottom:580.440000px;}
.y11e{bottom:580.800000px;}
.y266{bottom:581.160000px;}
.y236{bottom:582.600000px;}
.yd5{bottom:584.040000px;}
.yf5{bottom:584.400000px;}
.y23{bottom:586.290000px;}
.y156{bottom:586.920000px;}
.ya6{bottom:591.600000px;}
.y1b1{bottom:591.960000px;}
.y198{bottom:593.400000px;}
.y281{bottom:593.760000px;}
.y134{bottom:595.200000px;}
.y1a1{bottom:597.000000px;}
.y11d{bottom:598.800000px;}
.y170{bottom:600.240000px;}
.y85{bottom:600.600000px;}
.y1ed{bottom:601.320000px;}
.y265{bottom:601.680000px;}
.yd4{bottom:602.040000px;}
.yf4{bottom:602.400000px;}
.y22{bottom:602.490000px;}
.y155{bottom:604.920000px;}
.y1b0{bottom:612.120000px;}
.y235{bottom:612.480000px;}
.y133{bottom:615.000000px;}
.y16f{bottom:618.600000px;}
.y21{bottom:618.690000px;}
.yd3{bottom:620.400000px;}
.y64{bottom:622.200000px;}
.y264{bottom:622.560000px;}
.y154{bottom:622.920000px;}
.ya5{bottom:624.720000px;}
.y197{bottom:625.080000px;}
.y1a0{bottom:627.240000px;}
.y11c{bottom:629.040000px;}
.y234{bottom:630.840000px;}
.y3a{bottom:631.920000px;}
.yf3{bottom:632.640000px;}
.y1ec{bottom:633.000000px;}
.y84{bottom:633.360000px;}
.y20{bottom:634.890000px;}
.y16e{bottom:636.600000px;}
.yd2{bottom:638.400000px;}
.y153{bottom:641.280000px;}
.y280{bottom:642.000000px;}
.y263{bottom:643.080000px;}
.y132{bottom:644.880000px;}
.ya4{bottom:648.480000px;}
.y1f{bottom:651.090000px;}
.y62{bottom:652.500000px;}
.y1eb{bottom:653.160000px;}
.y19f{bottom:656.040000px;}
.y1c0{bottom:658.560000px;}
.y11b{bottom:658.920000px;}
.y152{bottom:659.280000px;}
.y233{bottom:660.720000px;}
.yf2{bottom:662.880000px;}
.y262{bottom:665.040000px;}
.y83{bottom:666.120000px;}
.y16d{bottom:666.840000px;}
.y1e{bottom:667.290000px;}
.yd1{bottom:668.280000px;}
.y1ea{bottom:672.960000px;}
.y196{bottom:674.760000px;}
.y19e{bottom:675.840000px;}
.y1bf{bottom:676.560000px;}
.y131{bottom:676.920000px;}
.y11a{bottom:677.280000px;}
.y223{bottom:679.080000px;}
.yf1{bottom:680.880000px;}
.ya3{bottom:681.240000px;}
.y1d{bottom:683.490000px;}
.y16c{bottom:684.840000px;}
.y261{bottom:685.920000px;}
.yd0{bottom:686.640000px;}
.y60{bottom:688.500000px;}
.y39{bottom:689.880000px;}
.y1be{bottom:694.560000px;}
.y119{bottom:695.280000px;}
.yf0{bottom:698.880000px;}
.y82{bottom:699.240000px;}
.y1c{bottom:699.690000px;}
.y19d{bottom:702.120000px;}
.y16b{bottom:702.840000px;}
.ycf{bottom:704.640000px;}
.ya2{bottom:705.360000px;}
.y27f{bottom:705.720000px;}
.y260{bottom:706.440000px;}
.y195{bottom:706.800000px;}
.y255{bottom:707.520000px;}
.y232{bottom:708.960000px;}
.y1bd{bottom:712.560000px;}
.y118{bottom:713.280000px;}
.y292{bottom:715.080000px;}
.y207{bottom:715.440000px;}
.y1b{bottom:715.890000px;}
.y151{bottom:716.520000px;}
.yef{bottom:717.240000px;}
.y130{bottom:721.920000px;}
.yce{bottom:722.640000px;}
.y16a{bottom:724.080000px;}
.y5f{bottom:724.500000px;}
.y231{bottom:727.320000px;}
.y27e{bottom:727.680000px;}
.y1bc{bottom:730.920000px;}
.y117{bottom:731.640000px;}
.y81{bottom:732.000000px;}
.y1a{bottom:732.090000px;}
.y1fa{bottom:733.440000px;}
.yee{bottom:735.240000px;}
.y222{bottom:735.600000px;}
.ya1{bottom:738.120000px;}
.y12f{bottom:739.920000px;}
.y254{bottom:743.160000px;}
.y150{bottom:747.120000px;}
.y206{bottom:747.480000px;}
.y25f{bottom:747.840000px;}
.y19{bottom:748.290000px;}
.y27d{bottom:748.560000px;}
.y1bb{bottom:748.920000px;}
.y116{bottom:749.640000px;}
.ycd{bottom:752.880000px;}
.yed{bottom:753.240000px;}
.y291{bottom:753.600000px;}
.y169{bottom:754.320000px;}
.y194{bottom:754.680000px;}
.y38{bottom:756.840000px;}
.y230{bottom:757.200000px;}
.y12e{bottom:758.280000px;}
.y5d{bottom:760.500000px;}
.ya0{bottom:762.240000px;}
.y167{bottom:764.040000px;}
.y166{bottom:764.400000px;}
.y18{bottom:764.490000px;}
.y80{bottom:765.120000px;}
.y1ba{bottom:766.920000px;}
.y115{bottom:767.640000px;}
.y221{bottom:768.720000px;}
.y27c{bottom:769.080000px;}
.ycc{bottom:770.880000px;}
.yec{bottom:771.240000px;}
.y205{bottom:773.760000px;}
.y22f{bottom:775.200000px;}
.y213{bottom:775.560000px;}
.y168{bottom:775.920000px;}
.y12d{bottom:776.280000px;}
.y253{bottom:778.440000px;}
.y18d{bottom:779.520000px;}
.y14f{bottom:780.240000px;}
.y17{bottom:780.690000px;}
.y6{bottom:781.920000px;}
.y114{bottom:785.640000px;}
.y9f{bottom:786.000000px;}
.y193{bottom:786.360000px;}
.y1b9{bottom:788.160000px;}
.ycb{bottom:789.240000px;}
.y27b{bottom:791.400000px;}
.y1f9{bottom:791.760000px;}
.y220{bottom:792.480000px;}
.y12c{bottom:794.280000px;}
.y5b{bottom:796.500000px;}
.y7f{bottom:797.880000px;}
.yeb{bottom:801.480000px;}
.y165{bottom:803.640000px;}
.y22e{bottom:805.440000px;}
.y5{bottom:806.175000px;}
.y192{bottom:806.520000px;}
.yca{bottom:807.240000px;}
.y25e{bottom:809.760000px;}
.y27a{bottom:811.920000px;}
.y18c{bottom:812.640000px;}
.y14e{bottom:813.000000px;}
.y16{bottom:813.090000px;}
.y252{bottom:814.080000px;}
.y113{bottom:815.880000px;}
.y37{bottom:817.680000px;}
.y9e{bottom:818.760000px;}
.y1b8{bottom:819.840000px;}
.y4{bottom:822.375000px;}
.y22d{bottom:823.440000px;}
.y12b{bottom:824.520000px;}
.yc9{bottom:825.240000px;}
.y21f{bottom:825.600000px;}
.y7e{bottom:830.640000px;}
.ybe{bottom:831.360000px;}
.yea{bottom:831.720000px;}
.y25d{bottom:832.080000px;}
.y59{bottom:832.500000px;}
.y191{bottom:832.800000px;}
.y212{bottom:833.520000px;}
.y164{bottom:833.880000px;}
.y3{bottom:838.575000px;}
.y22c{bottom:841.800000px;}
.y9d{bottom:842.880000px;}
.y21e{bottom:843.600000px;}
.y112{bottom:846.120000px;}
.y36{bottom:848.280000px;}
.y18b{bottom:848.640000px;}
.yc8{bottom:849.000000px;}
.y251{bottom:849.360000px;}
.ye9{bottom:849.720000px;}
.y163{bottom:851.880000px;}
.y25c{bottom:852.600000px;}
.y12a{bottom:854.760000px;}
.y290{bottom:859.440000px;}
.y14d{bottom:861.600000px;}
.y2{bottom:862.725000px;}
.y7d{bottom:863.760000px;}
.y111{bottom:864.120000px;}
.y18a{bottom:867.000000px;}
.ye8{bottom:867.720000px;}
.y58{bottom:870.000000px;}
.y22b{bottom:871.680000px;}
.y129{bottom:872.760000px;}
.y25b{bottom:873.480000px;}
.ybd{bottom:875.280000px;}
.y9c{bottom:875.640000px;}
.y35{bottom:878.880000px;}
.y14c{bottom:879.960000px;}
.y162{bottom:881.760000px;}
.y110{bottom:882.120000px;}
.y250{bottom:882.480000px;}
.y1{bottom:883.515000px;}
.y15{bottom:883.590000px;}
.ye7{bottom:886.080000px;}
.y189{bottom:887.880000px;}
.y22a{bottom:890.040000px;}
.y128{bottom:890.760000px;}
.yc7{bottom:893.640000px;}
.y7c{bottom:896.520000px;}
.y21d{bottom:897.960000px;}
.y9b{bottom:899.760000px;}
.y161{bottom:900.120000px;}
.y10f{bottom:900.480000px;}
.ye6{bottom:904.080000px;}
.y279{bottom:905.880000px;}
.y56{bottom:906.000000px;}
.y229{bottom:908.040000px;}
.y1d7{bottom:908.400000px;}
.y127{bottom:908.760000px;}
.y28f{bottom:909.480000px;}
.y34{bottom:909.840000px;}
.y14{bottom:910.005000px;}
.y24f{bottom:912.720000px;}
.y160{bottom:918.120000px;}
.y10e{bottom:918.480000px;}
.y188{bottom:919.920000px;}
.ybc{bottom:922.440000px;}
.y21c{bottom:927.840000px;}
.y228{bottom:928.920000px;}
.y7b{bottom:929.280000px;}
.y24e{bottom:930.720000px;}
.y28e{bottom:932.160000px;}
.y9a{bottom:932.520000px;}
.ye5{bottom:933.960000px;}
.y25a{bottom:935.760000px;}
.y15f{bottom:936.120000px;}
.y13{bottom:936.420000px;}
.y10d{bottom:936.480000px;}
.y126{bottom:937.920000px;}
.y33{bottom:940.440000px;}
.yc6{bottom:940.800000px;}
.y1d6{bottom:941.160000px;}
.y54{bottom:942.000000px;}
.y21b{bottom:946.200000px;}
.y24d{bottom:948.720000px;}
.y10c{bottom:954.480000px;}
.y278{bottom:955.560000px;}
.y99{bottom:956.280000px;}
.ybb{bottom:958.080000px;}
.y28d{bottom:960.960000px;}
.y7a{bottom:962.400000px;}
.y12{bottom:962.820000px;}
.ye4{bottom:964.200000px;}
.y227{bottom:964.920000px;}
.y1d2{bottom:967.500000px;}
.y187{bottom:967.800000px;}
.y14b{bottom:969.600000px;}
.yc4{bottom:970.500000px;}
.y32{bottom:971.040000px;}
.y15e{bottom:972.480000px;}
.y10b{bottom:972.840000px;}
.y277{bottom:974.280000px;}
.y1af{bottom:977.160000px;}
.y52{bottom:978.000000px;}
.y24c{bottom:978.960000px;}
.y98{bottom:980.400000px;}
.ye3{bottom:982.200000px;}
.y259{bottom:984.000000px;}
.y125{bottom:985.800000px;}
.y11{bottom:989.235000px;}
.y28c{bottom:990.120000px;}
.y14a{bottom:990.840000px;}
.y276{bottom:994.440000px;}
.y79{bottom:995.160000px;}
.y1ae{bottom:995.520000px;}
.y24b{bottom:996.960000px;}
.ye2{bottom:1000.560000px;}
.y186{bottom:1000.920000px;}
.y31{bottom:1002.000000px;}
.y10a{bottom:1002.720000px;}
.yba{bottom:1003.800000px;}
.y97{bottom:1004.160000px;}
.y258{bottom:1007.760000px;}
.y226{bottom:1012.800000px;}
.y1ad{bottom:1013.520000px;}
.y4f{bottom:1014.000000px;}
.y10{bottom:1015.650000px;}
.y1ce{bottom:1017.000000px;}
.ye1{bottom:1018.560000px;}
.y124{bottom:1018.920000px;}
.y149{bottom:1021.440000px;}
.y24a{bottom:1027.200000px;}
.y78{bottom:1028.280000px;}
.y225{bottom:1030.800000px;}
.y204{bottom:1031.520000px;}
.y30{bottom:1032.600000px;}
.y109{bottom:1032.960000px;}
.y275{bottom:1033.680000px;}
.yc1{bottom:1035.000000px;}
.ye0{bottom:1036.560000px;}
.y96{bottom:1036.920000px;}
.y257{bottom:1040.880000px;}
.yf{bottom:1042.050000px;}
.y4c{bottom:1043.760000px;}
.y249{bottom:1045.200000px;}
.yb9{bottom:1049.160000px;}
.y203{bottom:1049.880000px;}
.y15d{bottom:1050.600000px;}
.y108{bottom:1050.960000px;}
.y224{bottom:1052.040000px;}
.y274{bottom:1052.400000px;}
.y148{bottom:1054.200000px;}
.ydf{bottom:1054.920000px;}
.y123{bottom:1058.160000px;}
.y77{bottom:1061.040000px;}
.y1ac{bottom:1061.760000px;}
.y2f{bottom:1063.200000px;}
.ybf{bottom:1066.500000px;}
.y4b{bottom:1067.520000px;}
.ye{bottom:1068.465000px;}
.y15c{bottom:1068.960000px;}
.y107{bottom:1069.320000px;}
.y273{bottom:1071.480000px;}
.yde{bottom:1072.920000px;}
.y4d{bottom:1074.000000px;}
.y248{bottom:1075.440000px;}
.y256{bottom:1076.520000px;}
.y202{bottom:1078.680000px;}
.yb8{bottom:1081.920000px;}
.y211{bottom:1085.520000px;}
.y106{bottom:1087.320000px;}
.y15b{bottom:1089.840000px;}
.y1ab{bottom:1090.560000px;}
.y4a{bottom:1091.640000px;}
.y122{bottom:1093.440000px;}
.y76{bottom:1093.800000px;}
.y2e{bottom:1094.160000px;}
.yd{bottom:1094.880000px;}
.y95{bottom:1096.320000px;}
.y272{bottom:1100.640000px;}
.y210{bottom:1103.520000px;}
.y105{bottom:1105.320000px;}
.yb7{bottom:1114.680000px;}
.y15a{bottom:1121.520000px;}
.y104{bottom:1123.320000px;}
.y2d{bottom:1124.760000px;}
.y49{bottom:1129.440000px;}
.yc{bottom:1131.780000px;}
.y20f{bottom:1132.680000px;}
.y94{bottom:1138.800000px;}
.y103{bottom:1141.680000px;}
.y2c{bottom:1155.360000px;}
.yb{bottom:1164.180000px;}
.y47{bottom:1192.080000px;}
.ya{bottom:1225.605000px;}
.h7{height:4.320000px;}
.hc{height:15.000000px;}
.h5{height:28.500000px;}
.h20{height:28.832344px;}
.h1a{height:30.000000px;}
.h13{height:31.500000px;}
.h12{height:33.000000px;}
.hf{height:34.500000px;}
.hd{height:36.336094px;}
.h18{height:40.500000px;}
.h6{height:41.040000px;}
.h19{height:46.245938px;}
.h24{height:48.224531px;}
.h22{height:49.500000px;}
.h23{height:49.992188px;}
.h14{height:50.326875px;}
.h1e{height:51.139688px;}
.h15{height:54.000000px;}
.h1b{height:54.691875px;}
.h4{height:55.054688px;}
.h1f{height:57.763868px;}
.h10{height:58.500000px;}
.h11{height:60.816094px;}
.h21{height:61.500000px;}
.h2{height:62.578125px;}
.hb{height:72.360000px;}
.ha{height:73.773281px;}
.h3{height:75.093750px;}
.h1d{height:77.430937px;}
.h17{height:81.586406px;}
.he{height:82.582031px;}
.h16{height:89.640000px;}
.h9{height:146.445469px;}
.h8{height:153.360000px;}
.h1c{height:1236.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w14{width:76.500000px;}
.w10{width:90.000000px;}
.w15{width:99.000000px;}
.w13{width:102.000000px;}
.w11{width:103.500000px;}
.w12{width:112.500000px;}
.wf{width:115.500000px;}
.w9{width:126.000000px;}
.w7{width:132.000000px;}
.w8{width:133.500000px;}
.wb{width:145.500000px;}
.wa{width:147.000000px;}
.w5{width:240.000000px;}
.wc{width:336.000000px;}
.wd{width:337.500000px;}
.w6{width:436.500000px;}
.w4{width:510.000000px;}
.w3{width:630.000000px;}
.we{width:865.500000px;}
.w2{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:6.780000px;}
.x5b{left:9.884040px;}
.xd{left:11.100000px;}
.x26{left:14.550960px;}
.x66{left:16.977480px;}
.x61{left:18.098400px;}
.x5f{left:19.112640px;}
.xa{left:21.255000px;}
.x68{left:22.993200px;}
.x9{left:24.630000px;}
.xb{left:25.755000px;}
.x32{left:27.000000px;}
.x23{left:28.662000px;}
.x27{left:30.568800px;}
.x69{left:32.479080px;}
.x1d{left:34.406640px;}
.x25{left:37.904040px;}
.x6a{left:39.594840px;}
.x5e{left:41.066880px;}
.x62{left:44.698800px;}
.x24{left:51.663960px;}
.x21{left:53.392800px;}
.x2b{left:63.328800px;}
.x29{left:65.557800px;}
.x2a{left:66.742560px;}
.x28{left:72.848400px;}
.xe{left:106.200000px;}
.x1c{left:108.000000px;}
.x19{left:109.500000px;}
.x78{left:114.345000px;}
.x35{left:115.588800px;}
.x18{left:116.849880px;}
.x14{left:121.809600px;}
.x2c{left:127.575000px;}
.x30{left:133.200000px;}
.x2e{left:139.200120px;}
.x2d{left:148.575240px;}
.x36{left:158.519160px;}
.x31{left:160.200000px;}
.x7{left:163.965000px;}
.x54{left:169.950240px;}
.x71{left:172.843200px;}
.xf{left:174.037320px;}
.x7c{left:175.187880px;}
.x55{left:187.200000px;}
.x5a{left:190.074600px;}
.x39{left:198.789840px;}
.x13{left:202.305600px;}
.x3d{left:210.161160px;}
.x3e{left:217.082520px;}
.x5c{left:220.500000px;}
.x1e{left:238.500000px;}
.x79{left:248.874840px;}
.x4{left:251.505000px;}
.x3{left:271.260000px;}
.x48{left:285.118920px;}
.x12{left:295.200000px;}
.x6{left:297.720000px;}
.x5d{left:309.000000px;}
.x16{left:317.084760px;}
.x2{left:320.670000px;}
.x10{left:328.701240px;}
.x5{left:330.450000px;}
.x7b{left:332.721000px;}
.x4d{left:335.408760px;}
.x40{left:340.644600px;}
.x33{left:343.931040px;}
.x15{left:346.200120px;}
.x1b{left:352.500000px;}
.x17{left:358.500000px;}
.x46{left:367.432920px;}
.x1f{left:370.500000px;}
.x4b{left:373.924800px;}
.x11{left:379.308960px;}
.x47{left:380.499480px;}
.x8{left:398.250000px;}
.x60{left:411.000000px;}
.x49{left:417.240000px;}
.x73{left:419.364000px;}
.x1{left:423.630000px;}
.x50{left:442.519200px;}
.xc{left:446.400000px;}
.x42{left:448.380000px;}
.x4e{left:459.000000px;}
.x3f{left:460.159200px;}
.x4f{left:462.772800px;}
.x75{left:467.845200px;}
.x41{left:470.520000px;}
.x77{left:478.778400px;}
.x4a{left:483.609600px;}
.x20{left:496.500000px;}
.x63{left:499.500000px;}
.x37{left:504.036000px;}
.x43{left:520.200000px;}
.x34{left:521.870400px;}
.x51{left:530.391600px;}
.x38{left:546.015600px;}
.x3b{left:561.340800px;}
.x72{left:570.668400px;}
.x3c{left:574.408800px;}
.x4c{left:580.680000px;}
.x7a{left:585.000000px;}
.x64{left:610.500000px;}
.x67{left:612.000000px;}
.x44{left:635.587200px;}
.x22{left:642.000000px;}
.x57{left:664.740000px;}
.x6c{left:671.400000px;}
.x76{left:676.213200px;}
.x59{left:684.900000px;}
.x53{left:690.840000px;}
.x3a{left:700.020000px;}
.x6f{left:703.800000px;}
.x52{left:707.400000px;}
.x65{left:711.000000px;}
.x70{left:712.620000px;}
.x6d{left:714.960000px;}
.x45{left:716.457600px;}
.x6b{left:718.560000px;}
.x6e{left:722.520000px;}
.x74{left:738.554400px;}
.x2f{left:759.780000px;}
.x58{left:784.800000px;}
.x56{left:786.960000px;}
@media print{
.v6{vertical-align:-64.000000pt;}
.v2{vertical-align:-11.520000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.280000pt;}
.v3{vertical-align:11.520000pt;}
.v7{vertical-align:12.800000pt;}
.v4{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls65{letter-spacing:-0.430080pt;}
.ls81{letter-spacing:-0.397824pt;}
.ls2a{letter-spacing:-0.392448pt;}
.lsa3{letter-spacing:-0.377344pt;}
.ls74{letter-spacing:-0.376320pt;}
.ls3d{letter-spacing:-0.365568pt;}
.ls86{letter-spacing:-0.354816pt;}
.ls98{letter-spacing:-0.327936pt;}
.ls28{letter-spacing:-0.317184pt;}
.ls85{letter-spacing:-0.311808pt;}
.ls4f{letter-spacing:-0.308736pt;}
.ls29{letter-spacing:-0.306432pt;}
.ls9d{letter-spacing:-0.300932pt;}
.ls82{letter-spacing:-0.300160pt;}
.ls41{letter-spacing:-0.295680pt;}
.ls7{letter-spacing:-0.291584pt;}
.ls73{letter-spacing:-0.290304pt;}
.ls9b{letter-spacing:-0.289576pt;}
.ls51{letter-spacing:-0.284928pt;}
.ls54{letter-spacing:-0.279552pt;}
.ls2c{letter-spacing:-0.274176pt;}
.ls40{letter-spacing:-0.268800pt;}
.ls67{letter-spacing:-0.266864pt;}
.ls87{letter-spacing:-0.263424pt;}
.lse{letter-spacing:-0.258048pt;}
.ls6d{letter-spacing:-0.257280pt;}
.ls32{letter-spacing:-0.252672pt;}
.ls9e{letter-spacing:-0.249830pt;}
.lsa2{letter-spacing:-0.248704pt;}
.ls3e{letter-spacing:-0.247296pt;}
.ls99{letter-spacing:-0.244152pt;}
.ls6b{letter-spacing:-0.241920pt;}
.ls52{letter-spacing:-0.240128pt;}
.lsf{letter-spacing:-0.236544pt;}
.ls7c{letter-spacing:-0.231552pt;}
.ls30{letter-spacing:-0.231168pt;}
.ls6c{letter-spacing:-0.225792pt;}
.ls50{letter-spacing:-0.222976pt;}
.ls2b{letter-spacing:-0.220416pt;}
.ls3b{letter-spacing:-0.209664pt;}
.ls2f{letter-spacing:-0.204288pt;}
.ls3c{letter-spacing:-0.198912pt;}
.ls6e{letter-spacing:-0.197248pt;}
.ls1c{letter-spacing:-0.194304pt;}
.ls1b{letter-spacing:-0.188416pt;}
.ls75{letter-spacing:-0.188160pt;}
.ls33{letter-spacing:-0.177408pt;}
.lsa6{letter-spacing:-0.176640pt;}
.ls31{letter-spacing:-0.172032pt;}
.ls88{letter-spacing:-0.171520pt;}
.ls59{letter-spacing:-0.166656pt;}
.ls72{letter-spacing:-0.161280pt;}
.ls2d{letter-spacing:-0.155904pt;}
.ls15{letter-spacing:-0.153088pt;}
.ls9c{letter-spacing:-0.150528pt;}
.ls17{letter-spacing:-0.147200pt;}
.ls34{letter-spacing:-0.145152pt;}
.ls18{letter-spacing:-0.141312pt;}
.ls3f{letter-spacing:-0.139776pt;}
.ls53{letter-spacing:-0.134400pt;}
.ls9a{letter-spacing:-0.124915pt;}
.ls1a{letter-spacing:-0.123648pt;}
.ls2e{letter-spacing:-0.118272pt;}
.ls16{letter-spacing:-0.117760pt;}
.ls19{letter-spacing:-0.111872pt;}
.lsa7{letter-spacing:-0.105984pt;}
.lsa5{letter-spacing:-0.070656pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls3a{letter-spacing:-0.028800pt;}
.ls21{letter-spacing:-0.025600pt;}
.ls20{letter-spacing:-0.019200pt;}
.ls4{letter-spacing:-0.006400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.006400pt;}
.ls49{letter-spacing:0.009600pt;}
.ls1{letter-spacing:0.012800pt;}
.lsd{letter-spacing:0.015360pt;}
.ls14{letter-spacing:0.019200pt;}
.ls23{letter-spacing:0.025600pt;}
.ls66{letter-spacing:0.027648pt;}
.ls10{letter-spacing:0.028800pt;}
.ls3{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.038400pt;}
.ls8c{letter-spacing:0.048000pt;}
.ls61{letter-spacing:0.051200pt;}
.ls69{letter-spacing:0.059392pt;}
.ls62{letter-spacing:0.064000pt;}
.ls5b{letter-spacing:0.076800pt;}
.ls5c{letter-spacing:0.081920pt;}
.ls7f{letter-spacing:0.098560pt;}
.ls63{letter-spacing:0.103936pt;}
.ls5e{letter-spacing:0.113920pt;}
.ls68{letter-spacing:0.115072pt;}
.ls83{letter-spacing:0.119040pt;}
.ls60{letter-spacing:0.133632pt;}
.ls6a{letter-spacing:0.152192pt;}
.ls22{letter-spacing:0.164736pt;}
.ls2{letter-spacing:0.170240pt;}
.ls13{letter-spacing:0.202752pt;}
.lsa{letter-spacing:0.219648pt;}
.lsc{letter-spacing:0.232320pt;}
.lsb{letter-spacing:0.240768pt;}
.ls9{letter-spacing:0.249216pt;}
.ls5d{letter-spacing:0.261120pt;}
.ls6{letter-spacing:0.289408pt;}
.ls5{letter-spacing:0.391552pt;}
.ls89{letter-spacing:0.663040pt;}
.ls24{letter-spacing:1.062400pt;}
.ls5a{letter-spacing:1.195520pt;}
.ls8f{letter-spacing:1.469440pt;}
.ls38{letter-spacing:1.502720pt;}
.ls4e{letter-spacing:1.553920pt;}
.ls5f{letter-spacing:1.912320pt;}
.ls79{letter-spacing:1.921280pt;}
.ls47{letter-spacing:2.101760pt;}
.ls25{letter-spacing:2.219520pt;}
.ls39{letter-spacing:2.792960pt;}
.ls42{letter-spacing:2.871040pt;}
.ls4b{letter-spacing:2.958080pt;}
.ls56{letter-spacing:3.328000pt;}
.ls78{letter-spacing:3.436800pt;}
.ls43{letter-spacing:3.461120pt;}
.ls96{letter-spacing:3.709604pt;}
.ls95{letter-spacing:3.723123pt;}
.ls64{letter-spacing:3.857920pt;}
.ls8d{letter-spacing:4.183040pt;}
.ls8b{letter-spacing:4.536320pt;}
.ls58{letter-spacing:4.689920pt;}
.ls57{letter-spacing:4.692480pt;}
.ls8a{letter-spacing:4.787200pt;}
.ls7a{letter-spacing:4.830720pt;}
.ls8e{letter-spacing:4.920320pt;}
.ls6f{letter-spacing:5.611520pt;}
.ls91{letter-spacing:6.274560pt;}
.ls7d{letter-spacing:6.776320pt;}
.ls76{letter-spacing:6.795520pt;}
.ls77{letter-spacing:6.801920pt;}
.ls84{letter-spacing:7.041280pt;}
.ls26{letter-spacing:7.491840pt;}
.ls7e{letter-spacing:7.518720pt;}
.ls4d{letter-spacing:8.299520pt;}
.ls97{letter-spacing:8.495317pt;}
.ls36{letter-spacing:9.131520pt;}
.ls35{letter-spacing:9.144320pt;}
.ls90{letter-spacing:9.592320pt;}
.ls37{letter-spacing:9.822720pt;}
.ls45{letter-spacing:10.321920pt;}
.ls80{letter-spacing:10.936320pt;}
.ls46{letter-spacing:11.043840pt;}
.ls55{letter-spacing:14.497280pt;}
.ls44{letter-spacing:16.862720pt;}
.ls7b{letter-spacing:18.359040pt;}
.ls70{letter-spacing:28.268800pt;}
.ls4c{letter-spacing:35.793920pt;}
.lsa1{letter-spacing:48.770560pt;}
.ls71{letter-spacing:49.049600pt;}
.ls4a{letter-spacing:49.507840pt;}
.lsa4{letter-spacing:52.646400pt;}
.ls92{letter-spacing:52.929450pt;}
.ls93{letter-spacing:52.930802pt;}
.ls94{letter-spacing:52.932154pt;}
.ls1f{letter-spacing:57.265920pt;}
.ls1e{letter-spacing:58.245120pt;}
.ls1d{letter-spacing:80.558080pt;}
.ls9f{letter-spacing:157.706832pt;}
.lsa0{letter-spacing:157.712240pt;}
.ls27{letter-spacing:738.890240pt;}
.ls48{letter-spacing:747.968000pt;}
.ws4{word-spacing:-50.169728pt;}
.ws48{word-spacing:-28.176000pt;}
.ws27{word-spacing:-28.166400pt;}
.ws8{word-spacing:-28.156800pt;}
.wsc{word-spacing:-28.147200pt;}
.ws2b{word-spacing:-28.137600pt;}
.ws26{word-spacing:-28.099200pt;}
.ws50{word-spacing:-25.127680pt;}
.ws41{word-spacing:-24.930432pt;}
.ws2e{word-spacing:-24.836096pt;}
.ws2d{word-spacing:-24.818944pt;}
.ws9{word-spacing:-20.070400pt;}
.ws2{word-spacing:-20.064000pt;}
.ws17{word-spacing:-20.057600pt;}
.wsb{word-spacing:-20.038400pt;}
.ws5{word-spacing:-20.032000pt;}
.ws3{word-spacing:-20.025600pt;}
.ws14{word-spacing:-20.012800pt;}
.ws15{word-spacing:-20.006400pt;}
.ws6{word-spacing:-20.000000pt;}
.ws2f{word-spacing:-18.777600pt;}
.ws2c{word-spacing:-18.732800pt;}
.ws11{word-spacing:-18.317568pt;}
.ws12{word-spacing:-18.305792pt;}
.ws13{word-spacing:-18.276352pt;}
.ws4a{word-spacing:-17.647115pt;}
.ws49{word-spacing:-17.527878pt;}
.ws4e{word-spacing:-17.522200pt;}
.ws4b{word-spacing:-17.482454pt;}
.ws4d{word-spacing:-17.471099pt;}
.ws10{word-spacing:-17.139968pt;}
.wsf{word-spacing:-17.110528pt;}
.wse{word-spacing:-17.104640pt;}
.wsd{word-spacing:-17.098752pt;}
.ws1e{word-spacing:-16.826880pt;}
.ws21{word-spacing:-16.708608pt;}
.ws22{word-spacing:-16.703232pt;}
.ws1d{word-spacing:-16.670976pt;}
.ws25{word-spacing:-16.654848pt;}
.ws23{word-spacing:-16.649472pt;}
.ws44{word-spacing:-16.622592pt;}
.ws33{word-spacing:-16.617216pt;}
.ws1b{word-spacing:-16.606464pt;}
.ws1f{word-spacing:-16.595712pt;}
.ws7{word-spacing:-16.590336pt;}
.ws24{word-spacing:-16.574208pt;}
.ws20{word-spacing:-16.568832pt;}
.ws1c{word-spacing:-16.552704pt;}
.ws4c{word-spacing:-16.547328pt;}
.ws43{word-spacing:-16.541952pt;}
.ws2a{word-spacing:-16.520448pt;}
.ws4f{word-spacing:-16.472064pt;}
.ws47{word-spacing:-16.461312pt;}
.ws1a{word-spacing:-16.434432pt;}
.ws28{word-spacing:-15.751680pt;}
.ws42{word-spacing:-15.547392pt;}
.ws29{word-spacing:-15.482880pt;}
.ws35{word-spacing:-15.466752pt;}
.ws46{word-spacing:-15.461376pt;}
.ws19{word-spacing:-15.445248pt;}
.ws45{word-spacing:-15.439872pt;}
.ws18{word-spacing:-15.434496pt;}
.wsa{word-spacing:-13.423872pt;}
.ws16{word-spacing:-13.385856pt;}
.ws3a{word-spacing:-0.189312pt;}
.ws3b{word-spacing:-0.170752pt;}
.ws39{word-spacing:-0.152192pt;}
.ws51{word-spacing:-0.064000pt;}
.ws34{word-spacing:-0.062208pt;}
.ws53{word-spacing:-0.058880pt;}
.ws32{word-spacing:-0.053760pt;}
.ws52{word-spacing:-0.021760pt;}
.ws0{word-spacing:0.000000pt;}
.ws36{word-spacing:0.150528pt;}
.ws3e{word-spacing:0.172032pt;}
.ws3d{word-spacing:0.188160pt;}
.ws3c{word-spacing:0.204288pt;}
.ws31{word-spacing:0.215040pt;}
.ws40{word-spacing:10.508800pt;}
.ws30{word-spacing:16.372480pt;}
.ws37{word-spacing:17.559552pt;}
.ws3f{word-spacing:17.572352pt;}
.ws38{word-spacing:17.859328pt;}
.ws1{word-spacing:624.853333pt;}
._32{margin-left:-482.612864pt;}
._2c{margin-left:-21.830400pt;}
._1a{margin-left:-19.467520pt;}
._17{margin-left:-18.147840pt;}
._1e{margin-left:-17.004800pt;}
._19{margin-left:-15.998720pt;}
._23{margin-left:-14.916864pt;}
._1c{margin-left:-13.438720pt;}
._1d{margin-left:-12.235520pt;}
._21{margin-left:-10.844160pt;}
._16{margin-left:-9.670400pt;}
._1b{margin-left:-8.395520pt;}
._1f{margin-left:-7.371520pt;}
._18{margin-left:-6.041600pt;}
._2e{margin-left:-4.874752pt;}
._15{margin-left:-3.792640pt;}
._d{margin-left:-2.384640pt;}
._a{margin-left:-1.021440pt;}
._b{width:1.021440pt;}
._22{width:2.435840pt;}
._e{width:3.759360pt;}
._20{width:5.152000pt;}
._27{width:6.156800pt;}
._12{width:7.744000pt;}
._13{width:8.640000pt;}
._24{width:9.926400pt;}
._26{width:11.296000pt;}
._2d{width:12.216320pt;}
._29{width:13.278720pt;}
._2a{width:14.191104pt;}
._2b{width:15.185664pt;}
._25{width:16.335360pt;}
._2f{width:17.622528pt;}
._31{width:19.138560pt;}
._14{width:22.700800pt;}
._11{width:23.622400pt;}
._34{width:43.706880pt;}
._33{width:50.319360pt;}
._37{width:80.724736pt;}
._36{width:81.756928pt;}
._38{width:115.891200pt;}
._35{width:149.506560pt;}
._9{width:257.173333pt;}
._8{width:292.960000pt;}
._7{width:307.680000pt;}
._5{width:313.653333pt;}
._2{width:343.253333pt;}
._3{width:393.653333pt;}
._4{width:405.546667pt;}
._0{width:411.466667pt;}
._6{width:524.053333pt;}
._1{width:533.013333pt;}
._28{width:738.890240pt;}
._c{width:747.968000pt;}
._f{width:835.443456pt;}
._30{width:1134.545920pt;}
._10{width:1163.653120pt;}
.fs3{font-size:5.120000pt;}
.fsf{font-size:21.760000pt;}
.fsd{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:53.760000pt;}
.fse{font-size:56.779651pt;}
.fsa{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.760000pt;}
.fs9{font-size:96.000000pt;}
.fsb{font-size:106.240000pt;}
.fs5{font-size:170.240000pt;}
.fs4{font-size:181.760000pt;}
.y46{bottom:-33.813333pt;}
.y45{bottom:-19.733333pt;}
.y44{bottom:-5.333333pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:4.106667pt;}
.yc2{bottom:4.266667pt;}
.yc5{bottom:4.960000pt;}
.y6a{bottom:5.226667pt;}
.y63{bottom:5.386667pt;}
.yc3{bottom:5.440000pt;}
.y6e{bottom:5.546667pt;}
.y57{bottom:5.653333pt;}
.y61{bottom:5.706667pt;}
.y55{bottom:5.973333pt;}
.y5e{bottom:6.026667pt;}
.y53{bottom:6.293333pt;}
.y5c{bottom:6.346667pt;}
.y51{bottom:6.613333pt;}
.y5a{bottom:6.666667pt;}
.y4e{bottom:6.720000pt;}
.yc0{bottom:9.226667pt;}
.y1cd{bottom:13.706667pt;}
.y1d0{bottom:14.186667pt;}
.y1d4{bottom:14.666667pt;}
.y6c{bottom:15.146667pt;}
.y1cb{bottom:18.826667pt;}
.y1d1{bottom:22.186667pt;}
.y1d5{bottom:22.666667pt;}
.y6d{bottom:25.066667pt;}
.y1c9{bottom:27.146667pt;}
.y50{bottom:27.733333pt;}
.y1cf{bottom:30.186667pt;}
.y1d3{bottom:30.666667pt;}
.y1ca{bottom:35.146667pt;}
.y9{bottom:36.546667pt;}
.y1cc{bottom:40.266667pt;}
.y2a{bottom:44.000000pt;}
.y48{bottom:50.026667pt;}
.y29{bottom:50.666667pt;}
.yb6{bottom:100.906667pt;}
.y1aa{bottom:102.186667pt;}
.y75{bottom:105.706667pt;}
.y1e9{bottom:111.466667pt;}
.y102{bottom:112.106667pt;}
.y147{bottom:120.106667pt;}
.y247{bottom:121.386667pt;}
.y93{bottom:124.266667pt;}
.y101{bottom:128.426667pt;}
.yb5{bottom:130.026667pt;}
.y74{bottom:137.386667pt;}
.y1e8{bottom:139.626667pt;}
.y1a9{bottom:143.146667pt;}
.y100{bottom:144.426667pt;}
.y146{bottom:146.986667pt;}
.y159{bottom:147.626667pt;}
.yb4{bottom:151.146667pt;}
.y92{bottom:153.386667pt;}
.yff{bottom:160.426667pt;}
.y1c8{bottom:161.706667pt;}
.y145{bottom:162.986667pt;}
.y246{bottom:164.266667pt;}
.y73{bottom:168.746667pt;}
.y201{bottom:169.066667pt;}
.y158{bottom:170.986667pt;}
.y20e{bottom:173.866667pt;}
.yfe{bottom:176.746667pt;}
.y144{bottom:178.986667pt;}
.y245{bottom:180.266667pt;}
.yb3{bottom:180.586667pt;}
.y1e7{bottom:182.506667pt;}
.y91{bottom:182.826667pt;}
.y1c7{bottom:190.826667pt;}
.yfd{bottom:192.746667pt;}
.y143{bottom:194.986667pt;}
.y200{bottom:198.506667pt;}
.y72{bottom:200.106667pt;}
.yb2{bottom:201.706667pt;}
.y20d{bottom:202.986667pt;}
.y185{bottom:205.866667pt;}
.y1c6{bottom:206.826667pt;}
.yfc{bottom:211.306667pt;}
.y1e6{bottom:211.626667pt;}
.y90{bottom:211.946667pt;}
.y142{bottom:213.866667pt;}
.y1ff{bottom:214.506667pt;}
.y21a{bottom:221.226667pt;}
.y184{bottom:221.866667pt;}
.y1c5{bottom:223.146667pt;}
.y271{bottom:226.026667pt;}
.y1e5{bottom:227.626667pt;}
.y1fe{bottom:230.506667pt;}
.yb1{bottom:231.146667pt;}
.y71{bottom:231.786667pt;}
.y20c{bottom:232.426667pt;}
.y183{bottom:237.866667pt;}
.y244{bottom:239.146667pt;}
.yfb{bottom:239.786667pt;}
.y141{bottom:241.066667pt;}
.y8f{bottom:241.386667pt;}
.y1c4{bottom:241.706667pt;}
.y1e4{bottom:243.946667pt;}
.y70{bottom:248.000000pt;}
.y20b{bottom:248.426667pt;}
.y1fd{bottom:249.386667pt;}
.y219{bottom:250.666667pt;}
.y270{bottom:253.546667pt;}
.y182{bottom:254.186667pt;}
.yfa{bottom:257.386667pt;}
.y43{bottom:259.306667pt;}
.y1e3{bottom:259.946667pt;}
.yb0{bottom:260.266667pt;}
.y28b{bottom:263.146667pt;}
.y243{bottom:266.026667pt;}
.y218{bottom:266.666667pt;}
.y20a{bottom:267.306667pt;}
.y181{bottom:270.186667pt;}
.y8e{bottom:270.506667pt;}
.y26f{bottom:273.066667pt;}
.y1e2{bottom:275.946667pt;}
.y6f{bottom:276.000000pt;}
.y1fc{bottom:277.546667pt;}
.yf9{bottom:280.426667pt;}
.y42{bottom:280.746667pt;}
.y242{bottom:282.026667pt;}
.y217{bottom:282.986667pt;}
.y28a{bottom:284.266667pt;}
.y180{bottom:286.186667pt;}
.y190{bottom:289.066667pt;}
.yaf{bottom:289.386667pt;}
.y26e{bottom:291.306667pt;}
.y1e1{bottom:292.266667pt;}
.y209{bottom:295.466667pt;}
.ydd{bottom:296.106667pt;}
.y241{bottom:298.026667pt;}
.y140{bottom:298.666667pt;}
.y8d{bottom:299.626667pt;}
.y1fb{bottom:300.906667pt;}
.y17f{bottom:302.506667pt;}
.y6b{bottom:304.000000pt;}
.y18f{bottom:306.986667pt;}
.y1e0{bottom:308.266667pt;}
.y216{bottom:308.586667pt;}
.y41{bottom:309.866667pt;}
.yae{bottom:310.826667pt;}
.y1c3{bottom:311.786667pt;}
.y289{bottom:313.706667pt;}
.y17e{bottom:318.506667pt;}
.y208{bottom:318.826667pt;}
.y1df{bottom:324.266667pt;}
.y240{bottom:324.906667pt;}
.y8c{bottom:329.066667pt;}
.ydc{bottom:329.386667pt;}
.y18e{bottom:330.346667pt;}
.y26d{bottom:330.666667pt;}
.y1f8{bottom:330.986667pt;}
.yad{bottom:331.946667pt;}
.y215{bottom:334.186667pt;}
.y17d{bottom:334.506667pt;}
.y288{bottom:334.826667pt;}
.y40{bottom:338.986667pt;}
.y1de{bottom:340.586667pt;}
.y23f{bottom:340.906667pt;}
.y13f{bottom:341.226667pt;}
.y8{bottom:342.186667pt;}
.y1c2{bottom:347.306667pt;}
.y26c{bottom:348.906667pt;}
.y69{bottom:352.000000pt;}
.y287{bottom:355.946667pt;}
.y1dd{bottom:356.586667pt;}
.y23e{bottom:356.906667pt;}
.y8b{bottom:358.186667pt;}
.y214{bottom:359.786667pt;}
.y1f7{bottom:360.426667pt;}
.yac{bottom:361.386667pt;}
.y178{bottom:367.466667pt;}
.y13e{bottom:368.106667pt;}
.y3f{bottom:368.426667pt;}
.y28{bottom:369.240000pt;}
.y1dc{bottom:372.586667pt;}
.y1c1{bottom:372.906667pt;}
.y17c{bottom:374.506667pt;}
.y1f6{bottom:376.426667pt;}
.y286{bottom:377.386667pt;}
.y17a{bottom:377.706667pt;}
.y179{bottom:378.026667pt;}
.yab{bottom:382.506667pt;}
.y17b{bottom:382.826667pt;}
.y23d{bottom:383.786667pt;}
.y13d{bottom:384.106667pt;}
.y26b{bottom:386.666667pt;}
.y8a{bottom:387.626667pt;}
.y1db{bottom:391.466667pt;}
.y1f5{bottom:392.426667pt;}
.y27{bottom:392.720000pt;}
.y68{bottom:395.946667pt;}
.y285{bottom:398.506667pt;}
.y3e{bottom:399.146667pt;}
.y23c{bottom:399.786667pt;}
.y13c{bottom:400.106667pt;}
.ydb{bottom:401.386667pt;}
.y1b7{bottom:401.706667pt;}
.y177{bottom:402.986667pt;}
.yaa{bottom:403.626667pt;}
.y26a{bottom:406.506667pt;}
.y19c{bottom:415.466667pt;}
.y23b{bottom:416.106667pt;}
.y26{bottom:416.186667pt;}
.y13b{bottom:416.426667pt;}
.y89{bottom:416.746667pt;}
.y1a8{bottom:418.026667pt;}
.y176{bottom:418.986667pt;}
.y1f4{bottom:419.306667pt;}
.y1da{bottom:419.626667pt;}
.y284{bottom:419.946667pt;}
.y269{bottom:424.746667pt;}
.yda{bottom:427.946667pt;}
.y1b6{bottom:431.146667pt;}
.y13a{bottom:432.426667pt;}
.ya9{bottom:433.066667pt;}
.y1a7{bottom:434.026667pt;}
.y1f3{bottom:435.306667pt;}
.y3d{bottom:435.626667pt;}
.y67{bottom:435.946667pt;}
.y1d9{bottom:437.226667pt;}
.y121{bottom:441.386667pt;}
.y23a{bottom:442.666667pt;}
.y19b{bottom:443.306667pt;}
.yd9{bottom:443.946667pt;}
.y88{bottom:445.866667pt;}
.y1b5{bottom:447.146667pt;}
.y139{bottom:448.426667pt;}
.y7{bottom:448.773333pt;}
.y25{bottom:448.986667pt;}
.y283{bottom:449.066667pt;}
.y1a6{bottom:450.346667pt;}
.y1f2{bottom:451.306667pt;}
.y268{bottom:451.946667pt;}
.ya8{bottom:454.186667pt;}
.y173{bottom:454.826667pt;}
.yf8{bottom:458.026667pt;}
.y239{bottom:458.986667pt;}
.yd8{bottom:460.266667pt;}
.y1d8{bottom:460.586667pt;}
.y1b4{bottom:463.146667pt;}
.y138{bottom:464.746667pt;}
.y175{bottom:465.386667pt;}
.y174{bottom:465.706667pt;}
.y1a5{bottom:466.346667pt;}
.y1f1{bottom:467.626667pt;}
.y282{bottom:470.186667pt;}
.y120{bottom:470.826667pt;}
.y19a{bottom:471.466667pt;}
.y3c{bottom:471.786667pt;}
.y87{bottom:475.306667pt;}
.y66{bottom:475.626667pt;}
.yd7{bottom:476.266667pt;}
.y1b3{bottom:479.466667pt;}
.y267{bottom:479.786667pt;}
.y137{bottom:480.746667pt;}
.y1a4{bottom:482.346667pt;}
.y1f0{bottom:483.626667pt;}
.y238{bottom:485.546667pt;}
.yf7{bottom:487.466667pt;}
.y172{bottom:490.666667pt;}
.y157{bottom:492.266667pt;}
.y136{bottom:496.746667pt;}
.y1b2{bottom:498.026667pt;}
.y1a3{bottom:498.346667pt;}
.y199{bottom:499.306667pt;}
.y1ef{bottom:499.626667pt;}
.y11f{bottom:500.266667pt;}
.y237{bottom:501.546667pt;}
.yd6{bottom:503.146667pt;}
.yf6{bottom:503.466667pt;}
.y86{bottom:504.426667pt;}
.ya7{bottom:504.746667pt;}
.y24{bottom:506.746667pt;}
.y171{bottom:506.986667pt;}
.y3b{bottom:510.186667pt;}
.y135{bottom:512.746667pt;}
.y1a2{bottom:514.666667pt;}
.y65{bottom:515.626667pt;}
.y1ee{bottom:515.946667pt;}
.y11e{bottom:516.266667pt;}
.y266{bottom:516.586667pt;}
.y236{bottom:517.866667pt;}
.yd5{bottom:519.146667pt;}
.yf5{bottom:519.466667pt;}
.y23{bottom:521.146667pt;}
.y156{bottom:521.706667pt;}
.ya6{bottom:525.866667pt;}
.y1b1{bottom:526.186667pt;}
.y198{bottom:527.466667pt;}
.y281{bottom:527.786667pt;}
.y134{bottom:529.066667pt;}
.y1a1{bottom:530.666667pt;}
.y11d{bottom:532.266667pt;}
.y170{bottom:533.546667pt;}
.y85{bottom:533.866667pt;}
.y1ed{bottom:534.506667pt;}
.y265{bottom:534.826667pt;}
.yd4{bottom:535.146667pt;}
.yf4{bottom:535.466667pt;}
.y22{bottom:535.546667pt;}
.y155{bottom:537.706667pt;}
.y1b0{bottom:544.106667pt;}
.y235{bottom:544.426667pt;}
.y133{bottom:546.666667pt;}
.y16f{bottom:549.866667pt;}
.y21{bottom:549.946667pt;}
.yd3{bottom:551.466667pt;}
.y64{bottom:553.066667pt;}
.y264{bottom:553.386667pt;}
.y154{bottom:553.706667pt;}
.ya5{bottom:555.306667pt;}
.y197{bottom:555.626667pt;}
.y1a0{bottom:557.546667pt;}
.y11c{bottom:559.146667pt;}
.y234{bottom:560.746667pt;}
.y3a{bottom:561.706667pt;}
.yf3{bottom:562.346667pt;}
.y1ec{bottom:562.666667pt;}
.y84{bottom:562.986667pt;}
.y20{bottom:564.346667pt;}
.y16e{bottom:565.866667pt;}
.yd2{bottom:567.466667pt;}
.y153{bottom:570.026667pt;}
.y280{bottom:570.666667pt;}
.y263{bottom:571.626667pt;}
.y132{bottom:573.226667pt;}
.ya4{bottom:576.426667pt;}
.y1f{bottom:578.746667pt;}
.y62{bottom:580.000000pt;}
.y1eb{bottom:580.586667pt;}
.y19f{bottom:583.146667pt;}
.y1c0{bottom:585.386667pt;}
.y11b{bottom:585.706667pt;}
.y152{bottom:586.026667pt;}
.y233{bottom:587.306667pt;}
.yf2{bottom:589.226667pt;}
.y262{bottom:591.146667pt;}
.y83{bottom:592.106667pt;}
.y16d{bottom:592.746667pt;}
.y1e{bottom:593.146667pt;}
.yd1{bottom:594.026667pt;}
.y1ea{bottom:598.186667pt;}
.y196{bottom:599.786667pt;}
.y19e{bottom:600.746667pt;}
.y1bf{bottom:601.386667pt;}
.y131{bottom:601.706667pt;}
.y11a{bottom:602.026667pt;}
.y223{bottom:603.626667pt;}
.yf1{bottom:605.226667pt;}
.ya3{bottom:605.546667pt;}
.y1d{bottom:607.546667pt;}
.y16c{bottom:608.746667pt;}
.y261{bottom:609.706667pt;}
.yd0{bottom:610.346667pt;}
.y60{bottom:612.000000pt;}
.y39{bottom:613.226667pt;}
.y1be{bottom:617.386667pt;}
.y119{bottom:618.026667pt;}
.yf0{bottom:621.226667pt;}
.y82{bottom:621.546667pt;}
.y1c{bottom:621.946667pt;}
.y19d{bottom:624.106667pt;}
.y16b{bottom:624.746667pt;}
.ycf{bottom:626.346667pt;}
.ya2{bottom:626.986667pt;}
.y27f{bottom:627.306667pt;}
.y260{bottom:627.946667pt;}
.y195{bottom:628.266667pt;}
.y255{bottom:628.906667pt;}
.y232{bottom:630.186667pt;}
.y1bd{bottom:633.386667pt;}
.y118{bottom:634.026667pt;}
.y292{bottom:635.626667pt;}
.y207{bottom:635.946667pt;}
.y1b{bottom:636.346667pt;}
.y151{bottom:636.906667pt;}
.yef{bottom:637.546667pt;}
.y130{bottom:641.706667pt;}
.yce{bottom:642.346667pt;}
.y16a{bottom:643.626667pt;}
.y5f{bottom:644.000000pt;}
.y231{bottom:646.506667pt;}
.y27e{bottom:646.826667pt;}
.y1bc{bottom:649.706667pt;}
.y117{bottom:650.346667pt;}
.y81{bottom:650.666667pt;}
.y1a{bottom:650.746667pt;}
.y1fa{bottom:651.946667pt;}
.yee{bottom:653.546667pt;}
.y222{bottom:653.866667pt;}
.ya1{bottom:656.106667pt;}
.y12f{bottom:657.706667pt;}
.y254{bottom:660.586667pt;}
.y150{bottom:664.106667pt;}
.y206{bottom:664.426667pt;}
.y25f{bottom:664.746667pt;}
.y19{bottom:665.146667pt;}
.y27d{bottom:665.386667pt;}
.y1bb{bottom:665.706667pt;}
.y116{bottom:666.346667pt;}
.ycd{bottom:669.226667pt;}
.yed{bottom:669.546667pt;}
.y291{bottom:669.866667pt;}
.y169{bottom:670.506667pt;}
.y194{bottom:670.826667pt;}
.y38{bottom:672.746667pt;}
.y230{bottom:673.066667pt;}
.y12e{bottom:674.026667pt;}
.y5d{bottom:676.000000pt;}
.ya0{bottom:677.546667pt;}
.y167{bottom:679.146667pt;}
.y166{bottom:679.466667pt;}
.y18{bottom:679.546667pt;}
.y80{bottom:680.106667pt;}
.y1ba{bottom:681.706667pt;}
.y115{bottom:682.346667pt;}
.y221{bottom:683.306667pt;}
.y27c{bottom:683.626667pt;}
.ycc{bottom:685.226667pt;}
.yec{bottom:685.546667pt;}
.y205{bottom:687.786667pt;}
.y22f{bottom:689.066667pt;}
.y213{bottom:689.386667pt;}
.y168{bottom:689.706667pt;}
.y12d{bottom:690.026667pt;}
.y253{bottom:691.946667pt;}
.y18d{bottom:692.906667pt;}
.y14f{bottom:693.546667pt;}
.y17{bottom:693.946667pt;}
.y6{bottom:695.040000pt;}
.y114{bottom:698.346667pt;}
.y9f{bottom:698.666667pt;}
.y193{bottom:698.986667pt;}
.y1b9{bottom:700.586667pt;}
.ycb{bottom:701.546667pt;}
.y27b{bottom:703.466667pt;}
.y1f9{bottom:703.786667pt;}
.y220{bottom:704.426667pt;}
.y12c{bottom:706.026667pt;}
.y5b{bottom:708.000000pt;}
.y7f{bottom:709.226667pt;}
.yeb{bottom:712.426667pt;}
.y165{bottom:714.346667pt;}
.y22e{bottom:715.946667pt;}
.y5{bottom:716.600000pt;}
.y192{bottom:716.906667pt;}
.yca{bottom:717.546667pt;}
.y25e{bottom:719.786667pt;}
.y27a{bottom:721.706667pt;}
.y18c{bottom:722.346667pt;}
.y14e{bottom:722.666667pt;}
.y16{bottom:722.746667pt;}
.y252{bottom:723.626667pt;}
.y113{bottom:725.226667pt;}
.y37{bottom:726.826667pt;}
.y9e{bottom:727.786667pt;}
.y1b8{bottom:728.746667pt;}
.y4{bottom:731.000000pt;}
.y22d{bottom:731.946667pt;}
.y12b{bottom:732.906667pt;}
.yc9{bottom:733.546667pt;}
.y21f{bottom:733.866667pt;}
.y7e{bottom:738.346667pt;}
.ybe{bottom:738.986667pt;}
.yea{bottom:739.306667pt;}
.y25d{bottom:739.626667pt;}
.y59{bottom:740.000000pt;}
.y191{bottom:740.266667pt;}
.y212{bottom:740.906667pt;}
.y164{bottom:741.226667pt;}
.y3{bottom:745.400000pt;}
.y22c{bottom:748.266667pt;}
.y9d{bottom:749.226667pt;}
.y21e{bottom:749.866667pt;}
.y112{bottom:752.106667pt;}
.y36{bottom:754.026667pt;}
.y18b{bottom:754.346667pt;}
.yc8{bottom:754.666667pt;}
.y251{bottom:754.986667pt;}
.ye9{bottom:755.306667pt;}
.y163{bottom:757.226667pt;}
.y25c{bottom:757.866667pt;}
.y12a{bottom:759.786667pt;}
.y290{bottom:763.946667pt;}
.y14d{bottom:765.866667pt;}
.y2{bottom:766.866667pt;}
.y7d{bottom:767.786667pt;}
.y111{bottom:768.106667pt;}
.y18a{bottom:770.666667pt;}
.ye8{bottom:771.306667pt;}
.y58{bottom:773.333333pt;}
.y22b{bottom:774.826667pt;}
.y129{bottom:775.786667pt;}
.y25b{bottom:776.426667pt;}
.ybd{bottom:778.026667pt;}
.y9c{bottom:778.346667pt;}
.y35{bottom:781.226667pt;}
.y14c{bottom:782.186667pt;}
.y162{bottom:783.786667pt;}
.y110{bottom:784.106667pt;}
.y250{bottom:784.426667pt;}
.y1{bottom:785.346667pt;}
.y15{bottom:785.413333pt;}
.ye7{bottom:787.626667pt;}
.y189{bottom:789.226667pt;}
.y22a{bottom:791.146667pt;}
.y128{bottom:791.786667pt;}
.yc7{bottom:794.346667pt;}
.y7c{bottom:796.906667pt;}
.y21d{bottom:798.186667pt;}
.y9b{bottom:799.786667pt;}
.y161{bottom:800.106667pt;}
.y10f{bottom:800.426667pt;}
.ye6{bottom:803.626667pt;}
.y279{bottom:805.226667pt;}
.y56{bottom:805.333333pt;}
.y229{bottom:807.146667pt;}
.y1d7{bottom:807.466667pt;}
.y127{bottom:807.786667pt;}
.y28f{bottom:808.426667pt;}
.y34{bottom:808.746667pt;}
.y14{bottom:808.893333pt;}
.y24f{bottom:811.306667pt;}
.y160{bottom:816.106667pt;}
.y10e{bottom:816.426667pt;}
.y188{bottom:817.706667pt;}
.ybc{bottom:819.946667pt;}
.y21c{bottom:824.746667pt;}
.y228{bottom:825.706667pt;}
.y7b{bottom:826.026667pt;}
.y24e{bottom:827.306667pt;}
.y28e{bottom:828.586667pt;}
.y9a{bottom:828.906667pt;}
.ye5{bottom:830.186667pt;}
.y25a{bottom:831.786667pt;}
.y15f{bottom:832.106667pt;}
.y13{bottom:832.373333pt;}
.y10d{bottom:832.426667pt;}
.y126{bottom:833.706667pt;}
.y33{bottom:835.946667pt;}
.yc6{bottom:836.266667pt;}
.y1d6{bottom:836.586667pt;}
.y54{bottom:837.333333pt;}
.y21b{bottom:841.066667pt;}
.y24d{bottom:843.306667pt;}
.y10c{bottom:848.426667pt;}
.y278{bottom:849.386667pt;}
.y99{bottom:850.026667pt;}
.ybb{bottom:851.626667pt;}
.y28d{bottom:854.186667pt;}
.y7a{bottom:855.466667pt;}
.y12{bottom:855.840000pt;}
.ye4{bottom:857.066667pt;}
.y227{bottom:857.706667pt;}
.y1d2{bottom:860.000000pt;}
.y187{bottom:860.266667pt;}
.y14b{bottom:861.866667pt;}
.yc4{bottom:862.666667pt;}
.y32{bottom:863.146667pt;}
.y15e{bottom:864.426667pt;}
.y10b{bottom:864.746667pt;}
.y277{bottom:866.026667pt;}
.y1af{bottom:868.586667pt;}
.y52{bottom:869.333333pt;}
.y24c{bottom:870.186667pt;}
.y98{bottom:871.466667pt;}
.ye3{bottom:873.066667pt;}
.y259{bottom:874.666667pt;}
.y125{bottom:876.266667pt;}
.y11{bottom:879.320000pt;}
.y28c{bottom:880.106667pt;}
.y14a{bottom:880.746667pt;}
.y276{bottom:883.946667pt;}
.y79{bottom:884.586667pt;}
.y1ae{bottom:884.906667pt;}
.y24b{bottom:886.186667pt;}
.ye2{bottom:889.386667pt;}
.y186{bottom:889.706667pt;}
.y31{bottom:890.666667pt;}
.y10a{bottom:891.306667pt;}
.yba{bottom:892.266667pt;}
.y97{bottom:892.586667pt;}
.y258{bottom:895.786667pt;}
.y226{bottom:900.266667pt;}
.y1ad{bottom:900.906667pt;}
.y4f{bottom:901.333333pt;}
.y10{bottom:902.800000pt;}
.y1ce{bottom:904.000000pt;}
.ye1{bottom:905.386667pt;}
.y124{bottom:905.706667pt;}
.y149{bottom:907.946667pt;}
.y24a{bottom:913.066667pt;}
.y78{bottom:914.026667pt;}
.y225{bottom:916.266667pt;}
.y204{bottom:916.906667pt;}
.y30{bottom:917.866667pt;}
.y109{bottom:918.186667pt;}
.y275{bottom:918.826667pt;}
.yc1{bottom:920.000000pt;}
.ye0{bottom:921.386667pt;}
.y96{bottom:921.706667pt;}
.y257{bottom:925.226667pt;}
.yf{bottom:926.266667pt;}
.y4c{bottom:927.786667pt;}
.y249{bottom:929.066667pt;}
.yb9{bottom:932.586667pt;}
.y203{bottom:933.226667pt;}
.y15d{bottom:933.866667pt;}
.y108{bottom:934.186667pt;}
.y224{bottom:935.146667pt;}
.y274{bottom:935.466667pt;}
.y148{bottom:937.066667pt;}
.ydf{bottom:937.706667pt;}
.y123{bottom:940.586667pt;}
.y77{bottom:943.146667pt;}
.y1ac{bottom:943.786667pt;}
.y2f{bottom:945.066667pt;}
.ybf{bottom:948.000000pt;}
.y4b{bottom:948.906667pt;}
.ye{bottom:949.746667pt;}
.y15c{bottom:950.186667pt;}
.y107{bottom:950.506667pt;}
.y273{bottom:952.426667pt;}
.yde{bottom:953.706667pt;}
.y4d{bottom:954.666667pt;}
.y248{bottom:955.946667pt;}
.y256{bottom:956.906667pt;}
.y202{bottom:958.826667pt;}
.yb8{bottom:961.706667pt;}
.y211{bottom:964.906667pt;}
.y106{bottom:966.506667pt;}
.y15b{bottom:968.746667pt;}
.y1ab{bottom:969.386667pt;}
.y4a{bottom:970.346667pt;}
.y122{bottom:971.946667pt;}
.y76{bottom:972.266667pt;}
.y2e{bottom:972.586667pt;}
.yd{bottom:973.226667pt;}
.y95{bottom:974.506667pt;}
.y272{bottom:978.346667pt;}
.y210{bottom:980.906667pt;}
.y105{bottom:982.506667pt;}
.yb7{bottom:990.826667pt;}
.y15a{bottom:996.906667pt;}
.y104{bottom:998.506667pt;}
.y2d{bottom:999.786667pt;}
.y49{bottom:1003.946667pt;}
.yc{bottom:1006.026667pt;}
.y20f{bottom:1006.826667pt;}
.y94{bottom:1012.266667pt;}
.y103{bottom:1014.826667pt;}
.y2c{bottom:1026.986667pt;}
.yb{bottom:1034.826667pt;}
.y47{bottom:1059.626667pt;}
.ya{bottom:1089.426667pt;}
.h7{height:3.840000pt;}
.hc{height:13.333333pt;}
.h5{height:25.333333pt;}
.h20{height:25.628750pt;}
.h1a{height:26.666667pt;}
.h13{height:28.000000pt;}
.h12{height:29.333333pt;}
.hf{height:30.666667pt;}
.hd{height:32.298750pt;}
.h18{height:36.000000pt;}
.h6{height:36.480000pt;}
.h19{height:41.107500pt;}
.h24{height:42.866250pt;}
.h22{height:44.000000pt;}
.h23{height:44.437500pt;}
.h14{height:44.735000pt;}
.h1e{height:45.457500pt;}
.h15{height:48.000000pt;}
.h1b{height:48.615000pt;}
.h4{height:48.937500pt;}
.h1f{height:51.345661pt;}
.h10{height:52.000000pt;}
.h11{height:54.058750pt;}
.h21{height:54.666667pt;}
.h2{height:55.625000pt;}
.hb{height:64.320000pt;}
.ha{height:65.576250pt;}
.h3{height:66.750000pt;}
.h1d{height:68.827500pt;}
.h17{height:72.521250pt;}
.he{height:73.406250pt;}
.h16{height:79.680000pt;}
.h9{height:130.173750pt;}
.h8{height:136.320000pt;}
.h1c{height:1098.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w14{width:68.000000pt;}
.w10{width:80.000000pt;}
.w15{width:88.000000pt;}
.w13{width:90.666667pt;}
.w11{width:92.000000pt;}
.w12{width:100.000000pt;}
.wf{width:102.666667pt;}
.w9{width:112.000000pt;}
.w7{width:117.333333pt;}
.w8{width:118.666667pt;}
.wb{width:129.333333pt;}
.wa{width:130.666667pt;}
.w5{width:213.333333pt;}
.wc{width:298.666667pt;}
.wd{width:300.000000pt;}
.w6{width:388.000000pt;}
.w4{width:453.333333pt;}
.w3{width:560.000000pt;}
.we{width:769.333333pt;}
.w2{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.026667pt;}
.x5b{left:8.785813pt;}
.xd{left:9.866667pt;}
.x26{left:12.934187pt;}
.x66{left:15.091093pt;}
.x61{left:16.087467pt;}
.x5f{left:16.989013pt;}
.xa{left:18.893333pt;}
.x68{left:20.438400pt;}
.x9{left:21.893333pt;}
.xb{left:22.893333pt;}
.x32{left:24.000000pt;}
.x23{left:25.477333pt;}
.x27{left:27.172267pt;}
.x69{left:28.870293pt;}
.x1d{left:30.583680pt;}
.x25{left:33.692480pt;}
.x6a{left:35.195413pt;}
.x5e{left:36.503893pt;}
.x62{left:39.732267pt;}
.x24{left:45.923520pt;}
.x21{left:47.460267pt;}
.x2b{left:56.292267pt;}
.x29{left:58.273600pt;}
.x2a{left:59.326720pt;}
.x28{left:64.754133pt;}
.xe{left:94.400000pt;}
.x1c{left:96.000000pt;}
.x19{left:97.333333pt;}
.x78{left:101.640000pt;}
.x35{left:102.745600pt;}
.x18{left:103.866560pt;}
.x14{left:108.275200pt;}
.x2c{left:113.400000pt;}
.x30{left:118.400000pt;}
.x2e{left:123.733440pt;}
.x2d{left:132.066880pt;}
.x36{left:140.905920pt;}
.x31{left:142.400000pt;}
.x7{left:145.746667pt;}
.x54{left:151.066880pt;}
.x71{left:153.638400pt;}
.xf{left:154.699840pt;}
.x7c{left:155.722560pt;}
.x55{left:166.400000pt;}
.x5a{left:168.955200pt;}
.x39{left:176.702080pt;}
.x13{left:179.827200pt;}
.x3d{left:186.809920pt;}
.x3e{left:192.962240pt;}
.x5c{left:196.000000pt;}
.x1e{left:212.000000pt;}
.x79{left:221.222080pt;}
.x4{left:223.560000pt;}
.x3{left:241.120000pt;}
.x48{left:253.439040pt;}
.x12{left:262.400000pt;}
.x6{left:264.640000pt;}
.x5d{left:274.666667pt;}
.x16{left:281.853120pt;}
.x2{left:285.040000pt;}
.x10{left:292.178880pt;}
.x5{left:293.733333pt;}
.x7b{left:295.752000pt;}
.x4d{left:298.141120pt;}
.x40{left:302.795200pt;}
.x33{left:305.716480pt;}
.x15{left:307.733440pt;}
.x1b{left:313.333333pt;}
.x17{left:318.666667pt;}
.x46{left:326.607040pt;}
.x1f{left:329.333333pt;}
.x4b{left:332.377600pt;}
.x11{left:337.163520pt;}
.x47{left:338.221760pt;}
.x8{left:354.000000pt;}
.x60{left:365.333333pt;}
.x49{left:370.880000pt;}
.x73{left:372.768000pt;}
.x1{left:376.560000pt;}
.x50{left:393.350400pt;}
.xc{left:396.800000pt;}
.x42{left:398.560000pt;}
.x4e{left:408.000000pt;}
.x3f{left:409.030400pt;}
.x4f{left:411.353600pt;}
.x75{left:415.862400pt;}
.x41{left:418.240000pt;}
.x77{left:425.580800pt;}
.x4a{left:429.875200pt;}
.x20{left:441.333333pt;}
.x63{left:444.000000pt;}
.x37{left:448.032000pt;}
.x43{left:462.400000pt;}
.x34{left:463.884800pt;}
.x51{left:471.459200pt;}
.x38{left:485.347200pt;}
.x3b{left:498.969600pt;}
.x72{left:507.260800pt;}
.x3c{left:510.585600pt;}
.x4c{left:516.160000pt;}
.x7a{left:520.000000pt;}
.x64{left:542.666667pt;}
.x67{left:544.000000pt;}
.x44{left:564.966400pt;}
.x22{left:570.666667pt;}
.x57{left:590.880000pt;}
.x6c{left:596.800000pt;}
.x76{left:601.078400pt;}
.x59{left:608.800000pt;}
.x53{left:614.080000pt;}
.x3a{left:622.240000pt;}
.x6f{left:625.600000pt;}
.x52{left:628.800000pt;}
.x65{left:632.000000pt;}
.x70{left:633.440000pt;}
.x6d{left:635.520000pt;}
.x45{left:636.851200pt;}
.x6b{left:638.720000pt;}
.x6e{left:642.240000pt;}
.x74{left:656.492800pt;}
.x2f{left:675.360000pt;}
.x58{left:697.600000pt;}
.x56{left:699.520000pt;}
}




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