
    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_cfd5ddd8f451dd378bfd1bbe.woff')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_30695f1ea2d3ebdfa4662473.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856934;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_6fa4ff2327f8371d93952b8e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_d9ef00df33389e87ca66f5b8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.858398;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_cbc4949237eb73b3a1c7f101.woff')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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_1766769afc57fd01764e304c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.869629;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_54f46afa0109d439b9050577.woff')format("woff");}.ff7{font-family:ff7;line-height:0.977061;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_280cf2e4a6b00781e9ab552c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_c1deb5b5b5439cbb32900237.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_af05a13c2357d1da41566143.woff')format("woff");}.ffa{font-family:ffa;line-height:0.922852;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_abf39cfe9b0a70607cff0b68.woff')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_f4eca0833958eb634b697c81.woff')format("woff");}.ffc{font-family:ffc;line-height:1.130371;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_4cb4316ef37783ab478cc257.woff')format("woff");}.ffd{font-family:ffd;line-height:1.172852;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_bdd2336172e1f12d24e9c7d0.woff')format("woff");}.ffe{font-family:ffe;line-height:1.202148;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_12e142919b5fefcc80250bfc.woff')format("woff");}.fff{font-family:fff;line-height:0.858887;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_78eddc9f3951cc2267a658a3.woff')format("woff");}.ff10{font-family:ff10;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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1acd63a791a2ec4b282fb77a.woff')format("woff");}.ff11{font-family:ff11;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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6b5e3f3f6fb2ebb0e142f4a8.woff')format("woff");}.ff12{font-family:ff12;line-height:0.862793;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_89cd828779964e155cecb815.woff')format("woff");}.ff13{font-family:ff13;line-height:1.001000;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_efbb88b6fba9225f96daa442.woff')format("woff");}.ff14{font-family:ff14;line-height:0.731445;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_16bfde0b0954d2042c64c472.woff')format("woff");}.ff15{font-family:ff15;line-height:0.895996;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_f7218dad06c9cb5b0ff38bad.woff')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_9e52e3591a8fc99f30baba7b.woff')format("woff");}.ff17{font-family:ff17;line-height:0.856934;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;}
.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);}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:40.500000px;}
.v3{vertical-align:42.900000px;}
.v5{vertical-align:53.820000px;}
.v1{vertical-align:63.000000px;}
.v6{vertical-align:72.030000px;}
.v4{vertical-align:136.800000px;}
.ls80{letter-spacing:-7.678650px;}
.ls7b{letter-spacing:-7.570500px;}
.ls6e{letter-spacing:-7.365900px;}
.ls32{letter-spacing:-5.584950px;}
.ls73{letter-spacing:-5.299350px;}
.ls81{letter-spacing:-4.650450px;}
.ls78{letter-spacing:-4.184700px;}
.ls6a{letter-spacing:-4.176000px;}
.ls21{letter-spacing:-3.153000px;}
.ls26{letter-spacing:-2.943450px;}
.ls23{letter-spacing:-2.658000px;}
.ls6f{letter-spacing:-2.655150px;}
.ls1f{letter-spacing:-2.367000px;}
.ls53{letter-spacing:-2.311350px;}
.ls22{letter-spacing:-2.209200px;}
.ls5b{letter-spacing:-2.126400px;}
.ls56{letter-spacing:-2.054850px;}
.ls1a{letter-spacing:-2.049450px;}
.ls25{letter-spacing:-1.899000px;}
.ls24{letter-spacing:-1.875900px;}
.ls83{letter-spacing:-1.861650px;}
.ls46{letter-spacing:-1.838550px;}
.ls3c{letter-spacing:-1.835055px;}
.ls1{letter-spacing:-1.824750px;}
.ls3b{letter-spacing:-1.731600px;}
.ls7a{letter-spacing:-1.730400px;}
.ls44{letter-spacing:-1.666500px;}
.ls2a{letter-spacing:-1.656000px;}
.ls27{letter-spacing:-1.645800px;}
.ls4f{letter-spacing:-1.585650px;}
.ls1b{letter-spacing:-1.576500px;}
.ls3{letter-spacing:-1.501200px;}
.ls2e{letter-spacing:-1.443000px;}
.ls40{letter-spacing:-1.405950px;}
.lsc{letter-spacing:-1.303050px;}
.ls1d{letter-spacing:-1.261200px;}
.ls57{letter-spacing:-1.154400px;}
.ls35{letter-spacing:-1.153200px;}
.ls6{letter-spacing:-1.149750px;}
.lsd{letter-spacing:-1.071000px;}
.ls33{letter-spacing:-1.063800px;}
.ls3a{letter-spacing:-1.010100px;}
.ls7{letter-spacing:-0.996450px;}
.ls19{letter-spacing:-0.945900px;}
.ls89{letter-spacing:-0.923250px;}
.ls2f{letter-spacing:-0.865200px;}
.ls11{letter-spacing:-0.834000px;}
.ls3f{letter-spacing:-0.832755px;}
.ls2b{letter-spacing:-0.792000px;}
.ls34{letter-spacing:-0.757050px;}
.ls29{letter-spacing:-0.756000px;}
.ls58{letter-spacing:-0.721500px;}
.ls75{letter-spacing:-0.702000px;}
.ls5{letter-spacing:-0.667200px;}
.ls45{letter-spacing:-0.648900px;}
.ls76{letter-spacing:-0.526500px;}
.ls82{letter-spacing:-0.421785px;}
.ls7f{letter-spacing:-0.324450px;}
.ls0{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.047850px;}
.ls36{letter-spacing:0.094200px;}
.ls37{letter-spacing:0.124200px;}
.ls2{letter-spacing:0.153300px;}
.ls5c{letter-spacing:0.159570px;}
.ls12{letter-spacing:0.278100px;}
.ls20{letter-spacing:0.331380px;}
.ls1e{letter-spacing:0.378360px;}
.ls8{letter-spacing:0.382500px;}
.ls5a{letter-spacing:0.398700px;}
.ls7d{letter-spacing:0.432600px;}
.ls38{letter-spacing:0.447330px;}
.ls6b{letter-spacing:0.468000px;}
.ls42{letter-spacing:0.500400px;}
.ls88{letter-spacing:0.554400px;}
.ls16{letter-spacing:0.583200px;}
.ls4a{letter-spacing:0.594900px;}
.ls74{letter-spacing:0.662550px;}
.ls67{letter-spacing:0.721500px;}
.ls55{letter-spacing:0.757050px;}
.ls63{letter-spacing:0.757200px;}
.ls9{letter-spacing:0.766500px;}
.ls1c{letter-spacing:0.788250px;}
.ls6c{letter-spacing:0.792000px;}
.ls49{letter-spacing:0.793200px;}
.ls5d{letter-spacing:0.797850px;}
.lse{letter-spacing:0.841500px;}
.ls72{letter-spacing:0.865200px;}
.ls68{letter-spacing:0.938400px;}
.ls77{letter-spacing:0.994500px;}
.ls4{letter-spacing:1.000800px;}
.ls39{letter-spacing:1.010100px;}
.ls59{letter-spacing:1.063200px;}
.ls13{letter-spacing:1.063800px;}
.ls50{letter-spacing:1.080000px;}
.ls5f{letter-spacing:1.081500px;}
.ls2c{letter-spacing:1.089000px;}
.ls64{letter-spacing:1.114350px;}
.ls62{letter-spacing:1.135800px;}
.ls14{letter-spacing:1.166550px;}
.ls66{letter-spacing:1.170000px;}
.ls31{letter-spacing:1.329750px;}
.ls4b{letter-spacing:1.387050px;}
.ls30{letter-spacing:1.503285px;}
.ls2d{letter-spacing:1.588800px;}
.ls41{letter-spacing:1.654695px;}
.lsb{letter-spacing:1.686300px;}
.ls54{letter-spacing:1.703100px;}
.ls52{letter-spacing:1.730400px;}
.ls28{letter-spacing:1.764000px;}
.ls15{letter-spacing:1.833150px;}
.ls61{letter-spacing:1.875900px;}
.ls65{letter-spacing:2.020200px;}
.ls51{letter-spacing:2.054850px;}
.ls7e{letter-spacing:2.163000px;}
.ls69{letter-spacing:2.236650px;}
.lsa{letter-spacing:2.299500px;}
.ls43{letter-spacing:2.335200px;}
.ls6d{letter-spacing:2.376000px;}
.ls79{letter-spacing:2.457000px;}
.ls87{letter-spacing:2.626800px;}
.ls5e{letter-spacing:32.295000px;}
.ls47{letter-spacing:38.595000px;}
.ls48{letter-spacing:38.647500px;}
.ls84{letter-spacing:43.320000px;}
.ls85{letter-spacing:43.372500px;}
.lsf{letter-spacing:49.620000px;}
.ls10{letter-spacing:49.672500px;}
.ls86{letter-spacing:51.427500px;}
.ls18{letter-spacing:52.770000px;}
.ls17{letter-spacing:52.822500px;}
.ls4c{letter-spacing:57.547500px;}
.ls4e{letter-spacing:65.550000px;}
.ls4d{letter-spacing:65.602500px;}
.ls7c{letter-spacing:70.147500px;}
.ls3d{letter-spacing:97.267500px;}
.ls71{letter-spacing:102.022500px;}
.ls60{letter-spacing:102.052500px;}
.ls70{letter-spacing:102.075000px;}
.ls8b{letter-spacing:107.986269px;}
.ls8a{letter-spacing:108.000405px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-65.189700px;}
.ws15{word-spacing:-61.168500px;}
.ws46{word-spacing:-60.902550px;}
.ws44{word-spacing:-60.469500px;}
.ws45{word-spacing:-60.264270px;}
.ws13{word-spacing:-60.104700px;}
.ws20{word-spacing:-60.070800px;}
.ws29{word-spacing:-59.040900px;}
.ws64{word-spacing:-58.243050px;}
.ws65{word-spacing:-56.595600px;}
.ws28{word-spacing:-54.519750px;}
.ws39{word-spacing:-54.002700px;}
.ws47{word-spacing:-48.883800px;}
.ws34{word-spacing:-46.168950px;}
.ws32{word-spacing:-45.609000px;}
.ws33{word-spacing:-45.410700px;}
.ws35{word-spacing:-44.815800px;}
.ws66{word-spacing:-40.807650px;}
.ws31{word-spacing:-40.032000px;}
.ws16{word-spacing:-39.496050px;}
.ws30{word-spacing:-38.829450px;}
.ws2f{word-spacing:-38.197200px;}
.ws18{word-spacing:-37.696800px;}
.ws14{word-spacing:-37.662900px;}
.ws6{word-spacing:-37.029600px;}
.ws67{word-spacing:-36.679800px;}
.ws1d{word-spacing:-36.417150px;}
.ws1c{word-spacing:-35.662800px;}
.ws1a{word-spacing:-35.628900px;}
.ws19{word-spacing:-34.683000px;}
.ws1e{word-spacing:-34.367700px;}
.ws1b{word-spacing:-34.052400px;}
.ws2c{word-spacing:-33.621900px;}
.ws1f{word-spacing:-33.295800px;}
.ws2b{word-spacing:-33.059130px;}
.ws43{word-spacing:-31.890300px;}
.ws3a{word-spacing:-31.601700px;}
.ws41{word-spacing:-31.457400px;}
.ws37{word-spacing:-30.992250px;}
.ws42{word-spacing:-30.880200px;}
.ws3c{word-spacing:-29.196000px;}
.ws38{word-spacing:-27.526800px;}
.ws36{word-spacing:-27.492900px;}
.ws3d{word-spacing:-26.496750px;}
.ws3e{word-spacing:-26.172300px;}
.ws2e{word-spacing:-26.096595px;}
.ws3{word-spacing:-25.668150px;}
.ws55{word-spacing:-25.307100px;}
.ws3f{word-spacing:-25.198950px;}
.ws3b{word-spacing:-25.181550px;}
.ws5c{word-spacing:-24.874500px;}
.ws69{word-spacing:-24.814800px;}
.ws17{word-spacing:-24.441900px;}
.ws1{word-spacing:-24.408000px;}
.ws2a{word-spacing:-23.684850px;}
.ws2d{word-spacing:-23.609145px;}
.ws5d{word-spacing:-23.035950px;}
.ws40{word-spacing:-22.387050px;}
.ws54{word-spacing:-22.269000px;}
.ws48{word-spacing:-22.148100px;}
.ws57{word-spacing:-22.053450px;}
.ws68{word-spacing:-21.695997px;}
.ws49{word-spacing:-21.390900px;}
.ws61{word-spacing:-19.791450px;}
.ws53{word-spacing:-19.613850px;}
.ws56{word-spacing:-19.142550px;}
.ws52{word-spacing:-18.648000px;}
.ws4c{word-spacing:-18.542550px;}
.ws4a{word-spacing:-18.326100px;}
.ws8{word-spacing:-17.322900px;}
.ws9{word-spacing:-17.289000px;}
.ws51{word-spacing:-17.064000px;}
.ws4b{word-spacing:-17.027400px;}
.ws5b{word-spacing:-16.871400px;}
.ws60{word-spacing:-16.763250px;}
.ws22{word-spacing:-16.305900px;}
.ws5a{word-spacing:-16.272000px;}
.wsd{word-spacing:-16.019850px;}
.ws59{word-spacing:-15.678000px;}
.ws21{word-spacing:-14.430000px;}
.ws4f{word-spacing:-13.689000px;}
.ws4d{word-spacing:-13.254900px;}
.ws50{word-spacing:-13.221000px;}
.ws26{word-spacing:-12.809700px;}
.ws25{word-spacing:-12.276000px;}
.ws58{word-spacing:-12.121200px;}
.ws4e{word-spacing:-12.096000px;}
.ws24{word-spacing:-10.395000px;}
.ws23{word-spacing:-8.883000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:345.801450px;}
.ws63{word-spacing:372.219750px;}
.ws5f{word-spacing:373.289400px;}
.ws10{word-spacing:411.364500px;}
.ws7{word-spacing:411.438000px;}
.wsb{word-spacing:440.125200px;}
.ws12{word-spacing:440.185200px;}
.wsa{word-spacing:455.716500px;}
.ws11{word-spacing:455.720550px;}
.wsf{word-spacing:623.860800px;}
.ws5{word-spacing:623.920800px;}
.ws4{word-spacing:727.609200px;}
.wse{word-spacing:727.669200px;}
.ws62{word-spacing:1085.462700px;}
.ws5e{word-spacing:1086.652350px;}
.ws27{word-spacing:1687.528845px;}
._10{margin-left:-30.247502px;}
._14{margin-left:-24.985200px;}
._12{margin-left:-23.097450px;}
._13{margin-left:-20.466600px;}
._11{margin-left:-13.797899px;}
._d{margin-left:-12.569550px;}
._7{margin-left:-11.428050px;}
._e{margin-left:-9.489300px;}
._8{margin-left:-8.244450px;}
._4{margin-left:-6.480000px;}
._5{margin-left:-4.903650px;}
._0{margin-left:-3.864000px;}
._1{margin-left:-2.318400px;}
._2{margin-left:-1.008000px;}
._3{width:1.894499px;}
._6{width:3.816752px;}
._b{width:4.885051px;}
._c{width:5.933550px;}
._17{width:6.943812px;}
._16{width:8.885696px;}
._15{width:9.935400px;}
._a{width:421.244250px;}
._9{width:489.163200px;}
._f{width:2784.872399px;}
.fcd{color:rgb(43,61,81);}
.fc0{color:rgb(98,16,204);}
.fc2{color:rgb(0,151,167);}
.fc1{color:rgb(89,89,89);}
.fc3{color:rgb(0,0,0);}
.fc5{color:rgb(137,137,137);}
.fc6{color:rgb(255,255,255);}
.fca{color:rgb(0,176,80);}
.fcc{color:rgb(51,51,51);}
.fc7{color:transparent;}
.fc8{color:rgb(17,24,39);}
.fc9{color:rgb(255,0,0);}
.fc4{color:rgb(119,119,119);}
.fcb{color:rgb(112,173,71);}
.fs1b{font-size:31.500000px;}
.fs1a{font-size:31.650000px;}
.fs9{font-size:41.999999px;}
.fs6{font-size:48.000015px;}
.fs1c{font-size:49.500000px;}
.fs19{font-size:49.650000px;}
.fs27{font-size:58.500000px;}
.fs26{font-size:58.650000px;}
.fs8{font-size:59.999985px;}
.fs4{font-size:72.000000px;}
.fs12{font-size:72.150000px;}
.fs11{font-size:76.500000px;}
.fs10{font-size:76.650000px;}
.fs1d{font-size:85.650000px;}
.fs28{font-size:94.500000px;}
.fsd{font-size:94.650000px;}
.fs2d{font-size:95.999985px;}
.fs5{font-size:99.900000px;}
.fs3{font-size:108.000000px;}
.fsb{font-size:108.150000px;}
.fs2f{font-size:109.800000px;}
.fs2{font-size:112.000005px;}
.fs2e{font-size:121.199760px;}
.fsc{font-size:121.650000px;}
.fs23{font-size:121.800000px;}
.fs1e{font-size:144.150000px;}
.fs1f{font-size:144.300000px;}
.fs7{font-size:151.200000px;}
.fs17{font-size:157.650000px;}
.fs18{font-size:157.800000px;}
.fs2b{font-size:162.150000px;}
.fs2c{font-size:162.300000px;}
.fs14{font-size:166.650000px;}
.fsf{font-size:166.800000px;}
.fs1{font-size:167.999985px;}
.fs2a{font-size:184.650000px;}
.fs29{font-size:184.800000px;}
.fs0{font-size:193.199985px;}
.fs21{font-size:198.150000px;}
.fs20{font-size:198.300000px;}
.fs25{font-size:216.300000px;}
.fs22{font-size:238.800000px;}
.fs24{font-size:238.950000px;}
.fs13{font-size:265.800000px;}
.fse{font-size:265.950000px;}
.fsa{font-size:288.450000px;}
.fs15{font-size:337.950000px;}
.fs16{font-size:360.450000px;}
.y10c{bottom:-768.570000px;}
.y10f{bottom:-767.925000px;}
.yf5{bottom:-649.050000px;}
.y10b{bottom:-619.050000px;}
.y10e{bottom:-618.420000px;}
.y10a{bottom:-605.505000px;}
.y10d{bottom:-604.875000px;}
.y116{bottom:-602.400000px;}
.y8d{bottom:-589.800000px;}
.y8c{bottom:-557.145000px;}
.y106{bottom:-551.955000px;}
.y109{bottom:-549.255000px;}
.y115{bottom:-546.255000px;}
.y117{bottom:-488.580000px;}
.y1c{bottom:-462.270000px;}
.y1b{bottom:-451.575000px;}
.y114{bottom:-425.745000px;}
.y85{bottom:-412.875000px;}
.y155{bottom:-407.475000px;}
.y105{bottom:-402.450000px;}
.y108{bottom:-399.705000px;}
.y1d{bottom:-390.630000px;}
.y104{bottom:-388.950000px;}
.y107{bottom:-386.205000px;}
.y84{bottom:-380.205000px;}
.y113{bottom:-367.320000px;}
.y24{bottom:-362.880000px;}
.y23{bottom:-352.200000px;}
.y1a{bottom:-348.495000px;}
.y17{bottom:-327.105000px;}
.y19{bottom:-327.075000px;}
.y103{bottom:-326.475000px;}
.y112{bottom:-310.395000px;}
.y8b{bottom:-306.405000px;}
.y18{bottom:-305.670000px;}
.yf4{bottom:-278.670000px;}
.y8a{bottom:-273.750000px;}
.y8e{bottom:-268.500000px;}
.y22{bottom:-249.105000px;}
.y89{bottom:-241.080000px;}
.yf3{bottom:-240.630000px;}
.y1f{bottom:-227.745000px;}
.y21{bottom:-227.700000px;}
.y88{bottom:-211.875000px;}
.y20{bottom:-206.295000px;}
.y87{bottom:-179.220000px;}
.y154{bottom:-179.100000px;}
.y102{bottom:-177.000000px;}
.y101{bottom:-163.455000px;}
.y86{bottom:-146.550000px;}
.y153{bottom:-146.437500px;}
.y156{bottom:-126.600000px;}
.y110{bottom:-121.275000px;}
.y111{bottom:-79.125000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:1.125000px;}
.yb{bottom:10.738935px;}
.y14{bottom:12.712500px;}
.y65{bottom:22.687500px;}
.ya{bottom:28.082242px;}
.y13{bottom:30.525000px;}
.y5{bottom:33.543660px;}
.yc6{bottom:33.787500px;}
.y142{bottom:36.412500px;}
.y70{bottom:37.537500px;}
.yb0{bottom:43.875000px;}
.y15a{bottom:49.350000px;}
.y81{bottom:52.162500px;}
.y66{bottom:52.725000px;}
.y12a{bottom:54.450000px;}
.y64{bottom:55.350000px;}
.ydd{bottom:56.437500px;}
.y2a{bottom:58.312500px;}
.y136{bottom:60.562500px;}
.y139{bottom:61.200000px;}
.y6f{bottom:62.400000px;}
.y29{bottom:69.000000px;}
.yec{bottom:69.075000px;}
.y6e{bottom:71.400000px;}
.y80{bottom:73.575000px;}
.yaf{bottom:76.537500px;}
.y169{bottom:80.250000px;}
.y6d{bottom:80.437500px;}
.y129{bottom:82.612500px;}
.y63{bottom:88.012500px;}
.yf0{bottom:89.100000px;}
.y9{bottom:92.729970px;}
.y152{bottom:98.625000px;}
.y60{bottom:100.875000px;}
.ya1{bottom:102.300000px;}
.y48{bottom:109.875000px;}
.yda{bottom:111.112500px;}
.y128{bottom:111.900000px;}
.yd0{bottom:112.162500px;}
.ye7{bottom:112.762500px;}
.y7a{bottom:114.600000px;}
.y3b{bottom:120.075000px;}
.y62{bottom:120.675000px;}
.yea{bottom:121.762500px;}
.y151{bottom:127.912500px;}
.yfb{bottom:128.325000px;}
.y79{bottom:129.225000px;}
.yc3{bottom:130.162500px;}
.yc4{bottom:134.850000px;}
.y174{bottom:135.815850px;}
.y168{bottom:138.825000px;}
.y83{bottom:139.650000px;}
.y127{bottom:140.062500px;}
.yba{bottom:140.137500px;}
.yae{bottom:142.575000px;}
.y100{bottom:143.212500px;}
.y5f{bottom:148.200000px;}
.y47{bottom:150.450000px;}
.y3a{bottom:152.745000px;}
.y61{bottom:153.345000px;}
.y150{bottom:157.200000px;}
.yfa{bottom:157.605000px;}
.ycf{bottom:159.450000px;}
.y17f{bottom:161.663850px;}
.y67{bottom:161.970000px;}
.y175{bottom:162.577950px;}
.yd9{bottom:163.950000px;}
.y126{bottom:169.380000px;}
.yff{bottom:171.375000px;}
.yb9{bottom:171.720000px;}
.y28{bottom:172.095000px;}
.yad{bottom:172.995000px;}
.y7{bottom:174.521850px;}
.y167{bottom:178.245000px;}
.y11f{bottom:180.120000px;}
.y5e{bottom:181.995000px;}
.yc2{bottom:185.370000px;}
.y39{bottom:185.400000px;}
.yf9{bottom:185.775000px;}
.y6{bottom:188.921850px;}
.ye9{bottom:189.000000px;}
.y46{bottom:189.870000px;}
.y173{bottom:191.075850px;}
.y25{bottom:193.425000px;}
.y27{bottom:193.500000px;}
.yd8{bottom:195.525000px;}
.yc{bottom:197.054400px;}
.y17e{bottom:199.355962px;}
.yfe{bottom:200.655000px;}
.y14f{bottom:201.150000px;}
.yac{bottom:202.275000px;}
.yb8{bottom:204.375000px;}
.y78{bottom:207.450000px;}
.y135{bottom:210.075000px;}
.y138{bottom:210.720000px;}
.y4{bottom:212.171550px;}
.y26{bottom:214.905000px;}
.yf8{bottom:215.070000px;}
.y38{bottom:218.070000px;}
.y12{bottom:220.005000px;}
.y77{bottom:222.120000px;}
.yb1{bottom:222.450000px;}
.yce{bottom:222.570000px;}
.y9f{bottom:223.230000px;}
.y134{bottom:223.620000px;}
.y137{bottom:224.250000px;}
.y166{bottom:225.570000px;}
.y140{bottom:226.725000px;}
.y172{bottom:227.075850px;}
.yfd{bottom:228.825000px;}
.y5d{bottom:229.320000px;}
.y145{bottom:229.470000px;}
.y14e{bottom:230.445000px;}
.yab{bottom:232.695000px;}
.y17d{bottom:235.355850px;}
.yb7{bottom:237.045000px;}
.yd7{bottom:237.195000px;}
.yc1{bottom:240.570000px;}
.yf7{bottom:243.225000px;}
.y45{bottom:246.195000px;}
.y3{bottom:248.171550px;}
.y37{bottom:250.770000px;}
.ye5{bottom:251.505000px;}
.y9e{bottom:255.900000px;}
.yfc{bottom:258.120000px;}
.y14d{bottom:259.725000px;}
.y171{bottom:260.195850px;}
.y11{bottom:262.800000px;}
.y15d{bottom:263.070000px;}
.yaa{bottom:263.100000px;}
.y82{bottom:267.945000px;}
.y17c{bottom:268.475850px;}
.yb6{bottom:269.700000px;}
.ycd{bottom:269.850000px;}
.yf6{bottom:272.505000px;}
.y5c{bottom:276.630000px;}
.y130{bottom:277.200000px;}
.y133{bottom:279.945000px;}
.y13f{bottom:282.870000px;}
.y165{bottom:285.255000px;}
.y44{bottom:285.630000px;}
.ye0{bottom:288.600000px;}
.y14c{bottom:289.005000px;}
.yd6{bottom:290.130000px;}
.y170{bottom:293.315850px;}
.ya9{bottom:293.505000px;}
.ybd{bottom:296.880000px;}
.y16a{bottom:299.970000px;}
.y17b{bottom:301.595850px;}
.yb5{bottom:302.355000px;}
.ye4{bottom:307.275000px;}
.y10{bottom:310.125000px;}
.y14b{bottom:318.300000px;}
.y16{bottom:322.320000px;}
.ya8{bottom:323.925000px;}
.y5b{bottom:325.050000px;}
.y43{bottom:326.175000px;}
.y16f{bottom:326.435850px;}
.y4f{bottom:326.820000px;}
.yd5{bottom:329.580000px;}
.ycc{bottom:332.955000px;}
.y17a{bottom:334.715850px;}
.y141{bottom:340.530000px;}
.ybc{bottom:343.080000px;}
.y164{bottom:344.955000px;}
.yc0{bottom:352.095000px;}
.ya7{bottom:354.345000px;}
.yde{bottom:356.775000px;}
.ye8{bottom:358.275000px;}
.y4e{bottom:359.475000px;}
.y16e{bottom:360.815839px;}
.y14a{bottom:362.250000px;}
.ye3{bottom:363.300000px;}
.y179{bottom:367.835861px;}
.yd4{bottom:371.250000px;}
.y5a{bottom:372.375000px;}
.y7f{bottom:372.420000px;}
.y76{bottom:374.100000px;}
.y6b{bottom:379.575000px;}
.ycb{bottom:380.250000px;}
.y42{bottom:381.375000px;}
.ya6{bottom:384.780000px;}
.yb2{bottom:385.695000px;}
.y31{bottom:388.155000px;}
.y4d{bottom:391.005000px;}
.y149{bottom:391.530000px;}
.y95{bottom:391.650000px;}
.y75{bottom:395.505000px;}
.yef{bottom:397.155000px;}
.y16d{bottom:398.075850px;}
.y97{bottom:400.155000px;}
.y178{bottom:400.955850px;}
.y53{bottom:402.780000px;}
.y13e{bottom:403.470000px;}
.y163{bottom:404.655000px;}
.y144{bottom:408.300000px;}
.y159{bottom:409.425000px;}
.ya5{bottom:415.200000px;}
.y59{bottom:420.825000px;}
.y41{bottom:421.950000px;}
.ye2{bottom:421.995000px;}
.ydf{bottom:423.120000px;}
.y4c{bottom:423.675000px;}
.yd3{bottom:424.200000px;}
.y94{bottom:424.320000px;}
.y12f{bottom:426.720000px;}
.y36{bottom:427.995000px;}
.y132{bottom:429.450000px;}
.y96{bottom:432.825000px;}
.y30{bottom:433.200000px;}
.y16c{bottom:435.335850px;}
.y12e{bottom:440.250000px;}
.ye6{bottom:440.850000px;}
.y143{bottom:440.970000px;}
.y158{bottom:442.095000px;}
.y131{bottom:442.950000px;}
.yca{bottom:443.370000px;}
.y7e{bottom:444.525000px;}
.ya4{bottom:445.620000px;}
.ybb{bottom:448.995000px;}
.y148{bottom:450.120000px;}
.yf{bottom:450.525000px;}
.y2{bottom:453.220898px;}
.y93{bottom:455.850000px;}
.y4b{bottom:456.375000px;}
.y35{bottom:460.695000px;}
.y13d{bottom:461.820000px;}
.ybf{bottom:462.495000px;}
.y52{bottom:463.620000px;}
.y162{bottom:464.400000px;}
.y58{bottom:468.150000px;}
.yee{bottom:471.525000px;}
.y157{bottom:474.795000px;}
.ya3{bottom:474.900000px;}
.y40{bottom:477.150000px;}
.y125{bottom:478.380000px;}
.y147{bottom:479.400000px;}
.y92{bottom:488.550000px;}
.y4a{bottom:489.045000px;}
.y15c{bottom:491.445000px;}
.y6c{bottom:492.030000px;}
.ye{bottom:492.225000px;}
.y34{bottom:493.350000px;}
.y2f{bottom:494.070000px;}
.y177{bottom:500.235056px;}
.y12d{bottom:502.650000px;}
.ybe{bottom:503.070000px;}
.yc9{bottom:505.320000px;}
.y9d{bottom:506.625000px;}
.y124{bottom:507.720000px;}
.y8{bottom:508.525050px;}
.y51{bottom:508.695000px;}
.yb3{bottom:509.820000px;}
.y72{bottom:510.120000px;}
.y1{bottom:511.180898px;}
.y54{bottom:513.255000px;}
.y7d{bottom:515.475000px;}
.y57{bottom:516.570000px;}
.y3f{bottom:517.695000px;}
.y13c{bottom:518.745000px;}
.y91{bottom:521.220000px;}
.y49{bottom:521.700000px;}
.y55{bottom:521.745000px;}
.y161{bottom:524.100000px;}
.y15b{bottom:524.130000px;}
.y33{bottom:526.005000px;}
.y6a{bottom:527.745000px;}
.y71{bottom:531.495000px;}
.y123{bottom:535.875000px;}
.y146{bottom:536.850000px;}
.ydc{bottom:538.200000px;}
.y176{bottom:538.395000px;}
.y9c{bottom:539.280000px;}
.y1e{bottom:540.870000px;}
.y15e{bottom:543.975000px;}
.ya0{bottom:544.530000px;}
.yed{bottom:544.725000px;}
.y16b{bottom:548.877300px;}
.y11e{bottom:550.530000px;}
.ye1{bottom:551.475000px;}
.yc8{bottom:552.630000px;}
.y50{bottom:553.755000px;}
.y90{bottom:553.875000px;}
.y69{bottom:554.400000px;}
.y2e{bottom:554.880000px;}
.y3e{bottom:558.255000px;}
.y32{bottom:558.675000px;}
.yd2{bottom:559.380000px;}
.y56{bottom:563.880000px;}
.y122{bottom:565.170000px;}
.y3d{bottom:565.320000px;}
.ya2{bottom:566.130000px;}
.yd{bottom:569.970000px;}
.y9b{bottom:571.950000px;}
.yb4{bottom:581.175000px;}
.y11b{bottom:582.330000px;}
.y8f{bottom:586.530000px;}
.y11d{bottom:588.495000px;}
.y121{bottom:593.325000px;}
.y7c{bottom:593.505000px;}
.y3c{bottom:598.005000px;}
.y9a{bottom:601.155000px;}
.y11a{bottom:607.125000px;}
.y74{bottom:609.030000px;}
.yc5{bottom:612.525000px;}
.yeb{bottom:618.630000px;}
.y7b{bottom:619.425000px;}
.y120{bottom:622.620000px;}
.y73{bottom:630.450000px;}
.y119{bottom:633.030000px;}
.y99{bottom:633.825000px;}
.y2d{bottom:634.800000px;}
.yf2{bottom:650.655000px;}
.y12c{bottom:652.155000px;}
.y118{bottom:657.825000px;}
.y12b{bottom:665.700000px;}
.y98{bottom:666.495000px;}
.y15{bottom:670.095000px;}
.yd1{bottom:671.325000px;}
.yf1{bottom:693.495000px;}
.y11c{bottom:696.675000px;}
.y2c{bottom:705.750000px;}
.y68{bottom:706.725000px;}
.y13a{bottom:707.850000px;}
.ydb{bottom:714.075000px;}
.y15f{bottom:726.030000px;}
.y2b{bottom:749.445000px;}
.y13b{bottom:750.000000px;}
.y160{bottom:785.205000px;}
.h30{height:22.609863px;}
.h2f{height:22.717529px;}
.h9{height:30.146483px;}
.h31{height:31.330811px;}
.h7{height:32.648448px;}
.h5{height:34.453136px;}
.h33{height:35.529785px;}
.h2e{height:35.637451px;}
.h52{height:41.989746px;}
.h50{height:42.097412px;}
.h8{height:43.124989px;}
.h54{height:43.560791px;}
.h51{height:43.672485px;}
.h10{height:51.679688px;}
.h17{height:51.787354px;}
.h48{height:53.613281px;}
.h3f{height:53.724976px;}
.h14{height:54.909668px;}
.h13{height:55.017334px;}
.h59{height:58.334985px;}
.h5a{height:59.899658px;}
.h34{height:61.477295px;}
.h55{height:62.355542px;}
.h56{height:62.857397px;}
.h57{height:67.829590px;}
.hf{height:67.937256px;}
.h58{height:68.798584px;}
.h4f{height:68.907788px;}
.h67{height:68.999989px;}
.h4e{height:70.479126px;}
.h32{height:71.613281px;}
.h4{height:71.705566px;}
.h35{height:71.762476px;}
.h65{height:73.406250px;}
.h5b{height:73.722656px;}
.h53{height:73.876245px;}
.ha{height:77.519531px;}
.h66{height:77.625000px;}
.h1a{height:77.627197px;}
.h5c{height:78.736157px;}
.h69{height:78.811523px;}
.h1e{height:80.531616px;}
.hd{height:82.381006px;}
.h1f{height:82.591113px;}
.he{height:87.317139px;}
.h46{height:88.564526px;}
.h47{height:88.673730px;}
.h3{height:92.179688px;}
.h68{height:93.445015px;}
.h18{height:97.737334px;}
.h19{height:97.767334px;}
.h16{height:97.797334px;}
.h15{height:97.917334px;}
.h39{height:103.467041px;}
.h3a{height:103.574707px;}
.h45{height:104.945142px;}
.h36{height:107.338257px;}
.h4a{height:107.449951px;}
.h25{height:107.569116px;}
.h3c{height:110.737573px;}
.h2d{height:113.264648px;}
.h63{height:116.494629px;}
.h6{height:116.575200px;}
.h29{height:117.390747px;}
.h2c{height:117.502441px;}
.h62{height:118.049634px;}
.h21{height:119.616943px;}
.h12{height:119.724609px;}
.h1d{height:121.325757px;}
.h1c{height:121.434961px;}
.h3e{height:124.092407px;}
.h3d{height:124.204102px;}
.h4b{height:124.560571px;}
.h61{height:134.430249px;}
.h60{height:134.539453px;}
.h2{height:139.125003px;}
.h41{height:142.334473px;}
.h38{height:143.375757px;}
.h3b{height:143.524951px;}
.h42{height:147.548218px;}
.h40{height:147.659912px;}
.h4d{height:147.752490px;}
.h1{height:148.957188px;}
.h2b{height:156.803247px;}
.h2a{height:156.952441px;}
.h4c{height:161.063232px;}
.h5f{height:165.107812px;}
.h49{height:165.211523px;}
.h23{height:165.754907px;}
.h22{height:165.904102px;}
.h26{height:170.790820px;}
.h44{height:171.404297px;}
.h1b{height:183.775781px;}
.h11{height:183.879492px;}
.h43{height:197.234912px;}
.hc{height:199.436133px;}
.h5d{height:203.477197px;}
.h5e{height:203.627197px;}
.h24{height:214.427197px;}
.h64{height:249.217383px;}
.h27{height:251.647339px;}
.h37{height:253.081055px;}
.h20{height:253.223877px;}
.h28{height:268.401489px;}
.h0{height:607.500000px;}
.hb{height:810.000000px;}
.w0{width:1080.000000px;}
.w2{width:1439.999979px;}
.w1{width:1440.000000px;}
.x0{left:0.000000px;}
.x8b{left:34.049979px;}
.x6{left:35.672250px;}
.x89{left:36.862479px;}
.x7{left:46.939965px;}
.x25{left:57.674979px;}
.x4f{left:72.824979px;}
.xa2{left:73.837479px;}
.x83{left:78.562479px;}
.x5{left:80.679356px;}
.x2f{left:82.162479px;}
.x36{left:83.324979px;}
.x4d{left:90.262479px;}
.x38{left:103.799979px;}
.x53{left:105.299979px;}
.x13{left:109.874979px;}
.x62{left:113.887479px;}
.x88{left:128.512479px;}
.x64{left:133.949979px;}
.x26{left:136.874979px;}
.x4e{left:138.037479px;}
.x8a{left:142.199979px;}
.x2e{left:146.849979px;}
.x6c{left:148.724979px;}
.x9c{left:156.404979px;}
.x3b{left:160.829979px;}
.x58{left:163.904979px;}
.x84{left:168.374979px;}
.x31{left:173.549979px;}
.x37{left:190.229979px;}
.xa4{left:191.774979px;}
.x3a{left:199.619979px;}
.x59{left:218.069979px;}
.xb{left:221.399979px;}
.x35{left:227.069979px;}
.x8{left:229.390800px;}
.x39{left:240.404979px;}
.x5c{left:250.394979px;}
.x6b{left:256.874979px;}
.x5a{left:261.644979px;}
.xd{left:266.999979px;}
.x34{left:270.329979px;}
.x42{left:275.444979px;}
.x23{left:283.949979px;}
.x5b{left:286.094979px;}
.x1{left:287.338688px;}
.x1e{left:298.244979px;}
.x1a{left:305.849979px;}
.x2{left:318.966375px;}
.x15{left:320.129979px;}
.x14{left:321.944979px;}
.x54{left:334.244979px;}
.x1d{left:337.094979px;}
.x9e{left:341.594979px;}
.x4{left:348.673125px;}
.x9f{left:376.499979px;}
.x3{left:382.279013px;}
.x55{left:388.274979px;}
.x4a{left:442.529979px;}
.x10{left:445.949979px;}
.x4c{left:447.029979px;}
.x32{left:448.619979px;}
.xf{left:451.949979px;}
.x4b{left:453.074979px;}
.x33{left:467.279979px;}
.x87{left:468.779979px;}
.x86{left:478.004979px;}
.x24{left:479.399979px;}
.x3c{left:487.694979px;}
.x68{left:489.494979px;}
.x97{left:494.144979px;}
.x67{left:499.694979px;}
.x1b{left:501.344979px;}
.x45{left:507.824979px;}
.x7c{left:515.024979px;}
.x43{left:516.494979px;}
.x5f{left:534.749979px;}
.xa1{left:559.424979px;}
.xe{left:591.719979px;}
.x65{left:603.254979px;}
.x6a{left:620.519979px;}
.xa{left:626.960100px;}
.x30{left:636.374979px;}
.xc{left:645.944979px;}
.x85{left:649.574979px;}
.x1f{left:655.874979px;}
.x20{left:661.874979px;}
.x50{left:669.374979px;}
.x66{left:671.279979px;}
.x21{left:673.154979px;}
.x16{left:677.774979px;}
.x9a{left:678.899979px;}
.x17{left:683.774979px;}
.x18{left:695.069979px;}
.x80{left:700.604979px;}
.x99{left:701.924979px;}
.x98{left:705.749979px;}
.x9b{left:709.379979px;}
.x69{left:712.154979px;}
.x81{left:722.069979px;}
.x7f{left:723.644979px;}
.x7e{left:727.469979px;}
.x82{left:731.099979px;}
.x7d{left:734.399979px;}
.x57{left:741.329979px;}
.x5d{left:747.674979px;}
.x5e{left:778.244979px;}
.x60{left:779.474979px;}
.x61{left:781.469979px;}
.x63{left:785.699979px;}
.xa5{left:820.447095px;}
.x22{left:840.794979px;}
.x3e{left:847.274979px;}
.x3f{left:853.349979px;}
.x19{left:862.694979px;}
.xa3{left:865.754979px;}
.x48{left:919.949979px;}
.xa0{left:936.329979px;}
.x49{left:940.379979px;}
.x28{left:944.324979px;}
.x2c{left:945.524979px;}
.x29{left:958.994979px;}
.x27{left:961.769979px;}
.x56{left:965.549979px;}
.x41{left:966.569979px;}
.x40{left:968.699979px;}
.x2a{left:971.444979px;}
.x2b{left:974.444979px;}
.x52{left:980.294979px;}
.x3d{left:1000.919979px;}
.x8c{left:1018.754979px;}
.x92{left:1027.574979px;}
.x8d{left:1029.824979px;}
.x51{left:1034.669979px;}
.x6d{left:1040.444979px;}
.x2d{left:1044.254979px;}
.x9{left:1047.027098px;}
.x77{left:1049.324979px;}
.x6e{left:1051.544979px;}
.x70{left:1057.169979px;}
.x6f{left:1061.294979px;}
.x76{left:1071.449979px;}
.x96{left:1106.024979px;}
.x47{left:1108.454979px;}
.x46{left:1125.224979px;}
.x7b{left:1127.744979px;}
.x44{left:1168.844979px;}
.x9d{left:1222.394979px;}
.x8e{left:1225.124979px;}
.x93{left:1226.744979px;}
.x94{left:1235.354979px;}
.x12{left:1236.899979px;}
.x8f{left:1238.249979px;}
.x91{left:1241.894979px;}
.x95{left:1243.919979px;}
.x71{left:1246.874979px;}
.x78{left:1248.449979px;}
.x90{left:1252.649979px;}
.x79{left:1257.074979px;}
.x72{left:1259.999979px;}
.x74{left:1263.599979px;}
.x7a{left:1265.624979px;}
.x75{left:1270.949979px;}
.x73{left:1274.369979px;}
.x11{left:1321.874979px;}
.x1c{left:1343.819979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:36.000000pt;}
.v3{vertical-align:38.133333pt;}
.v5{vertical-align:47.840000pt;}
.v1{vertical-align:56.000000pt;}
.v6{vertical-align:64.026667pt;}
.v4{vertical-align:121.600000pt;}
.ls80{letter-spacing:-6.825467pt;}
.ls7b{letter-spacing:-6.729333pt;}
.ls6e{letter-spacing:-6.547467pt;}
.ls32{letter-spacing:-4.964400pt;}
.ls73{letter-spacing:-4.710533pt;}
.ls81{letter-spacing:-4.133733pt;}
.ls78{letter-spacing:-3.719733pt;}
.ls6a{letter-spacing:-3.712000pt;}
.ls21{letter-spacing:-2.802667pt;}
.ls26{letter-spacing:-2.616400pt;}
.ls23{letter-spacing:-2.362667pt;}
.ls6f{letter-spacing:-2.360133pt;}
.ls1f{letter-spacing:-2.104000pt;}
.ls53{letter-spacing:-2.054533pt;}
.ls22{letter-spacing:-1.963733pt;}
.ls5b{letter-spacing:-1.890133pt;}
.ls56{letter-spacing:-1.826533pt;}
.ls1a{letter-spacing:-1.821733pt;}
.ls25{letter-spacing:-1.688000pt;}
.ls24{letter-spacing:-1.667467pt;}
.ls83{letter-spacing:-1.654800pt;}
.ls46{letter-spacing:-1.634267pt;}
.ls3c{letter-spacing:-1.631160pt;}
.ls1{letter-spacing:-1.622000pt;}
.ls3b{letter-spacing:-1.539200pt;}
.ls7a{letter-spacing:-1.538133pt;}
.ls44{letter-spacing:-1.481333pt;}
.ls2a{letter-spacing:-1.472000pt;}
.ls27{letter-spacing:-1.462933pt;}
.ls4f{letter-spacing:-1.409467pt;}
.ls1b{letter-spacing:-1.401333pt;}
.ls3{letter-spacing:-1.334400pt;}
.ls2e{letter-spacing:-1.282667pt;}
.ls40{letter-spacing:-1.249733pt;}
.lsc{letter-spacing:-1.158267pt;}
.ls1d{letter-spacing:-1.121067pt;}
.ls57{letter-spacing:-1.026133pt;}
.ls35{letter-spacing:-1.025067pt;}
.ls6{letter-spacing:-1.022000pt;}
.lsd{letter-spacing:-0.952000pt;}
.ls33{letter-spacing:-0.945600pt;}
.ls3a{letter-spacing:-0.897867pt;}
.ls7{letter-spacing:-0.885733pt;}
.ls19{letter-spacing:-0.840800pt;}
.ls89{letter-spacing:-0.820667pt;}
.ls2f{letter-spacing:-0.769067pt;}
.ls11{letter-spacing:-0.741333pt;}
.ls3f{letter-spacing:-0.740227pt;}
.ls2b{letter-spacing:-0.704000pt;}
.ls34{letter-spacing:-0.672933pt;}
.ls29{letter-spacing:-0.672000pt;}
.ls58{letter-spacing:-0.641333pt;}
.ls75{letter-spacing:-0.624000pt;}
.ls5{letter-spacing:-0.593067pt;}
.ls45{letter-spacing:-0.576800pt;}
.ls76{letter-spacing:-0.468000pt;}
.ls82{letter-spacing:-0.374920pt;}
.ls7f{letter-spacing:-0.288400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.042533pt;}
.ls36{letter-spacing:0.083733pt;}
.ls37{letter-spacing:0.110400pt;}
.ls2{letter-spacing:0.136267pt;}
.ls5c{letter-spacing:0.141840pt;}
.ls12{letter-spacing:0.247200pt;}
.ls20{letter-spacing:0.294560pt;}
.ls1e{letter-spacing:0.336320pt;}
.ls8{letter-spacing:0.340000pt;}
.ls5a{letter-spacing:0.354400pt;}
.ls7d{letter-spacing:0.384533pt;}
.ls38{letter-spacing:0.397627pt;}
.ls6b{letter-spacing:0.416000pt;}
.ls42{letter-spacing:0.444800pt;}
.ls88{letter-spacing:0.492800pt;}
.ls16{letter-spacing:0.518400pt;}
.ls4a{letter-spacing:0.528800pt;}
.ls74{letter-spacing:0.588933pt;}
.ls67{letter-spacing:0.641333pt;}
.ls55{letter-spacing:0.672933pt;}
.ls63{letter-spacing:0.673067pt;}
.ls9{letter-spacing:0.681333pt;}
.ls1c{letter-spacing:0.700667pt;}
.ls6c{letter-spacing:0.704000pt;}
.ls49{letter-spacing:0.705067pt;}
.ls5d{letter-spacing:0.709200pt;}
.lse{letter-spacing:0.748000pt;}
.ls72{letter-spacing:0.769067pt;}
.ls68{letter-spacing:0.834133pt;}
.ls77{letter-spacing:0.884000pt;}
.ls4{letter-spacing:0.889600pt;}
.ls39{letter-spacing:0.897867pt;}
.ls59{letter-spacing:0.945067pt;}
.ls13{letter-spacing:0.945600pt;}
.ls50{letter-spacing:0.960000pt;}
.ls5f{letter-spacing:0.961333pt;}
.ls2c{letter-spacing:0.968000pt;}
.ls64{letter-spacing:0.990533pt;}
.ls62{letter-spacing:1.009600pt;}
.ls14{letter-spacing:1.036933pt;}
.ls66{letter-spacing:1.040000pt;}
.ls31{letter-spacing:1.182000pt;}
.ls4b{letter-spacing:1.232933pt;}
.ls30{letter-spacing:1.336253pt;}
.ls2d{letter-spacing:1.412267pt;}
.ls41{letter-spacing:1.470840pt;}
.lsb{letter-spacing:1.498933pt;}
.ls54{letter-spacing:1.513867pt;}
.ls52{letter-spacing:1.538133pt;}
.ls28{letter-spacing:1.568000pt;}
.ls15{letter-spacing:1.629467pt;}
.ls61{letter-spacing:1.667467pt;}
.ls65{letter-spacing:1.795733pt;}
.ls51{letter-spacing:1.826533pt;}
.ls7e{letter-spacing:1.922667pt;}
.ls69{letter-spacing:1.988133pt;}
.lsa{letter-spacing:2.044000pt;}
.ls43{letter-spacing:2.075733pt;}
.ls6d{letter-spacing:2.112000pt;}
.ls79{letter-spacing:2.184000pt;}
.ls87{letter-spacing:2.334933pt;}
.ls5e{letter-spacing:28.706667pt;}
.ls47{letter-spacing:34.306667pt;}
.ls48{letter-spacing:34.353333pt;}
.ls84{letter-spacing:38.506667pt;}
.ls85{letter-spacing:38.553333pt;}
.lsf{letter-spacing:44.106667pt;}
.ls10{letter-spacing:44.153333pt;}
.ls86{letter-spacing:45.713333pt;}
.ls18{letter-spacing:46.906667pt;}
.ls17{letter-spacing:46.953333pt;}
.ls4c{letter-spacing:51.153333pt;}
.ls4e{letter-spacing:58.266667pt;}
.ls4d{letter-spacing:58.313333pt;}
.ls7c{letter-spacing:62.353333pt;}
.ls3d{letter-spacing:86.460000pt;}
.ls71{letter-spacing:90.686667pt;}
.ls60{letter-spacing:90.713333pt;}
.ls70{letter-spacing:90.733333pt;}
.ls8b{letter-spacing:95.987795pt;}
.ls8a{letter-spacing:96.000360pt;}
.ws2{word-spacing:-57.946400pt;}
.ws15{word-spacing:-54.372000pt;}
.ws46{word-spacing:-54.135600pt;}
.ws44{word-spacing:-53.750667pt;}
.ws45{word-spacing:-53.568240pt;}
.ws13{word-spacing:-53.426400pt;}
.ws20{word-spacing:-53.396267pt;}
.ws29{word-spacing:-52.480800pt;}
.ws64{word-spacing:-51.771600pt;}
.ws65{word-spacing:-50.307200pt;}
.ws28{word-spacing:-48.462000pt;}
.ws39{word-spacing:-48.002400pt;}
.ws47{word-spacing:-43.452267pt;}
.ws34{word-spacing:-41.039067pt;}
.ws32{word-spacing:-40.541333pt;}
.ws33{word-spacing:-40.365067pt;}
.ws35{word-spacing:-39.836267pt;}
.ws66{word-spacing:-36.273467pt;}
.ws31{word-spacing:-35.584000pt;}
.ws16{word-spacing:-35.107600pt;}
.ws30{word-spacing:-34.515067pt;}
.ws2f{word-spacing:-33.953067pt;}
.ws18{word-spacing:-33.508267pt;}
.ws14{word-spacing:-33.478133pt;}
.ws6{word-spacing:-32.915200pt;}
.ws67{word-spacing:-32.604267pt;}
.ws1d{word-spacing:-32.370800pt;}
.ws1c{word-spacing:-31.700267pt;}
.ws1a{word-spacing:-31.670133pt;}
.ws19{word-spacing:-30.829333pt;}
.ws1e{word-spacing:-30.549067pt;}
.ws1b{word-spacing:-30.268800pt;}
.ws2c{word-spacing:-29.886133pt;}
.ws1f{word-spacing:-29.596267pt;}
.ws2b{word-spacing:-29.385893pt;}
.ws43{word-spacing:-28.346933pt;}
.ws3a{word-spacing:-28.090400pt;}
.ws41{word-spacing:-27.962133pt;}
.ws37{word-spacing:-27.548667pt;}
.ws42{word-spacing:-27.449067pt;}
.ws3c{word-spacing:-25.952000pt;}
.ws38{word-spacing:-24.468267pt;}
.ws36{word-spacing:-24.438133pt;}
.ws3d{word-spacing:-23.552667pt;}
.ws3e{word-spacing:-23.264267pt;}
.ws2e{word-spacing:-23.196973pt;}
.ws3{word-spacing:-22.816133pt;}
.ws55{word-spacing:-22.495200pt;}
.ws3f{word-spacing:-22.399067pt;}
.ws3b{word-spacing:-22.383600pt;}
.ws5c{word-spacing:-22.110667pt;}
.ws69{word-spacing:-22.057600pt;}
.ws17{word-spacing:-21.726133pt;}
.ws1{word-spacing:-21.696000pt;}
.ws2a{word-spacing:-21.053200pt;}
.ws2d{word-spacing:-20.985907pt;}
.ws5d{word-spacing:-20.476400pt;}
.ws40{word-spacing:-19.899600pt;}
.ws54{word-spacing:-19.794667pt;}
.ws48{word-spacing:-19.687200pt;}
.ws57{word-spacing:-19.603067pt;}
.ws68{word-spacing:-19.285330pt;}
.ws49{word-spacing:-19.014133pt;}
.ws61{word-spacing:-17.592400pt;}
.ws53{word-spacing:-17.434533pt;}
.ws56{word-spacing:-17.015600pt;}
.ws52{word-spacing:-16.576000pt;}
.ws4c{word-spacing:-16.482267pt;}
.ws4a{word-spacing:-16.289867pt;}
.ws8{word-spacing:-15.398133pt;}
.ws9{word-spacing:-15.368000pt;}
.ws51{word-spacing:-15.168000pt;}
.ws4b{word-spacing:-15.135467pt;}
.ws5b{word-spacing:-14.996800pt;}
.ws60{word-spacing:-14.900667pt;}
.ws22{word-spacing:-14.494133pt;}
.ws5a{word-spacing:-14.464000pt;}
.wsd{word-spacing:-14.239867pt;}
.ws59{word-spacing:-13.936000pt;}
.ws21{word-spacing:-12.826667pt;}
.ws4f{word-spacing:-12.168000pt;}
.ws4d{word-spacing:-11.782133pt;}
.ws50{word-spacing:-11.752000pt;}
.ws26{word-spacing:-11.386400pt;}
.ws25{word-spacing:-10.912000pt;}
.ws58{word-spacing:-10.774400pt;}
.ws4e{word-spacing:-10.752000pt;}
.ws24{word-spacing:-9.240000pt;}
.ws23{word-spacing:-7.896000pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:307.379067pt;}
.ws63{word-spacing:330.862000pt;}
.ws5f{word-spacing:331.812800pt;}
.ws10{word-spacing:365.657333pt;}
.ws7{word-spacing:365.722667pt;}
.wsb{word-spacing:391.222400pt;}
.ws12{word-spacing:391.275733pt;}
.wsa{word-spacing:405.081333pt;}
.ws11{word-spacing:405.084933pt;}
.wsf{word-spacing:554.542933pt;}
.ws5{word-spacing:554.596267pt;}
.ws4{word-spacing:646.763733pt;}
.wse{word-spacing:646.817067pt;}
.ws62{word-spacing:964.855733pt;}
.ws5e{word-spacing:965.913200pt;}
.ws27{word-spacing:1500.025640pt;}
._10{margin-left:-26.886669pt;}
._14{margin-left:-22.209067pt;}
._12{margin-left:-20.531067pt;}
._13{margin-left:-18.192533pt;}
._11{margin-left:-12.264799pt;}
._d{margin-left:-11.172933pt;}
._7{margin-left:-10.158267pt;}
._e{margin-left:-8.434934pt;}
._8{margin-left:-7.328400pt;}
._4{margin-left:-5.760000pt;}
._5{margin-left:-4.358800pt;}
._0{margin-left:-3.434666pt;}
._1{margin-left:-2.060800pt;}
._2{margin-left:-0.896000pt;}
._3{width:1.683999pt;}
._6{width:3.392668pt;}
._b{width:4.342267pt;}
._c{width:5.274266pt;}
._17{width:6.172278pt;}
._16{width:7.898397pt;}
._15{width:8.831467pt;}
._a{width:374.439334pt;}
._9{width:434.811734pt;}
._f{width:2475.442133pt;}
.fs1b{font-size:28.000000pt;}
.fs1a{font-size:28.133333pt;}
.fs9{font-size:37.333332pt;}
.fs6{font-size:42.666680pt;}
.fs1c{font-size:44.000000pt;}
.fs19{font-size:44.133333pt;}
.fs27{font-size:52.000000pt;}
.fs26{font-size:52.133333pt;}
.fs8{font-size:53.333320pt;}
.fs4{font-size:64.000000pt;}
.fs12{font-size:64.133333pt;}
.fs11{font-size:68.000000pt;}
.fs10{font-size:68.133333pt;}
.fs1d{font-size:76.133333pt;}
.fs28{font-size:84.000000pt;}
.fsd{font-size:84.133333pt;}
.fs2d{font-size:85.333320pt;}
.fs5{font-size:88.800000pt;}
.fs3{font-size:96.000000pt;}
.fsb{font-size:96.133333pt;}
.fs2f{font-size:97.600000pt;}
.fs2{font-size:99.555560pt;}
.fs2e{font-size:107.733120pt;}
.fsc{font-size:108.133333pt;}
.fs23{font-size:108.266667pt;}
.fs1e{font-size:128.133333pt;}
.fs1f{font-size:128.266667pt;}
.fs7{font-size:134.400000pt;}
.fs17{font-size:140.133333pt;}
.fs18{font-size:140.266667pt;}
.fs2b{font-size:144.133333pt;}
.fs2c{font-size:144.266667pt;}
.fs14{font-size:148.133333pt;}
.fsf{font-size:148.266667pt;}
.fs1{font-size:149.333320pt;}
.fs2a{font-size:164.133333pt;}
.fs29{font-size:164.266667pt;}
.fs0{font-size:171.733320pt;}
.fs21{font-size:176.133333pt;}
.fs20{font-size:176.266667pt;}
.fs25{font-size:192.266667pt;}
.fs22{font-size:212.266667pt;}
.fs24{font-size:212.400000pt;}
.fs13{font-size:236.266667pt;}
.fse{font-size:236.400000pt;}
.fsa{font-size:256.400000pt;}
.fs15{font-size:300.400000pt;}
.fs16{font-size:320.400000pt;}
.y10c{bottom:-683.173333pt;}
.y10f{bottom:-682.600000pt;}
.yf5{bottom:-576.933333pt;}
.y10b{bottom:-550.266667pt;}
.y10e{bottom:-549.706667pt;}
.y10a{bottom:-538.226667pt;}
.y10d{bottom:-537.666667pt;}
.y116{bottom:-535.466667pt;}
.y8d{bottom:-524.266667pt;}
.y8c{bottom:-495.240000pt;}
.y106{bottom:-490.626667pt;}
.y109{bottom:-488.226667pt;}
.y115{bottom:-485.560000pt;}
.y117{bottom:-434.293333pt;}
.y1c{bottom:-410.906667pt;}
.y1b{bottom:-401.400000pt;}
.y114{bottom:-378.440000pt;}
.y85{bottom:-367.000000pt;}
.y155{bottom:-362.200000pt;}
.y105{bottom:-357.733333pt;}
.y108{bottom:-355.293333pt;}
.y1d{bottom:-347.226667pt;}
.y104{bottom:-345.733333pt;}
.y107{bottom:-343.293333pt;}
.y84{bottom:-337.960000pt;}
.y113{bottom:-326.506667pt;}
.y24{bottom:-322.560000pt;}
.y23{bottom:-313.066667pt;}
.y1a{bottom:-309.773333pt;}
.y17{bottom:-290.760000pt;}
.y19{bottom:-290.733333pt;}
.y103{bottom:-290.200000pt;}
.y112{bottom:-275.906667pt;}
.y8b{bottom:-272.360000pt;}
.y18{bottom:-271.706667pt;}
.yf4{bottom:-247.706667pt;}
.y8a{bottom:-243.333333pt;}
.y8e{bottom:-238.666667pt;}
.y22{bottom:-221.426667pt;}
.y89{bottom:-214.293333pt;}
.yf3{bottom:-213.893333pt;}
.y1f{bottom:-202.440000pt;}
.y21{bottom:-202.400000pt;}
.y88{bottom:-188.333333pt;}
.y20{bottom:-183.373333pt;}
.y87{bottom:-159.306667pt;}
.y154{bottom:-159.200000pt;}
.y102{bottom:-157.333333pt;}
.y101{bottom:-145.293333pt;}
.y86{bottom:-130.266667pt;}
.y153{bottom:-130.166667pt;}
.y156{bottom:-112.533333pt;}
.y110{bottom:-107.800000pt;}
.y111{bottom:-70.333333pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:1.000000pt;}
.yb{bottom:9.545720pt;}
.y14{bottom:11.300000pt;}
.y65{bottom:20.166667pt;}
.ya{bottom:24.961993pt;}
.y13{bottom:27.133333pt;}
.y5{bottom:29.816587pt;}
.yc6{bottom:30.033333pt;}
.y142{bottom:32.366667pt;}
.y70{bottom:33.366667pt;}
.yb0{bottom:39.000000pt;}
.y15a{bottom:43.866667pt;}
.y81{bottom:46.366667pt;}
.y66{bottom:46.866667pt;}
.y12a{bottom:48.400000pt;}
.y64{bottom:49.200000pt;}
.ydd{bottom:50.166667pt;}
.y2a{bottom:51.833333pt;}
.y136{bottom:53.833333pt;}
.y139{bottom:54.400000pt;}
.y6f{bottom:55.466667pt;}
.y29{bottom:61.333333pt;}
.yec{bottom:61.400000pt;}
.y6e{bottom:63.466667pt;}
.y80{bottom:65.400000pt;}
.yaf{bottom:68.033333pt;}
.y169{bottom:71.333333pt;}
.y6d{bottom:71.500000pt;}
.y129{bottom:73.433333pt;}
.y63{bottom:78.233333pt;}
.yf0{bottom:79.200000pt;}
.y9{bottom:82.426640pt;}
.y152{bottom:87.666667pt;}
.y60{bottom:89.666667pt;}
.ya1{bottom:90.933333pt;}
.y48{bottom:97.666667pt;}
.yda{bottom:98.766667pt;}
.y128{bottom:99.466667pt;}
.yd0{bottom:99.700000pt;}
.ye7{bottom:100.233333pt;}
.y7a{bottom:101.866667pt;}
.y3b{bottom:106.733333pt;}
.y62{bottom:107.266667pt;}
.yea{bottom:108.233333pt;}
.y151{bottom:113.700000pt;}
.yfb{bottom:114.066667pt;}
.y79{bottom:114.866667pt;}
.yc3{bottom:115.700000pt;}
.yc4{bottom:119.866667pt;}
.y174{bottom:120.725200pt;}
.y168{bottom:123.400000pt;}
.y83{bottom:124.133333pt;}
.y127{bottom:124.500000pt;}
.yba{bottom:124.566667pt;}
.yae{bottom:126.733333pt;}
.y100{bottom:127.300000pt;}
.y5f{bottom:131.733333pt;}
.y47{bottom:133.733333pt;}
.y3a{bottom:135.773333pt;}
.y61{bottom:136.306667pt;}
.y150{bottom:139.733333pt;}
.yfa{bottom:140.093333pt;}
.ycf{bottom:141.733333pt;}
.y17f{bottom:143.701200pt;}
.y67{bottom:143.973333pt;}
.y175{bottom:144.513733pt;}
.yd9{bottom:145.733333pt;}
.y126{bottom:150.560000pt;}
.yff{bottom:152.333333pt;}
.yb9{bottom:152.640000pt;}
.y28{bottom:152.973333pt;}
.yad{bottom:153.773333pt;}
.y7{bottom:155.130533pt;}
.y167{bottom:158.440000pt;}
.y11f{bottom:160.106667pt;}
.y5e{bottom:161.773333pt;}
.yc2{bottom:164.773333pt;}
.y39{bottom:164.800000pt;}
.yf9{bottom:165.133333pt;}
.y6{bottom:167.930533pt;}
.ye9{bottom:168.000000pt;}
.y46{bottom:168.773333pt;}
.y173{bottom:169.845200pt;}
.y25{bottom:171.933333pt;}
.y27{bottom:172.000000pt;}
.yd8{bottom:173.800000pt;}
.yc{bottom:175.159467pt;}
.y17e{bottom:177.205300pt;}
.yfe{bottom:178.360000pt;}
.y14f{bottom:178.800000pt;}
.yac{bottom:179.800000pt;}
.yb8{bottom:181.666667pt;}
.y78{bottom:184.400000pt;}
.y135{bottom:186.733333pt;}
.y138{bottom:187.306667pt;}
.y4{bottom:188.596933pt;}
.y26{bottom:191.026667pt;}
.yf8{bottom:191.173333pt;}
.y38{bottom:193.840000pt;}
.y12{bottom:195.560000pt;}
.y77{bottom:197.440000pt;}
.yb1{bottom:197.733333pt;}
.yce{bottom:197.840000pt;}
.y9f{bottom:198.426667pt;}
.y134{bottom:198.773333pt;}
.y137{bottom:199.333333pt;}
.y166{bottom:200.506667pt;}
.y140{bottom:201.533333pt;}
.y172{bottom:201.845200pt;}
.yfd{bottom:203.400000pt;}
.y5d{bottom:203.840000pt;}
.y145{bottom:203.973333pt;}
.y14e{bottom:204.840000pt;}
.yab{bottom:206.840000pt;}
.y17d{bottom:209.205200pt;}
.yb7{bottom:210.706667pt;}
.yd7{bottom:210.840000pt;}
.yc1{bottom:213.840000pt;}
.yf7{bottom:216.200000pt;}
.y45{bottom:218.840000pt;}
.y3{bottom:220.596933pt;}
.y37{bottom:222.906667pt;}
.ye5{bottom:223.560000pt;}
.y9e{bottom:227.466667pt;}
.yfc{bottom:229.440000pt;}
.y14d{bottom:230.866667pt;}
.y171{bottom:231.285200pt;}
.y11{bottom:233.600000pt;}
.y15d{bottom:233.840000pt;}
.yaa{bottom:233.866667pt;}
.y82{bottom:238.173333pt;}
.y17c{bottom:238.645200pt;}
.yb6{bottom:239.733333pt;}
.ycd{bottom:239.866667pt;}
.yf6{bottom:242.226667pt;}
.y5c{bottom:245.893333pt;}
.y130{bottom:246.400000pt;}
.y133{bottom:248.840000pt;}
.y13f{bottom:251.440000pt;}
.y165{bottom:253.560000pt;}
.y44{bottom:253.893333pt;}
.ye0{bottom:256.533333pt;}
.y14c{bottom:256.893333pt;}
.yd6{bottom:257.893333pt;}
.y170{bottom:260.725200pt;}
.ya9{bottom:260.893333pt;}
.ybd{bottom:263.893333pt;}
.y16a{bottom:266.640000pt;}
.y17b{bottom:268.085200pt;}
.yb5{bottom:268.760000pt;}
.ye4{bottom:273.133333pt;}
.y10{bottom:275.666667pt;}
.y14b{bottom:282.933333pt;}
.y16{bottom:286.506667pt;}
.ya8{bottom:287.933333pt;}
.y5b{bottom:288.933333pt;}
.y43{bottom:289.933333pt;}
.y16f{bottom:290.165200pt;}
.y4f{bottom:290.506667pt;}
.yd5{bottom:292.960000pt;}
.ycc{bottom:295.960000pt;}
.y17a{bottom:297.525200pt;}
.y141{bottom:302.693333pt;}
.ybc{bottom:304.960000pt;}
.y164{bottom:306.626667pt;}
.yc0{bottom:312.973333pt;}
.ya7{bottom:314.973333pt;}
.yde{bottom:317.133333pt;}
.ye8{bottom:318.466667pt;}
.y4e{bottom:319.533333pt;}
.y16e{bottom:320.725190pt;}
.y14a{bottom:322.000000pt;}
.ye3{bottom:322.933333pt;}
.y179{bottom:326.965210pt;}
.yd4{bottom:330.000000pt;}
.y5a{bottom:331.000000pt;}
.y7f{bottom:331.040000pt;}
.y76{bottom:332.533333pt;}
.y6b{bottom:337.400000pt;}
.ycb{bottom:338.000000pt;}
.y42{bottom:339.000000pt;}
.ya6{bottom:342.026667pt;}
.yb2{bottom:342.840000pt;}
.y31{bottom:345.026667pt;}
.y4d{bottom:347.560000pt;}
.y149{bottom:348.026667pt;}
.y95{bottom:348.133333pt;}
.y75{bottom:351.560000pt;}
.yef{bottom:353.026667pt;}
.y16d{bottom:353.845200pt;}
.y97{bottom:355.693333pt;}
.y178{bottom:356.405200pt;}
.y53{bottom:358.026667pt;}
.y13e{bottom:358.640000pt;}
.y163{bottom:359.693333pt;}
.y144{bottom:362.933333pt;}
.y159{bottom:363.933333pt;}
.ya5{bottom:369.066667pt;}
.y59{bottom:374.066667pt;}
.y41{bottom:375.066667pt;}
.ye2{bottom:375.106667pt;}
.ydf{bottom:376.106667pt;}
.y4c{bottom:376.600000pt;}
.yd3{bottom:377.066667pt;}
.y94{bottom:377.173333pt;}
.y12f{bottom:379.306667pt;}
.y36{bottom:380.440000pt;}
.y132{bottom:381.733333pt;}
.y96{bottom:384.733333pt;}
.y30{bottom:385.066667pt;}
.y16c{bottom:386.965200pt;}
.y12e{bottom:391.333333pt;}
.ye6{bottom:391.866667pt;}
.y143{bottom:391.973333pt;}
.y158{bottom:392.973333pt;}
.y131{bottom:393.733333pt;}
.yca{bottom:394.106667pt;}
.y7e{bottom:395.133333pt;}
.ya4{bottom:396.106667pt;}
.ybb{bottom:399.106667pt;}
.y148{bottom:400.106667pt;}
.yf{bottom:400.466667pt;}
.y2{bottom:402.863020pt;}
.y93{bottom:405.200000pt;}
.y4b{bottom:405.666667pt;}
.y35{bottom:409.506667pt;}
.y13d{bottom:410.506667pt;}
.ybf{bottom:411.106667pt;}
.y52{bottom:412.106667pt;}
.y162{bottom:412.800000pt;}
.y58{bottom:416.133333pt;}
.yee{bottom:419.133333pt;}
.y157{bottom:422.040000pt;}
.ya3{bottom:422.133333pt;}
.y40{bottom:424.133333pt;}
.y125{bottom:425.226667pt;}
.y147{bottom:426.133333pt;}
.y92{bottom:434.266667pt;}
.y4a{bottom:434.706667pt;}
.y15c{bottom:436.840000pt;}
.y6c{bottom:437.360000pt;}
.ye{bottom:437.533333pt;}
.y34{bottom:438.533333pt;}
.y2f{bottom:439.173333pt;}
.y177{bottom:444.653383pt;}
.y12d{bottom:446.800000pt;}
.ybe{bottom:447.173333pt;}
.yc9{bottom:449.173333pt;}
.y9d{bottom:450.333333pt;}
.y124{bottom:451.306667pt;}
.y8{bottom:452.022267pt;}
.y51{bottom:452.173333pt;}
.yb3{bottom:453.173333pt;}
.y72{bottom:453.440000pt;}
.y1{bottom:454.383020pt;}
.y54{bottom:456.226667pt;}
.y7d{bottom:458.200000pt;}
.y57{bottom:459.173333pt;}
.y3f{bottom:460.173333pt;}
.y13c{bottom:461.106667pt;}
.y91{bottom:463.306667pt;}
.y49{bottom:463.733333pt;}
.y55{bottom:463.773333pt;}
.y161{bottom:465.866667pt;}
.y15b{bottom:465.893333pt;}
.y33{bottom:467.560000pt;}
.y6a{bottom:469.106667pt;}
.y71{bottom:472.440000pt;}
.y123{bottom:476.333333pt;}
.y146{bottom:477.200000pt;}
.ydc{bottom:478.400000pt;}
.y176{bottom:478.573333pt;}
.y9c{bottom:479.360000pt;}
.y1e{bottom:480.773333pt;}
.y15e{bottom:483.533333pt;}
.ya0{bottom:484.026667pt;}
.yed{bottom:484.200000pt;}
.y16b{bottom:487.890933pt;}
.y11e{bottom:489.360000pt;}
.ye1{bottom:490.200000pt;}
.yc8{bottom:491.226667pt;}
.y50{bottom:492.226667pt;}
.y90{bottom:492.333333pt;}
.y69{bottom:492.800000pt;}
.y2e{bottom:493.226667pt;}
.y3e{bottom:496.226667pt;}
.y32{bottom:496.600000pt;}
.yd2{bottom:497.226667pt;}
.y56{bottom:501.226667pt;}
.y122{bottom:502.373333pt;}
.y3d{bottom:502.506667pt;}
.ya2{bottom:503.226667pt;}
.yd{bottom:506.640000pt;}
.y9b{bottom:508.400000pt;}
.yb4{bottom:516.600000pt;}
.y11b{bottom:517.626667pt;}
.y8f{bottom:521.360000pt;}
.y11d{bottom:523.106667pt;}
.y121{bottom:527.400000pt;}
.y7c{bottom:527.560000pt;}
.y3c{bottom:531.560000pt;}
.y9a{bottom:534.360000pt;}
.y11a{bottom:539.666667pt;}
.y74{bottom:541.360000pt;}
.yc5{bottom:544.466667pt;}
.yeb{bottom:549.893333pt;}
.y7b{bottom:550.600000pt;}
.y120{bottom:553.440000pt;}
.y73{bottom:560.400000pt;}
.y119{bottom:562.693333pt;}
.y99{bottom:563.400000pt;}
.y2d{bottom:564.266667pt;}
.yf2{bottom:578.360000pt;}
.y12c{bottom:579.693333pt;}
.y118{bottom:584.733333pt;}
.y12b{bottom:591.733333pt;}
.y98{bottom:592.440000pt;}
.y15{bottom:595.640000pt;}
.yd1{bottom:596.733333pt;}
.yf1{bottom:616.440000pt;}
.y11c{bottom:619.266667pt;}
.y2c{bottom:627.333333pt;}
.y68{bottom:628.200000pt;}
.y13a{bottom:629.200000pt;}
.ydb{bottom:634.733333pt;}
.y15f{bottom:645.360000pt;}
.y2b{bottom:666.173333pt;}
.y13b{bottom:666.666667pt;}
.y160{bottom:697.960000pt;}
.h30{height:20.097656pt;}
.h2f{height:20.193359pt;}
.h9{height:26.796874pt;}
.h31{height:27.849609pt;}
.h7{height:29.020842pt;}
.h5{height:30.625010pt;}
.h33{height:31.582031pt;}
.h2e{height:31.677734pt;}
.h52{height:37.324219pt;}
.h50{height:37.419922pt;}
.h8{height:38.333324pt;}
.h54{height:38.720703pt;}
.h51{height:38.819987pt;}
.h10{height:45.937500pt;}
.h17{height:46.033203pt;}
.h48{height:47.656250pt;}
.h3f{height:47.755534pt;}
.h14{height:48.808594pt;}
.h13{height:48.904297pt;}
.h59{height:51.853320pt;}
.h5a{height:53.244141pt;}
.h34{height:54.646484pt;}
.h55{height:55.427148pt;}
.h56{height:55.873242pt;}
.h57{height:60.292969pt;}
.hf{height:60.388672pt;}
.h58{height:61.154297pt;}
.h4f{height:61.251367pt;}
.h67{height:61.333324pt;}
.h4e{height:62.648112pt;}
.h32{height:63.656250pt;}
.h4{height:63.738281pt;}
.h35{height:63.788867pt;}
.h65{height:65.250000pt;}
.h5b{height:65.531250pt;}
.h53{height:65.667773pt;}
.ha{height:68.906250pt;}
.h66{height:69.000000pt;}
.h1a{height:69.001953pt;}
.h5c{height:69.987695pt;}
.h69{height:70.054688pt;}
.h1e{height:71.583659pt;}
.hd{height:73.227561pt;}
.h1f{height:73.414323pt;}
.he{height:77.615234pt;}
.h46{height:78.724023pt;}
.h47{height:78.821094pt;}
.h3{height:81.937500pt;}
.h68{height:83.062236pt;}
.h18{height:86.877630pt;}
.h19{height:86.904297pt;}
.h16{height:86.930964pt;}
.h15{height:87.037630pt;}
.h39{height:91.970703pt;}
.h3a{height:92.066406pt;}
.h45{height:93.284570pt;}
.h36{height:95.411784pt;}
.h4a{height:95.511068pt;}
.h25{height:95.616992pt;}
.h3c{height:98.433398pt;}
.h2d{height:100.679688pt;}
.h63{height:103.550781pt;}
.h6{height:103.622400pt;}
.h29{height:104.347331pt;}
.h2c{height:104.446615pt;}
.h62{height:104.933008pt;}
.h21{height:106.326172pt;}
.h12{height:106.421875pt;}
.h1d{height:107.845117pt;}
.h1c{height:107.942188pt;}
.h3e{height:110.304362pt;}
.h3d{height:110.403646pt;}
.h4b{height:110.720508pt;}
.h61{height:119.493555pt;}
.h60{height:119.590625pt;}
.h2{height:123.666670pt;}
.h41{height:126.519531pt;}
.h38{height:127.445117pt;}
.h3b{height:127.577734pt;}
.h42{height:131.153971pt;}
.h40{height:131.253255pt;}
.h4d{height:131.335547pt;}
.h1{height:132.406390pt;}
.h2b{height:139.380664pt;}
.h2a{height:139.513281pt;}
.h4c{height:143.167318pt;}
.h5f{height:146.762500pt;}
.h49{height:146.854687pt;}
.h23{height:147.337695pt;}
.h22{height:147.470313pt;}
.h26{height:151.814063pt;}
.h44{height:152.359375pt;}
.h1b{height:163.356250pt;}
.h11{height:163.448438pt;}
.h43{height:175.319922pt;}
.hc{height:177.276563pt;}
.h5d{height:180.868620pt;}
.h5e{height:181.001953pt;}
.h24{height:190.601953pt;}
.h64{height:221.526563pt;}
.h27{height:223.686523pt;}
.h37{height:224.960937pt;}
.h20{height:225.087891pt;}
.h28{height:238.579102pt;}
.h0{height:540.000000pt;}
.hb{height:720.000000pt;}
.w0{width:960.000000pt;}
.w2{width:1279.999981pt;}
.w1{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x8b{left:30.266648pt;}
.x6{left:31.708667pt;}
.x89{left:32.766648pt;}
.x7{left:41.724413pt;}
.x25{left:51.266648pt;}
.x4f{left:64.733314pt;}
.xa2{left:65.633314pt;}
.x83{left:69.833314pt;}
.x5{left:71.714983pt;}
.x2f{left:73.033314pt;}
.x36{left:74.066648pt;}
.x4d{left:80.233314pt;}
.x38{left:92.266648pt;}
.x53{left:93.599981pt;}
.x13{left:97.666648pt;}
.x62{left:101.233314pt;}
.x88{left:114.233314pt;}
.x64{left:119.066648pt;}
.x26{left:121.666648pt;}
.x4e{left:122.699981pt;}
.x8a{left:126.399981pt;}
.x2e{left:130.533314pt;}
.x6c{left:132.199981pt;}
.x9c{left:139.026648pt;}
.x3b{left:142.959981pt;}
.x58{left:145.693314pt;}
.x84{left:149.666648pt;}
.x31{left:154.266648pt;}
.x37{left:169.093314pt;}
.xa4{left:170.466648pt;}
.x3a{left:177.439981pt;}
.x59{left:193.839981pt;}
.xb{left:196.799981pt;}
.x35{left:201.839981pt;}
.x8{left:203.902933pt;}
.x39{left:213.693314pt;}
.x5c{left:222.573314pt;}
.x6b{left:228.333314pt;}
.x5a{left:232.573314pt;}
.xd{left:237.333314pt;}
.x34{left:240.293314pt;}
.x42{left:244.839981pt;}
.x23{left:252.399981pt;}
.x5b{left:254.306648pt;}
.x1{left:255.412167pt;}
.x1e{left:265.106648pt;}
.x1a{left:271.866648pt;}
.x2{left:283.525667pt;}
.x15{left:284.559981pt;}
.x14{left:286.173314pt;}
.x54{left:297.106648pt;}
.x1d{left:299.639981pt;}
.x9e{left:303.639981pt;}
.x4{left:309.931667pt;}
.x9f{left:334.666648pt;}
.x3{left:339.803567pt;}
.x55{left:345.133314pt;}
.x4a{left:393.359981pt;}
.x10{left:396.399981pt;}
.x4c{left:397.359981pt;}
.x32{left:398.773314pt;}
.xf{left:401.733314pt;}
.x4b{left:402.733314pt;}
.x33{left:415.359981pt;}
.x87{left:416.693314pt;}
.x86{left:424.893314pt;}
.x24{left:426.133314pt;}
.x3c{left:433.506648pt;}
.x68{left:435.106648pt;}
.x97{left:439.239981pt;}
.x67{left:444.173314pt;}
.x1b{left:445.639981pt;}
.x45{left:451.399981pt;}
.x7c{left:457.799981pt;}
.x43{left:459.106648pt;}
.x5f{left:475.333314pt;}
.xa1{left:497.266648pt;}
.xe{left:525.973314pt;}
.x65{left:536.226648pt;}
.x6a{left:551.573314pt;}
.xa{left:557.297867pt;}
.x30{left:565.666648pt;}
.xc{left:574.173314pt;}
.x85{left:577.399981pt;}
.x1f{left:582.999981pt;}
.x20{left:588.333314pt;}
.x50{left:594.999981pt;}
.x66{left:596.693314pt;}
.x21{left:598.359981pt;}
.x16{left:602.466648pt;}
.x9a{left:603.466648pt;}
.x17{left:607.799981pt;}
.x18{left:617.839981pt;}
.x80{left:622.759981pt;}
.x99{left:623.933314pt;}
.x98{left:627.333314pt;}
.x9b{left:630.559981pt;}
.x69{left:633.026648pt;}
.x81{left:641.839981pt;}
.x7f{left:643.239981pt;}
.x7e{left:646.639981pt;}
.x82{left:649.866648pt;}
.x7d{left:652.799981pt;}
.x57{left:658.959981pt;}
.x5d{left:664.599981pt;}
.x5e{left:691.773314pt;}
.x60{left:692.866648pt;}
.x61{left:694.639981pt;}
.x63{left:698.399981pt;}
.xa5{left:729.286307pt;}
.x22{left:747.373314pt;}
.x3e{left:753.133314pt;}
.x3f{left:758.533314pt;}
.x19{left:766.839981pt;}
.xa3{left:769.559981pt;}
.x48{left:817.733314pt;}
.xa0{left:832.293314pt;}
.x49{left:835.893314pt;}
.x28{left:839.399981pt;}
.x2c{left:840.466648pt;}
.x29{left:852.439981pt;}
.x27{left:854.906648pt;}
.x56{left:858.266648pt;}
.x41{left:859.173314pt;}
.x40{left:861.066648pt;}
.x2a{left:863.506648pt;}
.x2b{left:866.173314pt;}
.x52{left:871.373314pt;}
.x3d{left:889.706648pt;}
.x8c{left:905.559981pt;}
.x92{left:913.399981pt;}
.x8d{left:915.399981pt;}
.x51{left:919.706648pt;}
.x6d{left:924.839981pt;}
.x2d{left:928.226648pt;}
.x9{left:930.690753pt;}
.x77{left:932.733314pt;}
.x6e{left:934.706648pt;}
.x70{left:939.706648pt;}
.x6f{left:943.373314pt;}
.x76{left:952.399981pt;}
.x96{left:983.133314pt;}
.x47{left:985.293314pt;}
.x46{left:1000.199981pt;}
.x7b{left:1002.439981pt;}
.x44{left:1038.973314pt;}
.x9d{left:1086.573314pt;}
.x8e{left:1088.999981pt;}
.x93{left:1090.439981pt;}
.x94{left:1098.093314pt;}
.x12{left:1099.466648pt;}
.x8f{left:1100.666648pt;}
.x91{left:1103.906648pt;}
.x95{left:1105.706648pt;}
.x71{left:1108.333314pt;}
.x78{left:1109.733314pt;}
.x90{left:1113.466648pt;}
.x79{left:1117.399981pt;}
.x72{left:1119.999981pt;}
.x74{left:1123.199981pt;}
.x7a{left:1124.999981pt;}
.x75{left:1129.733314pt;}
.x73{left:1132.773314pt;}
.x11{left:1174.999981pt;}
.x1c{left:1194.506648pt;}
}




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