
    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_882374ebd07f152274473799.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.738000;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_869cec984e3b10dadc01638b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.917000;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_d83c73d8219c62be0b5f9ba2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.733000;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_66b6b4bfbe9516066187aabd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_b2411430df31d00e918909ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739000;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_2c0401e9f3cd1f7b77386517.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_773a1750296a88b71c9f5e7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_cabd2c38900590d6c13cdd74.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_8d0ff6b0e14ec6a31cf1d63f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.656000;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_fd40fb6ff6a6e8230579409a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_3b8dd707f37e80dc6a4cbdfc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.460000;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_5c776510112488bac9649040.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_24c5f6fbe7feeed838ee9d34.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_7fd221c5ae4987c2fa518209.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.399000;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_a2cff425c04b09b244272879.woff2')format("woff");}.fff{font-family:fff;line-height:0.898000;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;}
.ff10{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff11;src:url('chunks/assets/font_aa7e6bbfe5dac582efb92dc7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.896000;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_e0e9bcf5c644e8632e7e3036.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff14;src:url('chunks/assets/font_03acaf6c970b12a733ac38fd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.431000;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_0a3701e9975294e3a8a4a639.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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_35280d92d3c20e58c079ea3e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.923000;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_b5f7da2187be4f499d3de818.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.684000;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);}
.vd{vertical-align:-53.016000px;}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:8.514000px;}
.vf{vertical-align:9.816000px;}
.va{vertical-align:16.182000px;}
.v3{vertical-align:23.754000px;}
.v2{vertical-align:27.024000px;}
.v11{vertical-align:30.162000px;}
.v8{vertical-align:31.321687px;}
.v9{vertical-align:34.500000px;}
.vb{vertical-align:43.206000px;}
.v6{vertical-align:44.280000px;}
.v4{vertical-align:53.016000px;}
.vc{vertical-align:69.198000px;}
.v5{vertical-align:92.292000px;}
.v10{vertical-align:97.920000px;}
.v7{vertical-align:137.190000px;}
.ls0{letter-spacing:0.000000px;}
.ls7a{letter-spacing:0.000230px;}
.ls80{letter-spacing:0.000262px;}
.lsf{letter-spacing:0.000750px;}
.ls4c{letter-spacing:0.001593px;}
.ls57{letter-spacing:0.001865px;}
.ls1d{letter-spacing:0.002157px;}
.ls54{letter-spacing:0.002194px;}
.ls1f{letter-spacing:0.002510px;}
.ls5f{letter-spacing:0.002706px;}
.ls72{letter-spacing:0.003073px;}
.ls6a{letter-spacing:0.003756px;}
.ls90{letter-spacing:0.003787px;}
.ls35{letter-spacing:0.004144px;}
.ls30{letter-spacing:0.004338px;}
.ls6{letter-spacing:0.004825px;}
.ls67{letter-spacing:0.005972px;}
.lsd{letter-spacing:0.009189px;}
.ls2a{letter-spacing:0.012463px;}
.ls53{letter-spacing:0.012982px;}
.ls71{letter-spacing:0.013733px;}
.ls83{letter-spacing:0.013983px;}
.ls7c{letter-spacing:0.022595px;}
.ls45{letter-spacing:0.023318px;}
.ls78{letter-spacing:0.025076px;}
.ls8{letter-spacing:0.027858px;}
.ls69{letter-spacing:0.029298px;}
.ls7f{letter-spacing:0.031962px;}
.ls5{letter-spacing:0.032604px;}
.ls17{letter-spacing:0.065455px;}
.ls7e{letter-spacing:0.261818px;}
.ls8b{letter-spacing:0.523637px;}
.ls94{letter-spacing:1.673717px;}
.ls56{letter-spacing:1.767274px;}
.ls34{letter-spacing:2.094547px;}
.ls76{letter-spacing:2.880002px;}
.ls68{letter-spacing:2.983500px;}
.ls10{letter-spacing:2.984915px;}
.ls55{letter-spacing:2.986528px;}
.ls42{letter-spacing:2.989223px;}
.ls92{letter-spacing:2.990525px;}
.lse{letter-spacing:2.990915px;}
.ls20{letter-spacing:2.992528px;}
.ls37{letter-spacing:3.010912px;}
.ls1e{letter-spacing:3.694472px;}
.ls16{letter-spacing:3.730912px;}
.ls1b{letter-spacing:3.796367px;}
.ls39{letter-spacing:4.647277px;}
.ls31{letter-spacing:4.699905px;}
.ls33{letter-spacing:4.705905px;}
.ls2e{letter-spacing:4.712731px;}
.ls62{letter-spacing:5.301823px;}
.ls65{letter-spacing:5.317591px;}
.ls60{letter-spacing:5.807786px;}
.ls93{letter-spacing:6.395989px;}
.ls3c{letter-spacing:7.027219px;}
.ls8a{letter-spacing:7.069097px;}
.ls6d{letter-spacing:7.158445px;}
.ls3e{letter-spacing:7.170457px;}
.ls4b{letter-spacing:9.066080px;}
.ls50{letter-spacing:9.090357px;}
.ls4d{letter-spacing:9.094332px;}
.ls4e{letter-spacing:9.100823px;}
.ls32{letter-spacing:10.865464px;}
.ls3f{letter-spacing:10.912869px;}
.ls3b{letter-spacing:10.930918px;}
.ls13{letter-spacing:13.892915px;}
.ls1c{letter-spacing:13.898915px;}
.ls81{letter-spacing:13.900279px;}
.lsc{letter-spacing:14.530921px;}
.ls7{letter-spacing:14.661830px;}
.ls5e{letter-spacing:15.447286px;}
.ls59{letter-spacing:15.905468px;}
.ls84{letter-spacing:15.970922px;}
.ls38{letter-spacing:16.429105px;}
.ls4a{letter-spacing:16.560014px;}
.ls6f{letter-spacing:17.533500px;}
.lsb{letter-spacing:17.534915px;}
.ls46{letter-spacing:18.130924px;}
.ls2f{letter-spacing:18.188517px;}
.lsa{letter-spacing:18.196379px;}
.ls29{letter-spacing:18.238472px;}
.ls2{letter-spacing:19.112743px;}
.ls49{letter-spacing:19.178198px;}
.ls95{letter-spacing:19.486846px;}
.ls8c{letter-spacing:19.905275px;}
.ls8d{letter-spacing:19.965050px;}
.ls5d{letter-spacing:20.356381px;}
.ls5c{letter-spacing:20.421835px;}
.ls73{letter-spacing:20.487290px;}
.ls15{letter-spacing:21.076381px;}
.ls9{letter-spacing:21.170915px;}
.ls8f{letter-spacing:21.399665px;}
.ls22{letter-spacing:21.600018px;}
.ls5a{letter-spacing:21.665473px;}
.ls1{letter-spacing:21.730927px;}
.ls63{letter-spacing:21.927291px;}
.ls3a{letter-spacing:22.058200px;}
.ls2c{letter-spacing:22.885905px;}
.ls61{letter-spacing:23.040019px;}
.ls4{letter-spacing:23.236383px;}
.ls8e{letter-spacing:23.551586px;}
.ls14{letter-spacing:24.055500px;}
.ls51{letter-spacing:24.301301px;}
.ls91{letter-spacing:24.368525px;}
.ls44{letter-spacing:24.480020px;}
.ls2d{letter-spacing:24.688528px;}
.ls47{letter-spacing:24.733905px;}
.ls26{letter-spacing:25.069112px;}
.ls64{letter-spacing:25.330930px;}
.ls6c{letter-spacing:25.352698px;}
.ls1a{letter-spacing:25.461839px;}
.ls27{letter-spacing:25.789112px;}
.ls75{letter-spacing:26.378204px;}
.ls7b{letter-spacing:26.650472px;}
.ls74{letter-spacing:26.705477px;}
.ls79{letter-spacing:27.400528px;}
.ls77{letter-spacing:27.425477px;}
.ls28{letter-spacing:28.036528px;}
.ls7d{letter-spacing:28.270528px;}
.ls24{letter-spacing:28.432528px;}
.ls41{letter-spacing:28.603660px;}
.ls25{letter-spacing:28.744472px;}
.ls23{letter-spacing:29.140472px;}
.ls3{letter-spacing:29.847298px;}
.ls48{letter-spacing:30.305480px;}
.ls5b{letter-spacing:30.610528px;}
.ls19{letter-spacing:30.829117px;}
.ls85{letter-spacing:31.221844px;}
.ls86{letter-spacing:31.287299px;}
.ls89{letter-spacing:32.727300px;}
.ls88{letter-spacing:32.792755px;}
.ls87{letter-spacing:33.190472px;}
.ls18{letter-spacing:34.411500px;}
.ls12{letter-spacing:34.494574px;}
.ls3d{letter-spacing:44.596869px;}
.ls66{letter-spacing:52.730700px;}
.ls6e{letter-spacing:52.736700px;}
.ls6b{letter-spacing:149.180712px;}
.ls70{letter-spacing:261.032945px;}
.ls58{letter-spacing:560.945922px;}
.ls11{letter-spacing:593.935040px;}
.ls21{letter-spacing:652.124180px;}
.ls52{letter-spacing:664.887827px;}
.ls36{letter-spacing:701.346039px;}
.ls4f{letter-spacing:802.604305px;}
.ls40{letter-spacing:804.306125px;}
.ls82{letter-spacing:842.662520px;}
.ls43{letter-spacing:885.077101px;}
.ls2b{letter-spacing:981.360818px;}
.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;}
}
.ws55{word-spacing:-65.454600px;}
.ws56{word-spacing:-52.677862px;}
.ws61{word-spacing:-47.323676px;}
.ws4d{word-spacing:-42.637126px;}
.wsdd{word-spacing:-38.937826px;}
.ws5a{word-spacing:-36.379667px;}
.wsb0{word-spacing:-32.714209px;}
.ws5{word-spacing:-32.544027px;}
.ws57{word-spacing:-31.771663px;}
.ws8a{word-spacing:-31.747287px;}
.ws51{word-spacing:-31.706208px;}
.wsd9{word-spacing:-30.545332px;}
.ws50{word-spacing:-27.099034px;}
.ws6a{word-spacing:-24.440748px;}
.ws9a{word-spacing:-22.215291px;}
.ws92{word-spacing:-20.840745px;}
.wsbc{word-spacing:-19.060380px;}
.ws4f{word-spacing:-18.183288px;}
.ws30{word-spacing:-18.078561px;}
.wsa9{word-spacing:-17.620378px;}
.wsb3{word-spacing:-17.293105px;}
.ws3b{word-spacing:-16.900378px;}
.ws39{word-spacing:-16.638559px;}
.wsbd{word-spacing:-16.573105px;}
.wsa5{word-spacing:-16.311286px;}
.wsaa{word-spacing:-16.245832px;}
.wsa8{word-spacing:-16.180377px;}
.ws64{word-spacing:-16.114923px;}
.wsab{word-spacing:-16.049468px;}
.ws75{word-spacing:-15.984013px;}
.ws2a{word-spacing:-15.787650px;}
.wsae{word-spacing:-15.591286px;}
.wsa6{word-spacing:-15.525831px;}
.ws9{word-spacing:-15.329467px;}
.wsf{word-spacing:-14.871285px;}
.ws3a{word-spacing:-14.805831px;}
.wsca{word-spacing:-14.740376px;}
.wsc9{word-spacing:-14.674921px;}
.ws33{word-spacing:-14.609467px;}
.ws41{word-spacing:-14.544012px;}
.wsba{word-spacing:-14.478558px;}
.wsb9{word-spacing:-14.413103px;}
.wsbe{word-spacing:-14.347648px;}
.ws59{word-spacing:-14.282194px;}
.wsa7{word-spacing:-14.151285px;}
.ws83{word-spacing:-14.111859px;}
.ws6b{word-spacing:-13.954921px;}
.wsc5{word-spacing:-13.758557px;}
.wsc4{word-spacing:-13.627648px;}
.wscf{word-spacing:-13.562193px;}
.ws31{word-spacing:-13.431284px;}
.ws7c{word-spacing:-13.383757px;}
.wsd{word-spacing:-13.365829px;}
.ws10{word-spacing:-13.234920px;}
.ws21{word-spacing:-13.169466px;}
.ws78{word-spacing:-13.104011px;}
.ws9e{word-spacing:-13.038556px;}
.ws3f{word-spacing:-12.973102px;}
.ws22{word-spacing:-12.907647px;}
.wsbb{word-spacing:-12.842193px;}
.ws1f{word-spacing:-12.776738px;}
.ws17{word-spacing:-12.514920px;}
.ws4c{word-spacing:-12.465034px;}
.ws18{word-spacing:-12.449465px;}
.ws1c{word-spacing:-12.253101px;}
.ws1d{word-spacing:-12.187647px;}
.wsc1{word-spacing:-12.122192px;}
.ws9d{word-spacing:-12.056737px;}
.ws82{word-spacing:-11.889367px;}
.ws13{word-spacing:-11.860374px;}
.ws65{word-spacing:-11.794919px;}
.ws5e{word-spacing:-11.598555px;}
.ws2b{word-spacing:-11.533101px;}
.ws71{word-spacing:-11.467646px;}
.ws9c{word-spacing:-11.336737px;}
.ws9b{word-spacing:-11.271282px;}
.ws6f{word-spacing:-11.205828px;}
.ws74{word-spacing:-11.074918px;}
.ws72{word-spacing:-11.009464px;}
.ws69{word-spacing:-10.944009px;}
.ws3{word-spacing:-10.878555px;}
.wse{word-spacing:-10.813100px;}
.ws49{word-spacing:-10.747645px;}
.ws25{word-spacing:-10.616736px;}
.ws68{word-spacing:-10.485827px;}
.wsdf{word-spacing:-10.454752px;}
.ws67{word-spacing:-10.420372px;}
.ws28{word-spacing:-10.289463px;}
.ws81{word-spacing:-10.275426px;}
.ws46{word-spacing:-10.224009px;}
.ws90{word-spacing:-10.158554px;}
.ws7b{word-spacing:-10.096099px;}
.ws42{word-spacing:-10.027645px;}
.ws7e{word-spacing:-9.976548px;}
.ws29{word-spacing:-9.962190px;}
.wsd6{word-spacing:-9.916772px;}
.ws37{word-spacing:-9.896736px;}
.ws70{word-spacing:-9.831281px;}
.ws12{word-spacing:-9.700372px;}
.wsac{word-spacing:-9.634917px;}
.wse0{word-spacing:-9.623872px;}
.ws99{word-spacing:-9.569463px;}
.ws98{word-spacing:-9.504008px;}
.wsa{word-spacing:-9.438553px;}
.wsdb{word-spacing:-9.265218px;}
.ws40{word-spacing:-9.242190px;}
.wsd4{word-spacing:-9.205442px;}
.wsd2{word-spacing:-9.145667px;}
.wsad{word-spacing:-9.111280px;}
.wsc6{word-spacing:-8.980371px;}
.ws88{word-spacing:-8.919034px;}
.wsb7{word-spacing:-8.914917px;}
.ws77{word-spacing:-8.849462px;}
.wsce{word-spacing:-8.718553px;}
.ws4a{word-spacing:-8.697034px;}
.ws6d{word-spacing:-8.653098px;}
.ws8{word-spacing:-8.587644px;}
.wsb8{word-spacing:-8.456734px;}
.wsc3{word-spacing:-8.391280px;}
.ws1a{word-spacing:-8.325825px;}
.ws5c{word-spacing:-8.194916px;}
.wsb6{word-spacing:-8.188370px;}
.wsa0{word-spacing:-8.129461px;}
.ws6e{word-spacing:-8.064007px;}
.ws7{word-spacing:-7.933098px;}
.wscb{word-spacing:-7.867643px;}
.ws32{word-spacing:-7.802188px;}
.ws26{word-spacing:-7.671279px;}
.wsd1{word-spacing:-7.605825px;}
.ws6c{word-spacing:-7.474915px;}
.wsb5{word-spacing:-7.468370px;}
.ws3c{word-spacing:-7.409461px;}
.wsc8{word-spacing:-7.344006px;}
.wsa1{word-spacing:-7.278552px;}
.ws53{word-spacing:-7.252370px;}
.ws2e{word-spacing:-7.147642px;}
.ws5d{word-spacing:-7.082188px;}
.ws7d{word-spacing:-6.987768px;}
.ws1b{word-spacing:-6.820369px;}
.ws43{word-spacing:-6.754915px;}
.ws35{word-spacing:-6.558551px;}
.wsa2{word-spacing:-6.493096px;}
.ws47{word-spacing:-6.427642px;}
.wsbf{word-spacing:-6.362187px;}
.ws2f{word-spacing:-6.231278px;}
.ws9f{word-spacing:-6.165823px;}
.wsde{word-spacing:-6.156887px;}
.wsb{word-spacing:-6.100369px;}
.ws27{word-spacing:-5.904005px;}
.ws38{word-spacing:-5.773096px;}
.wsd7{word-spacing:-5.738458px;}
.ws11{word-spacing:-5.707641px;}
.ws91{word-spacing:-5.647613px;}
.ws1e{word-spacing:-5.576732px;}
.ws58{word-spacing:-5.511277px;}
.wsa4{word-spacing:-5.445823px;}
.ws2d{word-spacing:-5.380368px;}
.wsdc{word-spacing:-5.320028px;}
.ws4e{word-spacing:-5.265034px;}
.ws20{word-spacing:-5.184004px;}
.ws97{word-spacing:-4.922186px;}
.wsb1{word-spacing:-4.856731px;}
.wsd0{word-spacing:-4.660368px;}
.ws76{word-spacing:-4.594913px;}
.ws62{word-spacing:-4.529458px;}
.wsda{word-spacing:-4.483170px;}
.wsc0{word-spacing:-4.398549px;}
.ws86{word-spacing:-4.333095px;}
.ws84{word-spacing:-4.267640px;}
.ws5b{word-spacing:-4.202185px;}
.ws3d{word-spacing:-4.071276px;}
.ws3e{word-spacing:-4.005822px;}
.wsc{word-spacing:-3.874912px;}
.ws48{word-spacing:-3.809458px;}
.wsa3{word-spacing:-3.744003px;}
.ws52{word-spacing:-3.652367px;}
.ws4{word-spacing:-3.613094px;}
.ws60{word-spacing:-3.416730px;}
.ws2c{word-spacing:-3.220366px;}
.ws5f{word-spacing:-3.148366px;}
.wsc2{word-spacing:-3.024003px;}
.wsb4{word-spacing:-2.762184px;}
.ws36{word-spacing:-2.696730px;}
.ws73{word-spacing:-2.238547px;}
.wsb2{word-spacing:-2.173093px;}
.ws95{word-spacing:-2.107638px;}
.ws44{word-spacing:-2.042184px;}
.wscd{word-spacing:-1.976729px;}
.ws87{word-spacing:-1.845820px;}
.wsc7{word-spacing:-1.649456px;}
.ws54{word-spacing:-1.125819px;}
.wscc{word-spacing:-0.994910px;}
.ws45{word-spacing:-0.733092px;}
.ws15{word-spacing:-0.071731px;}
.ws63{word-spacing:-0.065455px;}
.wsd8{word-spacing:-0.059776px;}
.ws66{word-spacing:-0.052364px;}
.ws14{word-spacing:0.000000px;}
.ws89{word-spacing:0.013091px;}
.ws23{word-spacing:0.314182px;}
.ws24{word-spacing:0.379637px;}
.ws8e{word-spacing:1.202966px;}
.ws4b{word-spacing:2.434911px;}
.ws8b{word-spacing:5.618966px;}
.ws93{word-spacing:7.204046px;}
.ws8d{word-spacing:10.564743px;}
.ws94{word-spacing:10.840046px;}
.wsaf{word-spacing:11.235282px;}
.ws85{word-spacing:16.023286px;}
.ws8c{word-spacing:18.842966px;}
.wse1{word-spacing:19.367294px;}
.ws8f{word-spacing:19.370966px;}
.wsd3{word-spacing:19.845499px;}
.wsd5{word-spacing:19.905275px;}
.ws0{word-spacing:22.475626px;}
.ws80{word-spacing:22.535401px;}
.ws7a{word-spacing:22.714728px;}
.ws16{word-spacing:22.830564px;}
.ws7f{word-spacing:23.790510px;}
.ws34{word-spacing:26.827469px;}
.ws2{word-spacing:32.881490px;}
.ws1{word-spacing:58.299259px;}
.ws6{word-spacing:62.306503px;}
.ws19{word-spacing:80.625869px;}
.ws96{word-spacing:98.417537px;}
.ws79{word-spacing:148.950731px;}
._31{margin-left:-34.952756px;}
._43{margin-left:-32.803247px;}
._34{margin-left:-18.196379px;}
._45{margin-left:-14.276408px;}
._12{margin-left:-6.283642px;}
._0{margin-left:-5.200477px;}
._3{margin-left:-4.173860px;}
._e{margin-left:-3.046802px;}
._1{margin-left:-1.733492px;}
._4{width:1.898183px;}
._23{width:3.046802px;}
._2{width:4.907846px;}
._41{width:5.925487px;}
._40{width:7.652564px;}
._32{width:10.929771px;}
._26{width:15.772450px;}
._2a{width:17.440487px;}
._8{width:19.045180px;}
._2f{width:20.717435px;}
._49{width:22.361042px;}
._2d{width:23.726238px;}
._42{width:24.943674px;}
._17{width:26.247295px;}
._5{width:27.294568px;}
._9{width:28.438969px;}
._2b{width:29.847298px;}
._b{width:31.090935px;}
._38{width:32.108645px;}
._f{width:33.250937px;}
._7{width:34.508904px;}
._28{width:36.229644px;}
._46{width:37.359343px;}
._39{width:38.645669px;}
._36{width:39.828070px;}
._2e{width:41.004143px;}
._47{width:42.152762px;}
._6{width:43.674657px;}
._a{width:44.768837px;}
._3b{width:47.289894px;}
._2c{width:49.287314px;}
._35{width:50.300806px;}
._25{width:52.052846px;}
._29{width:53.115353px;}
._3a{width:55.095430px;}
._48{width:56.421865px;}
._33{width:58.445110px;}
._d{width:60.218232px;}
._24{width:63.195362px;}
._44{width:64.998527px;}
._14{width:66.501874px;}
._30{width:74.814608px;}
._27{width:80.697600px;}
._37{width:141.026118px;}
._3e{width:415.730416px;}
._3f{width:455.083836px;}
._3d{width:471.635333px;}
._3c{width:477.193342px;}
._18{width:822.306140px;}
._13{width:944.509878px;}
._11{width:1030.255404px;}
._1c{width:1041.988216px;}
._1d{width:1050.248621px;}
._10{width:1081.425667px;}
._20{width:1233.855101px;}
._1a{width:1316.095642px;}
._1f{width:1375.526310px;}
._16{width:1430.772101px;}
._21{width:1434.600141px;}
._1b{width:1469.487443px;}
._19{width:1554.382059px;}
._1e{width:1570.371529px;}
._15{width:1584.425720px;}
._c{width:2083.320682px;}
._22{width:2137.419963px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:27.945000px;}
.fs7{font-size:31.050000px;}
.fs8{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.yb1{bottom:-1.038331px;}
.y0{bottom:0.000000px;}
.ya9{bottom:8.599395px;}
.yb0{bottom:9.574462px;}
.y17f{bottom:18.978000px;}
.y3c{bottom:18.979500px;}
.y3b{bottom:101.170500px;}
.y10b{bottom:101.214000px;}
.y155{bottom:119.103000px;}
.y3a{bottom:121.494000px;}
.y10a{bottom:121.537500px;}
.yc5{bottom:132.724500px;}
.yc4{bottom:135.178500px;}
.y154{bottom:137.035500px;}
.ye6{bottom:141.817500px;}
.y39{bottom:141.819000px;}
.y109{bottom:141.861000px;}
.y17e{bottom:145.219500px;}
.yc3{bottom:158.905500px;}
.y7f{bottom:161.787000px;}
.y38{bottom:162.142500px;}
.y108{bottom:162.184500px;}
.y153{bottom:162.919500px;}
.y17d{bottom:163.152000px;}
.yaf{bottom:168.564240px;}
.ya8{bottom:178.026088px;}
.yc2{bottom:179.229000px;}
.y152{bottom:180.852000px;}
.ya6{bottom:182.466000px;}
.y107{bottom:182.508000px;}
.y37{bottom:182.583000px;}
.y12d{bottom:182.632500px;}
.y5e{bottom:185.002500px;}
.y17c{bottom:189.268500px;}
.yc1{bottom:197.424000px;}
.yc0{bottom:199.552500px;}
.y7e{bottom:202.080000px;}
.ya5{bottom:202.789500px;}
.y106{bottom:202.833000px;}
.y36{bottom:202.906500px;}
.y12c{bottom:202.956000px;}
.y5d{bottom:205.326000px;}
.y151{bottom:206.736000px;}
.y17b{bottom:215.385000px;}
.y7d{bottom:222.403500px;}
.ya4{bottom:223.113000px;}
.y105{bottom:223.156500px;}
.y35{bottom:223.230000px;}
.y12b{bottom:223.279500px;}
.y150{bottom:224.668500px;}
.y5c{bottom:225.649500px;}
.y17a{bottom:233.317500px;}
.ybf{bottom:240.805500px;}
.y14f{bottom:242.601000px;}
.ya3{bottom:243.436500px;}
.y104{bottom:243.480000px;}
.y34{bottom:243.553500px;}
.y12a{bottom:243.603000px;}
.ybe{bottom:244.851000px;}
.y5b{bottom:245.973000px;}
.ybd{bottom:248.986500px;}
.ye5{bottom:257.428500px;}
.y179{bottom:259.434000px;}
.ya2{bottom:263.761500px;}
.y103{bottom:263.803500px;}
.y33{bottom:263.878500px;}
.y129{bottom:263.928000px;}
.y7c{bottom:267.247500px;}
.y14e{bottom:268.485000px;}
.y17{bottom:277.516500px;}
.ye4{bottom:277.752000px;}
.ya1{bottom:284.085000px;}
.y102{bottom:284.127000px;}
.y32{bottom:284.202000px;}
.ybc{bottom:285.016500px;}
.y178{bottom:285.550500px;}
.y14d{bottom:286.417500px;}
.y7b{bottom:287.571000px;}
.y5a{bottom:289.816500px;}
.y16{bottom:297.840000px;}
.ye3{bottom:298.075500px;}
.y128{bottom:300.931500px;}
.y177{bottom:303.483000px;}
.ya0{bottom:304.408500px;}
.y101{bottom:304.452000px;}
.y31{bottom:304.642500px;}
.ybb{bottom:306.474000px;}
.y7a{bottom:307.894500px;}
.y14c{bottom:312.300000px;}
.y15{bottom:318.163500px;}
.ye2{bottom:318.399000px;}
.y9f{bottom:324.732000px;}
.y100{bottom:324.775500px;}
.y30{bottom:324.966000px;}
.yba{bottom:326.797500px;}
.y79{bottom:328.219500px;}
.y176{bottom:329.599500px;}
.y14b{bottom:330.232500px;}
.y14{bottom:338.488500px;}
.ye1{bottom:338.722500px;}
.y9e{bottom:345.055500px;}
.yff{bottom:345.099000px;}
.y2f{bottom:345.289500px;}
.yb9{bottom:347.122500px;}
.y175{bottom:347.532000px;}
.y127{bottom:347.691000px;}
.y59{bottom:353.469000px;}
.y14a{bottom:356.116500px;}
.y78{bottom:357.508500px;}
.y19e{bottom:358.206000px;}
.y13{bottom:358.812000px;}
.ye0{bottom:359.338500px;}
.yb8{bottom:365.316000px;}
.y9d{bottom:365.380500px;}
.y2e{bottom:365.613000px;}
.yb7{bottom:367.446000px;}
.y126{bottom:368.014500px;}
.yfe{bottom:373.558500px;}
.y174{bottom:373.648500px;}
.y58{bottom:373.792500px;}
.y149{bottom:374.049000px;}
.y19d{bottom:376.138500px;}
.y77{bottom:377.833500px;}
.y12{bottom:379.135500px;}
.ydf{bottom:379.662000px;}
.y9c{bottom:385.704000px;}
.y2d{bottom:385.938000px;}
.y125{bottom:388.338000px;}
.y173{bottom:391.581000px;}
.y57{bottom:394.117500px;}
.y76{bottom:398.157000px;}
.y11{bottom:399.459000px;}
.y148{bottom:399.933000px;}
.yde{bottom:399.985500px;}
.yb6{bottom:400.903500px;}
.y19c{bottom:401.544000px;}
.y9b{bottom:406.027500px;}
.y2c{bottom:406.261500px;}
.y124{bottom:408.661500px;}
.y56{bottom:414.441000px;}
.yfd{bottom:417.040500px;}
.y172{bottom:417.697500px;}
.y147{bottom:417.865500px;}
.y75{bottom:418.480500px;}
.y19b{bottom:419.476500px;}
.y10{bottom:419.782500px;}
.ydd{bottom:420.309000px;}
.y9a{bottom:426.351000px;}
.y2b{bottom:426.585000px;}
.y171{bottom:435.630000px;}
.y55{bottom:437.301000px;}
.yfc{bottom:437.365500px;}
.yf{bottom:440.107500px;}
.ydc{bottom:440.634000px;}
.yb5{bottom:440.701500px;}
.y146{bottom:443.748000px;}
.y19a{bottom:444.882000px;}
.y123{bottom:445.666500px;}
.y99{bottom:446.674500px;}
.y74{bottom:447.771000px;}
.y54{bottom:457.624500px;}
.yfb{bottom:457.689000px;}
.ye{bottom:460.431000px;}
.ydb{bottom:461.248500px;}
.y145{bottom:461.682000px;}
.y170{bottom:461.746500px;}
.y199{bottom:462.814500px;}
.y2a{bottom:463.446000px;}
.y98{bottom:466.999500px;}
.y73{bottom:468.094500px;}
.y53{bottom:477.948000px;}
.y16f{bottom:479.680500px;}
.yd{bottom:480.754500px;}
.yda{bottom:481.572000px;}
.y97{bottom:487.323000px;}
.y144{bottom:487.564500px;}
.y198{bottom:488.218500px;}
.y72{bottom:488.418000px;}
.yfa{bottom:489.229500px;}
.yb4{bottom:492.201000px;}
.y122{bottom:492.424500px;}
.y52{bottom:498.271500px;}
.yc{bottom:501.078000px;}
.yd9{bottom:501.895500px;}
.y143{bottom:505.497000px;}
.y16e{bottom:505.795500px;}
.y197{bottom:506.151000px;}
.y96{bottom:507.646500px;}
.yf9{bottom:509.553000px;}
.yb3{bottom:510.133500px;}
.y29{bottom:511.105500px;}
.y121{bottom:512.749500px;}
.y51{bottom:518.596500px;}
.y71{bottom:520.761000px;}
.yb{bottom:521.401500px;}
.yd8{bottom:522.220500px;}
.y16d{bottom:523.729500px;}
.y95{bottom:527.970000px;}
.yb2{bottom:528.067500px;}
.yf8{bottom:529.876500px;}
.y142{bottom:531.381000px;}
.y196{bottom:531.556500px;}
.y120{bottom:533.073000px;}
.y50{bottom:541.456500px;}
.ya{bottom:541.725000px;}
.yd7{bottom:542.544000px;}
.y28{bottom:547.933500px;}
.y94{bottom:548.293500px;}
.y141{bottom:549.313500px;}
.y195{bottom:549.489000px;}
.y16c{bottom:549.844500px;}
.yf7{bottom:550.201500px;}
.y11f{bottom:553.396500px;}
.yae{bottom:560.943000px;}
.y4f{bottom:561.780000px;}
.y9{bottom:562.050000px;}
.y70{bottom:562.231500px;}
.y140{bottom:567.246000px;}
.y194{bottom:567.421500px;}
.y16b{bottom:567.778500px;}
.y93{bottom:568.618500px;}
.yd6{bottom:572.023500px;}
.y11e{bottom:573.720000px;}
.y4e{bottom:582.103500px;}
.y8{bottom:582.373500px;}
.y27{bottom:584.763000px;}
.y92{bottom:588.942000px;}
.yf6{bottom:589.213500px;}
.y193{bottom:592.827000px;}
.y13f{bottom:593.130000px;}
.y16a{bottom:593.895000px;}
.y11d{bottom:594.043500px;}
.y4d{bottom:602.427000px;}
.y6f{bottom:602.524500px;}
.y91{bottom:609.265500px;}
.yd5{bottom:610.212000px;}
.y192{bottom:610.759500px;}
.y13e{bottom:611.062500px;}
.y169{bottom:611.827500px;}
.y11c{bottom:614.533500px;}
.y7{bottom:620.580000px;}
.y26{bottom:621.591000px;}
.y4c{bottom:622.752000px;}
.y6e{bottom:624.024000px;}
.yf5{bottom:628.227000px;}
.y13d{bottom:628.995000px;}
.y90{bottom:629.589000px;}
.y168{bottom:629.760000px;}
.yd4{bottom:630.535500px;}
.y11b{bottom:634.858500px;}
.y191{bottom:636.163500px;}
.y25{bottom:642.055500px;}
.y6d{bottom:644.349000px;}
.yf4{bottom:648.550500px;}
.y8f{bottom:649.912500px;}
.yd3{bottom:650.859000px;}
.y6{bottom:652.909500px;}
.y13c{bottom:654.879000px;}
.y11a{bottom:655.182000px;}
.y167{bottom:655.876500px;}
.y190{bottom:661.569000px;}
.y6c{bottom:664.672500px;}
.y4b{bottom:666.594000px;}
.yf3{bottom:668.874000px;}
.yd2{bottom:671.182500px;}
.y13b{bottom:672.811500px;}
.y166{bottom:673.809000px;}
.y119{bottom:675.505500px;}
.y8e{bottom:677.275500px;}
.y24{bottom:678.883500px;}
.y18f{bottom:679.501500px;}
.y6b{bottom:684.996000px;}
.y5{bottom:687.579000px;}
.y13a{bottom:698.694000px;}
.y23{bottom:699.346500px;}
.yf2{bottom:699.462000px;}
.y165{bottom:699.925500px;}
.yd1{bottom:700.662000px;}
.y18e{bottom:704.907000px;}
.y8d{bottom:711.442500px;}
.y118{bottom:712.509000px;}
.y139{bottom:716.628000px;}
.y164{bottom:717.858000px;}
.y22{bottom:719.811000px;}
.y18d{bottom:722.839500px;}
.y6a{bottom:725.289000px;}
.y4a{bottom:730.246500px;}
.y8c{bottom:731.766000px;}
.yf1{bottom:738.150000px;}
.yd0{bottom:738.850500px;}
.y21{bottom:740.275500px;}
.y138{bottom:742.510500px;}
.y163{bottom:743.974500px;}
.y18c{bottom:748.243500px;}
.y49{bottom:750.570000px;}
.ycf{bottom:759.175500px;}
.y117{bottom:759.268500px;}
.y137{bottom:760.443000px;}
.y20{bottom:760.740000px;}
.y162{bottom:761.907000px;}
.y8b{bottom:762.528000px;}
.y69{bottom:765.582000px;}
.y18b{bottom:766.176000px;}
.y48{bottom:770.895000px;}
.y116{bottom:779.592000px;}
.y161{bottom:779.839500px;}
.yad{bottom:783.871500px;}
.y68{bottom:785.905500px;}
.yf0{bottom:789.072000px;}
.yce{bottom:790.254000px;}
.y47{bottom:791.218500px;}
.y18a{bottom:791.581500px;}
.y8a{bottom:793.290000px;}
.y4{bottom:794.874000px;}
.y136{bottom:795.625500px;}
.y1f{bottom:797.568000px;}
.y115{bottom:799.917000px;}
.ycd{bottom:801.478500px;}
.yac{bottom:801.804000px;}
.y160{bottom:805.956000px;}
.y67{bottom:806.229000px;}
.yef{bottom:809.395500px;}
.y189{bottom:809.514000px;}
.y46{bottom:811.542000px;}
.y89{bottom:813.613500px;}
.y1e{bottom:818.031000px;}
.yab{bottom:819.736500px;}
.y114{bottom:820.240500px;}
.y15f{bottom:823.888500px;}
.y66{bottom:827.730000px;}
.yee{bottom:830.470500px;}
.y45{bottom:831.865500px;}
.y88{bottom:833.938500px;}
.y188{bottom:834.919500px;}
.yaa{bottom:837.670500px;}
.y1d{bottom:838.495500px;}
.y3{bottom:839.706000px;}
.y113{bottom:840.564000px;}
.y15e{bottom:841.821000px;}
.y135{bottom:845.161500px;}
.ycc{bottom:846.628500px;}
.y65{bottom:848.053500px;}
.yed{bottom:850.794000px;}
.y44{bottom:852.189000px;}
.y187{bottom:852.852000px;}
.y87{bottom:857.830500px;}
.y1c{bottom:858.960000px;}
.y112{bottom:861.054000px;}
.y134{bottom:865.485000px;}
.ycb{bottom:866.952000px;}
.y15d{bottom:867.937500px;}
.y64{bottom:868.377000px;}
.y86{bottom:869.055000px;}
.ya7{bottom:870.546000px;}
.yec{bottom:871.117500px;}
.y186{bottom:878.256000px;}
.y111{bottom:881.377500px;}
.y2{bottom:884.538000px;}
.y133{bottom:885.810000px;}
.y15c{bottom:885.871500px;}
.yca{bottom:887.275500px;}
.yeb{bottom:891.441000px;}
.y85{bottom:894.277500px;}
.y1b{bottom:895.788000px;}
.y185{bottom:896.188500px;}
.y43{bottom:899.331000px;}
.y63{bottom:899.994000px;}
.y110{bottom:901.701000px;}
.yc9{bottom:907.891500px;}
.yea{bottom:911.764500px;}
.y15b{bottom:911.986500px;}
.y184{bottom:914.122500px;}
.y84{bottom:914.601000px;}
.y42{bottom:919.656000px;}
.y132{bottom:921.636000px;}
.y10f{bottom:922.026000px;}
.yc8{bottom:928.215000px;}
.y15a{bottom:929.920500px;}
.ye9{bottom:932.089500px;}
.y1a{bottom:932.616000px;}
.y83{bottom:934.924500px;}
.y183{bottom:939.526500px;}
.y41{bottom:939.979500px;}
.y131{bottom:941.959500px;}
.y10e{bottom:942.349500px;}
.y62{bottom:943.243500px;}
.yc7{bottom:948.538500px;}
.y82{bottom:955.248000px;}
.y159{bottom:956.037000px;}
.y182{bottom:957.459000px;}
.y40{bottom:960.303000px;}
.y130{bottom:962.283000px;}
.ye8{bottom:962.676000px;}
.y10d{bottom:962.839500px;}
.y61{bottom:963.567000px;}
.y19{bottom:969.444000px;}
.y3f{bottom:980.626500px;}
.y158{bottom:982.152000px;}
.y12f{bottom:982.606500px;}
.y181{bottom:982.864500px;}
.y10c{bottom:983.163000px;}
.y60{bottom:983.890500px;}
.y81{bottom:986.010000px;}
.yc6{bottom:986.175000px;}
.y157{bottom:1000.086000px;}
.y180{bottom:1000.797000px;}
.y3e{bottom:1000.950000px;}
.y12e{bottom:1002.931500px;}
.ye7{bottom:1003.486500px;}
.y5f{bottom:1004.214000px;}
.y18{bottom:1006.273500px;}
.y80{bottom:1016.772000px;}
.y3d{bottom:1023.810000px;}
.y156{bottom:1026.201000px;}
.y1{bottom:1044.135000px;}
.h13{height:21.088885px;}
.hf{height:25.960905px;}
.h10{height:28.845450px;}
.h1{height:42.859105px;}
.h11{height:44.891476px;}
.h7{height:45.883675px;}
.h14{height:49.090950px;}
.h4{height:49.156405px;}
.h6{height:50.283571px;}
.h5{height:52.363776px;}
.h1d{height:52.398579px;}
.ha{height:55.640184px;}
.he{height:57.282592px;}
.h18{height:57.670405px;}
.h19{height:58.972405px;}
.h9{height:59.619450px;}
.h3{height:61.631275px;}
.h8{height:62.889450px;}
.h17{height:65.638950px;}
.h12{height:70.365450px;}
.h16{height:71.816184px;}
.h15{height:79.071450px;}
.h1a{height:93.370950px;}
.hb{height:94.910184px;}
.h1c{height:100.538184px;}
.h2{height:106.782827px;}
.h1b{height:138.268950px;}
.hc{height:139.808184px;}
.hd{height:190.026000px;}
.h0{height:1188.000000px;}
.w1{width:558.900000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:58.159052px;}
.xf{left:60.776736px;}
.x1{left:127.426500px;}
.x25{left:129.502500px;}
.x23{left:136.972500px;}
.x2{left:139.332000px;}
.x8{left:143.866500px;}
.x22{left:150.442500px;}
.x4{left:151.833000px;}
.x24{left:160.924500px;}
.x3{left:164.010000px;}
.xe{left:176.740500px;}
.x15{left:213.080625px;}
.x14{left:214.928706px;}
.x1e{left:226.143000px;}
.x11{left:248.260518px;}
.x1d{left:301.111500px;}
.x6{left:309.354000px;}
.x7{left:323.913000px;}
.x1b{left:327.100500px;}
.xa{left:336.216000px;}
.xb{left:361.956000px;}
.x17{left:365.242500px;}
.x21{left:371.542500px;}
.x1c{left:373.321500px;}
.xd{left:382.159500px;}
.x9{left:406.206000px;}
.x13{left:416.548145px;}
.x10{left:422.457082px;}
.x26{left:434.499000px;}
.x5{left:438.565500px;}
.x18{left:462.387000px;}
.x1f{left:476.529000px;}
.xc{left:502.773000px;}
.x19{left:511.906500px;}
.x20{left:534.700500px;}
.x1a{left:595.317000px;}
.x16{left:758.062500px;}
@media print{
.vd{vertical-align:-47.125333pt;}
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:7.568000pt;}
.vf{vertical-align:8.725333pt;}
.va{vertical-align:14.384000pt;}
.v3{vertical-align:21.114667pt;}
.v2{vertical-align:24.021333pt;}
.v11{vertical-align:26.810667pt;}
.v8{vertical-align:27.841500pt;}
.v9{vertical-align:30.666667pt;}
.vb{vertical-align:38.405333pt;}
.v6{vertical-align:39.360000pt;}
.v4{vertical-align:47.125333pt;}
.vc{vertical-align:61.509333pt;}
.v5{vertical-align:82.037333pt;}
.v10{vertical-align:87.040000pt;}
.v7{vertical-align:121.946667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7a{letter-spacing:0.000205pt;}
.ls80{letter-spacing:0.000233pt;}
.lsf{letter-spacing:0.000667pt;}
.ls4c{letter-spacing:0.001416pt;}
.ls57{letter-spacing:0.001657pt;}
.ls1d{letter-spacing:0.001917pt;}
.ls54{letter-spacing:0.001950pt;}
.ls1f{letter-spacing:0.002231pt;}
.ls5f{letter-spacing:0.002405pt;}
.ls72{letter-spacing:0.002732pt;}
.ls6a{letter-spacing:0.003339pt;}
.ls90{letter-spacing:0.003366pt;}
.ls35{letter-spacing:0.003684pt;}
.ls30{letter-spacing:0.003856pt;}
.ls6{letter-spacing:0.004289pt;}
.ls67{letter-spacing:0.005308pt;}
.lsd{letter-spacing:0.008168pt;}
.ls2a{letter-spacing:0.011078pt;}
.ls53{letter-spacing:0.011539pt;}
.ls71{letter-spacing:0.012207pt;}
.ls83{letter-spacing:0.012430pt;}
.ls7c{letter-spacing:0.020084pt;}
.ls45{letter-spacing:0.020727pt;}
.ls78{letter-spacing:0.022290pt;}
.ls8{letter-spacing:0.024763pt;}
.ls69{letter-spacing:0.026042pt;}
.ls7f{letter-spacing:0.028410pt;}
.ls5{letter-spacing:0.028981pt;}
.ls17{letter-spacing:0.058182pt;}
.ls7e{letter-spacing:0.232727pt;}
.ls8b{letter-spacing:0.465455pt;}
.ls94{letter-spacing:1.487748pt;}
.ls56{letter-spacing:1.570910pt;}
.ls34{letter-spacing:1.861820pt;}
.ls76{letter-spacing:2.560002pt;}
.ls68{letter-spacing:2.652000pt;}
.ls10{letter-spacing:2.653258pt;}
.ls55{letter-spacing:2.654692pt;}
.ls42{letter-spacing:2.657087pt;}
.ls92{letter-spacing:2.658245pt;}
.lse{letter-spacing:2.658591pt;}
.ls20{letter-spacing:2.660025pt;}
.ls37{letter-spacing:2.676366pt;}
.ls1e{letter-spacing:3.283975pt;}
.ls16{letter-spacing:3.316366pt;}
.ls1b{letter-spacing:3.374548pt;}
.ls39{letter-spacing:4.130913pt;}
.ls31{letter-spacing:4.177693pt;}
.ls33{letter-spacing:4.183026pt;}
.ls2e{letter-spacing:4.189094pt;}
.ls62{letter-spacing:4.712731pt;}
.ls65{letter-spacing:4.726748pt;}
.ls60{letter-spacing:5.162476pt;}
.ls93{letter-spacing:5.685324pt;}
.ls3c{letter-spacing:6.246417pt;}
.ls8a{letter-spacing:6.283642pt;}
.ls6d{letter-spacing:6.363063pt;}
.ls3e{letter-spacing:6.373740pt;}
.ls4b{letter-spacing:8.058737pt;}
.ls50{letter-spacing:8.080317pt;}
.ls4d{letter-spacing:8.083850pt;}
.ls4e{letter-spacing:8.089620pt;}
.ls32{letter-spacing:9.658190pt;}
.ls3f{letter-spacing:9.700328pt;}
.ls3b{letter-spacing:9.716372pt;}
.ls13{letter-spacing:12.349258pt;}
.ls1c{letter-spacing:12.354591pt;}
.ls81{letter-spacing:12.355803pt;}
.lsc{letter-spacing:12.916374pt;}
.ls7{letter-spacing:13.032738pt;}
.ls5e{letter-spacing:13.730921pt;}
.ls59{letter-spacing:14.138194pt;}
.ls84{letter-spacing:14.196375pt;}
.ls38{letter-spacing:14.603649pt;}
.ls4a{letter-spacing:14.720012pt;}
.ls6f{letter-spacing:15.585333pt;}
.lsb{letter-spacing:15.586591pt;}
.ls46{letter-spacing:16.116377pt;}
.ls2f{letter-spacing:16.167571pt;}
.lsa{letter-spacing:16.174559pt;}
.ls29{letter-spacing:16.211975pt;}
.ls2{letter-spacing:16.989105pt;}
.ls49{letter-spacing:17.047287pt;}
.ls95{letter-spacing:17.321641pt;}
.ls8c{letter-spacing:17.693578pt;}
.ls8d{letter-spacing:17.746711pt;}
.ls5d{letter-spacing:18.094561pt;}
.ls5c{letter-spacing:18.152742pt;}
.ls73{letter-spacing:18.210924pt;}
.ls15{letter-spacing:18.734561pt;}
.ls9{letter-spacing:18.818591pt;}
.ls8f{letter-spacing:19.021924pt;}
.ls22{letter-spacing:19.200016pt;}
.ls5a{letter-spacing:19.258198pt;}
.ls1{letter-spacing:19.316380pt;}
.ls63{letter-spacing:19.490925pt;}
.ls3a{letter-spacing:19.607289pt;}
.ls2c{letter-spacing:20.343026pt;}
.ls61{letter-spacing:20.480017pt;}
.ls4{letter-spacing:20.654563pt;}
.ls8e{letter-spacing:20.934743pt;}
.ls14{letter-spacing:21.382667pt;}
.ls51{letter-spacing:21.601156pt;}
.ls91{letter-spacing:21.660911pt;}
.ls44{letter-spacing:21.760018pt;}
.ls2d{letter-spacing:21.945358pt;}
.ls47{letter-spacing:21.985693pt;}
.ls26{letter-spacing:22.283655pt;}
.ls64{letter-spacing:22.516382pt;}
.ls6c{letter-spacing:22.535732pt;}
.ls1a{letter-spacing:22.632746pt;}
.ls27{letter-spacing:22.923655pt;}
.ls75{letter-spacing:23.447292pt;}
.ls7b{letter-spacing:23.689308pt;}
.ls74{letter-spacing:23.738202pt;}
.ls79{letter-spacing:24.356025pt;}
.ls77{letter-spacing:24.378202pt;}
.ls28{letter-spacing:24.921358pt;}
.ls7d{letter-spacing:25.129358pt;}
.ls24{letter-spacing:25.273358pt;}
.ls41{letter-spacing:25.425476pt;}
.ls25{letter-spacing:25.550641pt;}
.ls23{letter-spacing:25.902641pt;}
.ls3{letter-spacing:26.530931pt;}
.ls48{letter-spacing:26.938204pt;}
.ls5b{letter-spacing:27.209358pt;}
.ls19{letter-spacing:27.403659pt;}
.ls85{letter-spacing:27.752750pt;}
.ls86{letter-spacing:27.810932pt;}
.ls89{letter-spacing:29.090933pt;}
.ls88{letter-spacing:29.149115pt;}
.ls87{letter-spacing:29.502641pt;}
.ls18{letter-spacing:30.588000pt;}
.ls12{letter-spacing:30.661844pt;}
.ls3d{letter-spacing:39.641661pt;}
.ls66{letter-spacing:46.871733pt;}
.ls6e{letter-spacing:46.877067pt;}
.ls6b{letter-spacing:132.605077pt;}
.ls70{letter-spacing:232.029284pt;}
.ls58{letter-spacing:498.618597pt;}
.ls11{letter-spacing:527.942258pt;}
.ls21{letter-spacing:579.665938pt;}
.ls52{letter-spacing:591.011402pt;}
.ls36{letter-spacing:623.418701pt;}
.ls4f{letter-spacing:713.426049pt;}
.ls40{letter-spacing:714.938778pt;}
.ls82{letter-spacing:749.033351pt;}
.ls43{letter-spacing:786.735201pt;}
.ls2b{letter-spacing:872.320727pt;}
.ws55{word-spacing:-58.181867pt;}
.ws56{word-spacing:-46.824766pt;}
.ws61{word-spacing:-42.065490pt;}
.ws4d{word-spacing:-37.899668pt;}
.wsdd{word-spacing:-34.611401pt;}
.ws5a{word-spacing:-32.337481pt;}
.wsb0{word-spacing:-29.079297pt;}
.ws5{word-spacing:-28.928024pt;}
.ws57{word-spacing:-28.241478pt;}
.ws8a{word-spacing:-28.219811pt;}
.ws51{word-spacing:-28.183296pt;}
.wsd9{word-spacing:-27.151406pt;}
.ws50{word-spacing:-24.088030pt;}
.ws6a{word-spacing:-21.725109pt;}
.ws9a{word-spacing:-19.746926pt;}
.ws92{word-spacing:-18.525106pt;}
.wsbc{word-spacing:-16.942560pt;}
.ws4f{word-spacing:-16.162923pt;}
.ws30{word-spacing:-16.069832pt;}
.wsa9{word-spacing:-15.662559pt;}
.wsb3{word-spacing:-15.371649pt;}
.ws3b{word-spacing:-15.022558pt;}
.ws39{word-spacing:-14.789831pt;}
.wsbd{word-spacing:-14.731649pt;}
.wsa5{word-spacing:-14.498921pt;}
.wsaa{word-spacing:-14.440739pt;}
.wsa8{word-spacing:-14.382557pt;}
.ws64{word-spacing:-14.324376pt;}
.wsab{word-spacing:-14.266194pt;}
.ws75{word-spacing:-14.208012pt;}
.ws2a{word-spacing:-14.033466pt;}
.wsae{word-spacing:-13.858921pt;}
.wsa6{word-spacing:-13.800739pt;}
.ws9{word-spacing:-13.626193pt;}
.wsf{word-spacing:-13.218920pt;}
.ws3a{word-spacing:-13.160738pt;}
.wsca{word-spacing:-13.102556pt;}
.wsc9{word-spacing:-13.044375pt;}
.ws33{word-spacing:-12.986193pt;}
.ws41{word-spacing:-12.928011pt;}
.wsba{word-spacing:-12.869829pt;}
.wsb9{word-spacing:-12.811647pt;}
.wsbe{word-spacing:-12.753465pt;}
.ws59{word-spacing:-12.695283pt;}
.wsa7{word-spacing:-12.578920pt;}
.ws83{word-spacing:-12.543875pt;}
.ws6b{word-spacing:-12.404374pt;}
.wsc5{word-spacing:-12.229828pt;}
.wsc4{word-spacing:-12.113465pt;}
.wscf{word-spacing:-12.055283pt;}
.ws31{word-spacing:-11.938919pt;}
.ws7c{word-spacing:-11.896673pt;}
.wsd{word-spacing:-11.880737pt;}
.ws10{word-spacing:-11.764373pt;}
.ws21{word-spacing:-11.706192pt;}
.ws78{word-spacing:-11.648010pt;}
.ws9e{word-spacing:-11.589828pt;}
.ws3f{word-spacing:-11.531646pt;}
.ws22{word-spacing:-11.473464pt;}
.wsbb{word-spacing:-11.415282pt;}
.ws1f{word-spacing:-11.357100pt;}
.ws17{word-spacing:-11.124373pt;}
.ws4c{word-spacing:-11.080030pt;}
.ws18{word-spacing:-11.066191pt;}
.ws1c{word-spacing:-10.891645pt;}
.ws1d{word-spacing:-10.833464pt;}
.wsc1{word-spacing:-10.775282pt;}
.ws9d{word-spacing:-10.717100pt;}
.ws82{word-spacing:-10.568326pt;}
.ws13{word-spacing:-10.542554pt;}
.ws65{word-spacing:-10.484372pt;}
.ws5e{word-spacing:-10.309827pt;}
.ws2b{word-spacing:-10.251645pt;}
.ws71{word-spacing:-10.193463pt;}
.ws9c{word-spacing:-10.077099pt;}
.ws9b{word-spacing:-10.018917pt;}
.ws6f{word-spacing:-9.960736pt;}
.ws74{word-spacing:-9.844372pt;}
.ws72{word-spacing:-9.786190pt;}
.ws69{word-spacing:-9.728008pt;}
.ws3{word-spacing:-9.669826pt;}
.wse{word-spacing:-9.611644pt;}
.ws49{word-spacing:-9.553463pt;}
.ws25{word-spacing:-9.437099pt;}
.ws68{word-spacing:-9.320735pt;}
.wsdf{word-spacing:-9.293113pt;}
.ws67{word-spacing:-9.262553pt;}
.ws28{word-spacing:-9.146189pt;}
.ws81{word-spacing:-9.133712pt;}
.ws46{word-spacing:-9.088008pt;}
.ws90{word-spacing:-9.029826pt;}
.ws7b{word-spacing:-8.974310pt;}
.ws42{word-spacing:-8.913462pt;}
.ws7e{word-spacing:-8.868042pt;}
.ws29{word-spacing:-8.855280pt;}
.wsd6{word-spacing:-8.814908pt;}
.ws37{word-spacing:-8.797098pt;}
.ws70{word-spacing:-8.738916pt;}
.ws12{word-spacing:-8.622553pt;}
.wsac{word-spacing:-8.564371pt;}
.wse0{word-spacing:-8.554553pt;}
.ws99{word-spacing:-8.506189pt;}
.ws98{word-spacing:-8.448007pt;}
.wsa{word-spacing:-8.389825pt;}
.wsdb{word-spacing:-8.235749pt;}
.ws40{word-spacing:-8.215280pt;}
.wsd4{word-spacing:-8.182615pt;}
.wsd2{word-spacing:-8.129482pt;}
.wsad{word-spacing:-8.098916pt;}
.wsc6{word-spacing:-7.982552pt;}
.ws88{word-spacing:-7.928030pt;}
.wsb7{word-spacing:-7.924370pt;}
.ws77{word-spacing:-7.866188pt;}
.wsce{word-spacing:-7.749825pt;}
.ws4a{word-spacing:-7.730697pt;}
.ws6d{word-spacing:-7.691643pt;}
.ws8{word-spacing:-7.633461pt;}
.wsb8{word-spacing:-7.517097pt;}
.wsc3{word-spacing:-7.458915pt;}
.ws1a{word-spacing:-7.400733pt;}
.ws5c{word-spacing:-7.284370pt;}
.wsb6{word-spacing:-7.278552pt;}
.wsa0{word-spacing:-7.226188pt;}
.ws6e{word-spacing:-7.168006pt;}
.ws7{word-spacing:-7.051642pt;}
.wscb{word-spacing:-6.993460pt;}
.ws32{word-spacing:-6.935279pt;}
.ws26{word-spacing:-6.818915pt;}
.wsd1{word-spacing:-6.760733pt;}
.ws6c{word-spacing:-6.644369pt;}
.wsb5{word-spacing:-6.638551pt;}
.ws3c{word-spacing:-6.586187pt;}
.wsc8{word-spacing:-6.528005pt;}
.wsa1{word-spacing:-6.469824pt;}
.ws53{word-spacing:-6.446551pt;}
.ws2e{word-spacing:-6.353460pt;}
.ws5d{word-spacing:-6.295278pt;}
.ws7d{word-spacing:-6.211349pt;}
.ws1b{word-spacing:-6.062551pt;}
.ws43{word-spacing:-6.004369pt;}
.ws35{word-spacing:-5.829823pt;}
.wsa2{word-spacing:-5.771641pt;}
.ws47{word-spacing:-5.713459pt;}
.wsbf{word-spacing:-5.655277pt;}
.ws2f{word-spacing:-5.538914pt;}
.ws9f{word-spacing:-5.480732pt;}
.wsde{word-spacing:-5.472788pt;}
.wsb{word-spacing:-5.422550pt;}
.ws27{word-spacing:-5.248004pt;}
.ws38{word-spacing:-5.131641pt;}
.wsd7{word-spacing:-5.100851pt;}
.ws11{word-spacing:-5.073459pt;}
.ws91{word-spacing:-5.020100pt;}
.ws1e{word-spacing:-4.957095pt;}
.ws58{word-spacing:-4.898913pt;}
.wsa4{word-spacing:-4.840731pt;}
.ws2d{word-spacing:-4.782549pt;}
.wsdc{word-spacing:-4.728914pt;}
.ws4e{word-spacing:-4.680030pt;}
.ws20{word-spacing:-4.608004pt;}
.ws97{word-spacing:-4.375276pt;}
.wsb1{word-spacing:-4.317095pt;}
.wsd0{word-spacing:-4.142549pt;}
.ws76{word-spacing:-4.084367pt;}
.ws62{word-spacing:-4.026185pt;}
.wsda{word-spacing:-3.985040pt;}
.wsc0{word-spacing:-3.909821pt;}
.ws86{word-spacing:-3.851640pt;}
.ws84{word-spacing:-3.793458pt;}
.ws5b{word-spacing:-3.735276pt;}
.ws3d{word-spacing:-3.618912pt;}
.ws3e{word-spacing:-3.560730pt;}
.wsc{word-spacing:-3.444367pt;}
.ws48{word-spacing:-3.386185pt;}
.wsa3{word-spacing:-3.328003pt;}
.ws52{word-spacing:-3.246548pt;}
.ws4{word-spacing:-3.211639pt;}
.ws60{word-spacing:-3.037093pt;}
.ws2c{word-spacing:-2.862548pt;}
.ws5f{word-spacing:-2.798548pt;}
.wsc2{word-spacing:-2.688002pt;}
.wsb4{word-spacing:-2.455275pt;}
.ws36{word-spacing:-2.397093pt;}
.ws73{word-spacing:-1.989820pt;}
.wsb2{word-spacing:-1.931638pt;}
.ws95{word-spacing:-1.873456pt;}
.ws44{word-spacing:-1.815274pt;}
.wscd{word-spacing:-1.757092pt;}
.ws87{word-spacing:-1.640729pt;}
.wsc7{word-spacing:-1.466183pt;}
.ws54{word-spacing:-1.000728pt;}
.wscc{word-spacing:-0.884364pt;}
.ws45{word-spacing:-0.651637pt;}
.ws15{word-spacing:-0.063761pt;}
.ws63{word-spacing:-0.058182pt;}
.wsd8{word-spacing:-0.053134pt;}
.ws66{word-spacing:-0.046545pt;}
.ws14{word-spacing:0.000000pt;}
.ws89{word-spacing:0.011636pt;}
.ws23{word-spacing:0.279273pt;}
.ws24{word-spacing:0.337455pt;}
.ws8e{word-spacing:1.069303pt;}
.ws4b{word-spacing:2.164365pt;}
.ws8b{word-spacing:4.994637pt;}
.ws93{word-spacing:6.403596pt;}
.ws8d{word-spacing:9.390883pt;}
.ws94{word-spacing:9.635596pt;}
.wsaf{word-spacing:9.986917pt;}
.ws85{word-spacing:14.242921pt;}
.ws8c{word-spacing:16.749303pt;}
.wse1{word-spacing:17.215373pt;}
.ws8f{word-spacing:17.218637pt;}
.wsd3{word-spacing:17.640444pt;}
.wsd5{word-spacing:17.693578pt;}
.ws0{word-spacing:19.978334pt;}
.ws80{word-spacing:20.031468pt;}
.ws7a{word-spacing:20.190869pt;}
.ws16{word-spacing:20.293835pt;}
.ws7f{word-spacing:21.147120pt;}
.ws34{word-spacing:23.846639pt;}
.ws2{word-spacing:29.227991pt;}
.ws1{word-spacing:51.821564pt;}
.ws6{word-spacing:55.383558pt;}
.ws19{word-spacing:71.667439pt;}
.ws96{word-spacing:87.482255pt;}
.ws79{word-spacing:132.400650pt;}
._31{margin-left:-31.069117pt;}
._43{margin-left:-29.158442pt;}
._34{margin-left:-16.174559pt;}
._45{margin-left:-12.690141pt;}
._12{margin-left:-5.585459pt;}
._0{margin-left:-4.622646pt;}
._3{margin-left:-3.710098pt;}
._e{margin-left:-2.708269pt;}
._1{margin-left:-1.540882pt;}
._4{width:1.687274pt;}
._23{width:2.708269pt;}
._2{width:4.362530pt;}
._41{width:5.267100pt;}
._40{width:6.802280pt;}
._32{width:9.715352pt;}
._26{width:14.019955pt;}
._2a{width:15.502655pt;}
._8{width:16.929049pt;}
._2f{width:18.415498pt;}
._49{width:19.876482pt;}
._2d{width:21.089989pt;}
._42{width:22.172155pt;}
._17{width:23.330929pt;}
._5{width:24.261838pt;}
._9{width:25.279084pt;}
._2b{width:26.530931pt;}
._b{width:27.636387pt;}
._38{width:28.541018pt;}
._f{width:29.556388pt;}
._7{width:30.674581pt;}
._28{width:32.204128pt;}
._46{width:33.208305pt;}
._39{width:34.351706pt;}
._36{width:35.402729pt;}
._2e{width:36.448127pt;}
._47{width:37.469122pt;}
._6{width:38.821917pt;}
._a{width:39.794522pt;}
._3b{width:42.035461pt;}
._2c{width:43.810946pt;}
._35{width:44.711827pt;}
._25{width:46.269196pt;}
._29{width:47.213647pt;}
._3a{width:48.973716pt;}
._48{width:50.152769pt;}
._33{width:51.951208pt;}
._d{width:53.527317pt;}
._24{width:56.173655pt;}
._44{width:57.776468pt;}
._14{width:59.112777pt;}
._30{width:66.501874pt;}
._27{width:71.731200pt;}
._37{width:125.356550pt;}
._3e{width:369.538148pt;}
._3f{width:404.518966pt;}
._3d{width:419.231407pt;}
._3c{width:424.171859pt;}
._18{width:730.938791pt;}
._13{width:839.564336pt;}
._11{width:915.782581pt;}
._1c{width:926.211748pt;}
._1d{width:933.554330pt;}
._10{width:961.267260pt;}
._20{width:1096.760090pt;}
._1a{width:1169.862793pt;}
._1f{width:1222.690053pt;}
._16{width:1271.797423pt;}
._21{width:1275.200125pt;}
._1b{width:1306.211060pt;}
._19{width:1381.672941pt;}
._1e{width:1395.885804pt;}
._15{width:1408.378418pt;}
._c{width:1851.840606pt;}
._22{width:1899.928856pt;}
.fs6{font-size:24.840000pt;}
.fs7{font-size:27.600000pt;}
.fs8{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.yb1{bottom:-0.922961pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:7.643906pt;}
.yb0{bottom:8.510633pt;}
.y17f{bottom:16.869333pt;}
.y3c{bottom:16.870667pt;}
.y3b{bottom:89.929333pt;}
.y10b{bottom:89.968000pt;}
.y155{bottom:105.869333pt;}
.y3a{bottom:107.994667pt;}
.y10a{bottom:108.033333pt;}
.yc5{bottom:117.977333pt;}
.yc4{bottom:120.158667pt;}
.y154{bottom:121.809333pt;}
.ye6{bottom:126.060000pt;}
.y39{bottom:126.061333pt;}
.y109{bottom:126.098667pt;}
.y17e{bottom:129.084000pt;}
.yc3{bottom:141.249333pt;}
.y7f{bottom:143.810667pt;}
.y38{bottom:144.126667pt;}
.y108{bottom:144.164000pt;}
.y153{bottom:144.817333pt;}
.y17d{bottom:145.024000pt;}
.yaf{bottom:149.834880pt;}
.ya8{bottom:158.245412pt;}
.yc2{bottom:159.314667pt;}
.y152{bottom:160.757333pt;}
.ya6{bottom:162.192000pt;}
.y107{bottom:162.229333pt;}
.y37{bottom:162.296000pt;}
.y12d{bottom:162.340000pt;}
.y5e{bottom:164.446667pt;}
.y17c{bottom:168.238667pt;}
.yc1{bottom:175.488000pt;}
.yc0{bottom:177.380000pt;}
.y7e{bottom:179.626667pt;}
.ya5{bottom:180.257333pt;}
.y106{bottom:180.296000pt;}
.y36{bottom:180.361333pt;}
.y12c{bottom:180.405333pt;}
.y5d{bottom:182.512000pt;}
.y151{bottom:183.765333pt;}
.y17b{bottom:191.453333pt;}
.y7d{bottom:197.692000pt;}
.ya4{bottom:198.322667pt;}
.y105{bottom:198.361333pt;}
.y35{bottom:198.426667pt;}
.y12b{bottom:198.470667pt;}
.y150{bottom:199.705333pt;}
.y5c{bottom:200.577333pt;}
.y17a{bottom:207.393333pt;}
.ybf{bottom:214.049333pt;}
.y14f{bottom:215.645333pt;}
.ya3{bottom:216.388000pt;}
.y104{bottom:216.426667pt;}
.y34{bottom:216.492000pt;}
.y12a{bottom:216.536000pt;}
.ybe{bottom:217.645333pt;}
.y5b{bottom:218.642667pt;}
.ybd{bottom:221.321333pt;}
.ye5{bottom:228.825333pt;}
.y179{bottom:230.608000pt;}
.ya2{bottom:234.454667pt;}
.y103{bottom:234.492000pt;}
.y33{bottom:234.558667pt;}
.y129{bottom:234.602667pt;}
.y7c{bottom:237.553333pt;}
.y14e{bottom:238.653333pt;}
.y17{bottom:246.681333pt;}
.ye4{bottom:246.890667pt;}
.ya1{bottom:252.520000pt;}
.y102{bottom:252.557333pt;}
.y32{bottom:252.624000pt;}
.ybc{bottom:253.348000pt;}
.y178{bottom:253.822667pt;}
.y14d{bottom:254.593333pt;}
.y7b{bottom:255.618667pt;}
.y5a{bottom:257.614667pt;}
.y16{bottom:264.746667pt;}
.ye3{bottom:264.956000pt;}
.y128{bottom:267.494667pt;}
.y177{bottom:269.762667pt;}
.ya0{bottom:270.585333pt;}
.y101{bottom:270.624000pt;}
.y31{bottom:270.793333pt;}
.ybb{bottom:272.421333pt;}
.y7a{bottom:273.684000pt;}
.y14c{bottom:277.600000pt;}
.y15{bottom:282.812000pt;}
.ye2{bottom:283.021333pt;}
.y9f{bottom:288.650667pt;}
.y100{bottom:288.689333pt;}
.y30{bottom:288.858667pt;}
.yba{bottom:290.486667pt;}
.y79{bottom:291.750667pt;}
.y176{bottom:292.977333pt;}
.y14b{bottom:293.540000pt;}
.y14{bottom:300.878667pt;}
.ye1{bottom:301.086667pt;}
.y9e{bottom:306.716000pt;}
.yff{bottom:306.754667pt;}
.y2f{bottom:306.924000pt;}
.yb9{bottom:308.553333pt;}
.y175{bottom:308.917333pt;}
.y127{bottom:309.058667pt;}
.y59{bottom:314.194667pt;}
.y14a{bottom:316.548000pt;}
.y78{bottom:317.785333pt;}
.y19e{bottom:318.405333pt;}
.y13{bottom:318.944000pt;}
.ye0{bottom:319.412000pt;}
.yb8{bottom:324.725333pt;}
.y9d{bottom:324.782667pt;}
.y2e{bottom:324.989333pt;}
.yb7{bottom:326.618667pt;}
.y126{bottom:327.124000pt;}
.yfe{bottom:332.052000pt;}
.y174{bottom:332.132000pt;}
.y58{bottom:332.260000pt;}
.y149{bottom:332.488000pt;}
.y19d{bottom:334.345333pt;}
.y77{bottom:335.852000pt;}
.y12{bottom:337.009333pt;}
.ydf{bottom:337.477333pt;}
.y9c{bottom:342.848000pt;}
.y2d{bottom:343.056000pt;}
.y125{bottom:345.189333pt;}
.y173{bottom:348.072000pt;}
.y57{bottom:350.326667pt;}
.y76{bottom:353.917333pt;}
.y11{bottom:355.074667pt;}
.y148{bottom:355.496000pt;}
.yde{bottom:355.542667pt;}
.yb6{bottom:356.358667pt;}
.y19c{bottom:356.928000pt;}
.y9b{bottom:360.913333pt;}
.y2c{bottom:361.121333pt;}
.y124{bottom:363.254667pt;}
.y56{bottom:368.392000pt;}
.yfd{bottom:370.702667pt;}
.y172{bottom:371.286667pt;}
.y147{bottom:371.436000pt;}
.y75{bottom:371.982667pt;}
.y19b{bottom:372.868000pt;}
.y10{bottom:373.140000pt;}
.ydd{bottom:373.608000pt;}
.y9a{bottom:378.978667pt;}
.y2b{bottom:379.186667pt;}
.y171{bottom:387.226667pt;}
.y55{bottom:388.712000pt;}
.yfc{bottom:388.769333pt;}
.yf{bottom:391.206667pt;}
.ydc{bottom:391.674667pt;}
.yb5{bottom:391.734667pt;}
.y146{bottom:394.442667pt;}
.y19a{bottom:395.450667pt;}
.y123{bottom:396.148000pt;}
.y99{bottom:397.044000pt;}
.y74{bottom:398.018667pt;}
.y54{bottom:406.777333pt;}
.yfb{bottom:406.834667pt;}
.ye{bottom:409.272000pt;}
.ydb{bottom:409.998667pt;}
.y145{bottom:410.384000pt;}
.y170{bottom:410.441333pt;}
.y199{bottom:411.390667pt;}
.y2a{bottom:411.952000pt;}
.y98{bottom:415.110667pt;}
.y73{bottom:416.084000pt;}
.y53{bottom:424.842667pt;}
.y16f{bottom:426.382667pt;}
.yd{bottom:427.337333pt;}
.yda{bottom:428.064000pt;}
.y97{bottom:433.176000pt;}
.y144{bottom:433.390667pt;}
.y198{bottom:433.972000pt;}
.y72{bottom:434.149333pt;}
.yfa{bottom:434.870667pt;}
.yb4{bottom:437.512000pt;}
.y122{bottom:437.710667pt;}
.y52{bottom:442.908000pt;}
.yc{bottom:445.402667pt;}
.yd9{bottom:446.129333pt;}
.y143{bottom:449.330667pt;}
.y16e{bottom:449.596000pt;}
.y197{bottom:449.912000pt;}
.y96{bottom:451.241333pt;}
.yf9{bottom:452.936000pt;}
.yb3{bottom:453.452000pt;}
.y29{bottom:454.316000pt;}
.y121{bottom:455.777333pt;}
.y51{bottom:460.974667pt;}
.y71{bottom:462.898667pt;}
.yb{bottom:463.468000pt;}
.yd8{bottom:464.196000pt;}
.y16d{bottom:465.537333pt;}
.y95{bottom:469.306667pt;}
.yb2{bottom:469.393333pt;}
.yf8{bottom:471.001333pt;}
.y142{bottom:472.338667pt;}
.y196{bottom:472.494667pt;}
.y120{bottom:473.842667pt;}
.y50{bottom:481.294667pt;}
.ya{bottom:481.533333pt;}
.yd7{bottom:482.261333pt;}
.y28{bottom:487.052000pt;}
.y94{bottom:487.372000pt;}
.y141{bottom:488.278667pt;}
.y195{bottom:488.434667pt;}
.y16c{bottom:488.750667pt;}
.yf7{bottom:489.068000pt;}
.y11f{bottom:491.908000pt;}
.yae{bottom:498.616000pt;}
.y4f{bottom:499.360000pt;}
.y9{bottom:499.600000pt;}
.y70{bottom:499.761333pt;}
.y140{bottom:504.218667pt;}
.y194{bottom:504.374667pt;}
.y16b{bottom:504.692000pt;}
.y93{bottom:505.438667pt;}
.yd6{bottom:508.465333pt;}
.y11e{bottom:509.973333pt;}
.y4e{bottom:517.425333pt;}
.y8{bottom:517.665333pt;}
.y27{bottom:519.789333pt;}
.y92{bottom:523.504000pt;}
.yf6{bottom:523.745333pt;}
.y193{bottom:526.957333pt;}
.y13f{bottom:527.226667pt;}
.y16a{bottom:527.906667pt;}
.y11d{bottom:528.038667pt;}
.y4d{bottom:535.490667pt;}
.y6f{bottom:535.577333pt;}
.y91{bottom:541.569333pt;}
.yd5{bottom:542.410667pt;}
.y192{bottom:542.897333pt;}
.y13e{bottom:543.166667pt;}
.y169{bottom:543.846667pt;}
.y11c{bottom:546.252000pt;}
.y7{bottom:551.626667pt;}
.y26{bottom:552.525333pt;}
.y4c{bottom:553.557333pt;}
.y6e{bottom:554.688000pt;}
.yf5{bottom:558.424000pt;}
.y13d{bottom:559.106667pt;}
.y90{bottom:559.634667pt;}
.y168{bottom:559.786667pt;}
.yd4{bottom:560.476000pt;}
.y11b{bottom:564.318667pt;}
.y191{bottom:565.478667pt;}
.y25{bottom:570.716000pt;}
.y6d{bottom:572.754667pt;}
.yf4{bottom:576.489333pt;}
.y8f{bottom:577.700000pt;}
.yd3{bottom:578.541333pt;}
.y6{bottom:580.364000pt;}
.y13c{bottom:582.114667pt;}
.y11a{bottom:582.384000pt;}
.y167{bottom:583.001333pt;}
.y190{bottom:588.061333pt;}
.y6c{bottom:590.820000pt;}
.y4b{bottom:592.528000pt;}
.yf3{bottom:594.554667pt;}
.yd2{bottom:596.606667pt;}
.y13b{bottom:598.054667pt;}
.y166{bottom:598.941333pt;}
.y119{bottom:600.449333pt;}
.y8e{bottom:602.022667pt;}
.y24{bottom:603.452000pt;}
.y18f{bottom:604.001333pt;}
.y6b{bottom:608.885333pt;}
.y5{bottom:611.181333pt;}
.y13a{bottom:621.061333pt;}
.y23{bottom:621.641333pt;}
.yf2{bottom:621.744000pt;}
.y165{bottom:622.156000pt;}
.yd1{bottom:622.810667pt;}
.y18e{bottom:626.584000pt;}
.y8d{bottom:632.393333pt;}
.y118{bottom:633.341333pt;}
.y139{bottom:637.002667pt;}
.y164{bottom:638.096000pt;}
.y22{bottom:639.832000pt;}
.y18d{bottom:642.524000pt;}
.y6a{bottom:644.701333pt;}
.y4a{bottom:649.108000pt;}
.y8c{bottom:650.458667pt;}
.yf1{bottom:656.133333pt;}
.yd0{bottom:656.756000pt;}
.y21{bottom:658.022667pt;}
.y138{bottom:660.009333pt;}
.y163{bottom:661.310667pt;}
.y18c{bottom:665.105333pt;}
.y49{bottom:667.173333pt;}
.ycf{bottom:674.822667pt;}
.y117{bottom:674.905333pt;}
.y137{bottom:675.949333pt;}
.y20{bottom:676.213333pt;}
.y162{bottom:677.250667pt;}
.y8b{bottom:677.802667pt;}
.y69{bottom:680.517333pt;}
.y18b{bottom:681.045333pt;}
.y48{bottom:685.240000pt;}
.y116{bottom:692.970667pt;}
.y161{bottom:693.190667pt;}
.yad{bottom:696.774667pt;}
.y68{bottom:698.582667pt;}
.yf0{bottom:701.397333pt;}
.yce{bottom:702.448000pt;}
.y47{bottom:703.305333pt;}
.y18a{bottom:703.628000pt;}
.y8a{bottom:705.146667pt;}
.y4{bottom:706.554667pt;}
.y136{bottom:707.222667pt;}
.y1f{bottom:708.949333pt;}
.y115{bottom:711.037333pt;}
.ycd{bottom:712.425333pt;}
.yac{bottom:712.714667pt;}
.y160{bottom:716.405333pt;}
.y67{bottom:716.648000pt;}
.yef{bottom:719.462667pt;}
.y189{bottom:719.568000pt;}
.y46{bottom:721.370667pt;}
.y89{bottom:723.212000pt;}
.y1e{bottom:727.138667pt;}
.yab{bottom:728.654667pt;}
.y114{bottom:729.102667pt;}
.y15f{bottom:732.345333pt;}
.y66{bottom:735.760000pt;}
.yee{bottom:738.196000pt;}
.y45{bottom:739.436000pt;}
.y88{bottom:741.278667pt;}
.y188{bottom:742.150667pt;}
.yaa{bottom:744.596000pt;}
.y1d{bottom:745.329333pt;}
.y3{bottom:746.405333pt;}
.y113{bottom:747.168000pt;}
.y15e{bottom:748.285333pt;}
.y135{bottom:751.254667pt;}
.ycc{bottom:752.558667pt;}
.y65{bottom:753.825333pt;}
.yed{bottom:756.261333pt;}
.y44{bottom:757.501333pt;}
.y187{bottom:758.090667pt;}
.y87{bottom:762.516000pt;}
.y1c{bottom:763.520000pt;}
.y112{bottom:765.381333pt;}
.y134{bottom:769.320000pt;}
.ycb{bottom:770.624000pt;}
.y15d{bottom:771.500000pt;}
.y64{bottom:771.890667pt;}
.y86{bottom:772.493333pt;}
.ya7{bottom:773.818667pt;}
.yec{bottom:774.326667pt;}
.y186{bottom:780.672000pt;}
.y111{bottom:783.446667pt;}
.y2{bottom:786.256000pt;}
.y133{bottom:787.386667pt;}
.y15c{bottom:787.441333pt;}
.yca{bottom:788.689333pt;}
.yeb{bottom:792.392000pt;}
.y85{bottom:794.913333pt;}
.y1b{bottom:796.256000pt;}
.y185{bottom:796.612000pt;}
.y43{bottom:799.405333pt;}
.y63{bottom:799.994667pt;}
.y110{bottom:801.512000pt;}
.yc9{bottom:807.014667pt;}
.yea{bottom:810.457333pt;}
.y15b{bottom:810.654667pt;}
.y184{bottom:812.553333pt;}
.y84{bottom:812.978667pt;}
.y42{bottom:817.472000pt;}
.y132{bottom:819.232000pt;}
.y10f{bottom:819.578667pt;}
.yc8{bottom:825.080000pt;}
.y15a{bottom:826.596000pt;}
.ye9{bottom:828.524000pt;}
.y1a{bottom:828.992000pt;}
.y83{bottom:831.044000pt;}
.y183{bottom:835.134667pt;}
.y41{bottom:835.537333pt;}
.y131{bottom:837.297333pt;}
.y10e{bottom:837.644000pt;}
.y62{bottom:838.438667pt;}
.yc7{bottom:843.145333pt;}
.y82{bottom:849.109333pt;}
.y159{bottom:849.810667pt;}
.y182{bottom:851.074667pt;}
.y40{bottom:853.602667pt;}
.y130{bottom:855.362667pt;}
.ye8{bottom:855.712000pt;}
.y10d{bottom:855.857333pt;}
.y61{bottom:856.504000pt;}
.y19{bottom:861.728000pt;}
.y3f{bottom:871.668000pt;}
.y158{bottom:873.024000pt;}
.y12f{bottom:873.428000pt;}
.y181{bottom:873.657333pt;}
.y10c{bottom:873.922667pt;}
.y60{bottom:874.569333pt;}
.y81{bottom:876.453333pt;}
.yc6{bottom:876.600000pt;}
.y157{bottom:888.965333pt;}
.y180{bottom:889.597333pt;}
.y3e{bottom:889.733333pt;}
.y12e{bottom:891.494667pt;}
.ye7{bottom:891.988000pt;}
.y5f{bottom:892.634667pt;}
.y18{bottom:894.465333pt;}
.y80{bottom:903.797333pt;}
.y3d{bottom:910.053333pt;}
.y156{bottom:912.178667pt;}
.y1{bottom:928.120000pt;}
.h13{height:18.745675pt;}
.hf{height:23.076360pt;}
.h10{height:25.640400pt;}
.h1{height:38.096982pt;}
.h11{height:39.903534pt;}
.h7{height:40.785489pt;}
.h14{height:43.636400pt;}
.h4{height:43.694582pt;}
.h6{height:44.696508pt;}
.h5{height:46.545579pt;}
.h1d{height:46.576515pt;}
.ha{height:49.457941pt;}
.he{height:50.917860pt;}
.h18{height:51.262582pt;}
.h19{height:52.419915pt;}
.h9{height:52.995067pt;}
.h3{height:54.783356pt;}
.h8{height:55.901733pt;}
.h17{height:58.345733pt;}
.h12{height:62.547067pt;}
.h16{height:63.836608pt;}
.h15{height:70.285733pt;}
.h1a{height:82.996400pt;}
.hb{height:84.364608pt;}
.h1c{height:89.367275pt;}
.h2{height:94.918068pt;}
.h1b{height:122.905733pt;}
.hc{height:124.273941pt;}
.hd{height:168.912000pt;}
.h0{height:1056.000000pt;}
.w1{width:496.800000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:51.696935pt;}
.xf{left:54.023766pt;}
.x1{left:113.268000pt;}
.x25{left:115.113333pt;}
.x23{left:121.753333pt;}
.x2{left:123.850667pt;}
.x8{left:127.881333pt;}
.x22{left:133.726667pt;}
.x4{left:134.962667pt;}
.x24{left:143.044000pt;}
.x3{left:145.786667pt;}
.xe{left:157.102667pt;}
.x15{left:189.405000pt;}
.x14{left:191.047739pt;}
.x1e{left:201.016000pt;}
.x11{left:220.676016pt;}
.x1d{left:267.654667pt;}
.x6{left:274.981333pt;}
.x7{left:287.922667pt;}
.x1b{left:290.756000pt;}
.xa{left:298.858667pt;}
.xb{left:321.738667pt;}
.x17{left:324.660000pt;}
.x21{left:330.260000pt;}
.x1c{left:331.841333pt;}
.xd{left:339.697333pt;}
.x9{left:361.072000pt;}
.x13{left:370.265018pt;}
.x10{left:375.517406pt;}
.x26{left:386.221333pt;}
.x5{left:389.836000pt;}
.x18{left:411.010667pt;}
.x1f{left:423.581333pt;}
.xc{left:446.909333pt;}
.x19{left:455.028000pt;}
.x20{left:475.289333pt;}
.x1a{left:529.170667pt;}
.x16{left:673.833333pt;}
}




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