
    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_fbc6d9f10716a6d4655f267f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_dc169a1b793e98eb2cb8fe36.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.779297;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_8ad249fee2897c5c5c9e5793.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.934570;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_b4f7fbc3ddd7ec4deb273dc4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_6e48e97242037f2694f2d900.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_8a0738b9d1651968ee51a3e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_9e2a1915c590d5ee7bfa13d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_de7807b954d5184876775755.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b0e60d44ef0d500f45d7e2e0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_9c84f1fb7f8d3797b3bf4869.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.693359;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_6020445301ea34ba975738c0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.882324;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_b1481ce9a20db9470a7db92b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_619cec17df792a0ee613bd59.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.960000;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_845bdaf180b68282cfe050a9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.775000;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_361595c902b8eeda0f50646b.woff2')format("woff");}.fff{font-family:fff;line-height:0.720000;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_d559df26f2b7701d2ed73c9c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.709473;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_c728aab9a9fa965b93ea6433.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.704102;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_754b4f66dfefe860a9713a9d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e12ab0d9857915c2e8f50d28.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_9d6bca50e6eac30a35e18e9f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d49b7bd137fb16c471c86d70.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_eb336ad6e04941ab340c8556.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_80614c485c4370ee75649d3a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.737305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e6303e9b9afcc9b710de93e4.woff2')format("woff");}.ff18{font-family:ff18;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v4{vertical-align:-2.828160px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.732480px;}
.v1{vertical-align:27.475200px;}
.ls82{letter-spacing:-7.387200px;}
.lsf{letter-spacing:-6.289920px;}
.ls6c{letter-spacing:-5.636160px;}
.ls15{letter-spacing:-5.328000px;}
.ls60{letter-spacing:-4.717440px;}
.ls10{letter-spacing:-4.354560px;}
.ls39{letter-spacing:-3.931200px;}
.ls4d{letter-spacing:-3.628800px;}
.ls69{letter-spacing:-3.502080px;}
.ls18{letter-spacing:-3.373920px;}
.ls36{letter-spacing:-3.326400px;}
.ls3a{letter-spacing:-2.479680px;}
.ls68{letter-spacing:-2.352960px;}
.ls7f{letter-spacing:-2.243520px;}
.ls4e{letter-spacing:-1.874880px;}
.ls81{letter-spacing:-1.258560px;}
.ls6a{letter-spacing:-1.039680px;}
.ls4c{letter-spacing:-1.028160px;}
.ls7e{letter-spacing:-0.875520px;}
.ls6b{letter-spacing:-0.656640px;}
.ls83{letter-spacing:-0.601920px;}
.ls80{letter-spacing:-0.547200px;}
.ls67{letter-spacing:-0.492480px;}
.ls38{letter-spacing:-0.483840px;}
.ls66{letter-spacing:-0.437760px;}
.ls4b{letter-spacing:-0.423360px;}
.ls64{letter-spacing:-0.383040px;}
.ls12{letter-spacing:-0.362880px;}
.ls61{letter-spacing:-0.328320px;}
.ls16{letter-spacing:-0.302400px;}
.ls65{letter-spacing:-0.273600px;}
.ls17{letter-spacing:-0.244800px;}
.ls11{letter-spacing:-0.241920px;}
.ls63{letter-spacing:-0.218880px;}
.ls13{letter-spacing:-0.181440px;}
.ls62{letter-spacing:-0.164160px;}
.ls14{letter-spacing:-0.120960px;}
.ls0{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.012096px;}
.ls22{letter-spacing:0.038880px;}
.ls49{letter-spacing:0.058800px;}
.ls31{letter-spacing:0.059400px;}
.ls25{letter-spacing:0.060000px;}
.ls34{letter-spacing:0.060600px;}
.ls23{letter-spacing:0.077760px;}
.ls27{letter-spacing:0.078840px;}
.ls4{letter-spacing:0.080640px;}
.ls5f{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.112896px;}
.lsa{letter-spacing:0.142560px;}
.ls1{letter-spacing:0.161280px;}
.ls1a{letter-spacing:0.190080px;}
.ls9{letter-spacing:0.237600px;}
.ls5{letter-spacing:0.241920px;}
.ls3{letter-spacing:0.258048px;}
.ls19{letter-spacing:0.285120px;}
.ls6d{letter-spacing:0.328320px;}
.ls6f{letter-spacing:0.332640px;}
.ls1d{letter-spacing:0.362880px;}
.ls72{letter-spacing:0.380160px;}
.lse{letter-spacing:0.417600px;}
.ls6e{letter-spacing:0.427680px;}
.ls71{letter-spacing:0.437760px;}
.ls73{letter-spacing:0.547200px;}
.ls48{letter-spacing:0.786240px;}
.ls26{letter-spacing:0.967680px;}
.ls20{letter-spacing:1.028160px;}
.ls53{letter-spacing:1.149120px;}
.ls1e{letter-spacing:1.391040px;}
.ls2e{letter-spacing:1.451520px;}
.ls6{letter-spacing:1.693440px;}
.ls7b{letter-spacing:1.751040px;}
.ls28{letter-spacing:1.790208px;}
.ls21{letter-spacing:1.814400px;}
.ls37{letter-spacing:2.056320px;}
.ls5e{letter-spacing:2.134080px;}
.ls29{letter-spacing:2.237760px;}
.ls43{letter-spacing:2.479680px;}
.ls2f{letter-spacing:2.661120px;}
.ls5b{letter-spacing:3.009600px;}
.ls1c{letter-spacing:3.084480px;}
.ls33{letter-spacing:3.265920px;}
.ls50{letter-spacing:3.501792px;}
.ls59{letter-spacing:3.502080px;}
.ls2a{letter-spacing:3.931200px;}
.ls74{letter-spacing:4.049280px;}
.ls7c{letter-spacing:4.487040px;}
.ls51{letter-spacing:4.620672px;}
.ls32{letter-spacing:4.838400px;}
.ls55{letter-spacing:4.870080px;}
.ls56{letter-spacing:4.924800px;}
.ls7a{letter-spacing:5.034240px;}
.ls76{letter-spacing:5.088960px;}
.ls79{letter-spacing:5.143680px;}
.ls24{letter-spacing:5.202720px;}
.ls1b{letter-spacing:5.322240px;}
.ls40{letter-spacing:5.564160px;}
.ls45{letter-spacing:5.630688px;}
.ls2d{letter-spacing:5.866560px;}
.ls57{letter-spacing:5.964480px;}
.ls5c{letter-spacing:6.073920px;}
.ls4f{letter-spacing:6.471360px;}
.ls2b{letter-spacing:7.136640px;}
.ls70{letter-spacing:7.277760px;}
.ls75{letter-spacing:7.441920px;}
.ls47{letter-spacing:7.511616px;}
.ls77{letter-spacing:7.551360px;}
.ls46{letter-spacing:7.741440px;}
.ls7{letter-spacing:8.467200px;}
.ls4a{letter-spacing:8.527680px;}
.ls2c{letter-spacing:8.588160px;}
.ls3c{letter-spacing:9.072000px;}
.ls1f{letter-spacing:9.459072px;}
.ls3d{letter-spacing:9.580032px;}
.ls41{letter-spacing:9.616320px;}
.ls3e{letter-spacing:9.797760px;}
.ls52{letter-spacing:10.039680px;}
.ls44{letter-spacing:10.221120px;}
.ls8{letter-spacing:10.882080px;}
.ls54{letter-spacing:11.874240px;}
.ls58{letter-spacing:12.147840px;}
.ls3f{letter-spacing:12.216960px;}
.lsd{letter-spacing:13.764778px;}
.lsb{letter-spacing:13.769670px;}
.ls5d{letter-spacing:13.953600px;}
.ls5a{letter-spacing:14.172480px;}
.ls35{letter-spacing:14.817600px;}
.ls7d{letter-spacing:14.993280px;}
.ls3b{letter-spacing:16.208640px;}
.ls30{letter-spacing:16.813440px;}
.ls78{letter-spacing:18.714240px;}
.lsc{letter-spacing:27.215670px;}
.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;}
}
.ws2f{word-spacing:-60.480000px;}
.ws19{word-spacing:-59.775840px;}
.ws13{word-spacing:-53.798280px;}
.ws14{word-spacing:-40.402508px;}
.ws15{word-spacing:-40.350038px;}
.ws12{word-spacing:-40.348710px;}
.ws17{word-spacing:-40.347167px;}
.ws51{word-spacing:-28.797120px;}
.ws8{word-spacing:-20.401920px;}
.ws5{word-spacing:-20.321280px;}
.wsb{word-spacing:-20.272896px;}
.ws7{word-spacing:-20.240640px;}
.ws9{word-spacing:-20.160000px;}
.ws11{word-spacing:-15.120000px;}
.ws2a{word-spacing:-14.999040px;}
.wsf{word-spacing:-14.938560px;}
.wsd{word-spacing:-14.878080px;}
.ws10{word-spacing:-14.817600px;}
.wsc{word-spacing:-14.757120px;}
.ws39{word-spacing:-14.696640px;}
.wsa{word-spacing:-13.870080px;}
.ws6{word-spacing:-13.680000px;}
.ws52{word-spacing:-13.515840px;}
.ws41{word-spacing:-13.461120px;}
.ws40{word-spacing:-13.406400px;}
.ws3e{word-spacing:-13.351680px;}
.ws3f{word-spacing:-13.296960px;}
.ws42{word-spacing:-13.242240px;}
.ws43{word-spacing:-13.187520px;}
.ws55{word-spacing:-13.078080px;}
.wse{word-spacing:-12.672000px;}
.ws32{word-spacing:-12.640320px;}
.ws53{word-spacing:-11.436480px;}
.ws44{word-spacing:-11.327040px;}
.ws30{word-spacing:-11.188800px;}
.ws2c{word-spacing:-9.797760px;}
.ws2b{word-spacing:-9.758880px;}
.ws3{word-spacing:-8.017001px;}
.ws2{word-spacing:-7.320124px;}
.ws0{word-spacing:-7.215301px;}
.ws1{word-spacing:-6.413601px;}
.ws54{word-spacing:-6.292800px;}
.ws24{word-spacing:-2.298240px;}
.ws36{word-spacing:-2.056320px;}
.ws1a{word-spacing:-0.417600px;}
.ws5a{word-spacing:-0.383040px;}
.ws28{word-spacing:-0.285120px;}
.ws1f{word-spacing:-0.241920px;}
.ws27{word-spacing:-0.237600px;}
.ws5d{word-spacing:-0.218880px;}
.ws29{word-spacing:-0.190080px;}
.ws34{word-spacing:-0.181440px;}
.ws5c{word-spacing:-0.164160px;}
.ws1c{word-spacing:-0.161280px;}
.ws1b{word-spacing:-0.080640px;}
.ws33{word-spacing:-0.077760px;}
.ws31{word-spacing:-0.060480px;}
.ws4{word-spacing:0.000000px;}
.ws1d{word-spacing:0.080640px;}
.ws4b{word-spacing:0.109440px;}
.ws23{word-spacing:0.120960px;}
.ws1e{word-spacing:0.161280px;}
.ws46{word-spacing:0.164160px;}
.ws22{word-spacing:0.181440px;}
.ws47{word-spacing:0.218880px;}
.ws21{word-spacing:0.241920px;}
.ws25{word-spacing:0.244800px;}
.ws4a{word-spacing:0.273600px;}
.ws38{word-spacing:0.302400px;}
.ws48{word-spacing:0.328320px;}
.ws2e{word-spacing:0.362880px;}
.ws49{word-spacing:0.383040px;}
.ws5b{word-spacing:0.437760px;}
.ws37{word-spacing:0.483840px;}
.ws4c{word-spacing:0.492480px;}
.ws58{word-spacing:0.547200px;}
.ws4f{word-spacing:0.656640px;}
.ws57{word-spacing:0.875520px;}
.ws3b{word-spacing:1.028160px;}
.ws4e{word-spacing:1.039680px;}
.ws59{word-spacing:1.258560px;}
.ws3d{word-spacing:1.874880px;}
.ws35{word-spacing:3.326400px;}
.ws4d{word-spacing:3.502080px;}
.ws3c{word-spacing:3.628800px;}
.ws26{word-spacing:3.659040px;}
.ws20{word-spacing:4.354560px;}
.ws45{word-spacing:4.717440px;}
.ws50{word-spacing:5.636160px;}
.ws16{word-spacing:416.487729px;}
.ws18{word-spacing:416.489604px;}
.ws2d{word-spacing:2689.909810px;}
.ws56{word-spacing:2692.599722px;}
.ws3a{word-spacing:2696.485152px;}
._13{margin-left:-13.495513px;}
._1d{margin-left:-12.466978px;}
._2{margin-left:-9.684864px;}
._1b{margin-left:-7.756721px;}
._3{margin-left:-6.531840px;}
._7{margin-left:-5.479097px;}
._1{margin-left:-4.032000px;}
._4{margin-left:-2.717568px;}
._0{margin-left:-1.345231px;}
._5{width:1.048320px;}
._c{width:2.221632px;}
._8{width:3.809808px;}
._d{width:5.322672px;}
._6{width:6.370560px;}
._b{width:7.547904px;}
._9{width:8.781696px;}
._a{width:9.882432px;}
._19{width:10.958976px;}
._14{width:12.011328px;}
._f{width:13.160448px;}
._1c{width:14.762592px;}
._17{width:16.329600px;}
._11{width:17.376844px;}
._10{width:18.749729px;}
._18{width:20.354095px;}
._e{width:21.442176px;}
._16{width:22.909824px;}
._15{width:24.736320px;}
._1a{width:25.770528px;}
._20{width:26.790912px;}
._1f{width:44.058782px;}
._1e{width:55.568719px;}
._12{width:225.176176px;}
.fc5{color:rgb(51,51,255);}
.fc1{color:rgb(56,116,161);}
.fc6{color:rgb(180,180,180);}
.fc4{color:rgb(85,85,85);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:24.000000px;}
.fsb{font-size:24.480000px;}
.fse{font-size:26.268660px;}
.fs3{font-size:27.828506px;}
.fs4{font-size:31.804007px;}
.fs0{font-size:35.779508px;}
.fs10{font-size:38.880000px;}
.fs2{font-size:39.755009px;}
.fsc{font-size:47.520000px;}
.fs5{font-size:47.706010px;}
.fsd{font-size:53.798280px;}
.fs8{font-size:54.720000px;}
.fsf{font-size:59.775840px;}
.fsa{font-size:60.480000px;}
.fs9{font-size:72.000000px;}
.fs1{font-size:79.510017px;}
.fs7{font-size:80.640000px;}
.fs6{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.212321px;}
.y15{bottom:3.975482px;}
.yd{bottom:3.975497px;}
.yf{bottom:3.975499px;}
.y13{bottom:3.975523px;}
.y244{bottom:7.500000px;}
.y57{bottom:7.720500px;}
.y55{bottom:21.760500px;}
.y19{bottom:24.846853px;}
.y54{bottom:35.800500px;}
.y5b{bottom:35.865000px;}
.y18{bottom:47.705982px;}
.y52{bottom:49.480500px;}
.y5c{bottom:61.270500px;}
.y51{bottom:62.080500px;}
.y5d{bottom:69.115500px;}
.ya1{bottom:95.079180px;}
.y197{bottom:97.939740px;}
.yc9{bottom:98.671260px;}
.y102{bottom:98.679180px;}
.y16f{bottom:103.715580px;}
.y138{bottom:109.469100px;}
.ya0{bottom:112.361340px;}
.y50{bottom:113.283000px;}
.y1d2{bottom:113.302380px;}
.y196{bottom:113.425500px;}
.yc8{bottom:115.953420px;}
.y101{bottom:115.961340px;}
.y16e{bottom:120.634860px;}
.y58{bottom:121.003500px;}
.y137{bottom:126.751260px;}
.y1d1{bottom:129.143820px;}
.y195{bottom:129.266940px;}
.y9f{bottom:129.619740px;}
.yc7{bottom:133.235580px;}
.y100{bottom:133.243500px;}
.y56{bottom:135.043500px;}
.y16d{bottom:137.917020px;}
.y85{bottom:142.229100px;}
.y136{bottom:143.670540px;}
.y1d0{bottom:144.629580px;}
.y9e{bottom:146.901900px;}
.y194{bottom:149.061900px;}
.yc6{bottom:150.154860px;}
.y16c{bottom:155.199180px;}
.yff{bottom:155.563500px;}
.y84{bottom:159.511260px;}
.y1cf{bottom:160.115340px;}
.y135{bottom:160.952700px;}
.y53{bottom:162.763500px;}
.y9d{bottom:164.184060px;}
.y243{bottom:164.367660px;}
.y193{bottom:164.547660px;}
.yc5{bottom:167.437020px;}
.y20b{bottom:167.797740px;}
.y16b{bottom:172.481340px;}
.y83{bottom:176.793420px;}
.y134{bottom:178.234860px;}
.y1ce{bottom:179.910300px;}
.y192{bottom:180.033420px;}
.y9c{bottom:181.466220px;}
.y20a{bottom:183.283500px;}
.y242{bottom:184.531980px;}
.yfe{bottom:184.707660px;}
.yc4{bottom:184.719180px;}
.y16a{bottom:189.763500px;}
.y82{bottom:193.712700px;}
.y1cd{bottom:195.396060px;}
.y133{bottom:195.517020px;}
.y9b{bottom:198.748380px;}
.y241{bottom:200.017740px;}
.y191{bottom:200.197740px;}
.yfd{bottom:201.989820px;}
.yc3{bottom:202.001340px;}
.y209{bottom:203.803500px;}
.y81{bottom:210.994860px;}
.y42{bottom:211.701180px;}
.y169{bottom:212.083500px;}
.y132{bottom:212.799180px;}
.y240{bottom:215.503500px;}
.y1cc{bottom:215.560380px;}
.y190{bottom:215.683500px;}
.y208{bottom:216.731820px;}
.yfc{bottom:218.909100px;}
.yc2{bottom:219.283500px;}
.y9a{bottom:220.354860px;}
.y80{bottom:228.277020px;}
.y41{bottom:228.983340px;}
.y131{bottom:230.081340px;}
.y1cb{bottom:231.046140px;}
.y207{bottom:232.573260px;}
.y4f{bottom:232.582620px;}
.y23f{bottom:235.667820px;}
.yfb{bottom:236.191260px;}
.y18f{bottom:236.923500px;}
.y99{bottom:237.637020px;}
.y168{bottom:241.222620px;}
.yc1{bottom:241.603500px;}
.y7f{bottom:245.559180px;}
.y40{bottom:245.902620px;}
.y1ca{bottom:246.531900px;}
.y130{bottom:247.361340px;}
.y206{bottom:248.059020px;}
.y4e{bottom:249.864780px;}
.y23e{bottom:251.153580px;}
.yfa{bottom:253.473420px;}
.y98{bottom:254.919180px;}
.y167{bottom:258.504780px;}
.y7e{bottom:262.841340px;}
.y3f{bottom:263.184780px;}
.y12f{bottom:264.631260px;}
.y23d{bottom:266.639340px;}
.y1c9{bottom:266.696220px;}
.y4d{bottom:267.146940px;}
.y205{bottom:267.853980px;}
.y18e{bottom:270.402060px;}
.yf9{bottom:270.755580px;}
.y97{bottom:272.201340px;}
.yc0{bottom:275.078460px;}
.y166{bottom:275.786940px;}
.y7d{bottom:280.090380px;}
.y3e{bottom:280.466940px;}
.y12e{bottom:281.913420px;}
.y23c{bottom:282.125100px;}
.y1c8{bottom:282.181980px;}
.y204{bottom:283.339740px;}
.y4c{bottom:284.429100px;}
.y18d{bottom:287.684220px;}
.yf8{bottom:288.037740px;}
.y96{bottom:289.479900px;}
.ybf{bottom:292.360620px;}
.y165{bottom:293.069100px;}
.y7c{bottom:297.372540px;}
.y1c7{bottom:297.667740px;}
.y3d{bottom:297.749100px;}
.y203{bottom:299.181180px;}
.y12d{bottom:299.195580px;}
.y4b{bottom:301.711260px;}
.y23b{bottom:302.289420px;}
.y18c{bottom:304.603500px;}
.yf7{bottom:306.393420px;}
.y95{bottom:306.762060px;}
.ybe{bottom:310.005660px;}
.y164{bottom:310.351260px;}
.y1c6{bottom:313.153500px;}
.y7b{bottom:314.654700px;}
.y3c{bottom:315.031260px;}
.y12c{bottom:316.477740px;}
.y23a{bottom:317.775180px;}
.y4a{bottom:318.630540px;}
.y202{bottom:318.976140px;}
.yf6{bottom:323.675580px;}
.y94{bottom:324.044220px;}
.y18b{bottom:327.283500px;}
.y163{bottom:327.633420px;}
.ybd{bottom:328.361340px;}
.y7a{bottom:331.936860px;}
.y3b{bottom:332.313420px;}
.y239{bottom:333.260940px;}
.y1c5{bottom:333.317820px;}
.y12b{bottom:333.397020px;}
.y201{bottom:334.461900px;}
.y49{bottom:335.912700px;}
.yf5{bottom:340.957740px;}
.y93{bottom:342.399900px;}
.y162{bottom:344.552700px;}
.y238{bottom:348.746700px;}
.y1c4{bottom:348.803580px;}
.y79{bottom:349.219020px;}
.y3a{bottom:349.595580px;}
.y200{bottom:349.947660px;}
.y12a{bottom:350.679180px;}
.y48{bottom:353.194860px;}
.yf4{bottom:358.239900px;}
.y18a{bottom:360.744780px;}
.y161{bottom:361.834860px;}
.y1c3{bottom:364.289340px;}
.y78{bottom:366.501180px;}
.y39{bottom:366.877740px;}
.y129{bottom:367.961340px;}
.y237{bottom:368.911020px;}
.y1ff{bottom:370.111980px;}
.y47{bottom:370.477020px;}
.yf3{bottom:375.522060px;}
.y189{bottom:378.026940px;}
.y160{bottom:379.117020px;}
.y1c2{bottom:379.775100px;}
.y77{bottom:383.783340px;}
.y38{bottom:384.159900px;}
.y236{bottom:384.396780px;}
.y128{bottom:385.243500px;}
.y1fe{bottom:385.597740px;}
.y46{bottom:387.759180px;}
.yf2{bottom:392.804220px;}
.y188{bottom:395.309100px;}
.y15f{bottom:396.399180px;}
.y235{bottom:399.882540px;}
.y1c1{bottom:399.939420px;}
.y76{bottom:400.702620px;}
.y1fd{bottom:401.083500px;}
.y37{bottom:401.442060px;}
.y45{bottom:405.041340px;}
.y127{bottom:407.563500px;}
.yf1{bottom:409.674540px;}
.y187{bottom:412.591260px;}
.y15e{bottom:413.681340px;}
.y1c0{bottom:415.425180px;}
.y75{bottom:417.984780px;}
.y36{bottom:418.724220px;}
.y234{bottom:420.046860px;}
.y1fc{bottom:421.963500px;}
.y44{bottom:422.323500px;}
.yf0{bottom:426.956700px;}
.y186{bottom:429.510540px;}
.y15d{bottom:430.963500px;}
.y1fb{bottom:434.896140px;}
.y74{bottom:435.266940px;}
.y233{bottom:435.532620px;}
.y1bf{bottom:435.589500px;}
.y35{bottom:435.643500px;}
.y126{bottom:436.698300px;}
.y43{bottom:444.643500px;}
.yef{bottom:445.312380px;}
.y185{bottom:446.792700px;}
.y1fa{bottom:450.381900px;}
.y232{bottom:451.018380px;}
.y1be{bottom:451.075260px;}
.y73{bottom:452.549100px;}
.y15c{bottom:453.283500px;}
.y125{bottom:453.980460px;}
.y34{bottom:457.963500px;}
.yee{bottom:462.594540px;}
.y184{bottom:464.074860px;}
.y1f9{bottom:465.867660px;}
.y231{bottom:466.504140px;}
.y1bd{bottom:466.561020px;}
.y72{bottom:469.831260px;}
.y124{bottom:471.262620px;}
.yed{bottom:479.876700px;}
.y183{bottom:481.357020px;}
.y1bc{bottom:482.046780px;}
.y15b{bottom:482.442060px;}
.y1f8{bottom:486.031980px;}
.y230{bottom:486.668460px;}
.y71{bottom:487.113420px;}
.y123{bottom:488.544780px;}
.yec{bottom:497.158860px;}
.ybc{bottom:497.917020px;}
.y182{bottom:498.639180px;}
.y15a{bottom:499.724220px;}
.y1f7{bottom:501.517740px;}
.y22f{bottom:502.154220px;}
.y1bb{bottom:502.211100px;}
.y33{bottom:503.323500px;}
.y70{bottom:504.395580px;}
.y122{bottom:505.826940px;}
.yeb{bottom:514.441020px;}
.ybb{bottom:515.199180px;}
.y181{bottom:515.921340px;}
.y1f6{bottom:517.003500px;}
.y159{bottom:517.006380px;}
.y22e{bottom:517.639980px;}
.y1ba{bottom:517.696860px;}
.y6f{bottom:521.677740px;}
.y121{bottom:523.109100px;}
.y32{bottom:526.723500px;}
.yea{bottom:531.723180px;}
.yba{bottom:532.481340px;}
.y1b9{bottom:533.182620px;}
.y180{bottom:533.191260px;}
.y158{bottom:534.288540px;}
.y22d{bottom:537.434940px;}
.y1f5{bottom:537.523500px;}
.y6e{bottom:538.959900px;}
.y120{bottom:540.391260px;}
.y31{bottom:543.269100px;}
.ye9{bottom:549.005340px;}
.yb9{bottom:549.763500px;}
.y1f4{bottom:550.453260px;}
.y17f{bottom:550.473420px;}
.y157{bottom:551.570700px;}
.y92{bottom:552.630540px;}
.y22c{bottom:553.276380px;}
.y1b8{bottom:553.346940px;}
.y6d{bottom:556.242060px;}
.y11f{bottom:557.673420px;}
.y1f3{bottom:565.939020px;}
.y30{bottom:566.311980px;}
.ye8{bottom:567.361020px;}
.y17e{bottom:567.755580px;}
.yb8{bottom:568.119180px;}
.y22b{bottom:568.762140px;}
.y1b7{bottom:568.832700px;}
.y156{bottom:569.559180px;}
.y91{bottom:569.912700px;}
.y6c{bottom:573.524220px;}
.y11e{bottom:574.592700px;}
.y1f2{bottom:581.424780px;}
.y22a{bottom:584.247900px;}
.y1b6{bottom:584.318460px;}
.ye7{bottom:584.643180px;}
.y17d{bottom:585.037740px;}
.yb7{bottom:585.401340px;}
.y155{bottom:586.841340px;}
.y90{bottom:587.194860px;}
.y2f{bottom:589.717740px;}
.y6b{bottom:590.443500px;}
.y11d{bottom:591.874860px;}
.y1f1{bottom:596.910540px;}
.ye6{bottom:601.562460px;}
.y17c{bottom:602.319900px;}
.yb6{bottom:602.662620px;}
.y229{bottom:604.042860px;}
.y154{bottom:604.098300px;}
.y1b5{bottom:604.113420px;}
.y8f{bottom:604.477020px;}
.y11c{bottom:609.157020px;}
.y1f0{bottom:612.751980px;}
.y6a{bottom:612.763500px;}
.y2e{bottom:613.100460px;}
.ye5{bottom:618.844620px;}
.y17b{bottom:619.602060px;}
.y228{bottom:619.884300px;}
.yb5{bottom:619.944780px;}
.y1b4{bottom:619.954860px;}
.y153{bottom:621.380460px;}
.y8e{bottom:621.759180px;}
.y11b{bottom:626.439180px;}
.yb{bottom:628.129108px;}
.y1ef{bottom:628.237740px;}
.y227{bottom:635.370060px;}
.y1b3{bottom:635.440620px;}
.ye4{bottom:636.126780px;}
.y2d{bottom:636.143340px;}
.y17a{bottom:636.521340px;}
.yb4{bottom:637.226940px;}
.y152{bottom:638.662620px;}
.y8d{bottom:639.041340px;}
.y69{bottom:641.894700px;}
.y11a{bottom:643.721340px;}
.y1ee{bottom:643.723500px;}
.y1b2{bottom:650.926380px;}
.ye3{bottom:653.408940px;}
.y179{bottom:653.803500px;}
.yb3{bottom:654.509100px;}
.y226{bottom:655.165020px;}
.y8c{bottom:656.323500px;}
.y151{bottom:657.018300px;}
.y68{bottom:659.176860px;}
.y2c{bottom:659.549100px;}
.y119{bottom:661.003500px;}
.y1ed{bottom:664.243500px;}
.y225{bottom:670.650780px;}
.ye2{bottom:670.691100px;}
.y1b1{bottom:670.721340px;}
.yb2{bottom:671.428380px;}
.ya{bottom:672.853492px;}
.y150{bottom:674.300460px;}
.y67{bottom:676.459020px;}
.y178{bottom:676.483500px;}
.y1ec{bottom:677.109900px;}
.y8b{bottom:678.283500px;}
.y2b{bottom:682.954860px;}
.y118{bottom:683.323500px;}
.y224{bottom:686.492220px;}
.y1b0{bottom:686.562780px;}
.ye1{bottom:687.973260px;}
.yb1{bottom:688.710540px;}
.y14f{bottom:691.582620px;}
.y1eb{bottom:692.595660px;}
.y66{bottom:693.741180px;}
.y8a{bottom:699.523500px;}
.ye0{bottom:705.255420px;}
.yb0{bottom:705.992700px;}
.y2a{bottom:705.997740px;}
.y223{bottom:706.287180px;}
.y1af{bottom:706.357740px;}
.y14e{bottom:708.864780px;}
.y177{bottom:709.938300px;}
.y65{bottom:711.023340px;}
.y117{bottom:712.474860px;}
.y9{bottom:712.608501px;}
.y1ea{bottom:712.759980px;}
.y222{bottom:721.772940px;}
.y1ae{bottom:721.837740px;}
.ydf{bottom:722.537580px;}
.yaf{bottom:723.274860px;}
.y14d{bottom:727.220460px;}
.y1e9{bottom:728.245740px;}
.y89{bottom:728.295420px;}
.y64{bottom:728.305500px;}
.y29{bottom:729.397740px;}
.y116{bottom:729.757020px;}
.y221{bottom:737.258700px;}
.y1ad{bottom:737.323500px;}
.yae{bottom:740.557020px;}
.yde{bottom:740.893260px;}
.y1e8{bottom:743.731500px;}
.y14c{bottom:744.502620px;}
.y88{bottom:745.577580px;}
.y63{bottom:745.587660px;}
.y115{bottom:747.039180px;}
.y28{bottom:752.768940px;}
.y1ac{bottom:757.356780px;}
.y220{bottom:757.423020px;}
.ydd{bottom:758.175420px;}
.y14b{bottom:761.421900px;}
.yad{bottom:762.160620px;}
.y87{bottom:762.859740px;}
.y62{bottom:762.869820px;}
.y1e7{bottom:763.895820px;}
.y114{bottom:764.321340px;}
.y17{bottom:766.277763px;}
.y1ab{bottom:772.842540px;}
.y21f{bottom:772.908780px;}
.y27{bottom:775.811820px;}
.ydc{bottom:776.531100px;}
.y14a{bottom:778.704060px;}
.y1e6{bottom:779.381580px;}
.yac{bottom:779.442780px;}
.y86{bottom:780.141900px;}
.y61{bottom:780.151980px;}
.y1aa{bottom:788.328300px;}
.y21e{bottom:788.394540px;}
.y16{bottom:790.130768px;}
.y113{bottom:790.599900px;}
.ydb{bottom:793.813260px;}
.y1e5{bottom:794.867340px;}
.y149{bottom:795.986220px;}
.yab{bottom:796.724940px;}
.y60{bottom:797.434140px;}
.y26{bottom:799.217580px;}
.y1a9{bottom:803.814060px;}
.y21d{bottom:803.880300px;}
.y14{bottom:804.257360px;}
.y112{bottom:807.519180px;}
.y1e4{bottom:810.353100px;}
.yda{bottom:810.732540px;}
.y148{bottom:813.268380px;}
.yaa{bottom:814.007100px;}
.y5f{bottom:819.040620px;}
.y1a8{bottom:819.299820px;}
.y12{bottom:820.159322px;}
.y25{bottom:822.623340px;}
.y21c{bottom:824.044620px;}
.y111{bottom:824.801340px;}
.y1e3{bottom:825.838860px;}
.yd9{bottom:829.088220px;}
.y147{bottom:830.550540px;}
.ya9{bottom:832.362780px;}
.y1a7{bottom:839.464140px;}
.y21b{bottom:839.530380px;}
.y5e{bottom:842.083500px;}
.y1e2{bottom:846.003180px;}
.y24{bottom:846.029100px;}
.yd8{bottom:846.370380px;}
.y146{bottom:847.832700px;}
.y1a6{bottom:854.949900px;}
.y21a{bottom:855.016140px;}
.y110{bottom:860.439180px;}
.y11{bottom:860.695908px;}
.y1e1{bottom:861.488940px;}
.yd7{bottom:864.726060px;}
.y145{bottom:865.114860px;}
.y23{bottom:869.071980px;}
.y1a5{bottom:870.435660px;}
.y219{bottom:870.501900px;}
.y1e0{bottom:876.974700px;}
.y10f{bottom:877.721340px;}
.yd6{bottom:882.008220px;}
.y144{bottom:882.397020px;}
.y10{bottom:884.548913px;}
.y218{bottom:885.987660px;}
.y1a4{bottom:890.599980px;}
.y1df{bottom:892.460460px;}
.y22{bottom:892.477740px;}
.y10e{bottom:895.003500px;}
.ye{bottom:898.675488px;}
.yd5{bottom:899.290380px;}
.y143{bottom:899.679180px;}
.y1a3{bottom:906.085740px;}
.y217{bottom:906.151980px;}
.y1de{bottom:907.946220px;}
.y10d{bottom:912.285660px;}
.yc{bottom:914.577494px;}
.y21{bottom:915.854700px;}
.yd4{bottom:916.572540px;}
.y142{bottom:916.961340px;}
.y1a2{bottom:921.571500px;}
.y216{bottom:921.637740px;}
.y1dd{bottom:928.110540px;}
.y10c{bottom:930.641340px;}
.yd3{bottom:933.854700px;}
.y141{bottom:934.243500px;}
.y215{bottom:937.065180px;}
.y20{bottom:938.897580px;}
.y1a1{bottom:941.735820px;}
.y1dc{bottom:943.596300px;}
.y8{bottom:945.175301px;}
.y10b{bottom:947.922060px;}
.yd2{bottom:951.136860px;}
.y140{bottom:956.563500px;}
.y1a0{bottom:957.221580px;}
.y214{bottom:957.229500px;}
.y1db{bottom:959.082060px;}
.y1f{bottom:962.303340px;}
.y10a{bottom:965.204220px;}
.yd1{bottom:968.419020px;}
.y19f{bottom:972.707340px;}
.y213{bottom:972.715260px;}
.y1da{bottom:974.567820px;}
.ya8{bottom:977.439180px;}
.y109{bottom:982.486380px;}
.y7{bottom:982.942559px;}
.yd0{bottom:985.701180px;}
.y13f{bottom:985.703340px;}
.y1e{bottom:985.709100px;}
.y176{bottom:985.719900px;}
.y212{bottom:988.201020px;}
.y19e{bottom:992.871660px;}
.ya7{bottom:994.721340px;}
.y1d9{bottom:995.443500px;}
.y6{bottom:998.844563px;}
.y108{bottom:1000.479180px;}
.ycf{bottom:1002.620460px;}
.y13e{bottom:1002.622620px;}
.y175{bottom:1002.639180px;}
.y211{bottom:1003.686780px;}
.y19d{bottom:1008.357420px;}
.y1d8{bottom:1008.376140px;}
.y1d{bottom:1008.751980px;}
.ya6{bottom:1011.997020px;}
.y107{bottom:1017.761340px;}
.yce{bottom:1019.902620px;}
.y13d{bottom:1019.904780px;}
.y174{bottom:1019.921340px;}
.y19c{bottom:1023.843180px;}
.y210{bottom:1023.851100px;}
.y1d7{bottom:1023.861900px;}
.ya5{bottom:1029.279180px;}
.y1c{bottom:1032.157740px;}
.y106{bottom:1036.117020px;}
.ycd{bottom:1037.184780px;}
.y13c{bottom:1037.186940px;}
.y173{bottom:1037.201340px;}
.y19b{bottom:1039.328940px;}
.y20f{bottom:1039.336860px;}
.y1d6{bottom:1039.347660px;}
.ya4{bottom:1046.561340px;}
.y5{bottom:1047.544448px;}
.y105{bottom:1053.399180px;}
.ycc{bottom:1054.466940px;}
.y13b{bottom:1054.469100px;}
.y172{bottom:1054.479180px;}
.y1b{bottom:1055.563500px;}
.y19a{bottom:1059.493260px;}
.y20e{bottom:1059.501180px;}
.y1d5{bottom:1059.511980px;}
.y4{bottom:1062.452577px;}
.ya3{bottom:1063.843500px;}
.y104{bottom:1070.681340px;}
.ycb{bottom:1071.749100px;}
.y13a{bottom:1071.751260px;}
.y171{bottom:1071.761340px;}
.y199{bottom:1074.979020px;}
.y20d{bottom:1074.986940px;}
.y1d4{bottom:1074.997740px;}
.y1a{bottom:1083.643500px;}
.ya2{bottom:1086.163500px;}
.y103{bottom:1087.963500px;}
.yca{bottom:1089.031260px;}
.y139{bottom:1089.033420px;}
.y170{bottom:1089.043500px;}
.y198{bottom:1090.464780px;}
.y20c{bottom:1090.472700px;}
.y1d3{bottom:1090.483500px;}
.y3{bottom:1104.195336px;}
.y5a{bottom:1125.729000px;}
.y59{bottom:1142.167500px;}
.y2{bottom:1144.944219px;}
.hc{height:12.920361px;}
.ha{height:12.920383px;}
.hb{height:12.920405px;}
.h1a{height:16.316016px;}
.h6{height:20.151208px;}
.h7{height:23.029952px;}
.h33{height:25.031250px;}
.h3{height:25.908696px;}
.h9{height:28.535089px;}
.h5{height:28.787440px;}
.h1b{height:32.994844px;}
.h30{height:34.433437px;}
.h8{height:34.544928px;}
.h32{height:37.994062px;}
.h26{height:40.310156px;}
.h1e{height:40.348710px;}
.h17{height:42.022969px;}
.h29{height:42.028729px;}
.h2b{height:42.031609px;}
.h21{height:42.037369px;}
.h2d{height:42.040249px;}
.h23{height:42.048889px;}
.h2a{height:42.071929px;}
.h20{height:42.074809px;}
.h28{height:42.086329px;}
.h25{height:42.106489px;}
.h22{height:42.118009px;}
.h2c{height:42.123769px;}
.h27{height:42.218809px;}
.h1d{height:42.440846px;}
.h1c{height:43.264483px;}
.h15{height:45.635625px;}
.h2f{height:45.658665px;}
.h31{height:45.868905px;}
.h24{height:48.607301px;}
.h2e{height:48.644741px;}
.h1f{height:48.728261px;}
.h18{height:48.796875px;}
.h16{height:49.992188px;}
.hf{height:56.604375px;}
.h4{height:60.836034px;}
.h10{height:67.252500px;}
.h19{height:67.500000px;}
.h13{height:73.018665px;}
.h14{height:73.087785px;}
.h11{height:73.110825px;}
.h12{height:73.133865px;}
.he{height:1183.500000px;}
.hd{height:1183.561500px;}
.h2{height:1261.227619px;}
.h0{height:1261.439940px;}
.h1{height:1261.500000px;}
.w5{width:336.000000px;}
.w2{width:346.862448px;}
.w3{width:889.165500px;}
.w4{width:889.500000px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x27{left:44.196000px;}
.x1{left:59.632513px;}
.x8{left:64.601889px;}
.x2f{left:75.535500px;}
.x20{left:83.673000px;}
.x38{left:90.498000px;}
.x12{left:92.513190px;}
.x25{left:94.333500px;}
.x21{left:97.698150px;}
.x4{left:99.387518px;}
.x26{left:100.472850px;}
.x3{left:104.356898px;}
.x16{left:106.999290px;}
.xb{left:108.996240px;}
.x5{left:110.320149px;}
.x10{left:111.617040px;}
.x39{left:112.632240px;}
.x1c{left:114.819510px;}
.xd{left:116.939280px;}
.xf{left:123.067920px;}
.xa{left:126.051600px;}
.x32{left:127.694400px;}
.x14{left:147.045990px;}
.x37{left:152.971800px;}
.x28{left:166.472850px;}
.x19{left:185.839560px;}
.x9{left:187.259700px;}
.x36{left:197.976150px;}
.x15{left:206.397030px;}
.x13{left:208.957350px;}
.x17{left:217.047240px;}
.x2d{left:231.437190px;}
.x11{left:243.733350px;}
.x1b{left:258.963510px;}
.x1f{left:263.925300px;}
.x1e{left:275.009400px;}
.x1a{left:284.704200px;}
.x1d{left:285.998070px;}
.xe{left:296.685840px;}
.x18{left:310.428360px;}
.x30{left:407.462220px;}
.xc{left:417.625680px;}
.x31{left:431.016810px;}
.x2{left:446.249971px;}
.x24{left:455.906490px;}
.x3a{left:462.812880px;}
.x34{left:466.747530px;}
.x23{left:469.937850px;}
.x35{left:481.746570px;}
.x3b{left:484.947120px;}
.x6{left:486.004991px;}
.x22{left:492.793200px;}
.x7{left:496.937607px;}
.x29{left:738.231000px;}
.x2e{left:776.300820px;}
.x2a{left:786.874500px;}
.x33{left:789.265500px;}
.x2c{left:805.135350px;}
.x2b{left:823.480500px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-2.513920pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.317760pt;}
.v1{vertical-align:24.422400pt;}
.ls82{letter-spacing:-6.566400pt;}
.lsf{letter-spacing:-5.591040pt;}
.ls6c{letter-spacing:-5.009920pt;}
.ls15{letter-spacing:-4.736000pt;}
.ls60{letter-spacing:-4.193280pt;}
.ls10{letter-spacing:-3.870720pt;}
.ls39{letter-spacing:-3.494400pt;}
.ls4d{letter-spacing:-3.225600pt;}
.ls69{letter-spacing:-3.112960pt;}
.ls18{letter-spacing:-2.999040pt;}
.ls36{letter-spacing:-2.956800pt;}
.ls3a{letter-spacing:-2.204160pt;}
.ls68{letter-spacing:-2.091520pt;}
.ls7f{letter-spacing:-1.994240pt;}
.ls4e{letter-spacing:-1.666560pt;}
.ls81{letter-spacing:-1.118720pt;}
.ls6a{letter-spacing:-0.924160pt;}
.ls4c{letter-spacing:-0.913920pt;}
.ls7e{letter-spacing:-0.778240pt;}
.ls6b{letter-spacing:-0.583680pt;}
.ls83{letter-spacing:-0.535040pt;}
.ls80{letter-spacing:-0.486400pt;}
.ls67{letter-spacing:-0.437760pt;}
.ls38{letter-spacing:-0.430080pt;}
.ls66{letter-spacing:-0.389120pt;}
.ls4b{letter-spacing:-0.376320pt;}
.ls64{letter-spacing:-0.340480pt;}
.ls12{letter-spacing:-0.322560pt;}
.ls61{letter-spacing:-0.291840pt;}
.ls16{letter-spacing:-0.268800pt;}
.ls65{letter-spacing:-0.243200pt;}
.ls17{letter-spacing:-0.217600pt;}
.ls11{letter-spacing:-0.215040pt;}
.ls63{letter-spacing:-0.194560pt;}
.ls13{letter-spacing:-0.161280pt;}
.ls62{letter-spacing:-0.145920pt;}
.ls14{letter-spacing:-0.107520pt;}
.ls0{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.010752pt;}
.ls22{letter-spacing:0.034560pt;}
.ls49{letter-spacing:0.052267pt;}
.ls31{letter-spacing:0.052800pt;}
.ls25{letter-spacing:0.053333pt;}
.ls34{letter-spacing:0.053867pt;}
.ls23{letter-spacing:0.069120pt;}
.ls27{letter-spacing:0.070080pt;}
.ls4{letter-spacing:0.071680pt;}
.ls5f{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.100352pt;}
.lsa{letter-spacing:0.126720pt;}
.ls1{letter-spacing:0.143360pt;}
.ls1a{letter-spacing:0.168960pt;}
.ls9{letter-spacing:0.211200pt;}
.ls5{letter-spacing:0.215040pt;}
.ls3{letter-spacing:0.229376pt;}
.ls19{letter-spacing:0.253440pt;}
.ls6d{letter-spacing:0.291840pt;}
.ls6f{letter-spacing:0.295680pt;}
.ls1d{letter-spacing:0.322560pt;}
.ls72{letter-spacing:0.337920pt;}
.lse{letter-spacing:0.371200pt;}
.ls6e{letter-spacing:0.380160pt;}
.ls71{letter-spacing:0.389120pt;}
.ls73{letter-spacing:0.486400pt;}
.ls48{letter-spacing:0.698880pt;}
.ls26{letter-spacing:0.860160pt;}
.ls20{letter-spacing:0.913920pt;}
.ls53{letter-spacing:1.021440pt;}
.ls1e{letter-spacing:1.236480pt;}
.ls2e{letter-spacing:1.290240pt;}
.ls6{letter-spacing:1.505280pt;}
.ls7b{letter-spacing:1.556480pt;}
.ls28{letter-spacing:1.591296pt;}
.ls21{letter-spacing:1.612800pt;}
.ls37{letter-spacing:1.827840pt;}
.ls5e{letter-spacing:1.896960pt;}
.ls29{letter-spacing:1.989120pt;}
.ls43{letter-spacing:2.204160pt;}
.ls2f{letter-spacing:2.365440pt;}
.ls5b{letter-spacing:2.675200pt;}
.ls1c{letter-spacing:2.741760pt;}
.ls33{letter-spacing:2.903040pt;}
.ls50{letter-spacing:3.112704pt;}
.ls59{letter-spacing:3.112960pt;}
.ls2a{letter-spacing:3.494400pt;}
.ls74{letter-spacing:3.599360pt;}
.ls7c{letter-spacing:3.988480pt;}
.ls51{letter-spacing:4.107264pt;}
.ls32{letter-spacing:4.300800pt;}
.ls55{letter-spacing:4.328960pt;}
.ls56{letter-spacing:4.377600pt;}
.ls7a{letter-spacing:4.474880pt;}
.ls76{letter-spacing:4.523520pt;}
.ls79{letter-spacing:4.572160pt;}
.ls24{letter-spacing:4.624640pt;}
.ls1b{letter-spacing:4.730880pt;}
.ls40{letter-spacing:4.945920pt;}
.ls45{letter-spacing:5.005056pt;}
.ls2d{letter-spacing:5.214720pt;}
.ls57{letter-spacing:5.301760pt;}
.ls5c{letter-spacing:5.399040pt;}
.ls4f{letter-spacing:5.752320pt;}
.ls2b{letter-spacing:6.343680pt;}
.ls70{letter-spacing:6.469120pt;}
.ls75{letter-spacing:6.615040pt;}
.ls47{letter-spacing:6.676992pt;}
.ls77{letter-spacing:6.712320pt;}
.ls46{letter-spacing:6.881280pt;}
.ls7{letter-spacing:7.526400pt;}
.ls4a{letter-spacing:7.580160pt;}
.ls2c{letter-spacing:7.633920pt;}
.ls3c{letter-spacing:8.064000pt;}
.ls1f{letter-spacing:8.408064pt;}
.ls3d{letter-spacing:8.515584pt;}
.ls41{letter-spacing:8.547840pt;}
.ls3e{letter-spacing:8.709120pt;}
.ls52{letter-spacing:8.924160pt;}
.ls44{letter-spacing:9.085440pt;}
.ls8{letter-spacing:9.672960pt;}
.ls54{letter-spacing:10.554880pt;}
.ls58{letter-spacing:10.798080pt;}
.ls3f{letter-spacing:10.859520pt;}
.lsd{letter-spacing:12.235358pt;}
.lsb{letter-spacing:12.239707pt;}
.ls5d{letter-spacing:12.403200pt;}
.ls5a{letter-spacing:12.597760pt;}
.ls35{letter-spacing:13.171200pt;}
.ls7d{letter-spacing:13.327360pt;}
.ls3b{letter-spacing:14.407680pt;}
.ls30{letter-spacing:14.945280pt;}
.ls78{letter-spacing:16.634880pt;}
.lsc{letter-spacing:24.191707pt;}
.ws2f{word-spacing:-53.760000pt;}
.ws19{word-spacing:-53.134080pt;}
.ws13{word-spacing:-47.820693pt;}
.ws14{word-spacing:-35.913341pt;}
.ws15{word-spacing:-35.866700pt;}
.ws12{word-spacing:-35.865520pt;}
.ws17{word-spacing:-35.864148pt;}
.ws51{word-spacing:-25.597440pt;}
.ws8{word-spacing:-18.135040pt;}
.ws5{word-spacing:-18.063360pt;}
.wsb{word-spacing:-18.020352pt;}
.ws7{word-spacing:-17.991680pt;}
.ws9{word-spacing:-17.920000pt;}
.ws11{word-spacing:-13.440000pt;}
.ws2a{word-spacing:-13.332480pt;}
.wsf{word-spacing:-13.278720pt;}
.wsd{word-spacing:-13.224960pt;}
.ws10{word-spacing:-13.171200pt;}
.wsc{word-spacing:-13.117440pt;}
.ws39{word-spacing:-13.063680pt;}
.wsa{word-spacing:-12.328960pt;}
.ws6{word-spacing:-12.160000pt;}
.ws52{word-spacing:-12.014080pt;}
.ws41{word-spacing:-11.965440pt;}
.ws40{word-spacing:-11.916800pt;}
.ws3e{word-spacing:-11.868160pt;}
.ws3f{word-spacing:-11.819520pt;}
.ws42{word-spacing:-11.770880pt;}
.ws43{word-spacing:-11.722240pt;}
.ws55{word-spacing:-11.624960pt;}
.wse{word-spacing:-11.264000pt;}
.ws32{word-spacing:-11.235840pt;}
.ws53{word-spacing:-10.165760pt;}
.ws44{word-spacing:-10.068480pt;}
.ws30{word-spacing:-9.945600pt;}
.ws2c{word-spacing:-8.709120pt;}
.ws2b{word-spacing:-8.674560pt;}
.ws3{word-spacing:-7.126223pt;}
.ws2{word-spacing:-6.506777pt;}
.ws0{word-spacing:-6.413601pt;}
.ws1{word-spacing:-5.700979pt;}
.ws54{word-spacing:-5.593600pt;}
.ws24{word-spacing:-2.042880pt;}
.ws36{word-spacing:-1.827840pt;}
.ws1a{word-spacing:-0.371200pt;}
.ws5a{word-spacing:-0.340480pt;}
.ws28{word-spacing:-0.253440pt;}
.ws1f{word-spacing:-0.215040pt;}
.ws27{word-spacing:-0.211200pt;}
.ws5d{word-spacing:-0.194560pt;}
.ws29{word-spacing:-0.168960pt;}
.ws34{word-spacing:-0.161280pt;}
.ws5c{word-spacing:-0.145920pt;}
.ws1c{word-spacing:-0.143360pt;}
.ws1b{word-spacing:-0.071680pt;}
.ws33{word-spacing:-0.069120pt;}
.ws31{word-spacing:-0.053760pt;}
.ws4{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.071680pt;}
.ws4b{word-spacing:0.097280pt;}
.ws23{word-spacing:0.107520pt;}
.ws1e{word-spacing:0.143360pt;}
.ws46{word-spacing:0.145920pt;}
.ws22{word-spacing:0.161280pt;}
.ws47{word-spacing:0.194560pt;}
.ws21{word-spacing:0.215040pt;}
.ws25{word-spacing:0.217600pt;}
.ws4a{word-spacing:0.243200pt;}
.ws38{word-spacing:0.268800pt;}
.ws48{word-spacing:0.291840pt;}
.ws2e{word-spacing:0.322560pt;}
.ws49{word-spacing:0.340480pt;}
.ws5b{word-spacing:0.389120pt;}
.ws37{word-spacing:0.430080pt;}
.ws4c{word-spacing:0.437760pt;}
.ws58{word-spacing:0.486400pt;}
.ws4f{word-spacing:0.583680pt;}
.ws57{word-spacing:0.778240pt;}
.ws3b{word-spacing:0.913920pt;}
.ws4e{word-spacing:0.924160pt;}
.ws59{word-spacing:1.118720pt;}
.ws3d{word-spacing:1.666560pt;}
.ws35{word-spacing:2.956800pt;}
.ws4d{word-spacing:3.112960pt;}
.ws3c{word-spacing:3.225600pt;}
.ws26{word-spacing:3.252480pt;}
.ws20{word-spacing:3.870720pt;}
.ws45{word-spacing:4.193280pt;}
.ws50{word-spacing:5.009920pt;}
.ws16{word-spacing:370.211315pt;}
.ws18{word-spacing:370.212982pt;}
.ws2d{word-spacing:2391.030942pt;}
.ws56{word-spacing:2393.421975pt;}
.ws3a{word-spacing:2396.875691pt;}
._13{margin-left:-11.996011pt;}
._1d{margin-left:-11.081759pt;}
._2{margin-left:-8.608768pt;}
._1b{margin-left:-6.894863pt;}
._3{margin-left:-5.806080pt;}
._7{margin-left:-4.870309pt;}
._1{margin-left:-3.584000pt;}
._4{margin-left:-2.415616pt;}
._0{margin-left:-1.195761pt;}
._5{width:0.931840pt;}
._c{width:1.974784pt;}
._8{width:3.386496pt;}
._d{width:4.731264pt;}
._6{width:5.662720pt;}
._b{width:6.709248pt;}
._9{width:7.805952pt;}
._a{width:8.784384pt;}
._19{width:9.741312pt;}
._14{width:10.676736pt;}
._f{width:11.698176pt;}
._1c{width:13.122304pt;}
._17{width:14.515200pt;}
._11{width:15.446084pt;}
._10{width:16.666426pt;}
._18{width:18.092529pt;}
._e{width:19.059712pt;}
._16{width:20.364288pt;}
._15{width:21.987840pt;}
._1a{width:22.907136pt;}
._20{width:23.814144pt;}
._1f{width:39.163361pt;}
._1e{width:49.394417pt;}
._12{width:200.156601pt;}
.fs11{font-size:21.333333pt;}
.fsb{font-size:21.760000pt;}
.fse{font-size:23.349920pt;}
.fs3{font-size:24.736450pt;}
.fs4{font-size:28.270228pt;}
.fs0{font-size:31.804007pt;}
.fs10{font-size:34.560000pt;}
.fs2{font-size:35.337785pt;}
.fsc{font-size:42.240000pt;}
.fs5{font-size:42.405342pt;}
.fsd{font-size:47.820693pt;}
.fs8{font-size:48.640000pt;}
.fsf{font-size:53.134080pt;}
.fsa{font-size:53.760000pt;}
.fs9{font-size:64.000000pt;}
.fs1{font-size:70.675571pt;}
.fs7{font-size:71.680000pt;}
.fs6{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.188729pt;}
.y15{bottom:3.533762pt;}
.yd{bottom:3.533775pt;}
.yf{bottom:3.533777pt;}
.y13{bottom:3.533799pt;}
.y244{bottom:6.666667pt;}
.y57{bottom:6.862667pt;}
.y55{bottom:19.342667pt;}
.y19{bottom:22.086091pt;}
.y54{bottom:31.822667pt;}
.y5b{bottom:31.880000pt;}
.y18{bottom:42.405318pt;}
.y52{bottom:43.982667pt;}
.y5c{bottom:54.462667pt;}
.y51{bottom:55.182667pt;}
.y5d{bottom:61.436000pt;}
.ya1{bottom:84.514827pt;}
.y197{bottom:87.057547pt;}
.yc9{bottom:87.707787pt;}
.y102{bottom:87.714827pt;}
.y16f{bottom:92.191627pt;}
.y138{bottom:97.305867pt;}
.ya0{bottom:99.876747pt;}
.y50{bottom:100.696000pt;}
.y1d2{bottom:100.713227pt;}
.y196{bottom:100.822667pt;}
.yc8{bottom:103.069707pt;}
.y101{bottom:103.076747pt;}
.y16e{bottom:107.230987pt;}
.y58{bottom:107.558667pt;}
.y137{bottom:112.667787pt;}
.y1d1{bottom:114.794507pt;}
.y195{bottom:114.903947pt;}
.y9f{bottom:115.217547pt;}
.yc7{bottom:118.431627pt;}
.y100{bottom:118.438667pt;}
.y56{bottom:120.038667pt;}
.y16d{bottom:122.592907pt;}
.y85{bottom:126.425867pt;}
.y136{bottom:127.707147pt;}
.y1d0{bottom:128.559627pt;}
.y9e{bottom:130.579467pt;}
.y194{bottom:132.499467pt;}
.yc6{bottom:133.470987pt;}
.y16c{bottom:137.954827pt;}
.yff{bottom:138.278667pt;}
.y84{bottom:141.787787pt;}
.y1cf{bottom:142.324747pt;}
.y135{bottom:143.069067pt;}
.y53{bottom:144.678667pt;}
.y9d{bottom:145.941387pt;}
.y243{bottom:146.104587pt;}
.y193{bottom:146.264587pt;}
.yc5{bottom:148.832907pt;}
.y20b{bottom:149.153547pt;}
.y16b{bottom:153.316747pt;}
.y83{bottom:157.149707pt;}
.y134{bottom:158.430987pt;}
.y1ce{bottom:159.920267pt;}
.y192{bottom:160.029707pt;}
.y9c{bottom:161.303307pt;}
.y20a{bottom:162.918667pt;}
.y242{bottom:164.028427pt;}
.yfe{bottom:164.184587pt;}
.yc4{bottom:164.194827pt;}
.y16a{bottom:168.678667pt;}
.y82{bottom:172.189067pt;}
.y1cd{bottom:173.685387pt;}
.y133{bottom:173.792907pt;}
.y9b{bottom:176.665227pt;}
.y241{bottom:177.793547pt;}
.y191{bottom:177.953547pt;}
.yfd{bottom:179.546507pt;}
.yc3{bottom:179.556747pt;}
.y209{bottom:181.158667pt;}
.y81{bottom:187.550987pt;}
.y42{bottom:188.178827pt;}
.y169{bottom:188.518667pt;}
.y132{bottom:189.154827pt;}
.y240{bottom:191.558667pt;}
.y1cc{bottom:191.609227pt;}
.y190{bottom:191.718667pt;}
.y208{bottom:192.650507pt;}
.yfc{bottom:194.585867pt;}
.yc2{bottom:194.918667pt;}
.y9a{bottom:195.870987pt;}
.y80{bottom:202.912907pt;}
.y41{bottom:203.540747pt;}
.y131{bottom:204.516747pt;}
.y1cb{bottom:205.374347pt;}
.y207{bottom:206.731787pt;}
.y4f{bottom:206.740107pt;}
.y23f{bottom:209.482507pt;}
.yfb{bottom:209.947787pt;}
.y18f{bottom:210.598667pt;}
.y99{bottom:211.232907pt;}
.y168{bottom:214.420107pt;}
.yc1{bottom:214.758667pt;}
.y7f{bottom:218.274827pt;}
.y40{bottom:218.580107pt;}
.y1ca{bottom:219.139467pt;}
.y130{bottom:219.876747pt;}
.y206{bottom:220.496907pt;}
.y4e{bottom:222.102027pt;}
.y23e{bottom:223.247627pt;}
.yfa{bottom:225.309707pt;}
.y98{bottom:226.594827pt;}
.y167{bottom:229.782027pt;}
.y7e{bottom:233.636747pt;}
.y3f{bottom:233.942027pt;}
.y12f{bottom:235.227787pt;}
.y23d{bottom:237.012747pt;}
.y1c9{bottom:237.063307pt;}
.y4d{bottom:237.463947pt;}
.y205{bottom:238.092427pt;}
.y18e{bottom:240.357387pt;}
.yf9{bottom:240.671627pt;}
.y97{bottom:241.956747pt;}
.yc0{bottom:244.514187pt;}
.y166{bottom:245.143947pt;}
.y7d{bottom:248.969227pt;}
.y3e{bottom:249.303947pt;}
.y12e{bottom:250.589707pt;}
.y23c{bottom:250.777867pt;}
.y1c8{bottom:250.828427pt;}
.y204{bottom:251.857547pt;}
.y4c{bottom:252.825867pt;}
.y18d{bottom:255.719307pt;}
.yf8{bottom:256.033547pt;}
.y96{bottom:257.315467pt;}
.ybf{bottom:259.876107pt;}
.y165{bottom:260.505867pt;}
.y7c{bottom:264.331147pt;}
.y1c7{bottom:264.593547pt;}
.y3d{bottom:264.665867pt;}
.y203{bottom:265.938827pt;}
.y12d{bottom:265.951627pt;}
.y4b{bottom:268.187787pt;}
.y23b{bottom:268.701707pt;}
.y18c{bottom:270.758667pt;}
.yf7{bottom:272.349707pt;}
.y95{bottom:272.677387pt;}
.ybe{bottom:275.560587pt;}
.y164{bottom:275.867787pt;}
.y1c6{bottom:278.358667pt;}
.y7b{bottom:279.693067pt;}
.y3c{bottom:280.027787pt;}
.y12c{bottom:281.313547pt;}
.y23a{bottom:282.466827pt;}
.y4a{bottom:283.227147pt;}
.y202{bottom:283.534347pt;}
.yf6{bottom:287.711627pt;}
.y94{bottom:288.039307pt;}
.y18b{bottom:290.918667pt;}
.y163{bottom:291.229707pt;}
.ybd{bottom:291.876747pt;}
.y7a{bottom:295.054987pt;}
.y3b{bottom:295.389707pt;}
.y239{bottom:296.231947pt;}
.y1c5{bottom:296.282507pt;}
.y12b{bottom:296.352907pt;}
.y201{bottom:297.299467pt;}
.y49{bottom:298.589067pt;}
.yf5{bottom:303.073547pt;}
.y93{bottom:304.355467pt;}
.y162{bottom:306.269067pt;}
.y238{bottom:309.997067pt;}
.y1c4{bottom:310.047627pt;}
.y79{bottom:310.416907pt;}
.y3a{bottom:310.751627pt;}
.y200{bottom:311.064587pt;}
.y12a{bottom:311.714827pt;}
.y48{bottom:313.950987pt;}
.yf4{bottom:318.435467pt;}
.y18a{bottom:320.662027pt;}
.y161{bottom:321.630987pt;}
.y1c3{bottom:323.812747pt;}
.y78{bottom:325.778827pt;}
.y39{bottom:326.113547pt;}
.y129{bottom:327.076747pt;}
.y237{bottom:327.920907pt;}
.y1ff{bottom:328.988427pt;}
.y47{bottom:329.312907pt;}
.yf3{bottom:333.797387pt;}
.y189{bottom:336.023947pt;}
.y160{bottom:336.992907pt;}
.y1c2{bottom:337.577867pt;}
.y77{bottom:341.140747pt;}
.y38{bottom:341.475467pt;}
.y236{bottom:341.686027pt;}
.y128{bottom:342.438667pt;}
.y1fe{bottom:342.753547pt;}
.y46{bottom:344.674827pt;}
.yf2{bottom:349.159307pt;}
.y188{bottom:351.385867pt;}
.y15f{bottom:352.354827pt;}
.y235{bottom:355.451147pt;}
.y1c1{bottom:355.501707pt;}
.y76{bottom:356.180107pt;}
.y1fd{bottom:356.518667pt;}
.y37{bottom:356.837387pt;}
.y45{bottom:360.036747pt;}
.y127{bottom:362.278667pt;}
.yf1{bottom:364.155147pt;}
.y187{bottom:366.747787pt;}
.y15e{bottom:367.716747pt;}
.y1c0{bottom:369.266827pt;}
.y75{bottom:371.542027pt;}
.y36{bottom:372.199307pt;}
.y234{bottom:373.374987pt;}
.y1fc{bottom:375.078667pt;}
.y44{bottom:375.398667pt;}
.yf0{bottom:379.517067pt;}
.y186{bottom:381.787147pt;}
.y15d{bottom:383.078667pt;}
.y1fb{bottom:386.574347pt;}
.y74{bottom:386.903947pt;}
.y233{bottom:387.140107pt;}
.y1bf{bottom:387.190667pt;}
.y35{bottom:387.238667pt;}
.y126{bottom:388.176267pt;}
.y43{bottom:395.238667pt;}
.yef{bottom:395.833227pt;}
.y185{bottom:397.149067pt;}
.y1fa{bottom:400.339467pt;}
.y232{bottom:400.905227pt;}
.y1be{bottom:400.955787pt;}
.y73{bottom:402.265867pt;}
.y15c{bottom:402.918667pt;}
.y125{bottom:403.538187pt;}
.y34{bottom:407.078667pt;}
.yee{bottom:411.195147pt;}
.y184{bottom:412.510987pt;}
.y1f9{bottom:414.104587pt;}
.y231{bottom:414.670347pt;}
.y1bd{bottom:414.720907pt;}
.y72{bottom:417.627787pt;}
.y124{bottom:418.900107pt;}
.yed{bottom:426.557067pt;}
.y183{bottom:427.872907pt;}
.y1bc{bottom:428.486027pt;}
.y15b{bottom:428.837387pt;}
.y1f8{bottom:432.028427pt;}
.y230{bottom:432.594187pt;}
.y71{bottom:432.989707pt;}
.y123{bottom:434.262027pt;}
.yec{bottom:441.918987pt;}
.ybc{bottom:442.592907pt;}
.y182{bottom:443.234827pt;}
.y15a{bottom:444.199307pt;}
.y1f7{bottom:445.793547pt;}
.y22f{bottom:446.359307pt;}
.y1bb{bottom:446.409867pt;}
.y33{bottom:447.398667pt;}
.y70{bottom:448.351627pt;}
.y122{bottom:449.623947pt;}
.yeb{bottom:457.280907pt;}
.ybb{bottom:457.954827pt;}
.y181{bottom:458.596747pt;}
.y1f6{bottom:459.558667pt;}
.y159{bottom:459.561227pt;}
.y22e{bottom:460.124427pt;}
.y1ba{bottom:460.174987pt;}
.y6f{bottom:463.713547pt;}
.y121{bottom:464.985867pt;}
.y32{bottom:468.198667pt;}
.yea{bottom:472.642827pt;}
.yba{bottom:473.316747pt;}
.y1b9{bottom:473.940107pt;}
.y180{bottom:473.947787pt;}
.y158{bottom:474.923147pt;}
.y22d{bottom:477.719947pt;}
.y1f5{bottom:477.798667pt;}
.y6e{bottom:479.075467pt;}
.y120{bottom:480.347787pt;}
.y31{bottom:482.905867pt;}
.ye9{bottom:488.004747pt;}
.yb9{bottom:488.678667pt;}
.y1f4{bottom:489.291787pt;}
.y17f{bottom:489.309707pt;}
.y157{bottom:490.285067pt;}
.y92{bottom:491.227147pt;}
.y22c{bottom:491.801227pt;}
.y1b8{bottom:491.863947pt;}
.y6d{bottom:494.437387pt;}
.y11f{bottom:495.709707pt;}
.y1f3{bottom:503.056907pt;}
.y30{bottom:503.388427pt;}
.ye8{bottom:504.320907pt;}
.y17e{bottom:504.671627pt;}
.yb8{bottom:504.994827pt;}
.y22b{bottom:505.566347pt;}
.y1b7{bottom:505.629067pt;}
.y156{bottom:506.274827pt;}
.y91{bottom:506.589067pt;}
.y6c{bottom:509.799307pt;}
.y11e{bottom:510.749067pt;}
.y1f2{bottom:516.822027pt;}
.y22a{bottom:519.331467pt;}
.y1b6{bottom:519.394187pt;}
.ye7{bottom:519.682827pt;}
.y17d{bottom:520.033547pt;}
.yb7{bottom:520.356747pt;}
.y155{bottom:521.636747pt;}
.y90{bottom:521.950987pt;}
.y2f{bottom:524.193547pt;}
.y6b{bottom:524.838667pt;}
.y11d{bottom:526.110987pt;}
.y1f1{bottom:530.587147pt;}
.ye6{bottom:534.722187pt;}
.y17c{bottom:535.395467pt;}
.yb6{bottom:535.700107pt;}
.y229{bottom:536.926987pt;}
.y154{bottom:536.976267pt;}
.y1b5{bottom:536.989707pt;}
.y8f{bottom:537.312907pt;}
.y11c{bottom:541.472907pt;}
.y1f0{bottom:544.668427pt;}
.y6a{bottom:544.678667pt;}
.y2e{bottom:544.978187pt;}
.ye5{bottom:550.084107pt;}
.y17b{bottom:550.757387pt;}
.y228{bottom:551.008267pt;}
.yb5{bottom:551.062027pt;}
.y1b4{bottom:551.070987pt;}
.y153{bottom:552.338187pt;}
.y8e{bottom:552.674827pt;}
.y11b{bottom:556.834827pt;}
.yb{bottom:558.336985pt;}
.y1ef{bottom:558.433547pt;}
.y227{bottom:564.773387pt;}
.y1b3{bottom:564.836107pt;}
.ye4{bottom:565.446027pt;}
.y2d{bottom:565.460747pt;}
.y17a{bottom:565.796747pt;}
.yb4{bottom:566.423947pt;}
.y152{bottom:567.700107pt;}
.y8d{bottom:568.036747pt;}
.y69{bottom:570.573067pt;}
.y11a{bottom:572.196747pt;}
.y1ee{bottom:572.198667pt;}
.y1b2{bottom:578.601227pt;}
.ye3{bottom:580.807947pt;}
.y179{bottom:581.158667pt;}
.yb3{bottom:581.785867pt;}
.y226{bottom:582.368907pt;}
.y8c{bottom:583.398667pt;}
.y151{bottom:584.016267pt;}
.y68{bottom:585.934987pt;}
.y2c{bottom:586.265867pt;}
.y119{bottom:587.558667pt;}
.y1ed{bottom:590.438667pt;}
.y225{bottom:596.134027pt;}
.ye2{bottom:596.169867pt;}
.y1b1{bottom:596.196747pt;}
.yb2{bottom:596.825227pt;}
.ya{bottom:598.091993pt;}
.y150{bottom:599.378187pt;}
.y67{bottom:601.296907pt;}
.y178{bottom:601.318667pt;}
.y1ec{bottom:601.875467pt;}
.y8b{bottom:602.918667pt;}
.y2b{bottom:607.070987pt;}
.y118{bottom:607.398667pt;}
.y224{bottom:610.215307pt;}
.y1b0{bottom:610.278027pt;}
.ye1{bottom:611.531787pt;}
.yb1{bottom:612.187147pt;}
.y14f{bottom:614.740107pt;}
.y1eb{bottom:615.640587pt;}
.y66{bottom:616.658827pt;}
.y8a{bottom:621.798667pt;}
.ye0{bottom:626.893707pt;}
.yb0{bottom:627.549067pt;}
.y2a{bottom:627.553547pt;}
.y223{bottom:627.810827pt;}
.y1af{bottom:627.873547pt;}
.y14e{bottom:630.102027pt;}
.y177{bottom:631.056267pt;}
.y65{bottom:632.020747pt;}
.y117{bottom:633.310987pt;}
.y9{bottom:633.429779pt;}
.y1ea{bottom:633.564427pt;}
.y222{bottom:641.575947pt;}
.y1ae{bottom:641.633547pt;}
.ydf{bottom:642.255627pt;}
.yaf{bottom:642.910987pt;}
.y14d{bottom:646.418187pt;}
.y1e9{bottom:647.329547pt;}
.y89{bottom:647.373707pt;}
.y64{bottom:647.382667pt;}
.y29{bottom:648.353547pt;}
.y116{bottom:648.672907pt;}
.y221{bottom:655.341067pt;}
.y1ad{bottom:655.398667pt;}
.yae{bottom:658.272907pt;}
.yde{bottom:658.571787pt;}
.y1e8{bottom:661.094667pt;}
.y14c{bottom:661.780107pt;}
.y88{bottom:662.735627pt;}
.y63{bottom:662.744587pt;}
.y115{bottom:664.034827pt;}
.y28{bottom:669.127947pt;}
.y1ac{bottom:673.206027pt;}
.y220{bottom:673.264907pt;}
.ydd{bottom:673.933707pt;}
.y14b{bottom:676.819467pt;}
.yad{bottom:677.476107pt;}
.y87{bottom:678.097547pt;}
.y62{bottom:678.106507pt;}
.y1e7{bottom:679.018507pt;}
.y114{bottom:679.396747pt;}
.y17{bottom:681.135789pt;}
.y1ab{bottom:686.971147pt;}
.y21f{bottom:687.030027pt;}
.y27{bottom:689.610507pt;}
.ydc{bottom:690.249867pt;}
.y14a{bottom:692.181387pt;}
.y1e6{bottom:692.783627pt;}
.yac{bottom:692.838027pt;}
.y86{bottom:693.459467pt;}
.y61{bottom:693.468427pt;}
.y1aa{bottom:700.736267pt;}
.y21e{bottom:700.795147pt;}
.y16{bottom:702.338460pt;}
.y113{bottom:702.755467pt;}
.ydb{bottom:705.611787pt;}
.y1e5{bottom:706.548747pt;}
.y149{bottom:707.543307pt;}
.yab{bottom:708.199947pt;}
.y60{bottom:708.830347pt;}
.y26{bottom:710.415627pt;}
.y1a9{bottom:714.501387pt;}
.y21d{bottom:714.560267pt;}
.y14{bottom:714.895431pt;}
.y112{bottom:717.794827pt;}
.y1e4{bottom:720.313867pt;}
.yda{bottom:720.651147pt;}
.y148{bottom:722.905227pt;}
.yaa{bottom:723.561867pt;}
.y5f{bottom:728.036107pt;}
.y1a8{bottom:728.266507pt;}
.y12{bottom:729.030509pt;}
.y25{bottom:731.220747pt;}
.y21c{bottom:732.484107pt;}
.y111{bottom:733.156747pt;}
.y1e3{bottom:734.078987pt;}
.yd9{bottom:736.967307pt;}
.y147{bottom:738.267147pt;}
.ya9{bottom:739.878027pt;}
.y1a7{bottom:746.190347pt;}
.y21b{bottom:746.249227pt;}
.y5e{bottom:748.518667pt;}
.y1e2{bottom:752.002827pt;}
.y24{bottom:752.025867pt;}
.yd8{bottom:752.329227pt;}
.y146{bottom:753.629067pt;}
.y1a6{bottom:759.955467pt;}
.y21a{bottom:760.014347pt;}
.y110{bottom:764.834827pt;}
.y11{bottom:765.063029pt;}
.y1e1{bottom:765.767947pt;}
.yd7{bottom:768.645387pt;}
.y145{bottom:768.990987pt;}
.y23{bottom:772.508427pt;}
.y1a5{bottom:773.720587pt;}
.y219{bottom:773.779467pt;}
.y1e0{bottom:779.533067pt;}
.y10f{bottom:780.196747pt;}
.yd6{bottom:784.007307pt;}
.y144{bottom:784.352907pt;}
.y10{bottom:786.265701pt;}
.y218{bottom:787.544587pt;}
.y1a4{bottom:791.644427pt;}
.y1df{bottom:793.298187pt;}
.y22{bottom:793.313547pt;}
.y10e{bottom:795.558667pt;}
.ye{bottom:798.822656pt;}
.yd5{bottom:799.369227pt;}
.y143{bottom:799.714827pt;}
.y1a3{bottom:805.409547pt;}
.y217{bottom:805.468427pt;}
.y1de{bottom:807.063307pt;}
.y10d{bottom:810.920587pt;}
.yc{bottom:812.957773pt;}
.y21{bottom:814.093067pt;}
.yd4{bottom:814.731147pt;}
.y142{bottom:815.076747pt;}
.y1a2{bottom:819.174667pt;}
.y216{bottom:819.233547pt;}
.y1dd{bottom:824.987147pt;}
.y10c{bottom:827.236747pt;}
.yd3{bottom:830.093067pt;}
.y141{bottom:830.438667pt;}
.y215{bottom:832.946827pt;}
.y20{bottom:834.575627pt;}
.y1a1{bottom:837.098507pt;}
.y1dc{bottom:838.752267pt;}
.y8{bottom:840.155823pt;}
.y10b{bottom:842.597387pt;}
.yd2{bottom:845.454987pt;}
.y140{bottom:850.278667pt;}
.y1a0{bottom:850.863627pt;}
.y214{bottom:850.870667pt;}
.y1db{bottom:852.517387pt;}
.y1f{bottom:855.380747pt;}
.y10a{bottom:857.959307pt;}
.yd1{bottom:860.816907pt;}
.y19f{bottom:864.628747pt;}
.y213{bottom:864.635787pt;}
.y1da{bottom:866.282507pt;}
.ya8{bottom:868.834827pt;}
.y109{bottom:873.321227pt;}
.y7{bottom:873.726719pt;}
.yd0{bottom:876.178827pt;}
.y13f{bottom:876.180747pt;}
.y1e{bottom:876.185867pt;}
.y176{bottom:876.195467pt;}
.y212{bottom:878.400907pt;}
.y19e{bottom:882.552587pt;}
.ya7{bottom:884.196747pt;}
.y1d9{bottom:884.838667pt;}
.y6{bottom:887.861834pt;}
.y108{bottom:889.314827pt;}
.ycf{bottom:891.218187pt;}
.y13e{bottom:891.220107pt;}
.y175{bottom:891.234827pt;}
.y211{bottom:892.166027pt;}
.y19d{bottom:896.317707pt;}
.y1d8{bottom:896.334347pt;}
.y1d{bottom:896.668427pt;}
.ya6{bottom:899.552907pt;}
.y107{bottom:904.676747pt;}
.yce{bottom:906.580107pt;}
.y13d{bottom:906.582027pt;}
.y174{bottom:906.596747pt;}
.y19c{bottom:910.082827pt;}
.y210{bottom:910.089867pt;}
.y1d7{bottom:910.099467pt;}
.ya5{bottom:914.914827pt;}
.y1c{bottom:917.473547pt;}
.y106{bottom:920.992907pt;}
.ycd{bottom:921.942027pt;}
.y13c{bottom:921.943947pt;}
.y173{bottom:921.956747pt;}
.y19b{bottom:923.847947pt;}
.y20f{bottom:923.854987pt;}
.y1d6{bottom:923.864587pt;}
.ya4{bottom:930.276747pt;}
.y5{bottom:931.150621pt;}
.y105{bottom:936.354827pt;}
.ycc{bottom:937.303947pt;}
.y13b{bottom:937.305867pt;}
.y172{bottom:937.314827pt;}
.y1b{bottom:938.278667pt;}
.y19a{bottom:941.771787pt;}
.y20e{bottom:941.778827pt;}
.y1d5{bottom:941.788427pt;}
.y4{bottom:944.402290pt;}
.ya3{bottom:945.638667pt;}
.y104{bottom:951.716747pt;}
.ycb{bottom:952.665867pt;}
.y13a{bottom:952.667787pt;}
.y171{bottom:952.676747pt;}
.y199{bottom:955.536907pt;}
.y20d{bottom:955.543947pt;}
.y1d4{bottom:955.553547pt;}
.y1a{bottom:963.238667pt;}
.ya2{bottom:965.478667pt;}
.y103{bottom:967.078667pt;}
.yca{bottom:968.027787pt;}
.y139{bottom:968.029707pt;}
.y170{bottom:968.038667pt;}
.y198{bottom:969.302027pt;}
.y20c{bottom:969.309067pt;}
.y1d3{bottom:969.318667pt;}
.y3{bottom:981.506965pt;}
.y5a{bottom:1000.648000pt;}
.y59{bottom:1015.260000pt;}
.y2{bottom:1017.728195pt;}
.hc{height:11.484765pt;}
.ha{height:11.484785pt;}
.hb{height:11.484804pt;}
.h1a{height:14.503125pt;}
.h6{height:17.912185pt;}
.h7{height:20.471069pt;}
.h33{height:22.250000pt;}
.h3{height:23.029952pt;}
.h9{height:25.364524pt;}
.h5{height:25.588836pt;}
.h1b{height:29.328750pt;}
.h30{height:30.607500pt;}
.h8{height:30.706603pt;}
.h32{height:33.772500pt;}
.h26{height:35.831250pt;}
.h1e{height:35.865520pt;}
.h17{height:37.353750pt;}
.h29{height:37.358870pt;}
.h2b{height:37.361430pt;}
.h21{height:37.366550pt;}
.h2d{height:37.369110pt;}
.h23{height:37.376790pt;}
.h2a{height:37.397270pt;}
.h20{height:37.399830pt;}
.h28{height:37.410070pt;}
.h25{height:37.427990pt;}
.h22{height:37.438230pt;}
.h2c{height:37.443350pt;}
.h27{height:37.527830pt;}
.h1d{height:37.725197pt;}
.h1c{height:38.457318pt;}
.h15{height:40.565000pt;}
.h2f{height:40.585480pt;}
.h31{height:40.772360pt;}
.h24{height:43.206490pt;}
.h2e{height:43.239770pt;}
.h1f{height:43.314010pt;}
.h18{height:43.375000pt;}
.h16{height:44.437500pt;}
.hf{height:50.315000pt;}
.h4{height:54.076474pt;}
.h10{height:59.780000pt;}
.h19{height:60.000000pt;}
.h13{height:64.905480pt;}
.h14{height:64.966920pt;}
.h11{height:64.987400pt;}
.h12{height:65.007880pt;}
.he{height:1052.000000pt;}
.hd{height:1052.054667pt;}
.h2{height:1121.091217pt;}
.h0{height:1121.279947pt;}
.h1{height:1121.333333pt;}
.w5{width:298.666667pt;}
.w2{width:308.322176pt;}
.w3{width:790.369333pt;}
.w4{width:790.666667pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x27{left:39.285333pt;}
.x1{left:53.006678pt;}
.x8{left:57.423901pt;}
.x2f{left:67.142667pt;}
.x20{left:74.376000pt;}
.x38{left:80.442667pt;}
.x12{left:82.233947pt;}
.x25{left:83.852000pt;}
.x21{left:86.842800pt;}
.x4{left:88.344460pt;}
.x26{left:89.309200pt;}
.x3{left:92.761687pt;}
.x16{left:95.110480pt;}
.xb{left:96.885547pt;}
.x5{left:98.062355pt;}
.x10{left:99.215147pt;}
.x39{left:100.117547pt;}
.x1c{left:102.061787pt;}
.xd{left:103.946027pt;}
.xf{left:109.393707pt;}
.xa{left:112.045867pt;}
.x32{left:113.506133pt;}
.x14{left:130.707547pt;}
.x37{left:135.974933pt;}
.x28{left:147.975867pt;}
.x19{left:165.190720pt;}
.x9{left:166.453067pt;}
.x36{left:175.978800pt;}
.x15{left:183.464027pt;}
.x13{left:185.739867pt;}
.x17{left:192.930880pt;}
.x2d{left:205.721947pt;}
.x11{left:216.651867pt;}
.x1b{left:230.189787pt;}
.x1f{left:234.600267pt;}
.x1e{left:244.452800pt;}
.x1a{left:253.070400pt;}
.x1d{left:254.220507pt;}
.xe{left:263.720747pt;}
.x18{left:275.936320pt;}
.x30{left:362.188640pt;}
.xc{left:371.222827pt;}
.x31{left:383.126053pt;}
.x2{left:396.666641pt;}
.x24{left:405.250213pt;}
.x3a{left:411.389227pt;}
.x34{left:414.886693pt;}
.x23{left:417.722533pt;}
.x35{left:428.219173pt;}
.x3b{left:431.064107pt;}
.x6{left:432.004436pt;}
.x22{left:438.038400pt;}
.x7{left:441.722318pt;}
.x29{left:656.205333pt;}
.x2e{left:690.045173pt;}
.x2a{left:699.444000pt;}
.x33{left:701.569333pt;}
.x2c{left:715.675867pt;}
.x2b{left:731.982667pt;}
}




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