
    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_b6e1f5ff041fd9b362305842.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9e1cada6dc4b1c971132998e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.766000;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_fdb63a409841ba247d38afff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.911000;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_70432555c6b4b5e997da209f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_462acf224d60da3ef264124f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_84f6fe62df82528990062bda.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_6ec5d81bd3b0c9c272047e09.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cd7577cde029b50a61c2ae40.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_b50384f1fa085e2602245a94.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894000;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_373b3e6be6064577926ae34b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_5f5e0bfd7c630c2f2c32e0b9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.811000;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_e2adedf4cef026c18f47d0d9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.372070;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_2a3638ac3b9eeea80fe8d54a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861000;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_8957726b25fc3088bc091028.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.904000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-20.044200px;}
.vb{vertical-align:-11.049869px;}
.v1{vertical-align:-5.875200px;}
.v2{vertical-align:-2.747520px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.378253px;}
.v8{vertical-align:5.875200px;}
.vc{vertical-align:13.855795px;}
.v9{vertical-align:17.262720px;}
.v3{vertical-align:20.037418px;}
.va{vertical-align:26.245901px;}
.v5{vertical-align:32.136653px;}
.v6{vertical-align:46.306253px;}
.ls70{letter-spacing:-1.298592px;}
.lsae{letter-spacing:-1.121541px;}
.ls96{letter-spacing:-0.652182px;}
.ls98{letter-spacing:-0.640639px;}
.ls9b{letter-spacing:-0.629096px;}
.ls97{letter-spacing:-0.623324px;}
.ls99{letter-spacing:-0.617553px;}
.ls9a{letter-spacing:-0.611781px;}
.ls10{letter-spacing:-0.537926px;}
.ls12{letter-spacing:-0.528146px;}
.ls11{letter-spacing:-0.518365px;}
.ls21{letter-spacing:-0.476928px;}
.ls13{letter-spacing:-0.469463px;}
.ls4b{letter-spacing:-0.386692px;}
.ls85{letter-spacing:-0.352063px;}
.ls22{letter-spacing:-0.347328px;}
.ls8d{letter-spacing:-0.346291px;}
.ls8b{letter-spacing:-0.334748px;}
.ls17{letter-spacing:-0.331776px;}
.ls87{letter-spacing:-0.323205px;}
.ls89{letter-spacing:-0.317434px;}
.ls1a{letter-spacing:-0.316224px;}
.ls84{letter-spacing:-0.311662px;}
.ls18{letter-spacing:-0.311040px;}
.ls1e{letter-spacing:-0.305856px;}
.ls8c{letter-spacing:-0.300119px;}
.ls1f{letter-spacing:-0.295488px;}
.ls88{letter-spacing:-0.294348px;}
.ls1c{letter-spacing:-0.290304px;}
.ls8a{letter-spacing:-0.282804px;}
.ls20{letter-spacing:-0.279936px;}
.ls1d{letter-spacing:-0.274752px;}
.ls23{letter-spacing:-0.269568px;}
.ls86{letter-spacing:-0.265490px;}
.ls58{letter-spacing:-0.242404px;}
.lsc{letter-spacing:-0.240000px;}
.ls6a{letter-spacing:-0.220873px;}
.ls82{letter-spacing:-0.196232px;}
.ls40{letter-spacing:-0.178917px;}
.lsac{letter-spacing:-0.173146px;}
.ls19{letter-spacing:-0.171072px;}
.ls57{letter-spacing:-0.161603px;}
.ls27{letter-spacing:-0.155831px;}
.ls4f{letter-spacing:-0.150060px;}
.ls4d{letter-spacing:-0.138516px;}
.ls71{letter-spacing:-0.137894px;}
.ls48{letter-spacing:-0.132745px;}
.ls3c{letter-spacing:-0.126973px;}
.ls43{letter-spacing:-0.121202px;}
.ls45{letter-spacing:-0.115430px;}
.ls95{letter-spacing:-0.109659px;}
.ls47{letter-spacing:-0.103887px;}
.ls9d{letter-spacing:-0.101123px;}
.ls42{letter-spacing:-0.092344px;}
.lsa0{letter-spacing:-0.091930px;}
.ls6e{letter-spacing:-0.087333px;}
.ls59{letter-spacing:-0.086573px;}
.ls41{letter-spacing:-0.075030px;}
.ls15{letter-spacing:-0.074995px;}
.ls3a{letter-spacing:-0.069258px;}
.ls75{letter-spacing:-0.064351px;}
.ls7d{letter-spacing:-0.063487px;}
.lsa1{letter-spacing:-0.059754px;}
.ls4e{letter-spacing:-0.057715px;}
.ls38{letter-spacing:-0.051944px;}
.ls26{letter-spacing:-0.046172px;}
.ls9f{letter-spacing:-0.045965px;}
.ls14{letter-spacing:-0.044997px;}
.ls80{letter-spacing:-0.041368px;}
.ls3b{letter-spacing:-0.040401px;}
.ls74{letter-spacing:-0.036910px;}
.ls39{letter-spacing:-0.034629px;}
.ls72{letter-spacing:-0.032175px;}
.ls28{letter-spacing:-0.028858px;}
.ls44{letter-spacing:-0.023086px;}
.ls69{letter-spacing:-0.022982px;}
.ls16{letter-spacing:-0.020736px;}
.ls9e{letter-spacing:-0.018386px;}
.ls49{letter-spacing:-0.017315px;}
.lse{letter-spacing:-0.013824px;}
.ls6b{letter-spacing:-0.013789px;}
.ls3f{letter-spacing:-0.011543px;}
.lsf{letter-spacing:-0.006912px;}
.ls3e{letter-spacing:-0.005772px;}
.ls24{letter-spacing:-0.005184px;}
.ls73{letter-spacing:-0.004596px;}
.lsd{letter-spacing:0.000000px;}
.ls63{letter-spacing:0.000600px;}
.ls33{letter-spacing:0.003967px;}
.ls65{letter-spacing:0.004596px;}
.ls31{letter-spacing:0.005772px;}
.ls7a{letter-spacing:0.009193px;}
.ls46{letter-spacing:0.011197px;}
.ls29{letter-spacing:0.011543px;}
.ls92{letter-spacing:0.013789px;}
.ls2a{letter-spacing:0.017315px;}
.ls5c{letter-spacing:0.018386px;}
.ls0{letter-spacing:0.020736px;}
.ls77{letter-spacing:0.022982px;}
.ls2b{letter-spacing:0.023086px;}
.ls76{letter-spacing:0.027579px;}
.ls30{letter-spacing:0.028858px;}
.ls8e{letter-spacing:0.032175px;}
.ls2f{letter-spacing:0.034629px;}
.ls5e{letter-spacing:0.036772px;}
.ls36{letter-spacing:0.040401px;}
.ls62{letter-spacing:0.041368px;}
.ls4{letter-spacing:0.041472px;}
.ls5a{letter-spacing:0.045965px;}
.ls2c{letter-spacing:0.046172px;}
.ls3{letter-spacing:0.046656px;}
.lsb{letter-spacing:0.050561px;}
.ls2e{letter-spacing:0.051944px;}
.ls1{letter-spacing:0.055158px;}
.ls2d{letter-spacing:0.057715px;}
.lsa{letter-spacing:0.059754px;}
.ls51{letter-spacing:0.063487px;}
.ls53{letter-spacing:0.064351px;}
.ls2{letter-spacing:0.068947px;}
.ls81{letter-spacing:0.073544px;}
.ls5f{letter-spacing:0.075030px;}
.lsa5{letter-spacing:0.078140px;}
.ls6{letter-spacing:0.080801px;}
.lsab{letter-spacing:0.082737px;}
.ls3d{letter-spacing:0.086573px;}
.ls5{letter-spacing:0.087333px;}
.ls7{letter-spacing:0.091930px;}
.ls52{letter-spacing:0.092344px;}
.ls7e{letter-spacing:0.096526px;}
.ls7f{letter-spacing:0.101123px;}
.ls8{letter-spacing:0.105719px;}
.ls6f{letter-spacing:0.110316px;}
.lsa6{letter-spacing:0.119508px;}
.lsa2{letter-spacing:0.121202px;}
.ls93{letter-spacing:0.128701px;}
.ls4a{letter-spacing:0.132745px;}
.ls79{letter-spacing:0.133298px;}
.ls90{letter-spacing:0.137894px;}
.ls67{letter-spacing:0.138516px;}
.ls54{letter-spacing:0.142491px;}
.ls9c{letter-spacing:0.150060px;}
.ls7b{letter-spacing:0.151684px;}
.lsa7{letter-spacing:0.156280px;}
.ls61{letter-spacing:0.160877px;}
.ls8f{letter-spacing:0.165473px;}
.ls78{letter-spacing:0.172200px;}
.ls5d{letter-spacing:0.172800px;}
.ls25{letter-spacing:0.173146px;}
.ls9{letter-spacing:0.174666px;}
.ls94{letter-spacing:0.179263px;}
.ls60{letter-spacing:0.183859px;}
.lsaa{letter-spacing:0.188456px;}
.lsa8{letter-spacing:0.193052px;}
.ls6c{letter-spacing:0.197649px;}
.ls50{letter-spacing:0.198720px;}
.ls64{letter-spacing:0.202245px;}
.lsa3{letter-spacing:0.211438px;}
.lsaf{letter-spacing:0.225228px;}
.ls6d{letter-spacing:0.257403px;}
.ls1b{letter-spacing:0.347328px;}
.ls4c{letter-spacing:0.358318px;}
.lsad{letter-spacing:0.519402px;}
.ls55{letter-spacing:4.236296px;}
.ls5b{letter-spacing:5.615689px;}
.ls68{letter-spacing:5.961980px;}
.lsa9{letter-spacing:8.319629px;}
.ls83{letter-spacing:9.419121px;}
.ls7c{letter-spacing:10.670491px;}
.ls66{letter-spacing:10.671091px;}
.ls91{letter-spacing:11.923200px;}
.ls56{letter-spacing:18.405377px;}
.lsa4{letter-spacing:31.439923px;}
.ls37{letter-spacing:60.312384px;}
.ls32{letter-spacing:113.633280px;}
.ls34{letter-spacing:240.169882px;}
.ls35{letter-spacing:2140.021901px;}
.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;}
}
.ws6{word-spacing:-97.276654px;}
.ws4{word-spacing:-97.266874px;}
.ws5f{word-spacing:-76.120577px;}
.ws8{word-spacing:-74.950203px;}
.ws3{word-spacing:-69.140736px;}
.ws9c{word-spacing:-67.134321px;}
.ws78{word-spacing:-63.677180px;}
.ws72{word-spacing:-63.330889px;}
.ws5{word-spacing:-63.244800px;}
.ws5d{word-spacing:-61.951496px;}
.ws1a{word-spacing:-57.888346px;}
.wsae{word-spacing:-57.865260px;}
.ws77{word-spacing:-57.853716px;}
.ws51{word-spacing:-57.847945px;}
.wsc0{word-spacing:-57.836402px;}
.ws63{word-spacing:-57.807544px;}
.ws34{word-spacing:-57.801773px;}
.ws1c{word-spacing:-57.796001px;}
.ws79{word-spacing:-57.790230px;}
.ws62{word-spacing:-57.778687px;}
.ws3a{word-spacing:-57.772915px;}
.ws40{word-spacing:-57.767144px;}
.ws35{word-spacing:-57.761372px;}
.ws4b{word-spacing:-57.755601px;}
.ws41{word-spacing:-57.749829px;}
.ws47{word-spacing:-57.744058px;}
.ws37{word-spacing:-57.738286px;}
.ws2e{word-spacing:-57.732515px;}
.ws2b{word-spacing:-57.726743px;}
.ws4c{word-spacing:-57.720972px;}
.ws1b{word-spacing:-57.715200px;}
.ws36{word-spacing:-57.709428px;}
.ws38{word-spacing:-57.703657px;}
.ws4d{word-spacing:-57.697885px;}
.ws6a{word-spacing:-57.692114px;}
.ws1f{word-spacing:-57.686342px;}
.ws2d{word-spacing:-57.680571px;}
.ws30{word-spacing:-57.674799px;}
.ws1d{word-spacing:-57.669028px;}
.ws2c{word-spacing:-57.663256px;}
.ws58{word-spacing:-57.657485px;}
.ws90{word-spacing:-57.651713px;}
.ws2f{word-spacing:-57.645942px;}
.ws43{word-spacing:-57.640170px;}
.ws6b{word-spacing:-57.628627px;}
.wsbd{word-spacing:-57.622856px;}
.wsa7{word-spacing:-57.605541px;}
.ws49{word-spacing:-57.599770px;}
.ws42{word-spacing:-57.593998px;}
.ws33{word-spacing:-57.588227px;}
.ws61{word-spacing:-57.582455px;}
.ws56{word-spacing:-57.576684px;}
.ws8f{word-spacing:-57.565140px;}
.ws1e{word-spacing:-57.559369px;}
.ws73{word-spacing:-57.553597px;}
.ws39{word-spacing:-57.536283px;}
.ws99{word-spacing:-57.518968px;}
.ws9f{word-spacing:-57.449710px;}
.wsa3{word-spacing:-57.432396px;}
.wsa1{word-spacing:-57.420852px;}
.wsa5{word-spacing:-57.415081px;}
.ws9d{word-spacing:-57.403538px;}
.wsa2{word-spacing:-57.397766px;}
.wsa0{word-spacing:-57.391995px;}
.wsa4{word-spacing:-57.380452px;}
.wsa6{word-spacing:-57.368909px;}
.ws9e{word-spacing:-57.363137px;}
.ws52{word-spacing:-57.328508px;}
.wsac{word-spacing:-57.103419px;}
.wsab{word-spacing:-57.097647px;}
.wsa9{word-spacing:-57.091876px;}
.wsad{word-spacing:-57.086104px;}
.wsaa{word-spacing:-57.074561px;}
.wsa8{word-spacing:-57.063018px;}
.ws85{word-spacing:-56.416608px;}
.ws16{word-spacing:-51.886656px;}
.ws17{word-spacing:-51.881472px;}
.ws15{word-spacing:-51.570432px;}
.ws10{word-spacing:-51.565248px;}
.ws11{word-spacing:-51.560064px;}
.wsc{word-spacing:-51.549696px;}
.wse{word-spacing:-51.544512px;}
.wsd{word-spacing:-51.534144px;}
.wsa{word-spacing:-51.528960px;}
.wsb{word-spacing:-51.523776px;}
.ws9{word-spacing:-51.508224px;}
.ws14{word-spacing:-51.492672px;}
.ws12{word-spacing:-51.363072px;}
.ws3b{word-spacing:-49.704330px;}
.ws3c{word-spacing:-49.531185px;}
.ws3d{word-spacing:-49.496556px;}
.ws6f{word-spacing:-49.104092px;}
.ws6e{word-spacing:-48.930947px;}
.ws9a{word-spacing:-48.307622px;}
.ws9b{word-spacing:-48.284536px;}
.ws3e{word-spacing:-47.020573px;}
.ws3f{word-spacing:-46.905143px;}
.wsbf{word-spacing:-46.651196px;}
.wsc5{word-spacing:-46.484202px;}
.wsbe{word-spacing:-46.224104px;}
.wsc1{word-spacing:-46.176238px;}
.ws86{word-spacing:-46.167045px;}
.ws7e{word-spacing:-46.162449px;}
.wsca{word-spacing:-46.157852px;}
.wscf{word-spacing:-46.153256px;}
.ws7d{word-spacing:-46.148659px;}
.wsbb{word-spacing:-46.144063px;}
.ws23{word-spacing:-46.139466px;}
.wsc9{word-spacing:-46.125677px;}
.wsc8{word-spacing:-46.121080px;}
.wsc6{word-spacing:-46.116484px;}
.ws93{word-spacing:-46.107291px;}
.wsb5{word-spacing:-46.102694px;}
.ws96{word-spacing:-46.098098px;}
.wsb8{word-spacing:-46.093501px;}
.wsc4{word-spacing:-46.084308px;}
.ws95{word-spacing:-46.075116px;}
.ws21{word-spacing:-46.070519px;}
.ws94{word-spacing:-46.065923px;}
.wsc2{word-spacing:-46.061326px;}
.ws20{word-spacing:-46.056730px;}
.ws22{word-spacing:-46.052133px;}
.wsd0{word-spacing:-46.047537px;}
.wsc3{word-spacing:-46.042940px;}
.wsb0{word-spacing:-46.038344px;}
.ws65{word-spacing:-46.033747px;}
.ws66{word-spacing:-46.029151px;}
.ws80{word-spacing:-46.024554px;}
.ws19{word-spacing:-46.019958px;}
.ws24{word-spacing:-46.015361px;}
.wsce{word-spacing:-46.010765px;}
.ws83{word-spacing:-46.006168px;}
.ws76{word-spacing:-46.001572px;}
.wsaf{word-spacing:-45.996975px;}
.ws91{word-spacing:-45.992379px;}
.ws92{word-spacing:-45.987782px;}
.ws75{word-spacing:-45.983186px;}
.wsb7{word-spacing:-45.978589px;}
.ws97{word-spacing:-45.973993px;}
.ws87{word-spacing:-45.969396px;}
.ws8a{word-spacing:-45.964800px;}
.ws8c{word-spacing:-45.960204px;}
.ws7c{word-spacing:-45.951011px;}
.wsb6{word-spacing:-45.946414px;}
.ws7a{word-spacing:-45.941818px;}
.ws89{word-spacing:-45.932625px;}
.wsb9{word-spacing:-45.918835px;}
.wsbc{word-spacing:-45.905046px;}
.ws8d{word-spacing:-45.900449px;}
.wsba{word-spacing:-45.872870px;}
.wsb1{word-spacing:-45.863677px;}
.ws71{word-spacing:-45.854726px;}
.ws70{word-spacing:-45.843183px;}
.ws88{word-spacing:-45.826906px;}
.wsc7{word-spacing:-44.843259px;}
.ws32{word-spacing:-40.741160px;}
.ws31{word-spacing:-40.694988px;}
.ws5e{word-spacing:-39.286737px;}
.ws60{word-spacing:-38.986618px;}
.wscc{word-spacing:-38.651800px;}
.wscd{word-spacing:-38.624221px;}
.wscb{word-spacing:-38.605836px;}
.ws54{word-spacing:-37.683118px;}
.ws4a{word-spacing:-37.335997px;}
.ws44{word-spacing:-37.324800px;}
.wsf{word-spacing:-34.560000px;}
.ws50{word-spacing:-31.116442px;}
.ws7b{word-spacing:-28.463927px;}
.ws7{word-spacing:-23.981737px;}
.ws25{word-spacing:-15.012000px;}
.ws84{word-spacing:-14.601946px;}
.ws6d{word-spacing:-14.492287px;}
.ws6c{word-spacing:-14.457658px;}
.ws48{word-spacing:-14.405714px;}
.ws46{word-spacing:-14.394171px;}
.ws45{word-spacing:-14.272969px;}
.wsb4{word-spacing:-14.267197px;}
.ws69{word-spacing:-14.186396px;}
.ws4e{word-spacing:-14.169600px;}
.ws13{word-spacing:-12.669696px;}
.ws0{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.760000px;}
.ws18{word-spacing:-11.578533px;}
.ws98{word-spacing:-5.226198px;}
.ws27{word-spacing:-0.864000px;}
.ws74{word-spacing:-0.294348px;}
.ws29{word-spacing:-0.156280px;}
.ws2a{word-spacing:-0.147087px;}
.ws28{word-spacing:-0.142491px;}
.ws5b{word-spacing:-0.126973px;}
.ws5c{word-spacing:-0.109659px;}
.ws2{word-spacing:-0.099000px;}
.ws26{word-spacing:0.000000px;}
.ws8e{word-spacing:0.086573px;}
.ws5a{word-spacing:0.109659px;}
.ws64{word-spacing:24.342958px;}
.ws4f{word-spacing:29.909764px;}
.ws55{word-spacing:41.641517px;}
.ws57{word-spacing:65.091203px;}
.wsb3{word-spacing:66.658153px;}
.ws67{word-spacing:81.817344px;}
.ws53{word-spacing:98.998883px;}
.ws59{word-spacing:101.959672px;}
.ws82{word-spacing:118.474272px;}
.ws81{word-spacing:118.478868px;}
.ws7f{word-spacing:122.082509px;}
.wsb2{word-spacing:158.210842px;}
.ws68{word-spacing:173.811295px;}
.ws8b{word-spacing:253.468293px;}
._d{margin-left:-200.794568px;}
._e{margin-left:-57.840307px;}
._11{margin-left:-18.689107px;}
._12{margin-left:-17.275304px;}
._c{margin-left:-12.000000px;}
._21{margin-left:-9.496397px;}
._2{margin-left:-6.192000px;}
._10{margin-left:-5.101336px;}
._0{margin-left:-3.504000px;}
._3{margin-left:-2.409000px;}
._1{margin-left:-1.200000px;}
._9{width:1.275264px;}
._8{width:2.485632px;}
._6{width:3.613248px;}
._a{width:5.194603px;}
._7{width:6.365952px;}
._15{width:7.698732px;}
._4{width:11.136000px;}
._5{width:12.864000px;}
._14{width:110.016749px;}
._1b{width:179.235141px;}
._2b{width:181.372504px;}
._16{width:190.275886px;}
._1f{width:193.079739px;}
._26{width:217.822591px;}
._13{width:219.647393px;}
._25{width:222.455843px;}
._22{width:240.754429px;}
._2a{width:258.731263px;}
._27{width:261.461572px;}
._24{width:309.090298px;}
._29{width:310.813978px;}
._1d{width:313.594848px;}
._23{width:329.480283px;}
._17{width:332.224381px;}
._1c{width:333.957254px;}
._28{width:343.274319px;}
._20{width:352.338578px;}
._1e{width:396.161418px;}
._1a{width:415.871124px;}
._18{width:439.009805px;}
._19{width:464.612198px;}
._f{width:777.618000px;}
._b{width:874.032000px;}
.fc4{color:transparent;}
.fc3{color:rgb(31,39,96);}
.fc1{color:rgb(53,50,148);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsf{font-size:28.684800px;}
.fs10{font-size:30.758400px;}
.fs8{font-size:34.560000px;}
.fsb{font-size:37.324800px;}
.fse{font-size:39.673800px;}
.fs6{font-size:45.964800px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:51.840000px;}
.fsa{font-size:54.000000px;}
.fsd{font-size:56.678400px;}
.fs9{font-size:57.715200px;}
.fsc{font-size:59.901682px;}
.fs4{font-size:63.244800px;}
.fs2{font-size:69.120000px;}
.fs5{font-size:74.995200px;}
.fs3{font-size:97.804800px;}
.fs1{font-size:99.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:14.999550px;}
.y3{bottom:29.999550px;}
.y2{bottom:44.999550px;}
.y1{bottom:59.999550px;}
.y71{bottom:145.935148px;}
.y51{bottom:148.982098px;}
.y70{bottom:163.218172px;}
.y8f{bottom:163.923298px;}
.y50{bottom:166.256245px;}
.y10b{bottom:175.267490px;}
.y6f{bottom:180.503874px;}
.y8e{bottom:181.206322px;}
.y4f{bottom:183.541948px;}
.y10a{bottom:192.553193px;}
.y8d{bottom:198.492024px;}
.y4e{bottom:200.833998px;}
.y109{bottom:209.838895px;}
.y6e{bottom:215.060850px;}
.ydc{bottom:225.617250px;}
.y108{bottom:227.124598px;}
.y8c{bottom:233.049000px;}
.y4d{bottom:235.390974px;}
.ydb{bottom:242.387490px;}
.y107{bottom:244.407622px;}
.y6d{bottom:249.016050px;}
.yda{bottom:255.602370px;}
.y20{bottom:257.974382px;}
.y15e{bottom:260.077950px;}
.y106{bottom:261.693324px;}
.y8b{bottom:267.090450px;}
.yd9{bottom:268.817250px;}
.y4c{bottom:269.936245px;}
.y1f{bottom:272.315400px;}
.y6c{bottom:274.936200px;}
.y15d{bottom:276.836753px;}
.yd8{bottom:282.122700px;}
.y1e{bottom:287.176350px;}
.y4b{bottom:287.221948px;}
.y15c{bottom:291.266185px;}
.y8a{bottom:292.989127px;}
.yd5{bottom:296.032040px;}
.y105{bottom:296.250300px;}
.yab{bottom:298.799400px;}
.yd2{bottom:302.685900px;}
.yd0{bottom:302.687519px;}
.y4a{bottom:304.488728px;}
.y15b{bottom:305.607203px;}
.yd7{bottom:309.338850px;}
.yd4{bottom:309.339305px;}
.yd1{bottom:315.900780px;}
.ycf{bottom:315.902399px;}
.y1d{bottom:317.761800px;}
.ya8{bottom:319.796783px;}
.y15a{bottom:320.036785px;}
.y49{bottom:321.774431px;}
.yd6{bottom:322.553730px;}
.yd3{bottom:322.554185px;}
.y104{bottom:330.896700px;}
.y159{bottom:334.469732px;}
.ya3{bottom:334.735343px;}
.y48{bottom:339.060133px;}
.yce{bottom:342.343650px;}
.y103{bottom:344.115900px;}
.y158{bottom:348.810556px;}
.yaa{bottom:350.120850px;}
.y1c{bottom:352.578322px;}
.yfd{bottom:358.117020px;}
.y100{bottom:358.128511px;}
.ya2{bottom:359.797650px;}
.y9f{bottom:361.784850px;}
.y157{bottom:363.243503px;}
.yf8{bottom:364.673657px;}
.yfa{bottom:364.679100px;}
.y102{bottom:364.689986px;}
.y45{bottom:367.407000px;}
.ya4{bottom:367.657631px;}
.ya9{bottom:369.301650px;}
.y1b{bottom:369.864024px;}
.yfc{bottom:371.332505px;}
.yff{bottom:371.343391px;}
.ycd{bottom:371.702393px;}
.y156{bottom:377.673085px;}
.yf7{bottom:377.980466px;}
.yf9{bottom:377.985910px;}
.y101{bottom:377.996796px;}
.y47{bottom:378.553487px;}
.yfb{bottom:384.547385px;}
.yfe{bottom:384.558271px;}
.ycc{bottom:388.988095px;}
.y46{bottom:390.130050px;}
.y155{bottom:392.014103px;}
.ya0{bottom:398.936850px;}
.ya5{bottom:400.487989px;}
.y1a{bottom:404.421000px;}
.yf6{bottom:404.421718px;}
.ycb{bottom:406.273798px;}
.y154{bottom:406.443535px;}
.y44{bottom:416.044843px;}
.y153{bottom:420.876482px;}
.yca{bottom:423.553948px;}
.y43{bottom:433.330546px;}
.ya6{bottom:433.410277px;}
.y152{bottom:435.208306px;}
.yf5{bottom:436.045500px;}
.yc9{bottom:440.828095px;}
.ya1{bottom:446.716050px;}
.y151{bottom:449.641253px;}
.y19{bottom:453.496200px;}
.yc8{bottom:458.113798px;}
.yf4{bottom:461.956514px;}
.y150{bottom:464.070835px;}
.ya7{bottom:466.240636px;}
.y42{bottom:467.887522px;}
.y25{bottom:468.992550px;}
.y129{bottom:470.000700px;}
.yc7{bottom:475.393948px;}
.y14f{bottom:478.411853px;}
.y89{bottom:480.044090px;}
.y18{bottom:483.982440px;}
.y24{bottom:483.992550px;}
.yc6{bottom:492.673948px;}
.y14e{bottom:492.841285px;}
.y88{bottom:497.329793px;}
.y23{bottom:498.992550px;}
.y126{bottom:499.461908px;}
.y123{bottom:499.463100px;}
.y17{bottom:499.884360px;}
.y12b{bottom:500.840834px;}
.y131{bottom:501.968700px;}
.y41{bottom:502.444498px;}
.y12a{bottom:505.680876px;}
.y14d{bottom:507.274232px;}
.yc5{bottom:509.953948px;}
.y22{bottom:513.992550px;}
.y87{bottom:514.615495px;}
.y16{bottom:515.695560px;}
.y40{bottom:519.724348px;}
.y14c{bottom:521.606056px;}
.yc4{bottom:527.239650px;}
.y130{bottom:528.666300px;}
.y15{bottom:531.506760px;}
.y86{bottom:531.901198px;}
.y6b{bottom:535.409690px;}
.y14b{bottom:536.039003px;}
.y3f{bottom:536.981538px;}
.yc3{bottom:544.609010px;}
.y14{bottom:547.408680px;}
.y85{bottom:549.181093px;}
.y14a{bottom:550.473182px;}
.y6a{bottom:552.695393px;}
.y3e{bottom:554.267240px;}
.y12f{bottom:555.363900px;}
.yc2{bottom:557.823890px;}
.y127{bottom:558.561150px;}
.y124{bottom:558.562342px;}
.y13{bottom:563.219880px;}
.y149{bottom:564.804856px;}
.y84{bottom:566.293650px;}
.y12e{bottom:568.846620px;}
.y69{bottom:569.981095px;}
.yc1{bottom:571.130700px;}
.y3d{bottom:571.552943px;}
.y12{bottom:579.031080px;}
.y148{bottom:579.237803px;}
.y12d{bottom:582.061500px;}
.y83{bottom:583.058360px;}
.yc0{bottom:584.350050px;}
.y68{bottom:587.255243px;}
.y3c{bottom:588.838645px;}
.y147{bottom:593.671982px;}
.y11{bottom:594.928680px;}
.y82{bottom:596.273240px;}
.ybd{bottom:601.461570px;}
.y67{bottom:604.540945px;}
.y3b{bottom:606.124348px;}
.y146{bottom:608.003806px;}
.yba{bottom:608.110050px;}
.yb8{bottom:608.112233px;}
.y12c{bottom:608.845500px;}
.y81{bottom:609.580050px;}
.y10{bottom:610.739880px;}
.ybc{bottom:614.671525px;}
.ybf{bottom:614.676450px;}
.y128{bottom:617.568462px;}
.y125{bottom:617.569654px;}
.yb9{bottom:621.324930px;}
.yb7{bottom:621.327113px;}
.y66{bottom:621.826648px;}
.y145{bottom:622.436753px;}
.y80{bottom:622.799250px;}
.y3a{bottom:623.411896px;}
.yf{bottom:626.551080px;}
.ybb{bottom:627.978335px;}
.ybe{bottom:627.983260px;}
.yf3{bottom:633.890095px;}
.y144{bottom:636.866185px;}
.y65{bottom:639.109372px;}
.y7f{bottom:639.215250px;}
.y7d{bottom:639.219570px;}
.y39{bottom:640.697598px;}
.ye{bottom:642.453000px;}
.yb6{bottom:650.962918px;}
.yf2{bottom:651.175798px;}
.y143{bottom:651.207203px;}
.y7e{bottom:652.430130px;}
.y7c{bottom:652.434450px;}
.y64{bottom:656.395074px;}
.y142{bottom:665.636785px;}
.yf1{bottom:668.450095px;}
.yd{bottom:674.075400px;}
.y7b{bottom:674.639250px;}
.y38{bottom:675.170712px;}
.y141{bottom:680.069732px;}
.yb5{bottom:682.586700px;}
.yf0{bottom:685.735798px;}
.y63{bottom:690.952050px;}
.y140{bottom:694.410750px;}
.yef{bottom:703.010095px;}
.y7a{bottom:704.009548px;}
.yb4{bottom:708.487842px;}
.y37{bottom:709.727688px;}
.ye0{bottom:714.813900px;}
.yee{bottom:720.295798px;}
.y79{bottom:721.272440px;}
.y62{bottom:726.289650px;}
.y13f{bottom:726.635617px;}
.yc{bottom:733.518600px;}
.yed{bottom:737.564393px;}
.y78{bottom:738.558143px;}
.ye7{bottom:739.783500px;}
.y61{bottom:743.569650px;}
.y36{bottom:744.284664px;}
.ydd{bottom:745.313100px;}
.ye1{bottom:747.816626px;}
.ye2{bottom:751.873020px;}
.yec{bottom:754.850095px;}
.y77{bottom:755.843845px;}
.yb{bottom:760.993800px;}
.y13e{bottom:761.192593px;}
.y60{bottom:761.541282px;}
.y35{bottom:761.570366px;}
.ye6{bottom:768.813900px;}
.yeb{bottom:772.135798px;}
.y76{bottom:773.129548px;}
.y13d{bottom:778.478296px;}
.y34{bottom:778.856069px;}
.y5f{bottom:784.696050px;}
.yea{bottom:789.421500px;}
.y75{bottom:790.415250px;}
.y33{bottom:796.141771px;}
.ye5{bottom:797.844300px;}
.ya{bottom:801.248338px;}
.yde{bottom:806.400319px;}
.y13c{bottom:813.035272px;}
.y32{bottom:813.427474px;}
.y5e{bottom:814.066648px;}
.ye9{bottom:823.376700px;}
.y74{bottom:824.456850px;}
.ye4{bottom:826.874850px;}
.y9{bottom:830.027400px;}
.y31{bottom:830.713176px;}
.y5d{bottom:831.334943px;}
.y13b{bottom:847.592248px;}
.y30{bottom:847.998878px;}
.y5c{bottom:848.620645px;}
.ye8{bottom:849.296700px;}
.y73{bottom:850.379096px;}
.ye3{bottom:855.905250px;}
.y93{bottom:856.165800px;}
.y117{bottom:857.159250px;}
.y13a{bottom:864.866695px;}
.y2f{bottom:865.284581px;}
.y5b{bottom:865.906348px;}
.ydf{bottom:867.567977px;}
.y8{bottom:873.832200px;}
.y9e{bottom:881.653800px;}
.y139{bottom:882.152398px;}
.y2e{bottom:882.570283px;}
.yb3{bottom:882.585743px;}
.y5a{bottom:883.180795px;}
.y122{bottom:884.548050px;}
.y90{bottom:886.578450px;}
.y10c{bottom:886.621650px;}
.y95{bottom:887.352917px;}
.y94{bottom:887.617214px;}
.y119{bottom:887.668386px;}
.y118{bottom:889.392066px;}
.y7{bottom:891.112200px;}
.y9d{bottom:896.947118px;}
.y138{bottom:899.426395px;}
.y2d{bottom:899.855986px;}
.yb2{bottom:899.871445px;}
.y121{bottom:899.931420px;}
.y59{bottom:900.466498px;}
.y10d{bottom:906.237128px;}
.y9c{bottom:910.943400px;}
.y120{bottom:913.146300px;}
.y58{bottom:916.283250px;}
.y137{bottom:916.712098px;}
.y2c{bottom:917.141688px;}
.yb1{bottom:917.157148px;}
.y57{bottom:917.740495px;}
.y10e{bottom:925.933045px;}
.y9b{bottom:926.231039px;}
.y11f{bottom:928.529820px;}
.y136{bottom:933.992098px;}
.y2b{bottom:934.427390px;}
.yb0{bottom:934.436848px;}
.y56{bottom:935.026198px;}
.y9a{bottom:940.319250px;}
.y11e{bottom:941.744700px;}
.y113{bottom:945.548395px;}
.y10f{bottom:945.548524px;}
.y91{bottom:947.665669px;}
.y135{bottom:951.272398px;}
.yaf{bottom:951.705743px;}
.y2a{bottom:951.713093px;}
.y55{bottom:952.306348px;}
.y99{bottom:955.607039px;}
.y5{bottom:956.692950px;}
.y11d{bottom:957.128220px;}
.y114{bottom:965.244312px;}
.y110{bottom:965.244440px;}
.y134{bottom:968.546395px;}
.yae{bottom:968.991445px;}
.y29{bottom:968.998795px;}
.y54{bottom:969.580795px;}
.y98{bottom:969.695250px;}
.y11c{bottom:970.343100px;}
.y115{bottom:984.859790px;}
.y111{bottom:984.859919px;}
.y97{bottom:984.983039px;}
.y11b{bottom:985.726770px;}
.y133{bottom:985.832098px;}
.yad{bottom:986.277148px;}
.y28{bottom:986.284498px;}
.y53{bottom:986.866498px;}
.y11a{bottom:998.941650px;}
.y96{bottom:999.071250px;}
.y132{bottom:1003.117800px;}
.yac{bottom:1003.562850px;}
.y27{bottom:1003.570200px;}
.y52{bottom:1004.152200px;}
.y116{bottom:1004.475269px;}
.y112{bottom:1004.475397px;}
.y6{bottom:1004.568750px;}
.y92{bottom:1008.752888px;}
.y72{bottom:1022.399250px;}
.y21{bottom:1035.859350px;}
.y26{bottom:1048.146450px;}
.h3a{height:31.164134px;}
.h3b{height:31.204224px;}
.h2d{height:31.393958px;}
.hf{height:31.945536px;}
.h42{height:31.946314px;}
.h3e{height:31.958995px;}
.h3f{height:31.959595px;}
.h28{height:31.962816px;}
.h33{height:31.965235px;}
.h40{height:31.982314px;}
.h41{height:31.982914px;}
.h2e{height:33.370445px;}
.h2f{height:33.379776px;}
.h36{height:33.384614px;}
.h3c{height:34.709990px;}
.h9{height:35.147520px;}
.ha{height:36.028800px;}
.hb{height:36.046080px;}
.h26{height:37.198656px;}
.h32{height:37.207205px;}
.h35{height:37.209461px;}
.h27{height:37.215936px;}
.h39{height:37.237709px;}
.hd{height:39.130906px;}
.he{height:40.112064px;}
.h23{height:40.122778px;}
.h22{height:40.123978px;}
.h3d{height:40.133674px;}
.h1f{height:40.134274px;}
.h34{height:40.134874px;}
.h2a{height:40.135291px;}
.h25{height:40.135474px;}
.h31{height:40.136074px;}
.h1e{height:40.157083px;}
.h38{height:40.157683px;}
.h1c{height:40.158283px;}
.h1b{height:40.158883px;}
.h30{height:40.179293px;}
.h37{height:40.180493px;}
.h21{height:40.181693px;}
.h24{height:40.203302px;}
.h16{height:40.613340px;}
.h19{height:41.490317px;}
.h8{height:45.089494px;}
.h12{height:45.978154px;}
.h20{height:45.987864px;}
.h2c{height:45.995650px;}
.h15{height:46.008346px;}
.h1a{height:46.061222px;}
.h14{height:46.099584px;}
.h2{height:47.109375px;}
.h1d{height:47.157375px;}
.h4{height:48.038400px;}
.hc{height:50.852812px;}
.h7{height:52.121664px;}
.h17{height:55.599075px;}
.h10{height:56.320312px;}
.h13{height:56.616131px;}
.h11{height:56.951579px;}
.h2b{height:57.574294px;}
.h29{height:58.191437px;}
.h5{height:67.974336px;}
.h3{height:74.646000px;}
.h18{height:84.734208px;}
.h6{height:95.942306px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x1{left:46.773150px;}
.x10{left:48.897600px;}
.xf{left:66.968550px;}
.xa{left:68.044650px;}
.x11{left:70.717050px;}
.x7{left:71.835191px;}
.x4{left:73.747050px;}
.xd{left:76.598250px;}
.x41{left:77.695007px;}
.x1e{left:83.330100px;}
.xb{left:85.171636px;}
.x12{left:87.829607px;}
.x3e{left:89.715407px;}
.x19{left:95.266870px;}
.x26{left:98.100526px;}
.x70{left:99.396676px;}
.x4d{left:101.454661px;}
.x65{left:106.919783px;}
.x15{left:108.473504px;}
.x8{left:109.689450px;}
.x6{left:114.182250px;}
.x25{left:115.555658px;}
.x6f{left:116.679440px;}
.x4c{left:118.909794px;}
.x16{left:121.090669px;}
.x9{left:130.079850px;}
.xc{left:131.548650px;}
.x1f{left:135.171137px;}
.x42{left:136.966616px;}
.x4e{left:139.390050px;}
.x5e{left:148.755440px;}
.x13{left:153.401850px;}
.x71{left:161.952868px;}
.x4f{left:166.693141px;}
.x27{left:169.381562px;}
.x3b{left:172.754100px;}
.x14{left:176.643450px;}
.x3c{left:186.837300px;}
.x23{left:190.034100px;}
.x5d{left:192.712650px;}
.x50{left:193.996232px;}
.x40{left:198.833100px;}
.x20{left:200.140222px;}
.x28{left:202.648586px;}
.x39{left:204.285089px;}
.x72{left:213.536864px;}
.x46{left:214.558309px;}
.x3a{left:219.407508px;}
.x51{left:221.299324px;}
.x1d{left:226.062900px;}
.x5f{left:231.505040px;}
.x29{left:235.915610px;}
.x73{left:239.369082px;}
.xe{left:242.521200px;}
.x52{left:248.602415px;}
.x66{left:250.089162px;}
.x17{left:261.483600px;}
.x74{left:265.201300px;}
.x2a{left:269.263073px;}
.x53{left:275.905506px;}
.x67{left:278.081725px;}
.x2{left:281.914500px;}
.x5{left:287.327850px;}
.x75{left:290.953079px;}
.x3{left:297.217800px;}
.x2b{left:302.530097px;}
.x68{left:306.074288px;}
.x47{left:311.417980px;}
.x1b{left:315.497100px;}
.x37{left:317.646900px;}
.x54{left:330.511688px;}
.x60{left:331.813540px;}
.x69{left:334.158781px;}
.x2c{left:335.877559px;}
.x3d{left:343.134900px;}
.x55{left:357.814780px;}
.x36{left:362.920500px;}
.x2d{left:369.144583px;}
.x56{left:385.117871px;}
.x38{left:390.741300px;}
.x76{left:394.201511px;}
.x2e{left:402.411607px;}
.x57{left:412.420962px;}
.x48{left:414.749983px;}
.x6a{left:418.228400px;}
.x77{left:420.033728px;}
.x21{left:427.717822px;}
.x2f{left:435.759070px;}
.x58{left:439.724053px;}
.x6b{left:446.312893px;}
.x6e{left:451.739850px;}
.x59{left:467.027144px;}
.x30{left:469.026094px;}
.x4b{left:473.758050px;}
.x64{left:480.165450px;}
.x78{left:484.579799px;}
.x5a{left:497.869525px;}
.x31{left:502.293118px;}
.x6c{left:505.320205px;}
.x49{left:518.084383px;}
.x43{left:520.935842px;}
.x32{left:535.640580px;}
.x61{left:539.345908px;}
.x24{left:542.373300px;}
.x5b{left:544.865100px;}
.x35{left:556.370100px;}
.x33{left:569.597076px;}
.x6d{left:585.659850px;}
.x44{left:603.971254px;}
.x4a{left:608.462671px;}
.x34{left:627.736500px;}
.x62{left:638.790752px;}
.x22{left:647.264869px;}
.x18{left:653.753100px;}
.x63{left:698.579466px;}
.x45{left:706.530214px;}
.x1a{left:715.788300px;}
.x5c{left:737.032500px;}
.x1c{left:740.408580px;}
.x3f{left:757.350757px;}
@media print{
.v4{vertical-align:-17.817067pt;}
.vb{vertical-align:-9.822106pt;}
.v1{vertical-align:-5.222400pt;}
.v2{vertical-align:-2.442240pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.225114pt;}
.v8{vertical-align:5.222400pt;}
.vc{vertical-align:12.316262pt;}
.v9{vertical-align:15.344640pt;}
.v3{vertical-align:17.811038pt;}
.va{vertical-align:23.329690pt;}
.v5{vertical-align:28.565914pt;}
.v6{vertical-align:41.161114pt;}
.ls70{letter-spacing:-1.154304pt;}
.lsae{letter-spacing:-0.996925pt;}
.ls96{letter-spacing:-0.579717pt;}
.ls98{letter-spacing:-0.569457pt;}
.ls9b{letter-spacing:-0.559196pt;}
.ls97{letter-spacing:-0.554066pt;}
.ls99{letter-spacing:-0.548936pt;}
.ls9a{letter-spacing:-0.543805pt;}
.ls10{letter-spacing:-0.478157pt;}
.ls12{letter-spacing:-0.469463pt;}
.ls11{letter-spacing:-0.460769pt;}
.ls21{letter-spacing:-0.423936pt;}
.ls13{letter-spacing:-0.417300pt;}
.ls4b{letter-spacing:-0.343726pt;}
.ls85{letter-spacing:-0.312945pt;}
.ls22{letter-spacing:-0.308736pt;}
.ls8d{letter-spacing:-0.307814pt;}
.ls8b{letter-spacing:-0.297554pt;}
.ls17{letter-spacing:-0.294912pt;}
.ls87{letter-spacing:-0.287293pt;}
.ls89{letter-spacing:-0.282163pt;}
.ls1a{letter-spacing:-0.281088pt;}
.ls84{letter-spacing:-0.277033pt;}
.ls18{letter-spacing:-0.276480pt;}
.ls1e{letter-spacing:-0.271872pt;}
.ls8c{letter-spacing:-0.266772pt;}
.ls1f{letter-spacing:-0.262656pt;}
.ls88{letter-spacing:-0.261642pt;}
.ls1c{letter-spacing:-0.258048pt;}
.ls8a{letter-spacing:-0.251382pt;}
.ls20{letter-spacing:-0.248832pt;}
.ls1d{letter-spacing:-0.244224pt;}
.ls23{letter-spacing:-0.239616pt;}
.ls86{letter-spacing:-0.235991pt;}
.ls58{letter-spacing:-0.215470pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls6a{letter-spacing:-0.196332pt;}
.ls82{letter-spacing:-0.174428pt;}
.ls40{letter-spacing:-0.159037pt;}
.lsac{letter-spacing:-0.153907pt;}
.ls19{letter-spacing:-0.152064pt;}
.ls57{letter-spacing:-0.143647pt;}
.ls27{letter-spacing:-0.138516pt;}
.ls4f{letter-spacing:-0.133386pt;}
.ls4d{letter-spacing:-0.123126pt;}
.ls71{letter-spacing:-0.122573pt;}
.ls48{letter-spacing:-0.117996pt;}
.ls3c{letter-spacing:-0.112865pt;}
.ls43{letter-spacing:-0.107735pt;}
.ls45{letter-spacing:-0.102605pt;}
.ls95{letter-spacing:-0.097475pt;}
.ls47{letter-spacing:-0.092344pt;}
.ls9d{letter-spacing:-0.089887pt;}
.ls42{letter-spacing:-0.082084pt;}
.lsa0{letter-spacing:-0.081715pt;}
.ls6e{letter-spacing:-0.077629pt;}
.ls59{letter-spacing:-0.076954pt;}
.ls41{letter-spacing:-0.066693pt;}
.ls15{letter-spacing:-0.066662pt;}
.ls3a{letter-spacing:-0.061563pt;}
.ls75{letter-spacing:-0.057201pt;}
.ls7d{letter-spacing:-0.056433pt;}
.lsa1{letter-spacing:-0.053115pt;}
.ls4e{letter-spacing:-0.051302pt;}
.ls38{letter-spacing:-0.046172pt;}
.ls26{letter-spacing:-0.041042pt;}
.ls9f{letter-spacing:-0.040858pt;}
.ls14{letter-spacing:-0.039997pt;}
.ls80{letter-spacing:-0.036772pt;}
.ls3b{letter-spacing:-0.035912pt;}
.ls74{letter-spacing:-0.032809pt;}
.ls39{letter-spacing:-0.030781pt;}
.ls72{letter-spacing:-0.028600pt;}
.ls28{letter-spacing:-0.025651pt;}
.ls44{letter-spacing:-0.020521pt;}
.ls69{letter-spacing:-0.020429pt;}
.ls16{letter-spacing:-0.018432pt;}
.ls9e{letter-spacing:-0.016343pt;}
.ls49{letter-spacing:-0.015391pt;}
.lse{letter-spacing:-0.012288pt;}
.ls6b{letter-spacing:-0.012257pt;}
.ls3f{letter-spacing:-0.010260pt;}
.lsf{letter-spacing:-0.006144pt;}
.ls3e{letter-spacing:-0.005130pt;}
.ls24{letter-spacing:-0.004608pt;}
.ls73{letter-spacing:-0.004086pt;}
.lsd{letter-spacing:0.000000pt;}
.ls63{letter-spacing:0.000533pt;}
.ls33{letter-spacing:0.003527pt;}
.ls65{letter-spacing:0.004086pt;}
.ls31{letter-spacing:0.005130pt;}
.ls7a{letter-spacing:0.008172pt;}
.ls46{letter-spacing:0.009953pt;}
.ls29{letter-spacing:0.010260pt;}
.ls92{letter-spacing:0.012257pt;}
.ls2a{letter-spacing:0.015391pt;}
.ls5c{letter-spacing:0.016343pt;}
.ls0{letter-spacing:0.018432pt;}
.ls77{letter-spacing:0.020429pt;}
.ls2b{letter-spacing:0.020521pt;}
.ls76{letter-spacing:0.024515pt;}
.ls30{letter-spacing:0.025651pt;}
.ls8e{letter-spacing:0.028600pt;}
.ls2f{letter-spacing:0.030781pt;}
.ls5e{letter-spacing:0.032686pt;}
.ls36{letter-spacing:0.035912pt;}
.ls62{letter-spacing:0.036772pt;}
.ls4{letter-spacing:0.036864pt;}
.ls5a{letter-spacing:0.040858pt;}
.ls2c{letter-spacing:0.041042pt;}
.ls3{letter-spacing:0.041472pt;}
.lsb{letter-spacing:0.044943pt;}
.ls2e{letter-spacing:0.046172pt;}
.ls1{letter-spacing:0.049029pt;}
.ls2d{letter-spacing:0.051302pt;}
.lsa{letter-spacing:0.053115pt;}
.ls51{letter-spacing:0.056433pt;}
.ls53{letter-spacing:0.057201pt;}
.ls2{letter-spacing:0.061286pt;}
.ls81{letter-spacing:0.065372pt;}
.ls5f{letter-spacing:0.066693pt;}
.lsa5{letter-spacing:0.069458pt;}
.ls6{letter-spacing:0.071823pt;}
.lsab{letter-spacing:0.073544pt;}
.ls3d{letter-spacing:0.076954pt;}
.ls5{letter-spacing:0.077629pt;}
.ls7{letter-spacing:0.081715pt;}
.ls52{letter-spacing:0.082084pt;}
.ls7e{letter-spacing:0.085801pt;}
.ls7f{letter-spacing:0.089887pt;}
.ls8{letter-spacing:0.093972pt;}
.ls6f{letter-spacing:0.098058pt;}
.lsa6{letter-spacing:0.106230pt;}
.lsa2{letter-spacing:0.107735pt;}
.ls93{letter-spacing:0.114401pt;}
.ls4a{letter-spacing:0.117996pt;}
.ls79{letter-spacing:0.118487pt;}
.ls90{letter-spacing:0.122573pt;}
.ls67{letter-spacing:0.123126pt;}
.ls54{letter-spacing:0.126659pt;}
.ls9c{letter-spacing:0.133386pt;}
.ls7b{letter-spacing:0.134830pt;}
.lsa7{letter-spacing:0.138916pt;}
.ls61{letter-spacing:0.143002pt;}
.ls8f{letter-spacing:0.147087pt;}
.ls78{letter-spacing:0.153067pt;}
.ls5d{letter-spacing:0.153600pt;}
.ls25{letter-spacing:0.153907pt;}
.ls9{letter-spacing:0.155259pt;}
.ls94{letter-spacing:0.159345pt;}
.ls60{letter-spacing:0.163430pt;}
.lsaa{letter-spacing:0.167516pt;}
.lsa8{letter-spacing:0.171602pt;}
.ls6c{letter-spacing:0.175688pt;}
.ls50{letter-spacing:0.176640pt;}
.ls64{letter-spacing:0.179773pt;}
.lsa3{letter-spacing:0.187945pt;}
.lsaf{letter-spacing:0.200202pt;}
.ls6d{letter-spacing:0.228803pt;}
.ls1b{letter-spacing:0.308736pt;}
.ls4c{letter-spacing:0.318505pt;}
.lsad{letter-spacing:0.461691pt;}
.ls55{letter-spacing:3.765596pt;}
.ls5b{letter-spacing:4.991724pt;}
.ls68{letter-spacing:5.299538pt;}
.lsa9{letter-spacing:7.395226pt;}
.ls83{letter-spacing:8.372552pt;}
.ls7c{letter-spacing:9.484881pt;}
.ls66{letter-spacing:9.485414pt;}
.ls91{letter-spacing:10.598400pt;}
.ls56{letter-spacing:16.360335pt;}
.lsa4{letter-spacing:27.946598pt;}
.ls37{letter-spacing:53.611008pt;}
.ls32{letter-spacing:101.007360pt;}
.ls34{letter-spacing:213.484339pt;}
.ls35{letter-spacing:1902.241690pt;}
.ws6{word-spacing:-86.468137pt;}
.ws4{word-spacing:-86.459443pt;}
.ws5f{word-spacing:-67.662735pt;}
.ws8{word-spacing:-66.622403pt;}
.ws3{word-spacing:-61.458432pt;}
.ws9c{word-spacing:-59.674952pt;}
.ws78{word-spacing:-56.601938pt;}
.ws72{word-spacing:-56.294124pt;}
.ws5{word-spacing:-56.217600pt;}
.ws5d{word-spacing:-55.067996pt;}
.ws1a{word-spacing:-51.456307pt;}
.wsae{word-spacing:-51.435786pt;}
.ws77{word-spacing:-51.425526pt;}
.ws51{word-spacing:-51.420396pt;}
.wsc0{word-spacing:-51.410135pt;}
.ws63{word-spacing:-51.384484pt;}
.ws34{word-spacing:-51.379354pt;}
.ws1c{word-spacing:-51.374223pt;}
.ws79{word-spacing:-51.369093pt;}
.ws62{word-spacing:-51.358833pt;}
.ws3a{word-spacing:-51.353702pt;}
.ws40{word-spacing:-51.348572pt;}
.ws35{word-spacing:-51.343442pt;}
.ws4b{word-spacing:-51.338312pt;}
.ws41{word-spacing:-51.333181pt;}
.ws47{word-spacing:-51.328051pt;}
.ws37{word-spacing:-51.322921pt;}
.ws2e{word-spacing:-51.317791pt;}
.ws2b{word-spacing:-51.312660pt;}
.ws4c{word-spacing:-51.307530pt;}
.ws1b{word-spacing:-51.302400pt;}
.ws36{word-spacing:-51.297270pt;}
.ws38{word-spacing:-51.292140pt;}
.ws4d{word-spacing:-51.287009pt;}
.ws6a{word-spacing:-51.281879pt;}
.ws1f{word-spacing:-51.276749pt;}
.ws2d{word-spacing:-51.271619pt;}
.ws30{word-spacing:-51.266488pt;}
.ws1d{word-spacing:-51.261358pt;}
.ws2c{word-spacing:-51.256228pt;}
.ws58{word-spacing:-51.251098pt;}
.ws90{word-spacing:-51.245967pt;}
.ws2f{word-spacing:-51.240837pt;}
.ws43{word-spacing:-51.235707pt;}
.ws6b{word-spacing:-51.225446pt;}
.wsbd{word-spacing:-51.220316pt;}
.wsa7{word-spacing:-51.204925pt;}
.ws49{word-spacing:-51.199795pt;}
.ws42{word-spacing:-51.194665pt;}
.ws33{word-spacing:-51.189535pt;}
.ws61{word-spacing:-51.184404pt;}
.ws56{word-spacing:-51.179274pt;}
.ws8f{word-spacing:-51.169014pt;}
.ws1e{word-spacing:-51.163884pt;}
.ws73{word-spacing:-51.158753pt;}
.ws39{word-spacing:-51.143363pt;}
.ws99{word-spacing:-51.127972pt;}
.ws9f{word-spacing:-51.066409pt;}
.wsa3{word-spacing:-51.051018pt;}
.wsa1{word-spacing:-51.040758pt;}
.wsa5{word-spacing:-51.035628pt;}
.ws9d{word-spacing:-51.025367pt;}
.wsa2{word-spacing:-51.020237pt;}
.wsa0{word-spacing:-51.015107pt;}
.wsa4{word-spacing:-51.004846pt;}
.wsa6{word-spacing:-50.994586pt;}
.ws9e{word-spacing:-50.989455pt;}
.ws52{word-spacing:-50.958674pt;}
.wsac{word-spacing:-50.758595pt;}
.wsab{word-spacing:-50.753464pt;}
.wsa9{word-spacing:-50.748334pt;}
.wsad{word-spacing:-50.743204pt;}
.wsaa{word-spacing:-50.732943pt;}
.wsa8{word-spacing:-50.722683pt;}
.ws85{word-spacing:-50.148096pt;}
.ws16{word-spacing:-46.121472pt;}
.ws17{word-spacing:-46.116864pt;}
.ws15{word-spacing:-45.840384pt;}
.ws10{word-spacing:-45.835776pt;}
.ws11{word-spacing:-45.831168pt;}
.wsc{word-spacing:-45.821952pt;}
.wse{word-spacing:-45.817344pt;}
.wsd{word-spacing:-45.808128pt;}
.wsa{word-spacing:-45.803520pt;}
.wsb{word-spacing:-45.798912pt;}
.ws9{word-spacing:-45.785088pt;}
.ws14{word-spacing:-45.771264pt;}
.ws12{word-spacing:-45.656064pt;}
.ws3b{word-spacing:-44.181627pt;}
.ws3c{word-spacing:-44.027720pt;}
.ws3d{word-spacing:-43.996938pt;}
.ws6f{word-spacing:-43.648082pt;}
.ws6e{word-spacing:-43.494175pt;}
.ws9a{word-spacing:-42.940109pt;}
.ws9b{word-spacing:-42.919588pt;}
.ws3e{word-spacing:-41.796065pt;}
.ws3f{word-spacing:-41.693460pt;}
.wsbf{word-spacing:-41.467730pt;}
.wsc5{word-spacing:-41.319291pt;}
.wsbe{word-spacing:-41.088092pt;}
.wsc1{word-spacing:-41.045545pt;}
.ws86{word-spacing:-41.037373pt;}
.ws7e{word-spacing:-41.033288pt;}
.wsca{word-spacing:-41.029202pt;}
.wscf{word-spacing:-41.025116pt;}
.ws7d{word-spacing:-41.021030pt;}
.wsbb{word-spacing:-41.016945pt;}
.ws23{word-spacing:-41.012859pt;}
.wsc9{word-spacing:-41.000602pt;}
.wsc8{word-spacing:-40.996516pt;}
.wsc6{word-spacing:-40.992430pt;}
.ws93{word-spacing:-40.984259pt;}
.wsb5{word-spacing:-40.980173pt;}
.ws96{word-spacing:-40.976087pt;}
.wsb8{word-spacing:-40.972001pt;}
.wsc4{word-spacing:-40.963830pt;}
.ws95{word-spacing:-40.955658pt;}
.ws21{word-spacing:-40.951572pt;}
.ws94{word-spacing:-40.947487pt;}
.wsc2{word-spacing:-40.943401pt;}
.ws20{word-spacing:-40.939315pt;}
.ws22{word-spacing:-40.935229pt;}
.wsd0{word-spacing:-40.931144pt;}
.wsc3{word-spacing:-40.927058pt;}
.wsb0{word-spacing:-40.922972pt;}
.ws65{word-spacing:-40.918886pt;}
.ws66{word-spacing:-40.914801pt;}
.ws80{word-spacing:-40.910715pt;}
.ws19{word-spacing:-40.906629pt;}
.ws24{word-spacing:-40.902543pt;}
.wsce{word-spacing:-40.898458pt;}
.ws83{word-spacing:-40.894372pt;}
.ws76{word-spacing:-40.890286pt;}
.wsaf{word-spacing:-40.886200pt;}
.ws91{word-spacing:-40.882115pt;}
.ws92{word-spacing:-40.878029pt;}
.ws75{word-spacing:-40.873943pt;}
.wsb7{word-spacing:-40.869857pt;}
.ws97{word-spacing:-40.865772pt;}
.ws87{word-spacing:-40.861686pt;}
.ws8a{word-spacing:-40.857600pt;}
.ws8c{word-spacing:-40.853514pt;}
.ws7c{word-spacing:-40.845343pt;}
.wsb6{word-spacing:-40.841257pt;}
.ws7a{word-spacing:-40.837171pt;}
.ws89{word-spacing:-40.829000pt;}
.wsb9{word-spacing:-40.816742pt;}
.wsbc{word-spacing:-40.804485pt;}
.ws8d{word-spacing:-40.800399pt;}
.wsba{word-spacing:-40.775885pt;}
.wsb1{word-spacing:-40.767713pt;}
.ws71{word-spacing:-40.759757pt;}
.ws70{word-spacing:-40.749496pt;}
.ws88{word-spacing:-40.735027pt;}
.wsc7{word-spacing:-39.860675pt;}
.ws32{word-spacing:-36.214364pt;}
.ws31{word-spacing:-36.173322pt;}
.ws5e{word-spacing:-34.921544pt;}
.ws60{word-spacing:-34.654771pt;}
.wscc{word-spacing:-34.357156pt;}
.wscd{word-spacing:-34.332641pt;}
.wscb{word-spacing:-34.316298pt;}
.ws54{word-spacing:-33.496105pt;}
.ws4a{word-spacing:-33.187553pt;}
.ws44{word-spacing:-33.177600pt;}
.wsf{word-spacing:-30.720000pt;}
.ws50{word-spacing:-27.659059pt;}
.ws7b{word-spacing:-25.301268pt;}
.ws7{word-spacing:-21.317100pt;}
.ws25{word-spacing:-13.344000pt;}
.ws84{word-spacing:-12.979507pt;}
.ws6d{word-spacing:-12.882033pt;}
.ws6c{word-spacing:-12.851251pt;}
.ws48{word-spacing:-12.805079pt;}
.ws46{word-spacing:-12.794819pt;}
.ws45{word-spacing:-12.687084pt;}
.wsb4{word-spacing:-12.681953pt;}
.ws69{word-spacing:-12.610130pt;}
.ws4e{word-spacing:-12.595200pt;}
.ws13{word-spacing:-11.261952pt;}
.ws0{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.453333pt;}
.ws18{word-spacing:-10.292029pt;}
.ws98{word-spacing:-4.645509pt;}
.ws27{word-spacing:-0.768000pt;}
.ws74{word-spacing:-0.261642pt;}
.ws29{word-spacing:-0.138916pt;}
.ws2a{word-spacing:-0.130744pt;}
.ws28{word-spacing:-0.126659pt;}
.ws5b{word-spacing:-0.112865pt;}
.ws5c{word-spacing:-0.097475pt;}
.ws2{word-spacing:-0.088000pt;}
.ws26{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.076954pt;}
.ws5a{word-spacing:0.097475pt;}
.ws64{word-spacing:21.638185pt;}
.ws4f{word-spacing:26.586457pt;}
.ws55{word-spacing:37.014682pt;}
.ws57{word-spacing:57.858847pt;}
.wsb3{word-spacing:59.251692pt;}
.ws67{word-spacing:72.726528pt;}
.ws53{word-spacing:87.999007pt;}
.ws59{word-spacing:90.630820pt;}
.ws82{word-spacing:105.310464pt;}
.ws81{word-spacing:105.314550pt;}
.ws7f{word-spacing:108.517786pt;}
.wsb2{word-spacing:140.631859pt;}
.ws68{word-spacing:154.498929pt;}
.ws8b{word-spacing:225.305149pt;}
._d{margin-left:-178.484060pt;}
._e{margin-left:-51.413606pt;}
._11{margin-left:-16.612540pt;}
._12{margin-left:-15.355825pt;}
._c{margin-left:-10.666667pt;}
._21{margin-left:-8.441242pt;}
._2{margin-left:-5.504000pt;}
._10{margin-left:-4.534521pt;}
._0{margin-left:-3.114667pt;}
._3{margin-left:-2.141333pt;}
._1{margin-left:-1.066667pt;}
._9{width:1.133568pt;}
._8{width:2.209451pt;}
._6{width:3.211776pt;}
._a{width:4.617425pt;}
._7{width:5.658624pt;}
._15{width:6.843317pt;}
._4{width:9.898667pt;}
._5{width:11.434667pt;}
._14{width:97.792666pt;}
._1b{width:159.320125pt;}
._2b{width:161.220004pt;}
._16{width:169.134121pt;}
._1f{width:171.626435pt;}
._26{width:193.620081pt;}
._13{width:195.242127pt;}
._25{width:197.738527pt;}
._22{width:214.003937pt;}
._2a{width:229.983345pt;}
._27{width:232.410286pt;}
._24{width:274.746931pt;}
._29{width:276.279091pt;}
._1d{width:278.750976pt;}
._23{width:292.871363pt;}
._17{width:295.310561pt;}
._1c{width:296.850893pt;}
._28{width:305.132728pt;}
._20{width:313.189847pt;}
._1e{width:352.143483pt;}
._1a{width:369.663222pt;}
._18{width:390.230938pt;}
._19{width:412.988621pt;}
._f{width:691.216000pt;}
._b{width:776.917333pt;}
.fsf{font-size:25.497600pt;}
.fs10{font-size:27.340800pt;}
.fs8{font-size:30.720000pt;}
.fsb{font-size:33.177600pt;}
.fse{font-size:35.265600pt;}
.fs6{font-size:40.857600pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:46.080000pt;}
.fsa{font-size:48.000000pt;}
.fsd{font-size:50.380800pt;}
.fs9{font-size:51.302400pt;}
.fsc{font-size:53.245939pt;}
.fs4{font-size:56.217600pt;}
.fs2{font-size:61.440000pt;}
.fs5{font-size:66.662400pt;}
.fs3{font-size:86.937600pt;}
.fs1{font-size:88.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:13.332933pt;}
.y3{bottom:26.666267pt;}
.y2{bottom:39.999600pt;}
.y1{bottom:53.332933pt;}
.y71{bottom:129.720131pt;}
.y51{bottom:132.428531pt;}
.y70{bottom:145.082819pt;}
.y8f{bottom:145.709598pt;}
.y50{bottom:147.783329pt;}
.y10b{bottom:155.793325pt;}
.y6f{bottom:160.447888pt;}
.y8e{bottom:161.072286pt;}
.y4f{bottom:163.148398pt;}
.y10a{bottom:171.158394pt;}
.y8d{bottom:176.437355pt;}
.y4e{bottom:178.519109pt;}
.y109{bottom:186.523462pt;}
.y6e{bottom:191.165200pt;}
.ydc{bottom:200.548667pt;}
.y108{bottom:201.888531pt;}
.y8c{bottom:207.154667pt;}
.y4d{bottom:209.236421pt;}
.ydb{bottom:215.455547pt;}
.y107{bottom:217.251219pt;}
.y6d{bottom:221.347600pt;}
.yda{bottom:227.202107pt;}
.y20{bottom:229.310562pt;}
.y15e{bottom:231.180400pt;}
.y106{bottom:232.616288pt;}
.y8b{bottom:237.413733pt;}
.yd9{bottom:238.948667pt;}
.y4c{bottom:239.943329pt;}
.y1f{bottom:242.058133pt;}
.y6c{bottom:244.387733pt;}
.y15d{bottom:246.077114pt;}
.yd8{bottom:250.775733pt;}
.y1e{bottom:255.267867pt;}
.y4b{bottom:255.308398pt;}
.y15c{bottom:258.903276pt;}
.y8a{bottom:260.434780pt;}
.yd5{bottom:263.139591pt;}
.y105{bottom:263.333600pt;}
.yab{bottom:265.599467pt;}
.yd2{bottom:269.054133pt;}
.yd0{bottom:269.055572pt;}
.y4a{bottom:270.656647pt;}
.y15b{bottom:271.650847pt;}
.yd7{bottom:274.967867pt;}
.yd4{bottom:274.968271pt;}
.yd1{bottom:280.800693pt;}
.ycf{bottom:280.802132pt;}
.y1d{bottom:282.454933pt;}
.ya8{bottom:284.263807pt;}
.y15a{bottom:284.477142pt;}
.y49{bottom:286.021716pt;}
.yd6{bottom:286.714427pt;}
.yd3{bottom:286.714831pt;}
.y104{bottom:294.130400pt;}
.y159{bottom:297.306429pt;}
.ya3{bottom:297.542527pt;}
.y48{bottom:301.386785pt;}
.yce{bottom:304.305467pt;}
.y103{bottom:305.880800pt;}
.y158{bottom:310.053827pt;}
.yaa{bottom:311.218533pt;}
.y1c{bottom:313.402953pt;}
.yfd{bottom:318.326240pt;}
.y100{bottom:318.336454pt;}
.ya2{bottom:319.820133pt;}
.y9f{bottom:321.586533pt;}
.y157{bottom:322.883114pt;}
.yf8{bottom:324.154362pt;}
.yfa{bottom:324.159200pt;}
.y102{bottom:324.168877pt;}
.y45{bottom:326.584000pt;}
.ya4{bottom:326.806783pt;}
.ya9{bottom:328.268133pt;}
.y1b{bottom:328.768021pt;}
.yfc{bottom:330.073338pt;}
.yff{bottom:330.083014pt;}
.ycd{bottom:330.402127pt;}
.y156{bottom:335.709409pt;}
.yf7{bottom:335.982637pt;}
.yf9{bottom:335.987475pt;}
.y101{bottom:335.997152pt;}
.y47{bottom:336.491988pt;}
.yfb{bottom:341.819898pt;}
.yfe{bottom:341.829574pt;}
.ycc{bottom:345.767196pt;}
.y46{bottom:346.782267pt;}
.y155{bottom:348.456980pt;}
.ya0{bottom:354.610533pt;}
.ya5{bottom:355.989324pt;}
.y1a{bottom:359.485333pt;}
.yf6{bottom:359.485971pt;}
.ycb{bottom:361.132265pt;}
.y154{bottom:361.283142pt;}
.y44{bottom:369.817638pt;}
.y153{bottom:374.112429pt;}
.yca{bottom:376.492398pt;}
.y43{bottom:385.182707pt;}
.ya6{bottom:385.253580pt;}
.y152{bottom:386.851827pt;}
.yf5{bottom:387.596000pt;}
.yc9{bottom:391.847196pt;}
.ya1{bottom:397.080933pt;}
.y151{bottom:399.681114pt;}
.y19{bottom:403.107733pt;}
.yc8{bottom:407.212265pt;}
.yf4{bottom:410.628013pt;}
.y150{bottom:412.507409pt;}
.ya7{bottom:414.436121pt;}
.y42{bottom:415.900019pt;}
.y25{bottom:416.882267pt;}
.y129{bottom:417.778400pt;}
.yc7{bottom:422.572398pt;}
.y14f{bottom:425.254980pt;}
.y89{bottom:426.705858pt;}
.y18{bottom:430.206613pt;}
.y24{bottom:430.215600pt;}
.yc6{bottom:437.932398pt;}
.y14e{bottom:438.081142pt;}
.y88{bottom:442.070927pt;}
.y23{bottom:443.548933pt;}
.y126{bottom:443.966141pt;}
.y123{bottom:443.967200pt;}
.y17{bottom:444.341653pt;}
.y12b{bottom:445.191853pt;}
.y131{bottom:446.194400pt;}
.y41{bottom:446.617331pt;}
.y12a{bottom:449.494112pt;}
.y14d{bottom:450.910429pt;}
.yc5{bottom:453.292398pt;}
.y22{bottom:456.882267pt;}
.y87{bottom:457.435996pt;}
.y16{bottom:458.396053pt;}
.y40{bottom:461.977198pt;}
.y14c{bottom:463.649827pt;}
.yc4{bottom:468.657467pt;}
.y130{bottom:469.925600pt;}
.y15{bottom:472.450453pt;}
.y86{bottom:472.801065pt;}
.y6b{bottom:475.919725pt;}
.y14b{bottom:476.479114pt;}
.y3f{bottom:477.316923pt;}
.yc3{bottom:484.096898pt;}
.y14{bottom:486.585493pt;}
.y85{bottom:488.160972pt;}
.y14a{bottom:489.309495pt;}
.y6a{bottom:491.284794pt;}
.y3e{bottom:492.681991pt;}
.y12f{bottom:493.656800pt;}
.yc2{bottom:495.843458pt;}
.y127{bottom:496.498800pt;}
.y124{bottom:496.499859pt;}
.y13{bottom:500.639893pt;}
.y149{bottom:502.048761pt;}
.y84{bottom:503.372133pt;}
.y12e{bottom:505.641440pt;}
.y69{bottom:506.649862pt;}
.yc1{bottom:507.671733pt;}
.y3d{bottom:508.047060pt;}
.y12{bottom:514.694293pt;}
.y148{bottom:514.878047pt;}
.y12d{bottom:517.388000pt;}
.y83{bottom:518.274098pt;}
.yc0{bottom:519.422267pt;}
.y68{bottom:522.004660pt;}
.y3c{bottom:523.412129pt;}
.y147{bottom:527.708429pt;}
.y11{bottom:528.825493pt;}
.y82{bottom:530.020658pt;}
.ybd{bottom:534.632507pt;}
.y67{bottom:537.369729pt;}
.y3b{bottom:538.777198pt;}
.y146{bottom:540.447827pt;}
.yba{bottom:540.542267pt;}
.yb8{bottom:540.544207pt;}
.y12c{bottom:541.196000pt;}
.y81{bottom:541.848933pt;}
.y10{bottom:542.879893pt;}
.ybc{bottom:546.374689pt;}
.ybf{bottom:546.379067pt;}
.y128{bottom:548.949744pt;}
.y125{bottom:548.950803pt;}
.yb9{bottom:552.288827pt;}
.yb7{bottom:552.290767pt;}
.y66{bottom:552.734798pt;}
.y145{bottom:553.277114pt;}
.y80{bottom:553.599333pt;}
.y3a{bottom:554.143907pt;}
.yf{bottom:556.934293pt;}
.ybb{bottom:558.202964pt;}
.ybe{bottom:558.207342pt;}
.yf3{bottom:563.457862pt;}
.y144{bottom:566.103276pt;}
.y65{bottom:568.097219pt;}
.y7f{bottom:568.191333pt;}
.y7d{bottom:568.195173pt;}
.y39{bottom:569.508976pt;}
.ye{bottom:571.069333pt;}
.yb6{bottom:578.633705pt;}
.yf2{bottom:578.822931pt;}
.y143{bottom:578.850847pt;}
.y7e{bottom:579.937893pt;}
.y7c{bottom:579.941733pt;}
.y64{bottom:583.462288pt;}
.y142{bottom:591.677142pt;}
.yf1{bottom:594.177862pt;}
.yd{bottom:599.178133pt;}
.y7b{bottom:599.679333pt;}
.y38{bottom:600.151744pt;}
.y141{bottom:604.506429pt;}
.yb5{bottom:606.743733pt;}
.yf0{bottom:609.542931pt;}
.y63{bottom:614.179600pt;}
.y140{bottom:617.254000pt;}
.yef{bottom:624.897862pt;}
.y7a{bottom:625.786265pt;}
.yb4{bottom:629.766971pt;}
.y37{bottom:630.869056pt;}
.ye0{bottom:635.390133pt;}
.yee{bottom:640.262931pt;}
.y79{bottom:641.131058pt;}
.y62{bottom:645.590800pt;}
.y13f{bottom:645.898326pt;}
.yc{bottom:652.016533pt;}
.yed{bottom:655.612794pt;}
.y78{bottom:656.496127pt;}
.ye7{bottom:657.585333pt;}
.y61{bottom:660.950800pt;}
.y36{bottom:661.586368pt;}
.ydd{bottom:662.500533pt;}
.ye1{bottom:664.725890pt;}
.ye2{bottom:668.331573pt;}
.yec{bottom:670.977862pt;}
.y77{bottom:671.861196pt;}
.yb{bottom:676.438933pt;}
.y13e{bottom:676.615638pt;}
.y60{bottom:676.925584pt;}
.y35{bottom:676.951437pt;}
.ye6{bottom:683.390133pt;}
.yeb{bottom:686.342931pt;}
.y76{bottom:687.226265pt;}
.y13d{bottom:691.980707pt;}
.y34{bottom:692.316506pt;}
.y5f{bottom:697.507600pt;}
.yea{bottom:701.708000pt;}
.y75{bottom:702.591333pt;}
.y33{bottom:707.681574pt;}
.ye5{bottom:709.194933pt;}
.ya{bottom:712.220745pt;}
.yde{bottom:716.800284pt;}
.y13c{bottom:722.698019pt;}
.y32{bottom:723.046643pt;}
.y5e{bottom:723.614798pt;}
.ye9{bottom:731.890400pt;}
.y74{bottom:732.850533pt;}
.ye4{bottom:734.999867pt;}
.y9{bottom:737.802133pt;}
.y31{bottom:738.411712pt;}
.y5d{bottom:738.964394pt;}
.y13b{bottom:753.415331pt;}
.y30{bottom:753.776781pt;}
.y5c{bottom:754.329462pt;}
.ye8{bottom:754.930400pt;}
.y73{bottom:755.892530pt;}
.ye3{bottom:760.804667pt;}
.y93{bottom:761.036267pt;}
.y117{bottom:761.919333pt;}
.y13a{bottom:768.770396pt;}
.y2f{bottom:769.141850pt;}
.y5b{bottom:769.694531pt;}
.ydf{bottom:771.171535pt;}
.y8{bottom:776.739733pt;}
.y9e{bottom:783.692267pt;}
.y139{bottom:784.135465pt;}
.y2e{bottom:784.506918pt;}
.yb3{bottom:784.520660pt;}
.y5a{bottom:785.049596pt;}
.y122{bottom:786.264933pt;}
.y90{bottom:788.069733pt;}
.y10c{bottom:788.108133pt;}
.y95{bottom:788.758148pt;}
.y94{bottom:788.993079pt;}
.y119{bottom:789.038565pt;}
.y118{bottom:790.570725pt;}
.y7{bottom:792.099733pt;}
.y9d{bottom:797.286327pt;}
.y138{bottom:799.490129pt;}
.y2d{bottom:799.871987pt;}
.yb2{bottom:799.885729pt;}
.y121{bottom:799.939040pt;}
.y59{bottom:800.414665pt;}
.y10d{bottom:805.544114pt;}
.y9c{bottom:809.727467pt;}
.y120{bottom:811.685600pt;}
.y58{bottom:814.474000pt;}
.y137{bottom:814.855198pt;}
.y2c{bottom:815.237056pt;}
.yb1{bottom:815.250798pt;}
.y57{bottom:815.769329pt;}
.y10e{bottom:823.051596pt;}
.y9b{bottom:823.316479pt;}
.y11f{bottom:825.359840pt;}
.y136{bottom:830.215198pt;}
.y2b{bottom:830.602125pt;}
.yb0{bottom:830.610531pt;}
.y56{bottom:831.134398pt;}
.y9a{bottom:835.839333pt;}
.y11e{bottom:837.106400pt;}
.y113{bottom:840.487462pt;}
.y10f{bottom:840.487577pt;}
.y91{bottom:842.369484pt;}
.y135{bottom:845.575465pt;}
.yaf{bottom:845.960660pt;}
.y2a{bottom:845.967194pt;}
.y55{bottom:846.494531pt;}
.y99{bottom:849.428479pt;}
.y5{bottom:850.393733pt;}
.y11d{bottom:850.780640pt;}
.y114{bottom:857.994944pt;}
.y110{bottom:857.995058pt;}
.y134{bottom:860.930129pt;}
.yae{bottom:861.325729pt;}
.y29{bottom:861.332262pt;}
.y54{bottom:861.849596pt;}
.y98{bottom:861.951333pt;}
.y11c{bottom:862.527200pt;}
.y115{bottom:875.430925pt;}
.y111{bottom:875.431039pt;}
.y97{bottom:875.540479pt;}
.y11b{bottom:876.201573pt;}
.y133{bottom:876.295198pt;}
.yad{bottom:876.690798pt;}
.y28{bottom:876.697331pt;}
.y53{bottom:877.214665pt;}
.y11a{bottom:887.948133pt;}
.y96{bottom:888.063333pt;}
.y132{bottom:891.660267pt;}
.yac{bottom:892.055867pt;}
.y27{bottom:892.062400pt;}
.y52{bottom:892.579733pt;}
.y116{bottom:892.866906pt;}
.y112{bottom:892.867020pt;}
.y6{bottom:892.950000pt;}
.y92{bottom:896.669234pt;}
.y72{bottom:908.799333pt;}
.y21{bottom:920.763867pt;}
.y26{bottom:931.685733pt;}
.h3a{height:27.701453pt;}
.h3b{height:27.737088pt;}
.h2d{height:27.905741pt;}
.hf{height:28.396032pt;}
.h42{height:28.396723pt;}
.h3e{height:28.407996pt;}
.h3f{height:28.408529pt;}
.h28{height:28.411392pt;}
.h33{height:28.413542pt;}
.h40{height:28.428723pt;}
.h41{height:28.429257pt;}
.h2e{height:29.662618pt;}
.h2f{height:29.670912pt;}
.h36{height:29.675213pt;}
.h3c{height:30.853325pt;}
.h9{height:31.242240pt;}
.ha{height:32.025600pt;}
.hb{height:32.040960pt;}
.h26{height:33.065472pt;}
.h32{height:33.073071pt;}
.h35{height:33.075076pt;}
.h27{height:33.080832pt;}
.h39{height:33.100186pt;}
.hd{height:34.783027pt;}
.he{height:35.655168pt;}
.h23{height:35.664691pt;}
.h22{height:35.665758pt;}
.h3d{height:35.674377pt;}
.h1f{height:35.674910pt;}
.h34{height:35.675443pt;}
.h2a{height:35.675814pt;}
.h25{height:35.675977pt;}
.h31{height:35.676510pt;}
.h1e{height:35.695185pt;}
.h38{height:35.695718pt;}
.h1c{height:35.696252pt;}
.h1b{height:35.696785pt;}
.h30{height:35.714927pt;}
.h37{height:35.715994pt;}
.h21{height:35.717060pt;}
.h24{height:35.736269pt;}
.h16{height:36.100747pt;}
.h19{height:36.880282pt;}
.h8{height:40.079550pt;}
.h12{height:40.869470pt;}
.h20{height:40.878101pt;}
.h2c{height:40.885022pt;}
.h15{height:40.896307pt;}
.h1a{height:40.943309pt;}
.h14{height:40.977408pt;}
.h2{height:41.875000pt;}
.h1d{height:41.917667pt;}
.h4{height:42.700800pt;}
.hc{height:45.202500pt;}
.h7{height:46.330368pt;}
.h17{height:49.421400pt;}
.h10{height:50.062500pt;}
.h13{height:50.325450pt;}
.h11{height:50.623626pt;}
.h2b{height:51.177150pt;}
.h29{height:51.725722pt;}
.h5{height:60.421632pt;}
.h3{height:66.352000pt;}
.h18{height:75.319296pt;}
.h6{height:85.282050pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x1{left:41.576133pt;}
.x10{left:43.464533pt;}
.xf{left:59.527600pt;}
.xa{left:60.484133pt;}
.x11{left:62.859600pt;}
.x7{left:63.853503pt;}
.x4{left:65.552933pt;}
.xd{left:68.087333pt;}
.x41{left:69.062228pt;}
.x1e{left:74.071200pt;}
.xb{left:75.708121pt;}
.x12{left:78.070762pt;}
.x3e{left:79.747028pt;}
.x19{left:84.681662pt;}
.x26{left:87.200467pt;}
.x70{left:88.352601pt;}
.x4d{left:90.181921pt;}
.x65{left:95.039807pt;}
.x15{left:96.420893pt;}
.x8{left:97.501733pt;}
.x6{left:101.495333pt;}
.x25{left:102.716141pt;}
.x6f{left:103.715058pt;}
.x4c{left:105.697595pt;}
.x16{left:107.636150pt;}
.x9{left:115.626533pt;}
.xc{left:116.932133pt;}
.x1f{left:120.152122pt;}
.x42{left:121.748103pt;}
.x4e{left:123.902267pt;}
.x5e{left:132.227058pt;}
.x13{left:136.357200pt;}
.x71{left:143.958105pt;}
.x4f{left:148.171681pt;}
.x27{left:150.561389pt;}
.x3b{left:153.559200pt;}
.x14{left:157.016400pt;}
.x3c{left:166.077600pt;}
.x23{left:168.919200pt;}
.x5d{left:171.300133pt;}
.x50{left:172.441095pt;}
.x40{left:176.740533pt;}
.x20{left:177.902419pt;}
.x28{left:180.132077pt;}
.x39{left:181.586746pt;}
.x72{left:189.810546pt;}
.x46{left:190.718497pt;}
.x3a{left:195.028896pt;}
.x51{left:196.710510pt;}
.x1d{left:200.944800pt;}
.x5f{left:205.782258pt;}
.x29{left:209.702765pt;}
.x73{left:212.772517pt;}
.xe{left:215.574400pt;}
.x52{left:220.979924pt;}
.x66{left:222.301477pt;}
.x17{left:232.429867pt;}
.x74{left:235.734489pt;}
.x2a{left:239.344954pt;}
.x53{left:245.249339pt;}
.x67{left:247.183756pt;}
.x2{left:250.590667pt;}
.x5{left:255.402533pt;}
.x75{left:258.624959pt;}
.x3{left:264.193600pt;}
.x2b{left:268.915642pt;}
.x68{left:272.066034pt;}
.x47{left:276.815982pt;}
.x1b{left:280.441867pt;}
.x37{left:282.352800pt;}
.x54{left:293.788167pt;}
.x60{left:294.945369pt;}
.x69{left:297.030028pt;}
.x2c{left:298.557830pt;}
.x3d{left:305.008800pt;}
.x55{left:318.057582pt;}
.x36{left:322.596000pt;}
.x2d{left:328.128518pt;}
.x56{left:342.326996pt;}
.x38{left:347.325600pt;}
.x76{left:350.401343pt;}
.x2e{left:357.699206pt;}
.x57{left:366.596411pt;}
.x48{left:368.666652pt;}
.x6a{left:371.758578pt;}
.x77{left:373.363314pt;}
.x21{left:380.193619pt;}
.x2f{left:387.341395pt;}
.x58{left:390.865825pt;}
.x6b{left:396.722572pt;}
.x6e{left:401.546533pt;}
.x59{left:415.135239pt;}
.x30{left:416.912083pt;}
.x4b{left:421.118267pt;}
.x64{left:426.813733pt;}
.x78{left:430.737599pt;}
.x5a{left:442.550689pt;}
.x31{left:446.482771pt;}
.x6c{left:449.173516pt;}
.x49{left:460.519452pt;}
.x43{left:463.054082pt;}
.x32{left:476.124960pt;}
.x61{left:479.418585pt;}
.x24{left:482.109600pt;}
.x5b{left:484.324533pt;}
.x35{left:494.551200pt;}
.x33{left:506.308512pt;}
.x6d{left:520.586533pt;}
.x44{left:536.863337pt;}
.x4a{left:540.855708pt;}
.x34{left:557.988000pt;}
.x62{left:567.814002pt;}
.x22{left:575.346550pt;}
.x18{left:581.113867pt;}
.x63{left:620.959525pt;}
.x45{left:628.026857pt;}
.x1a{left:636.256267pt;}
.x5c{left:655.140000pt;}
.x1c{left:658.140960pt;}
.x3f{left:673.200673pt;}
}




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