
    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_856d90d28ac724eb634ba755.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_7b7fcfd7d22c2b58124c163a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.166000;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_55f8e3e67ed3e9b554a9c061.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104492;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_9679b55a77e7efc5fab0b8a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_a186534a6cd38dc915f81a1e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.170000;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_7e9887b5bf992d8db4ae0ad1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966797;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_1fda3bce6ad9a730421c52b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_708be637a8e357b49b8af7a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5a6fcf913904937300176ae5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.170000;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_cc7f5175518d49151d769a80.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.166000;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_8f278e24fdf837be9f62a054.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.157000;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_ab0786bb98b93293164e2b39.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.168000;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_7902765f4144fe09ea35e430.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.064941;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_1045d182c940f1f9c83e63dd.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.135000;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_97c10c390412133e2fbdc515.woff2')format("woff");}.fff{font-family:fff;line-height:1.182000;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_01f0ae168d597c1351e35a1e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.131000;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_6e71949e9bff917ab7d08699.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.966797;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_bcad4888e73f7e073e10ec55.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.996000;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_c5763a4772d0941f57aa5cf9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.131000;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_5afe568269501050960e57db.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.961914;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_1246205f4f0e20bab969ccaf.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.916016;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_95fdda717b89dddd72776b94.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.946777;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_820854f35fa54ba5fccaf4ec.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.135000;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_dcbaee90d19f73a61acc8088.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.065000;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_18b9e79082c6ec60390aa43f.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.157000;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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:-45.000000px;}
.v2{vertical-align:-27.000000px;}
.v3{vertical-align:-18.060000px;}
.v7{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.400000px;}
.v8{vertical-align:18.000000px;}
.v1{vertical-align:27.000000px;}
.va{vertical-align:35.040000px;}
.v4{vertical-align:36.180000px;}
.v5{vertical-align:45.000000px;}
.ls2a{letter-spacing:-2.832000px;}
.ls48{letter-spacing:-2.814000px;}
.ls2f{letter-spacing:-2.682000px;}
.ls2d{letter-spacing:-2.622000px;}
.ls2c{letter-spacing:-2.472000px;}
.ls13{letter-spacing:-2.286000px;}
.ls29{letter-spacing:-1.974000px;}
.ls22{letter-spacing:-1.836000px;}
.lse{letter-spacing:-1.734000px;}
.ls42{letter-spacing:-1.608000px;}
.ls61{letter-spacing:-1.536000px;}
.ls1f{letter-spacing:-1.524000px;}
.ls20{letter-spacing:-1.476000px;}
.ls2b{letter-spacing:-1.308000px;}
.ls47{letter-spacing:-1.206000px;}
.ls39{letter-spacing:-1.158000px;}
.ls3a{letter-spacing:-1.050000px;}
.ls2e{letter-spacing:-1.014000px;}
.ls10{letter-spacing:-0.972000px;}
.ls40{letter-spacing:-0.828000px;}
.ls4e{letter-spacing:-0.468645px;}
.ls4f{letter-spacing:-0.208200px;}
.ls5b{letter-spacing:-0.153600px;}
.ls59{letter-spacing:-0.117600px;}
.ls60{letter-spacing:-0.099000px;}
.ls5d{letter-spacing:-0.003594px;}
.ls8{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.010200px;}
.ls1d{letter-spacing:0.024000px;}
.ls21{letter-spacing:0.028800px;}
.ls17{letter-spacing:0.034050px;}
.ls49{letter-spacing:0.051000px;}
.ls6{letter-spacing:0.120600px;}
.ls54{letter-spacing:0.131400px;}
.ls5c{letter-spacing:0.138000px;}
.ls5{letter-spacing:0.204000px;}
.ls57{letter-spacing:0.215400px;}
.ls11{letter-spacing:0.241200px;}
.ls1a{letter-spacing:0.288600px;}
.lsa{letter-spacing:0.312000px;}
.ls4a{letter-spacing:0.315000px;}
.ls34{letter-spacing:0.384600px;}
.ls3e{letter-spacing:0.390600px;}
.ls4d{letter-spacing:0.397178px;}
.ls27{letter-spacing:0.474000px;}
.ls43{letter-spacing:0.534600px;}
.ls3d{letter-spacing:0.748200px;}
.ls26{letter-spacing:0.798000px;}
.ls2{letter-spacing:0.807450px;}
.ls56{letter-spacing:0.814800px;}
.ls28{letter-spacing:0.858000px;}
.ls3{letter-spacing:0.867450px;}
.ls1{letter-spacing:0.882000px;}
.ls3f{letter-spacing:0.988200px;}
.ls19{letter-spacing:1.010100px;}
.ls0{letter-spacing:1.062000px;}
.ls41{letter-spacing:1.158000px;}
.ls9{letter-spacing:1.176000px;}
.ls53{letter-spacing:1.419750px;}
.ls55{letter-spacing:1.638000px;}
.ls31{letter-spacing:1.698000px;}
.ls3c{letter-spacing:1.728000px;}
.ls5a{letter-spacing:1.758000px;}
.ls44{letter-spacing:1.830000px;}
.ls5e{letter-spacing:1.908000px;}
.ls23{letter-spacing:1.938000px;}
.ls35{letter-spacing:1.980000px;}
.ls37{letter-spacing:2.130000px;}
.ls32{letter-spacing:2.202000px;}
.ls30{letter-spacing:2.238000px;}
.ls3b{letter-spacing:2.352000px;}
.lsc{letter-spacing:2.400000px;}
.ls50{letter-spacing:2.412000px;}
.ls5f{letter-spacing:2.436000px;}
.ls45{letter-spacing:2.442000px;}
.lsb{letter-spacing:2.484000px;}
.ls58{letter-spacing:2.514000px;}
.ls36{letter-spacing:2.592000px;}
.ls15{letter-spacing:3.222000px;}
.lsf{letter-spacing:13.155150px;}
.ls16{letter-spacing:14.916000px;}
.ls7{letter-spacing:15.204000px;}
.ls4{letter-spacing:17.367450px;}
.ls18{letter-spacing:20.194050px;}
.ls1e{letter-spacing:20.244000px;}
.ls1c{letter-spacing:20.254050px;}
.ls1b{letter-spacing:20.314050px;}
.ls25{letter-spacing:22.278600px;}
.ls12{letter-spacing:28.416000px;}
.lsd{letter-spacing:29.988600px;}
.ls38{letter-spacing:51.022500px;}
.ls33{letter-spacing:55.897500px;}
.ls24{letter-spacing:71.572500px;}
.ls52{letter-spacing:102.022500px;}
.ls4c{letter-spacing:105.150000px;}
.ls4b{letter-spacing:105.202500px;}
.ls51{letter-spacing:135.195000px;}
.ls46{letter-spacing:222.323700px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-144.300000px;}
.wsab{word-spacing:-88.347000px;}
.ws10{word-spacing:-55.335511px;}
.ws11{word-spacing:-52.768400px;}
.ws0{word-spacing:-43.076116px;}
.ws1{word-spacing:-40.866000px;}
.ws6c{word-spacing:-35.088000px;}
.ws2f{word-spacing:-33.360000px;}
.wsb{word-spacing:-30.107400px;}
.wsa{word-spacing:-30.065700px;}
.ws15{word-spacing:-28.860000px;}
.wsb0{word-spacing:-27.324000px;}
.ws9b{word-spacing:-26.354400px;}
.wsaa{word-spacing:-25.898400px;}
.wsa3{word-spacing:-25.113600px;}
.ws2d{word-spacing:-25.103400px;}
.ws9d{word-spacing:-25.084800px;}
.ws2e{word-spacing:-25.061700px;}
.ws7a{word-spacing:-24.360000px;}
.ws2c{word-spacing:-24.330000px;}
.wsae{word-spacing:-24.261000px;}
.ws93{word-spacing:-23.852400px;}
.ws8f{word-spacing:-23.810700px;}
.ws74{word-spacing:-23.460000px;}
.ws79{word-spacing:-23.154000px;}
.ws2b{word-spacing:-21.630000px;}
.ws7b{word-spacing:-21.546000px;}
.ws1c{word-spacing:-21.067800px;}
.ws2a{word-spacing:-20.346300px;}
.ws1a{word-spacing:-20.057700px;}
.ws28{word-spacing:-20.016000px;}
.ws18{word-spacing:-20.007750px;}
.ws95{word-spacing:-18.457240px;}
.wsd{word-spacing:-17.130000px;}
.ws4c{word-spacing:-16.304700px;}
.ws6b{word-spacing:-16.263000px;}
.ws83{word-spacing:-15.053700px;}
.ws7{word-spacing:-15.012000px;}
.wse{word-spacing:-13.530000px;}
.wsac{word-spacing:-13.394700px;}
.wsf{word-spacing:-12.016800px;}
.ws4{word-spacing:-10.830000px;}
.ws2{word-spacing:-10.800000px;}
.ws5e{word-spacing:-6.680400px;}
.ws50{word-spacing:-6.410400px;}
.ws60{word-spacing:-6.230400px;}
.ws9f{word-spacing:-5.369700px;}
.wsa9{word-spacing:-5.294400px;}
.ws43{word-spacing:-4.083150px;}
.ws67{word-spacing:-3.815400px;}
.ws12{word-spacing:-3.706950px;}
.ws49{word-spacing:-3.698100px;}
.ws70{word-spacing:-3.392700px;}
.ws69{word-spacing:-2.437800px;}
.ws96{word-spacing:-2.407500px;}
.ws92{word-spacing:-2.199600px;}
.ws22{word-spacing:-2.184000px;}
.ws97{word-spacing:-2.172450px;}
.ws62{word-spacing:-2.098650px;}
.ws4e{word-spacing:-1.941750px;}
.ws6a{word-spacing:-1.918800px;}
.ws4f{word-spacing:-1.720950px;}
.ws78{word-spacing:-1.622850px;}
.ws4d{word-spacing:-1.588800px;}
.wsa2{word-spacing:-1.573200px;}
.ws5f{word-spacing:-1.505250px;}
.ws4b{word-spacing:-1.470000px;}
.ws94{word-spacing:-1.410000px;}
.ws5d{word-spacing:-1.356300px;}
.ws76{word-spacing:-1.346550px;}
.ws99{word-spacing:-1.292250px;}
.ws3{word-spacing:-1.224750px;}
.wsad{word-spacing:-1.172400px;}
.ws24{word-spacing:-1.114650px;}
.ws73{word-spacing:-1.107300px;}
.ws8{word-spacing:-1.056000px;}
.ws6{word-spacing:-1.043400px;}
.ws21{word-spacing:-0.924000px;}
.ws1e{word-spacing:-0.635550px;}
.ws20{word-spacing:-0.619950px;}
.ws6f{word-spacing:-0.579300px;}
.wsa6{word-spacing:-0.378000px;}
.wsa8{word-spacing:-0.338400px;}
.ws51{word-spacing:-0.312300px;}
.ws9a{word-spacing:-0.082800px;}
.ws66{word-spacing:-0.046950px;}
.ws9{word-spacing:0.000000px;}
.ws7f{word-spacing:0.025800px;}
.wsc{word-spacing:0.047550px;}
.ws4a{word-spacing:0.159900px;}
.ws27{word-spacing:0.180000px;}
.ws29{word-spacing:0.240000px;}
.ws71{word-spacing:0.298500px;}
.ws64{word-spacing:0.385950px;}
.ws41{word-spacing:0.407100px;}
.ws5{word-spacing:0.529350px;}
.ws91{word-spacing:0.538950px;}
.ws8e{word-spacing:0.610650px;}
.ws75{word-spacing:0.670650px;}
.ws90{word-spacing:0.724500px;}
.ws1f{word-spacing:0.926850px;}
.ws25{word-spacing:0.953550px;}
.wsaf{word-spacing:0.955500px;}
.wsa0{word-spacing:1.043700px;}
.wsa4{word-spacing:1.062000px;}
.ws1b{word-spacing:1.108800px;}
.ws42{word-spacing:1.215600px;}
.ws68{word-spacing:1.225200px;}
.ws23{word-spacing:1.364400px;}
.ws17{word-spacing:1.403100px;}
.ws30{word-spacing:1.500150px;}
.wsa7{word-spacing:1.514400px;}
.ws9c{word-spacing:1.540950px;}
.ws19{word-spacing:1.548000px;}
.wsa5{word-spacing:1.624800px;}
.ws1d{word-spacing:1.654650px;}
.ws77{word-spacing:1.818750px;}
.ws26{word-spacing:1.822950px;}
.wsa1{word-spacing:1.852800px;}
.ws32{word-spacing:1.858050px;}
.ws61{word-spacing:2.130000px;}
.ws58{word-spacing:2.413200px;}
.ws6e{word-spacing:2.418600px;}
.ws6d{word-spacing:2.688000px;}
.ws39{word-spacing:2.756250px;}
.ws9e{word-spacing:2.970000px;}
.ws3b{word-spacing:2.988750px;}
.ws65{word-spacing:3.211200px;}
.ws53{word-spacing:3.669600px;}
.ws38{word-spacing:4.189800px;}
.ws72{word-spacing:4.747200px;}
.ws31{word-spacing:5.266800px;}
.ws98{word-spacing:5.623200px;}
.ws14{word-spacing:5.741850px;}
.ws63{word-spacing:7.423200px;}
.ws55{word-spacing:7.577700px;}
.ws5a{word-spacing:7.757700px;}
.ws57{word-spacing:8.357700px;}
.ws5c{word-spacing:8.915400px;}
.ws56{word-spacing:9.183600px;}
.ws48{word-spacing:9.837150px;}
.ws54{word-spacing:10.163100px;}
.ws44{word-spacing:10.452300px;}
.ws3a{word-spacing:10.762500px;}
.ws16{word-spacing:10.785150px;}
.ws52{word-spacing:11.037600px;}
.ws46{word-spacing:11.189850px;}
.ws59{word-spacing:11.313450px;}
.ws5b{word-spacing:11.582550px;}
.ws45{word-spacing:17.681700px;}
.ws47{word-spacing:17.923200px;}
.ws7c{word-spacing:23.283600px;}
.ws7d{word-spacing:23.854200px;}
.ws3f{word-spacing:23.902050px;}
.ws7e{word-spacing:24.011400px;}
.ws40{word-spacing:24.108750px;}
.ws3d{word-spacing:24.258750px;}
.ws3e{word-spacing:28.395600px;}
.ws3c{word-spacing:32.923200px;}
.ws35{word-spacing:44.891700px;}
.ws37{word-spacing:45.603750px;}
.ws36{word-spacing:49.097400px;}
.ws33{word-spacing:49.245750px;}
.ws34{word-spacing:54.551700px;}
.ws81{word-spacing:87.559500px;}
.ws80{word-spacing:99.149850px;}
.ws8c{word-spacing:124.536900px;}
.ws89{word-spacing:127.494300px;}
.ws82{word-spacing:144.411750px;}
.ws8b{word-spacing:152.334300px;}
.ws8d{word-spacing:165.936900px;}
.ws88{word-spacing:168.894300px;}
.ws87{word-spacing:205.848900px;}
.ws8a{word-spacing:206.085600px;}
.ws85{word-spacing:211.123950px;}
.ws84{word-spacing:230.628900px;}
.ws86{word-spacing:235.903950px;}
._11{margin-left:-43.640893px;}
._12{margin-left:-35.704950px;}
._13{margin-left:-23.818800px;}
._f{margin-left:-18.032641px;}
._e{margin-left:-12.703756px;}
._c{margin-left:-11.138345px;}
._d{margin-left:-9.649311px;}
._16{margin-left:-8.211655px;}
._18{margin-left:-7.160289px;}
._17{margin-left:-5.729400px;}
._5{margin-left:-4.337850px;}
._2{margin-left:-2.504250px;}
._3{margin-left:-1.502550px;}
._1{width:1.168650px;}
._4{width:2.994900px;}
._0{width:4.006800px;}
._a{width:5.068200px;}
._32{width:6.114450px;}
._33{width:7.239501px;}
._10{width:8.271803px;}
._34{width:10.023900px;}
._b{width:11.950800px;}
._8{width:14.036700px;}
._7{width:15.408450px;}
._9{width:16.944750px;}
._6{width:18.207000px;}
._24{width:20.208000px;}
._1a{width:21.522900px;}
._1b{width:22.539900px;}
._1e{width:23.677950px;}
._36{width:24.811500px;}
._26{width:26.843700px;}
._20{width:28.390350px;}
._35{width:29.511000px;}
._25{width:31.573650px;}
._23{width:35.950650px;}
._14{width:41.830200px;}
._22{width:49.039200px;}
._21{width:50.684700px;}
._27{width:51.718200px;}
._1f{width:70.045650px;}
._28{width:164.542950px;}
._2f{width:236.985600px;}
._2b{width:247.359000px;}
._2e{width:252.057000px;}
._30{width:253.199850px;}
._31{width:261.458250px;}
._29{width:262.730400px;}
._2c{width:264.310050px;}
._2a{width:268.714500px;}
._2d{width:279.350400px;}
._19{width:712.755600px;}
._1d{width:868.377150px;}
._15{width:952.347450px;}
._1c{width:1020.253800px;}
.fcd{color:rgb(0,112,192);}
.fcf{color:rgb(20,25,27);}
.fc0{color:rgb(0,41,85);}
.fc1{color:rgb(192,0,0);}
.fc4{color:rgb(127,127,127);}
.fc8{color:rgb(34,34,34);}
.fc9{color:rgb(255,255,255);}
.fcc{color:rgb(101,123,137);}
.fc2{color:rgb(0,0,0);}
.fc7{color:rgb(96,125,139);}
.fc10{color:rgb(0,0,255);}
.fce{color:transparent;}
.fc5{color:rgb(207,216,220);}
.fc6{color:rgb(207,1,16);}
.fc3{color:rgb(0,145,234);}
.fca{color:rgb(38,50,56);}
.fcb{color:rgb(255,147,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:36.150000px;}
.fs1f{font-size:40.500000px;}
.fs21{font-size:40.650000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:54.150000px;}
.fs20{font-size:58.500000px;}
.fs1e{font-size:58.650000px;}
.fs26{font-size:63.000000px;}
.fs18{font-size:63.150000px;}
.fse{font-size:67.650000px;}
.fs16{font-size:72.000000px;}
.fs17{font-size:72.150000px;}
.fs8{font-size:76.650000px;}
.fs14{font-size:81.150000px;}
.fs3{font-size:85.650000px;}
.fs19{font-size:85.800000px;}
.fs1c{font-size:90.150000px;}
.fs1d{font-size:90.300000px;}
.fs15{font-size:94.650000px;}
.fs13{font-size:94.800000px;}
.fs23{font-size:99.768863px;}
.fs24{font-size:99.926975px;}
.fs9{font-size:108.150000px;}
.fsa{font-size:108.300000px;}
.fsb{font-size:121.650000px;}
.fs1a{font-size:121.800000px;}
.fs29{font-size:130.650000px;}
.fs2a{font-size:130.800000px;}
.fs22{font-size:144.150000px;}
.fs12{font-size:144.300000px;}
.fs1{font-size:166.800000px;}
.fs0{font-size:166.950000px;}
.fs2{font-size:175.820880px;}
.fs28{font-size:180.300000px;}
.fs2b{font-size:216.450000px;}
.fs11{font-size:238.950000px;}
.fs1b{font-size:265.950000px;}
.fsd{font-size:266.100000px;}
.fs10{font-size:270.600000px;}
.fsf{font-size:285.234593px;}
.fs25{font-size:324.600000px;}
.fsc{font-size:360.600000px;}
.fs27{font-size:360.750000px;}
.y28{bottom:-258.330000px;}
.y0{bottom:0.000000px;}
.yf2{bottom:14.775000px;}
.y11{bottom:16.612500px;}
.yd1{bottom:20.250000px;}
.y27{bottom:22.875000px;}
.y23{bottom:26.475000px;}
.y2f{bottom:29.062500px;}
.y6c{bottom:31.425000px;}
.yff{bottom:31.500000px;}
.yf1{bottom:32.812500px;}
.ydf{bottom:33.000000px;}
.y108{bottom:35.625000px;}
.y57{bottom:39.150000px;}
.yce{bottom:39.375000px;}
.yd5{bottom:39.600000px;}
.y113{bottom:41.437500px;}
.y73{bottom:47.100000px;}
.y6b{bottom:49.425000px;}
.yf0{bottom:50.850000px;}
.yde{bottom:51.037500px;}
.yac{bottom:51.750000px;}
.y41{bottom:51.937500px;}
.yad{bottom:52.875000px;}
.y107{bottom:53.662500px;}
.yaf{bottom:56.970000px;}
.yb2{bottom:57.000000px;}
.yb5{bottom:57.030000px;}
.yb8{bottom:57.075000px;}
.ybb{bottom:57.120000px;}
.yc2{bottom:57.300000px;}
.yc5{bottom:57.345000px;}
.yc8{bottom:57.375000px;}
.ycc{bottom:57.450000px;}
.ycf{bottom:57.487500px;}
.yd2{bottom:57.525000px;}
.ycb{bottom:58.500000px;}
.yd4{bottom:58.687500px;}
.y59{bottom:60.075000px;}
.y84{bottom:62.700000px;}
.y93{bottom:63.525000px;}
.ya0{bottom:63.675000px;}
.y72{bottom:65.100000px;}
.y5b{bottom:65.662500px;}
.y56{bottom:66.187500px;}
.y6a{bottom:67.462500px;}
.y102{bottom:67.687500px;}
.y11a{bottom:67.762500px;}
.yef{bottom:68.887500px;}
.ydd{bottom:69.075000px;}
.y21{bottom:72.150000px;}
.y40{bottom:73.350000px;}
.yfc{bottom:75.375000px;}
.y122{bottom:77.362500px;}
.yd3{bottom:77.775000px;}
.yfd{bottom:80.055000px;}
.y100{bottom:80.062500px;}
.y92{bottom:81.562500px;}
.y9f{bottom:81.712500px;}
.y69{bottom:85.500000px;}
.yee{bottom:86.925000px;}
.y10{bottom:87.037500px;}
.y58{bottom:87.112500px;}
.y83{bottom:91.987500px;}
.y5a{bottom:92.700000px;}
.y55{bottom:93.225000px;}
.yc7{bottom:96.750000px;}
.yd0{bottom:96.862500px;}
.y119{bottom:97.087500px;}
.yf{bottom:99.450000px;}
.y49{bottom:99.525000px;}
.y91{bottom:99.562500px;}
.y9e{bottom:99.750000px;}
.y68{bottom:103.537500px;}
.yed{bottom:104.962500px;}
.ydc{bottom:105.150000px;}
.y101{bottom:111.562500px;}
.yc4{bottom:115.875000px;}
.ycd{bottom:115.950000px;}
.y121{bottom:116.812500px;}
.y90{bottom:117.600000px;}
.y9d{bottom:117.787500px;}
.ya9{bottom:117.870000px;}
.ye{bottom:119.737500px;}
.yec{bottom:123.000000px;}
.ydb{bottom:123.150000px;}
.y118{bottom:125.250000px;}
.y88{bottom:125.737500px;}
.y10e{bottom:129.262500px;}
.y43{bottom:132.787500px;}
.y48{bottom:133.350000px;}
.yc1{bottom:135.000000px;}
.yca{bottom:135.037500px;}
.y8f{bottom:135.637500px;}
.y9c{bottom:135.787500px;}
.yd{bottom:136.612500px;}
.yeb{bottom:141.037500px;}
.yda{bottom:141.187500px;}
.y129{bottom:141.562500px;}
.y85{bottom:145.650000px;}
.yc{bottom:152.400000px;}
.y9b{bottom:153.825000px;}
.yc9{bottom:154.125000px;}
.yfe{bottom:155.430000px;}
.y3f{bottom:155.850000px;}
.y120{bottom:156.270000px;}
.yea{bottom:159.075000px;}
.yd9{bottom:159.225000px;}
.y47{bottom:166.005000px;}
.yb{bottom:168.180000px;}
.y87{bottom:168.555000px;}
.y9a{bottom:171.870000px;}
.yc6{bottom:173.220000px;}
.ye9{bottom:177.075000px;}
.yd8{bottom:177.270000px;}
.y20{bottom:178.095000px;}
.y3e{bottom:181.800000px;}
.y103{bottom:182.475000px;}
.ya{bottom:185.100000px;}
.y99{bottom:189.900000px;}
.yc3{bottom:192.300000px;}
.y112{bottom:192.870000px;}
.y10d{bottom:193.005000px;}
.ye8{bottom:195.120000px;}
.yd7{bottom:195.300000px;}
.y9{bottom:196.350000px;}
.y4c{bottom:204.570000px;}
.y11f{bottom:205.845000px;}
.y104{bottom:206.475000px;}
.y98{bottom:207.945000px;}
.y3d{bottom:208.845000px;}
.y5e{bottom:209.175000px;}
.y51{bottom:210.780000px;}
.yc0{bottom:211.380000px;}
.yd6{bottom:213.345000px;}
.y8{bottom:217.770000px;}
.yfb{bottom:217.950000px;}
.y86{bottom:219.225000px;}
.y111{bottom:222.150000px;}
.y97{bottom:225.975000px;}
.y4e{bottom:227.400000px;}
.y4b{bottom:229.395000px;}
.y14{bottom:229.950000px;}
.ybf{bottom:230.475000px;}
.yba{bottom:230.625000px;}
.y7{bottom:233.550000px;}
.y3c{bottom:234.750000px;}
.y18{bottom:236.580000px;}
.y96{bottom:244.020000px;}
.y11e{bottom:245.295000px;}
.yfa{bottom:247.245000px;}
.y5d{bottom:248.625000px;}
.y127{bottom:248.745000px;}
.y6{bottom:249.345000px;}
.ybe{bottom:249.570000px;}
.yb7{bottom:249.750000px;}
.y110{bottom:250.350000px;}
.y78{bottom:251.445000px;}
.y4d{bottom:253.320000px;}
.y4a{bottom:255.300000px;}
.y67{bottom:257.070000px;}
.y10b{bottom:260.130000px;}
.y3b{bottom:260.700000px;}
.ye7{bottom:264.120000px;}
.ybd{bottom:268.650000px;}
.yb4{bottom:268.875000px;}
.y126{bottom:269.025000px;}
.y66{bottom:275.100000px;}
.yf9{bottom:275.445000px;}
.y50{bottom:276.825000px;}
.y5{bottom:278.625000px;}
.y10c{bottom:278.655000px;}
.y106{bottom:282.030000px;}
.y11d{bottom:284.745000px;}
.y3a{bottom:286.620000px;}
.y17{bottom:286.995000px;}
.y77{bottom:287.520000px;}
.ybc{bottom:287.745000px;}
.yb1{bottom:288.000000px;}
.y125{bottom:288.195000px;}
.ye6{bottom:288.900000px;}
.y13{bottom:290.925000px;}
.y10a{bottom:292.845000px;}
.y53{bottom:293.520000px;}
.ya8{bottom:299.250000px;}
.y5c{bottom:299.370000px;}
.y4{bottom:303.450000px;}
.y26{bottom:304.350000px;}
.yf8{bottom:304.725000px;}
.yb9{bottom:306.825000px;}
.yae{bottom:307.125000px;}
.y117{bottom:308.955000px;}
.y39{bottom:312.525000px;}
.ye5{bottom:314.820000px;}
.y1f{bottom:318.945000px;}
.yb6{bottom:325.905000px;}
.y3{bottom:328.245000px;}
.yab{bottom:330.750000px;}
.y11c{bottom:333.195000px;}
.yf7{bottom:334.050000px;}
.y63{bottom:335.625000px;}
.y82{bottom:335.775000px;}
.y76{bottom:337.320000px;}
.y116{bottom:338.250000px;}
.ye4{bottom:339.630000px;}
.yb3{bottom:345.000000px;}
.ya4{bottom:348.375000px;}
.y34{bottom:350.280000px;}
.y81{bottom:351.570000px;}
.y12{bottom:352.500000px;}
.y2{bottom:361.500000px;}
.y105{bottom:362.070000px;}
.yf6{bottom:362.205000px;}
.y4f{bottom:362.475000px;}
.yb0{bottom:364.095000px;}
.ye3{bottom:364.425000px;}
.y62{bottom:364.905000px;}
.y80{bottom:368.475000px;}
.ya3{bottom:369.780000px;}
.y16{bottom:372.645000px;}
.y52{bottom:373.545000px;}
.y33{bottom:375.075000px;}
.y7f{bottom:384.255000px;}
.y1e{bottom:385.695000px;}
.ye2{bottom:390.345000px;}
.ya2{bottom:391.200000px;}
.y115{bottom:393.195000px;}
.y61{bottom:394.245000px;}
.y8e{bottom:398.175000px;}
.yaa{bottom:400.245000px;}
.y32{bottom:400.995000px;}
.y7e{bottom:401.175000px;}
.y37{bottom:404.850000px;}
.y1d{bottom:405.975000px;}
.y128{bottom:407.595000px;}
.ya7{bottom:407.655000px;}
.y1{bottom:411.120000px;}
.ya1{bottom:412.620000px;}
.yf4{bottom:413.820000px;}
.y7d{bottom:416.925000px;}
.y8d{bottom:417.345000px;}
.y11b{bottom:419.505000px;}
.y114{bottom:421.350000px;}
.y60{bottom:423.525000px;}
.y31{bottom:425.775000px;}
.y1c{bottom:426.255000px;}
.y46{bottom:428.070000px;}
.y36{bottom:429.675000px;}
.y7c{bottom:432.720000px;}
.y71{bottom:434.550000px;}
.y8c{bottom:436.500000px;}
.ye1{bottom:440.400000px;}
.y22{bottom:445.380000px;}
.y1b{bottom:445.425000px;}
.ya6{bottom:446.280000px;}
.y15{bottom:448.875000px;}
.y30{bottom:451.725000px;}
.y70{bottom:452.595000px;}
.y24{bottom:452.880000px;}
.y35{bottom:455.595000px;}
.y8b{bottom:455.655000px;}
.yf5{bottom:460.875000px;}
.y65{bottom:461.550000px;}
.y45{bottom:461.880000px;}
.y124{bottom:464.850000px;}
.y95{bottom:470.280000px;}
.y6f{bottom:470.625000px;}
.y109{bottom:471.255000px;}
.y75{bottom:473.325000px;}
.y8a{bottom:474.825000px;}
.ye0{bottom:476.475000px;}
.y7b{bottom:486.720000px;}
.ya5{bottom:486.870000px;}
.y6e{bottom:488.655000px;}
.y10f{bottom:489.405000px;}
.y64{bottom:490.875000px;}
.y89{bottom:492.870000px;}
.y44{bottom:494.550000px;}
.y42{bottom:495.225000px;}
.y74{bottom:501.525000px;}
.yf3{bottom:505.755000px;}
.y2d{bottom:505.845000px;}
.y6d{bottom:506.700000px;}
.y123{bottom:511.470000px;}
.y7a{bottom:511.530000px;}
.y29{bottom:516.225000px;}
.y1a{bottom:516.300000px;}
.y54{bottom:525.345000px;}
.y5f{bottom:534.375000px;}
.y2c{bottom:535.155000px;}
.y25{bottom:535.200000px;}
.y19{bottom:541.095000px;}
.y94{bottom:543.405000px;}
.y38{bottom:546.720000px;}
.y79{bottom:547.575000px;}
.y2b{bottom:558.075000px;}
.y12a{bottom:560.175000px;}
.y2e{bottom:561.720000px;}
.y2a{bottom:568.275000px;}
.h5{height:32.185547px;}
.h7{height:32.319653px;}
.h46{height:40.605469px;}
.h49{height:40.718262px;}
.h37{height:43.960693px;}
.h43{height:44.073413px;}
.h4b{height:44.102051px;}
.h40{height:44.217334px;}
.h44{height:46.118262px;}
.h41{height:46.159937px;}
.h53{height:47.373047px;}
.h52{height:47.485840px;}
.h1d{height:47.741400px;}
.h6{height:48.278320px;}
.h3c{height:48.410156px;}
.h8{height:48.412427px;}
.h3b{height:48.544629px;}
.h36{height:52.444336px;}
.h34{height:52.578809px;}
.h35{height:54.307617px;}
.h38{height:54.442090px;}
.h3d{height:54.562090px;}
.h60{height:57.637800px;}
.h11{height:59.126100px;}
.h26{height:64.371094px;}
.h61{height:64.404785px;}
.h27{height:64.505200px;}
.h28{height:64.546875px;}
.h25{height:64.681348px;}
.h9{height:65.535750px;}
.h1b{height:67.824000px;}
.h1c{height:67.965300px;}
.h10{height:73.230750px;}
.h4{height:74.858100px;}
.h47{height:75.758262px;}
.h21{height:76.314150px;}
.h20{height:76.447800px;}
.h22{height:76.783887px;}
.h23{height:76.918359px;}
.h1f{height:80.682300px;}
.h30{height:80.818066px;}
.h31{height:80.952539px;}
.h55{height:81.323730px;}
.h5a{height:84.755273px;}
.h39{height:84.852246px;}
.h17{height:84.986719px;}
.h2b{height:89.160300px;}
.h4e{height:89.293132px;}
.h2c{height:89.301600px;}
.h33{height:92.468250px;}
.h4c{height:92.585504px;}
.h42{height:92.596500px;}
.h4d{height:92.732233px;}
.h1e{height:96.361650px;}
.ha{height:96.954785px;}
.hb{height:97.089258px;}
.h18{height:101.877300px;}
.h2a{height:102.018600px;}
.h24{height:104.010750px;}
.h29{height:104.139000px;}
.hf{height:106.322100px;}
.h3a{height:106.453200px;}
.h19{height:108.484650px;}
.h16{height:108.506836px;}
.hc{height:109.057324px;}
.h2f{height:109.413721px;}
.h58{height:109.548633px;}
.h5e{height:111.441600px;}
.h5c{height:114.188100px;}
.h5d{height:114.319200px;}
.h48{height:114.750000px;}
.h54{height:123.376500px;}
.h1a{height:125.925750px;}
.h3e{height:125.987100px;}
.h3f{height:126.118200px;}
.h4a{height:127.125000px;}
.h32{height:142.614000px;}
.h57{height:145.783200px;}
.h2{height:150.022266px;}
.h1{height:150.157178px;}
.h3{height:158.135772px;}
.h59{height:161.636133px;}
.h50{height:165.375000px;}
.h4f{height:177.750000px;}
.h5f{height:189.177300px;}
.h15{height:225.090900px;}
.h13{height:228.054492px;}
.h45{height:228.375000px;}
.h2d{height:239.199170px;}
.he{height:239.334082px;}
.h2e{height:250.666200px;}
.h14{height:255.284960px;}
.h12{height:264.697702px;}
.h51{height:290.998828px;}
.h5b{height:308.441250px;}
.hd{height:324.328711px;}
.h56{height:324.463623px;}
.h0{height:607.500000px;}
.w3{width:52.875000px;}
.w2{width:91.125000px;}
.w5{width:130.500000px;}
.w6{width:311.625000px;}
.w4{width:536.625000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x66{left:3.675000px;}
.x63{left:5.400000px;}
.x69{left:7.320000px;}
.x68{left:8.820000px;}
.x81{left:12.120000px;}
.x97{left:29.812484px;}
.x1d{left:31.274984px;}
.x1f{left:34.312484px;}
.x98{left:37.687484px;}
.x24{left:41.474984px;}
.x5f{left:44.549984px;}
.x17{left:48.337484px;}
.x1e{left:53.437484px;}
.x61{left:55.912484px;}
.x4c{left:61.462484px;}
.x49{left:64.574984px;}
.x88{left:65.812484px;}
.x19{left:68.174984px;}
.x1c{left:69.974984px;}
.x91{left:74.887484px;}
.x10{left:76.724984px;}
.x3d{left:79.237484px;}
.x75{left:80.324984px;}
.x8d{left:82.087484px;}
.x8b{left:87.524984px;}
.x92{left:89.512484px;}
.x55{left:93.337484px;}
.x35{left:94.349984px;}
.x5d{left:100.687484px;}
.x95{left:101.737484px;}
.x93{left:109.237484px;}
.x1a{left:110.249984px;}
.x8e{left:115.874984px;}
.x89{left:119.887484px;}
.x8c{left:121.312484px;}
.x40{left:122.587484px;}
.x25{left:127.949984px;}
.x37{left:131.962484px;}
.x5{left:133.274984px;}
.x90{left:134.774984px;}
.x13{left:138.487484px;}
.x36{left:141.449984px;}
.xb{left:144.037484px;}
.x57{left:146.999984px;}
.x56{left:151.499984px;}
.x1{left:153.869984px;}
.x6{left:161.204984px;}
.x73{left:168.704984px;}
.x3c{left:172.079984px;}
.x71{left:174.524984px;}
.x5b{left:181.154984px;}
.x72{left:185.204984px;}
.x11{left:189.404984px;}
.x6e{left:191.399984px;}
.x34{left:193.619984px;}
.x41{left:204.224984px;}
.x4b{left:206.594984px;}
.x58{left:207.824984px;}
.x6f{left:209.444984px;}
.x4a{left:211.094984px;}
.xe{left:212.174984px;}
.x5e{left:214.244984px;}
.x70{left:217.499984px;}
.x1b{left:220.994984px;}
.xf{left:236.774984px;}
.x12{left:242.999984px;}
.x59{left:244.424984px;}
.x5c{left:256.619984px;}
.x21{left:266.999984px;}
.x87{left:273.449984px;}
.x33{left:275.849984px;}
.x5a{left:291.899984px;}
.x2c{left:295.124984px;}
.x18{left:303.569984px;}
.x2d{left:307.244984px;}
.x74{left:312.119984px;}
.x2e{left:316.919984px;}
.x53{left:325.079984px;}
.x7{left:330.824984px;}
.x8{left:340.649984px;}
.x54{left:345.329984px;}
.x38{left:349.319984px;}
.x94{left:351.824984px;}
.x9{left:363.074984px;}
.x47{left:375.344984px;}
.x7b{left:376.694984px;}
.x78{left:381.569984px;}
.x7a{left:389.099984px;}
.x79{left:392.279984px;}
.x76{left:398.474984px;}
.x65{left:405.000000px;}
.x7d{left:411.599984px;}
.x77{left:416.474984px;}
.x6c{left:417.749984px;}
.x86{left:420.029984px;}
.x62{left:421.874984px;}
.x39{left:424.949984px;}
.x3e{left:428.594984px;}
.x3f{left:434.969984px;}
.x85{left:442.154984px;}
.x7c{left:444.074984px;}
.xa{left:446.129984px;}
.x67{left:456.750000px;}
.x15{left:460.394984px;}
.x7f{left:461.624984px;}
.x9c{left:471.569984px;}
.x22{left:475.529984px;}
.x96{left:478.349984px;}
.x6d{left:482.144984px;}
.x32{left:485.324984px;}
.x31{left:486.749984px;}
.x6b{left:488.354984px;}
.x6a{left:492.494984px;}
.x27{left:494.144984px;}
.x80{left:497.250000px;}
.xc{left:502.499984px;}
.x2f{left:506.624984px;}
.x26{left:514.469984px;}
.x8f{left:516.449984px;}
.x7e{left:519.149984px;}
.x30{left:523.874984px;}
.x28{left:527.399984px;}
.x2{left:594.944984px;}
.x82{left:626.625000px;}
.xd{left:637.319984px;}
.x20{left:642.749984px;}
.x42{left:644.849984px;}
.x44{left:649.199984px;}
.x60{left:673.874984px;}
.x64{left:678.194984px;}
.x2a{left:679.499984px;}
.x3a{left:683.024984px;}
.x83{left:690.449984px;}
.x43{left:697.049984px;}
.x29{left:713.594984px;}
.x84{left:718.424984px;}
.x2b{left:733.244984px;}
.x48{left:748.844984px;}
.x3b{left:787.499984px;}
.x4f{left:808.949984px;}
.x51{left:812.699984px;}
.x3{left:817.544984px;}
.x4d{left:823.994984px;}
.x50{left:831.494984px;}
.x52{left:840.494984px;}
.x4e{left:854.024984px;}
.x16{left:855.194984px;}
.x14{left:863.399984px;}
.x46{left:880.049984px;}
.x9a{left:884.849984px;}
.x45{left:894.479984px;}
.x99{left:904.649984px;}
.x9b{left:911.399984px;}
.x23{left:1027.004984px;}
.x4{left:1037.324984px;}
.x8a{left:1049.579984px;}
@media print{
.v6{vertical-align:-40.000000pt;}
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-16.053333pt;}
.v7{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:4.800000pt;}
.v8{vertical-align:16.000000pt;}
.v1{vertical-align:24.000000pt;}
.va{vertical-align:31.146667pt;}
.v4{vertical-align:32.160000pt;}
.v5{vertical-align:40.000000pt;}
.ls2a{letter-spacing:-2.517333pt;}
.ls48{letter-spacing:-2.501333pt;}
.ls2f{letter-spacing:-2.384000pt;}
.ls2d{letter-spacing:-2.330667pt;}
.ls2c{letter-spacing:-2.197333pt;}
.ls13{letter-spacing:-2.032000pt;}
.ls29{letter-spacing:-1.754667pt;}
.ls22{letter-spacing:-1.632000pt;}
.lse{letter-spacing:-1.541333pt;}
.ls42{letter-spacing:-1.429333pt;}
.ls61{letter-spacing:-1.365333pt;}
.ls1f{letter-spacing:-1.354667pt;}
.ls20{letter-spacing:-1.312000pt;}
.ls2b{letter-spacing:-1.162667pt;}
.ls47{letter-spacing:-1.072000pt;}
.ls39{letter-spacing:-1.029333pt;}
.ls3a{letter-spacing:-0.933333pt;}
.ls2e{letter-spacing:-0.901333pt;}
.ls10{letter-spacing:-0.864000pt;}
.ls40{letter-spacing:-0.736000pt;}
.ls4e{letter-spacing:-0.416573pt;}
.ls4f{letter-spacing:-0.185067pt;}
.ls5b{letter-spacing:-0.136533pt;}
.ls59{letter-spacing:-0.104533pt;}
.ls60{letter-spacing:-0.088000pt;}
.ls5d{letter-spacing:-0.003195pt;}
.ls8{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.009067pt;}
.ls1d{letter-spacing:0.021333pt;}
.ls21{letter-spacing:0.025600pt;}
.ls17{letter-spacing:0.030267pt;}
.ls49{letter-spacing:0.045333pt;}
.ls6{letter-spacing:0.107200pt;}
.ls54{letter-spacing:0.116800pt;}
.ls5c{letter-spacing:0.122667pt;}
.ls5{letter-spacing:0.181333pt;}
.ls57{letter-spacing:0.191467pt;}
.ls11{letter-spacing:0.214400pt;}
.ls1a{letter-spacing:0.256533pt;}
.lsa{letter-spacing:0.277333pt;}
.ls4a{letter-spacing:0.280000pt;}
.ls34{letter-spacing:0.341867pt;}
.ls3e{letter-spacing:0.347200pt;}
.ls4d{letter-spacing:0.353047pt;}
.ls27{letter-spacing:0.421333pt;}
.ls43{letter-spacing:0.475200pt;}
.ls3d{letter-spacing:0.665067pt;}
.ls26{letter-spacing:0.709333pt;}
.ls2{letter-spacing:0.717733pt;}
.ls56{letter-spacing:0.724267pt;}
.ls28{letter-spacing:0.762667pt;}
.ls3{letter-spacing:0.771067pt;}
.ls1{letter-spacing:0.784000pt;}
.ls3f{letter-spacing:0.878400pt;}
.ls19{letter-spacing:0.897867pt;}
.ls0{letter-spacing:0.944000pt;}
.ls41{letter-spacing:1.029333pt;}
.ls9{letter-spacing:1.045333pt;}
.ls53{letter-spacing:1.262000pt;}
.ls55{letter-spacing:1.456000pt;}
.ls31{letter-spacing:1.509333pt;}
.ls3c{letter-spacing:1.536000pt;}
.ls5a{letter-spacing:1.562667pt;}
.ls44{letter-spacing:1.626667pt;}
.ls5e{letter-spacing:1.696000pt;}
.ls23{letter-spacing:1.722667pt;}
.ls35{letter-spacing:1.760000pt;}
.ls37{letter-spacing:1.893333pt;}
.ls32{letter-spacing:1.957333pt;}
.ls30{letter-spacing:1.989333pt;}
.ls3b{letter-spacing:2.090667pt;}
.lsc{letter-spacing:2.133333pt;}
.ls50{letter-spacing:2.144000pt;}
.ls5f{letter-spacing:2.165333pt;}
.ls45{letter-spacing:2.170667pt;}
.lsb{letter-spacing:2.208000pt;}
.ls58{letter-spacing:2.234667pt;}
.ls36{letter-spacing:2.304000pt;}
.ls15{letter-spacing:2.864000pt;}
.lsf{letter-spacing:11.693467pt;}
.ls16{letter-spacing:13.258667pt;}
.ls7{letter-spacing:13.514667pt;}
.ls4{letter-spacing:15.437733pt;}
.ls18{letter-spacing:17.950267pt;}
.ls1e{letter-spacing:17.994667pt;}
.ls1c{letter-spacing:18.003600pt;}
.ls1b{letter-spacing:18.056933pt;}
.ls25{letter-spacing:19.803200pt;}
.ls12{letter-spacing:25.258667pt;}
.lsd{letter-spacing:26.656533pt;}
.ls38{letter-spacing:45.353333pt;}
.ls33{letter-spacing:49.686667pt;}
.ls24{letter-spacing:63.620000pt;}
.ls52{letter-spacing:90.686667pt;}
.ls4c{letter-spacing:93.466667pt;}
.ls4b{letter-spacing:93.513333pt;}
.ls51{letter-spacing:120.173333pt;}
.ls46{letter-spacing:197.621067pt;}
.ws13{word-spacing:-128.266667pt;}
.wsab{word-spacing:-78.530667pt;}
.ws10{word-spacing:-49.187121pt;}
.ws11{word-spacing:-46.905244pt;}
.ws0{word-spacing:-38.289880pt;}
.ws1{word-spacing:-36.325333pt;}
.ws6c{word-spacing:-31.189333pt;}
.ws2f{word-spacing:-29.653333pt;}
.wsb{word-spacing:-26.762133pt;}
.wsa{word-spacing:-26.725067pt;}
.ws15{word-spacing:-25.653333pt;}
.wsb0{word-spacing:-24.288000pt;}
.ws9b{word-spacing:-23.426133pt;}
.wsaa{word-spacing:-23.020800pt;}
.wsa3{word-spacing:-22.323200pt;}
.ws2d{word-spacing:-22.314133pt;}
.ws9d{word-spacing:-22.297600pt;}
.ws2e{word-spacing:-22.277067pt;}
.ws7a{word-spacing:-21.653333pt;}
.ws2c{word-spacing:-21.626667pt;}
.wsae{word-spacing:-21.565333pt;}
.ws93{word-spacing:-21.202133pt;}
.ws8f{word-spacing:-21.165067pt;}
.ws74{word-spacing:-20.853333pt;}
.ws79{word-spacing:-20.581333pt;}
.ws2b{word-spacing:-19.226667pt;}
.ws7b{word-spacing:-19.152000pt;}
.ws1c{word-spacing:-18.726933pt;}
.ws2a{word-spacing:-18.085600pt;}
.ws1a{word-spacing:-17.829067pt;}
.ws28{word-spacing:-17.792000pt;}
.ws18{word-spacing:-17.784667pt;}
.ws95{word-spacing:-16.406435pt;}
.wsd{word-spacing:-15.226667pt;}
.ws4c{word-spacing:-14.493067pt;}
.ws6b{word-spacing:-14.456000pt;}
.ws83{word-spacing:-13.381067pt;}
.ws7{word-spacing:-13.344000pt;}
.wse{word-spacing:-12.026667pt;}
.wsac{word-spacing:-11.906400pt;}
.wsf{word-spacing:-10.681600pt;}
.ws4{word-spacing:-9.626667pt;}
.ws2{word-spacing:-9.600000pt;}
.ws5e{word-spacing:-5.938133pt;}
.ws50{word-spacing:-5.698133pt;}
.ws60{word-spacing:-5.538133pt;}
.ws9f{word-spacing:-4.773067pt;}
.wsa9{word-spacing:-4.706133pt;}
.ws43{word-spacing:-3.629467pt;}
.ws67{word-spacing:-3.391467pt;}
.ws12{word-spacing:-3.295067pt;}
.ws49{word-spacing:-3.287200pt;}
.ws70{word-spacing:-3.015733pt;}
.ws69{word-spacing:-2.166933pt;}
.ws96{word-spacing:-2.140000pt;}
.ws92{word-spacing:-1.955200pt;}
.ws22{word-spacing:-1.941333pt;}
.ws97{word-spacing:-1.931067pt;}
.ws62{word-spacing:-1.865467pt;}
.ws4e{word-spacing:-1.726000pt;}
.ws6a{word-spacing:-1.705600pt;}
.ws4f{word-spacing:-1.529733pt;}
.ws78{word-spacing:-1.442533pt;}
.ws4d{word-spacing:-1.412267pt;}
.wsa2{word-spacing:-1.398400pt;}
.ws5f{word-spacing:-1.338000pt;}
.ws4b{word-spacing:-1.306667pt;}
.ws94{word-spacing:-1.253333pt;}
.ws5d{word-spacing:-1.205600pt;}
.ws76{word-spacing:-1.196933pt;}
.ws99{word-spacing:-1.148667pt;}
.ws3{word-spacing:-1.088667pt;}
.wsad{word-spacing:-1.042133pt;}
.ws24{word-spacing:-0.990800pt;}
.ws73{word-spacing:-0.984267pt;}
.ws8{word-spacing:-0.938667pt;}
.ws6{word-spacing:-0.927467pt;}
.ws21{word-spacing:-0.821333pt;}
.ws1e{word-spacing:-0.564933pt;}
.ws20{word-spacing:-0.551067pt;}
.ws6f{word-spacing:-0.514933pt;}
.wsa6{word-spacing:-0.336000pt;}
.wsa8{word-spacing:-0.300800pt;}
.ws51{word-spacing:-0.277600pt;}
.ws9a{word-spacing:-0.073600pt;}
.ws66{word-spacing:-0.041733pt;}
.ws9{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.022933pt;}
.wsc{word-spacing:0.042267pt;}
.ws4a{word-spacing:0.142133pt;}
.ws27{word-spacing:0.160000pt;}
.ws29{word-spacing:0.213333pt;}
.ws71{word-spacing:0.265333pt;}
.ws64{word-spacing:0.343067pt;}
.ws41{word-spacing:0.361867pt;}
.ws5{word-spacing:0.470533pt;}
.ws91{word-spacing:0.479067pt;}
.ws8e{word-spacing:0.542800pt;}
.ws75{word-spacing:0.596133pt;}
.ws90{word-spacing:0.644000pt;}
.ws1f{word-spacing:0.823867pt;}
.ws25{word-spacing:0.847600pt;}
.wsaf{word-spacing:0.849333pt;}
.wsa0{word-spacing:0.927733pt;}
.wsa4{word-spacing:0.944000pt;}
.ws1b{word-spacing:0.985600pt;}
.ws42{word-spacing:1.080533pt;}
.ws68{word-spacing:1.089067pt;}
.ws23{word-spacing:1.212800pt;}
.ws17{word-spacing:1.247200pt;}
.ws30{word-spacing:1.333467pt;}
.wsa7{word-spacing:1.346133pt;}
.ws9c{word-spacing:1.369733pt;}
.ws19{word-spacing:1.376000pt;}
.wsa5{word-spacing:1.444267pt;}
.ws1d{word-spacing:1.470800pt;}
.ws77{word-spacing:1.616667pt;}
.ws26{word-spacing:1.620400pt;}
.wsa1{word-spacing:1.646933pt;}
.ws32{word-spacing:1.651600pt;}
.ws61{word-spacing:1.893333pt;}
.ws58{word-spacing:2.145067pt;}
.ws6e{word-spacing:2.149867pt;}
.ws6d{word-spacing:2.389333pt;}
.ws39{word-spacing:2.450000pt;}
.ws9e{word-spacing:2.640000pt;}
.ws3b{word-spacing:2.656667pt;}
.ws65{word-spacing:2.854400pt;}
.ws53{word-spacing:3.261867pt;}
.ws38{word-spacing:3.724267pt;}
.ws72{word-spacing:4.219733pt;}
.ws31{word-spacing:4.681600pt;}
.ws98{word-spacing:4.998400pt;}
.ws14{word-spacing:5.103867pt;}
.ws63{word-spacing:6.598400pt;}
.ws55{word-spacing:6.735733pt;}
.ws5a{word-spacing:6.895733pt;}
.ws57{word-spacing:7.429067pt;}
.ws5c{word-spacing:7.924800pt;}
.ws56{word-spacing:8.163200pt;}
.ws48{word-spacing:8.744133pt;}
.ws54{word-spacing:9.033867pt;}
.ws44{word-spacing:9.290933pt;}
.ws3a{word-spacing:9.566667pt;}
.ws16{word-spacing:9.586800pt;}
.ws52{word-spacing:9.811200pt;}
.ws46{word-spacing:9.946533pt;}
.ws59{word-spacing:10.056400pt;}
.ws5b{word-spacing:10.295600pt;}
.ws45{word-spacing:15.717067pt;}
.ws47{word-spacing:15.931733pt;}
.ws7c{word-spacing:20.696533pt;}
.ws7d{word-spacing:21.203733pt;}
.ws3f{word-spacing:21.246267pt;}
.ws7e{word-spacing:21.343467pt;}
.ws40{word-spacing:21.430000pt;}
.ws3d{word-spacing:21.563333pt;}
.ws3e{word-spacing:25.240533pt;}
.ws3c{word-spacing:29.265067pt;}
.ws35{word-spacing:39.903733pt;}
.ws37{word-spacing:40.536667pt;}
.ws36{word-spacing:43.642133pt;}
.ws33{word-spacing:43.774000pt;}
.ws34{word-spacing:48.490400pt;}
.ws81{word-spacing:77.830667pt;}
.ws80{word-spacing:88.133200pt;}
.ws8c{word-spacing:110.699467pt;}
.ws89{word-spacing:113.328267pt;}
.ws82{word-spacing:128.366000pt;}
.ws8b{word-spacing:135.408267pt;}
.ws8d{word-spacing:147.499467pt;}
.ws88{word-spacing:150.128267pt;}
.ws87{word-spacing:182.976800pt;}
.ws8a{word-spacing:183.187200pt;}
.ws85{word-spacing:187.665733pt;}
.ws84{word-spacing:205.003467pt;}
.ws86{word-spacing:209.692400pt;}
._11{margin-left:-38.791905pt;}
._12{margin-left:-31.737733pt;}
._13{margin-left:-21.172267pt;}
._f{margin-left:-16.029014pt;}
._e{margin-left:-11.292228pt;}
._c{margin-left:-9.900751pt;}
._d{margin-left:-8.577165pt;}
._16{margin-left:-7.299249pt;}
._18{margin-left:-6.364702pt;}
._17{margin-left:-5.092800pt;}
._5{margin-left:-3.855867pt;}
._2{margin-left:-2.226000pt;}
._3{margin-left:-1.335600pt;}
._1{width:1.038800pt;}
._4{width:2.662133pt;}
._0{width:3.561600pt;}
._a{width:4.505067pt;}
._32{width:5.435067pt;}
._33{width:6.435112pt;}
._10{width:7.352714pt;}
._34{width:8.910133pt;}
._b{width:10.622933pt;}
._8{width:12.477067pt;}
._7{width:13.696400pt;}
._9{width:15.062000pt;}
._6{width:16.184000pt;}
._24{width:17.962667pt;}
._1a{width:19.131467pt;}
._1b{width:20.035467pt;}
._1e{width:21.047067pt;}
._36{width:22.054667pt;}
._26{width:23.861067pt;}
._20{width:25.235867pt;}
._35{width:26.232000pt;}
._25{width:28.065467pt;}
._23{width:31.956133pt;}
._14{width:37.182400pt;}
._22{width:43.590400pt;}
._21{width:45.053067pt;}
._27{width:45.971733pt;}
._1f{width:62.262800pt;}
._28{width:146.260400pt;}
._2f{width:210.653867pt;}
._2b{width:219.874667pt;}
._2e{width:224.050667pt;}
._30{width:225.066533pt;}
._31{width:232.407333pt;}
._29{width:233.538133pt;}
._2c{width:234.942267pt;}
._2a{width:238.857333pt;}
._2d{width:248.311467pt;}
._19{width:633.560533pt;}
._1d{width:771.890800pt;}
._15{width:846.531067pt;}
._1c{width:906.892267pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:32.133333pt;}
.fs1f{font-size:36.000000pt;}
.fs21{font-size:36.133333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:48.133333pt;}
.fs20{font-size:52.000000pt;}
.fs1e{font-size:52.133333pt;}
.fs26{font-size:56.000000pt;}
.fs18{font-size:56.133333pt;}
.fse{font-size:60.133333pt;}
.fs16{font-size:64.000000pt;}
.fs17{font-size:64.133333pt;}
.fs8{font-size:68.133333pt;}
.fs14{font-size:72.133333pt;}
.fs3{font-size:76.133333pt;}
.fs19{font-size:76.266667pt;}
.fs1c{font-size:80.133333pt;}
.fs1d{font-size:80.266667pt;}
.fs15{font-size:84.133333pt;}
.fs13{font-size:84.266667pt;}
.fs23{font-size:88.683433pt;}
.fs24{font-size:88.823978pt;}
.fs9{font-size:96.133333pt;}
.fsa{font-size:96.266667pt;}
.fsb{font-size:108.133333pt;}
.fs1a{font-size:108.266667pt;}
.fs29{font-size:116.133333pt;}
.fs2a{font-size:116.266667pt;}
.fs22{font-size:128.133333pt;}
.fs12{font-size:128.266667pt;}
.fs1{font-size:148.266667pt;}
.fs0{font-size:148.400000pt;}
.fs2{font-size:156.285226pt;}
.fs28{font-size:160.266667pt;}
.fs2b{font-size:192.400000pt;}
.fs11{font-size:212.400000pt;}
.fs1b{font-size:236.400000pt;}
.fsd{font-size:236.533333pt;}
.fs10{font-size:240.533333pt;}
.fsf{font-size:253.541860pt;}
.fs25{font-size:288.533333pt;}
.fsc{font-size:320.533333pt;}
.fs27{font-size:320.666667pt;}
.y28{bottom:-229.626667pt;}
.y0{bottom:0.000000pt;}
.yf2{bottom:13.133333pt;}
.y11{bottom:14.766667pt;}
.yd1{bottom:18.000000pt;}
.y27{bottom:20.333333pt;}
.y23{bottom:23.533333pt;}
.y2f{bottom:25.833333pt;}
.y6c{bottom:27.933333pt;}
.yff{bottom:28.000000pt;}
.yf1{bottom:29.166667pt;}
.ydf{bottom:29.333333pt;}
.y108{bottom:31.666667pt;}
.y57{bottom:34.800000pt;}
.yce{bottom:35.000000pt;}
.yd5{bottom:35.200000pt;}
.y113{bottom:36.833333pt;}
.y73{bottom:41.866667pt;}
.y6b{bottom:43.933333pt;}
.yf0{bottom:45.200000pt;}
.yde{bottom:45.366667pt;}
.yac{bottom:46.000000pt;}
.y41{bottom:46.166667pt;}
.yad{bottom:47.000000pt;}
.y107{bottom:47.700000pt;}
.yaf{bottom:50.640000pt;}
.yb2{bottom:50.666667pt;}
.yb5{bottom:50.693333pt;}
.yb8{bottom:50.733333pt;}
.ybb{bottom:50.773333pt;}
.yc2{bottom:50.933333pt;}
.yc5{bottom:50.973333pt;}
.yc8{bottom:51.000000pt;}
.ycc{bottom:51.066667pt;}
.ycf{bottom:51.100000pt;}
.yd2{bottom:51.133333pt;}
.ycb{bottom:52.000000pt;}
.yd4{bottom:52.166667pt;}
.y59{bottom:53.400000pt;}
.y84{bottom:55.733333pt;}
.y93{bottom:56.466667pt;}
.ya0{bottom:56.600000pt;}
.y72{bottom:57.866667pt;}
.y5b{bottom:58.366667pt;}
.y56{bottom:58.833333pt;}
.y6a{bottom:59.966667pt;}
.y102{bottom:60.166667pt;}
.y11a{bottom:60.233333pt;}
.yef{bottom:61.233333pt;}
.ydd{bottom:61.400000pt;}
.y21{bottom:64.133333pt;}
.y40{bottom:65.200000pt;}
.yfc{bottom:67.000000pt;}
.y122{bottom:68.766667pt;}
.yd3{bottom:69.133333pt;}
.yfd{bottom:71.160000pt;}
.y100{bottom:71.166667pt;}
.y92{bottom:72.500000pt;}
.y9f{bottom:72.633333pt;}
.y69{bottom:76.000000pt;}
.yee{bottom:77.266667pt;}
.y10{bottom:77.366667pt;}
.y58{bottom:77.433333pt;}
.y83{bottom:81.766667pt;}
.y5a{bottom:82.400000pt;}
.y55{bottom:82.866667pt;}
.yc7{bottom:86.000000pt;}
.yd0{bottom:86.100000pt;}
.y119{bottom:86.300000pt;}
.yf{bottom:88.400000pt;}
.y49{bottom:88.466667pt;}
.y91{bottom:88.500000pt;}
.y9e{bottom:88.666667pt;}
.y68{bottom:92.033333pt;}
.yed{bottom:93.300000pt;}
.ydc{bottom:93.466667pt;}
.y101{bottom:99.166667pt;}
.yc4{bottom:103.000000pt;}
.ycd{bottom:103.066667pt;}
.y121{bottom:103.833333pt;}
.y90{bottom:104.533333pt;}
.y9d{bottom:104.700000pt;}
.ya9{bottom:104.773333pt;}
.ye{bottom:106.433333pt;}
.yec{bottom:109.333333pt;}
.ydb{bottom:109.466667pt;}
.y118{bottom:111.333333pt;}
.y88{bottom:111.766667pt;}
.y10e{bottom:114.900000pt;}
.y43{bottom:118.033333pt;}
.y48{bottom:118.533333pt;}
.yc1{bottom:120.000000pt;}
.yca{bottom:120.033333pt;}
.y8f{bottom:120.566667pt;}
.y9c{bottom:120.700000pt;}
.yd{bottom:121.433333pt;}
.yeb{bottom:125.366667pt;}
.yda{bottom:125.500000pt;}
.y129{bottom:125.833333pt;}
.y85{bottom:129.466667pt;}
.yc{bottom:135.466667pt;}
.y9b{bottom:136.733333pt;}
.yc9{bottom:137.000000pt;}
.yfe{bottom:138.160000pt;}
.y3f{bottom:138.533333pt;}
.y120{bottom:138.906667pt;}
.yea{bottom:141.400000pt;}
.yd9{bottom:141.533333pt;}
.y47{bottom:147.560000pt;}
.yb{bottom:149.493333pt;}
.y87{bottom:149.826667pt;}
.y9a{bottom:152.773333pt;}
.yc6{bottom:153.973333pt;}
.ye9{bottom:157.400000pt;}
.yd8{bottom:157.573333pt;}
.y20{bottom:158.306667pt;}
.y3e{bottom:161.600000pt;}
.y103{bottom:162.200000pt;}
.ya{bottom:164.533333pt;}
.y99{bottom:168.800000pt;}
.yc3{bottom:170.933333pt;}
.y112{bottom:171.440000pt;}
.y10d{bottom:171.560000pt;}
.ye8{bottom:173.440000pt;}
.yd7{bottom:173.600000pt;}
.y9{bottom:174.533333pt;}
.y4c{bottom:181.840000pt;}
.y11f{bottom:182.973333pt;}
.y104{bottom:183.533333pt;}
.y98{bottom:184.840000pt;}
.y3d{bottom:185.640000pt;}
.y5e{bottom:185.933333pt;}
.y51{bottom:187.360000pt;}
.yc0{bottom:187.893333pt;}
.yd6{bottom:189.640000pt;}
.y8{bottom:193.573333pt;}
.yfb{bottom:193.733333pt;}
.y86{bottom:194.866667pt;}
.y111{bottom:197.466667pt;}
.y97{bottom:200.866667pt;}
.y4e{bottom:202.133333pt;}
.y4b{bottom:203.906667pt;}
.y14{bottom:204.400000pt;}
.ybf{bottom:204.866667pt;}
.yba{bottom:205.000000pt;}
.y7{bottom:207.600000pt;}
.y3c{bottom:208.666667pt;}
.y18{bottom:210.293333pt;}
.y96{bottom:216.906667pt;}
.y11e{bottom:218.040000pt;}
.yfa{bottom:219.773333pt;}
.y5d{bottom:221.000000pt;}
.y127{bottom:221.106667pt;}
.y6{bottom:221.640000pt;}
.ybe{bottom:221.840000pt;}
.yb7{bottom:222.000000pt;}
.y110{bottom:222.533333pt;}
.y78{bottom:223.506667pt;}
.y4d{bottom:225.173333pt;}
.y4a{bottom:226.933333pt;}
.y67{bottom:228.506667pt;}
.y10b{bottom:231.226667pt;}
.y3b{bottom:231.733333pt;}
.ye7{bottom:234.773333pt;}
.ybd{bottom:238.800000pt;}
.yb4{bottom:239.000000pt;}
.y126{bottom:239.133333pt;}
.y66{bottom:244.533333pt;}
.yf9{bottom:244.840000pt;}
.y50{bottom:246.066667pt;}
.y5{bottom:247.666667pt;}
.y10c{bottom:247.693333pt;}
.y106{bottom:250.693333pt;}
.y11d{bottom:253.106667pt;}
.y3a{bottom:254.773333pt;}
.y17{bottom:255.106667pt;}
.y77{bottom:255.573333pt;}
.ybc{bottom:255.773333pt;}
.yb1{bottom:256.000000pt;}
.y125{bottom:256.173333pt;}
.ye6{bottom:256.800000pt;}
.y13{bottom:258.600000pt;}
.y10a{bottom:260.306667pt;}
.y53{bottom:260.906667pt;}
.ya8{bottom:266.000000pt;}
.y5c{bottom:266.106667pt;}
.y4{bottom:269.733333pt;}
.y26{bottom:270.533333pt;}
.yf8{bottom:270.866667pt;}
.yb9{bottom:272.733333pt;}
.yae{bottom:273.000000pt;}
.y117{bottom:274.626667pt;}
.y39{bottom:277.800000pt;}
.ye5{bottom:279.840000pt;}
.y1f{bottom:283.506667pt;}
.yb6{bottom:289.693333pt;}
.y3{bottom:291.773333pt;}
.yab{bottom:294.000000pt;}
.y11c{bottom:296.173333pt;}
.yf7{bottom:296.933333pt;}
.y63{bottom:298.333333pt;}
.y82{bottom:298.466667pt;}
.y76{bottom:299.840000pt;}
.y116{bottom:300.666667pt;}
.ye4{bottom:301.893333pt;}
.yb3{bottom:306.666667pt;}
.ya4{bottom:309.666667pt;}
.y34{bottom:311.360000pt;}
.y81{bottom:312.506667pt;}
.y12{bottom:313.333333pt;}
.y2{bottom:321.333333pt;}
.y105{bottom:321.840000pt;}
.yf6{bottom:321.960000pt;}
.y4f{bottom:322.200000pt;}
.yb0{bottom:323.640000pt;}
.ye3{bottom:323.933333pt;}
.y62{bottom:324.360000pt;}
.y80{bottom:327.533333pt;}
.ya3{bottom:328.693333pt;}
.y16{bottom:331.240000pt;}
.y52{bottom:332.040000pt;}
.y33{bottom:333.400000pt;}
.y7f{bottom:341.560000pt;}
.y1e{bottom:342.840000pt;}
.ye2{bottom:346.973333pt;}
.ya2{bottom:347.733333pt;}
.y115{bottom:349.506667pt;}
.y61{bottom:350.440000pt;}
.y8e{bottom:353.933333pt;}
.yaa{bottom:355.773333pt;}
.y32{bottom:356.440000pt;}
.y7e{bottom:356.600000pt;}
.y37{bottom:359.866667pt;}
.y1d{bottom:360.866667pt;}
.y128{bottom:362.306667pt;}
.ya7{bottom:362.360000pt;}
.y1{bottom:365.440000pt;}
.ya1{bottom:366.773333pt;}
.yf4{bottom:367.840000pt;}
.y7d{bottom:370.600000pt;}
.y8d{bottom:370.973333pt;}
.y11b{bottom:372.893333pt;}
.y114{bottom:374.533333pt;}
.y60{bottom:376.466667pt;}
.y31{bottom:378.466667pt;}
.y1c{bottom:378.893333pt;}
.y46{bottom:380.506667pt;}
.y36{bottom:381.933333pt;}
.y7c{bottom:384.640000pt;}
.y71{bottom:386.266667pt;}
.y8c{bottom:388.000000pt;}
.ye1{bottom:391.466667pt;}
.y22{bottom:395.893333pt;}
.y1b{bottom:395.933333pt;}
.ya6{bottom:396.693333pt;}
.y15{bottom:399.000000pt;}
.y30{bottom:401.533333pt;}
.y70{bottom:402.306667pt;}
.y24{bottom:402.560000pt;}
.y35{bottom:404.973333pt;}
.y8b{bottom:405.026667pt;}
.yf5{bottom:409.666667pt;}
.y65{bottom:410.266667pt;}
.y45{bottom:410.560000pt;}
.y124{bottom:413.200000pt;}
.y95{bottom:418.026667pt;}
.y6f{bottom:418.333333pt;}
.y109{bottom:418.893333pt;}
.y75{bottom:420.733333pt;}
.y8a{bottom:422.066667pt;}
.ye0{bottom:423.533333pt;}
.y7b{bottom:432.640000pt;}
.ya5{bottom:432.773333pt;}
.y6e{bottom:434.360000pt;}
.y10f{bottom:435.026667pt;}
.y64{bottom:436.333333pt;}
.y89{bottom:438.106667pt;}
.y44{bottom:439.600000pt;}
.y42{bottom:440.200000pt;}
.y74{bottom:445.800000pt;}
.yf3{bottom:449.560000pt;}
.y2d{bottom:449.640000pt;}
.y6d{bottom:450.400000pt;}
.y123{bottom:454.640000pt;}
.y7a{bottom:454.693333pt;}
.y29{bottom:458.866667pt;}
.y1a{bottom:458.933333pt;}
.y54{bottom:466.973333pt;}
.y5f{bottom:475.000000pt;}
.y2c{bottom:475.693333pt;}
.y25{bottom:475.733333pt;}
.y19{bottom:480.973333pt;}
.y94{bottom:483.026667pt;}
.y38{bottom:485.973333pt;}
.y79{bottom:486.733333pt;}
.y2b{bottom:496.066667pt;}
.y12a{bottom:497.933333pt;}
.y2e{bottom:499.306667pt;}
.y2a{bottom:505.133333pt;}
.h5{height:28.609375pt;}
.h7{height:28.728581pt;}
.h46{height:36.093750pt;}
.h49{height:36.194010pt;}
.h37{height:39.076172pt;}
.h43{height:39.176367pt;}
.h4b{height:39.201823pt;}
.h40{height:39.304297pt;}
.h44{height:40.994010pt;}
.h41{height:41.031055pt;}
.h53{height:42.109375pt;}
.h52{height:42.209635pt;}
.h1d{height:42.436800pt;}
.h6{height:42.914062pt;}
.h3c{height:43.031250pt;}
.h8{height:43.033268pt;}
.h3b{height:43.150781pt;}
.h36{height:46.617188pt;}
.h34{height:46.736719pt;}
.h35{height:48.273438pt;}
.h38{height:48.392969pt;}
.h3d{height:48.499635pt;}
.h60{height:51.233600pt;}
.h11{height:52.556533pt;}
.h26{height:57.218750pt;}
.h61{height:57.248698pt;}
.h27{height:57.337956pt;}
.h28{height:57.375000pt;}
.h25{height:57.494531pt;}
.h9{height:58.254000pt;}
.h1b{height:60.288000pt;}
.h1c{height:60.413600pt;}
.h10{height:65.094000pt;}
.h4{height:66.540533pt;}
.h47{height:67.340677pt;}
.h21{height:67.834800pt;}
.h20{height:67.953600pt;}
.h22{height:68.252344pt;}
.h23{height:68.371875pt;}
.h1f{height:71.717600pt;}
.h30{height:71.838281pt;}
.h31{height:71.957813pt;}
.h55{height:72.287760pt;}
.h5a{height:75.338021pt;}
.h39{height:75.424219pt;}
.h17{height:75.543750pt;}
.h2b{height:79.253600pt;}
.h4e{height:79.371673pt;}
.h2c{height:79.379200pt;}
.h33{height:82.194000pt;}
.h4c{height:82.298226pt;}
.h42{height:82.308000pt;}
.h4d{height:82.428651pt;}
.h1e{height:85.654800pt;}
.ha{height:86.182031pt;}
.hb{height:86.301563pt;}
.h18{height:90.557600pt;}
.h2a{height:90.683200pt;}
.h24{height:92.454000pt;}
.h29{height:92.568000pt;}
.hf{height:94.508533pt;}
.h3a{height:94.625067pt;}
.h19{height:96.430800pt;}
.h16{height:96.450521pt;}
.hc{height:96.939844pt;}
.h2f{height:97.256641pt;}
.h58{height:97.376563pt;}
.h5e{height:99.059200pt;}
.h5c{height:101.500533pt;}
.h5d{height:101.617067pt;}
.h48{height:102.000000pt;}
.h54{height:109.668000pt;}
.h1a{height:111.934000pt;}
.h3e{height:111.988533pt;}
.h3f{height:112.105067pt;}
.h4a{height:113.000000pt;}
.h32{height:126.768000pt;}
.h57{height:129.585067pt;}
.h2{height:133.353125pt;}
.h1{height:133.473047pt;}
.h3{height:140.565130pt;}
.h59{height:143.676563pt;}
.h50{height:147.000000pt;}
.h4f{height:158.000000pt;}
.h5f{height:168.157600pt;}
.h15{height:200.080800pt;}
.h13{height:202.715104pt;}
.h45{height:203.000000pt;}
.h2d{height:212.621484pt;}
.he{height:212.741406pt;}
.h2e{height:222.814400pt;}
.h14{height:226.919965pt;}
.h12{height:235.286846pt;}
.h51{height:258.665625pt;}
.h5b{height:274.170000pt;}
.hd{height:288.292188pt;}
.h56{height:288.412109pt;}
.h0{height:540.000000pt;}
.w3{width:47.000000pt;}
.w2{width:81.000000pt;}
.w5{width:116.000000pt;}
.w6{width:277.000000pt;}
.w4{width:477.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x66{left:3.266667pt;}
.x63{left:4.800000pt;}
.x69{left:6.506667pt;}
.x68{left:7.840000pt;}
.x81{left:10.773333pt;}
.x97{left:26.499986pt;}
.x1d{left:27.799986pt;}
.x1f{left:30.499986pt;}
.x98{left:33.499986pt;}
.x24{left:36.866652pt;}
.x5f{left:39.599986pt;}
.x17{left:42.966652pt;}
.x1e{left:47.499986pt;}
.x61{left:49.699986pt;}
.x4c{left:54.633319pt;}
.x49{left:57.399986pt;}
.x88{left:58.499986pt;}
.x19{left:60.599986pt;}
.x1c{left:62.199986pt;}
.x91{left:66.566652pt;}
.x10{left:68.199986pt;}
.x3d{left:70.433319pt;}
.x75{left:71.399986pt;}
.x8d{left:72.966652pt;}
.x8b{left:77.799986pt;}
.x92{left:79.566652pt;}
.x55{left:82.966652pt;}
.x35{left:83.866652pt;}
.x5d{left:89.499986pt;}
.x95{left:90.433319pt;}
.x93{left:97.099986pt;}
.x1a{left:97.999986pt;}
.x8e{left:102.999986pt;}
.x89{left:106.566652pt;}
.x8c{left:107.833319pt;}
.x40{left:108.966652pt;}
.x25{left:113.733319pt;}
.x37{left:117.299986pt;}
.x5{left:118.466652pt;}
.x90{left:119.799986pt;}
.x13{left:123.099986pt;}
.x36{left:125.733319pt;}
.xb{left:128.033319pt;}
.x57{left:130.666652pt;}
.x56{left:134.666652pt;}
.x1{left:136.773319pt;}
.x6{left:143.293319pt;}
.x73{left:149.959986pt;}
.x3c{left:152.959986pt;}
.x71{left:155.133319pt;}
.x5b{left:161.026652pt;}
.x72{left:164.626652pt;}
.x11{left:168.359986pt;}
.x6e{left:170.133319pt;}
.x34{left:172.106652pt;}
.x41{left:181.533319pt;}
.x4b{left:183.639986pt;}
.x58{left:184.733319pt;}
.x6f{left:186.173319pt;}
.x4a{left:187.639986pt;}
.xe{left:188.599986pt;}
.x5e{left:190.439986pt;}
.x70{left:193.333319pt;}
.x1b{left:196.439986pt;}
.xf{left:210.466652pt;}
.x12{left:215.999986pt;}
.x59{left:217.266652pt;}
.x5c{left:228.106652pt;}
.x21{left:237.333319pt;}
.x87{left:243.066652pt;}
.x33{left:245.199986pt;}
.x5a{left:259.466652pt;}
.x2c{left:262.333319pt;}
.x18{left:269.839986pt;}
.x2d{left:273.106652pt;}
.x74{left:277.439986pt;}
.x2e{left:281.706652pt;}
.x53{left:288.959986pt;}
.x7{left:294.066652pt;}
.x8{left:302.799986pt;}
.x54{left:306.959986pt;}
.x38{left:310.506652pt;}
.x94{left:312.733319pt;}
.x9{left:322.733319pt;}
.x47{left:333.639986pt;}
.x7b{left:334.839986pt;}
.x78{left:339.173319pt;}
.x7a{left:345.866652pt;}
.x79{left:348.693319pt;}
.x76{left:354.199986pt;}
.x65{left:360.000000pt;}
.x7d{left:365.866652pt;}
.x77{left:370.199986pt;}
.x6c{left:371.333319pt;}
.x86{left:373.359986pt;}
.x62{left:374.999986pt;}
.x39{left:377.733319pt;}
.x3e{left:380.973319pt;}
.x3f{left:386.639986pt;}
.x85{left:393.026652pt;}
.x7c{left:394.733319pt;}
.xa{left:396.559986pt;}
.x67{left:406.000000pt;}
.x15{left:409.239986pt;}
.x7f{left:410.333319pt;}
.x9c{left:419.173319pt;}
.x22{left:422.693319pt;}
.x96{left:425.199986pt;}
.x6d{left:428.573319pt;}
.x32{left:431.399986pt;}
.x31{left:432.666652pt;}
.x6b{left:434.093319pt;}
.x6a{left:437.773319pt;}
.x27{left:439.239986pt;}
.x80{left:442.000000pt;}
.xc{left:446.666652pt;}
.x2f{left:450.333319pt;}
.x26{left:457.306652pt;}
.x8f{left:459.066652pt;}
.x7e{left:461.466652pt;}
.x30{left:465.666652pt;}
.x28{left:468.799986pt;}
.x2{left:528.839986pt;}
.x82{left:557.000000pt;}
.xd{left:566.506652pt;}
.x20{left:571.333319pt;}
.x42{left:573.199986pt;}
.x44{left:577.066652pt;}
.x60{left:598.999986pt;}
.x64{left:602.839986pt;}
.x2a{left:603.999986pt;}
.x3a{left:607.133319pt;}
.x83{left:613.733319pt;}
.x43{left:619.599986pt;}
.x29{left:634.306652pt;}
.x84{left:638.599986pt;}
.x2b{left:651.773319pt;}
.x48{left:665.639986pt;}
.x3b{left:699.999986pt;}
.x4f{left:719.066652pt;}
.x51{left:722.399986pt;}
.x3{left:726.706652pt;}
.x4d{left:732.439986pt;}
.x50{left:739.106652pt;}
.x52{left:747.106652pt;}
.x4e{left:759.133319pt;}
.x16{left:760.173319pt;}
.x14{left:767.466652pt;}
.x46{left:782.266652pt;}
.x9a{left:786.533319pt;}
.x45{left:795.093319pt;}
.x99{left:804.133319pt;}
.x9b{left:810.133319pt;}
.x23{left:912.893319pt;}
.x4{left:922.066652pt;}
.x8a{left:932.959986pt;}
}




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