
    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_2f5d782b4a30b5988e639120.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b68107bdbe8af9e4132d5dc2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734000;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_b68107bdbe8af9e4132d5dc2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;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_5167798461a03c65e3afdfdd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937000;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_3c58762ae998f18ae0b6b2ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.840000;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_4cc2a1b6611e5d4f92d0ea42.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931000;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_fd1c909afe5c59ba01ebf751.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_3337e9002535c035adc174be.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2f92166c0eac78dd3591901e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070312;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_c14af6a4f75540c7adaa21a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fed2e0c71c3883ba81b70dbc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_750a45a580efe83dd8c64a8f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740234;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_49a19c3f88405b3f660f331f.woff2')format("woff");}.fff{font-family:fff;line-height:0.730957;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_308cccf817d105aa8d283fd1.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.575000;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_22c3716e46863785dee3ee97.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.575000;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_e857b3a7fcca01a5d4d3f628.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_325287f7e0b5ff9cea139b16.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_bb9e2897d72fff080c3025ea.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.vc{vertical-align:-91.997280px;}
.vb{vertical-align:-46.019520px;}
.v14{vertical-align:-35.408160px;}
.v12{vertical-align:-32.196960px;}
.vd{vertical-align:-30.651840px;}
.v5{vertical-align:-29.148480px;}
.v2{vertical-align:-23.760000px;}
.v10{vertical-align:-21.214080px;}
.v3{vertical-align:-18.000000px;}
.va{vertical-align:-16.871040px;}
.v8{vertical-align:-15.325920px;}
.v16{vertical-align:-3.313440px;}
.v17{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.545120px;}
.v4{vertical-align:18.000000px;}
.v15{vertical-align:20.067840px;}
.v18{vertical-align:21.600000px;}
.v1{vertical-align:23.760000px;}
.vf{vertical-align:26.058240px;}
.v7{vertical-align:30.651840px;}
.ve{vertical-align:35.287200px;}
.v11{vertical-align:36.581760px;}
.v6{vertical-align:44.474400px;}
.v13{vertical-align:46.019520px;}
.lsd0{letter-spacing:-2.031840px;}
.lsc1{letter-spacing:-1.733040px;}
.lsbf{letter-spacing:-1.553760px;}
.lsbe{letter-spacing:-1.494000px;}
.lsc7{letter-spacing:-1.314000px;}
.lsc0{letter-spacing:-1.195200px;}
.lscf{letter-spacing:-1.194000px;}
.lsc2{letter-spacing:-1.075680px;}
.ls6e{letter-spacing:-1.015920px;}
.ls2c{letter-spacing:-0.836640px;}
.ls61{letter-spacing:-0.776880px;}
.lsce{letter-spacing:-0.774000px;}
.ls20{letter-spacing:-0.758160px;}
.ls1d{letter-spacing:-0.673920px;}
.lscb{letter-spacing:-0.660000px;}
.ls2d{letter-spacing:-0.657360px;}
.lsca{letter-spacing:-0.600000px;}
.ls87{letter-spacing:-0.597600px;}
.ls85{letter-spacing:-0.594000px;}
.ls2e{letter-spacing:-0.486000px;}
.ls60{letter-spacing:-0.478080px;}
.ls76{letter-spacing:-0.385920px;}
.ls45{letter-spacing:-0.378000px;}
.ls1e{letter-spacing:-0.336960px;}
.ls74{letter-spacing:-0.334080px;}
.ls47{letter-spacing:-0.324000px;}
.ls2b{letter-spacing:-0.298800px;}
.lsb2{letter-spacing:-0.270000px;}
.ls77{letter-spacing:-0.252000px;}
.ls28{letter-spacing:-0.239040px;}
.lsb4{letter-spacing:-0.216000px;}
.ls75{letter-spacing:-0.192960px;}
.ls46{letter-spacing:-0.167040px;}
.ls48{letter-spacing:-0.162000px;}
.ls27{letter-spacing:-0.119520px;}
.lsa0{letter-spacing:-0.108000px;}
.ls1f{letter-spacing:-0.084240px;}
.ls22{letter-spacing:-0.072000px;}
.lsc6{letter-spacing:-0.066240px;}
.lscc{letter-spacing:-0.060000px;}
.ls2a{letter-spacing:-0.059760px;}
.lsb3{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.lsbb{letter-spacing:0.005976px;}
.lsb9{letter-spacing:0.017928px;}
.lsc3{letter-spacing:0.033120px;}
.ls5c{letter-spacing:0.047808px;}
.ls35{letter-spacing:0.053784px;}
.ls6d{letter-spacing:0.059760px;}
.lsc8{letter-spacing:0.060000px;}
.lsa4{letter-spacing:0.070200px;}
.ls8c{letter-spacing:0.107568px;}
.ls3e{letter-spacing:0.108000px;}
.ls3f{letter-spacing:0.119520px;}
.lsc4{letter-spacing:0.120000px;}
.ls5f{letter-spacing:0.124200px;}
.ls72{letter-spacing:0.125280px;}
.ls67{letter-spacing:0.131472px;}
.ls5a{letter-spacing:0.137448px;}
.ls4{letter-spacing:0.144000px;}
.lsbd{letter-spacing:0.161352px;}
.ls41{letter-spacing:0.162000px;}
.lsc5{letter-spacing:0.179280px;}
.ls6f{letter-spacing:0.180000px;}
.ls9f{letter-spacing:0.194400px;}
.ls1c{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.239040px;}
.lscd{letter-spacing:0.240000px;}
.ls73{letter-spacing:0.252000px;}
.lsb7{letter-spacing:0.262944px;}
.ls44{letter-spacing:0.270000px;}
.ls86{letter-spacing:0.270720px;}
.lsb5{letter-spacing:0.280872px;}
.ls21{letter-spacing:0.288000px;}
.ls56{letter-spacing:0.316728px;}
.lsb1{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.336960px;}
.ls1b{letter-spacing:0.337680px;}
.ls8e{letter-spacing:0.352584px;}
.ls29{letter-spacing:0.358560px;}
.lsb8{letter-spacing:0.364536px;}
.ls8d{letter-spacing:0.370512px;}
.ls42{letter-spacing:0.378000px;}
.lsb0{letter-spacing:0.415800px;}
.lsc{letter-spacing:0.418320px;}
.ls6c{letter-spacing:0.421200px;}
.ls92{letter-spacing:0.436248px;}
.ls32{letter-spacing:0.442224px;}
.ls90{letter-spacing:0.460152px;}
.ls26{letter-spacing:0.478080px;}
.lsba{letter-spacing:0.496008px;}
.lsb6{letter-spacing:0.507960px;}
.ls88{letter-spacing:0.567720px;}
.ls5{letter-spacing:0.597600px;}
.ls70{letter-spacing:0.604800px;}
.lsf{letter-spacing:0.657360px;}
.ls8f{letter-spacing:0.663336px;}
.lsab{letter-spacing:0.675000px;}
.lsd{letter-spacing:0.699192px;}
.ls8{letter-spacing:0.711144px;}
.lsc9{letter-spacing:0.714000px;}
.ls55{letter-spacing:0.717120px;}
.ls7{letter-spacing:0.729072px;}
.lse{letter-spacing:0.770904px;}
.ls23{letter-spacing:0.896400px;}
.ls9{letter-spacing:0.956160px;}
.lsbc{letter-spacing:1.039824px;}
.ls13{letter-spacing:1.075680px;}
.ls12{letter-spacing:1.111536px;}
.ls43{letter-spacing:1.135440px;}
.ls3c{letter-spacing:1.195200px;}
.ls8b{letter-spacing:1.248984px;}
.ls37{letter-spacing:1.314720px;}
.ls24{letter-spacing:1.374480px;}
.ls3d{letter-spacing:1.422288px;}
.ls4e{letter-spacing:1.434240px;}
.ls53{letter-spacing:1.464120px;}
.ls52{letter-spacing:1.482048px;}
.ls3a{letter-spacing:1.523880px;}
.ls25{letter-spacing:1.613520px;}
.ls40{letter-spacing:1.673280px;}
.ls5b{letter-spacing:1.792800px;}
.ls2{letter-spacing:1.800000px;}
.ls36{letter-spacing:1.852560px;}
.ls6{letter-spacing:2.091600px;}
.ls5d{letter-spacing:2.139408px;}
.ls51{letter-spacing:2.157336px;}
.ls50{letter-spacing:2.205144px;}
.ls3b{letter-spacing:2.211120px;}
.ls4f{letter-spacing:2.229048px;}
.ls1{letter-spacing:2.250000px;}
.ls2f{letter-spacing:2.808720px;}
.ls4a{letter-spacing:2.856528px;}
.ls78{letter-spacing:2.862504px;}
.ls89{letter-spacing:2.868480px;}
.lsb{letter-spacing:2.880432px;}
.ls82{letter-spacing:2.886408px;}
.ls30{letter-spacing:2.934216px;}
.lsa{letter-spacing:3.525840px;}
.ls31{letter-spacing:3.615480px;}
.ls64{letter-spacing:3.723048px;}
.ls10{letter-spacing:4.242960px;}
.ls11{letter-spacing:4.278816px;}
.ls4c{letter-spacing:4.290768px;}
.ls62{letter-spacing:4.296744px;}
.ls63{letter-spacing:4.338576px;}
.ls83{letter-spacing:4.356504px;}
.ls4d{letter-spacing:4.960080px;}
.ls5e{letter-spacing:5.013864px;}
.ls4b{letter-spacing:5.067648px;}
.ls39{letter-spacing:5.677200px;}
.ls6a{letter-spacing:5.784768px;}
.ls38{letter-spacing:5.790744px;}
.ls54{letter-spacing:6.442128px;}
.ls59{letter-spacing:6.454080px;}
.ls6b{letter-spacing:6.519816px;}
.ls71{letter-spacing:6.537744px;}
.ls69{letter-spacing:6.591528px;}
.ls14{letter-spacing:7.888320px;}
.ls8a{letter-spacing:8.133336px;}
.ls15{letter-spacing:8.605440px;}
.ls68{letter-spacing:8.683128px;}
.ls66{letter-spacing:8.701056px;}
.ls65{letter-spacing:8.826552px;}
.ls16{letter-spacing:9.322560px;}
.ls91{letter-spacing:10.756800px;}
.ls17{letter-spacing:11.473920px;}
.ls34{letter-spacing:12.191040px;}
.ls58{letter-spacing:13.625280px;}
.ls57{letter-spacing:14.491800px;}
.ls49{letter-spacing:20.133144px;}
.ls19{letter-spacing:30.348000px;}
.lsa2{letter-spacing:52.470000px;}
.ls1a{letter-spacing:53.406000px;}
.ls98{letter-spacing:64.206000px;}
.lsad{letter-spacing:72.867600px;}
.ls96{letter-spacing:89.406000px;}
.lsa1{letter-spacing:93.648600px;}
.ls93{letter-spacing:114.588000px;}
.lsaf{letter-spacing:146.052000px;}
.lsac{letter-spacing:261.270000px;}
.lsae{letter-spacing:261.306000px;}
.lsa9{letter-spacing:285.768000px;}
.lsa7{letter-spacing:285.786000px;}
.ls7f{letter-spacing:308.286000px;}
.lsa6{letter-spacing:310.230000px;}
.lsa3{letter-spacing:310.248000px;}
.ls7c{letter-spacing:332.028000px;}
.ls7b{letter-spacing:334.908000px;}
.ls81{letter-spacing:336.366000px;}
.lsa5{letter-spacing:370.008000px;}
.ls80{letter-spacing:452.250000px;}
.ls7d{letter-spacing:478.926000px;}
.lsa8{letter-spacing:493.128000px;}
.ls79{letter-spacing:514.926000px;}
.ls7a{letter-spacing:563.166000px;}
.lsaa{letter-spacing:567.306000px;}
.ls7e{letter-spacing:596.250000px;}
.ls18{letter-spacing:847.386720px;}
.ls84{letter-spacing:847.506240px;}
.ls95{letter-spacing:899.388000px;}
.ls97{letter-spacing:902.988000px;}
.ls94{letter-spacing:1005.966000px;}
.ls99{letter-spacing:1016.748000px;}
.ls9a{letter-spacing:1118.988000px;}
.ls9d{letter-spacing:1445.850000px;}
.ls9c{letter-spacing:1449.468000px;}
.ls9b{letter-spacing:1501.308000px;}
.ls9e{letter-spacing:1563.228000px;}
.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;}
}
.wsa3{word-spacing:-28.745040px;}
.ws39{word-spacing:-23.755680px;}
.ws5{word-spacing:-23.418720px;}
.ws3{word-spacing:-23.081760px;}
.ws9a{word-spacing:-22.744800px;}
.ws4{word-spacing:-22.660560px;}
.ws7{word-spacing:-19.944000px;}
.ws5b{word-spacing:-18.406080px;}
.ws3d{word-spacing:-18.286560px;}
.ws5c{word-spacing:-18.226800px;}
.ws5a{word-spacing:-17.987760px;}
.ws3c{word-spacing:-17.928000px;}
.ws3f{word-spacing:-17.748720px;}
.wsb{word-spacing:-17.509680px;}
.ws83{word-spacing:-17.388000px;}
.ws5d{word-spacing:-17.270640px;}
.ws8{word-spacing:-17.210880px;}
.wsc{word-spacing:-17.091360px;}
.wsa{word-spacing:-17.031600px;}
.wsf{word-spacing:-16.971840px;}
.ws6a{word-spacing:-16.852320px;}
.ws59{word-spacing:-16.732800px;}
.ws73{word-spacing:-16.673040px;}
.ws9{word-spacing:-16.613280px;}
.ws3b{word-spacing:-16.553520px;}
.wse{word-spacing:-16.493760px;}
.wsd{word-spacing:-16.374240px;}
.ws3a{word-spacing:-16.314480px;}
.ws74{word-spacing:-15.776640px;}
.ws40{word-spacing:-15.282000px;}
.ws12{word-spacing:-15.228000px;}
.ws7b{word-spacing:-15.174000px;}
.ws6b{word-spacing:-15.120000px;}
.wsa1{word-spacing:-15.102720px;}
.ws9b{word-spacing:-15.059520px;}
.wsa0{word-spacing:-15.036480px;}
.ws3e{word-spacing:-15.012000px;}
.ws93{word-spacing:-14.904000px;}
.ws9c{word-spacing:-14.880240px;}
.ws41{word-spacing:-14.634000px;}
.ws11{word-spacing:-14.526000px;}
.ws88{word-spacing:-14.418000px;}
.wsa2{word-spacing:-13.745280px;}
.wsa6{word-spacing:-13.744800px;}
.ws8c{word-spacing:-13.625280px;}
.ws6{word-spacing:-13.410720px;}
.wsa4{word-spacing:-13.326480px;}
.ws8d{word-spacing:-13.027680px;}
.ws96{word-spacing:-12.636000px;}
.ws98{word-spacing:-12.258000px;}
.ws6c{word-spacing:-12.150000px;}
.ws97{word-spacing:-12.042000px;}
.ws10{word-spacing:-11.609280px;}
.wsa5{word-spacing:-11.593440px;}
.ws42{word-spacing:-11.442240px;}
.ws91{word-spacing:-10.808640px;}
.ws7f{word-spacing:-10.805760px;}
.ws81{word-spacing:-10.612800px;}
.ws1{word-spacing:-10.440000px;}
.ws7d{word-spacing:-9.187200px;}
.ws84{word-spacing:-8.352000px;}
.ws47{word-spacing:-4.242960px;}
.ws48{word-spacing:-3.525840px;}
.ws2c{word-spacing:-2.808720px;}
.ws6e{word-spacing:-2.689200px;}
.ws8a{word-spacing:-2.629440px;}
.wsb5{word-spacing:-2.124000px;}
.ws2e{word-spacing:-2.091600px;}
.ws89{word-spacing:-1.912320px;}
.ws23{word-spacing:-1.613520px;}
.ws21{word-spacing:-1.374480px;}
.ws4f{word-spacing:-1.314720px;}
.ws26{word-spacing:-1.195200px;}
.ws4e{word-spacing:-1.135440px;}
.ws20{word-spacing:-0.896400px;}
.ws70{word-spacing:-0.810000px;}
.ws75{word-spacing:-0.758160px;}
.ws6f{word-spacing:-0.756000px;}
.wsb3{word-spacing:-0.714000px;}
.ws2d{word-spacing:-0.657360px;}
.ws1d{word-spacing:-0.597600px;}
.ws1b{word-spacing:-0.504000px;}
.ws63{word-spacing:-0.478080px;}
.ws87{word-spacing:-0.432000px;}
.ws1e{word-spacing:-0.418320px;}
.ws99{word-spacing:-0.378000px;}
.ws69{word-spacing:-0.358560px;}
.ws13{word-spacing:-0.337680px;}
.ws8e{word-spacing:-0.298800px;}
.ws4b{word-spacing:-0.270000px;}
.ws15{word-spacing:-0.252720px;}
.wsb0{word-spacing:-0.240000px;}
.ws76{word-spacing:-0.239040px;}
.ws54{word-spacing:-0.216000px;}
.wsbd{word-spacing:-0.198000px;}
.ws62{word-spacing:-0.179280px;}
.ws86{word-spacing:-0.162000px;}
.ws19{word-spacing:-0.144000px;}
.wsbc{word-spacing:-0.126000px;}
.wsa9{word-spacing:-0.120000px;}
.ws46{word-spacing:-0.119520px;}
.ws38{word-spacing:-0.108000px;}
.wsa7{word-spacing:-0.066240px;}
.wsae{word-spacing:-0.066000px;}
.wsb1{word-spacing:-0.060000px;}
.ws8f{word-spacing:-0.059760px;}
.ws49{word-spacing:-0.054000px;}
.wsbf{word-spacing:-0.024000px;}
.ws0{word-spacing:0.000000px;}
.wsaf{word-spacing:0.054000px;}
.ws27{word-spacing:0.059760px;}
.wsb6{word-spacing:0.060000px;}
.wsa8{word-spacing:0.066240px;}
.ws1a{word-spacing:0.072000px;}
.ws57{word-spacing:0.108000px;}
.ws30{word-spacing:0.119520px;}
.wsb2{word-spacing:0.120000px;}
.ws56{word-spacing:0.162000px;}
.ws9e{word-spacing:0.179280px;}
.ws65{word-spacing:0.239040px;}
.ws72{word-spacing:0.270000px;}
.wsb8{word-spacing:0.288000px;}
.ws45{word-spacing:0.298800px;}
.ws55{word-spacing:0.324000px;}
.ws18{word-spacing:0.336960px;}
.ws94{word-spacing:0.385920px;}
.ws17{word-spacing:0.421200px;}
.ws71{word-spacing:0.478080px;}
.ws4a{word-spacing:0.486000px;}
.wsbb{word-spacing:0.540000px;}
.wsab{word-spacing:0.588000px;}
.ws53{word-spacing:0.594000px;}
.ws90{word-spacing:0.597600px;}
.wsb4{word-spacing:0.600000px;}
.wsbe{word-spacing:0.606000px;}
.wsb7{word-spacing:0.624000px;}
.ws37{word-spacing:0.657360px;}
.wsaa{word-spacing:0.660000px;}
.ws14{word-spacing:0.673920px;}
.ws16{word-spacing:0.758160px;}
.wsac{word-spacing:0.774000px;}
.ws36{word-spacing:0.776880px;}
.ws58{word-spacing:0.810000px;}
.ws78{word-spacing:0.836640px;}
.wsba{word-spacing:0.870000px;}
.ws9d{word-spacing:0.896400px;}
.ws66{word-spacing:0.956160px;}
.wsb9{word-spacing:1.002000px;}
.ws7a{word-spacing:1.015920px;}
.ws44{word-spacing:1.095120px;}
.ws9f{word-spacing:1.195200px;}
.wsad{word-spacing:1.362000px;}
.ws1c{word-spacing:1.494000px;}
.ws4c{word-spacing:1.553760px;}
.ws64{word-spacing:1.673280px;}
.ws4d{word-spacing:1.733040px;}
.ws5e{word-spacing:2.211120px;}
.ws25{word-spacing:2.270880px;}
.ws92{word-spacing:2.390400px;}
.ws79{word-spacing:2.928240px;}
.ws24{word-spacing:2.988000px;}
.ws29{word-spacing:3.107520px;}
.ws2a{word-spacing:3.645360px;}
.ws28{word-spacing:3.705120px;}
.ws61{word-spacing:3.884400px;}
.ws35{word-spacing:4.422240px;}
.ws1f{word-spacing:5.139360px;}
.ws77{word-spacing:5.318640px;}
.ws50{word-spacing:5.856480px;}
.ws51{word-spacing:6.573600px;}
.ws68{word-spacing:6.752880px;}
.ws52{word-spacing:7.290720px;}
.ws2{word-spacing:7.560000px;}
.ws2b{word-spacing:8.007840px;}
.ws2f{word-spacing:8.724960px;}
.ws32{word-spacing:9.442080px;}
.ws31{word-spacing:9.621360px;}
.ws95{word-spacing:10.876320px;}
.ws34{word-spacing:11.593440px;}
.ws22{word-spacing:12.310560px;}
.ws8b{word-spacing:12.728880px;}
.ws33{word-spacing:13.027680px;}
.ws67{word-spacing:13.744800px;}
.ws5f{word-spacing:19.541520px;}
.ws60{word-spacing:20.258640px;}
.ws82{word-spacing:77.796000px;}
.ws7e{word-spacing:159.560784px;}
.ws80{word-spacing:161.280792px;}
.ws7c{word-spacing:171.086544px;}
.ws43{word-spacing:190.026000px;}
.ws6d{word-spacing:260.193600px;}
.ws85{word-spacing:884.977200px;}
._2{margin-left:-11.484000px;}
._1{margin-left:-10.440000px;}
._3{margin-left:-9.396000px;}
._0{margin-left:-5.220000px;}
._6{margin-left:-3.894000px;}
._4{margin-left:-2.250000px;}
._7{margin-left:-1.099872px;}
._8{width:1.019304px;}
._5{width:2.160000px;}
._9{width:3.214440px;}
._b{width:4.886784px;}
._a{width:6.268032px;}
._e{width:7.462008px;}
._c{width:8.973000px;}
._16{width:10.155816px;}
._d{width:12.011760px;}
._f{width:18.198000px;}
._13{width:19.563264px;}
._12{width:20.673576px;}
._25{width:137.124000px;}
._17{width:169.560000px;}
._1c{width:307.476576px;}
._23{width:317.754000px;}
._18{width:324.216576px;}
._1e{width:335.736000px;}
._20{width:336.760128px;}
._22{width:360.234000px;}
._11{width:365.872776px;}
._1f{width:377.496000px;}
._1d{width:378.703872px;}
._21{width:478.008000px;}
._1a{width:501.545880px;}
._15{width:522.699480px;}
._19{width:614.885184px;}
._10{width:701.030688px;}
._1b{width:798.748488px;}
._24{width:848.020320px;}
._14{width:880.388784px;}
._26{width:1629.378000px;}
.fc8{color:transparent;}
.fc9{color:rgb(255,0,0);}
.fc7{color:rgb(95,187,201);}
.fc6{color:rgb(110,53,139);}
.fc4{color:rgb(214,0,126);}
.fc5{color:rgb(0,112,192);}
.fc3{color:rgb(0,73,101);}
.fc1{color:rgb(227,5,19);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:18.000000px;}
.fsf{font-size:36.000000px;}
.fs11{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs12{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:108.000000px;}
.fs6{font-size:252.000000px;}
.fs5{font-size:261.000000px;}
.y0{bottom:0.000000px;}
.y136{bottom:0.839850px;}
.y138{bottom:0.915000px;}
.y134{bottom:0.925050px;}
.y1e5{bottom:1.979850px;}
.y1ce{bottom:1.980000px;}
.y1d3{bottom:2.160000px;}
.y74{bottom:2.266650px;}
.y13a{bottom:2.276100px;}
.y13e{bottom:2.354250px;}
.y71{bottom:2.373600px;}
.y13c{bottom:2.391000px;}
.y132{bottom:2.465100px;}
.y12e{bottom:2.745300px;}
.y12c{bottom:2.814750px;}
.y1dc{bottom:2.880000px;}
.y1b7{bottom:3.060000px;}
.y87{bottom:3.396000px;}
.yd6{bottom:4.161900px;}
.y151{bottom:4.485900px;}
.y130{bottom:5.316600px;}
.y1e6{bottom:6.479850px;}
.y1ee{bottom:6.480000px;}
.y12a{bottom:6.512550px;}
.y16b{bottom:9.900000px;}
.y161{bottom:10.080000px;}
.y170{bottom:11.880000px;}
.y159{bottom:13.679850px;}
.y154{bottom:14.220000px;}
.y164{bottom:14.940000px;}
.y1db{bottom:18.360000px;}
.y15d{bottom:18.540000px;}
.y1e2{bottom:20.520000px;}
.y1fa{bottom:20.880000px;}
.y1d0{bottom:21.240000px;}
.y2a{bottom:23.943960px;}
.y1b6{bottom:34.020000px;}
.y6{bottom:35.925007px;}
.y29{bottom:37.620000px;}
.y5{bottom:66.525004px;}
.y115{bottom:92.497500px;}
.y6e{bottom:92.511000px;}
.y1ca{bottom:92.515500px;}
.y4e{bottom:92.520000px;}
.y1a3{bottom:96.474420px;}
.y4{bottom:97.125005px;}
.yc6{bottom:99.000000px;}
.yb0{bottom:101.931120px;}
.y114{bottom:107.982000px;}
.y6d{bottom:107.995500px;}
.y1c9{bottom:108.000000px;}
.y1a2{bottom:113.760000px;}
.y24d{bottom:115.395120px;}
.yc5{bottom:115.920000px;}
.y4d{bottom:118.980000px;}
.y113{bottom:123.466500px;}
.y6c{bottom:123.480000px;}
.yaf{bottom:125.865000px;}
.y185{bottom:129.861900px;}
.y1c8{bottom:130.140000px;}
.y1a1{bottom:130.680000px;}
.y24c{bottom:131.948640px;}
.y4c{bottom:133.380000px;}
.y25b{bottom:136.980000px;}
.yc4{bottom:138.060000px;}
.y112{bottom:139.126500px;}
.y22{bottom:139.264499px;}
.y6b{bottom:143.640000px;}
.y1c7{bottom:144.360000px;}
.yae{bottom:149.978160px;}
.y1a0{bottom:150.300000px;}
.y24b{bottom:152.834760px;}
.y25a{bottom:153.544500px;}
.y184{bottom:154.348560px;}
.y111{bottom:154.611000px;}
.yc3{bottom:154.975500px;}
.y6a{bottom:156.420000px;}
.y19f{bottom:163.620000px;}
.y24a{bottom:169.388280px;}
.y259{bottom:169.920000px;}
.y110{bottom:170.095500px;}
.yad{bottom:173.912040px;}
.yc2{bottom:176.940000px;}
.y183{bottom:178.282440px;}
.yfa{bottom:179.530200px;}
.y69{bottom:182.193120px;}
.y10f{bottom:185.580000px;}
.y258{bottom:186.480000px;}
.y249{bottom:190.274400px;}
.yc1{bottom:191.340000px;}
.y19{bottom:196.933500px;}
.yac{bottom:197.845920px;}
.y182{bottom:202.216320px;}
.y257{bottom:203.044500px;}
.yf9{bottom:203.464080px;}
.y68{bottom:206.127000px;}
.y248{bottom:206.827920px;}
.y10e{bottom:207.720000px;}
.y218{bottom:209.340000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y256{bottom:219.420000px;}
.y10d{bottom:221.940000px;}
.yab{bottom:221.959080px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y181{bottom:226.329480px;}
.yf8{bottom:227.577240px;}
.y247{bottom:227.893320px;}
.y67{bottom:230.240160px;}
.y217{bottom:230.753880px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y246{bottom:244.446840px;}
.yaa{bottom:245.892960px;}
.y180{bottom:250.263360px;}
.yf7{bottom:251.511120px;}
.y216{bottom:251.640000px;}
.y10c{bottom:252.231660px;}
.y66{bottom:254.174040px;}
.y255{bottom:254.332440px;}
.y1c6{bottom:255.960000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y4b{bottom:260.460000px;}
.y245{bottom:260.821080px;}
.ya9{bottom:269.826840px;}
.y215{bottom:272.331000px;}
.y254{bottom:272.335200px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y17f{bottom:274.197240px;}
.yf6{bottom:275.445000px;}
.y10b{bottom:276.165540px;}
.y65{bottom:278.107920px;}
.y1c5{bottom:278.826840px;}
.y244{bottom:281.886480px;}
.y4a{bottom:284.925600px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y214{bottom:287.815500px;}
.y83{bottom:291.175200px;}
.ya8{bottom:293.940000px;}
.y17e{bottom:298.310400px;}
.y243{bottom:298.440000px;}
.yf5{bottom:299.558160px;}
.y10a{bottom:300.278700px;}
.y64{bottom:302.221080px;}
.y1c4{bottom:302.940000px;}
.y213{bottom:303.475500px;}
.y49{bottom:308.859480px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y253{bottom:313.016700px;}
.y212{bottom:318.960000px;}
.y242{bottom:319.380120px;}
.y17d{bottom:322.244280px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yf4{bottom:323.492040px;}
.y109{bottom:324.212580px;}
.y1c3{bottom:325.084500px;}
.y63{bottom:326.154960px;}
.y48{bottom:332.972640px;}
.ya7{bottom:335.700000px;}
.y241{bottom:335.933640px;}
.y211{bottom:343.800360px;}
.y17c{bottom:346.178160px;}
.yf3{bottom:347.425920px;}
.y10{bottom:348.133500px;}
.y108{bottom:348.146460px;}
.y62{bottom:348.654600px;}
.y1c2{bottom:349.560000px;}
.y252{bottom:351.717000px;}
.yc0{bottom:356.592240px;}
.y240{bottom:356.819760px;}
.y47{bottom:356.906520px;}
.y210{bottom:366.300000px;}
.y61{bottom:369.720000px;}
.y17b{bottom:370.291320px;}
.yf2{bottom:371.539080px;}
.y107{bottom:372.259620px;}
.y23f{bottom:373.373280px;}
.y1c1{bottom:376.020000px;}
.ybf{bottom:380.526120px;}
.y46{bottom:380.840400px;}
.y20e{bottom:386.280000px;}
.yf{bottom:386.785499px;}
.y60{bottom:390.420000px;}
.y20f{bottom:392.760000px;}
.y17a{bottom:394.225200px;}
.y23e{bottom:394.438680px;}
.yf1{bottom:395.472960px;}
.ya6{bottom:396.190800px;}
.y106{bottom:396.193500px;}
.ybe{bottom:404.492040px;}
.y45{bottom:404.953560px;}
.y1c0{bottom:406.980000px;}
.ye{bottom:408.044999px;}
.y20d{bottom:409.500000px;}
.y23d{bottom:410.992200px;}
.y251{bottom:411.289500px;}
.y5f{bottom:412.920000px;}
.y82{bottom:417.240000px;}
.y179{bottom:418.159080px;}
.yf0{bottom:419.406840px;}
.y20a{bottom:419.755500px;}
.y105{bottom:420.127380px;}
.ya5{bottom:420.303960px;}
.ybd{bottom:428.605200px;}
.y44{bottom:428.887440px;}
.y250{bottom:429.292500px;}
.y23c{bottom:431.878320px;}
.y20b{bottom:432.720000px;}
.y209{bottom:435.240000px;}
.y86{bottom:436.355850px;}
.y20c{bottom:439.200000px;}
.y1bf{bottom:439.740000px;}
.y178{bottom:442.272240px;}
.yef{bottom:443.520000px;}
.ya4{bottom:444.237840px;}
.y104{bottom:444.240540px;}
.y24f{bottom:447.295500px;}
.y23b{bottom:448.431840px;}
.y85{bottom:452.075850px;}
.ybc{bottom:452.539080px;}
.y43{bottom:452.821320px;}
.y208{bottom:455.940000px;}
.y177{bottom:466.206120px;}
.y103{bottom:466.740180px;}
.ya3{bottom:468.171720px;}
.y23a{bottom:469.317960px;}
.y1be{bottom:472.320000px;}
.y1aa{bottom:473.804280px;}
.ybb{bottom:476.472960px;}
.y42{bottom:476.934480px;}
.y84{bottom:479.231850px;}
.y206{bottom:479.340000px;}
.yee{bottom:485.286300px;}
.y102{bottom:485.460000px;}
.y207{bottom:485.640000px;}
.y239{bottom:485.871480px;}
.y204{bottom:489.600000px;}
.y176{bottom:490.140000px;}
.ya2{bottom:492.284880px;}
.y24e{bottom:495.540000px;}
.y75{bottom:495.615450px;}
.y1a9{bottom:497.738160px;}
.yba{bottom:500.586120px;}
.y41{bottom:500.868360px;}
.y202{bottom:502.560000px;}
.yd{bottom:502.864502px;}
.y1bd{bottom:504.900000px;}
.y203{bottom:505.080000px;}
.y238{bottom:506.936880px;}
.y101{bottom:507.600000px;}
.y205{bottom:508.860000px;}
.yed{bottom:509.400000px;}
.y76{bottom:511.990950px;}
.y175{bottom:512.275500px;}
.ya1{bottom:516.218760px;}
.yc{bottom:520.864502px;}
.y1a8{bottom:521.851320px;}
.y237{bottom:523.490400px;}
.yb9{bottom:524.539080px;}
.y40{bottom:524.802240px;}
.y200{bottom:525.780000px;}
.y77{bottom:528.366450px;}
.y100{bottom:529.380000px;}
.y201{bottom:532.260000px;}
.y174{bottom:532.431000px;}
.y1bc{bottom:537.480000px;}
.yb{bottom:538.864499px;}
.ya0{bottom:540.152640px;}
.y236{bottom:544.376520px;}
.y6f{bottom:544.514550px;}
.y78{bottom:544.741950px;}
.y1a7{bottom:545.785200px;}
.y173{bottom:547.915500px;}
.yb8{bottom:548.472960px;}
.y3f{bottom:548.915400px;}
.y1ff{bottom:549.000000px;}
.yff{bottom:551.695500px;}
.y72{bottom:554.725500px;}
.ya{bottom:556.864499px;}
.y235{bottom:560.930040px;}
.y79{bottom:561.117450px;}
.y70{bottom:563.400000px;}
.y9f{bottom:564.265800px;}
.yfe{bottom:567.180000px;}
.y1a6{bottom:569.719080px;}
.yec{bottom:569.827440px;}
.y1bb{bottom:570.240000px;}
.y1fd{bottom:572.220000px;}
.yb7{bottom:572.586120px;}
.y3e{bottom:572.849280px;}
.y73{bottom:574.200000px;}
.y7a{bottom:577.492950px;}
.y172{bottom:578.160000px;}
.y1fe{bottom:578.700000px;}
.y234{bottom:581.816160px;}
.yfd{bottom:582.300000px;}
.y9e{bottom:588.199680px;}
.y16f{bottom:588.780000px;}
.y1a5{bottom:593.832240px;}
.y7b{bottom:593.868450px;}
.yeb{bottom:593.940600px;}
.y150{bottom:594.000000px;}
.y1fc{bottom:595.440000px;}
.yb6{bottom:596.520000px;}
.y3d{bottom:596.783160px;}
.y1f6{bottom:597.060000px;}
.y233{bottom:598.369680px;}
.y171{bottom:600.660000px;}
.y1ba{bottom:602.820000px;}
.y19e{bottom:606.060000px;}
.y7c{bottom:610.243950px;}
.y9d{bottom:612.133560px;}
.y14f{bottom:615.847500px;}
.y1a4{bottom:617.766120px;}
.yea{bottom:617.874480px;}
.yb5{bottom:618.660000px;}
.y1f8{bottom:618.840000px;}
.y232{bottom:619.435080px;}
.y3c{bottom:620.896320px;}
.y16d{bottom:622.800000px;}
.y1fb{bottom:624.240000px;}
.y7d{bottom:626.619450px;}
.y19d{bottom:627.120000px;}
.y1f9{bottom:631.980000px;}
.y16e{bottom:632.880000px;}
.y14e{bottom:633.209250px;}
.yb4{bottom:634.320000px;}
.y1b9{bottom:635.400000px;}
.y231{bottom:635.988600px;}
.y9c{bottom:636.246720px;}
.ye9{bottom:641.808360px;}
.y7e{bottom:642.994950px;}
.y3b{bottom:644.830200px;}
.y9{bottom:645.510000px;}
.y19c{bottom:648.180000px;}
.yb3{bottom:650.160000px;}
.y14d{bottom:650.570850px;}
.y16a{bottom:652.680000px;}
.y1f5{bottom:655.560000px;}
.y230{bottom:656.874720px;}
.y7f{bottom:659.370450px;}
.y9b{bottom:660.180600px;}
.y1f7{bottom:661.860000px;}
.y16c{bottom:662.580000px;}
.yd5{bottom:664.200000px;}
.ye8{bottom:665.921520px;}
.y8{bottom:666.771000px;}
.y14c{bottom:667.932450px;}
.y1b8{bottom:667.980000px;}
.y3a{bottom:668.764080px;}
.y19b{bottom:669.240000px;}
.y27{bottom:670.535400px;}
.y22f{bottom:673.428240px;}
.y80{bottom:675.745950px;}
.y1f3{bottom:678.780000px;}
.y168{bottom:682.380000px;}
.y9a{bottom:684.114480px;}
.y1f4{bottom:685.260000px;}
.y14b{bottom:685.294050px;}
.yd4{bottom:685.587150px;}
.y1b5{bottom:689.580000px;}
.ye7{bottom:689.855400px;}
.y22e{bottom:689.981760px;}
.y19a{bottom:690.120000px;}
.y81{bottom:692.121450px;}
.y169{bottom:692.460000px;}
.y39{bottom:692.877240px;}
.y1f1{bottom:702.000000px;}
.y14a{bottom:702.655650px;}
.yd3{bottom:702.812400px;}
.y1b4{bottom:708.120000px;}
.y99{bottom:708.227640px;}
.y1f2{bottom:708.480000px;}
.y22d{bottom:710.867880px;}
.y199{bottom:711.180000px;}
.y166{bottom:712.080000px;}
.ye6{bottom:713.789280px;}
.y38{bottom:716.811120px;}
.y167{bottom:722.160000px;}
.y26{bottom:724.535400px;}
.y1ef{bottom:725.220000px;}
.y7{bottom:726.298500px;}
.y148{bottom:727.260300px;}
.y22c{bottom:727.421400px;}
.yd2{bottom:729.699450px;}
.y1f0{bottom:731.700000px;}
.y98{bottom:732.161520px;}
.y198{bottom:732.240000px;}
.y5e{bottom:735.115500px;}
.y149{bottom:737.520300px;}
.y147{bottom:737.700300px;}
.ye5{bottom:737.902440px;}
.y37{bottom:740.745000px;}
.y163{bottom:741.960000px;}
.yc7{bottom:746.074950px;}
.y13f{bottom:747.722850px;}
.y22b{bottom:748.307520px;}
.y1ed{bottom:748.440000px;}
.y5d{bottom:750.600000px;}
.y25{bottom:751.535400px;}
.y165{bottom:752.040000px;}
.y3{bottom:752.599495px;}
.y197{bottom:753.120000px;}
.y97{bottom:756.095400px;}
.y1b3{bottom:757.975500px;}
.ye4{bottom:761.836320px;}
.y36{bottom:764.858160px;}
.y22a{bottom:764.861040px;}
.yc8{bottom:767.485950px;}
.y160{bottom:771.660000px;}
.y1ec{bottom:771.840000px;}
.y196{bottom:774.180000px;}
.y1e8{bottom:778.140000px;}
.y117{bottom:778.303260px;}
.y96{bottom:780.208560px;}
.y229{bottom:781.414560px;}
.y162{bottom:781.740000px;}
.ye3{bottom:785.770200px;}
.y5c{bottom:785.931120px;}
.y140{bottom:786.061590px;}
.y35{bottom:788.792040px;}
.yc9{bottom:788.896950px;}
.y1b2{bottom:791.820000px;}
.y1ea{bottom:795.060000px;}
.y195{bottom:795.240000px;}
.y1eb{bottom:801.360000px;}
.y15c{bottom:801.540000px;}
.y228{bottom:802.300680px;}
.y95{bottom:804.142440px;}
.y116{bottom:805.144500px;}
.y24{bottom:805.535400px;}
.y15f{bottom:807.475500px;}
.y1b1{bottom:809.852040px;}
.y5b{bottom:809.865000px;}
.ye2{bottom:809.883360px;}
.yca{bottom:810.307950px;}
.y34{bottom:812.725920px;}
.y194{bottom:816.120000px;}
.y1e7{bottom:818.280000px;}
.y227{bottom:818.854200px;}
.y15e{bottom:822.960000px;}
.y119{bottom:823.926060px;}
.y141{bottom:824.400330px;}
.y1e9{bottom:824.760000px;}
.y94{bottom:828.076320px;}
.ycb{bottom:831.718950px;}
.ye1{bottom:833.817240px;}
.y1b0{bottom:833.965200px;}
.y5a{bottom:833.978160px;}
.y226{bottom:835.407720px;}
.y118{bottom:835.806780px;}
.y33{bottom:836.839080px;}
.y193{bottom:837.180000px;}
.y158{bottom:838.800000px;}
.y1e4{bottom:841.500000px;}
.y15b{bottom:844.740000px;}
.y11a{bottom:847.311660px;}
.y93{bottom:852.189480px;}
.y157{bottom:852.479850px;}
.ycc{bottom:853.129950px;}
.y11c{bottom:854.985060px;}
.y225{bottom:856.293840px;}
.ye0{bottom:857.751120px;}
.y1af{bottom:857.899080px;}
.y59{bottom:857.912040px;}
.y192{bottom:858.240000px;}
.y15a{bottom:860.400000px;}
.y32{bottom:860.772960px;}
.y11b{bottom:862.648020px;}
.y142{bottom:862.739070px;}
.y1e1{bottom:864.720000px;}
.y1e3{bottom:869.760000px;}
.y11d{bottom:870.321420px;}
.y224{bottom:872.847360px;}
.ycd{bottom:874.540950px;}
.y92{bottom:876.123360px;}
.y153{bottom:876.780000px;}
.y11f{bottom:877.994820px;}
.y191{bottom:879.120000px;}
.y2{bottom:879.369000px;}
.y11e{bottom:881.826300px;}
.y1ae{bottom:881.832960px;}
.y58{bottom:881.845920px;}
.ydf{bottom:881.864280px;}
.y156{bottom:883.255500px;}
.y31{bottom:884.706840px;}
.y223{bottom:889.400880px;}
.yce{bottom:895.951950px;}
.y120{bottom:897.173100px;}
.y155{bottom:898.740000px;}
.y91{bottom:900.057240px;}
.y190{bottom:900.180000px;}
.y1df{bottom:900.540000px;}
.y143{bottom:901.077810px;}
.y12d{bottom:905.580000px;}
.yde{bottom:905.798160px;}
.y1ad{bottom:905.946120px;}
.y57{bottom:905.959080px;}
.y137{bottom:906.480000px;}
.y1e0{bottom:907.020000px;}
.y30{bottom:908.820000px;}
.y222{bottom:910.287000px;}
.y122{bottom:912.091650px;}
.y121{bottom:916.727220px;}
.ycf{bottom:917.362950px;}
.y124{bottom:919.761810px;}
.y18f{bottom:921.240000px;}
.y1dd{bottom:923.940000px;}
.y90{bottom:924.170400px;}
.y221{bottom:926.840520px;}
.y139{bottom:927.360000px;}
.y135{bottom:929.520000px;}
.ydd{bottom:929.732040px;}
.y56{bottom:929.892960px;}
.y1ac{bottom:929.918160px;}
.y1de{bottom:930.240000px;}
.y128{bottom:931.254990px;}
.y12f{bottom:934.920000px;}
.y126{bottom:934.945350px;}
.y13b{bottom:936.360000px;}
.y152{bottom:936.720000px;}
.yd0{bottom:938.773950px;}
.y144{bottom:939.416550px;}
.y123{bottom:942.000450px;}
.y18e{bottom:942.120000px;}
.y133{bottom:944.820000px;}
.y1da{bottom:946.080000px;}
.y1d9{bottom:947.160000px;}
.y220{bottom:947.905920px;}
.y8f{bottom:948.104280px;}
.y129{bottom:949.680000px;}
.y2f{bottom:949.860000px;}
.y125{bottom:950.430390px;}
.y131{bottom:951.660000px;}
.y55{bottom:953.826840px;}
.ydc{bottom:953.845200px;}
.y1ab{bottom:953.852040px;}
.y13d{bottom:959.400000px;}
.yd1{bottom:960.184950px;}
.y18d{bottom:963.180000px;}
.y21f{bottom:964.459440px;}
.y1{bottom:966.726000px;}
.y8e{bottom:972.038160px;}
.y28{bottom:972.212700px;}
.y127{bottom:973.428810px;}
.y12b{bottom:974.520000px;}
.y145{bottom:977.755290px;}
.ydb{bottom:977.779080px;}
.y54{bottom:977.965200px;}
.y1d7{bottom:978.840000px;}
.y18c{bottom:984.240000px;}
.y1d8{bottom:985.320000px;}
.y21e{bottom:985.345560px;}
.yb2{bottom:993.235500px;}
.y8d{bottom:996.151320px;}
.y2e{bottom:997.740000px;}
.yda{bottom:1001.712960px;}
.y53{bottom:1001.899080px;}
.y1d5{bottom:1002.060000px;}
.y18b{bottom:1005.120000px;}
.y1d6{bottom:1008.540000px;}
.yb1{bottom:1008.720000px;}
.y146{bottom:1016.094030px;}
.y21d{bottom:1018.452600px;}
.y1d4{bottom:1020.060000px;}
.y8c{bottom:1020.085200px;}
.y23{bottom:1023.023400px;}
.y1d2{bottom:1025.280000px;}
.yd9{bottom:1025.826120px;}
.y52{bottom:1025.832960px;}
.y18a{bottom:1026.180000px;}
.y21c{bottom:1034.826840px;}
.y2d{bottom:1040.586300px;}
.yfc{bottom:1041.120000px;}
.y8b{bottom:1044.019080px;}
.y189{bottom:1047.240000px;}
.y1cd{bottom:1048.680000px;}
.yd8{bottom:1049.760000px;}
.y51{bottom:1049.946120px;}
.y1d1{bottom:1054.440000px;}
.y21b{bottom:1055.892240px;}
.yfb{bottom:1056.780000px;}
.y1cf{bottom:1062.180000px;}
.y2c{bottom:1064.700000px;}
.y188{bottom:1068.120000px;}
.y8a{bottom:1068.132240px;}
.y21a{bottom:1072.445760px;}
.y50{bottom:1073.880000px;}
.y219{bottom:1088.820000px;}
.y187{bottom:1089.180000px;}
.yd7{bottom:1091.526300px;}
.y89{bottom:1092.066120px;}
.y1cc{bottom:1107.175500px;}
.y2b{bottom:1107.900000px;}
.y186{bottom:1110.240000px;}
.y4f{bottom:1115.640000px;}
.y88{bottom:1116.000000px;}
.y1cb{bottom:1122.660000px;}
.h34{height:12.061500px;}
.h33{height:12.238500px;}
.h1d{height:12.240000px;}
.h1c{height:12.420000px;}
.h35{height:13.500000px;}
.h36{height:13.680000px;}
.h32{height:13.681500px;}
.h30{height:14.040000px;}
.h1a{height:15.477539px;}
.h31{height:16.560000px;}
.h2e{height:17.820000px;}
.h4b{height:22.498500px;}
.h4e{height:22.500000px;}
.h38{height:26.208984px;}
.h3f{height:29.700000px;}
.h3e{height:29.880000px;}
.h40{height:29.881500px;}
.h1b{height:30.955078px;}
.h4d{height:30.960000px;}
.h7{height:32.130000px;}
.h37{height:32.466797px;}
.h41{height:33.300000px;}
.h49{height:35.064141px;}
.h4f{height:35.100000px;}
.h2f{height:35.120039px;}
.h16{height:35.907891px;}
.h51{height:36.000000px;}
.h48{height:36.900000px;}
.h3b{height:37.260000px;}
.h2a{height:37.661484px;}
.h3a{height:38.340000px;}
.h44{height:38.774883px;}
.h29{height:39.206604px;}
.h19{height:39.313477px;}
.h26{height:41.479805px;}
.hf{height:43.505508px;}
.h27{height:43.506914px;}
.h25{height:44.208984px;}
.h6{height:45.900000px;}
.h17{height:46.432617px;}
.h46{height:46.800000px;}
.h3{height:48.195000px;}
.h1e{height:48.700195px;}
.hd{height:48.906000px;}
.h14{height:51.385430px;}
.h13{height:52.417969px;}
.hc{height:53.064000px;}
.h43{height:53.894883px;}
.h2{height:55.080000px;}
.h57{height:57.618000px;}
.h12{height:58.880039px;}
.h45{height:59.515251px;}
.h21{height:59.539731px;}
.h18{height:59.567091px;}
.h20{height:59.591571px;}
.h22{height:59.618931px;}
.h24{height:59.643411px;}
.h15{height:60.666623px;}
.h42{height:61.001423px;}
.h11{height:61.329023px;}
.h54{height:63.763920px;}
.h55{height:63.764160px;}
.h56{height:64.779840px;}
.h47{height:65.872617px;}
.hb{height:67.050000px;}
.h4a{height:70.273477px;}
.h53{height:70.678080px;}
.h3d{height:77.374617px;}
.h3c{height:77.392017px;}
.h5{height:78.030000px;}
.h10{height:78.626953px;}
.h50{height:79.660195px;}
.h2c{height:82.135884px;}
.h28{height:83.639244px;}
.h2d{height:88.947588px;}
.h4c{height:95.500195px;}
.h2b{height:114.374604px;}
.h4{height:119.055004px;}
.ha{height:182.196000px;}
.h9{height:188.703000px;}
.h1f{height:303.660000px;}
.h23{height:313.920000px;}
.h39{height:440.640000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.h52{height:1264.500000px;}
.wc{width:12.061500px;}
.we{width:16.200000px;}
.wd{width:29.340000px;}
.wa{width:57.240000px;}
.w5{width:84.240000px;}
.w9{width:95.940000px;}
.w8{width:96.120000px;}
.w10{width:115.378500px;}
.wf{width:115.740000px;}
.w12{width:208.260000px;}
.w11{width:297.721500px;}
.w2{width:637.794021px;}
.wb{width:655.560000px;}
.w7{width:658.078500px;}
.w6{width:668.338500px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w4{width:892.980000px;}
.w1{width:893.250000px;}
.w13{width:895.500000px;}
.x0{left:0.000000px;}
.x4f{left:6.120000px;}
.x14{left:8.031750px;}
.x55{left:9.180000px;}
.x57{left:17.280000px;}
.x43{left:18.720000px;}
.x27{left:41.141700px;}
.x10{left:44.058750px;}
.x42{left:47.902650px;}
.x16{left:59.008800px;}
.x5{left:77.983650px;}
.x7{left:82.118700px;}
.x6{left:83.131200px;}
.x1b{left:85.030050px;}
.x4b{left:86.220000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5a{left:117.000000px;}
.x13{left:120.240000px;}
.x18{left:123.076800px;}
.x32{left:125.905320px;}
.xa{left:127.620000px;}
.x11{left:130.746750px;}
.x17{left:132.310800px;}
.x12{left:134.432250px;}
.xd{left:144.715500px;}
.xc{left:148.864500px;}
.x19{left:150.252300px;}
.x26{left:153.900000px;}
.x4c{left:157.305780px;}
.x51{left:160.200000px;}
.x59{left:161.623440px;}
.x41{left:168.142650px;}
.x1d{left:171.074160px;}
.x1c{left:172.494000px;}
.x15{left:179.248800px;}
.x4{left:203.484001px;}
.x1a{left:205.810050px;}
.x28{left:209.160000px;}
.x21{left:228.180420px;}
.x1e{left:229.298040px;}
.x5b{left:231.306000px;}
.x29{left:265.860000px;}
.x33{left:271.991400px;}
.x22{left:284.934780px;}
.x1f{left:286.060320px;}
.x34{left:321.914400px;}
.x2a{left:326.880000px;}
.x35{left:328.754400px;}
.x44{left:332.104500px;}
.x45{left:334.264500px;}
.x25{left:341.665020px;}
.xb{left:343.620000px;}
.x52{left:352.080000px;}
.x53{left:357.300000px;}
.x54{left:361.620000px;}
.x36{left:378.677400px;}
.x2b{left:383.580000px;}
.x37{left:392.717400px;}
.x23{left:398.455560px;}
.x4d{left:412.200000px;}
.x8{left:414.900000px;}
.x2c{left:437.940000px;}
.x39{left:442.271400px;}
.x9{left:446.400720px;}
.x46{left:449.284500px;}
.x38{left:452.351400px;}
.x3{left:454.959000px;}
.x56{left:467.820000px;}
.x58{left:473.040000px;}
.x3a{left:490.574400px;}
.x3b{left:492.554400px;}
.x2d{left:495.720000px;}
.x2e{left:553.140000px;}
.x47{left:562.509000px;}
.x3c{left:565.337400px;}
.x20{left:569.871720px;}
.x48{left:583.758000px;}
.x2f{left:609.300000px;}
.x3d{left:612.560400px;}
.x30{left:667.620000px;}
.x3e{left:669.323400px;}
.x49{left:674.302500px;}
.x4a{left:690.151500px;}
.xf{left:704.340000px;}
.x31{left:718.560000px;}
.x3f{left:723.746400px;}
.x40{left:733.286400px;}
.x4e{left:737.640000px;}
.x24{left:738.981720px;}
.x50{left:744.480000px;}
.xe{left:748.454850px;}
@media print{
.vc{vertical-align:-81.775360pt;}
.vb{vertical-align:-40.906240pt;}
.v14{vertical-align:-31.473920pt;}
.v12{vertical-align:-28.619520pt;}
.vd{vertical-align:-27.246080pt;}
.v5{vertical-align:-25.909760pt;}
.v2{vertical-align:-21.120000pt;}
.v10{vertical-align:-18.856960pt;}
.v3{vertical-align:-16.000000pt;}
.va{vertical-align:-14.996480pt;}
.v8{vertical-align:-13.623040pt;}
.v16{vertical-align:-2.945280pt;}
.v17{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.373440pt;}
.v4{vertical-align:16.000000pt;}
.v15{vertical-align:17.838080pt;}
.v18{vertical-align:19.200000pt;}
.v1{vertical-align:21.120000pt;}
.vf{vertical-align:23.162880pt;}
.v7{vertical-align:27.246080pt;}
.ve{vertical-align:31.366400pt;}
.v11{vertical-align:32.517120pt;}
.v6{vertical-align:39.532800pt;}
.v13{vertical-align:40.906240pt;}
.lsd0{letter-spacing:-1.806080pt;}
.lsc1{letter-spacing:-1.540480pt;}
.lsbf{letter-spacing:-1.381120pt;}
.lsbe{letter-spacing:-1.328000pt;}
.lsc7{letter-spacing:-1.168000pt;}
.lsc0{letter-spacing:-1.062400pt;}
.lscf{letter-spacing:-1.061333pt;}
.lsc2{letter-spacing:-0.956160pt;}
.ls6e{letter-spacing:-0.903040pt;}
.ls2c{letter-spacing:-0.743680pt;}
.ls61{letter-spacing:-0.690560pt;}
.lsce{letter-spacing:-0.688000pt;}
.ls20{letter-spacing:-0.673920pt;}
.ls1d{letter-spacing:-0.599040pt;}
.lscb{letter-spacing:-0.586667pt;}
.ls2d{letter-spacing:-0.584320pt;}
.lsca{letter-spacing:-0.533333pt;}
.ls87{letter-spacing:-0.531200pt;}
.ls85{letter-spacing:-0.528000pt;}
.ls2e{letter-spacing:-0.432000pt;}
.ls60{letter-spacing:-0.424960pt;}
.ls76{letter-spacing:-0.343040pt;}
.ls45{letter-spacing:-0.336000pt;}
.ls1e{letter-spacing:-0.299520pt;}
.ls74{letter-spacing:-0.296960pt;}
.ls47{letter-spacing:-0.288000pt;}
.ls2b{letter-spacing:-0.265600pt;}
.lsb2{letter-spacing:-0.240000pt;}
.ls77{letter-spacing:-0.224000pt;}
.ls28{letter-spacing:-0.212480pt;}
.lsb4{letter-spacing:-0.192000pt;}
.ls75{letter-spacing:-0.171520pt;}
.ls46{letter-spacing:-0.148480pt;}
.ls48{letter-spacing:-0.144000pt;}
.ls27{letter-spacing:-0.106240pt;}
.lsa0{letter-spacing:-0.096000pt;}
.ls1f{letter-spacing:-0.074880pt;}
.ls22{letter-spacing:-0.064000pt;}
.lsc6{letter-spacing:-0.058880pt;}
.lscc{letter-spacing:-0.053333pt;}
.ls2a{letter-spacing:-0.053120pt;}
.lsb3{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsbb{letter-spacing:0.005312pt;}
.lsb9{letter-spacing:0.015936pt;}
.lsc3{letter-spacing:0.029440pt;}
.ls5c{letter-spacing:0.042496pt;}
.ls35{letter-spacing:0.047808pt;}
.ls6d{letter-spacing:0.053120pt;}
.lsc8{letter-spacing:0.053333pt;}
.lsa4{letter-spacing:0.062400pt;}
.ls8c{letter-spacing:0.095616pt;}
.ls3e{letter-spacing:0.096000pt;}
.ls3f{letter-spacing:0.106240pt;}
.lsc4{letter-spacing:0.106667pt;}
.ls5f{letter-spacing:0.110400pt;}
.ls72{letter-spacing:0.111360pt;}
.ls67{letter-spacing:0.116864pt;}
.ls5a{letter-spacing:0.122176pt;}
.ls4{letter-spacing:0.128000pt;}
.lsbd{letter-spacing:0.143424pt;}
.ls41{letter-spacing:0.144000pt;}
.lsc5{letter-spacing:0.159360pt;}
.ls6f{letter-spacing:0.160000pt;}
.ls9f{letter-spacing:0.172800pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.212480pt;}
.lscd{letter-spacing:0.213333pt;}
.ls73{letter-spacing:0.224000pt;}
.lsb7{letter-spacing:0.233728pt;}
.ls44{letter-spacing:0.240000pt;}
.ls86{letter-spacing:0.240640pt;}
.lsb5{letter-spacing:0.249664pt;}
.ls21{letter-spacing:0.256000pt;}
.ls56{letter-spacing:0.281536pt;}
.lsb1{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.299520pt;}
.ls1b{letter-spacing:0.300160pt;}
.ls8e{letter-spacing:0.313408pt;}
.ls29{letter-spacing:0.318720pt;}
.lsb8{letter-spacing:0.324032pt;}
.ls8d{letter-spacing:0.329344pt;}
.ls42{letter-spacing:0.336000pt;}
.lsb0{letter-spacing:0.369600pt;}
.lsc{letter-spacing:0.371840pt;}
.ls6c{letter-spacing:0.374400pt;}
.ls92{letter-spacing:0.387776pt;}
.ls32{letter-spacing:0.393088pt;}
.ls90{letter-spacing:0.409024pt;}
.ls26{letter-spacing:0.424960pt;}
.lsba{letter-spacing:0.440896pt;}
.lsb6{letter-spacing:0.451520pt;}
.ls88{letter-spacing:0.504640pt;}
.ls5{letter-spacing:0.531200pt;}
.ls70{letter-spacing:0.537600pt;}
.lsf{letter-spacing:0.584320pt;}
.ls8f{letter-spacing:0.589632pt;}
.lsab{letter-spacing:0.600000pt;}
.lsd{letter-spacing:0.621504pt;}
.ls8{letter-spacing:0.632128pt;}
.lsc9{letter-spacing:0.634667pt;}
.ls55{letter-spacing:0.637440pt;}
.ls7{letter-spacing:0.648064pt;}
.lse{letter-spacing:0.685248pt;}
.ls23{letter-spacing:0.796800pt;}
.ls9{letter-spacing:0.849920pt;}
.lsbc{letter-spacing:0.924288pt;}
.ls13{letter-spacing:0.956160pt;}
.ls12{letter-spacing:0.988032pt;}
.ls43{letter-spacing:1.009280pt;}
.ls3c{letter-spacing:1.062400pt;}
.ls8b{letter-spacing:1.110208pt;}
.ls37{letter-spacing:1.168640pt;}
.ls24{letter-spacing:1.221760pt;}
.ls3d{letter-spacing:1.264256pt;}
.ls4e{letter-spacing:1.274880pt;}
.ls53{letter-spacing:1.301440pt;}
.ls52{letter-spacing:1.317376pt;}
.ls3a{letter-spacing:1.354560pt;}
.ls25{letter-spacing:1.434240pt;}
.ls40{letter-spacing:1.487360pt;}
.ls5b{letter-spacing:1.593600pt;}
.ls2{letter-spacing:1.600000pt;}
.ls36{letter-spacing:1.646720pt;}
.ls6{letter-spacing:1.859200pt;}
.ls5d{letter-spacing:1.901696pt;}
.ls51{letter-spacing:1.917632pt;}
.ls50{letter-spacing:1.960128pt;}
.ls3b{letter-spacing:1.965440pt;}
.ls4f{letter-spacing:1.981376pt;}
.ls1{letter-spacing:2.000000pt;}
.ls2f{letter-spacing:2.496640pt;}
.ls4a{letter-spacing:2.539136pt;}
.ls78{letter-spacing:2.544448pt;}
.ls89{letter-spacing:2.549760pt;}
.lsb{letter-spacing:2.560384pt;}
.ls82{letter-spacing:2.565696pt;}
.ls30{letter-spacing:2.608192pt;}
.lsa{letter-spacing:3.134080pt;}
.ls31{letter-spacing:3.213760pt;}
.ls64{letter-spacing:3.309376pt;}
.ls10{letter-spacing:3.771520pt;}
.ls11{letter-spacing:3.803392pt;}
.ls4c{letter-spacing:3.814016pt;}
.ls62{letter-spacing:3.819328pt;}
.ls63{letter-spacing:3.856512pt;}
.ls83{letter-spacing:3.872448pt;}
.ls4d{letter-spacing:4.408960pt;}
.ls5e{letter-spacing:4.456768pt;}
.ls4b{letter-spacing:4.504576pt;}
.ls39{letter-spacing:5.046400pt;}
.ls6a{letter-spacing:5.142016pt;}
.ls38{letter-spacing:5.147328pt;}
.ls54{letter-spacing:5.726336pt;}
.ls59{letter-spacing:5.736960pt;}
.ls6b{letter-spacing:5.795392pt;}
.ls71{letter-spacing:5.811328pt;}
.ls69{letter-spacing:5.859136pt;}
.ls14{letter-spacing:7.011840pt;}
.ls8a{letter-spacing:7.229632pt;}
.ls15{letter-spacing:7.649280pt;}
.ls68{letter-spacing:7.718336pt;}
.ls66{letter-spacing:7.734272pt;}
.ls65{letter-spacing:7.845824pt;}
.ls16{letter-spacing:8.286720pt;}
.ls91{letter-spacing:9.561600pt;}
.ls17{letter-spacing:10.199040pt;}
.ls34{letter-spacing:10.836480pt;}
.ls58{letter-spacing:12.111360pt;}
.ls57{letter-spacing:12.881600pt;}
.ls49{letter-spacing:17.896128pt;}
.ls19{letter-spacing:26.976000pt;}
.lsa2{letter-spacing:46.640000pt;}
.ls1a{letter-spacing:47.472000pt;}
.ls98{letter-spacing:57.072000pt;}
.lsad{letter-spacing:64.771200pt;}
.ls96{letter-spacing:79.472000pt;}
.lsa1{letter-spacing:83.243200pt;}
.ls93{letter-spacing:101.856000pt;}
.lsaf{letter-spacing:129.824000pt;}
.lsac{letter-spacing:232.240000pt;}
.lsae{letter-spacing:232.272000pt;}
.lsa9{letter-spacing:254.016000pt;}
.lsa7{letter-spacing:254.032000pt;}
.ls7f{letter-spacing:274.032000pt;}
.lsa6{letter-spacing:275.760000pt;}
.lsa3{letter-spacing:275.776000pt;}
.ls7c{letter-spacing:295.136000pt;}
.ls7b{letter-spacing:297.696000pt;}
.ls81{letter-spacing:298.992000pt;}
.lsa5{letter-spacing:328.896000pt;}
.ls80{letter-spacing:402.000000pt;}
.ls7d{letter-spacing:425.712000pt;}
.lsa8{letter-spacing:438.336000pt;}
.ls79{letter-spacing:457.712000pt;}
.ls7a{letter-spacing:500.592000pt;}
.lsaa{letter-spacing:504.272000pt;}
.ls7e{letter-spacing:530.000000pt;}
.ls18{letter-spacing:753.232640pt;}
.ls84{letter-spacing:753.338880pt;}
.ls95{letter-spacing:799.456000pt;}
.ls97{letter-spacing:802.656000pt;}
.ls94{letter-spacing:894.192000pt;}
.ls99{letter-spacing:903.776000pt;}
.ls9a{letter-spacing:994.656000pt;}
.ls9d{letter-spacing:1285.200000pt;}
.ls9c{letter-spacing:1288.416000pt;}
.ls9b{letter-spacing:1334.496000pt;}
.ls9e{letter-spacing:1389.536000pt;}
.wsa3{word-spacing:-25.551147pt;}
.ws39{word-spacing:-21.116160pt;}
.ws5{word-spacing:-20.816640pt;}
.ws3{word-spacing:-20.517120pt;}
.ws9a{word-spacing:-20.217600pt;}
.ws4{word-spacing:-20.142720pt;}
.ws7{word-spacing:-17.728000pt;}
.ws5b{word-spacing:-16.360960pt;}
.ws3d{word-spacing:-16.254720pt;}
.ws5c{word-spacing:-16.201600pt;}
.ws5a{word-spacing:-15.989120pt;}
.ws3c{word-spacing:-15.936000pt;}
.ws3f{word-spacing:-15.776640pt;}
.wsb{word-spacing:-15.564160pt;}
.ws83{word-spacing:-15.456000pt;}
.ws5d{word-spacing:-15.351680pt;}
.ws8{word-spacing:-15.298560pt;}
.wsc{word-spacing:-15.192320pt;}
.wsa{word-spacing:-15.139200pt;}
.wsf{word-spacing:-15.086080pt;}
.ws6a{word-spacing:-14.979840pt;}
.ws59{word-spacing:-14.873600pt;}
.ws73{word-spacing:-14.820480pt;}
.ws9{word-spacing:-14.767360pt;}
.ws3b{word-spacing:-14.714240pt;}
.wse{word-spacing:-14.661120pt;}
.wsd{word-spacing:-14.554880pt;}
.ws3a{word-spacing:-14.501760pt;}
.ws74{word-spacing:-14.023680pt;}
.ws40{word-spacing:-13.584000pt;}
.ws12{word-spacing:-13.536000pt;}
.ws7b{word-spacing:-13.488000pt;}
.ws6b{word-spacing:-13.440000pt;}
.wsa1{word-spacing:-13.424640pt;}
.ws9b{word-spacing:-13.386240pt;}
.wsa0{word-spacing:-13.365760pt;}
.ws3e{word-spacing:-13.344000pt;}
.ws93{word-spacing:-13.248000pt;}
.ws9c{word-spacing:-13.226880pt;}
.ws41{word-spacing:-13.008000pt;}
.ws11{word-spacing:-12.912000pt;}
.ws88{word-spacing:-12.816000pt;}
.wsa2{word-spacing:-12.218027pt;}
.wsa6{word-spacing:-12.217600pt;}
.ws8c{word-spacing:-12.111360pt;}
.ws6{word-spacing:-11.920640pt;}
.wsa4{word-spacing:-11.845760pt;}
.ws8d{word-spacing:-11.580160pt;}
.ws96{word-spacing:-11.232000pt;}
.ws98{word-spacing:-10.896000pt;}
.ws6c{word-spacing:-10.800000pt;}
.ws97{word-spacing:-10.704000pt;}
.ws10{word-spacing:-10.319360pt;}
.wsa5{word-spacing:-10.305280pt;}
.ws42{word-spacing:-10.170880pt;}
.ws91{word-spacing:-9.607680pt;}
.ws7f{word-spacing:-9.605120pt;}
.ws81{word-spacing:-9.433600pt;}
.ws1{word-spacing:-9.280000pt;}
.ws7d{word-spacing:-8.166400pt;}
.ws84{word-spacing:-7.424000pt;}
.ws47{word-spacing:-3.771520pt;}
.ws48{word-spacing:-3.134080pt;}
.ws2c{word-spacing:-2.496640pt;}
.ws6e{word-spacing:-2.390400pt;}
.ws8a{word-spacing:-2.337280pt;}
.wsb5{word-spacing:-1.888000pt;}
.ws2e{word-spacing:-1.859200pt;}
.ws89{word-spacing:-1.699840pt;}
.ws23{word-spacing:-1.434240pt;}
.ws21{word-spacing:-1.221760pt;}
.ws4f{word-spacing:-1.168640pt;}
.ws26{word-spacing:-1.062400pt;}
.ws4e{word-spacing:-1.009280pt;}
.ws20{word-spacing:-0.796800pt;}
.ws70{word-spacing:-0.720000pt;}
.ws75{word-spacing:-0.673920pt;}
.ws6f{word-spacing:-0.672000pt;}
.wsb3{word-spacing:-0.634667pt;}
.ws2d{word-spacing:-0.584320pt;}
.ws1d{word-spacing:-0.531200pt;}
.ws1b{word-spacing:-0.448000pt;}
.ws63{word-spacing:-0.424960pt;}
.ws87{word-spacing:-0.384000pt;}
.ws1e{word-spacing:-0.371840pt;}
.ws99{word-spacing:-0.336000pt;}
.ws69{word-spacing:-0.318720pt;}
.ws13{word-spacing:-0.300160pt;}
.ws8e{word-spacing:-0.265600pt;}
.ws4b{word-spacing:-0.240000pt;}
.ws15{word-spacing:-0.224640pt;}
.wsb0{word-spacing:-0.213333pt;}
.ws76{word-spacing:-0.212480pt;}
.ws54{word-spacing:-0.192000pt;}
.wsbd{word-spacing:-0.176000pt;}
.ws62{word-spacing:-0.159360pt;}
.ws86{word-spacing:-0.144000pt;}
.ws19{word-spacing:-0.128000pt;}
.wsbc{word-spacing:-0.112000pt;}
.wsa9{word-spacing:-0.106667pt;}
.ws46{word-spacing:-0.106240pt;}
.ws38{word-spacing:-0.096000pt;}
.wsa7{word-spacing:-0.058880pt;}
.wsae{word-spacing:-0.058667pt;}
.wsb1{word-spacing:-0.053333pt;}
.ws8f{word-spacing:-0.053120pt;}
.ws49{word-spacing:-0.048000pt;}
.wsbf{word-spacing:-0.021333pt;}
.ws0{word-spacing:0.000000pt;}
.wsaf{word-spacing:0.048000pt;}
.ws27{word-spacing:0.053120pt;}
.wsb6{word-spacing:0.053333pt;}
.wsa8{word-spacing:0.058880pt;}
.ws1a{word-spacing:0.064000pt;}
.ws57{word-spacing:0.096000pt;}
.ws30{word-spacing:0.106240pt;}
.wsb2{word-spacing:0.106667pt;}
.ws56{word-spacing:0.144000pt;}
.ws9e{word-spacing:0.159360pt;}
.ws65{word-spacing:0.212480pt;}
.ws72{word-spacing:0.240000pt;}
.wsb8{word-spacing:0.256000pt;}
.ws45{word-spacing:0.265600pt;}
.ws55{word-spacing:0.288000pt;}
.ws18{word-spacing:0.299520pt;}
.ws94{word-spacing:0.343040pt;}
.ws17{word-spacing:0.374400pt;}
.ws71{word-spacing:0.424960pt;}
.ws4a{word-spacing:0.432000pt;}
.wsbb{word-spacing:0.480000pt;}
.wsab{word-spacing:0.522667pt;}
.ws53{word-spacing:0.528000pt;}
.ws90{word-spacing:0.531200pt;}
.wsb4{word-spacing:0.533333pt;}
.wsbe{word-spacing:0.538667pt;}
.wsb7{word-spacing:0.554667pt;}
.ws37{word-spacing:0.584320pt;}
.wsaa{word-spacing:0.586667pt;}
.ws14{word-spacing:0.599040pt;}
.ws16{word-spacing:0.673920pt;}
.wsac{word-spacing:0.688000pt;}
.ws36{word-spacing:0.690560pt;}
.ws58{word-spacing:0.720000pt;}
.ws78{word-spacing:0.743680pt;}
.wsba{word-spacing:0.773333pt;}
.ws9d{word-spacing:0.796800pt;}
.ws66{word-spacing:0.849920pt;}
.wsb9{word-spacing:0.890667pt;}
.ws7a{word-spacing:0.903040pt;}
.ws44{word-spacing:0.973440pt;}
.ws9f{word-spacing:1.062400pt;}
.wsad{word-spacing:1.210667pt;}
.ws1c{word-spacing:1.328000pt;}
.ws4c{word-spacing:1.381120pt;}
.ws64{word-spacing:1.487360pt;}
.ws4d{word-spacing:1.540480pt;}
.ws5e{word-spacing:1.965440pt;}
.ws25{word-spacing:2.018560pt;}
.ws92{word-spacing:2.124800pt;}
.ws79{word-spacing:2.602880pt;}
.ws24{word-spacing:2.656000pt;}
.ws29{word-spacing:2.762240pt;}
.ws2a{word-spacing:3.240320pt;}
.ws28{word-spacing:3.293440pt;}
.ws61{word-spacing:3.452800pt;}
.ws35{word-spacing:3.930880pt;}
.ws1f{word-spacing:4.568320pt;}
.ws77{word-spacing:4.727680pt;}
.ws50{word-spacing:5.205760pt;}
.ws51{word-spacing:5.843200pt;}
.ws68{word-spacing:6.002560pt;}
.ws52{word-spacing:6.480640pt;}
.ws2{word-spacing:6.720000pt;}
.ws2b{word-spacing:7.118080pt;}
.ws2f{word-spacing:7.755520pt;}
.ws32{word-spacing:8.392960pt;}
.ws31{word-spacing:8.552320pt;}
.ws95{word-spacing:9.667840pt;}
.ws34{word-spacing:10.305280pt;}
.ws22{word-spacing:10.942720pt;}
.ws8b{word-spacing:11.314560pt;}
.ws33{word-spacing:11.580160pt;}
.ws67{word-spacing:12.217600pt;}
.ws5f{word-spacing:17.370240pt;}
.ws60{word-spacing:18.007680pt;}
.ws82{word-spacing:69.152000pt;}
.ws7e{word-spacing:141.831808pt;}
.ws80{word-spacing:143.360704pt;}
.ws7c{word-spacing:152.076928pt;}
.ws43{word-spacing:168.912000pt;}
.ws6d{word-spacing:231.283200pt;}
.ws85{word-spacing:786.646400pt;}
._2{margin-left:-10.208000pt;}
._1{margin-left:-9.280000pt;}
._3{margin-left:-8.352000pt;}
._0{margin-left:-4.640000pt;}
._6{margin-left:-3.461333pt;}
._4{margin-left:-2.000000pt;}
._7{margin-left:-0.977664pt;}
._8{width:0.906048pt;}
._5{width:1.920000pt;}
._9{width:2.857280pt;}
._b{width:4.343808pt;}
._a{width:5.571584pt;}
._e{width:6.632896pt;}
._c{width:7.976000pt;}
._16{width:9.027392pt;}
._d{width:10.677120pt;}
._f{width:16.176000pt;}
._13{width:17.389568pt;}
._12{width:18.376512pt;}
._25{width:121.888000pt;}
._17{width:150.720000pt;}
._1c{width:273.312512pt;}
._23{width:282.448000pt;}
._18{width:288.192512pt;}
._1e{width:298.432000pt;}
._20{width:299.342336pt;}
._22{width:320.208000pt;}
._11{width:325.220245pt;}
._1f{width:335.552000pt;}
._1d{width:336.625664pt;}
._21{width:424.896000pt;}
._1a{width:445.818560pt;}
._15{width:464.621760pt;}
._19{width:546.564608pt;}
._10{width:623.138389pt;}
._1b{width:709.998656pt;}
._24{width:753.795840pt;}
._14{width:782.567808pt;}
._26{width:1448.336000pt;}
.fs10{font-size:16.000000pt;}
.fsf{font-size:32.000000pt;}
.fs11{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs12{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:96.000000pt;}
.fs6{font-size:224.000000pt;}
.fs5{font-size:232.000000pt;}
.y0{bottom:0.000000pt;}
.y136{bottom:0.746533pt;}
.y138{bottom:0.813333pt;}
.y134{bottom:0.822267pt;}
.y1e5{bottom:1.759867pt;}
.y1ce{bottom:1.760000pt;}
.y1d3{bottom:1.920000pt;}
.y74{bottom:2.014800pt;}
.y13a{bottom:2.023200pt;}
.y13e{bottom:2.092667pt;}
.y71{bottom:2.109867pt;}
.y13c{bottom:2.125333pt;}
.y132{bottom:2.191200pt;}
.y12e{bottom:2.440267pt;}
.y12c{bottom:2.502000pt;}
.y1dc{bottom:2.560000pt;}
.y1b7{bottom:2.720000pt;}
.y87{bottom:3.018667pt;}
.yd6{bottom:3.699467pt;}
.y151{bottom:3.987467pt;}
.y130{bottom:4.725867pt;}
.y1e6{bottom:5.759867pt;}
.y1ee{bottom:5.760000pt;}
.y12a{bottom:5.788933pt;}
.y16b{bottom:8.800000pt;}
.y161{bottom:8.960000pt;}
.y170{bottom:10.560000pt;}
.y159{bottom:12.159867pt;}
.y154{bottom:12.640000pt;}
.y164{bottom:13.280000pt;}
.y1db{bottom:16.320000pt;}
.y15d{bottom:16.480000pt;}
.y1e2{bottom:18.240000pt;}
.y1fa{bottom:18.560000pt;}
.y1d0{bottom:18.880000pt;}
.y2a{bottom:21.283520pt;}
.y1b6{bottom:30.240000pt;}
.y6{bottom:31.933340pt;}
.y29{bottom:33.440000pt;}
.y5{bottom:59.133337pt;}
.y115{bottom:82.220000pt;}
.y6e{bottom:82.232000pt;}
.y1ca{bottom:82.236000pt;}
.y4e{bottom:82.240000pt;}
.y1a3{bottom:85.755040pt;}
.y4{bottom:86.333337pt;}
.yc6{bottom:88.000000pt;}
.yb0{bottom:90.605440pt;}
.y114{bottom:95.984000pt;}
.y6d{bottom:95.996000pt;}
.y1c9{bottom:96.000000pt;}
.y1a2{bottom:101.120000pt;}
.y24d{bottom:102.573440pt;}
.yc5{bottom:103.040000pt;}
.y4d{bottom:105.760000pt;}
.y113{bottom:109.748000pt;}
.y6c{bottom:109.760000pt;}
.yaf{bottom:111.880000pt;}
.y185{bottom:115.432800pt;}
.y1c8{bottom:115.680000pt;}
.y1a1{bottom:116.160000pt;}
.y24c{bottom:117.287680pt;}
.y4c{bottom:118.560000pt;}
.y25b{bottom:121.760000pt;}
.yc4{bottom:122.720000pt;}
.y112{bottom:123.668000pt;}
.y22{bottom:123.790666pt;}
.y6b{bottom:127.680000pt;}
.y1c7{bottom:128.320000pt;}
.yae{bottom:133.313920pt;}
.y1a0{bottom:133.600000pt;}
.y24b{bottom:135.853120pt;}
.y25a{bottom:136.484000pt;}
.y184{bottom:137.198720pt;}
.y111{bottom:137.432000pt;}
.yc3{bottom:137.756000pt;}
.y6a{bottom:139.040000pt;}
.y19f{bottom:145.440000pt;}
.y24a{bottom:150.567360pt;}
.y259{bottom:151.040000pt;}
.y110{bottom:151.196000pt;}
.yad{bottom:154.588480pt;}
.yc2{bottom:157.280000pt;}
.y183{bottom:158.473280pt;}
.yfa{bottom:159.582400pt;}
.y69{bottom:161.949440pt;}
.y10f{bottom:164.960000pt;}
.y258{bottom:165.760000pt;}
.y249{bottom:169.132800pt;}
.yc1{bottom:170.080000pt;}
.y19{bottom:175.052000pt;}
.yac{bottom:175.863040pt;}
.y182{bottom:179.747840pt;}
.y257{bottom:180.484000pt;}
.yf9{bottom:180.856960pt;}
.y68{bottom:183.224000pt;}
.y248{bottom:183.847040pt;}
.y10e{bottom:184.640000pt;}
.y218{bottom:186.080000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y256{bottom:195.040000pt;}
.y10d{bottom:197.280000pt;}
.yab{bottom:197.296960pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y181{bottom:201.181760pt;}
.yf8{bottom:202.290880pt;}
.y247{bottom:202.571840pt;}
.y67{bottom:204.657920pt;}
.y217{bottom:205.114560pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y246{bottom:217.286080pt;}
.yaa{bottom:218.571520pt;}
.y180{bottom:222.456320pt;}
.yf7{bottom:223.565440pt;}
.y216{bottom:223.680000pt;}
.y10c{bottom:224.205920pt;}
.y66{bottom:225.932480pt;}
.y255{bottom:226.073280pt;}
.y1c6{bottom:227.520000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y4b{bottom:231.520000pt;}
.y245{bottom:231.840960pt;}
.ya9{bottom:239.846080pt;}
.y215{bottom:242.072000pt;}
.y254{bottom:242.075733pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y17f{bottom:243.730880pt;}
.yf6{bottom:244.840000pt;}
.y10b{bottom:245.480480pt;}
.y65{bottom:247.207040pt;}
.y1c5{bottom:247.846080pt;}
.y244{bottom:250.565760pt;}
.y4a{bottom:253.267200pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y214{bottom:255.836000pt;}
.y83{bottom:258.822400pt;}
.ya8{bottom:261.280000pt;}
.y17e{bottom:265.164800pt;}
.y243{bottom:265.280000pt;}
.yf5{bottom:266.273920pt;}
.y10a{bottom:266.914400pt;}
.y64{bottom:268.640960pt;}
.y1c4{bottom:269.280000pt;}
.y213{bottom:269.756000pt;}
.y49{bottom:274.541760pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y253{bottom:278.237067pt;}
.y212{bottom:283.520000pt;}
.y242{bottom:283.893440pt;}
.y17d{bottom:286.439360pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yf4{bottom:287.548480pt;}
.y109{bottom:288.188960pt;}
.y1c3{bottom:288.964000pt;}
.y63{bottom:289.915520pt;}
.y48{bottom:295.975680pt;}
.ya7{bottom:298.400000pt;}
.y241{bottom:298.607680pt;}
.y211{bottom:305.600320pt;}
.y17c{bottom:307.713920pt;}
.yf3{bottom:308.823040pt;}
.y10{bottom:309.452000pt;}
.y108{bottom:309.463520pt;}
.y62{bottom:309.915200pt;}
.y1c2{bottom:310.720000pt;}
.y252{bottom:312.637333pt;}
.yc0{bottom:316.970880pt;}
.y240{bottom:317.173120pt;}
.y47{bottom:317.250240pt;}
.y210{bottom:325.600000pt;}
.y61{bottom:328.640000pt;}
.y17b{bottom:329.147840pt;}
.yf2{bottom:330.256960pt;}
.y107{bottom:330.897440pt;}
.y23f{bottom:331.887360pt;}
.y1c1{bottom:334.240000pt;}
.ybf{bottom:338.245440pt;}
.y46{bottom:338.524800pt;}
.y20e{bottom:343.360000pt;}
.yf{bottom:343.809333pt;}
.y60{bottom:347.040000pt;}
.y20f{bottom:349.120000pt;}
.y17a{bottom:350.422400pt;}
.y23e{bottom:350.612160pt;}
.yf1{bottom:351.531520pt;}
.ya6{bottom:352.169600pt;}
.y106{bottom:352.172000pt;}
.ybe{bottom:359.548480pt;}
.y45{bottom:359.958720pt;}
.y1c0{bottom:361.760000pt;}
.ye{bottom:362.706666pt;}
.y20d{bottom:364.000000pt;}
.y23d{bottom:365.326400pt;}
.y251{bottom:365.590667pt;}
.y5f{bottom:367.040000pt;}
.y82{bottom:370.880000pt;}
.y179{bottom:371.696960pt;}
.yf0{bottom:372.806080pt;}
.y20a{bottom:373.116000pt;}
.y105{bottom:373.446560pt;}
.ya5{bottom:373.603520pt;}
.ybd{bottom:380.982400pt;}
.y44{bottom:381.233280pt;}
.y250{bottom:381.593333pt;}
.y23c{bottom:383.891840pt;}
.y20b{bottom:384.640000pt;}
.y209{bottom:386.880000pt;}
.y86{bottom:387.871867pt;}
.y20c{bottom:390.400000pt;}
.y1bf{bottom:390.880000pt;}
.y178{bottom:393.130880pt;}
.yef{bottom:394.240000pt;}
.ya4{bottom:394.878080pt;}
.y104{bottom:394.880480pt;}
.y24f{bottom:397.596000pt;}
.y23b{bottom:398.606080pt;}
.y85{bottom:401.845200pt;}
.ybc{bottom:402.256960pt;}
.y43{bottom:402.507840pt;}
.y208{bottom:405.280000pt;}
.y177{bottom:414.405440pt;}
.y103{bottom:414.880160pt;}
.ya3{bottom:416.152640pt;}
.y23a{bottom:417.171520pt;}
.y1be{bottom:419.840000pt;}
.y1aa{bottom:421.159360pt;}
.ybb{bottom:423.531520pt;}
.y42{bottom:423.941760pt;}
.y84{bottom:425.983867pt;}
.y206{bottom:426.080000pt;}
.yee{bottom:431.365600pt;}
.y102{bottom:431.520000pt;}
.y207{bottom:431.680000pt;}
.y239{bottom:431.885760pt;}
.y204{bottom:435.200000pt;}
.y176{bottom:435.680000pt;}
.ya2{bottom:437.586560pt;}
.y24e{bottom:440.480000pt;}
.y75{bottom:440.547067pt;}
.y1a9{bottom:442.433920pt;}
.yba{bottom:444.965440pt;}
.y41{bottom:445.216320pt;}
.y202{bottom:446.720000pt;}
.yd{bottom:446.990669pt;}
.y1bd{bottom:448.800000pt;}
.y203{bottom:448.960000pt;}
.y238{bottom:450.610560pt;}
.y101{bottom:451.200000pt;}
.y205{bottom:452.320000pt;}
.yed{bottom:452.800000pt;}
.y76{bottom:455.103067pt;}
.y175{bottom:455.356000pt;}
.ya1{bottom:458.861120pt;}
.yc{bottom:462.990669pt;}
.y1a8{bottom:463.867840pt;}
.y237{bottom:465.324800pt;}
.yb9{bottom:466.256960pt;}
.y40{bottom:466.490880pt;}
.y200{bottom:467.360000pt;}
.y77{bottom:469.659067pt;}
.y100{bottom:470.560000pt;}
.y201{bottom:473.120000pt;}
.y174{bottom:473.272000pt;}
.y1bc{bottom:477.760000pt;}
.yb{bottom:478.990666pt;}
.ya0{bottom:480.135680pt;}
.y236{bottom:483.890240pt;}
.y6f{bottom:484.012933pt;}
.y78{bottom:484.215067pt;}
.y1a7{bottom:485.142400pt;}
.y173{bottom:487.036000pt;}
.yb8{bottom:487.531520pt;}
.y3f{bottom:487.924800pt;}
.y1ff{bottom:488.000000pt;}
.yff{bottom:490.396000pt;}
.y72{bottom:493.089333pt;}
.ya{bottom:494.990666pt;}
.y235{bottom:498.604480pt;}
.y79{bottom:498.771067pt;}
.y70{bottom:500.800000pt;}
.y9f{bottom:501.569600pt;}
.yfe{bottom:504.160000pt;}
.y1a6{bottom:506.416960pt;}
.yec{bottom:506.513280pt;}
.y1bb{bottom:506.880000pt;}
.y1fd{bottom:508.640000pt;}
.yb7{bottom:508.965440pt;}
.y3e{bottom:509.199360pt;}
.y73{bottom:510.400000pt;}
.y7a{bottom:513.327067pt;}
.y172{bottom:513.920000pt;}
.y1fe{bottom:514.400000pt;}
.y234{bottom:517.169920pt;}
.yfd{bottom:517.600000pt;}
.y9e{bottom:522.844160pt;}
.y16f{bottom:523.360000pt;}
.y1a5{bottom:527.850880pt;}
.y7b{bottom:527.883067pt;}
.yeb{bottom:527.947200pt;}
.y150{bottom:528.000000pt;}
.y1fc{bottom:529.280000pt;}
.yb6{bottom:530.240000pt;}
.y3d{bottom:530.473920pt;}
.y1f6{bottom:530.720000pt;}
.y233{bottom:531.884160pt;}
.y171{bottom:533.920000pt;}
.y1ba{bottom:535.840000pt;}
.y19e{bottom:538.720000pt;}
.y7c{bottom:542.439067pt;}
.y9d{bottom:544.118720pt;}
.y14f{bottom:547.420000pt;}
.y1a4{bottom:549.125440pt;}
.yea{bottom:549.221760pt;}
.yb5{bottom:549.920000pt;}
.y1f8{bottom:550.080000pt;}
.y232{bottom:550.608960pt;}
.y3c{bottom:551.907840pt;}
.y16d{bottom:553.600000pt;}
.y1fb{bottom:554.880000pt;}
.y7d{bottom:556.995067pt;}
.y19d{bottom:557.440000pt;}
.y1f9{bottom:561.760000pt;}
.y16e{bottom:562.560000pt;}
.y14e{bottom:562.852667pt;}
.yb4{bottom:563.840000pt;}
.y1b9{bottom:564.800000pt;}
.y231{bottom:565.323200pt;}
.y9c{bottom:565.552640pt;}
.ye9{bottom:570.496320pt;}
.y7e{bottom:571.551067pt;}
.y3b{bottom:573.182400pt;}
.y9{bottom:573.786667pt;}
.y19c{bottom:576.160000pt;}
.yb3{bottom:577.920000pt;}
.y14d{bottom:578.285200pt;}
.y16a{bottom:580.160000pt;}
.y1f5{bottom:582.720000pt;}
.y230{bottom:583.888640pt;}
.y7f{bottom:586.107067pt;}
.y9b{bottom:586.827200pt;}
.y1f7{bottom:588.320000pt;}
.y16c{bottom:588.960000pt;}
.yd5{bottom:590.400000pt;}
.ye8{bottom:591.930240pt;}
.y8{bottom:592.685334pt;}
.y14c{bottom:593.717733pt;}
.y1b8{bottom:593.760000pt;}
.y3a{bottom:594.456960pt;}
.y19b{bottom:594.880000pt;}
.y27{bottom:596.031467pt;}
.y22f{bottom:598.602880pt;}
.y80{bottom:600.663067pt;}
.y1f3{bottom:603.360000pt;}
.y168{bottom:606.560000pt;}
.y9a{bottom:608.101760pt;}
.y1f4{bottom:609.120000pt;}
.y14b{bottom:609.150267pt;}
.yd4{bottom:609.410800pt;}
.y1b5{bottom:612.960000pt;}
.ye7{bottom:613.204800pt;}
.y22e{bottom:613.317120pt;}
.y19a{bottom:613.440000pt;}
.y81{bottom:615.219067pt;}
.y169{bottom:615.520000pt;}
.y39{bottom:615.890880pt;}
.y1f1{bottom:624.000000pt;}
.y14a{bottom:624.582800pt;}
.yd3{bottom:624.722133pt;}
.y1b4{bottom:629.440000pt;}
.y99{bottom:629.535680pt;}
.y1f2{bottom:629.760000pt;}
.y22d{bottom:631.882560pt;}
.y199{bottom:632.160000pt;}
.y166{bottom:632.960000pt;}
.ye6{bottom:634.479360pt;}
.y38{bottom:637.165440pt;}
.y167{bottom:641.920000pt;}
.y26{bottom:644.031467pt;}
.y1ef{bottom:644.640000pt;}
.y7{bottom:645.598667pt;}
.y148{bottom:646.453600pt;}
.y22c{bottom:646.596800pt;}
.yd2{bottom:648.621733pt;}
.y1f0{bottom:650.400000pt;}
.y98{bottom:650.810240pt;}
.y198{bottom:650.880000pt;}
.y5e{bottom:653.436000pt;}
.y149{bottom:655.573600pt;}
.y147{bottom:655.733600pt;}
.ye5{bottom:655.913280pt;}
.y37{bottom:658.440000pt;}
.y163{bottom:659.520000pt;}
.yc7{bottom:663.177733pt;}
.y13f{bottom:664.642533pt;}
.y22b{bottom:665.162240pt;}
.y1ed{bottom:665.280000pt;}
.y5d{bottom:667.200000pt;}
.y25{bottom:668.031467pt;}
.y165{bottom:668.480000pt;}
.y3{bottom:668.977329pt;}
.y197{bottom:669.440000pt;}
.y97{bottom:672.084800pt;}
.y1b3{bottom:673.756000pt;}
.ye4{bottom:677.187840pt;}
.y36{bottom:679.873920pt;}
.y22a{bottom:679.876480pt;}
.yc8{bottom:682.209733pt;}
.y160{bottom:685.920000pt;}
.y1ec{bottom:686.080000pt;}
.y196{bottom:688.160000pt;}
.y1e8{bottom:691.680000pt;}
.y117{bottom:691.825120pt;}
.y96{bottom:693.518720pt;}
.y229{bottom:694.590720pt;}
.y162{bottom:694.880000pt;}
.ye3{bottom:698.462400pt;}
.y5c{bottom:698.605440pt;}
.y140{bottom:698.721413pt;}
.y35{bottom:701.148480pt;}
.yc9{bottom:701.241733pt;}
.y1b2{bottom:703.840000pt;}
.y1ea{bottom:706.720000pt;}
.y195{bottom:706.880000pt;}
.y1eb{bottom:712.320000pt;}
.y15c{bottom:712.480000pt;}
.y228{bottom:713.156160pt;}
.y95{bottom:714.793280pt;}
.y116{bottom:715.684000pt;}
.y24{bottom:716.031467pt;}
.y15f{bottom:717.756000pt;}
.y1b1{bottom:719.868480pt;}
.y5b{bottom:719.880000pt;}
.ye2{bottom:719.896320pt;}
.yca{bottom:720.273733pt;}
.y34{bottom:722.423040pt;}
.y194{bottom:725.440000pt;}
.y1e7{bottom:727.360000pt;}
.y227{bottom:727.870400pt;}
.y15e{bottom:731.520000pt;}
.y119{bottom:732.378720pt;}
.y141{bottom:732.800293pt;}
.y1e9{bottom:733.120000pt;}
.y94{bottom:736.067840pt;}
.ycb{bottom:739.305733pt;}
.ye1{bottom:741.170880pt;}
.y1b0{bottom:741.302400pt;}
.y5a{bottom:741.313920pt;}
.y226{bottom:742.584640pt;}
.y118{bottom:742.939360pt;}
.y33{bottom:743.856960pt;}
.y193{bottom:744.160000pt;}
.y158{bottom:745.600000pt;}
.y1e4{bottom:748.000000pt;}
.y15b{bottom:750.880000pt;}
.y11a{bottom:753.165920pt;}
.y93{bottom:757.501760pt;}
.y157{bottom:757.759867pt;}
.ycc{bottom:758.337733pt;}
.y11c{bottom:759.986720pt;}
.y225{bottom:761.150080pt;}
.ye0{bottom:762.445440pt;}
.y1af{bottom:762.576960pt;}
.y59{bottom:762.588480pt;}
.y192{bottom:762.880000pt;}
.y15a{bottom:764.800000pt;}
.y32{bottom:765.131520pt;}
.y11b{bottom:766.798240pt;}
.y142{bottom:766.879173pt;}
.y1e1{bottom:768.640000pt;}
.y1e3{bottom:773.120000pt;}
.y11d{bottom:773.619040pt;}
.y224{bottom:775.864320pt;}
.ycd{bottom:777.369733pt;}
.y92{bottom:778.776320pt;}
.y153{bottom:779.360000pt;}
.y11f{bottom:780.439840pt;}
.y191{bottom:781.440000pt;}
.y2{bottom:781.661334pt;}
.y11e{bottom:783.845600pt;}
.y1ae{bottom:783.851520pt;}
.y58{bottom:783.863040pt;}
.ydf{bottom:783.879360pt;}
.y156{bottom:785.116000pt;}
.y31{bottom:786.406080pt;}
.y223{bottom:790.578560pt;}
.yce{bottom:796.401733pt;}
.y120{bottom:797.487200pt;}
.y155{bottom:798.880000pt;}
.y91{bottom:800.050880pt;}
.y190{bottom:800.160000pt;}
.y1df{bottom:800.480000pt;}
.y143{bottom:800.958053pt;}
.y12d{bottom:804.960000pt;}
.yde{bottom:805.153920pt;}
.y1ad{bottom:805.285440pt;}
.y57{bottom:805.296960pt;}
.y137{bottom:805.760000pt;}
.y1e0{bottom:806.240000pt;}
.y30{bottom:807.840000pt;}
.y222{bottom:809.144000pt;}
.y122{bottom:810.748133pt;}
.y121{bottom:814.868640pt;}
.ycf{bottom:815.433733pt;}
.y124{bottom:817.566053pt;}
.y18f{bottom:818.880000pt;}
.y1dd{bottom:821.280000pt;}
.y90{bottom:821.484800pt;}
.y221{bottom:823.858240pt;}
.y139{bottom:824.320000pt;}
.y135{bottom:826.240000pt;}
.ydd{bottom:826.428480pt;}
.y56{bottom:826.571520pt;}
.y1ac{bottom:826.593920pt;}
.y1de{bottom:826.880000pt;}
.y128{bottom:827.782213pt;}
.y12f{bottom:831.040000pt;}
.y126{bottom:831.062533pt;}
.y13b{bottom:832.320000pt;}
.y152{bottom:832.640000pt;}
.yd0{bottom:834.465733pt;}
.y144{bottom:835.036933pt;}
.y123{bottom:837.333733pt;}
.y18e{bottom:837.440000pt;}
.y133{bottom:839.840000pt;}
.y1da{bottom:840.960000pt;}
.y1d9{bottom:841.920000pt;}
.y220{bottom:842.583040pt;}
.y8f{bottom:842.759360pt;}
.y129{bottom:844.160000pt;}
.y2f{bottom:844.320000pt;}
.y125{bottom:844.827013pt;}
.y131{bottom:845.920000pt;}
.y55{bottom:847.846080pt;}
.ydc{bottom:847.862400pt;}
.y1ab{bottom:847.868480pt;}
.y13d{bottom:852.800000pt;}
.yd1{bottom:853.497733pt;}
.y18d{bottom:856.160000pt;}
.y21f{bottom:857.297280pt;}
.y1{bottom:859.312000pt;}
.y8e{bottom:864.033920pt;}
.y28{bottom:864.189067pt;}
.y127{bottom:865.270053pt;}
.y12b{bottom:866.240000pt;}
.y145{bottom:869.115813pt;}
.ydb{bottom:869.136960pt;}
.y54{bottom:869.302400pt;}
.y1d7{bottom:870.080000pt;}
.y18c{bottom:874.880000pt;}
.y1d8{bottom:875.840000pt;}
.y21e{bottom:875.862720pt;}
.yb2{bottom:882.876000pt;}
.y8d{bottom:885.467840pt;}
.y2e{bottom:886.880000pt;}
.yda{bottom:890.411520pt;}
.y53{bottom:890.576960pt;}
.y1d5{bottom:890.720000pt;}
.y18b{bottom:893.440000pt;}
.y1d6{bottom:896.480000pt;}
.yb1{bottom:896.640000pt;}
.y146{bottom:903.194693pt;}
.y21d{bottom:905.291200pt;}
.y1d4{bottom:906.720000pt;}
.y8c{bottom:906.742400pt;}
.y23{bottom:909.354133pt;}
.y1d2{bottom:911.360000pt;}
.yd9{bottom:911.845440pt;}
.y52{bottom:911.851520pt;}
.y18a{bottom:912.160000pt;}
.y21c{bottom:919.846080pt;}
.y2d{bottom:924.965600pt;}
.yfc{bottom:925.440000pt;}
.y8b{bottom:928.016960pt;}
.y189{bottom:930.880000pt;}
.y1cd{bottom:932.160000pt;}
.yd8{bottom:933.120000pt;}
.y51{bottom:933.285440pt;}
.y1d1{bottom:937.280000pt;}
.y21b{bottom:938.570880pt;}
.yfb{bottom:939.360000pt;}
.y1cf{bottom:944.160000pt;}
.y2c{bottom:946.400000pt;}
.y188{bottom:949.440000pt;}
.y8a{bottom:949.450880pt;}
.y21a{bottom:953.285120pt;}
.y50{bottom:954.560000pt;}
.y219{bottom:967.840000pt;}
.y187{bottom:968.160000pt;}
.yd7{bottom:970.245600pt;}
.y89{bottom:970.725440pt;}
.y1cc{bottom:984.156000pt;}
.y2b{bottom:984.800000pt;}
.y186{bottom:986.880000pt;}
.y4f{bottom:991.680000pt;}
.y88{bottom:992.000000pt;}
.y1cb{bottom:997.920000pt;}
.h34{height:10.721333pt;}
.h33{height:10.878667pt;}
.h1d{height:10.880000pt;}
.h1c{height:11.040000pt;}
.h35{height:12.000000pt;}
.h36{height:12.160000pt;}
.h32{height:12.161333pt;}
.h30{height:12.480000pt;}
.h1a{height:13.757812pt;}
.h31{height:14.720000pt;}
.h2e{height:15.840000pt;}
.h4b{height:19.998667pt;}
.h4e{height:20.000000pt;}
.h38{height:23.296875pt;}
.h3f{height:26.400000pt;}
.h3e{height:26.560000pt;}
.h40{height:26.561333pt;}
.h1b{height:27.515625pt;}
.h4d{height:27.520000pt;}
.h7{height:28.560000pt;}
.h37{height:28.859375pt;}
.h41{height:29.600000pt;}
.h49{height:31.168125pt;}
.h4f{height:31.200000pt;}
.h2f{height:31.217812pt;}
.h16{height:31.918125pt;}
.h51{height:32.000000pt;}
.h48{height:32.800000pt;}
.h3b{height:33.120000pt;}
.h2a{height:33.476875pt;}
.h3a{height:34.080000pt;}
.h44{height:34.466562pt;}
.h29{height:34.850315pt;}
.h19{height:34.945312pt;}
.h26{height:36.870937pt;}
.hf{height:38.671562pt;}
.h27{height:38.672812pt;}
.h25{height:39.296875pt;}
.h6{height:40.800000pt;}
.h17{height:41.273438pt;}
.h46{height:41.600000pt;}
.h3{height:42.840000pt;}
.h1e{height:43.289062pt;}
.hd{height:43.472000pt;}
.h14{height:45.675938pt;}
.h13{height:46.593750pt;}
.hc{height:47.168000pt;}
.h43{height:47.906563pt;}
.h2{height:48.960000pt;}
.h57{height:51.216000pt;}
.h12{height:52.337813pt;}
.h45{height:52.902445pt;}
.h21{height:52.924205pt;}
.h18{height:52.948525pt;}
.h20{height:52.970285pt;}
.h22{height:52.994605pt;}
.h24{height:53.016365pt;}
.h15{height:53.925887pt;}
.h42{height:54.223488pt;}
.h11{height:54.514687pt;}
.h54{height:56.679040pt;}
.h55{height:56.679253pt;}
.h56{height:57.582080pt;}
.h47{height:58.553438pt;}
.hb{height:59.600000pt;}
.h4a{height:62.465313pt;}
.h53{height:62.824960pt;}
.h3d{height:68.777438pt;}
.h3c{height:68.792904pt;}
.h5{height:69.360000pt;}
.h10{height:69.890625pt;}
.h50{height:70.809063pt;}
.h2c{height:73.009675pt;}
.h28{height:74.345995pt;}
.h2d{height:79.064522pt;}
.h4c{height:84.889062pt;}
.h2b{height:101.666315pt;}
.h4{height:105.826671pt;}
.ha{height:161.952000pt;}
.h9{height:167.736000pt;}
.h1f{height:269.920000pt;}
.h23{height:279.040000pt;}
.h39{height:391.680000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h52{height:1124.000000pt;}
.wc{width:10.721333pt;}
.we{width:14.400000pt;}
.wd{width:26.080000pt;}
.wa{width:50.880000pt;}
.w5{width:74.880000pt;}
.w9{width:85.280000pt;}
.w8{width:85.440000pt;}
.w10{width:102.558667pt;}
.wf{width:102.880000pt;}
.w12{width:185.120000pt;}
.w11{width:264.641333pt;}
.w2{width:566.928019pt;}
.wb{width:582.720000pt;}
.w7{width:584.958667pt;}
.w6{width:594.078667pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w4{width:793.760000pt;}
.w1{width:794.000000pt;}
.w13{width:796.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:5.440000pt;}
.x14{left:7.139333pt;}
.x55{left:8.160000pt;}
.x57{left:15.360000pt;}
.x43{left:16.640000pt;}
.x27{left:36.570400pt;}
.x10{left:39.163333pt;}
.x42{left:42.580133pt;}
.x16{left:52.452267pt;}
.x5{left:69.318800pt;}
.x7{left:72.994400pt;}
.x6{left:73.894400pt;}
.x1b{left:75.582267pt;}
.x4b{left:76.640000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5a{left:104.000000pt;}
.x13{left:106.880000pt;}
.x18{left:109.401600pt;}
.x32{left:111.915840pt;}
.xa{left:113.440000pt;}
.x11{left:116.219333pt;}
.x17{left:117.609600pt;}
.x12{left:119.495333pt;}
.xd{left:128.636000pt;}
.xc{left:132.324000pt;}
.x19{left:133.557600pt;}
.x26{left:136.800000pt;}
.x4c{left:139.827360pt;}
.x51{left:142.400000pt;}
.x59{left:143.665280pt;}
.x41{left:149.460133pt;}
.x1d{left:152.065920pt;}
.x1c{left:153.328000pt;}
.x15{left:159.332267pt;}
.x4{left:180.874667pt;}
.x1a{left:182.942267pt;}
.x28{left:185.920000pt;}
.x21{left:202.827040pt;}
.x1e{left:203.820480pt;}
.x5b{left:205.605333pt;}
.x29{left:236.320000pt;}
.x33{left:241.770133pt;}
.x22{left:253.275360pt;}
.x1f{left:254.275840pt;}
.x34{left:286.146133pt;}
.x2a{left:290.560000pt;}
.x35{left:292.226133pt;}
.x44{left:295.204000pt;}
.x45{left:297.124000pt;}
.x25{left:303.702240pt;}
.xb{left:305.440000pt;}
.x52{left:312.960000pt;}
.x53{left:317.600000pt;}
.x54{left:321.440000pt;}
.x36{left:336.602133pt;}
.x2b{left:340.960000pt;}
.x37{left:349.082133pt;}
.x23{left:354.182720pt;}
.x4d{left:366.400000pt;}
.x8{left:368.800000pt;}
.x2c{left:389.280000pt;}
.x39{left:393.130133pt;}
.x9{left:396.800640pt;}
.x46{left:399.364000pt;}
.x38{left:402.090133pt;}
.x3{left:404.408000pt;}
.x56{left:415.840000pt;}
.x58{left:420.480000pt;}
.x3a{left:436.066133pt;}
.x3b{left:437.826133pt;}
.x2d{left:440.640000pt;}
.x2e{left:491.680000pt;}
.x47{left:500.008000pt;}
.x3c{left:502.522133pt;}
.x20{left:506.552640pt;}
.x48{left:518.896000pt;}
.x2f{left:541.600000pt;}
.x3d{left:544.498133pt;}
.x30{left:593.440000pt;}
.x3e{left:594.954133pt;}
.x49{left:599.380000pt;}
.x4a{left:613.468000pt;}
.xf{left:626.080000pt;}
.x31{left:638.720000pt;}
.x3f{left:643.330133pt;}
.x40{left:651.810133pt;}
.x4e{left:655.680000pt;}
.x24{left:656.872640pt;}
.x50{left:661.760000pt;}
.xe{left:665.293200pt;}
}




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