
    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_cf33000694a96c05e1241129.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_813bdfb01d80dbc7969682ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_512898173f066b582654d6d4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7c19831e0afb5bb33b630161.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1e3ff3bb04c95dc63a810dff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959473;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_2eae9864a2f378ea4790a876.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_09e4503c5d5649e95c735f5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_e51c59ea061476d96bf1da30.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.089844;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_d841e7e37065c3ea9bf4c66a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.674805;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_b0406a2185339fb7d0f71d95.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.952637;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_ca04c11eb480894708983ffd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952637;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_d8e2f72ddd49590063047135.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.092773;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_a9f6748de4b3ac0a4481302b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_38017780dd3adcaa168fc415.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9fb200ed2de5fed3177f5af2.woff2')format("woff");}.fff{font-family:fff;line-height:1.100098;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_d4c7c1fa03a59f63fce5333e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.927734;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_69ce8f063ff50d73351cb576.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.100098;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_f0b3582587e1d5cb7df462d1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.952637;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_154233604f76868e1a09549e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.997559;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_efca2898c3978cb6f8d2ea4f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.927734;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_504b2dc1060b801e0a941bf8.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_32e15015fda97bc069697c6b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.952637;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_239d124b78e5983d563e7d1d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.747559;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);}
.v2{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.ls9f{letter-spacing:-2.987424px;}
.ls3e{letter-spacing:-2.445984px;}
.ls2e{letter-spacing:-2.119680px;}
.ls7a{letter-spacing:-2.079360px;}
.ls5c{letter-spacing:-2.053440px;}
.ls7d{letter-spacing:-1.986336px;}
.ls75{letter-spacing:-1.845740px;}
.ls6a{letter-spacing:-1.822668px;}
.lsd{letter-spacing:-1.753920px;}
.lsa{letter-spacing:-1.729728px;}
.ls81{letter-spacing:-1.722240px;}
.ls62{letter-spacing:-1.656000px;}
.ls3b{letter-spacing:-1.550016px;}
.ls68{letter-spacing:-1.523520px;}
.ls93{letter-spacing:-1.499664px;}
.ls2f{letter-spacing:-1.457280px;}
.ls11{letter-spacing:-1.330560px;}
.ls98{letter-spacing:-1.326625px;}
.ls1d{letter-spacing:-1.313280px;}
.ls5d{letter-spacing:-1.258560px;}
.ls63{letter-spacing:-1.192320px;}
.ls36{letter-spacing:-1.126080px;}
.ls51{letter-spacing:-1.028160px;}
.ls32{letter-spacing:-0.993600px;}
.ls1b{letter-spacing:-0.984960px;}
.ls89{letter-spacing:-0.973728px;}
.ls9a{letter-spacing:-0.941184px;}
.ls1e{letter-spacing:-0.930240px;}
.ls64{letter-spacing:-0.927360px;}
.ls19{letter-spacing:-0.828000px;}
.ls39{letter-spacing:-0.794880px;}
.ls7b{letter-spacing:-0.711360px;}
.ls79{letter-spacing:-0.684000px;}
.ls6{letter-spacing:-0.662400px;}
.ls6e{letter-spacing:-0.656640px;}
.ls46{letter-spacing:-0.648000px;}
.ls76{letter-spacing:-0.645696px;}
.ls3a{letter-spacing:-0.622656px;}
.ls6d{letter-spacing:-0.618336px;}
.lsb{letter-spacing:-0.604800px;}
.ls6c{letter-spacing:-0.601920px;}
.ls24{letter-spacing:-0.596160px;}
.ls6b{letter-spacing:-0.547200px;}
.ls57{letter-spacing:-0.529920px;}
.lsa3{letter-spacing:-0.516672px;}
.ls83{letter-spacing:-0.492480px;}
.ls6f{letter-spacing:-0.465120px;}
.ls9{letter-spacing:-0.463680px;}
.ls58{letter-spacing:-0.457056px;}
.ls23{letter-spacing:-0.437760px;}
.ls70{letter-spacing:-0.426816px;}
.lsa6{letter-spacing:-0.410688px;}
.ls8{letter-spacing:-0.397440px;}
.ls5{letter-spacing:-0.331200px;}
.ls8a{letter-spacing:-0.322848px;}
.ls74{letter-spacing:-0.305701px;}
.lsf{letter-spacing:-0.302400px;}
.ls49{letter-spacing:-0.273600px;}
.ls30{letter-spacing:-0.264960px;}
.ls7{letter-spacing:-0.198720px;}
.ls91{letter-spacing:-0.173038px;}
.ls94{letter-spacing:-0.164160px;}
.ls3c{letter-spacing:-0.136800px;}
.ls16{letter-spacing:-0.105984px;}
.lsa5{letter-spacing:-0.059616px;}
.ls1{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000240px;}
.ls2a{letter-spacing:0.013440px;}
.ls13{letter-spacing:0.057600px;}
.ls22{letter-spacing:0.103968px;}
.ls85{letter-spacing:0.109440px;}
.lse{letter-spacing:0.114912px;}
.ls90{letter-spacing:0.115359px;}
.ls8e{letter-spacing:0.120000px;}
.ls33{letter-spacing:0.132480px;}
.ls92{letter-spacing:0.138240px;}
.ls21{letter-spacing:0.146880px;}
.ls78{letter-spacing:0.164160px;}
.ls84{letter-spacing:0.173038px;}
.ls1c{letter-spacing:0.175104px;}
.ls48{letter-spacing:0.181440px;}
.lsa1{letter-spacing:0.198720px;}
.ls9c{letter-spacing:0.205344px;}
.ls69{letter-spacing:0.218880px;}
.ls3d{letter-spacing:0.224352px;}
.ls8f{letter-spacing:0.230717px;}
.ls8c{letter-spacing:0.256320px;}
.ls34{letter-spacing:0.264960px;}
.ls88{letter-spacing:0.271093px;}
.ls3{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.302400px;}
.lsa0{letter-spacing:0.304704px;}
.ls1a{letter-spacing:0.328320px;}
.ls38{letter-spacing:0.331200px;}
.ls9d{letter-spacing:0.346608px;}
.lsa2{letter-spacing:0.357696px;}
.ls14{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.383040px;}
.ls2c{letter-spacing:0.396000px;}
.ls35{letter-spacing:0.397440px;}
.ls87{letter-spacing:0.403756px;}
.ls86{letter-spacing:0.426816px;}
.ls2{letter-spacing:0.432000px;}
.ls7c{letter-spacing:0.437760px;}
.ls4b{letter-spacing:0.457056px;}
.ls20{letter-spacing:0.463680px;}
.ls5e{letter-spacing:0.466560px;}
.ls99{letter-spacing:0.497952px;}
.ls59{letter-spacing:0.504000px;}
.ls5f{letter-spacing:0.516672px;}
.ls2d{letter-spacing:0.529920px;}
.ls50{letter-spacing:0.563040px;}
.ls54{letter-spacing:0.564480px;}
.ls27{letter-spacing:0.574560px;}
.ls31{letter-spacing:0.596160px;}
.ls1f{letter-spacing:0.609408px;}
.lsa4{letter-spacing:0.622656px;}
.ls77{letter-spacing:0.656640px;}
.ls37{letter-spacing:0.662400px;}
.ls10{letter-spacing:0.665280px;}
.ls55{letter-spacing:0.669024px;}
.ls26{letter-spacing:0.671040px;}
.ls9e{letter-spacing:0.684480px;}
.ls12{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.722016px;}
.ls47{letter-spacing:0.728640px;}
.ls72{letter-spacing:0.758939px;}
.ls56{letter-spacing:0.791040px;}
.ls60{letter-spacing:0.840000px;}
.ls82{letter-spacing:0.900000px;}
.ls8b{letter-spacing:0.930240px;}
.ls96{letter-spacing:0.976320px;}
.ls67{letter-spacing:1.126080px;}
.ls53{letter-spacing:1.331424px;}
.ls61{letter-spacing:1.584000px;}
.ls4a{letter-spacing:2.160000px;}
.ls80{letter-spacing:2.340000px;}
.ls44{letter-spacing:3.600000px;}
.ls52{letter-spacing:5.040000px;}
.ls4d{letter-spacing:6.480000px;}
.ls42{letter-spacing:7.920000px;}
.ls5a{letter-spacing:8.945280px;}
.ls28{letter-spacing:9.360000px;}
.ls4f{letter-spacing:9.480000px;}
.ls45{letter-spacing:10.800000px;}
.ls3f{letter-spacing:12.240000px;}
.ls40{letter-spacing:12.420000px;}
.ls7f{letter-spacing:13.680000px;}
.ls97{letter-spacing:15.120000px;}
.ls9b{letter-spacing:15.240000px;}
.ls5b{letter-spacing:16.560000px;}
.ls29{letter-spacing:19.440000px;}
.ls43{letter-spacing:20.880000px;}
.ls4e{letter-spacing:22.320000px;}
.ls65{letter-spacing:23.760000px;}
.ls8d{letter-spacing:25.200000px;}
.ls95{letter-spacing:25.320000px;}
.ls2b{letter-spacing:26.640000px;}
.ls41{letter-spacing:28.080000px;}
.ls4c{letter-spacing:30.960000px;}
.ls73{letter-spacing:78.508800px;}
.ls7e{letter-spacing:78.628800px;}
.ls71{letter-spacing:81.820800px;}
.ls66{letter-spacing:81.940800px;}
.ls0{letter-spacing:846.420000px;}
.ls15{letter-spacing:847.860000px;}
.ls4{letter-spacing:849.300000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5c{word-spacing:-66.240000px;}
.ws6{word-spacing:-60.480000px;}
.wse{word-spacing:-54.720000px;}
.ws29{word-spacing:-18.504000px;}
.ws0{word-spacing:-18.288000px;}
.ws15{word-spacing:-18.000000px;}
.ws36{word-spacing:-17.686080px;}
.ws35{word-spacing:-17.455598px;}
.ws28{word-spacing:-17.352000px;}
.ws4b{word-spacing:-17.229024px;}
.ws1b{word-spacing:-17.222400px;}
.ws5a{word-spacing:-17.182656px;}
.ws10{word-spacing:-17.169408px;}
.ws18{word-spacing:-17.156160px;}
.ws16{word-spacing:-17.089920px;}
.ws30{word-spacing:-17.076672px;}
.ws37{word-spacing:-17.023680px;}
.ws25{word-spacing:-17.017056px;}
.ws21{word-spacing:-16.957440px;}
.ws57{word-spacing:-16.917696px;}
.ws54{word-spacing:-16.864704px;}
.ws1a{word-spacing:-16.824960px;}
.ws56{word-spacing:-16.758720px;}
.ws1d{word-spacing:-16.692480px;}
.ws3{word-spacing:-16.560000px;}
.ws5b{word-spacing:-16.500384px;}
.wsa{word-spacing:-16.454016px;}
.ws55{word-spacing:-16.361280px;}
.ws17{word-spacing:-16.295040px;}
.ws2{word-spacing:-16.228800px;}
.ws5{word-spacing:-16.162560px;}
.ws5d{word-spacing:-16.149312px;}
.ws27{word-spacing:-16.102944px;}
.ws19{word-spacing:-16.096320px;}
.ws59{word-spacing:-16.043328px;}
.ws2a{word-spacing:-16.030080px;}
.ws20{word-spacing:-15.963840px;}
.ws1c{word-spacing:-15.937344px;}
.ws4{word-spacing:-15.897600px;}
.ws58{word-spacing:-15.765120px;}
.wsc{word-spacing:-15.732000px;}
.ws32{word-spacing:-15.632640px;}
.ws2d{word-spacing:-15.566400px;}
.ws26{word-spacing:-15.433920px;}
.ws31{word-spacing:-15.367680px;}
.ws23{word-spacing:-15.301440px;}
.ws8{word-spacing:-15.120000px;}
.ws53{word-spacing:-15.036480px;}
.ws2e{word-spacing:-14.904000px;}
.ws7{word-spacing:-14.817600px;}
.ws46{word-spacing:-14.690935px;}
.ws4d{word-spacing:-14.650559px;}
.ws4c{word-spacing:-14.535201px;}
.ws2b{word-spacing:-14.440320px;}
.ws3b{word-spacing:-14.419842px;}
.ws41{word-spacing:-14.117760px;}
.ws3e{word-spacing:-14.114141px;}
.ws45{word-spacing:-14.106816px;}
.ws24{word-spacing:-14.091840px;}
.ws3d{word-spacing:-14.063040px;}
.ws11{word-spacing:-14.008320px;}
.ws1f{word-spacing:-13.904352px;}
.ws38{word-spacing:-13.898880px;}
.ws50{word-spacing:-13.855104px;}
.ws3f{word-spacing:-13.844160px;}
.ws9{word-spacing:-13.789440px;}
.ws12{word-spacing:-13.783968px;}
.wsb{word-spacing:-13.680000px;}
.ws1e{word-spacing:-13.543200px;}
.ws51{word-spacing:-13.515840px;}
.ws44{word-spacing:-13.406400px;}
.ws47{word-spacing:-13.357152px;}
.ws3c{word-spacing:-13.253184px;}
.ws13{word-spacing:-13.242240px;}
.ws49{word-spacing:-13.214880px;}
.ws43{word-spacing:-13.187520px;}
.ws39{word-spacing:-13.132800px;}
.ws52{word-spacing:-13.093216px;}
.ws48{word-spacing:-13.078080px;}
.ws3a{word-spacing:-13.061664px;}
.ws4f{word-spacing:-13.034304px;}
.ws40{word-spacing:-12.968640px;}
.ws4e{word-spacing:-12.920178px;}
.wsf{word-spacing:-12.749760px;}
.wsd{word-spacing:-12.695040px;}
.ws42{word-spacing:-1.584000px;}
.ws1{word-spacing:0.000000px;}
.ws34{word-spacing:3.838656px;}
.ws33{word-spacing:5.278656px;}
.ws22{word-spacing:38.016000px;}
.ws2c{word-spacing:38.136000px;}
.ws14{word-spacing:40.584000px;}
.ws2f{word-spacing:44.038656px;}
.ws4a{word-spacing:44.158656px;}
._f{margin-left:-15.898560px;}
._c{margin-left:-14.466816px;}
._e{margin-left:-12.872736px;}
._b{margin-left:-10.776480px;}
._d{margin-left:-5.305920px;}
._a{margin-left:-3.314304px;}
._4{margin-left:-2.298240px;}
._0{margin-left:-1.254240px;}
._1{width:1.362720px;}
._2{width:2.663520px;}
._10{width:3.800160px;}
._1a{width:5.145120px;}
._15{width:6.167040px;}
._14{width:7.277280px;}
._13{width:8.743680px;}
._12{width:10.092480px;}
._16{width:11.118720px;}
._11{width:12.254400px;}
._1c{width:13.408608px;}
._1d{width:14.502912px;}
._1f{width:15.527136px;}
._3{width:17.220960px;}
._5{width:18.892320px;}
._19{width:20.751840px;}
._20{width:22.129440px;}
._7{width:23.197920px;}
._6{width:24.583200px;}
._8{width:25.669920px;}
._9{width:27.150816px;}
._1e{width:28.408320px;}
._1b{width:29.795520px;}
._21{width:31.530240px;}
._17{width:33.243840px;}
._18{width:34.595040px;}
._27{width:37.483200px;}
._28{width:38.991744px;}
._23{width:40.273920px;}
._22{width:42.505920px;}
._24{width:43.598880px;}
._25{width:46.238400px;}
._26{width:122.523360px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fsa{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs9{font-size:57.679368px;}
.fs3{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:69.822393px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs0{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y14c{bottom:3.600000px;}
.y16a{bottom:3.960000px;}
.y15c{bottom:3.990000px;}
.y144{bottom:5.400000px;}
.y153{bottom:5.445000px;}
.y140{bottom:5.760000px;}
.y145{bottom:7.920000px;}
.y151{bottom:18.720000px;}
.y14b{bottom:18.750000px;}
.y1b2{bottom:19.080000px;}
.y15b{bottom:19.110000px;}
.y173{bottom:19.125000px;}
.y164{bottom:19.440000px;}
.y216{bottom:20.520000px;}
.y13d{bottom:20.880000px;}
.y169{bottom:20.910000px;}
.y1c0{bottom:21.240000px;}
.y13f{bottom:23.040000px;}
.y1d8{bottom:23.070000px;}
.y152{bottom:23.085000px;}
.y1df{bottom:23.400000px;}
.y162{bottom:33.120000px;}
.y202{bottom:33.840000px;}
.y150{bottom:34.200000px;}
.y14a{bottom:34.230000px;}
.y163{bottom:34.560000px;}
.y15a{bottom:34.590000px;}
.y201{bottom:35.280000px;}
.y215{bottom:35.670000px;}
.y1a6{bottom:36.000000px;}
.y1bf{bottom:36.390000px;}
.y172{bottom:36.405000px;}
.y230{bottom:37.800000px;}
.y181{bottom:37.830000px;}
.y168{bottom:38.190000px;}
.y211{bottom:38.520000px;}
.y167{bottom:38.550000px;}
.y220{bottom:38.565000px;}
.y1b8{bottom:38.880000px;}
.y17d{bottom:39.990000px;}
.y1bb{bottom:40.320000px;}
.y143{bottom:40.350000px;}
.y13e{bottom:40.680000px;}
.y1fc{bottom:40.710000px;}
.y192{bottom:40.725000px;}
.y197{bottom:47.190000px;}
.y1a5{bottom:48.960000px;}
.y1b1{bottom:49.680000px;}
.y198{bottom:49.710000px;}
.y161{bottom:50.040000px;}
.y159{bottom:50.070000px;}
.y214{bottom:50.790000px;}
.y14f{bottom:51.480000px;}
.y149{bottom:51.510000px;}
.y200{bottom:52.950000px;}
.y22f{bottom:53.280000px;}
.y20a{bottom:53.310000px;}
.y218{bottom:53.640000px;}
.y17a{bottom:53.670000px;}
.y21f{bottom:53.685000px;}
.y1b7{bottom:54.000000px;}
.y19f{bottom:54.030000px;}
.y171{bottom:54.045000px;}
.y1b6{bottom:55.440000px;}
.y1be{bottom:55.470000px;}
.y17c{bottom:57.270000px;}
.y1a1{bottom:57.960000px;}
.y142{bottom:57.990000px;}
.y191{bottom:58.005000px;}
.y1ad{bottom:58.680000px;}
.y196{bottom:64.830000px;}
.y1b0{bottom:65.160000px;}
.y19d{bottom:65.190000px;}
.y1a4{bottom:66.600000px;}
.y158{bottom:67.350000px;}
.y160{bottom:67.680000px;}
.y165{bottom:68.040000px;}
.y180{bottom:68.790000px;}
.y21e{bottom:68.805000px;}
.y14e{bottom:69.120000px;}
.y148{bottom:69.150000px;}
.y208{bottom:69.165000px;}
.y19e{bottom:69.510000px;}
.y170{bottom:69.525000px;}
.y1ff{bottom:70.230000px;}
.y179{bottom:70.590000px;}
.y17b{bottom:72.750000px;}
.y1b5{bottom:73.080000px;}
.y1bd{bottom:73.110000px;}
.y1dc{bottom:75.600000px;}
.y1fb{bottom:75.630000px;}
.y1ac{bottom:75.960000px;}
.y1af{bottom:80.640000px;}
.y195{bottom:82.110000px;}
.y19c{bottom:82.470000px;}
.y1a3{bottom:84.240000px;}
.y225{bottom:84.270000px;}
.y147{bottom:84.630000px;}
.y16f{bottom:84.645000px;}
.y15f{bottom:84.960000px;}
.y157{bottom:84.990000px;}
.y16e{bottom:85.005000px;}
.y15e{bottom:85.320000px;}
.y22e{bottom:85.710000px;}
.y210{bottom:86.085000px;}
.y213{bottom:87.510000px;}
.y17f{bottom:87.870000px;}
.y178{bottom:88.230000px;}
.y207{bottom:88.245000px;}
.y1b4{bottom:90.390000px;}
.y1f7{bottom:92.910000px;}
.y1fa{bottom:93.270000px;}
.y1ab{bottom:93.600000px;}
.y1ae{bottom:95.760000px;}
.y224{bottom:99.390000px;}
.y194{bottom:99.750000px;}
.y146{bottom:100.110000px;}
.y22d{bottom:100.830000px;}
.y223{bottom:101.190000px;}
.y21d{bottom:101.205000px;}
.y1a2{bottom:101.565000px;}
.y156{bottom:102.270000px;}
.y16d{bottom:102.285000px;}
.y17e{bottom:105.150000px;}
.y177{bottom:105.510000px;}
.y206{bottom:105.525000px;}
.y1f6{bottom:110.550000px;}
.y1aa{bottom:110.880000px;}
.y1f9{bottom:110.910000px;}
.y22c{bottom:116.310000px;}
.y21c{bottom:116.325000px;}
.y20f{bottom:116.685000px;}
.y19b{bottom:117.390000px;}
.y20e{bottom:118.125000px;}
.y222{bottom:118.470000px;}
.y16c{bottom:119.565000px;}
.y155{bottom:119.910000px;}
.y16b{bottom:119.925000px;}
.y176{bottom:123.150000px;}
.y205{bottom:123.165000px;}
.y175{bottom:123.510000px;}
.y1f8{bottom:126.390000px;}
.y1f5{bottom:127.830000px;}
.y1a9{bottom:128.550000px;}
.y22b{bottom:131.430000px;}
.y21b{bottom:135.405000px;}
.y20d{bottom:135.765000px;}
.y221{bottom:136.110000px;}
.y204{bottom:140.445000px;}
.y1f4{bottom:145.470000px;}
.y1a8{bottom:145.830000px;}
.y22a{bottom:150.510000px;}
.y229{bottom:150.870000px;}
.y20c{bottom:153.045000px;}
.y21a{bottom:153.075000px;}
.y59{bottom:161.355000px;}
.y1f3{bottom:162.795000px;}
.y228{bottom:167.790000px;}
.y227{bottom:168.150000px;}
.y7d{bottom:181.515000px;}
.y141{bottom:235.155000px;}
.y212{bottom:237.315000px;}
.y199{bottom:239.835000px;}
.y1bc{bottom:243.075000px;}
.ydf{bottom:243.795000px;}
.yc0{bottom:247.755000px;}
.y174{bottom:250.275000px;}
.y1f2{bottom:250.995000px;}
.y1dd{bottom:251.355000px;}
.y250{bottom:252.795000px;}
.y9a{bottom:254.595000px;}
.y264{bottom:254.955000px;}
.y193{bottom:258.195000px;}
.y112{bottom:259.635000px;}
.yde{bottom:262.515000px;}
.y23b{bottom:265.035000px;}
.y99{bottom:271.515000px;}
.y263{bottom:273.705000px;}
.y111{bottom:278.385000px;}
.ydd{bottom:280.905000px;}
.y27a{bottom:283.425000px;}
.y23a{bottom:283.785000px;}
.y124{bottom:284.145000px;}
.y1db{bottom:287.025000px;}
.ybf{bottom:288.105000px;}
.y24f{bottom:289.905000px;}
.y98{bottom:292.065000px;}
.ydc{bottom:299.625000px;}
.y239{bottom:302.145000px;}
.y123{bottom:302.865000px;}
.ybe{bottom:305.025000px;}
.y58{bottom:305.745000px;}
.y110{bottom:306.105000px;}
.y24e{bottom:308.625000px;}
.ydb{bottom:317.985000px;}
.y32{bottom:319.065000px;}
.y262{bottom:319.785000px;}
.y238{bottom:320.865000px;}
.y10f{bottom:324.465000px;}
.y24d{bottom:326.985000px;}
.y1ba{bottom:328.785000px;}
.y279{bottom:329.505000px;}
.y122{bottom:330.225000px;}
.ybd{bottom:330.945000px;}
.yda{bottom:336.705000px;}
.y20b{bottom:337.425000px;}
.y31{bottom:337.785000px;}
.y237{bottom:339.225000px;}
.y10e{bottom:343.185000px;}
.y24c{bottom:345.705000px;}
.y261{bottom:347.145000px;}
.y278{bottom:348.225000px;}
.y121{bottom:348.945000px;}
.ybc{bottom:349.665000px;}
.yd9{bottom:355.065000px;}
.y30{bottom:356.505000px;}
.y236{bottom:357.945000px;}
.y57{bottom:358.665000px;}
.y13c{bottom:359.025000px;}
.y10d{bottom:361.545000px;}
.y24b{bottom:364.065000px;}
.y260{bottom:365.865000px;}
.y71{bottom:366.945000px;}
.y120{bottom:367.305000px;}
.ybb{bottom:368.385000px;}
.y190{bottom:370.545000px;}
.yd8{bottom:373.785000px;}
.y2f{bottom:374.865000px;}
.y97{bottom:375.225000px;}
.y56{bottom:375.585000px;}
.y235{bottom:376.305000px;}
.y10c{bottom:380.265000px;}
.y1b9{bottom:381.705000px;}
.y25f{bottom:384.585000px;}
.y11f{bottom:386.025000px;}
.yba{bottom:387.105000px;}
.y24a{bottom:391.785000px;}
.y17{bottom:392.145000px;}
.yf0{bottom:392.505000px;}
.y2e{bottom:393.585000px;}
.y277{bottom:394.305000px;}
.y234{bottom:395.025000px;}
.y10b{bottom:398.625000px;}
.y70{bottom:399.705000px;}
.yd7{bottom:401.865000px;}
.y11e{bottom:404.385000px;}
.yb9{bottom:405.510000px;}
.y249{bottom:410.550000px;}
.y25e{bottom:411.990000px;}
.y16{bottom:412.350000px;}
.y276{bottom:413.070000px;}
.y233{bottom:413.430000px;}
.y10a{bottom:417.390000px;}
.y6f{bottom:417.750000px;}
.yef{bottom:419.910000px;}
.y48{bottom:421.350000px;}
.yd6{bottom:422.070000px;}
.y11d{bottom:423.150000px;}
.yb8{bottom:424.230000px;}
.y1f1{bottom:426.390000px;}
.y1da{bottom:428.550000px;}
.y248{bottom:428.910000px;}
.y96{bottom:430.710000px;}
.y2d{bottom:432.150000px;}
.y13b{bottom:432.870000px;}
.yee{bottom:438.630000px;}
.y25d{bottom:439.350000px;}
.y232{bottom:440.430000px;}
.y18f{bottom:441.150000px;}
.y15{bottom:441.870000px;}
.y109{bottom:444.750000px;}
.y247{bottom:447.630000px;}
.y47{bottom:450.870000px;}
.yb7{bottom:451.590000px;}
.y1b3{bottom:452.310000px;}
.yd5{bottom:453.750000px;}
.y231{bottom:455.550000px;}
.yed{bottom:456.990000px;}
.y25c{bottom:458.070000px;}
.y275{bottom:459.150000px;}
.y2c{bottom:460.230000px;}
.y108{bottom:463.470000px;}
.y95{bottom:463.830000px;}
.y1d9{bottom:464.190000px;}
.y246{bottom:465.990000px;}
.y226{bottom:468.150000px;}
.y6e{bottom:468.870000px;}
.y11c{bottom:469.230000px;}
.yb6{bottom:470.310000px;}
.y14{bottom:471.030000px;}
.y1f0{bottom:472.830000px;}
.yd4{bottom:475.350000px;}
.yec{bottom:475.710000px;}
.y55{bottom:479.310000px;}
.y46{bottom:480.030000px;}
.y94{bottom:480.750000px;}
.y107{bottom:482.190000px;}
.y245{bottom:484.710000px;}
.y25b{bottom:485.430000px;}
.y274{bottom:486.510000px;}
.y6d{bottom:486.870000px;}
.y18e{bottom:487.590000px;}
.y11b{bottom:487.950000px;}
.yb5{bottom:488.670000px;}
.y2b{bottom:489.750000px;}
.y1ef{bottom:491.550000px;}
.yeb{bottom:494.070000px;}
.y93{bottom:497.670000px;}
.y13{bottom:500.190000px;}
.y106{bottom:500.550000px;}
.yd3{bottom:502.710000px;}
.y209{bottom:503.070000px;}
.y25a{bottom:504.150000px;}
.y54{bottom:505.230000px;}
.y18d{bottom:506.310000px;}
.yb4{bottom:507.390000px;}
.y45{bottom:509.190000px;}
.y1ee{bottom:510.270000px;}
.yea{bottom:512.790000px;}
.y11a{bottom:515.670000px;}
.y1d7{bottom:517.110000px;}
.y166{bottom:518.190000px;}
.y2a{bottom:518.910000px;}
.y105{bottom:519.270000px;}
.y6c{bottom:519.630000px;}
.yd2{bottom:521.070000px;}
.y244{bottom:521.790000px;}
.y259{bottom:522.870000px;}
.y18c{bottom:525.030000px;}
.yb3{bottom:525.750000px;}
.y1ed{bottom:528.630000px;}
.y12{bottom:529.350000px;}
.y92{bottom:530.070000px;}
.ye9{bottom:531.150000px;}
.y273{bottom:532.950000px;}
.y13a{bottom:534.750000px;}
.y6b{bottom:537.660000px;}
.y44{bottom:538.380000px;}
.yd1{bottom:539.820000px;}
.y243{bottom:540.180000px;}
.y18b{bottom:543.420000px;}
.yb2{bottom:544.500000px;}
.y104{bottom:546.660000px;}
.y1ec{bottom:547.380000px;}
.y29{bottom:548.100000px;}
.y91{bottom:548.460000px;}
.y258{bottom:550.260000px;}
.y272{bottom:551.700000px;}
.y1d6{bottom:553.140000px;}
.y139{bottom:553.500000px;}
.y1a7{bottom:555.300000px;}
.yd0{bottom:558.180000px;}
.y11{bottom:558.900000px;}
.y18a{bottom:562.140000px;}
.yb1{bottom:563.220000px;}
.y103{bottom:565.380000px;}
.y1eb{bottom:565.740000px;}
.y90{bottom:567.180000px;}
.y43{bottom:567.900000px;}
.y15d{bottom:568.980000px;}
.y6a{bottom:570.780000px;}
.y138{bottom:571.860000px;}
.ycf{bottom:576.900000px;}
.y28{bottom:577.260000px;}
.ye8{bottom:577.620000px;}
.y271{bottom:579.060000px;}
.yb0{bottom:581.580000px;}
.y53{bottom:582.360000px;}
.y102{bottom:583.740000px;}
.y1ea{bottom:584.460000px;}
.y8f{bottom:585.540000px;}
.y10{bottom:588.060000px;}
.y69{bottom:588.780000px;}
.y137{bottom:590.580000px;}
.yce{bottom:595.260000px;}
.ye7{bottom:595.980000px;}
.y257{bottom:596.340000px;}
.y42{bottom:597.060000px;}
.y270{bottom:597.780000px;}
.y1d5{bottom:599.220000px;}
.y119{bottom:599.580000px;}
.yaf{bottom:600.300000px;}
.y101{bottom:602.460000px;}
.y8e{bottom:604.260000px;}
.y27{bottom:606.780000px;}
.y52{bottom:608.635500px;}
.y136{bottom:609.300000px;}
.y189{bottom:614.340000px;}
.ye6{bottom:614.700000px;}
.y256{bottom:615.060000px;}
.yf{bottom:617.220000px;}
.y1d4{bottom:617.940000px;}
.y1e9{bottom:618.300000px;}
.yae{bottom:618.660000px;}
.y100{bottom:621.180000px;}
.y68{bottom:621.900000px;}
.y8d{bottom:622.980000px;}
.y26f{bottom:625.140000px;}
.y41{bottom:626.220000px;}
.y135{bottom:627.660000px;}
.ye5{bottom:633.060000px;}
.y255{bottom:633.780000px;}
.y26{bottom:635.940000px;}
.y1d3{bottom:636.660000px;}
.y67{bottom:639.900000px;}
.y8c{bottom:641.340000px;}
.y188{bottom:641.700000px;}
.y118{bottom:642.420000px;}
.y26e{bottom:643.860000px;}
.ye{bottom:646.380000px;}
.yad{bottom:647.100000px;}
.yff{bottom:648.540000px;}
.y1d2{bottom:655.020000px;}
.y40{bottom:655.380000px;}
.y66{bottom:657.900000px;}
.y8b{bottom:660.060000px;}
.y51{bottom:660.420000px;}
.ye4{bottom:661.140000px;}
.y117{bottom:663.660000px;}
.y1e8{bottom:664.020000px;}
.y134{bottom:664.740000px;}
.y25{bottom:665.100000px;}
.y154{bottom:666.540000px;}
.yfe{bottom:667.260000px;}
.y26d{bottom:671.250000px;}
.y1d1{bottom:673.770000px;}
.yd{bottom:675.930000px;}
.yac{bottom:678.090000px;}
.ycd{bottom:678.810000px;}
.y242{bottom:679.170000px;}
.y254{bottom:679.890000px;}
.y1e7{bottom:682.770000px;}
.y133{bottom:683.490000px;}
.y3f{bottom:684.930000px;}
.y116{bottom:685.290000px;}
.yfd{bottom:685.650000px;}
.y8a{bottom:687.450000px;}
.ye3{bottom:689.970000px;}
.y65{bottom:690.690000px;}
.y1d0{bottom:692.490000px;}
.y24{bottom:694.290000px;}
.ycc{bottom:697.170000px;}
.y187{bottom:697.530000px;}
.y241{bottom:697.890000px;}
.yab{bottom:698.250000px;}
.y253{bottom:698.610000px;}
.y1e6{bottom:701.130000px;}
.y132{bottom:701.850000px;}
.yfc{bottom:704.370000px;}
.yc{bottom:705.090000px;}
.y89{bottom:706.170000px;}
.y115{bottom:706.530000px;}
.y26c{bottom:708.330000px;}
.y64{bottom:708.690000px;}
.y1cf{bottom:710.850000px;}
.y3e{bottom:714.090000px;}
.ycb{bottom:715.890000px;}
.y240{bottom:716.610000px;}
.y1e5{bottom:719.850000px;}
.y131{bottom:720.570000px;}
.yfb{bottom:722.730000px;}
.y23{bottom:723.810000px;}
.y88{bottom:724.530000px;}
.y252{bottom:725.970000px;}
.yaa{bottom:727.050000px;}
.y114{bottom:727.770000px;}
.y1ce{bottom:729.570000px;}
.yb{bottom:734.250000px;}
.y186{bottom:734.610000px;}
.y23f{bottom:734.970000px;}
.y26b{bottom:737.130000px;}
.y50{bottom:737.850000px;}
.y1e4{bottom:738.210000px;}
.y203{bottom:739.290000px;}
.y63{bottom:741.810000px;}
.y3d{bottom:743.250000px;}
.y251{bottom:744.690000px;}
.ya9{bottom:745.770000px;}
.y27d{bottom:746.130000px;}
.y1cd{bottom:747.930000px;}
.y130{bottom:748.290000px;}
.yfa{bottom:751.170000px;}
.y22{bottom:752.970000px;}
.y23e{bottom:753.690000px;}
.y113{bottom:755.130000px;}
.y26a{bottom:755.850000px;}
.y1e3{bottom:756.930000px;}
.y62{bottom:759.810000px;}
.y87{bottom:761.610000px;}
.ya{bottom:763.410000px;}
.ya8{bottom:764.130000px;}
.y27c{bottom:764.850000px;}
.y12f{bottom:766.650000px;}
.yca{bottom:771.330000px;}
.y185{bottom:771.690000px;}
.y23d{bottom:772.050000px;}
.y3c{bottom:772.410000px;}
.y86{bottom:780.330000px;}
.yf9{bottom:781.770000px;}
.y21{bottom:782.130000px;}
.ya7{bottom:782.850000px;}
.y269{bottom:783.210000px;}
.y12e{bottom:785.370000px;}
.y4f{bottom:787.530000px;}
.yc9{bottom:790.050000px;}
.y184{bottom:790.410000px;}
.y1e2{bottom:792.210000px;}
.y9{bottom:792.930000px;}
.y1cc{bottom:794.010000px;}
.y7c{bottom:796.170000px;}
.y219{bottom:797.250000px;}
.y85{bottom:799.050000px;}
.y23c{bottom:800.130000px;}
.ya6{bottom:801.255000px;}
.y3b{bottom:801.975000px;}
.y12d{bottom:803.775000px;}
.y1e1{bottom:804.495000px;}
.y4e{bottom:805.575000px;}
.yc8{bottom:808.815000px;}
.yf8{bottom:809.895000px;}
.ye2{bottom:810.255000px;}
.y20{bottom:810.975000px;}
.y84{bottom:817.455000px;}
.ya5{bottom:819.975000px;}
.y1cb{bottom:821.775000px;}
.y8{bottom:822.135000px;}
.y12c{bottom:822.495000px;}
.y4d{bottom:823.575000px;}
.yc7{bottom:827.175000px;}
.y183{bottom:827.535000px;}
.y1a0{bottom:828.255000px;}
.ye1{bottom:828.975000px;}
.y7b{bottom:829.335000px;}
.y1f{bottom:829.695000px;}
.y3a{bottom:831.135000px;}
.y14d{bottom:834.735000px;}
.y83{bottom:836.175000px;}
.ya4{bottom:838.695000px;}
.y1e0{bottom:840.135000px;}
.y1ca{bottom:840.495000px;}
.y12b{bottom:840.855000px;}
.y7{bottom:842.295000px;}
.y61{bottom:843.735000px;}
.yc6{bottom:845.895000px;}
.y7a{bottom:847.335000px;}
.ye0{bottom:847.695000px;}
.y268{bottom:848.055000px;}
.y1e{bottom:848.415000px;}
.y39{bottom:851.295000px;}
.y82{bottom:854.535000px;}
.yf7{bottom:857.055000px;}
.y1c9{bottom:858.855000px;}
.y12a{bottom:859.575000px;}
.y6{bottom:862.455000px;}
.yc5{bottom:864.255000px;}
.y79{bottom:865.335000px;}
.ya3{bottom:866.055000px;}
.y267{bottom:866.775000px;}
.y1d{bottom:868.215000px;}
.y60{bottom:870.735000px;}
.y38{bottom:871.455000px;}
.y27b{bottom:875.415000px;}
.yf6{bottom:875.775000px;}
.y1c8{bottom:877.575000px;}
.y182{bottom:881.175000px;}
.y81{bottom:882.615000px;}
.y5{bottom:882.975000px;}
.ya2{bottom:884.775000px;}
.y266{bottom:885.135000px;}
.y5f{bottom:888.735000px;}
.y37{bottom:891.975000px;}
.y1fe{bottom:892.695000px;}
.y129{bottom:893.415000px;}
.yf5{bottom:894.135000px;}
.y1c7{bottom:895.935000px;}
.y1c{bottom:896.295000px;}
.y78{bottom:898.455000px;}
.y19a{bottom:898.815000px;}
.ya1{bottom:903.135000px;}
.y265{bottom:903.855000px;}
.y5e{bottom:906.735000px;}
.yc4{bottom:911.055000px;}
.y80{bottom:911.415000px;}
.y128{bottom:911.775000px;}
.y4{bottom:912.135000px;}
.yf4{bottom:912.855000px;}
.y1c6{bottom:914.655000px;}
.y77{bottom:916.455000px;}
.y36{bottom:921.135000px;}
.y4c{bottom:921.495000px;}
.ya0{bottom:921.855000px;}
.y5d{bottom:924.735000px;}
.y1b{bottom:925.455000px;}
.y7f{bottom:930.135000px;}
.yf3{bottom:931.215000px;}
.y1c5{bottom:933.045000px;}
.y76{bottom:934.485000px;}
.y127{bottom:939.165000px;}
.y9f{bottom:940.245000px;}
.y3{bottom:941.325000px;}
.y5c{bottom:942.765000px;}
.yf2{bottom:949.965000px;}
.y35{bottom:950.325000px;}
.y1c4{bottom:951.765000px;}
.y1a{bottom:955.005000px;}
.y126{bottom:957.885000px;}
.y9e{bottom:958.965000px;}
.y7e{bottom:959.325000px;}
.y5b{bottom:960.765000px;}
.y217{bottom:962.925000px;}
.y75{bottom:967.245000px;}
.yf1{bottom:968.685000px;}
.yc3{bottom:971.925000px;}
.y2{bottom:972.285000px;}
.y4b{bottom:973.365000px;}
.y1de{bottom:974.805000px;}
.y1fd{bottom:975.885000px;}
.y9d{bottom:977.685000px;}
.y1c3{bottom:980.565000px;}
.y34{bottom:981.285000px;}
.y19{bottom:984.165000px;}
.y74{bottom:985.245000px;}
.y125{bottom:985.965000px;}
.y4a{bottom:989.925000px;}
.y5a{bottom:990.285000px;}
.y9c{bottom:996.045000px;}
.y1c2{bottom:998.205000px;}
.yc2{bottom:998.925000px;}
.y1{bottom:999.285000px;}
.y73{bottom:1003.245000px;}
.y49{bottom:1006.845000px;}
.y33{bottom:1008.285000px;}
.y1c1{bottom:1010.805000px;}
.y18{bottom:1013.325000px;}
.y9b{bottom:1014.765000px;}
.yc1{bottom:1015.845000px;}
.y72{bottom:1056.885000px;}
.h2c{height:17.280000px;}
.h24{height:17.640000px;}
.h15{height:32.400000px;}
.h11{height:34.275938px;}
.h2d{height:34.920000px;}
.h1d{height:34.956000px;}
.h30{height:35.280000px;}
.h16{height:37.058906px;}
.h18{height:38.100938px;}
.h19{height:39.063126px;}
.h9{height:40.959844px;}
.h8{height:42.111563px;}
.hd{height:44.149219px;}
.h12{height:45.795938px;}
.h7{height:46.122187px;}
.h14{height:47.286943px;}
.h5{height:47.988281px;}
.h13{height:48.353906px;}
.hf{height:48.761719px;}
.h20{height:50.076000px;}
.h6{height:50.132812px;}
.h10{height:50.616563px;}
.h2a{height:52.200000px;}
.h31{height:52.236000px;}
.h17{height:52.560000px;}
.h2e{height:52.596000px;}
.ha{height:55.437187px;}
.hb{height:55.666406px;}
.hc{height:58.154062px;}
.h4{height:64.304297px;}
.h38{height:65.160000px;}
.he{height:65.340703px;}
.h26{height:69.840000px;}
.h1a{height:69.876000px;}
.h1c{height:81.000000px;}
.h33{height:82.116000px;}
.h2b{height:84.996000px;}
.h2f{height:87.480000px;}
.h1f{height:96.840000px;}
.h37{height:99.396000px;}
.h29{height:102.276000px;}
.h1b{height:111.636000px;}
.h27{height:113.436000px;}
.h23{height:117.036000px;}
.h35{height:117.396000px;}
.h25{height:129.276000px;}
.h21{height:131.436000px;}
.h1e{height:131.796000px;}
.h22{height:135.036000px;}
.h3a{height:147.996000px;}
.h34{height:152.310000px;}
.h28{height:157.710000px;}
.h36{height:164.910000px;}
.h39{height:164.955000px;}
.h32{height:174.675000px;}
.h3b{height:179.670000px;}
.h3c{height:1019.227140px;}
.h3d{height:1019.250000px;}
.h0{height:1021.292550px;}
.h1{height:1021.500000px;}
.h2{height:1262.880000px;}
.h3{height:1263.000000px;}
.w12{width:37.440000px;}
.w10{width:37.476000px;}
.wb{width:38.880000px;}
.wa{width:39.276000px;}
.w18{width:46.800000px;}
.w17{width:46.836000px;}
.w1d{width:135.756000px;}
.w1e{width:136.152000px;}
.w1a{width:141.876000px;}
.w16{width:142.272000px;}
.wd{width:147.636000px;}
.w9{width:148.032000px;}
.w15{width:150.195000px;}
.w13{width:153.030000px;}
.wf{width:153.435000px;}
.w1c{width:166.395000px;}
.w8{width:168.195000px;}
.w7{width:189.795000px;}
.wc{width:190.185000px;}
.we{width:200.955000px;}
.w11{width:200.985000px;}
.w1f{width:205.275000px;}
.w1b{width:205.305000px;}
.w14{width:205.635000px;}
.w19{width:206.025000px;}
.w21{width:717.000000px;}
.w20{width:717.215640px;}
.w0{width:721.480140px;}
.w1{width:721.500000px;}
.w3{width:892.500000px;}
.w4{width:892.799987px;}
.w2{width:892.800000px;}
.w5{width:893.160000px;}
.w6{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:7.560000px;}
.x7c{left:14.400000px;}
.x7d{left:18.000000px;}
.x6d{left:24.870000px;}
.x30{left:27.360000px;}
.x42{left:28.470000px;}
.x3b{left:29.550000px;}
.x33{left:32.040000px;}
.x34{left:34.560000px;}
.x77{left:35.640000px;}
.x79{left:36.720000px;}
.x7f{left:38.910000px;}
.x46{left:39.990000px;}
.x2e{left:43.200000px;}
.x63{left:44.280000px;}
.x5c{left:46.470000px;}
.x3c{left:48.990000px;}
.x40{left:52.230000px;}
.x52{left:54.720000px;}
.x55{left:56.190000px;}
.x66{left:57.990000px;}
.x3a{left:60.510000px;}
.x35{left:61.590000px;}
.x37{left:63.390000px;}
.x49{left:64.830000px;}
.x31{left:66.240000px;}
.x6e{left:70.590000px;}
.x3e{left:73.110000px;}
.x74{left:75.240000px;}
.x82{left:84.270000px;}
.x3f{left:86.430000px;}
.x80{left:90.390000px;}
.x47{left:91.470000px;}
.x5a{left:95.790000px;}
.x53{left:98.685000px;}
.x5b{left:100.875000px;}
.x7b{left:102.645000px;}
.x62{left:104.805000px;}
.x54{left:106.275000px;}
.x48{left:108.435000px;}
.x51{left:110.565000px;}
.x32{left:117.405000px;}
.x75{left:119.205000px;}
.x78{left:121.005000px;}
.x7a{left:122.445000px;}
.x59{left:130.395000px;}
.x70{left:132.165000px;}
.x45{left:134.355000px;}
.x41{left:139.755000px;}
.x2f{left:143.685000px;}
.x6b{left:145.875000px;}
.x43{left:152.355000px;}
.x3d{left:154.155000px;}
.x44{left:155.955000px;}
.x61{left:157.035000px;}
.x72{left:158.805000px;}
.x71{left:159.885000px;}
.x81{left:160.995000px;}
.x36{left:162.435000px;}
.x6c{left:164.235000px;}
.x58{left:168.555000px;}
.x17{left:169.994987px;}
.x7e{left:171.075000px;}
.x38{left:175.035000px;}
.x73{left:177.195000px;}
.x67{left:179.745000px;}
.x76{left:182.235000px;}
.x2d{left:183.675000px;}
.xe{left:191.595000px;}
.x11{left:195.915000px;}
.x21{left:199.875000px;}
.x20{left:202.035000px;}
.x25{left:209.955000px;}
.x1d{left:212.865000px;}
.x1{left:216.434987px;}
.x69{left:218.265000px;}
.x4f{left:221.865000px;}
.x1e{left:223.665000px;}
.x5e{left:231.585000px;}
.x89{left:234.105000px;}
.x24{left:238.785000px;}
.x27{left:239.865000px;}
.x23{left:244.905000px;}
.x22{left:251.025000px;}
.xf{left:256.036500px;}
.xd{left:260.384987px;}
.x10{left:262.749000px;}
.x2{left:265.784987px;}
.x12{left:280.545000px;}
.x28{left:284.505000px;}
.xc{left:298.904987px;}
.x86{left:302.550000px;}
.x1a{left:309.750000px;}
.x4d{left:312.630000px;}
.x87{left:314.070000px;}
.x7{left:323.789987px;}
.xb{left:330.269987px;}
.x4a{left:364.110000px;}
.x5{left:366.269987px;}
.x6{left:370.589987px;}
.x88{left:391.140000px;}
.x1b{left:392.464500px;}
.x1c{left:397.620000px;}
.x56{left:402.300000px;}
.x13{left:405.900000px;}
.xa{left:406.979987px;}
.x2b{left:414.180000px;}
.x9{left:415.619987px;}
.x64{left:416.700000px;}
.x8{left:418.139987px;}
.x4{left:423.539987px;}
.x1f{left:427.860000px;}
.x18{left:431.819987px;}
.x5f{left:437.940000px;}
.x19{left:449.460000px;}
.x14{left:453.419987px;}
.x3{left:457.379987px;}
.x68{left:489.450000px;}
.x4e{left:493.770000px;}
.x4b{left:501.690000px;}
.x26{left:505.290000px;}
.x57{left:556.455000px;}
.x39{left:561.855000px;}
.x5d{left:563.295000px;}
.x83{left:566.535000px;}
.x65{left:567.615000px;}
.x6a{left:573.735000px;}
.x50{left:577.695000px;}
.x2c{left:583.095000px;}
.x60{left:588.855000px;}
.x6f{left:594.975000px;}
.x84{left:623.775000px;}
.x15{left:631.694987px;}
.x29{left:633.495000px;}
.x85{left:640.725000px;}
.x4c{left:649.725000px;}
.x16{left:723.164987px;}
@media print{
.v2{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.ls9f{letter-spacing:-2.655488pt;}
.ls3e{letter-spacing:-2.174208pt;}
.ls2e{letter-spacing:-1.884160pt;}
.ls7a{letter-spacing:-1.848320pt;}
.ls5c{letter-spacing:-1.825280pt;}
.ls7d{letter-spacing:-1.765632pt;}
.ls75{letter-spacing:-1.640658pt;}
.ls6a{letter-spacing:-1.620149pt;}
.lsd{letter-spacing:-1.559040pt;}
.lsa{letter-spacing:-1.537536pt;}
.ls81{letter-spacing:-1.530880pt;}
.ls62{letter-spacing:-1.472000pt;}
.ls3b{letter-spacing:-1.377792pt;}
.ls68{letter-spacing:-1.354240pt;}
.ls93{letter-spacing:-1.333034pt;}
.ls2f{letter-spacing:-1.295360pt;}
.ls11{letter-spacing:-1.182720pt;}
.ls98{letter-spacing:-1.179223pt;}
.ls1d{letter-spacing:-1.167360pt;}
.ls5d{letter-spacing:-1.118720pt;}
.ls63{letter-spacing:-1.059840pt;}
.ls36{letter-spacing:-1.000960pt;}
.ls51{letter-spacing:-0.913920pt;}
.ls32{letter-spacing:-0.883200pt;}
.ls1b{letter-spacing:-0.875520pt;}
.ls89{letter-spacing:-0.865536pt;}
.ls9a{letter-spacing:-0.836608pt;}
.ls1e{letter-spacing:-0.826880pt;}
.ls64{letter-spacing:-0.824320pt;}
.ls19{letter-spacing:-0.736000pt;}
.ls39{letter-spacing:-0.706560pt;}
.ls7b{letter-spacing:-0.632320pt;}
.ls79{letter-spacing:-0.608000pt;}
.ls6{letter-spacing:-0.588800pt;}
.ls6e{letter-spacing:-0.583680pt;}
.ls46{letter-spacing:-0.576000pt;}
.ls76{letter-spacing:-0.573952pt;}
.ls3a{letter-spacing:-0.553472pt;}
.ls6d{letter-spacing:-0.549632pt;}
.lsb{letter-spacing:-0.537600pt;}
.ls6c{letter-spacing:-0.535040pt;}
.ls24{letter-spacing:-0.529920pt;}
.ls6b{letter-spacing:-0.486400pt;}
.ls57{letter-spacing:-0.471040pt;}
.lsa3{letter-spacing:-0.459264pt;}
.ls83{letter-spacing:-0.437760pt;}
.ls6f{letter-spacing:-0.413440pt;}
.ls9{letter-spacing:-0.412160pt;}
.ls58{letter-spacing:-0.406272pt;}
.ls23{letter-spacing:-0.389120pt;}
.ls70{letter-spacing:-0.379392pt;}
.lsa6{letter-spacing:-0.365056pt;}
.ls8{letter-spacing:-0.353280pt;}
.ls5{letter-spacing:-0.294400pt;}
.ls8a{letter-spacing:-0.286976pt;}
.ls74{letter-spacing:-0.271734pt;}
.lsf{letter-spacing:-0.268800pt;}
.ls49{letter-spacing:-0.243200pt;}
.ls30{letter-spacing:-0.235520pt;}
.ls7{letter-spacing:-0.176640pt;}
.ls91{letter-spacing:-0.153812pt;}
.ls94{letter-spacing:-0.145920pt;}
.ls3c{letter-spacing:-0.121600pt;}
.ls16{letter-spacing:-0.094208pt;}
.lsa5{letter-spacing:-0.052992pt;}
.ls1{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000213pt;}
.ls2a{letter-spacing:0.011947pt;}
.ls13{letter-spacing:0.051200pt;}
.ls22{letter-spacing:0.092416pt;}
.ls85{letter-spacing:0.097280pt;}
.lse{letter-spacing:0.102144pt;}
.ls90{letter-spacing:0.102541pt;}
.ls8e{letter-spacing:0.106667pt;}
.ls33{letter-spacing:0.117760pt;}
.ls92{letter-spacing:0.122880pt;}
.ls21{letter-spacing:0.130560pt;}
.ls78{letter-spacing:0.145920pt;}
.ls84{letter-spacing:0.153812pt;}
.ls1c{letter-spacing:0.155648pt;}
.ls48{letter-spacing:0.161280pt;}
.lsa1{letter-spacing:0.176640pt;}
.ls9c{letter-spacing:0.182528pt;}
.ls69{letter-spacing:0.194560pt;}
.ls3d{letter-spacing:0.199424pt;}
.ls8f{letter-spacing:0.205082pt;}
.ls8c{letter-spacing:0.227840pt;}
.ls34{letter-spacing:0.235520pt;}
.ls88{letter-spacing:0.240972pt;}
.ls3{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.268800pt;}
.lsa0{letter-spacing:0.270848pt;}
.ls1a{letter-spacing:0.291840pt;}
.ls38{letter-spacing:0.294400pt;}
.ls9d{letter-spacing:0.308096pt;}
.lsa2{letter-spacing:0.317952pt;}
.ls14{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.340480pt;}
.ls2c{letter-spacing:0.352000pt;}
.ls35{letter-spacing:0.353280pt;}
.ls87{letter-spacing:0.358894pt;}
.ls86{letter-spacing:0.379392pt;}
.ls2{letter-spacing:0.384000pt;}
.ls7c{letter-spacing:0.389120pt;}
.ls4b{letter-spacing:0.406272pt;}
.ls20{letter-spacing:0.412160pt;}
.ls5e{letter-spacing:0.414720pt;}
.ls99{letter-spacing:0.442624pt;}
.ls59{letter-spacing:0.448000pt;}
.ls5f{letter-spacing:0.459264pt;}
.ls2d{letter-spacing:0.471040pt;}
.ls50{letter-spacing:0.500480pt;}
.ls54{letter-spacing:0.501760pt;}
.ls27{letter-spacing:0.510720pt;}
.ls31{letter-spacing:0.529920pt;}
.ls1f{letter-spacing:0.541696pt;}
.lsa4{letter-spacing:0.553472pt;}
.ls77{letter-spacing:0.583680pt;}
.ls37{letter-spacing:0.588800pt;}
.ls10{letter-spacing:0.591360pt;}
.ls55{letter-spacing:0.594688pt;}
.ls26{letter-spacing:0.596480pt;}
.ls9e{letter-spacing:0.608427pt;}
.ls12{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.641792pt;}
.ls47{letter-spacing:0.647680pt;}
.ls72{letter-spacing:0.674612pt;}
.ls56{letter-spacing:0.703147pt;}
.ls60{letter-spacing:0.746667pt;}
.ls82{letter-spacing:0.800000pt;}
.ls8b{letter-spacing:0.826880pt;}
.ls96{letter-spacing:0.867840pt;}
.ls67{letter-spacing:1.000960pt;}
.ls53{letter-spacing:1.183488pt;}
.ls61{letter-spacing:1.408000pt;}
.ls4a{letter-spacing:1.920000pt;}
.ls80{letter-spacing:2.080000pt;}
.ls44{letter-spacing:3.200000pt;}
.ls52{letter-spacing:4.480000pt;}
.ls4d{letter-spacing:5.760000pt;}
.ls42{letter-spacing:7.040000pt;}
.ls5a{letter-spacing:7.951360pt;}
.ls28{letter-spacing:8.320000pt;}
.ls4f{letter-spacing:8.426667pt;}
.ls45{letter-spacing:9.600000pt;}
.ls3f{letter-spacing:10.880000pt;}
.ls40{letter-spacing:11.040000pt;}
.ls7f{letter-spacing:12.160000pt;}
.ls97{letter-spacing:13.440000pt;}
.ls9b{letter-spacing:13.546667pt;}
.ls5b{letter-spacing:14.720000pt;}
.ls29{letter-spacing:17.280000pt;}
.ls43{letter-spacing:18.560000pt;}
.ls4e{letter-spacing:19.840000pt;}
.ls65{letter-spacing:21.120000pt;}
.ls8d{letter-spacing:22.400000pt;}
.ls95{letter-spacing:22.506667pt;}
.ls2b{letter-spacing:23.680000pt;}
.ls41{letter-spacing:24.960000pt;}
.ls4c{letter-spacing:27.520000pt;}
.ls73{letter-spacing:69.785600pt;}
.ls7e{letter-spacing:69.892267pt;}
.ls71{letter-spacing:72.729600pt;}
.ls66{letter-spacing:72.836267pt;}
.ls0{letter-spacing:752.373333pt;}
.ls15{letter-spacing:753.653333pt;}
.ls4{letter-spacing:754.933333pt;}
.ws5c{word-spacing:-58.880000pt;}
.ws6{word-spacing:-53.760000pt;}
.wse{word-spacing:-48.640000pt;}
.ws29{word-spacing:-16.448000pt;}
.ws0{word-spacing:-16.256000pt;}
.ws15{word-spacing:-16.000000pt;}
.ws36{word-spacing:-15.720960pt;}
.ws35{word-spacing:-15.516087pt;}
.ws28{word-spacing:-15.424000pt;}
.ws4b{word-spacing:-15.314688pt;}
.ws1b{word-spacing:-15.308800pt;}
.ws5a{word-spacing:-15.273472pt;}
.ws10{word-spacing:-15.261696pt;}
.ws18{word-spacing:-15.249920pt;}
.ws16{word-spacing:-15.191040pt;}
.ws30{word-spacing:-15.179264pt;}
.ws37{word-spacing:-15.132160pt;}
.ws25{word-spacing:-15.126272pt;}
.ws21{word-spacing:-15.073280pt;}
.ws57{word-spacing:-15.037952pt;}
.ws54{word-spacing:-14.990848pt;}
.ws1a{word-spacing:-14.955520pt;}
.ws56{word-spacing:-14.896640pt;}
.ws1d{word-spacing:-14.837760pt;}
.ws3{word-spacing:-14.720000pt;}
.ws5b{word-spacing:-14.667008pt;}
.wsa{word-spacing:-14.625792pt;}
.ws55{word-spacing:-14.543360pt;}
.ws17{word-spacing:-14.484480pt;}
.ws2{word-spacing:-14.425600pt;}
.ws5{word-spacing:-14.366720pt;}
.ws5d{word-spacing:-14.354944pt;}
.ws27{word-spacing:-14.313728pt;}
.ws19{word-spacing:-14.307840pt;}
.ws59{word-spacing:-14.260736pt;}
.ws2a{word-spacing:-14.248960pt;}
.ws20{word-spacing:-14.190080pt;}
.ws1c{word-spacing:-14.166528pt;}
.ws4{word-spacing:-14.131200pt;}
.ws58{word-spacing:-14.013440pt;}
.wsc{word-spacing:-13.984000pt;}
.ws32{word-spacing:-13.895680pt;}
.ws2d{word-spacing:-13.836800pt;}
.ws26{word-spacing:-13.719040pt;}
.ws31{word-spacing:-13.660160pt;}
.ws23{word-spacing:-13.601280pt;}
.ws8{word-spacing:-13.440000pt;}
.ws53{word-spacing:-13.365760pt;}
.ws2e{word-spacing:-13.248000pt;}
.ws7{word-spacing:-13.171200pt;}
.ws46{word-spacing:-13.058609pt;}
.ws4d{word-spacing:-13.022719pt;}
.ws4c{word-spacing:-12.920178pt;}
.ws2b{word-spacing:-12.835840pt;}
.ws3b{word-spacing:-12.817637pt;}
.ws41{word-spacing:-12.549120pt;}
.ws3e{word-spacing:-12.545903pt;}
.ws45{word-spacing:-12.539392pt;}
.ws24{word-spacing:-12.526080pt;}
.ws3d{word-spacing:-12.500480pt;}
.ws11{word-spacing:-12.451840pt;}
.ws1f{word-spacing:-12.359424pt;}
.ws38{word-spacing:-12.354560pt;}
.ws50{word-spacing:-12.315648pt;}
.ws3f{word-spacing:-12.305920pt;}
.ws9{word-spacing:-12.257280pt;}
.ws12{word-spacing:-12.252416pt;}
.wsb{word-spacing:-12.160000pt;}
.ws1e{word-spacing:-12.038400pt;}
.ws51{word-spacing:-12.014080pt;}
.ws44{word-spacing:-11.916800pt;}
.ws47{word-spacing:-11.873024pt;}
.ws3c{word-spacing:-11.780608pt;}
.ws13{word-spacing:-11.770880pt;}
.ws49{word-spacing:-11.746560pt;}
.ws43{word-spacing:-11.722240pt;}
.ws39{word-spacing:-11.673600pt;}
.ws52{word-spacing:-11.638415pt;}
.ws48{word-spacing:-11.624960pt;}
.ws3a{word-spacing:-11.610368pt;}
.ws4f{word-spacing:-11.586048pt;}
.ws40{word-spacing:-11.527680pt;}
.ws4e{word-spacing:-11.484603pt;}
.wsf{word-spacing:-11.333120pt;}
.wsd{word-spacing:-11.284480pt;}
.ws42{word-spacing:-1.408000pt;}
.ws1{word-spacing:0.000000pt;}
.ws34{word-spacing:3.412139pt;}
.ws33{word-spacing:4.692139pt;}
.ws22{word-spacing:33.792000pt;}
.ws2c{word-spacing:33.898667pt;}
.ws14{word-spacing:36.074667pt;}
.ws2f{word-spacing:39.145472pt;}
.ws4a{word-spacing:39.252139pt;}
._f{margin-left:-14.132053pt;}
._c{margin-left:-12.859392pt;}
._e{margin-left:-11.442432pt;}
._b{margin-left:-9.579093pt;}
._d{margin-left:-4.716373pt;}
._a{margin-left:-2.946048pt;}
._4{margin-left:-2.042880pt;}
._0{margin-left:-1.114880pt;}
._1{width:1.211307pt;}
._2{width:2.367573pt;}
._10{width:3.377920pt;}
._1a{width:4.573440pt;}
._15{width:5.481813pt;}
._14{width:6.468693pt;}
._13{width:7.772160pt;}
._12{width:8.971093pt;}
._16{width:9.883307pt;}
._11{width:10.892800pt;}
._1c{width:11.918763pt;}
._1d{width:12.891477pt;}
._1f{width:13.801899pt;}
._3{width:15.307520pt;}
._5{width:16.793173pt;}
._19{width:18.446080pt;}
._20{width:19.670613pt;}
._7{width:20.620373pt;}
._6{width:21.851733pt;}
._8{width:22.817707pt;}
._9{width:24.134059pt;}
._1e{width:25.251840pt;}
._1b{width:26.484907pt;}
._21{width:28.026880pt;}
._17{width:29.550080pt;}
._18{width:30.751147pt;}
._27{width:33.318400pt;}
._28{width:34.659328pt;}
._23{width:35.799040pt;}
._22{width:37.783040pt;}
._24{width:38.754560pt;}
._25{width:41.100800pt;}
._26{width:108.909653pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fsa{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs9{font-size:51.270549pt;}
.fs3{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:62.064349pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs0{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y14c{bottom:3.200000pt;}
.y16a{bottom:3.520000pt;}
.y15c{bottom:3.546667pt;}
.y144{bottom:4.800000pt;}
.y153{bottom:4.840000pt;}
.y140{bottom:5.120000pt;}
.y145{bottom:7.040000pt;}
.y151{bottom:16.640000pt;}
.y14b{bottom:16.666667pt;}
.y1b2{bottom:16.960000pt;}
.y15b{bottom:16.986667pt;}
.y173{bottom:17.000000pt;}
.y164{bottom:17.280000pt;}
.y216{bottom:18.240000pt;}
.y13d{bottom:18.560000pt;}
.y169{bottom:18.586667pt;}
.y1c0{bottom:18.880000pt;}
.y13f{bottom:20.480000pt;}
.y1d8{bottom:20.506667pt;}
.y152{bottom:20.520000pt;}
.y1df{bottom:20.800000pt;}
.y162{bottom:29.440000pt;}
.y202{bottom:30.080000pt;}
.y150{bottom:30.400000pt;}
.y14a{bottom:30.426667pt;}
.y163{bottom:30.720000pt;}
.y15a{bottom:30.746667pt;}
.y201{bottom:31.360000pt;}
.y215{bottom:31.706667pt;}
.y1a6{bottom:32.000000pt;}
.y1bf{bottom:32.346667pt;}
.y172{bottom:32.360000pt;}
.y230{bottom:33.600000pt;}
.y181{bottom:33.626667pt;}
.y168{bottom:33.946667pt;}
.y211{bottom:34.240000pt;}
.y167{bottom:34.266667pt;}
.y220{bottom:34.280000pt;}
.y1b8{bottom:34.560000pt;}
.y17d{bottom:35.546667pt;}
.y1bb{bottom:35.840000pt;}
.y143{bottom:35.866667pt;}
.y13e{bottom:36.160000pt;}
.y1fc{bottom:36.186667pt;}
.y192{bottom:36.200000pt;}
.y197{bottom:41.946667pt;}
.y1a5{bottom:43.520000pt;}
.y1b1{bottom:44.160000pt;}
.y198{bottom:44.186667pt;}
.y161{bottom:44.480000pt;}
.y159{bottom:44.506667pt;}
.y214{bottom:45.146667pt;}
.y14f{bottom:45.760000pt;}
.y149{bottom:45.786667pt;}
.y200{bottom:47.066667pt;}
.y22f{bottom:47.360000pt;}
.y20a{bottom:47.386667pt;}
.y218{bottom:47.680000pt;}
.y17a{bottom:47.706667pt;}
.y21f{bottom:47.720000pt;}
.y1b7{bottom:48.000000pt;}
.y19f{bottom:48.026667pt;}
.y171{bottom:48.040000pt;}
.y1b6{bottom:49.280000pt;}
.y1be{bottom:49.306667pt;}
.y17c{bottom:50.906667pt;}
.y1a1{bottom:51.520000pt;}
.y142{bottom:51.546667pt;}
.y191{bottom:51.560000pt;}
.y1ad{bottom:52.160000pt;}
.y196{bottom:57.626667pt;}
.y1b0{bottom:57.920000pt;}
.y19d{bottom:57.946667pt;}
.y1a4{bottom:59.200000pt;}
.y158{bottom:59.866667pt;}
.y160{bottom:60.160000pt;}
.y165{bottom:60.480000pt;}
.y180{bottom:61.146667pt;}
.y21e{bottom:61.160000pt;}
.y14e{bottom:61.440000pt;}
.y148{bottom:61.466667pt;}
.y208{bottom:61.480000pt;}
.y19e{bottom:61.786667pt;}
.y170{bottom:61.800000pt;}
.y1ff{bottom:62.426667pt;}
.y179{bottom:62.746667pt;}
.y17b{bottom:64.666667pt;}
.y1b5{bottom:64.960000pt;}
.y1bd{bottom:64.986667pt;}
.y1dc{bottom:67.200000pt;}
.y1fb{bottom:67.226667pt;}
.y1ac{bottom:67.520000pt;}
.y1af{bottom:71.680000pt;}
.y195{bottom:72.986667pt;}
.y19c{bottom:73.306667pt;}
.y1a3{bottom:74.880000pt;}
.y225{bottom:74.906667pt;}
.y147{bottom:75.226667pt;}
.y16f{bottom:75.240000pt;}
.y15f{bottom:75.520000pt;}
.y157{bottom:75.546667pt;}
.y16e{bottom:75.560000pt;}
.y15e{bottom:75.840000pt;}
.y22e{bottom:76.186667pt;}
.y210{bottom:76.520000pt;}
.y213{bottom:77.786667pt;}
.y17f{bottom:78.106667pt;}
.y178{bottom:78.426667pt;}
.y207{bottom:78.440000pt;}
.y1b4{bottom:80.346667pt;}
.y1f7{bottom:82.586667pt;}
.y1fa{bottom:82.906667pt;}
.y1ab{bottom:83.200000pt;}
.y1ae{bottom:85.120000pt;}
.y224{bottom:88.346667pt;}
.y194{bottom:88.666667pt;}
.y146{bottom:88.986667pt;}
.y22d{bottom:89.626667pt;}
.y223{bottom:89.946667pt;}
.y21d{bottom:89.960000pt;}
.y1a2{bottom:90.280000pt;}
.y156{bottom:90.906667pt;}
.y16d{bottom:90.920000pt;}
.y17e{bottom:93.466667pt;}
.y177{bottom:93.786667pt;}
.y206{bottom:93.800000pt;}
.y1f6{bottom:98.266667pt;}
.y1aa{bottom:98.560000pt;}
.y1f9{bottom:98.586667pt;}
.y22c{bottom:103.386667pt;}
.y21c{bottom:103.400000pt;}
.y20f{bottom:103.720000pt;}
.y19b{bottom:104.346667pt;}
.y20e{bottom:105.000000pt;}
.y222{bottom:105.306667pt;}
.y16c{bottom:106.280000pt;}
.y155{bottom:106.586667pt;}
.y16b{bottom:106.600000pt;}
.y176{bottom:109.466667pt;}
.y205{bottom:109.480000pt;}
.y175{bottom:109.786667pt;}
.y1f8{bottom:112.346667pt;}
.y1f5{bottom:113.626667pt;}
.y1a9{bottom:114.266667pt;}
.y22b{bottom:116.826667pt;}
.y21b{bottom:120.360000pt;}
.y20d{bottom:120.680000pt;}
.y221{bottom:120.986667pt;}
.y204{bottom:124.840000pt;}
.y1f4{bottom:129.306667pt;}
.y1a8{bottom:129.626667pt;}
.y22a{bottom:133.786667pt;}
.y229{bottom:134.106667pt;}
.y20c{bottom:136.040000pt;}
.y21a{bottom:136.066667pt;}
.y59{bottom:143.426667pt;}
.y1f3{bottom:144.706667pt;}
.y228{bottom:149.146667pt;}
.y227{bottom:149.466667pt;}
.y7d{bottom:161.346667pt;}
.y141{bottom:209.026667pt;}
.y212{bottom:210.946667pt;}
.y199{bottom:213.186667pt;}
.y1bc{bottom:216.066667pt;}
.ydf{bottom:216.706667pt;}
.yc0{bottom:220.226667pt;}
.y174{bottom:222.466667pt;}
.y1f2{bottom:223.106667pt;}
.y1dd{bottom:223.426667pt;}
.y250{bottom:224.706667pt;}
.y9a{bottom:226.306667pt;}
.y264{bottom:226.626667pt;}
.y193{bottom:229.506667pt;}
.y112{bottom:230.786667pt;}
.yde{bottom:233.346667pt;}
.y23b{bottom:235.586667pt;}
.y99{bottom:241.346667pt;}
.y263{bottom:243.293333pt;}
.y111{bottom:247.453333pt;}
.ydd{bottom:249.693333pt;}
.y27a{bottom:251.933333pt;}
.y23a{bottom:252.253333pt;}
.y124{bottom:252.573333pt;}
.y1db{bottom:255.133333pt;}
.ybf{bottom:256.093333pt;}
.y24f{bottom:257.693333pt;}
.y98{bottom:259.613333pt;}
.ydc{bottom:266.333333pt;}
.y239{bottom:268.573333pt;}
.y123{bottom:269.213333pt;}
.ybe{bottom:271.133333pt;}
.y58{bottom:271.773333pt;}
.y110{bottom:272.093333pt;}
.y24e{bottom:274.333333pt;}
.ydb{bottom:282.653333pt;}
.y32{bottom:283.613333pt;}
.y262{bottom:284.253333pt;}
.y238{bottom:285.213333pt;}
.y10f{bottom:288.413333pt;}
.y24d{bottom:290.653333pt;}
.y1ba{bottom:292.253333pt;}
.y279{bottom:292.893333pt;}
.y122{bottom:293.533333pt;}
.ybd{bottom:294.173333pt;}
.yda{bottom:299.293333pt;}
.y20b{bottom:299.933333pt;}
.y31{bottom:300.253333pt;}
.y237{bottom:301.533333pt;}
.y10e{bottom:305.053333pt;}
.y24c{bottom:307.293333pt;}
.y261{bottom:308.573333pt;}
.y278{bottom:309.533333pt;}
.y121{bottom:310.173333pt;}
.ybc{bottom:310.813333pt;}
.yd9{bottom:315.613333pt;}
.y30{bottom:316.893333pt;}
.y236{bottom:318.173333pt;}
.y57{bottom:318.813333pt;}
.y13c{bottom:319.133333pt;}
.y10d{bottom:321.373333pt;}
.y24b{bottom:323.613333pt;}
.y260{bottom:325.213333pt;}
.y71{bottom:326.173333pt;}
.y120{bottom:326.493333pt;}
.ybb{bottom:327.453333pt;}
.y190{bottom:329.373333pt;}
.yd8{bottom:332.253333pt;}
.y2f{bottom:333.213333pt;}
.y97{bottom:333.533333pt;}
.y56{bottom:333.853333pt;}
.y235{bottom:334.493333pt;}
.y10c{bottom:338.013333pt;}
.y1b9{bottom:339.293333pt;}
.y25f{bottom:341.853333pt;}
.y11f{bottom:343.133333pt;}
.yba{bottom:344.093333pt;}
.y24a{bottom:348.253333pt;}
.y17{bottom:348.573333pt;}
.yf0{bottom:348.893333pt;}
.y2e{bottom:349.853333pt;}
.y277{bottom:350.493333pt;}
.y234{bottom:351.133333pt;}
.y10b{bottom:354.333333pt;}
.y70{bottom:355.293333pt;}
.yd7{bottom:357.213333pt;}
.y11e{bottom:359.453333pt;}
.yb9{bottom:360.453333pt;}
.y249{bottom:364.933333pt;}
.y25e{bottom:366.213333pt;}
.y16{bottom:366.533333pt;}
.y276{bottom:367.173333pt;}
.y233{bottom:367.493333pt;}
.y10a{bottom:371.013333pt;}
.y6f{bottom:371.333333pt;}
.yef{bottom:373.253333pt;}
.y48{bottom:374.533333pt;}
.yd6{bottom:375.173333pt;}
.y11d{bottom:376.133333pt;}
.yb8{bottom:377.093333pt;}
.y1f1{bottom:379.013333pt;}
.y1da{bottom:380.933333pt;}
.y248{bottom:381.253333pt;}
.y96{bottom:382.853333pt;}
.y2d{bottom:384.133333pt;}
.y13b{bottom:384.773333pt;}
.yee{bottom:389.893333pt;}
.y25d{bottom:390.533333pt;}
.y232{bottom:391.493333pt;}
.y18f{bottom:392.133333pt;}
.y15{bottom:392.773333pt;}
.y109{bottom:395.333333pt;}
.y247{bottom:397.893333pt;}
.y47{bottom:400.773333pt;}
.yb7{bottom:401.413333pt;}
.y1b3{bottom:402.053333pt;}
.yd5{bottom:403.333333pt;}
.y231{bottom:404.933333pt;}
.yed{bottom:406.213333pt;}
.y25c{bottom:407.173333pt;}
.y275{bottom:408.133333pt;}
.y2c{bottom:409.093333pt;}
.y108{bottom:411.973333pt;}
.y95{bottom:412.293333pt;}
.y1d9{bottom:412.613333pt;}
.y246{bottom:414.213333pt;}
.y226{bottom:416.133333pt;}
.y6e{bottom:416.773333pt;}
.y11c{bottom:417.093333pt;}
.yb6{bottom:418.053333pt;}
.y14{bottom:418.693333pt;}
.y1f0{bottom:420.293333pt;}
.yd4{bottom:422.533333pt;}
.yec{bottom:422.853333pt;}
.y55{bottom:426.053333pt;}
.y46{bottom:426.693333pt;}
.y94{bottom:427.333333pt;}
.y107{bottom:428.613333pt;}
.y245{bottom:430.853333pt;}
.y25b{bottom:431.493333pt;}
.y274{bottom:432.453333pt;}
.y6d{bottom:432.773333pt;}
.y18e{bottom:433.413333pt;}
.y11b{bottom:433.733333pt;}
.yb5{bottom:434.373333pt;}
.y2b{bottom:435.333333pt;}
.y1ef{bottom:436.933333pt;}
.yeb{bottom:439.173333pt;}
.y93{bottom:442.373333pt;}
.y13{bottom:444.613333pt;}
.y106{bottom:444.933333pt;}
.yd3{bottom:446.853333pt;}
.y209{bottom:447.173333pt;}
.y25a{bottom:448.133333pt;}
.y54{bottom:449.093333pt;}
.y18d{bottom:450.053333pt;}
.yb4{bottom:451.013333pt;}
.y45{bottom:452.613333pt;}
.y1ee{bottom:453.573333pt;}
.yea{bottom:455.813333pt;}
.y11a{bottom:458.373333pt;}
.y1d7{bottom:459.653333pt;}
.y166{bottom:460.613333pt;}
.y2a{bottom:461.253333pt;}
.y105{bottom:461.573333pt;}
.y6c{bottom:461.893333pt;}
.yd2{bottom:463.173333pt;}
.y244{bottom:463.813333pt;}
.y259{bottom:464.773333pt;}
.y18c{bottom:466.693333pt;}
.yb3{bottom:467.333333pt;}
.y1ed{bottom:469.893333pt;}
.y12{bottom:470.533333pt;}
.y92{bottom:471.173333pt;}
.ye9{bottom:472.133333pt;}
.y273{bottom:473.733333pt;}
.y13a{bottom:475.333333pt;}
.y6b{bottom:477.920000pt;}
.y44{bottom:478.560000pt;}
.yd1{bottom:479.840000pt;}
.y243{bottom:480.160000pt;}
.y18b{bottom:483.040000pt;}
.yb2{bottom:484.000000pt;}
.y104{bottom:485.920000pt;}
.y1ec{bottom:486.560000pt;}
.y29{bottom:487.200000pt;}
.y91{bottom:487.520000pt;}
.y258{bottom:489.120000pt;}
.y272{bottom:490.400000pt;}
.y1d6{bottom:491.680000pt;}
.y139{bottom:492.000000pt;}
.y1a7{bottom:493.600000pt;}
.yd0{bottom:496.160000pt;}
.y11{bottom:496.800000pt;}
.y18a{bottom:499.680000pt;}
.yb1{bottom:500.640000pt;}
.y103{bottom:502.560000pt;}
.y1eb{bottom:502.880000pt;}
.y90{bottom:504.160000pt;}
.y43{bottom:504.800000pt;}
.y15d{bottom:505.760000pt;}
.y6a{bottom:507.360000pt;}
.y138{bottom:508.320000pt;}
.ycf{bottom:512.800000pt;}
.y28{bottom:513.120000pt;}
.ye8{bottom:513.440000pt;}
.y271{bottom:514.720000pt;}
.yb0{bottom:516.960000pt;}
.y53{bottom:517.653333pt;}
.y102{bottom:518.880000pt;}
.y1ea{bottom:519.520000pt;}
.y8f{bottom:520.480000pt;}
.y10{bottom:522.720000pt;}
.y69{bottom:523.360000pt;}
.y137{bottom:524.960000pt;}
.yce{bottom:529.120000pt;}
.ye7{bottom:529.760000pt;}
.y257{bottom:530.080000pt;}
.y42{bottom:530.720000pt;}
.y270{bottom:531.360000pt;}
.y1d5{bottom:532.640000pt;}
.y119{bottom:532.960000pt;}
.yaf{bottom:533.600000pt;}
.y101{bottom:535.520000pt;}
.y8e{bottom:537.120000pt;}
.y27{bottom:539.360000pt;}
.y52{bottom:541.009333pt;}
.y136{bottom:541.600000pt;}
.y189{bottom:546.080000pt;}
.ye6{bottom:546.400000pt;}
.y256{bottom:546.720000pt;}
.yf{bottom:548.640000pt;}
.y1d4{bottom:549.280000pt;}
.y1e9{bottom:549.600000pt;}
.yae{bottom:549.920000pt;}
.y100{bottom:552.160000pt;}
.y68{bottom:552.800000pt;}
.y8d{bottom:553.760000pt;}
.y26f{bottom:555.680000pt;}
.y41{bottom:556.640000pt;}
.y135{bottom:557.920000pt;}
.ye5{bottom:562.720000pt;}
.y255{bottom:563.360000pt;}
.y26{bottom:565.280000pt;}
.y1d3{bottom:565.920000pt;}
.y67{bottom:568.800000pt;}
.y8c{bottom:570.080000pt;}
.y188{bottom:570.400000pt;}
.y118{bottom:571.040000pt;}
.y26e{bottom:572.320000pt;}
.ye{bottom:574.560000pt;}
.yad{bottom:575.200000pt;}
.yff{bottom:576.480000pt;}
.y1d2{bottom:582.240000pt;}
.y40{bottom:582.560000pt;}
.y66{bottom:584.800000pt;}
.y8b{bottom:586.720000pt;}
.y51{bottom:587.040000pt;}
.ye4{bottom:587.680000pt;}
.y117{bottom:589.920000pt;}
.y1e8{bottom:590.240000pt;}
.y134{bottom:590.880000pt;}
.y25{bottom:591.200000pt;}
.y154{bottom:592.480000pt;}
.yfe{bottom:593.120000pt;}
.y26d{bottom:596.666667pt;}
.y1d1{bottom:598.906667pt;}
.yd{bottom:600.826667pt;}
.yac{bottom:602.746667pt;}
.ycd{bottom:603.386667pt;}
.y242{bottom:603.706667pt;}
.y254{bottom:604.346667pt;}
.y1e7{bottom:606.906667pt;}
.y133{bottom:607.546667pt;}
.y3f{bottom:608.826667pt;}
.y116{bottom:609.146667pt;}
.yfd{bottom:609.466667pt;}
.y8a{bottom:611.066667pt;}
.ye3{bottom:613.306667pt;}
.y65{bottom:613.946667pt;}
.y1d0{bottom:615.546667pt;}
.y24{bottom:617.146667pt;}
.ycc{bottom:619.706667pt;}
.y187{bottom:620.026667pt;}
.y241{bottom:620.346667pt;}
.yab{bottom:620.666667pt;}
.y253{bottom:620.986667pt;}
.y1e6{bottom:623.226667pt;}
.y132{bottom:623.866667pt;}
.yfc{bottom:626.106667pt;}
.yc{bottom:626.746667pt;}
.y89{bottom:627.706667pt;}
.y115{bottom:628.026667pt;}
.y26c{bottom:629.626667pt;}
.y64{bottom:629.946667pt;}
.y1cf{bottom:631.866667pt;}
.y3e{bottom:634.746667pt;}
.ycb{bottom:636.346667pt;}
.y240{bottom:636.986667pt;}
.y1e5{bottom:639.866667pt;}
.y131{bottom:640.506667pt;}
.yfb{bottom:642.426667pt;}
.y23{bottom:643.386667pt;}
.y88{bottom:644.026667pt;}
.y252{bottom:645.306667pt;}
.yaa{bottom:646.266667pt;}
.y114{bottom:646.906667pt;}
.y1ce{bottom:648.506667pt;}
.yb{bottom:652.666667pt;}
.y186{bottom:652.986667pt;}
.y23f{bottom:653.306667pt;}
.y26b{bottom:655.226667pt;}
.y50{bottom:655.866667pt;}
.y1e4{bottom:656.186667pt;}
.y203{bottom:657.146667pt;}
.y63{bottom:659.386667pt;}
.y3d{bottom:660.666667pt;}
.y251{bottom:661.946667pt;}
.ya9{bottom:662.906667pt;}
.y27d{bottom:663.226667pt;}
.y1cd{bottom:664.826667pt;}
.y130{bottom:665.146667pt;}
.yfa{bottom:667.706667pt;}
.y22{bottom:669.306667pt;}
.y23e{bottom:669.946667pt;}
.y113{bottom:671.226667pt;}
.y26a{bottom:671.866667pt;}
.y1e3{bottom:672.826667pt;}
.y62{bottom:675.386667pt;}
.y87{bottom:676.986667pt;}
.ya{bottom:678.586667pt;}
.ya8{bottom:679.226667pt;}
.y27c{bottom:679.866667pt;}
.y12f{bottom:681.466667pt;}
.yca{bottom:685.626667pt;}
.y185{bottom:685.946667pt;}
.y23d{bottom:686.266667pt;}
.y3c{bottom:686.586667pt;}
.y86{bottom:693.626667pt;}
.yf9{bottom:694.906667pt;}
.y21{bottom:695.226667pt;}
.ya7{bottom:695.866667pt;}
.y269{bottom:696.186667pt;}
.y12e{bottom:698.106667pt;}
.y4f{bottom:700.026667pt;}
.yc9{bottom:702.266667pt;}
.y184{bottom:702.586667pt;}
.y1e2{bottom:704.186667pt;}
.y9{bottom:704.826667pt;}
.y1cc{bottom:705.786667pt;}
.y7c{bottom:707.706667pt;}
.y219{bottom:708.666667pt;}
.y85{bottom:710.266667pt;}
.y23c{bottom:711.226667pt;}
.ya6{bottom:712.226667pt;}
.y3b{bottom:712.866667pt;}
.y12d{bottom:714.466667pt;}
.y1e1{bottom:715.106667pt;}
.y4e{bottom:716.066667pt;}
.yc8{bottom:718.946667pt;}
.yf8{bottom:719.906667pt;}
.ye2{bottom:720.226667pt;}
.y20{bottom:720.866667pt;}
.y84{bottom:726.626667pt;}
.ya5{bottom:728.866667pt;}
.y1cb{bottom:730.466667pt;}
.y8{bottom:730.786667pt;}
.y12c{bottom:731.106667pt;}
.y4d{bottom:732.066667pt;}
.yc7{bottom:735.266667pt;}
.y183{bottom:735.586667pt;}
.y1a0{bottom:736.226667pt;}
.ye1{bottom:736.866667pt;}
.y7b{bottom:737.186667pt;}
.y1f{bottom:737.506667pt;}
.y3a{bottom:738.786667pt;}
.y14d{bottom:741.986667pt;}
.y83{bottom:743.266667pt;}
.ya4{bottom:745.506667pt;}
.y1e0{bottom:746.786667pt;}
.y1ca{bottom:747.106667pt;}
.y12b{bottom:747.426667pt;}
.y7{bottom:748.706667pt;}
.y61{bottom:749.986667pt;}
.yc6{bottom:751.906667pt;}
.y7a{bottom:753.186667pt;}
.ye0{bottom:753.506667pt;}
.y268{bottom:753.826667pt;}
.y1e{bottom:754.146667pt;}
.y39{bottom:756.706667pt;}
.y82{bottom:759.586667pt;}
.yf7{bottom:761.826667pt;}
.y1c9{bottom:763.426667pt;}
.y12a{bottom:764.066667pt;}
.y6{bottom:766.626667pt;}
.yc5{bottom:768.226667pt;}
.y79{bottom:769.186667pt;}
.ya3{bottom:769.826667pt;}
.y267{bottom:770.466667pt;}
.y1d{bottom:771.746667pt;}
.y60{bottom:773.986667pt;}
.y38{bottom:774.626667pt;}
.y27b{bottom:778.146667pt;}
.yf6{bottom:778.466667pt;}
.y1c8{bottom:780.066667pt;}
.y182{bottom:783.266667pt;}
.y81{bottom:784.546667pt;}
.y5{bottom:784.866667pt;}
.ya2{bottom:786.466667pt;}
.y266{bottom:786.786667pt;}
.y5f{bottom:789.986667pt;}
.y37{bottom:792.866667pt;}
.y1fe{bottom:793.506667pt;}
.y129{bottom:794.146667pt;}
.yf5{bottom:794.786667pt;}
.y1c7{bottom:796.386667pt;}
.y1c{bottom:796.706667pt;}
.y78{bottom:798.626667pt;}
.y19a{bottom:798.946667pt;}
.ya1{bottom:802.786667pt;}
.y265{bottom:803.426667pt;}
.y5e{bottom:805.986667pt;}
.yc4{bottom:809.826667pt;}
.y80{bottom:810.146667pt;}
.y128{bottom:810.466667pt;}
.y4{bottom:810.786667pt;}
.yf4{bottom:811.426667pt;}
.y1c6{bottom:813.026667pt;}
.y77{bottom:814.626667pt;}
.y36{bottom:818.786667pt;}
.y4c{bottom:819.106667pt;}
.ya0{bottom:819.426667pt;}
.y5d{bottom:821.986667pt;}
.y1b{bottom:822.626667pt;}
.y7f{bottom:826.786667pt;}
.yf3{bottom:827.746667pt;}
.y1c5{bottom:829.373333pt;}
.y76{bottom:830.653333pt;}
.y127{bottom:834.813333pt;}
.y9f{bottom:835.773333pt;}
.y3{bottom:836.733333pt;}
.y5c{bottom:838.013333pt;}
.yf2{bottom:844.413333pt;}
.y35{bottom:844.733333pt;}
.y1c4{bottom:846.013333pt;}
.y1a{bottom:848.893333pt;}
.y126{bottom:851.453333pt;}
.y9e{bottom:852.413333pt;}
.y7e{bottom:852.733333pt;}
.y5b{bottom:854.013333pt;}
.y217{bottom:855.933333pt;}
.y75{bottom:859.773333pt;}
.yf1{bottom:861.053333pt;}
.yc3{bottom:863.933333pt;}
.y2{bottom:864.253333pt;}
.y4b{bottom:865.213333pt;}
.y1de{bottom:866.493333pt;}
.y1fd{bottom:867.453333pt;}
.y9d{bottom:869.053333pt;}
.y1c3{bottom:871.613333pt;}
.y34{bottom:872.253333pt;}
.y19{bottom:874.813333pt;}
.y74{bottom:875.773333pt;}
.y125{bottom:876.413333pt;}
.y4a{bottom:879.933333pt;}
.y5a{bottom:880.253333pt;}
.y9c{bottom:885.373333pt;}
.y1c2{bottom:887.293333pt;}
.yc2{bottom:887.933333pt;}
.y1{bottom:888.253333pt;}
.y73{bottom:891.773333pt;}
.y49{bottom:894.973333pt;}
.y33{bottom:896.253333pt;}
.y1c1{bottom:898.493333pt;}
.y18{bottom:900.733333pt;}
.y9b{bottom:902.013333pt;}
.yc1{bottom:902.973333pt;}
.y72{bottom:939.453333pt;}
.h2c{height:15.360000pt;}
.h24{height:15.680000pt;}
.h15{height:28.800000pt;}
.h11{height:30.467500pt;}
.h2d{height:31.040000pt;}
.h1d{height:31.072000pt;}
.h30{height:31.360000pt;}
.h16{height:32.941250pt;}
.h18{height:33.867500pt;}
.h19{height:34.722779pt;}
.h9{height:36.408750pt;}
.h8{height:37.432500pt;}
.hd{height:39.243750pt;}
.h12{height:40.707500pt;}
.h7{height:40.997500pt;}
.h14{height:42.032838pt;}
.h5{height:42.656250pt;}
.h13{height:42.981250pt;}
.hf{height:43.343750pt;}
.h20{height:44.512000pt;}
.h6{height:44.562500pt;}
.h10{height:44.992500pt;}
.h2a{height:46.400000pt;}
.h31{height:46.432000pt;}
.h17{height:46.720000pt;}
.h2e{height:46.752000pt;}
.ha{height:49.277500pt;}
.hb{height:49.481250pt;}
.hc{height:51.692500pt;}
.h4{height:57.159375pt;}
.h38{height:57.920000pt;}
.he{height:58.080625pt;}
.h26{height:62.080000pt;}
.h1a{height:62.112000pt;}
.h1c{height:72.000000pt;}
.h33{height:72.992000pt;}
.h2b{height:75.552000pt;}
.h2f{height:77.760000pt;}
.h1f{height:86.080000pt;}
.h37{height:88.352000pt;}
.h29{height:90.912000pt;}
.h1b{height:99.232000pt;}
.h27{height:100.832000pt;}
.h23{height:104.032000pt;}
.h35{height:104.352000pt;}
.h25{height:114.912000pt;}
.h21{height:116.832000pt;}
.h1e{height:117.152000pt;}
.h22{height:120.032000pt;}
.h3a{height:131.552000pt;}
.h34{height:135.386667pt;}
.h28{height:140.186667pt;}
.h36{height:146.586667pt;}
.h39{height:146.626667pt;}
.h32{height:155.266667pt;}
.h3b{height:159.706667pt;}
.h3c{height:905.979680pt;}
.h3d{height:906.000000pt;}
.h0{height:907.815600pt;}
.h1{height:908.000000pt;}
.h2{height:1122.560000pt;}
.h3{height:1122.666667pt;}
.w12{width:33.280000pt;}
.w10{width:33.312000pt;}
.wb{width:34.560000pt;}
.wa{width:34.912000pt;}
.w18{width:41.600000pt;}
.w17{width:41.632000pt;}
.w1d{width:120.672000pt;}
.w1e{width:121.024000pt;}
.w1a{width:126.112000pt;}
.w16{width:126.464000pt;}
.wd{width:131.232000pt;}
.w9{width:131.584000pt;}
.w15{width:133.506667pt;}
.w13{width:136.026667pt;}
.wf{width:136.386667pt;}
.w1c{width:147.906667pt;}
.w8{width:149.506667pt;}
.w7{width:168.706667pt;}
.wc{width:169.053333pt;}
.we{width:178.626667pt;}
.w11{width:178.653333pt;}
.w1f{width:182.466667pt;}
.w1b{width:182.493333pt;}
.w14{width:182.786667pt;}
.w19{width:183.133333pt;}
.w21{width:637.333333pt;}
.w20{width:637.525013pt;}
.w0{width:641.315680pt;}
.w1{width:641.333333pt;}
.w3{width:793.333333pt;}
.w4{width:793.599988pt;}
.w2{width:793.600000pt;}
.w5{width:793.920000pt;}
.w6{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:6.720000pt;}
.x7c{left:12.800000pt;}
.x7d{left:16.000000pt;}
.x6d{left:22.106667pt;}
.x30{left:24.320000pt;}
.x42{left:25.306667pt;}
.x3b{left:26.266667pt;}
.x33{left:28.480000pt;}
.x34{left:30.720000pt;}
.x77{left:31.680000pt;}
.x79{left:32.640000pt;}
.x7f{left:34.586667pt;}
.x46{left:35.546667pt;}
.x2e{left:38.400000pt;}
.x63{left:39.360000pt;}
.x5c{left:41.306667pt;}
.x3c{left:43.546667pt;}
.x40{left:46.426667pt;}
.x52{left:48.640000pt;}
.x55{left:49.946667pt;}
.x66{left:51.546667pt;}
.x3a{left:53.786667pt;}
.x35{left:54.746667pt;}
.x37{left:56.346667pt;}
.x49{left:57.626667pt;}
.x31{left:58.880000pt;}
.x6e{left:62.746667pt;}
.x3e{left:64.986667pt;}
.x74{left:66.880000pt;}
.x82{left:74.906667pt;}
.x3f{left:76.826667pt;}
.x80{left:80.346667pt;}
.x47{left:81.306667pt;}
.x5a{left:85.146667pt;}
.x53{left:87.720000pt;}
.x5b{left:89.666667pt;}
.x7b{left:91.240000pt;}
.x62{left:93.160000pt;}
.x54{left:94.466667pt;}
.x48{left:96.386667pt;}
.x51{left:98.280000pt;}
.x32{left:104.360000pt;}
.x75{left:105.960000pt;}
.x78{left:107.560000pt;}
.x7a{left:108.840000pt;}
.x59{left:115.906667pt;}
.x70{left:117.480000pt;}
.x45{left:119.426667pt;}
.x41{left:124.226667pt;}
.x2f{left:127.720000pt;}
.x6b{left:129.666667pt;}
.x43{left:135.426667pt;}
.x3d{left:137.026667pt;}
.x44{left:138.626667pt;}
.x61{left:139.586667pt;}
.x72{left:141.160000pt;}
.x71{left:142.120000pt;}
.x81{left:143.106667pt;}
.x36{left:144.386667pt;}
.x6c{left:145.986667pt;}
.x58{left:149.826667pt;}
.x17{left:151.106655pt;}
.x7e{left:152.066667pt;}
.x38{left:155.586667pt;}
.x73{left:157.506667pt;}
.x67{left:159.773333pt;}
.x76{left:161.986667pt;}
.x2d{left:163.266667pt;}
.xe{left:170.306667pt;}
.x11{left:174.146667pt;}
.x21{left:177.666667pt;}
.x20{left:179.586667pt;}
.x25{left:186.626667pt;}
.x1d{left:189.213333pt;}
.x1{left:192.386655pt;}
.x69{left:194.013333pt;}
.x4f{left:197.213333pt;}
.x1e{left:198.813333pt;}
.x5e{left:205.853333pt;}
.x89{left:208.093333pt;}
.x24{left:212.253333pt;}
.x27{left:213.213333pt;}
.x23{left:217.693333pt;}
.x22{left:223.133333pt;}
.xf{left:227.588000pt;}
.xd{left:231.453322pt;}
.x10{left:233.554667pt;}
.x2{left:236.253322pt;}
.x12{left:249.373333pt;}
.x28{left:252.893333pt;}
.xc{left:265.693322pt;}
.x86{left:268.933333pt;}
.x1a{left:275.333333pt;}
.x4d{left:277.893333pt;}
.x87{left:279.173333pt;}
.x7{left:287.813322pt;}
.xb{left:293.573322pt;}
.x4a{left:323.653333pt;}
.x5{left:325.573322pt;}
.x6{left:329.413322pt;}
.x88{left:347.680000pt;}
.x1b{left:348.857333pt;}
.x1c{left:353.440000pt;}
.x56{left:357.600000pt;}
.x13{left:360.800000pt;}
.xa{left:361.759988pt;}
.x2b{left:368.160000pt;}
.x9{left:369.439988pt;}
.x64{left:370.400000pt;}
.x8{left:371.679988pt;}
.x4{left:376.479988pt;}
.x1f{left:380.320000pt;}
.x18{left:383.839988pt;}
.x5f{left:389.280000pt;}
.x19{left:399.520000pt;}
.x14{left:403.039988pt;}
.x3{left:406.559988pt;}
.x68{left:435.066667pt;}
.x4e{left:438.906667pt;}
.x4b{left:445.946667pt;}
.x26{left:449.146667pt;}
.x57{left:494.626667pt;}
.x39{left:499.426667pt;}
.x5d{left:500.706667pt;}
.x83{left:503.586667pt;}
.x65{left:504.546667pt;}
.x6a{left:509.986667pt;}
.x50{left:513.506667pt;}
.x2c{left:518.306667pt;}
.x60{left:523.426667pt;}
.x6f{left:528.866667pt;}
.x84{left:554.466667pt;}
.x15{left:561.506655pt;}
.x29{left:563.106667pt;}
.x85{left:569.533333pt;}
.x4c{left:577.533333pt;}
.x16{left:642.813322pt;}
}




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