
    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_1558c793acb5b93b4a578d2b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.857000;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_7e5e290215455896babb7d69.woff')format("woff");}.ff2{font-family:ff2;line-height:0.818000;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_82626b4ca662f9dc26851b2f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.008000;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_d4e473d5f3444e71cd212dfa.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cd9284be1948d1417f5b5b49.woff')format("woff");}.ff5{font-family:ff5;line-height:1.015000;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_d1f555bce0cb4581f19b83d8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.012000;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_30a391b6ae706dea0c907dd3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.025000;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_2b2211ed3f550a8116e5808d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.746000;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_bf00190e14bc92a32bf5e3e3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.008000;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_4b2f20a9e24576f524087b7c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.012000;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_41eb6b50f3359ca0d733a6ba.woff')format("woff");}.ffb{font-family:ffb;line-height:1.017000;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_3624bc9964d66abf3fbfb4b7.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3354d4940a868b32af6d10d0.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e6cdca2e1ec0a83e92c4105e.woff')format("woff");}.ffe{font-family:ffe;line-height:1.008000;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_f7d1c074db11e5a2adbcd711.woff')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b32ce693bf9b2e1e171788a3.woff')format("woff");}.ff10{font-family:ff10;line-height:0.944000;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_0f18eb30989cb6a234498a64.woff')format("woff");}.ff11{font-family:ff11;line-height:1.008000;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_15738e9c6bbbb112b882dacd.woff')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_0d196e21d5c7003f23962d08.woff')format("woff");}.ff13{font-family:ff13;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_922327fbb5f40ca245dd1910.woff')format("woff");}.ff14{font-family:ff14;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.840000px;}
.v2{vertical-align:17.280000px;}
.ls7f{letter-spacing:-9.147592px;}
.ls79{letter-spacing:-9.099598px;}
.lsa1{letter-spacing:-7.851763px;}
.ls2b{letter-spacing:-7.295037px;}
.ls37{letter-spacing:-6.450349px;}
.lsa2{letter-spacing:-6.066399px;}
.ls24{letter-spacing:-5.308099px;}
.ls36{letter-spacing:-5.279303px;}
.ls51{letter-spacing:-5.068131px;}
.ls31{letter-spacing:-5.039335px;}
.ls26{letter-spacing:-4.732175px;}
.ls33{letter-spacing:-4.645787px;}
.lsf{letter-spacing:-3.484340px;}
.ls9f{letter-spacing:-2.975607px;}
.ls4b{letter-spacing:-2.466874px;}
.ls6c{letter-spacing:-2.438078px;}
.ls6d{letter-spacing:-2.380486px;}
.ls4a{letter-spacing:-2.274900px;}
.ls80{letter-spacing:-2.202909px;}
.ls7b{letter-spacing:-2.157915px;}
.ls35{letter-spacing:-2.130919px;}
.ls10{letter-spacing:-2.102122px;}
.ls76{letter-spacing:-1.946743px;}
.ls66{letter-spacing:-1.926946px;}
.ls2c{letter-spacing:-1.900549px;}
.ls83{letter-spacing:-1.755368px;}
.ls63{letter-spacing:-1.722373px;}
.ls62{letter-spacing:-1.682778px;}
.ls84{letter-spacing:-1.643183px;}
.ls7c{letter-spacing:-1.636584px;}
.ls4d{letter-spacing:-1.487804px;}
.ls17{letter-spacing:-1.459007px;}
.ls7{letter-spacing:-1.439810px;}
.ls1c{letter-spacing:-1.372619px;}
.lsb{letter-spacing:-1.324625px;}
.ls59{letter-spacing:-1.315026px;}
.ls74{letter-spacing:-1.306628px;}
.ls58{letter-spacing:-1.257434px;}
.ls9c{letter-spacing:-1.247835px;}
.ls61{letter-spacing:-1.238236px;}
.ls85{letter-spacing:-1.234037px;}
.ls8f{letter-spacing:-1.219039px;}
.ls4e{letter-spacing:-1.199842px;}
.ls16{letter-spacing:-1.171045px;}
.ls75{letter-spacing:-1.168046px;}
.ls68{letter-spacing:-1.151848px;}
.ls7a{letter-spacing:-1.123052px;}
.ls1a{letter-spacing:-1.113453px;}
.lsa0{letter-spacing:-1.103854px;}
.ls73{letter-spacing:-1.075058px;}
.ls57{letter-spacing:-1.055861px;}
.ls12{letter-spacing:-1.036663px;}
.ls72{letter-spacing:-1.007867px;}
.ls2d{letter-spacing:-1.003068px;}
.lsd{letter-spacing:-0.998268px;}
.ls27{letter-spacing:-0.988669px;}
.ls4f{letter-spacing:-0.979071px;}
.ls32{letter-spacing:-0.959873px;}
.ls69{letter-spacing:-0.943075px;}
.ls8{letter-spacing:-0.921478px;}
.ls48{letter-spacing:-0.911880px;}
.ls65{letter-spacing:-0.910680px;}
.ls29{letter-spacing:-0.892682px;}
.ls52{letter-spacing:-0.883083px;}
.ls5a{letter-spacing:-0.854287px;}
.ls1b{letter-spacing:-0.844688px;}
.lse{letter-spacing:-0.835090px;}
.ls64{letter-spacing:-0.818292px;}
.ls9d{letter-spacing:-0.815892px;}
.ls34{letter-spacing:-0.787096px;}
.ls3c{letter-spacing:-0.777497px;}
.ls53{letter-spacing:-0.767899px;}
.ls4c{letter-spacing:-0.758300px;}
.ls5f{letter-spacing:-0.748701px;}
.ls81{letter-spacing:-0.723505px;}
.ls11{letter-spacing:-0.719905px;}
.ls50{letter-spacing:-0.710306px;}
.ls15{letter-spacing:-0.700707px;}
.ls1d{letter-spacing:-0.695908px;}
.ls14{letter-spacing:-0.691109px;}
.ls9{letter-spacing:-0.671911px;}
.ls5e{letter-spacing:-0.652714px;}
.ls2a{letter-spacing:-0.633516px;}
.ls5b{letter-spacing:-0.585523px;}
.lsc{letter-spacing:-0.575924px;}
.ls49{letter-spacing:-0.556726px;}
.ls30{letter-spacing:-0.547128px;}
.ls5d{letter-spacing:-0.537529px;}
.ls9e{letter-spacing:-0.508733px;}
.ls90{letter-spacing:-0.489535px;}
.ls18{letter-spacing:-0.460739px;}
.ls67{letter-spacing:-0.431943px;}
.ls96{letter-spacing:-0.427144px;}
.ls25{letter-spacing:-0.422344px;}
.ls97{letter-spacing:-0.417545px;}
.ls9b{letter-spacing:-0.403147px;}
.ls91{letter-spacing:-0.388749px;}
.ls54{letter-spacing:-0.355153px;}
.ls13{letter-spacing:-0.345554px;}
.ls28{letter-spacing:-0.335956px;}
.ls60{letter-spacing:-0.307159px;}
.ls95{letter-spacing:-0.292761px;}
.ls93{letter-spacing:-0.287962px;}
.ls44{letter-spacing:-0.251967px;}
.lsa{letter-spacing:-0.211172px;}
.ls3f{letter-spacing:-0.176377px;}
.ls92{letter-spacing:-0.172777px;}
.ls19{letter-spacing:-0.163178px;}
.ls1e{letter-spacing:-0.153580px;}
.ls3b{letter-spacing:-0.125983px;}
.ls94{letter-spacing:-0.105586px;}
.ls98{letter-spacing:-0.104986px;}
.ls38{letter-spacing:-0.100787px;}
.ls42{letter-spacing:-0.088188px;}
.ls2f{letter-spacing:-0.041994px;}
.ls43{letter-spacing:-0.037795px;}
.ls7e{letter-spacing:-0.020997px;}
.ls4{letter-spacing:0.000000px;}
.ls87{letter-spacing:0.008399px;}
.ls41{letter-spacing:0.012598px;}
.ls6{letter-spacing:0.020997px;}
.ls8a{letter-spacing:0.029994px;}
.ls88{letter-spacing:0.030594px;}
.ls8d{letter-spacing:0.033596px;}
.ls1f{letter-spacing:0.038395px;}
.ls3e{letter-spacing:0.041994px;}
.ls89{letter-spacing:0.050393px;}
.ls8b{letter-spacing:0.058792px;}
.ls82{letter-spacing:0.062992px;}
.ls8c{letter-spacing:0.067191px;}
.ls86{letter-spacing:0.075590px;}
.ls22{letter-spacing:0.125983px;}
.ls3a{letter-spacing:0.151180px;}
.ls78{letter-spacing:0.167978px;}
.ls39{letter-spacing:0.176377px;}
.ls40{letter-spacing:0.184776px;}
.ls23{letter-spacing:0.188975px;}
.ls56{letter-spacing:0.209972px;}
.ls8e{letter-spacing:0.230969px;}
.ls55{letter-spacing:0.251967px;}
.ls45{letter-spacing:0.268765px;}
.ls20{letter-spacing:0.278376px;}
.ls3d{letter-spacing:0.278976px;}
.ls1{letter-spacing:0.335956px;}
.ls46{letter-spacing:0.356953px;}
.ls0{letter-spacing:0.378790px;}
.ls2e{letter-spacing:0.390548px;}
.ls7d{letter-spacing:0.419944px;}
.ls5c{letter-spacing:0.440942px;}
.ls47{letter-spacing:0.503933px;}
.ls71{letter-spacing:0.524931px;}
.ls3{letter-spacing:0.813493px;}
.ls2{letter-spacing:1.173445px;}
.ls21{letter-spacing:53.522588px;}
.ls5{letter-spacing:60.657624px;}
.ls6e{letter-spacing:71.456258px;}
.ls6b{letter-spacing:79.274907px;}
.ls6a{letter-spacing:84.307640px;}
.ls70{letter-spacing:95.106333px;}
.ls77{letter-spacing:165.203175px;}
.ls6f{letter-spacing:182.546584px;}
.ls99{letter-spacing:3438.938887px;}
.ls9a{letter-spacing:3452.813254px;}
.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;}
}
.ws36{word-spacing:-58.036320px;}
.ws49{word-spacing:-57.973328px;}
.ws6b{word-spacing:-57.952331px;}
.ws37{word-spacing:-57.889340px;}
.ws1a{word-spacing:-57.868342px;}
.ws65{word-spacing:-57.784353px;}
.ws74{word-spacing:-57.763356px;}
.ws44{word-spacing:-57.742359px;}
.ws1b{word-spacing:-57.721362px;}
.ws60{word-spacing:-57.700365px;}
.ws80{word-spacing:-57.595378px;}
.ws38{word-spacing:-57.574381px;}
.ws2c{word-spacing:-57.553384px;}
.ws64{word-spacing:-57.511390px;}
.ws48{word-spacing:-57.490392px;}
.ws7f{word-spacing:-57.427401px;}
.ws2a{word-spacing:-31.886391px;}
.ws29{word-spacing:-31.395056px;}
.ws82{word-spacing:-26.684476px;}
.ws87{word-spacing:-25.868584px;}
.ws84{word-spacing:-25.849387px;}
.ws85{word-spacing:-25.724603px;}
.ws81{word-spacing:-25.705406px;}
.ws3{word-spacing:-23.996831px;}
.ws13{word-spacing:-23.833653px;}
.ws6{word-spacing:-23.785659px;}
.ws86{word-spacing:-23.708869px;}
.ws4c{word-spacing:-23.689672px;}
.wsd{word-spacing:-23.651277px;}
.ws43{word-spacing:-23.641678px;}
.ws12{word-spacing:-23.536092px;}
.ws75{word-spacing:-23.507296px;}
.ws4a{word-spacing:-23.459302px;}
.ws39{word-spacing:-23.440105px;}
.ws73{word-spacing:-23.424508px;}
.ws7{word-spacing:-23.420907px;}
.ws47{word-spacing:-23.411309px;}
.ws6d{word-spacing:-23.407710px;}
.ws20{word-spacing:-23.363315px;}
.ws4d{word-spacing:-23.344117px;}
.ws5{word-spacing:-23.324920px;}
.wse{word-spacing:-23.305722px;}
.ws10{word-spacing:-23.296124px;}
.ws40{word-spacing:-23.286525px;}
.wsb{word-spacing:-23.276926px;}
.ws4b{word-spacing:-23.248130px;}
.ws3c{word-spacing:-23.238531px;}
.ws42{word-spacing:-23.228933px;}
.ws2b{word-spacing:-23.219334px;}
.ws26{word-spacing:-23.209735px;}
.ws9{word-spacing:-23.161741px;}
.ws15{word-spacing:-23.152143px;}
.ws46{word-spacing:-23.142544px;}
.ws1f{word-spacing:-23.104149px;}
.ws4{word-spacing:-23.075353px;}
.ws24{word-spacing:-23.036958px;}
.ws3f{word-spacing:-23.017760px;}
.ws1e{word-spacing:-23.008162px;}
.ws8{word-spacing:-22.998563px;}
.ws59{word-spacing:-22.988964px;}
.wsc{word-spacing:-22.960168px;}
.ws5a{word-spacing:-22.940971px;}
.ws5b{word-spacing:-22.921773px;}
.ws14{word-spacing:-22.883378px;}
.ws62{word-spacing:-22.873779px;}
.wsf{word-spacing:-22.825786px;}
.ws3e{word-spacing:-22.796990px;}
.ws45{word-spacing:-22.681805px;}
.ws58{word-spacing:-22.672206px;}
.ws4e{word-spacing:-22.624212px;}
.ws11{word-spacing:-22.537824px;}
.ws3d{word-spacing:-22.509028px;}
.wsa{word-spacing:-21.894709px;}
.ws27{word-spacing:-21.865913px;}
.ws3a{word-spacing:-21.721932px;}
.ws57{word-spacing:-21.616346px;}
.ws56{word-spacing:-21.558753px;}
.ws3b{word-spacing:-21.529957px;}
.ws6e{word-spacing:-20.988830px;}
.ws72{word-spacing:-20.980431px;}
.ws71{word-spacing:-20.972032px;}
.ws70{word-spacing:-20.963633px;}
.ws6f{word-spacing:-20.921639px;}
.ws88{word-spacing:-20.618077px;}
.ws25{word-spacing:-19.351045px;}
.ws1d{word-spacing:-19.264656px;}
.ws23{word-spacing:-18.957497px;}
.ws41{word-spacing:-18.928700px;}
.ws28{word-spacing:-18.717528px;}
.ws1c{word-spacing:-18.688732px;}
.ws5c{word-spacing:-18.081614px;}
.ws0{word-spacing:-17.875239px;}
.ws1{word-spacing:-17.515286px;}
.ws63{word-spacing:-17.078546px;}
.ws55{word-spacing:-16.982557px;}
.ws5e{word-spacing:-16.913568px;}
.ws6a{word-spacing:-16.847577px;}
.ws5d{word-spacing:-16.774986px;}
.ws21{word-spacing:-16.701795px;}
.ws69{word-spacing:-16.438431px;}
.ws68{word-spacing:-16.326246px;}
.ws22{word-spacing:-16.181065px;}
.ws5f{word-spacing:-16.134871px;}
.ws54{word-spacing:-15.613540px;}
.ws52{word-spacing:-15.521152px;}
.ws61{word-spacing:-14.897233px;}
.ws50{word-spacing:-14.749054px;}
.ws51{word-spacing:-14.709459px;}
.ws4f{word-spacing:-14.531283px;}
.ws53{word-spacing:-14.504886px;}
.ws77{word-spacing:-11.998417px;}
.ws7b{word-spacing:-11.892831px;}
.ws78{word-spacing:-11.825640px;}
.ws79{word-spacing:-11.710455px;}
.ws7c{word-spacing:-11.705656px;}
.ws7a{word-spacing:-11.652863px;}
.ws76{word-spacing:-11.609669px;}
.ws7e{word-spacing:-11.580872px;}
.ws7d{word-spacing:-11.571274px;}
.ws35{word-spacing:-0.310759px;}
.ws2f{word-spacing:-0.226770px;}
.ws19{word-spacing:-0.086389px;}
.ws30{word-spacing:-0.054593px;}
.ws17{word-spacing:-0.047994px;}
.ws2e{word-spacing:-0.041994px;}
.ws33{word-spacing:-0.004199px;}
.ws2{word-spacing:0.000000px;}
.ws31{word-spacing:0.046194px;}
.ws32{word-spacing:0.083989px;}
.ws18{word-spacing:0.105586px;}
.ws2d{word-spacing:0.134382px;}
.ws34{word-spacing:0.209972px;}
.ws83{word-spacing:0.427723px;}
.ws67{word-spacing:0.615519px;}
.ws16{word-spacing:0.647915px;}
.ws6c{word-spacing:1.616787px;}
.ws89{word-spacing:10.906545px;}
.ws66{word-spacing:26.232688px;}
._d{margin-left:-2620.486259px;}
._e{margin-left:-64.819474px;}
._12{margin-left:-19.849982px;}
._9{margin-left:-8.062936px;}
._8{margin-left:-5.279303px;}
._a{margin-left:-4.172738px;}
._3{margin-left:-2.942742px;}
._1{margin-left:-1.355210px;}
._0{width:1.068279px;}
._7{width:2.136437px;}
._2{width:3.143443px;}
._4{width:4.895354px;}
._5{width:5.975352px;}
._6{width:7.865569px;}
._f{width:9.332339px;}
._13{width:11.164744px;}
._b{width:79.274907px;}
._10{width:91.185832px;}
._11{width:165.203175px;}
._c{width:228.269664px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(0,137,207);}
.fc5{color:rgb(146,208,80);}
.fc3{color:rgb(0,128,201);}
.fc9{color:rgb(127,127,127);}
.fc8{color:rgb(255,255,255);}
.fc4{color:rgb(191,191,191);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(232,105,45);}
.fs6{font-size:41.994457px;}
.fs3{font-size:47.993670px;}
.fs4{font-size:65.991292px;}
.fs1{font-size:71.990490px;}
.fs7{font-size:77.989702px;}
.fs9{font-size:83.988915px;}
.fs2{font-size:95.987325px;}
.fs8{font-size:107.985749px;}
.fs5{font-size:125.983372px;}
.fsa{font-size:149.980235px;}
.fs0{font-size:209.972215px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.833862px;}
.y84{bottom:17.580064px;}
.y91{bottom:19.740064px;}
.y15{bottom:22.980064px;}
.y43{bottom:24.780064px;}
.y3{bottom:25.860064px;}
.y1c{bottom:26.940064px;}
.y1b{bottom:28.020064px;}
.y93{bottom:33.780064px;}
.y42{bottom:36.660064px;}
.y87{bottom:37.380064px;}
.y90{bottom:39.540064px;}
.y7d{bottom:40.260064px;}
.y7b{bottom:41.340064px;}
.y1a{bottom:47.460064px;}
.ya9{bottom:49.260064px;}
.y41{bottom:50.340064px;}
.y89{bottom:51.780064px;}
.y73{bottom:52.140064px;}
.y10{bottom:55.020064px;}
.y7c{bottom:59.700064px;}
.y40{bottom:62.220064px;}
.ya8{bottom:62.580064px;}
.y62{bottom:65.100064px;}
.y92{bottom:71.220064px;}
.y38{bottom:73.380064px;}
.y3f{bottom:74.100064px;}
.y6b{bottom:75.900064px;}
.yba{bottom:79.140064px;}
.yf{bottom:83.460064px;}
.y3e{bottom:87.780064px;}
.y86{bottom:94.260064px;}
.yaa{bottom:97.140064px;}
.y3d{bottom:99.660064px;}
.y56{bottom:100.740064px;}
.y37{bottom:101.820064px;}
.y24{bottom:104.340064px;}
.yb9{bottom:107.580064px;}
.yd3{bottom:110.820064px;}
.ya0{bottom:111.180064px;}
.ye{bottom:111.900064px;}
.y3c{bottom:112.980064px;}
.y8f{bottom:113.700064px;}
.y85{bottom:123.060064px;}
.y3b{bottom:125.220064px;}
.y6a{bottom:128.100064px;}
.y55{bottom:129.180064px;}
.yc7{bottom:130.980064px;}
.y8e{bottom:133.500064px;}
.y83{bottom:136.020064px;}
.yb8{bottom:136.380064px;}
.y3a{bottom:137.100064px;}
.yd2{bottom:139.260064px;}
.y14{bottom:139.980064px;}
.yd{bottom:140.340064px;}
.yb3{bottom:145.380064px;}
.y39{bottom:150.780064px;}
.yca{bottom:153.660064px;}
.y72{bottom:156.900064px;}
.y54{bottom:157.620064px;}
.y65{bottom:158.700064px;}
.yc6{bottom:159.420064px;}
.y23{bottom:161.580064px;}
.yb7{bottom:164.820064px;}
.yd1{bottom:168.060064px;}
.y13{bottom:168.420064px;}
.yc{bottom:168.780064px;}
.y7a{bottom:170.220064px;}
.yb2{bottom:173.820064px;}
.y69{bottom:180.660064px;}
.yc9{bottom:182.100064px;}
.y64{bottom:187.140064px;}
.y49{bottom:187.860064px;}
.yb6{bottom:193.260064px;}
.y67{bottom:193.620064px;}
.yd0{bottom:196.500064px;}
.yb1{bottom:202.260064px;}
.y5a{bottom:202.620064px;}
.y79{bottom:203.340064px;}
.y71{bottom:209.460064px;}
.yc8{bottom:210.540064px;}
.y53{bottom:213.060064px;}
.y82{bottom:215.580064px;}
.yc5{bottom:216.300064px;}
.y22{bottom:218.460064px;}
.yb5{bottom:221.700064px;}
.y66{bottom:222.060064px;}
.ycf{bottom:224.940064px;}
.y68{bottom:233.220064px;}
.y48{bottom:237.540064px;}
.y52{bottom:241.860064px;}
.y2d{bottom:249.420064px;}
.yb4{bottom:250.140064px;}
.yb{bottom:253.020064px;}
.y9f{bottom:256.260064px;}
.y70{bottom:262.020064px;}
.y28{bottom:274.620064px;}
.y21{bottom:275.340064px;}
.y5c{bottom:276.420064px;}
.ya{bottom:281.460064px;}
.y59{bottom:284.340064px;}
.y47{bottom:286.860064px;}
.y63{bottom:287.580064px;}
.y81{bottom:293.340064px;}
.yc0{bottom:294.420064px;}
.y5b{bottom:295.860064px;}
.y51{bottom:298.740064px;}
.y78{bottom:302.340064px;}
.ybe{bottom:303.420064px;}
.y2c{bottom:306.300064px;}
.y9{bottom:309.900064px;}
.y12{bottom:310.980064px;}
.y6f{bottom:314.580064px;}
.y9d{bottom:314.940064px;}
.y9e{bottom:322.860064px;}
.ya3{bottom:328.620064px;}
.y27{bottom:330.060064px;}
.y20{bottom:330.780064px;}
.ybd{bottom:331.860064px;}
.ycb{bottom:332.220064px;}
.y2b{bottom:333.300064px;}
.y77{bottom:336.900064px;}
.y46{bottom:337.980064px;}
.y61{bottom:350.940064px;}
.y50{bottom:355.620064px;}
.ya2{bottom:357.420064px;}
.y26{bottom:358.500064px;}
.ybc{bottom:360.660064px;}
.y9c{bottom:362.820064px;}
.y6e{bottom:366.780064px;}
.y60{bottom:371.820064px;}
.y80{bottom:372.900064px;}
.ya1{bottom:385.860064px;}
.y45{bottom:387.300064px;}
.y1f{bottom:388.020064px;}
.ybb{bottom:389.100064px;}
.y2a{bottom:390.540064px;}
.y5f{bottom:392.700064px;}
.y19{bottom:393.420064px;}
.y8{bottom:395.220064px;}
.y4f{bottom:412.860064px;}
.y5e{bottom:413.940064px;}
.y25{bottom:415.740064px;}
.y1e{bottom:416.460064px;}
.y29{bottom:418.980064px;}
.y96{bottom:421.140064px;}
.y7{bottom:424.020064px;}
.y18{bottom:432.660064px;}
.y98{bottom:433.380064px;}
.y9a{bottom:433.740064px;}
.y8d{bottom:434.820064px;}
.y76{bottom:435.900064px;}
.y44{bottom:436.980064px;}
.y4e{bottom:441.300064px;}
.y95{bottom:444.900064px;}
.y5d{bottom:448.140064px;}
.y58{bottom:450.660064px;}
.y7f{bottom:451.020064px;}
.y11{bottom:451.740064px;}
.y6{bottom:452.460064px;}
.y99{bottom:456.420064px;}
.y97{bottom:457.140064px;}
.y75{bottom:464.340064px;}
.ya7{bottom:465.420064px;}
.yb0{bottom:465.780064px;}
.y94{bottom:469.020064px;}
.y17{bottom:471.540064px;}
.y6d{bottom:471.900064px;}
.y8c{bottom:473.700064px;}
.yc2{bottom:478.380064px;}
.y4b{bottom:485.580064px;}
.y33{bottom:486.300064px;}
.y30{bottom:488.820064px;}
.y36{bottom:489.900064px;}
.y74{bottom:492.780064px;}
.ya6{bottom:493.860064px;}
.yaf{bottom:494.220064px;}
.y4d{bottom:496.740064px;}
.yac{bottom:507.180064px;}
.y5{bottom:507.900064px;}
.y8b{bottom:512.940064px;}
.yce{bottom:521.220064px;}
.ya5{bottom:522.300064px;}
.yae{bottom:522.660064px;}
.yc4{bottom:523.020064px;}
.y32{bottom:523.740064px;}
.y6c{bottom:524.460064px;}
.y2{bottom:525.900064px;}
.y2f{bottom:526.260064px;}
.y35{bottom:527.340064px;}
.y57{bottom:530.220064px;}
.y7e{bottom:530.580064px;}
.yab{bottom:535.620064px;}
.y9b{bottom:537.060064px;}
.y4a{bottom:542.460064px;}
.ycd{bottom:549.660064px;}
.ya4{bottom:550.740064px;}
.y16{bottom:551.100064px;}
.yc3{bottom:551.460064px;}
.y8a{bottom:551.820064px;}
.y4c{bottom:553.620064px;}
.y31{bottom:562.980019px;}
.yc1{bottom:564.060019px;}
.y2e{bottom:565.140019px;}
.y34{bottom:566.220019px;}
.ycc{bottom:578.100019px;}
.y88{bottom:578.460019px;}
.yad{bottom:579.900019px;}
.y1d{bottom:644.340019px;}
.y4{bottom:647.220019px;}
.ybf{bottom:647.940019px;}
.ha{height:32.251743px;}
.h11{height:36.283214px;}
.h7{height:37.723024px;}
.he{height:50.681312px;}
.hb{height:51.869156px;}
.h8{height:53.518938px;}
.h4{height:57.808363px;}
.hc{height:58.024335px;}
.h10{height:60.304041px;}
.hf{height:61.146226px;}
.h12{height:69.881397px;}
.h5{height:73.718265px;}
.h6{height:74.390177px;}
.hd{height:81.637227px;}
.h9{height:91.589911px;}
.h13{height:123.638294px;}
.h14{height:125.078294px;}
.h3{height:150.340106px;}
.h2{height:709.499988px;}
.h1{height:710.250000px;}
.h0{height:710.333850px;}
.w2{width:1261.500000px;}
.w0{width:1262.834700px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x28{left:38.451225px;}
.xe{left:42.080010px;}
.xf{left:44.134815px;}
.x2{left:52.511490px;}
.x48{left:55.278165px;}
.xb{left:56.795445px;}
.x3{left:61.717065px;}
.x46{left:65.187750px;}
.x4{left:72.660420px;}
.x2f{left:75.112380px;}
.x2b{left:79.128600px;}
.x42{left:94.897455px;}
.x6f{left:97.602150px;}
.x6d{left:99.576510px;}
.x5{left:102.226830px;}
.x3f{left:105.718815px;}
.x6c{left:113.374155px;}
.x62{left:116.002290px;}
.x2d{left:117.891690px;}
.x12{left:122.502075px;}
.x5d{left:125.857755px;}
.x70{left:127.175130px;}
.x63{left:130.456980px;}
.x43{left:132.151125px;}
.x30{left:133.161105px;}
.x58{left:134.384220px;}
.x20{left:135.402555px;}
.x75{left:137.027295px;}
.x26{left:139.360680px;}
.x31{left:141.216300px;}
.x76{left:144.911670px;}
.x15{left:146.148630px;}
.x16{left:149.946285px;}
.x29{left:151.879650px;}
.x13{left:154.282650px;}
.x14{left:158.763600px;}
.x10{left:165.090900px;}
.x11{left:178.336650px;}
.x6b{left:181.747950px;}
.x1{left:184.199700px;}
.x1f{left:191.933550px;}
.x4e{left:200.199450px;}
.x4d{left:203.655450px;}
.x27{left:207.738000px;}
.x4c{left:212.860350px;}
.x2e{left:228.299250px;}
.xa{left:363.239700px;}
.x2c{left:365.848050px;}
.x50{left:369.931500px;}
.x4f{left:378.867150px;}
.x51{left:385.700250px;}
.x22{left:517.579650px;}
.x40{left:523.928100px;}
.x74{left:536.887350px;}
.x19{left:544.268250px;}
.x1a{left:548.867550px;}
.x6{left:550.657800px;}
.x59{left:551.995500px;}
.x23{left:553.874100px;}
.x52{left:555.088800px;}
.x17{left:567.678300px;}
.x21{left:574.163250px;}
.x7{left:585.973200px;}
.x18{left:588.946350px;}
.x41{left:593.363100px;}
.x8{left:596.492250px;}
.x7c{left:611.788800px;}
.x57{left:634.207500px;}
.x5b{left:640.211250px;}
.x9{left:686.991900px;}
.x5a{left:711.031350px;}
.x2a{left:725.725050px;}
.xc{left:736.440300px;}
.x37{left:740.852700px;}
.xd{left:744.817350px;}
.x38{left:749.617500px;}
.x4a{left:751.929450px;}
.x53{left:753.698850px;}
.x36{left:755.570250px;}
.x7d{left:764.313450px;}
.x54{left:778.547850px;}
.x44{left:829.929150px;}
.x45{left:832.809000px;}
.x3c{left:840.042300px;}
.x49{left:868.099200px;}
.x3a{left:875.992950px;}
.x39{left:879.357000px;}
.x35{left:887.439750px;}
.x47{left:890.646900px;}
.x32{left:892.456200px;}
.x3b{left:894.961500px;}
.x1b{left:905.586150px;}
.x1e{left:914.810850px;}
.x4b{left:919.183350px;}
.x3e{left:925.523100px;}
.x5c{left:939.232050px;}
.x55{left:946.384200px;}
.x56{left:951.804600px;}
.x1c{left:955.546800px;}
.x24{left:959.081700px;}
.x3d{left:963.741600px;}
.x25{left:964.968600px;}
.x1d{left:967.176300px;}
.x77{left:968.539650px;}
.x60{left:972.918900px;}
.x64{left:974.788200px;}
.x68{left:978.730350px;}
.x6e{left:982.610100px;}
.x67{left:988.585950px;}
.x69{left:990.556950px;}
.x66{left:993.178500px;}
.x78{left:994.597650px;}
.x7a{left:996.567450px;}
.x71{left:1000.509600px;}
.x61{left:1002.485250px;}
.x5e{left:1007.084550px;}
.x5f{left:1008.398550px;}
.x7b{left:1011.022050px;}
.x72{left:1014.964200px;}
.x79{left:1016.928750px;}
.x6a{left:1024.065600px;}
.x73{left:1025.476800px;}
.x33{left:1032.843900px;}
.x34{left:1038.494400px;}
.x65{left:1041.148350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.080000pt;}
.v2{vertical-align:15.360000pt;}
.ls7f{letter-spacing:-8.131193pt;}
.ls79{letter-spacing:-8.088532pt;}
.lsa1{letter-spacing:-6.979345pt;}
.ls2b{letter-spacing:-6.484477pt;}
.ls37{letter-spacing:-5.733643pt;}
.lsa2{letter-spacing:-5.392355pt;}
.ls24{letter-spacing:-4.718310pt;}
.ls36{letter-spacing:-4.692714pt;}
.ls51{letter-spacing:-4.505005pt;}
.ls31{letter-spacing:-4.479408pt;}
.ls26{letter-spacing:-4.206378pt;}
.ls33{letter-spacing:-4.129588pt;}
.lsf{letter-spacing:-3.097191pt;}
.ls9f{letter-spacing:-2.644984pt;}
.ls4b{letter-spacing:-2.192777pt;}
.ls6c{letter-spacing:-2.167180pt;}
.ls6d{letter-spacing:-2.115987pt;}
.ls4a{letter-spacing:-2.022133pt;}
.ls80{letter-spacing:-1.958142pt;}
.ls7b{letter-spacing:-1.918147pt;}
.ls35{letter-spacing:-1.894150pt;}
.ls10{letter-spacing:-1.868553pt;}
.ls76{letter-spacing:-1.730438pt;}
.ls66{letter-spacing:-1.712841pt;}
.ls2c{letter-spacing:-1.689377pt;}
.ls83{letter-spacing:-1.560327pt;}
.ls63{letter-spacing:-1.530998pt;}
.ls62{letter-spacing:-1.495803pt;}
.ls84{letter-spacing:-1.460607pt;}
.ls7c{letter-spacing:-1.454741pt;}
.ls4d{letter-spacing:-1.322492pt;}
.ls17{letter-spacing:-1.296895pt;}
.ls7{letter-spacing:-1.279831pt;}
.ls1c{letter-spacing:-1.220106pt;}
.lsb{letter-spacing:-1.177445pt;}
.ls59{letter-spacing:-1.168912pt;}
.ls74{letter-spacing:-1.161447pt;}
.ls58{letter-spacing:-1.117719pt;}
.ls9c{letter-spacing:-1.109187pt;}
.ls61{letter-spacing:-1.100655pt;}
.ls85{letter-spacing:-1.096922pt;}
.ls8f{letter-spacing:-1.083590pt;}
.ls4e{letter-spacing:-1.066526pt;}
.ls16{letter-spacing:-1.040929pt;}
.ls75{letter-spacing:-1.038263pt;}
.ls68{letter-spacing:-1.023865pt;}
.ls7a{letter-spacing:-0.998268pt;}
.ls1a{letter-spacing:-0.989736pt;}
.lsa0{letter-spacing:-0.981204pt;}
.ls73{letter-spacing:-0.955607pt;}
.ls57{letter-spacing:-0.938543pt;}
.ls12{letter-spacing:-0.921478pt;}
.ls72{letter-spacing:-0.895882pt;}
.ls2d{letter-spacing:-0.891616pt;}
.lsd{letter-spacing:-0.887349pt;}
.ls27{letter-spacing:-0.878817pt;}
.ls4f{letter-spacing:-0.870285pt;}
.ls32{letter-spacing:-0.853221pt;}
.ls69{letter-spacing:-0.838289pt;}
.ls8{letter-spacing:-0.819092pt;}
.ls48{letter-spacing:-0.810560pt;}
.ls65{letter-spacing:-0.809493pt;}
.ls29{letter-spacing:-0.793495pt;}
.ls52{letter-spacing:-0.784963pt;}
.ls5a{letter-spacing:-0.759366pt;}
.ls1b{letter-spacing:-0.750834pt;}
.lse{letter-spacing:-0.742302pt;}
.ls64{letter-spacing:-0.727371pt;}
.ls9d{letter-spacing:-0.725238pt;}
.ls34{letter-spacing:-0.699641pt;}
.ls3c{letter-spacing:-0.691109pt;}
.ls53{letter-spacing:-0.682577pt;}
.ls4c{letter-spacing:-0.674044pt;}
.ls5f{letter-spacing:-0.665512pt;}
.ls81{letter-spacing:-0.643115pt;}
.ls11{letter-spacing:-0.639915pt;}
.ls50{letter-spacing:-0.631383pt;}
.ls15{letter-spacing:-0.622851pt;}
.ls1d{letter-spacing:-0.618585pt;}
.ls14{letter-spacing:-0.614319pt;}
.ls9{letter-spacing:-0.597254pt;}
.ls5e{letter-spacing:-0.580190pt;}
.ls2a{letter-spacing:-0.563126pt;}
.ls5b{letter-spacing:-0.520465pt;}
.lsc{letter-spacing:-0.511932pt;}
.ls49{letter-spacing:-0.494868pt;}
.ls30{letter-spacing:-0.486336pt;}
.ls5d{letter-spacing:-0.477804pt;}
.ls9e{letter-spacing:-0.452207pt;}
.ls90{letter-spacing:-0.435143pt;}
.ls18{letter-spacing:-0.409546pt;}
.ls67{letter-spacing:-0.383949pt;}
.ls96{letter-spacing:-0.379683pt;}
.ls25{letter-spacing:-0.375417pt;}
.ls97{letter-spacing:-0.371151pt;}
.ls9b{letter-spacing:-0.358353pt;}
.ls91{letter-spacing:-0.345554pt;}
.ls54{letter-spacing:-0.315692pt;}
.ls13{letter-spacing:-0.307159pt;}
.ls28{letter-spacing:-0.298627pt;}
.ls60{letter-spacing:-0.273031pt;}
.ls95{letter-spacing:-0.260232pt;}
.ls93{letter-spacing:-0.255966pt;}
.ls44{letter-spacing:-0.223970pt;}
.lsa{letter-spacing:-0.187709pt;}
.ls3f{letter-spacing:-0.156779pt;}
.ls92{letter-spacing:-0.153580pt;}
.ls19{letter-spacing:-0.145048pt;}
.ls1e{letter-spacing:-0.136515pt;}
.ls3b{letter-spacing:-0.111985pt;}
.ls94{letter-spacing:-0.093854pt;}
.ls98{letter-spacing:-0.093321pt;}
.ls38{letter-spacing:-0.089588pt;}
.ls42{letter-spacing:-0.078390pt;}
.ls2f{letter-spacing:-0.037328pt;}
.ls43{letter-spacing:-0.033596pt;}
.ls7e{letter-spacing:-0.018664pt;}
.ls4{letter-spacing:0.000000pt;}
.ls87{letter-spacing:0.007466pt;}
.ls41{letter-spacing:0.011199pt;}
.ls6{letter-spacing:0.018664pt;}
.ls8a{letter-spacing:0.026661pt;}
.ls88{letter-spacing:0.027194pt;}
.ls8d{letter-spacing:0.029863pt;}
.ls1f{letter-spacing:0.034129pt;}
.ls3e{letter-spacing:0.037328pt;}
.ls89{letter-spacing:0.044794pt;}
.ls8b{letter-spacing:0.052260pt;}
.ls82{letter-spacing:0.055993pt;}
.ls8c{letter-spacing:0.059725pt;}
.ls86{letter-spacing:0.067191pt;}
.ls22{letter-spacing:0.111985pt;}
.ls3a{letter-spacing:0.134382pt;}
.ls78{letter-spacing:0.149314pt;}
.ls39{letter-spacing:0.156779pt;}
.ls40{letter-spacing:0.164245pt;}
.ls23{letter-spacing:0.167978pt;}
.ls56{letter-spacing:0.186642pt;}
.ls8e{letter-spacing:0.205306pt;}
.ls55{letter-spacing:0.223970pt;}
.ls45{letter-spacing:0.238902pt;}
.ls20{letter-spacing:0.247446pt;}
.ls3d{letter-spacing:0.247979pt;}
.ls1{letter-spacing:0.298627pt;}
.ls46{letter-spacing:0.317291pt;}
.ls0{letter-spacing:0.336702pt;}
.ls2e{letter-spacing:0.347154pt;}
.ls7d{letter-spacing:0.373284pt;}
.ls5c{letter-spacing:0.391948pt;}
.ls47{letter-spacing:0.447941pt;}
.ls71{letter-spacing:0.466605pt;}
.ls3{letter-spacing:0.723104pt;}
.ls2{letter-spacing:1.043062pt;}
.ls21{letter-spacing:47.575634pt;}
.ls5{letter-spacing:53.917888pt;}
.ls6e{letter-spacing:63.516674pt;}
.ls6b{letter-spacing:70.466584pt;}
.ls6a{letter-spacing:74.940124pt;}
.ls70{letter-spacing:84.538963pt;}
.ls77{letter-spacing:146.847267pt;}
.ls6f{letter-spacing:162.263630pt;}
.ls99{letter-spacing:3056.834566pt;}
.ls9a{letter-spacing:3069.167337pt;}
.ws36{word-spacing:-51.587840pt;}
.ws49{word-spacing:-51.531847pt;}
.ws6b{word-spacing:-51.513183pt;}
.ws37{word-spacing:-51.457191pt;}
.ws1a{word-spacing:-51.438527pt;}
.ws65{word-spacing:-51.363870pt;}
.ws74{word-spacing:-51.345206pt;}
.ws44{word-spacing:-51.326541pt;}
.ws1b{word-spacing:-51.307877pt;}
.ws60{word-spacing:-51.289213pt;}
.ws80{word-spacing:-51.195892pt;}
.ws38{word-spacing:-51.177228pt;}
.ws2c{word-spacing:-51.158564pt;}
.ws64{word-spacing:-51.121235pt;}
.ws48{word-spacing:-51.102571pt;}
.ws7f{word-spacing:-51.046578pt;}
.ws2a{word-spacing:-28.343459pt;}
.ws29{word-spacing:-27.906717pt;}
.ws82{word-spacing:-23.719534pt;}
.ws87{word-spacing:-22.994297pt;}
.ws84{word-spacing:-22.977233pt;}
.ws85{word-spacing:-22.866314pt;}
.ws81{word-spacing:-22.849249pt;}
.ws3{word-spacing:-21.330517pt;}
.ws13{word-spacing:-21.185469pt;}
.ws6{word-spacing:-21.142808pt;}
.ws86{word-spacing:-21.074550pt;}
.ws4c{word-spacing:-21.057486pt;}
.wsd{word-spacing:-21.023357pt;}
.ws43{word-spacing:-21.014825pt;}
.ws12{word-spacing:-20.920971pt;}
.ws75{word-spacing:-20.895374pt;}
.ws4a{word-spacing:-20.852713pt;}
.ws39{word-spacing:-20.835649pt;}
.ws73{word-spacing:-20.821785pt;}
.ws7{word-spacing:-20.818584pt;}
.ws47{word-spacing:-20.810052pt;}
.ws6d{word-spacing:-20.806854pt;}
.ws20{word-spacing:-20.767391pt;}
.ws4d{word-spacing:-20.750327pt;}
.ws5{word-spacing:-20.733262pt;}
.wse{word-spacing:-20.716198pt;}
.ws10{word-spacing:-20.707666pt;}
.ws40{word-spacing:-20.699133pt;}
.wsb{word-spacing:-20.690601pt;}
.ws4b{word-spacing:-20.665005pt;}
.ws3c{word-spacing:-20.656472pt;}
.ws42{word-spacing:-20.647940pt;}
.ws2b{word-spacing:-20.639408pt;}
.ws26{word-spacing:-20.630876pt;}
.ws9{word-spacing:-20.588215pt;}
.ws15{word-spacing:-20.579682pt;}
.ws46{word-spacing:-20.571150pt;}
.ws1f{word-spacing:-20.537021pt;}
.ws4{word-spacing:-20.511425pt;}
.ws24{word-spacing:-20.477296pt;}
.ws3f{word-spacing:-20.460232pt;}
.ws1e{word-spacing:-20.451699pt;}
.ws8{word-spacing:-20.443167pt;}
.ws59{word-spacing:-20.434635pt;}
.wsc{word-spacing:-20.409038pt;}
.ws5a{word-spacing:-20.391974pt;}
.ws5b{word-spacing:-20.374909pt;}
.ws14{word-spacing:-20.340781pt;}
.ws62{word-spacing:-20.332248pt;}
.wsf{word-spacing:-20.289587pt;}
.ws3e{word-spacing:-20.263991pt;}
.ws45{word-spacing:-20.161604pt;}
.ws58{word-spacing:-20.153072pt;}
.ws4e{word-spacing:-20.110411pt;}
.ws11{word-spacing:-20.033621pt;}
.ws3d{word-spacing:-20.008025pt;}
.wsa{word-spacing:-19.461963pt;}
.ws27{word-spacing:-19.436367pt;}
.ws3a{word-spacing:-19.308384pt;}
.ws57{word-spacing:-19.214529pt;}
.ws56{word-spacing:-19.163336pt;}
.ws3b{word-spacing:-19.137740pt;}
.ws6e{word-spacing:-18.656738pt;}
.ws72{word-spacing:-18.649272pt;}
.ws71{word-spacing:-18.641806pt;}
.ws70{word-spacing:-18.634341pt;}
.ws6f{word-spacing:-18.597012pt;}
.ws88{word-spacing:-18.327180pt;}
.ws25{word-spacing:-17.200929pt;}
.ws1d{word-spacing:-17.124139pt;}
.ws23{word-spacing:-16.851108pt;}
.ws41{word-spacing:-16.825512pt;}
.ws28{word-spacing:-16.637803pt;}
.ws1c{word-spacing:-16.612206pt;}
.ws5c{word-spacing:-16.072546pt;}
.ws0{word-spacing:-15.889101pt;}
.ws1{word-spacing:-15.569143pt;}
.ws63{word-spacing:-15.180930pt;}
.ws55{word-spacing:-15.095606pt;}
.ws5e{word-spacing:-15.034283pt;}
.ws6a{word-spacing:-14.975624pt;}
.ws5d{word-spacing:-14.911099pt;}
.ws21{word-spacing:-14.846040pt;}
.ws69{word-spacing:-14.611939pt;}
.ws68{word-spacing:-14.512218pt;}
.ws22{word-spacing:-14.383169pt;}
.ws5f{word-spacing:-14.342107pt;}
.ws54{word-spacing:-13.878702pt;}
.ws52{word-spacing:-13.796579pt;}
.ws61{word-spacing:-13.241985pt;}
.ws50{word-spacing:-13.110270pt;}
.ws51{word-spacing:-13.075075pt;}
.ws4f{word-spacing:-12.916696pt;}
.ws53{word-spacing:-12.893232pt;}
.ws77{word-spacing:-10.665260pt;}
.ws7b{word-spacing:-10.571406pt;}
.ws78{word-spacing:-10.511680pt;}
.ws79{word-spacing:-10.409294pt;}
.ws7c{word-spacing:-10.405028pt;}
.ws7a{word-spacing:-10.358100pt;}
.ws76{word-spacing:-10.319705pt;}
.ws7e{word-spacing:-10.294109pt;}
.ws7d{word-spacing:-10.285577pt;}
.ws35{word-spacing:-0.276230pt;}
.ws2f{word-spacing:-0.201573pt;}
.ws19{word-spacing:-0.076790pt;}
.ws30{word-spacing:-0.048527pt;}
.ws17{word-spacing:-0.042661pt;}
.ws2e{word-spacing:-0.037328pt;}
.ws33{word-spacing:-0.003733pt;}
.ws2{word-spacing:0.000000pt;}
.ws31{word-spacing:0.041061pt;}
.ws32{word-spacing:0.074657pt;}
.ws18{word-spacing:0.093854pt;}
.ws2d{word-spacing:0.119451pt;}
.ws34{word-spacing:0.186642pt;}
.ws83{word-spacing:0.380198pt;}
.ws67{word-spacing:0.547128pt;}
.ws16{word-spacing:0.575924pt;}
.ws6c{word-spacing:1.437144pt;}
.ws89{word-spacing:9.694707pt;}
.ws66{word-spacing:23.317945pt;}
._d{margin-left:-2329.321119pt;}
._e{margin-left:-57.617310pt;}
._12{margin-left:-17.644429pt;}
._9{margin-left:-7.167054pt;}
._8{margin-left:-4.692714pt;}
._a{margin-left:-3.709100pt;}
._3{margin-left:-2.615771pt;}
._1{margin-left:-1.204631pt;}
._0{width:0.949581pt;}
._7{width:1.899055pt;}
._2{width:2.794172pt;}
._4{width:4.351425pt;}
._5{width:5.311424pt;}
._6{width:6.991617pt;}
._f{width:8.295412pt;}
._13{width:9.924217pt;}
._b{width:70.466584pt;}
._10{width:81.054073pt;}
._11{width:146.847267pt;}
._c{width:202.906368pt;}
.fs6{font-size:37.328406pt;}
.fs3{font-size:42.661040pt;}
.fs4{font-size:58.658926pt;}
.fs1{font-size:63.991547pt;}
.fs7{font-size:69.324180pt;}
.fs9{font-size:74.656813pt;}
.fs2{font-size:85.322066pt;}
.fs8{font-size:95.987333pt;}
.fs5{font-size:111.985219pt;}
.fsa{font-size:133.315765pt;}
.fs0{font-size:186.641968pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.741211pt;}
.y84{bottom:15.626724pt;}
.y91{bottom:17.546724pt;}
.y15{bottom:20.426724pt;}
.y43{bottom:22.026724pt;}
.y3{bottom:22.986724pt;}
.y1c{bottom:23.946724pt;}
.y1b{bottom:24.906724pt;}
.y93{bottom:30.026724pt;}
.y42{bottom:32.586724pt;}
.y87{bottom:33.226724pt;}
.y90{bottom:35.146724pt;}
.y7d{bottom:35.786724pt;}
.y7b{bottom:36.746724pt;}
.y1a{bottom:42.186724pt;}
.ya9{bottom:43.786724pt;}
.y41{bottom:44.746724pt;}
.y89{bottom:46.026724pt;}
.y73{bottom:46.346724pt;}
.y10{bottom:48.906724pt;}
.y7c{bottom:53.066724pt;}
.y40{bottom:55.306724pt;}
.ya8{bottom:55.626724pt;}
.y62{bottom:57.866724pt;}
.y92{bottom:63.306724pt;}
.y38{bottom:65.226724pt;}
.y3f{bottom:65.866724pt;}
.y6b{bottom:67.466724pt;}
.yba{bottom:70.346724pt;}
.yf{bottom:74.186724pt;}
.y3e{bottom:78.026724pt;}
.y86{bottom:83.786724pt;}
.yaa{bottom:86.346724pt;}
.y3d{bottom:88.586724pt;}
.y56{bottom:89.546724pt;}
.y37{bottom:90.506724pt;}
.y24{bottom:92.746724pt;}
.yb9{bottom:95.626724pt;}
.yd3{bottom:98.506724pt;}
.ya0{bottom:98.826724pt;}
.ye{bottom:99.466724pt;}
.y3c{bottom:100.426724pt;}
.y8f{bottom:101.066724pt;}
.y85{bottom:109.386724pt;}
.y3b{bottom:111.306724pt;}
.y6a{bottom:113.866724pt;}
.y55{bottom:114.826724pt;}
.yc7{bottom:116.426724pt;}
.y8e{bottom:118.666724pt;}
.y83{bottom:120.906724pt;}
.yb8{bottom:121.226724pt;}
.y3a{bottom:121.866724pt;}
.yd2{bottom:123.786724pt;}
.y14{bottom:124.426724pt;}
.yd{bottom:124.746724pt;}
.yb3{bottom:129.226724pt;}
.y39{bottom:134.026724pt;}
.yca{bottom:136.586724pt;}
.y72{bottom:139.466724pt;}
.y54{bottom:140.106724pt;}
.y65{bottom:141.066724pt;}
.yc6{bottom:141.706724pt;}
.y23{bottom:143.626724pt;}
.yb7{bottom:146.506724pt;}
.yd1{bottom:149.386724pt;}
.y13{bottom:149.706724pt;}
.yc{bottom:150.026724pt;}
.y7a{bottom:151.306724pt;}
.yb2{bottom:154.506724pt;}
.y69{bottom:160.586724pt;}
.yc9{bottom:161.866724pt;}
.y64{bottom:166.346724pt;}
.y49{bottom:166.986724pt;}
.yb6{bottom:171.786724pt;}
.y67{bottom:172.106724pt;}
.yd0{bottom:174.666724pt;}
.yb1{bottom:179.786724pt;}
.y5a{bottom:180.106724pt;}
.y79{bottom:180.746724pt;}
.y71{bottom:186.186724pt;}
.yc8{bottom:187.146724pt;}
.y53{bottom:189.386724pt;}
.y82{bottom:191.626724pt;}
.yc5{bottom:192.266724pt;}
.y22{bottom:194.186724pt;}
.yb5{bottom:197.066724pt;}
.y66{bottom:197.386724pt;}
.ycf{bottom:199.946724pt;}
.y68{bottom:207.306724pt;}
.y48{bottom:211.146724pt;}
.y52{bottom:214.986724pt;}
.y2d{bottom:221.706724pt;}
.yb4{bottom:222.346724pt;}
.yb{bottom:224.906724pt;}
.y9f{bottom:227.786724pt;}
.y70{bottom:232.906724pt;}
.y28{bottom:244.106724pt;}
.y21{bottom:244.746724pt;}
.y5c{bottom:245.706724pt;}
.ya{bottom:250.186724pt;}
.y59{bottom:252.746724pt;}
.y47{bottom:254.986724pt;}
.y63{bottom:255.626724pt;}
.y81{bottom:260.746724pt;}
.yc0{bottom:261.706724pt;}
.y5b{bottom:262.986724pt;}
.y51{bottom:265.546724pt;}
.y78{bottom:268.746724pt;}
.ybe{bottom:269.706724pt;}
.y2c{bottom:272.266724pt;}
.y9{bottom:275.466724pt;}
.y12{bottom:276.426724pt;}
.y6f{bottom:279.626724pt;}
.y9d{bottom:279.946724pt;}
.y9e{bottom:286.986724pt;}
.ya3{bottom:292.106724pt;}
.y27{bottom:293.386724pt;}
.y20{bottom:294.026724pt;}
.ybd{bottom:294.986724pt;}
.ycb{bottom:295.306724pt;}
.y2b{bottom:296.266724pt;}
.y77{bottom:299.466724pt;}
.y46{bottom:300.426724pt;}
.y61{bottom:311.946724pt;}
.y50{bottom:316.106724pt;}
.ya2{bottom:317.706724pt;}
.y26{bottom:318.666724pt;}
.ybc{bottom:320.586724pt;}
.y9c{bottom:322.506724pt;}
.y6e{bottom:326.026724pt;}
.y60{bottom:330.506724pt;}
.y80{bottom:331.466724pt;}
.ya1{bottom:342.986724pt;}
.y45{bottom:344.266724pt;}
.y1f{bottom:344.906724pt;}
.ybb{bottom:345.866724pt;}
.y2a{bottom:347.146724pt;}
.y5f{bottom:349.066724pt;}
.y19{bottom:349.706724pt;}
.y8{bottom:351.306724pt;}
.y4f{bottom:366.986724pt;}
.y5e{bottom:367.946724pt;}
.y25{bottom:369.546724pt;}
.y1e{bottom:370.186724pt;}
.y29{bottom:372.426724pt;}
.y96{bottom:374.346724pt;}
.y7{bottom:376.906724pt;}
.y18{bottom:384.586724pt;}
.y98{bottom:385.226724pt;}
.y9a{bottom:385.546724pt;}
.y8d{bottom:386.506724pt;}
.y76{bottom:387.466724pt;}
.y44{bottom:388.426724pt;}
.y4e{bottom:392.266724pt;}
.y95{bottom:395.466724pt;}
.y5d{bottom:398.346724pt;}
.y58{bottom:400.586724pt;}
.y7f{bottom:400.906724pt;}
.y11{bottom:401.546724pt;}
.y6{bottom:402.186724pt;}
.y99{bottom:405.706724pt;}
.y97{bottom:406.346724pt;}
.y75{bottom:412.746724pt;}
.ya7{bottom:413.706724pt;}
.yb0{bottom:414.026724pt;}
.y94{bottom:416.906724pt;}
.y17{bottom:419.146724pt;}
.y6d{bottom:419.466724pt;}
.y8c{bottom:421.066724pt;}
.yc2{bottom:425.226724pt;}
.y4b{bottom:431.626724pt;}
.y33{bottom:432.266724pt;}
.y30{bottom:434.506724pt;}
.y36{bottom:435.466724pt;}
.y74{bottom:438.026724pt;}
.ya6{bottom:438.986724pt;}
.yaf{bottom:439.306724pt;}
.y4d{bottom:441.546724pt;}
.yac{bottom:450.826724pt;}
.y5{bottom:451.466724pt;}
.y8b{bottom:455.946724pt;}
.yce{bottom:463.306724pt;}
.ya5{bottom:464.266724pt;}
.yae{bottom:464.586724pt;}
.yc4{bottom:464.906724pt;}
.y32{bottom:465.546724pt;}
.y6c{bottom:466.186724pt;}
.y2{bottom:467.466724pt;}
.y2f{bottom:467.786724pt;}
.y35{bottom:468.746724pt;}
.y57{bottom:471.306724pt;}
.y7e{bottom:471.626724pt;}
.yab{bottom:476.106724pt;}
.y9b{bottom:477.386724pt;}
.y4a{bottom:482.186724pt;}
.ycd{bottom:488.586724pt;}
.ya4{bottom:489.546724pt;}
.y16{bottom:489.866724pt;}
.yc3{bottom:490.186724pt;}
.y8a{bottom:490.506724pt;}
.y4c{bottom:492.106724pt;}
.y31{bottom:500.426684pt;}
.yc1{bottom:501.386684pt;}
.y2e{bottom:502.346684pt;}
.y34{bottom:503.306684pt;}
.ycc{bottom:513.866684pt;}
.y88{bottom:514.186684pt;}
.yad{bottom:515.466684pt;}
.y1d{bottom:572.746684pt;}
.y4{bottom:575.306684pt;}
.ybf{bottom:575.946684pt;}
.ha{height:28.668216pt;}
.h11{height:32.251746pt;}
.h7{height:33.531577pt;}
.he{height:45.050055pt;}
.hb{height:46.105916pt;}
.h8{height:47.572389pt;}
.h4{height:51.385212pt;}
.hc{height:51.577187pt;}
.h10{height:53.603592pt;}
.hf{height:54.352201pt;}
.h12{height:62.116797pt;}
.h5{height:65.527347pt;}
.h6{height:66.124602pt;}
.hd{height:72.566424pt;}
.h9{height:81.413255pt;}
.h13{height:109.900706pt;}
.h14{height:111.180706pt;}
.h3{height:133.635649pt;}
.h2{height:630.666656pt;}
.h1{height:631.333333pt;}
.h0{height:631.407867pt;}
.w2{width:1121.333333pt;}
.w0{width:1122.519733pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x28{left:34.178867pt;}
.xe{left:37.404453pt;}
.xf{left:39.230947pt;}
.x2{left:46.676880pt;}
.x48{left:49.136147pt;}
.xb{left:50.484840pt;}
.x3{left:54.859613pt;}
.x46{left:57.944667pt;}
.x4{left:64.587040pt;}
.x2f{left:66.766560pt;}
.x2b{left:70.336533pt;}
.x42{left:84.353293pt;}
.x6f{left:86.757467pt;}
.x6d{left:88.512453pt;}
.x5{left:90.868293pt;}
.x3f{left:93.972280pt;}
.x6c{left:100.777027pt;}
.x62{left:103.113147pt;}
.x2d{left:104.792613pt;}
.x12{left:108.890733pt;}
.x5d{left:111.873560pt;}
.x70{left:113.044560pt;}
.x63{left:115.961760pt;}
.x43{left:117.467667pt;}
.x30{left:118.365427pt;}
.x58{left:119.452640pt;}
.x20{left:120.357827pt;}
.x75{left:121.802040pt;}
.x26{left:123.876160pt;}
.x31{left:125.525600pt;}
.x76{left:128.810373pt;}
.x15{left:129.909893pt;}
.x16{left:133.285587pt;}
.x29{left:135.004133pt;}
.x13{left:137.140133pt;}
.x14{left:141.123200pt;}
.x10{left:146.747467pt;}
.x11{left:158.521467pt;}
.x6b{left:161.553733pt;}
.x1{left:163.733067pt;}
.x1f{left:170.607600pt;}
.x4e{left:177.955067pt;}
.x4d{left:181.027067pt;}
.x27{left:184.656000pt;}
.x4c{left:189.209200pt;}
.x2e{left:202.932667pt;}
.xa{left:322.879733pt;}
.x2c{left:325.198267pt;}
.x50{left:328.828000pt;}
.x4f{left:336.770800pt;}
.x51{left:342.844667pt;}
.x22{left:460.070800pt;}
.x40{left:465.713867pt;}
.x74{left:477.233200pt;}
.x19{left:483.794000pt;}
.x1a{left:487.882267pt;}
.x6{left:489.473600pt;}
.x59{left:490.662667pt;}
.x23{left:492.332533pt;}
.x52{left:493.412267pt;}
.x17{left:504.602933pt;}
.x21{left:510.367333pt;}
.x7{left:520.865067pt;}
.x18{left:523.507867pt;}
.x41{left:527.433867pt;}
.x8{left:530.215333pt;}
.x7c{left:543.812267pt;}
.x57{left:563.740000pt;}
.x5b{left:569.076667pt;}
.x9{left:610.659467pt;}
.x5a{left:632.027867pt;}
.x2a{left:645.088933pt;}
.xc{left:654.613600pt;}
.x37{left:658.535733pt;}
.xd{left:662.059867pt;}
.x38{left:666.326667pt;}
.x4a{left:668.381733pt;}
.x53{left:669.954533pt;}
.x36{left:671.618000pt;}
.x7d{left:679.389733pt;}
.x54{left:692.042533pt;}
.x44{left:737.714800pt;}
.x45{left:740.274667pt;}
.x3c{left:746.704267pt;}
.x49{left:771.643733pt;}
.x3a{left:778.660400pt;}
.x39{left:781.650667pt;}
.x35{left:788.835333pt;}
.x47{left:791.686133pt;}
.x32{left:793.294400pt;}
.x3b{left:795.521333pt;}
.x1b{left:804.965467pt;}
.x1e{left:813.165200pt;}
.x4b{left:817.051867pt;}
.x3e{left:822.687200pt;}
.x5c{left:834.872933pt;}
.x55{left:841.230400pt;}
.x56{left:846.048533pt;}
.x1c{left:849.374933pt;}
.x24{left:852.517067pt;}
.x3d{left:856.659200pt;}
.x25{left:857.749867pt;}
.x1d{left:859.712267pt;}
.x77{left:860.924133pt;}
.x60{left:864.816800pt;}
.x64{left:866.478400pt;}
.x68{left:869.982533pt;}
.x6e{left:873.431200pt;}
.x67{left:878.743067pt;}
.x69{left:880.495067pt;}
.x66{left:882.825333pt;}
.x78{left:884.086800pt;}
.x7a{left:885.837733pt;}
.x71{left:889.341867pt;}
.x61{left:891.098000pt;}
.x5e{left:895.186267pt;}
.x5f{left:896.354267pt;}
.x7b{left:898.686267pt;}
.x72{left:902.190400pt;}
.x79{left:903.936667pt;}
.x6a{left:910.280533pt;}
.x73{left:911.534933pt;}
.x33{left:918.083467pt;}
.x34{left:923.106133pt;}
.x65{left:925.465200pt;}
}




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