
    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_c5c55328773abffb3b1b8904.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_4f6a3e11e1517638be1c4128.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9f15ae0e523edd3dcb31ed40.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fe7ef68d98416b728e6d6db7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740723;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_a07ba74c6ba17b665bae0b95.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_dc334c0a019bda159713dbd1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_028604dc35ac01d6e1e57fb1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_e511729a5b7b9e5350a593c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_52bca5fed027f76f98ce87b3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7beed0eca8ec00887f1522c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a446d67cfc9a001091fd5292.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5b3dbd96016f3ebeb127195b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.730469;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_d11ce7528f78fb510275b525.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_692ce4c09e1a1a1b1f41c4ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.693359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_22f6746dbbd8706c8ec6a18b.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3b816d93660c64e21f8b5a61.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_79eedf498d458fee322db6f5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d5c943c8a197dcc9b1db8811.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248166,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.vb{vertical-align:-20.256000px;}
.v3{vertical-align:-18.811800px;}
.v7{vertical-align:-11.757000px;}
.v8{vertical-align:-9.357600px;}
.v4{vertical-align:-1.214400px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:1.620000px;}
.v9{vertical-align:3.988403px;}
.vc{vertical-align:9.089400px;}
.va{vertical-align:10.659271px;}
.vd{vertical-align:11.697000px;}
.vf{vertical-align:22.610400px;}
.v6{vertical-align:28.230000px;}
.v1{vertical-align:30.381600px;}
.v5{vertical-align:47.091000px;}
.lsa5{letter-spacing:-2.640000px;}
.ls10{letter-spacing:-0.780000px;}
.lsb6{letter-spacing:-0.432000px;}
.ls63{letter-spacing:-0.420000px;}
.ls6c{letter-spacing:-0.360000px;}
.ls48{letter-spacing:-0.300000px;}
.ls31{letter-spacing:-0.240000px;}
.ls33{letter-spacing:-0.180000px;}
.ls32{letter-spacing:-0.120000px;}
.ls66{letter-spacing:-0.102600px;}
.lsb7{letter-spacing:-0.096000px;}
.ls11{letter-spacing:-0.060000px;}
.lsa2{letter-spacing:-0.048000px;}
.lsf{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.001200px;}
.ls5c{letter-spacing:0.003696px;}
.ls2{letter-spacing:0.003828px;}
.ls1{letter-spacing:0.004140px;}
.ls53{letter-spacing:0.004920px;}
.ls4e{letter-spacing:0.005520px;}
.ls0{letter-spacing:0.005676px;}
.ls5b{letter-spacing:0.018600px;}
.ls91{letter-spacing:0.048000px;}
.lse{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.069000px;}
.ls93{letter-spacing:0.096000px;}
.ls65{letter-spacing:0.102708px;}
.ls62{letter-spacing:0.104940px;}
.ls2e{letter-spacing:0.120000px;}
.ls58{letter-spacing:0.134400px;}
.ls61{letter-spacing:0.139920px;}
.ls95{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.180000px;}
.ls98{letter-spacing:0.192000px;}
.ls56{letter-spacing:0.205800px;}
.ls6{letter-spacing:0.240000px;}
.ls38{letter-spacing:0.260343px;}
.ls9b{letter-spacing:0.288000px;}
.ls4d{letter-spacing:0.291600px;}
.ls12{letter-spacing:0.300000px;}
.ls37{letter-spacing:0.312412px;}
.ls39{letter-spacing:0.325601px;}
.ls35{letter-spacing:0.336000px;}
.ls60{letter-spacing:0.349800px;}
.ls43{letter-spacing:0.357120px;}
.ls16{letter-spacing:0.360000px;}
.lsa7{letter-spacing:0.384000px;}
.ls36{letter-spacing:0.416549px;}
.lsd{letter-spacing:0.420000px;}
.ls8f{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.480000px;}
.ls6d{letter-spacing:0.521699px;}
.lsa3{letter-spacing:0.528000px;}
.ls42{letter-spacing:0.538200px;}
.ls2a{letter-spacing:0.540000px;}
.ls78{letter-spacing:0.559680px;}
.ls94{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.600000px;}
.ls54{letter-spacing:0.600600px;}
.ls55{letter-spacing:0.607800px;}
.ls50{letter-spacing:0.615120px;}
.ls9a{letter-spacing:0.624000px;}
.ls1c{letter-spacing:0.660000px;}
.lsa6{letter-spacing:0.672000px;}
.ls49{letter-spacing:0.699600px;}
.ls8{letter-spacing:0.720000px;}
.ls52{letter-spacing:0.763320px;}
.ls8a{letter-spacing:0.768000px;}
.lsb{letter-spacing:0.780000px;}
.ls8b{letter-spacing:0.816000px;}
.ls13{letter-spacing:0.840000px;}
.ls99{letter-spacing:0.864000px;}
.ls5{letter-spacing:0.900000px;}
.ls22{letter-spacing:0.960000px;}
.ls74{letter-spacing:0.987000px;}
.ls89{letter-spacing:1.008000px;}
.ls4f{letter-spacing:1.011600px;}
.ls26{letter-spacing:1.020000px;}
.lsb4{letter-spacing:1.056000px;}
.ls2d{letter-spacing:1.080000px;}
.lsb1{letter-spacing:1.104000px;}
.ls17{letter-spacing:1.140000px;}
.ls96{letter-spacing:1.152000px;}
.ls45{letter-spacing:1.165800px;}
.ls1f{letter-spacing:1.200000px;}
.ls9e{letter-spacing:1.248000px;}
.ls24{letter-spacing:1.260000px;}
.ls70{letter-spacing:1.261320px;}
.ls77{letter-spacing:1.296000px;}
.ls51{letter-spacing:1.309200px;}
.ls1d{letter-spacing:1.320000px;}
.ls90{letter-spacing:1.344000px;}
.ls1e{letter-spacing:1.380000px;}
.lsb5{letter-spacing:1.392000px;}
.ls15{letter-spacing:1.440000px;}
.ls28{letter-spacing:1.500000px;}
.lsa1{letter-spacing:1.536000px;}
.lsa{letter-spacing:1.560000px;}
.ls92{letter-spacing:1.584000px;}
.ls81{letter-spacing:1.609080px;}
.ls68{letter-spacing:1.620000px;}
.lsb0{letter-spacing:1.632000px;}
.ls7f{letter-spacing:1.680000px;}
.ls76{letter-spacing:1.728000px;}
.ls3f{letter-spacing:1.740000px;}
.ls88{letter-spacing:1.776000px;}
.ls19{letter-spacing:1.800000px;}
.ls8e{letter-spacing:1.824000px;}
.ls14{letter-spacing:1.860000px;}
.lsb2{letter-spacing:1.872000px;}
.lsc{letter-spacing:1.920000px;}
.ls87{letter-spacing:1.968000px;}
.ls18{letter-spacing:1.980000px;}
.ls9c{letter-spacing:2.016000px;}
.ls67{letter-spacing:2.040000px;}
.lsad{letter-spacing:2.064000px;}
.ls6f{letter-spacing:2.073000px;}
.ls34{letter-spacing:2.100000px;}
.ls9d{letter-spacing:2.112000px;}
.ls57{letter-spacing:2.160000px;}
.ls27{letter-spacing:2.220000px;}
.lsa9{letter-spacing:2.256000px;}
.ls4c{letter-spacing:2.280000px;}
.ls8d{letter-spacing:2.304000px;}
.ls2f{letter-spacing:2.340000px;}
.ls9f{letter-spacing:2.352000px;}
.ls21{letter-spacing:2.400000px;}
.ls20{letter-spacing:2.460000px;}
.lsab{letter-spacing:2.496000px;}
.ls40{letter-spacing:2.520000px;}
.ls80{letter-spacing:2.580000px;}
.ls29{letter-spacing:2.640000px;}
.ls7{letter-spacing:2.700000px;}
.ls7a{letter-spacing:2.700600px;}
.lsa0{letter-spacing:2.736000px;}
.ls47{letter-spacing:2.760000px;}
.ls64{letter-spacing:2.784000px;}
.ls41{letter-spacing:2.820000px;}
.lsb8{letter-spacing:2.832000px;}
.ls73{letter-spacing:2.880000px;}
.ls4b{letter-spacing:2.940000px;}
.lsb3{letter-spacing:2.976000px;}
.ls7e{letter-spacing:3.000000px;}
.ls8c{letter-spacing:3.024000px;}
.ls9{letter-spacing:3.060000px;}
.ls1a{letter-spacing:3.120000px;}
.ls6e{letter-spacing:3.180000px;}
.ls79{letter-spacing:3.300000px;}
.ls6b{letter-spacing:3.358080px;}
.ls46{letter-spacing:3.360000px;}
.ls7c{letter-spacing:3.420000px;}
.ls72{letter-spacing:3.480000px;}
.ls30{letter-spacing:3.540000px;}
.ls3c{letter-spacing:3.600000px;}
.ls23{letter-spacing:3.720000px;}
.ls83{letter-spacing:3.780000px;}
.ls2c{letter-spacing:3.840000px;}
.lsae{letter-spacing:3.888000px;}
.ls25{letter-spacing:3.900000px;}
.lsa4{letter-spacing:3.936000px;}
.ls44{letter-spacing:4.020000px;}
.ls3b{letter-spacing:4.080000px;}
.ls3a{letter-spacing:4.200000px;}
.ls86{letter-spacing:4.260000px;}
.ls3e{letter-spacing:4.380000px;}
.lsba{letter-spacing:4.440000px;}
.lsa8{letter-spacing:4.464000px;}
.ls7b{letter-spacing:4.500000px;}
.ls3d{letter-spacing:4.620000px;}
.lsaa{letter-spacing:4.992000px;}
.ls84{letter-spacing:5.040000px;}
.ls97{letter-spacing:5.088000px;}
.lsbc{letter-spacing:5.160000px;}
.ls82{letter-spacing:5.220000px;}
.ls7d{letter-spacing:5.340000px;}
.ls5e{letter-spacing:5.580000px;}
.ls5f{letter-spacing:5.640000px;}
.lsaf{letter-spacing:5.664000px;}
.lsac{letter-spacing:5.712000px;}
.ls69{letter-spacing:5.743800px;}
.ls6a{letter-spacing:5.760000px;}
.ls75{letter-spacing:5.856000px;}
.lsbd{letter-spacing:5.880000px;}
.lsb9{letter-spacing:6.048000px;}
.ls71{letter-spacing:6.300000px;}
.ls85{letter-spacing:6.420000px;}
.ls4a{letter-spacing:6.540000px;}
.lsbb{letter-spacing:7.080000px;}
.ls59{letter-spacing:433.278696px;}
.ls5a{letter-spacing:571.152000px;}
.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;}
}
.ws9f{word-spacing:-17.640000px;}
.ws70{word-spacing:-17.134200px;}
.ws71{word-spacing:-17.100000px;}
.wsa0{word-spacing:-16.860000px;}
.ws5b{word-spacing:-16.800000px;}
.ws3{word-spacing:-16.680000px;}
.ws2{word-spacing:-16.620000px;}
.ws4b{word-spacing:-16.560000px;}
.ws19{word-spacing:-16.380000px;}
.ws18{word-spacing:-15.600000px;}
.ws7f{word-spacing:-15.540000px;}
.ws99{word-spacing:-15.480000px;}
.ws1a{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.180000px;}
.ws4{word-spacing:-15.000000px;}
.ws98{word-spacing:-14.700000px;}
.wsad{word-spacing:-14.640000px;}
.ws85{word-spacing:-14.491650px;}
.ws74{word-spacing:-14.386800px;}
.wsa9{word-spacing:-14.304000px;}
.ws69{word-spacing:-14.193000px;}
.wsed{word-spacing:-14.112000px;}
.wsd3{word-spacing:-13.776000px;}
.wsd8{word-spacing:-13.680000px;}
.wsaf{word-spacing:-13.440000px;}
.ws6{word-spacing:-13.344000px;}
.wsab{word-spacing:-13.296000px;}
.wsb2{word-spacing:-13.200000px;}
.wsae{word-spacing:-13.152000px;}
.wsda{word-spacing:-13.104000px;}
.wsd6{word-spacing:-13.056000px;}
.ws40{word-spacing:-13.017150px;}
.wsb3{word-spacing:-12.768000px;}
.wseb{word-spacing:-12.720000px;}
.wsd4{word-spacing:-12.672000px;}
.ws5{word-spacing:-12.510000px;}
.wsaa{word-spacing:-12.480000px;}
.wsac{word-spacing:-12.432000px;}
.wsd9{word-spacing:-12.192000px;}
.wsd7{word-spacing:-12.144000px;}
.ws80{word-spacing:-12.103080px;}
.ws60{word-spacing:-12.000000px;}
.wsec{word-spacing:-11.952000px;}
.wsb1{word-spacing:-11.760000px;}
.wsd5{word-spacing:-11.568000px;}
.ws73{word-spacing:-11.491200px;}
.ws72{word-spacing:-11.457000px;}
.ws75{word-spacing:-11.221800px;}
.ws97{word-spacing:-10.354080px;}
.ws1{word-spacing:-10.210662px;}
.ws4a{word-spacing:-9.444600px;}
.wsb0{word-spacing:-9.360000px;}
.ws8b{word-spacing:-9.304680px;}
.ws5c{word-spacing:-9.094800px;}
.ws5d{word-spacing:-8.884920px;}
.ws5e{word-spacing:-8.849940px;}
.ws76{word-spacing:-8.823900px;}
.ws49{word-spacing:-8.745000px;}
.ws41{word-spacing:-8.678100px;}
.ws62{word-spacing:-6.996000px;}
.ws59{word-spacing:-6.540000px;}
.ws91{word-spacing:-6.360000px;}
.ws87{word-spacing:-5.760000px;}
.ws66{word-spacing:-5.640000px;}
.ws63{word-spacing:-5.580000px;}
.wsa1{word-spacing:-5.220000px;}
.wsf1{word-spacing:-5.160000px;}
.ws53{word-spacing:-4.620000px;}
.ws9c{word-spacing:-4.500000px;}
.wsef{word-spacing:-4.440000px;}
.ws54{word-spacing:-4.380000px;}
.wsa6{word-spacing:-4.260000px;}
.ws4d{word-spacing:-4.200000px;}
.ws4f{word-spacing:-4.140000px;}
.ws90{word-spacing:-4.080000px;}
.ws57{word-spacing:-4.020000px;}
.wsc7{word-spacing:-3.936000px;}
.ws33{word-spacing:-3.900000px;}
.wse2{word-spacing:-3.888000px;}
.ws3b{word-spacing:-3.840000px;}
.wsa4{word-spacing:-3.780000px;}
.ws2f{word-spacing:-3.720000px;}
.ws52{word-spacing:-3.600000px;}
.ws3e{word-spacing:-3.540000px;}
.ws92{word-spacing:-3.480000px;}
.wsf0{word-spacing:-3.420000px;}
.ws58{word-spacing:-3.360000px;}
.ws7e{word-spacing:-3.340953px;}
.ws9a{word-spacing:-3.300000px;}
.ws8f{word-spacing:-3.180000px;}
.ws25{word-spacing:-3.120000px;}
.ws12{word-spacing:-3.060000px;}
.wsbb{word-spacing:-3.024000px;}
.ws9e{word-spacing:-3.000000px;}
.wse7{word-spacing:-2.976000px;}
.ws5a{word-spacing:-2.940000px;}
.ws8{word-spacing:-2.886000px;}
.ws56{word-spacing:-2.880000px;}
.ws93{word-spacing:-2.820000px;}
.wscb{word-spacing:-2.784000px;}
.ws3a{word-spacing:-2.760000px;}
.wsd2{word-spacing:-2.736000px;}
.wsd{word-spacing:-2.700000px;}
.ws39{word-spacing:-2.640000px;}
.ws9b{word-spacing:-2.580000px;}
.ws50{word-spacing:-2.520000px;}
.wse0{word-spacing:-2.496000px;}
.ws2d{word-spacing:-2.460000px;}
.ws2e{word-spacing:-2.400000px;}
.wsd0{word-spacing:-2.352000px;}
.ws3d{word-spacing:-2.340000px;}
.wsbc{word-spacing:-2.304000px;}
.ws65{word-spacing:-2.280000px;}
.wsdc{word-spacing:-2.256000px;}
.ws37{word-spacing:-2.220000px;}
.ws67{word-spacing:-2.160000px;}
.wsce{word-spacing:-2.112000px;}
.ws32{word-spacing:-2.100000px;}
.wse1{word-spacing:-2.064000px;}
.ws4e{word-spacing:-2.040000px;}
.wscd{word-spacing:-2.016000px;}
.ws23{word-spacing:-1.980000px;}
.wsb4{word-spacing:-1.968000px;}
.ws16{word-spacing:-1.920000px;}
.wse6{word-spacing:-1.872000px;}
.ws1c{word-spacing:-1.860000px;}
.wsbd{word-spacing:-1.824000px;}
.ws24{word-spacing:-1.800000px;}
.wsb5{word-spacing:-1.776000px;}
.ws55{word-spacing:-1.740000px;}
.ws95{word-spacing:-1.728000px;}
.ws86{word-spacing:-1.680000px;}
.wsdb{word-spacing:-1.632000px;}
.ws26{word-spacing:-1.620000px;}
.wsc1{word-spacing:-1.584000px;}
.ws13{word-spacing:-1.560000px;}
.wsea{word-spacing:-1.536000px;}
.ws38{word-spacing:-1.500000px;}
.ws1e{word-spacing:-1.440000px;}
.wse9{word-spacing:-1.392000px;}
.ws2a{word-spacing:-1.380000px;}
.wsbf{word-spacing:-1.344000px;}
.ws29{word-spacing:-1.320000px;}
.ws96{word-spacing:-1.296000px;}
.ws30{word-spacing:-1.260000px;}
.wsb6{word-spacing:-1.248000px;}
.ws2c{word-spacing:-1.200000px;}
.wsc6{word-spacing:-1.152000px;}
.ws22{word-spacing:-1.140000px;}
.wse5{word-spacing:-1.104000px;}
.ws34{word-spacing:-1.080000px;}
.wsdf{word-spacing:-1.056000px;}
.ws36{word-spacing:-1.020000px;}
.wsb7{word-spacing:-1.008000px;}
.wsa{word-spacing:-0.960000px;}
.wsf{word-spacing:-0.900000px;}
.wsca{word-spacing:-0.864000px;}
.ws15{word-spacing:-0.840000px;}
.wsba{word-spacing:-0.816000px;}
.ws14{word-spacing:-0.780000px;}
.wsb9{word-spacing:-0.768000px;}
.wse{word-spacing:-0.720000px;}
.wsd1{word-spacing:-0.672000px;}
.ws28{word-spacing:-0.660000px;}
.wsc8{word-spacing:-0.624000px;}
.ws27{word-spacing:-0.600000px;}
.wsc4{word-spacing:-0.576000px;}
.ws10{word-spacing:-0.540000px;}
.wsc2{word-spacing:-0.528000px;}
.ws8a{word-spacing:-0.521699px;}
.ws9{word-spacing:-0.480000px;}
.wsbe{word-spacing:-0.432000px;}
.ws17{word-spacing:-0.420000px;}
.wscf{word-spacing:-0.384000px;}
.ws21{word-spacing:-0.360000px;}
.ws44{word-spacing:-0.336000px;}
.ws47{word-spacing:-0.325601px;}
.ws45{word-spacing:-0.312412px;}
.wsc{word-spacing:-0.300000px;}
.wscc{word-spacing:-0.288000px;}
.ws46{word-spacing:-0.260343px;}
.wsb{word-spacing:-0.240000px;}
.wsc9{word-spacing:-0.192000px;}
.ws35{word-spacing:-0.180000px;}
.wsc5{word-spacing:-0.144000px;}
.ws3c{word-spacing:-0.120000px;}
.wsc3{word-spacing:-0.096000px;}
.ws83{word-spacing:-0.069840px;}
.ws6f{word-spacing:-0.068400px;}
.ws11{word-spacing:-0.060000px;}
.ws81{word-spacing:-0.052380px;}
.ws3f{word-spacing:-0.052069px;}
.wsc0{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.wsb8{word-spacing:0.048000px;}
.ws4c{word-spacing:0.060000px;}
.wsde{word-spacing:0.096000px;}
.ws7d{word-spacing:0.102600px;}
.ws2b{word-spacing:0.120000px;}
.wse8{word-spacing:0.144000px;}
.ws31{word-spacing:0.180000px;}
.ws20{word-spacing:0.240000px;}
.ws51{word-spacing:0.300000px;}
.ws88{word-spacing:0.360000px;}
.ws68{word-spacing:0.420000px;}
.wsdd{word-spacing:0.432000px;}
.wsa5{word-spacing:0.540000px;}
.wsa3{word-spacing:0.600000px;}
.ws7b{word-spacing:1.152000px;}
.ws84{word-spacing:1.159332px;}
.ws8e{word-spacing:1.740000px;}
.wsa2{word-spacing:2.160000px;}
.ws89{word-spacing:2.208000px;}
.ws48{word-spacing:2.280000px;}
.ws64{word-spacing:2.400000px;}
.wse3{word-spacing:2.448000px;}
.ws9d{word-spacing:2.580000px;}
.wse4{word-spacing:2.640000px;}
.ws7c{word-spacing:2.832000px;}
.wsee{word-spacing:3.648000px;}
.wsf2{word-spacing:3.840000px;}
.ws43{word-spacing:3.936000px;}
.ws94{word-spacing:3.984000px;}
.ws1d{word-spacing:4.920000px;}
.ws1f{word-spacing:4.980000px;}
.wsa8{word-spacing:5.460000px;}
.wsa7{word-spacing:5.520000px;}
.ws78{word-spacing:24.353964px;}
.ws8c{word-spacing:24.600336px;}
.ws77{word-spacing:39.531072px;}
.ws0{word-spacing:49.322028px;}
.ws6c{word-spacing:51.889608px;}
.ws6b{word-spacing:53.649540px;}
.ws6d{word-spacing:54.112524px;}
.ws6e{word-spacing:54.130402px;}
.ws8d{word-spacing:55.490400px;}
.ws79{word-spacing:57.814193px;}
.ws6a{word-spacing:63.414324px;}
.ws61{word-spacing:77.472000px;}
.ws42{word-spacing:115.637663px;}
.ws7a{word-spacing:134.370349px;}
.ws5f{word-spacing:191.088000px;}
.ws82{word-spacing:498.114487px;}
._c{margin-left:-2898.096000px;}
._2f{margin-left:-2874.288000px;}
._31{margin-left:-7.740000px;}
._b{margin-left:-6.615000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-4.260000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.020000px;}
._9{width:1.320000px;}
._8{width:2.850000px;}
._6{width:4.200000px;}
._4{width:5.400000px;}
._5{width:6.600000px;}
._7{width:7.620000px;}
._a{width:8.700000px;}
._30{width:10.140000px;}
._32{width:11.460000px;}
._56{width:66.087264px;}
._59{width:69.859800px;}
._55{width:73.181268px;}
._45{width:74.400000px;}
._44{width:78.912000px;}
._57{width:86.333664px;}
._46{width:89.559000px;}
._58{width:94.253400px;}
._4e{width:119.190000px;}
._4d{width:137.345448px;}
._41{width:149.232000px;}
._52{width:158.112000px;}
._3c{width:161.664000px;}
._3b{width:169.536000px;}
._47{width:171.024000px;}
._3d{width:173.664000px;}
._37{width:181.536000px;}
._38{width:185.664000px;}
._4c{width:192.864000px;}
._49{width:194.112000px;}
._40{width:195.120000px;}
._28{width:196.464000px;}
._21{width:197.808000px;}
._1a{width:200.448000px;}
._e{width:204.816000px;}
._f{width:207.120000px;}
._34{width:208.464000px;}
._35{width:215.136000px;}
._42{width:225.264000px;}
._3a{width:232.224000px;}
._10{width:234.048000px;}
._50{width:236.487168px;}
._29{width:237.696000px;}
._54{width:239.784672px;}
._39{width:249.264000px;}
._3e{width:255.792000px;}
._36{width:257.856000px;}
._17{width:262.320000px;}
._1e{width:263.616000px;}
._14{width:274.320000px;}
._26{width:284.400000px;}
._33{width:286.224000px;}
._2c{width:287.472000px;}
._13{width:291.504000px;}
._1d{width:292.800000px;}
._2a{width:297.792000px;}
._1f{width:301.488000px;}
._4b{width:305.232000px;}
._3f{width:309.156000px;}
._53{width:310.224000px;}
._22{width:316.512000px;}
._24{width:319.536000px;}
._4f{width:322.224000px;}
._4a{width:326.208000px;}
._d{width:328.602343px;}
._18{width:334.752000px;}
._11{width:336.096000px;}
._15{width:344.112000px;}
._51{width:351.126000px;}
._1b{width:353.808000px;}
._43{width:358.272000px;}
._20{width:360.624000px;}
._2d{width:361.776000px;}
._25{width:365.952000px;}
._27{width:373.056000px;}
._23{width:375.312000px;}
._2b{width:381.936000px;}
._16{width:392.160000px;}
._19{width:393.936000px;}
._1c{width:400.656000px;}
._2e{width:421.536000px;}
._48{width:447.552000px;}
._12{width:669.984000px;}
.fc3{color:rgb(235,97,0);}
.fc2{color:rgb(5,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:22.737000px;}
.fs21{font-size:25.704600px;}
.fs5{font-size:26.235000px;}
.fs14{font-size:27.984000px;}
.fs1d{font-size:28.773600px;}
.fs20{font-size:33.761400px;}
.fs1c{font-size:34.200000px;}
.fsd{font-size:34.712400px;}
.fs29{font-size:34.920000px;}
.fs13{font-size:34.980000px;}
.fs24{font-size:35.295600px;}
.fs25{font-size:35.373000px;}
.fs4{font-size:36.729000px;}
.fs8{font-size:39.000000px;}
.fs18{font-size:39.900000px;}
.fs2d{font-size:40.902000px;}
.fs0{font-size:42.000000px;}
.fs1f{font-size:44.887200px;}
.fs6{font-size:45.000000px;}
.fs1a{font-size:45.828000px;}
.fs1b{font-size:45.964800px;}
.fsc{font-size:46.514400px;}
.fsa{font-size:48.000000px;}
.fs2c{font-size:49.992000px;}
.fsb{font-size:52.068600px;}
.fs27{font-size:52.380000px;}
.fs15{font-size:56.772000px;}
.fs16{font-size:56.908800px;}
.fs1e{font-size:57.547200px;}
.fse{font-size:57.622800px;}
.fs22{font-size:57.624000px;}
.fsf{font-size:57.761400px;}
.fs10{font-size:57.853800px;}
.fs2b{font-size:57.966600px;}
.fs9{font-size:60.000000px;}
.fs26{font-size:60.744600px;}
.fs3{font-size:63.000000px;}
.fs11{font-size:65.804400px;}
.fs17{font-size:68.400000px;}
.fs19{font-size:68.536800px;}
.fs2a{font-size:69.840000px;}
.fs23{font-size:76.730400px;}
.fs1{font-size:78.000000px;}
.fs28{font-size:81.712800px;}
.fs12{font-size:92.335200px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y263{bottom:80.263500px;}
.y161{bottom:82.999950px;}
.y88{bottom:83.312250px;}
.y19c{bottom:83.614350px;}
.y1d8{bottom:83.637600px;}
.y64{bottom:83.770350px;}
.y1e3{bottom:83.772600px;}
.yb1{bottom:83.912100px;}
.y107{bottom:84.401100px;}
.y2b{bottom:88.026750px;}
.y221{bottom:89.263500px;}
.y100{bottom:93.253350px;}
.y261{bottom:95.263500px;}
.y160{bottom:98.743950px;}
.y19b{bottom:99.358350px;}
.y106{bottom:100.145100px;}
.y1e2{bottom:101.367600px;}
.y1d7{bottom:101.637600px;}
.y63{bottom:101.770350px;}
.yb0{bottom:101.912100px;}
.y2a{bottom:103.023000px;}
.y220{bottom:104.263500px;}
.y87{bottom:108.824250px;}
.yff{bottom:109.509300px;}
.y260{bottom:110.263500px;}
.y15f{bottom:114.487950px;}
.y19a{bottom:115.102350px;}
.y105{bottom:115.889100px;}
.y21f{bottom:119.263500px;}
.y1d6{bottom:119.637600px;}
.y62{bottom:119.770350px;}
.y1aa{bottom:119.828400px;}
.yaf{bottom:119.912100px;}
.y86{bottom:125.072250px;}
.y25f{bottom:125.263500px;}
.yfe{bottom:125.757300px;}
.y15e{bottom:130.231950px;}
.y199{bottom:130.846350px;}
.y104{bottom:131.633100px;}
.y21e{bottom:134.263500px;}
.y66{bottom:137.365350px;}
.y1e1{bottom:137.367600px;}
.y1d5{bottom:137.637600px;}
.y61{bottom:137.770350px;}
.yae{bottom:137.912100px;}
.y25e{bottom:140.263500px;}
.y85{bottom:141.320250px;}
.yfd{bottom:142.009200px;}
.y15d{bottom:145.975950px;}
.y198{bottom:146.590350px;}
.y21d{bottom:149.263500px;}
.y25d{bottom:155.263500px;}
.y1d4{bottom:155.637600px;}
.y60{bottom:155.770350px;}
.yad{bottom:155.912100px;}
.y11f{bottom:157.521600px;}
.y84{bottom:157.568250px;}
.yfc{bottom:158.261100px;}
.y27{bottom:160.376700px;}
.y197{bottom:162.334350px;}
.y21c{bottom:164.263500px;}
.y25c{bottom:170.263500px;}
.y65{bottom:173.230350px;}
.y5f{bottom:173.770350px;}
.y1e0{bottom:173.772600px;}
.y83{bottom:173.816250px;}
.yac{bottom:173.912100px;}
.y123{bottom:174.477300px;}
.yfb{bottom:174.513000px;}
.y17b{bottom:174.889072px;}
.y196{bottom:178.078350px;}
.y26{bottom:178.376700px;}
.y173{bottom:178.555935px;}
.y21b{bottom:179.263500px;}
.y140{bottom:179.947380px;}
.y25b{bottom:185.263500px;}
.y82{bottom:190.064250px;}
.yfa{bottom:190.761000px;}
.y1d3{bottom:191.232600px;}
.y5e{bottom:191.770350px;}
.y1df{bottom:191.772600px;}
.yab{bottom:191.912100px;}
.y1bd{bottom:191.920350px;}
.y17a{bottom:192.003711px;}
.y21a{bottom:194.263500px;}
.y25{bottom:196.376700px;}
.y124{bottom:198.877050px;}
.y25a{bottom:200.263500px;}
.y1a8{bottom:200.283000px;}
.y13f{bottom:203.904268px;}
.y1a1{bottom:204.109110px;}
.y81{bottom:206.312250px;}
.y174{bottom:208.538100px;}
.y179{bottom:208.944450px;}
.y219{bottom:209.263500px;}
.y5d{bottom:209.770350px;}
.y1de{bottom:209.772600px;}
.yaa{bottom:209.912100px;}
.y1bc{bottom:209.920350px;}
.y141{bottom:210.310420px;}
.y172{bottom:210.861300px;}
.y24{bottom:214.376700px;}
.y13e{bottom:215.110621px;}
.y259{bottom:215.263500px;}
.y16f{bottom:215.518650px;}
.yf9{bottom:222.273000px;}
.y1a0{bottom:222.293700px;}
.y80{bottom:222.560250px;}
.y170{bottom:223.262160px;}
.y16e{bottom:223.960560px;}
.y218{bottom:224.263500px;}
.y139{bottom:225.012775px;}
.y14b{bottom:227.417583px;}
.y122{bottom:227.695950px;}
.y5c{bottom:227.770350px;}
.y1dd{bottom:227.772600px;}
.ya9{bottom:227.912100px;}
.y1bb{bottom:227.920350px;}
.y258{bottom:230.263500px;}
.y23{bottom:232.376700px;}
.y1a2{bottom:235.927800px;}
.y13a{bottom:236.722091px;}
.y142{bottom:237.857100px;}
.y7f{bottom:238.808250px;}
.y217{bottom:239.263500px;}
.y149{bottom:239.388000px;}
.y144{bottom:239.865023px;}
.y257{bottom:245.263500px;}
.y5b{bottom:245.770350px;}
.y1d2{bottom:245.772600px;}
.ya8{bottom:245.912100px;}
.y1ba{bottom:245.920350px;}
.y13c{bottom:246.855900px;}
.y137{bottom:248.440230px;}
.y171{bottom:249.972900px;}
.y1af{bottom:250.258200px;}
.y22{bottom:250.376700px;}
.y121{bottom:250.941300px;}
.y13d{bottom:253.185750px;}
.y216{bottom:254.263500px;}
.y16c{bottom:256.605600px;}
.yf8{bottom:257.168100px;}
.y256{bottom:260.263500px;}
.y1ae{bottom:262.375418px;}
.y14a{bottom:262.774950px;}
.y1dc{bottom:263.367600px;}
.y5a{bottom:263.770350px;}
.y1d1{bottom:263.772600px;}
.ya7{bottom:263.912100px;}
.y1b9{bottom:263.920350px;}
.y13b{bottom:264.376193px;}
.y21{bottom:268.376700px;}
.y143{bottom:268.930950px;}
.y215{bottom:269.263500px;}
.y148{bottom:269.380969px;}
.y1a9{bottom:269.697000px;}
.y7e{bottom:270.320250px;}
.y1a3{bottom:274.936200px;}
.y255{bottom:275.263500px;}
.y1ad{bottom:275.361803px;}
.yf7{bottom:276.668100px;}
.y132{bottom:280.020968px;}
.y59{bottom:281.770350px;}
.y1d0{bottom:281.772600px;}
.ya6{bottom:281.912100px;}
.y1b8{bottom:281.920350px;}
.y214{bottom:284.263500px;}
.y20{bottom:286.376700px;}
.y138{bottom:287.512459px;}
.y147{bottom:288.528832px;}
.y1ac{bottom:288.542472px;}
.y16d{bottom:289.374450px;}
.y254{bottom:290.263500px;}
.y12a{bottom:293.158074px;}
.y146{bottom:299.064569px;}
.y213{bottom:299.263500px;}
.y58{bottom:299.770350px;}
.y1cf{bottom:299.772600px;}
.ya5{bottom:299.912100px;}
.y1b7{bottom:299.920350px;}
.y1ab{bottom:301.385700px;}
.y12d{bottom:303.155250px;}
.y1f{bottom:304.376700px;}
.y7d{bottom:305.215350px;}
.y253{bottom:305.263500px;}
.y120{bottom:308.503050px;}
.y1a4{bottom:313.945650px;}
.y212{bottom:314.263500px;}
.y19d{bottom:315.460050px;}
.y57{bottom:317.770350px;}
.y1ce{bottom:317.772600px;}
.ya4{bottom:317.912100px;}
.y1b6{bottom:317.920350px;}
.y12b{bottom:319.025540px;}
.y252{bottom:320.263500px;}
.y145{bottom:320.568413px;}
.yf6{bottom:321.857100px;}
.y1e{bottom:322.376700px;}
.y7c{bottom:324.715350px;}
.y211{bottom:329.263500px;}
.y14c{bottom:329.342452px;}
.y131{bottom:334.711500px;}
.y251{bottom:335.263500px;}
.y56{bottom:335.770350px;}
.y1cd{bottom:335.772600px;}
.ya3{bottom:335.912100px;}
.y1b5{bottom:335.920350px;}
.y169{bottom:336.401910px;}
.yf5{bottom:338.367150px;}
.y1d{bottom:340.376700px;}
.y168{bottom:341.229600px;}
.y136{bottom:341.682381px;}
.y210{bottom:344.263500px;}
.y14d{bottom:345.322535px;}
.y16a{bottom:349.028700px;}
.y135{bottom:349.835665px;}
.y250{bottom:350.263500px;}
.y167{bottom:350.832600px;}
.y1a5{bottom:352.953900px;}
.y1db{bottom:353.367600px;}
.y55{bottom:353.770350px;}
.y1cc{bottom:353.772600px;}
.ya2{bottom:353.912100px;}
.y1b4{bottom:353.920350px;}
.y29{bottom:358.376700px;}
.y20f{bottom:359.263500px;}
.yf4{bottom:363.879150px;}
.y24f{bottom:365.263500px;}
.y14e{bottom:365.707200px;}
.y69{bottom:369.724200px;}
.y16b{bottom:371.663700px;}
.y134{bottom:371.674817px;}
.y54{bottom:371.770350px;}
.y1cb{bottom:371.772600px;}
.ya1{bottom:371.912100px;}
.y1b3{bottom:371.920350px;}
.y20e{bottom:374.263500px;}
.y1c{bottom:375.973950px;}
.y28{bottom:376.376700px;}
.y129{bottom:376.889250px;}
.y177{bottom:377.018730px;}
.y159{bottom:377.049450px;}
.yf3{bottom:380.127150px;}
.y24e{bottom:380.263500px;}
.y133{bottom:384.548887px;}
.y68{bottom:385.468200px;}
.y166{bottom:389.183400px;}
.y20d{bottom:389.263500px;}
.y53{bottom:389.770350px;}
.y1ca{bottom:389.772600px;}
.ya0{bottom:389.912100px;}
.y1b2{bottom:389.920350px;}
.y1a6{bottom:391.962750px;}
.y24d{bottom:395.263500px;}
.yf2{bottom:396.375150px;}
.y178{bottom:399.594510px;}
.y20c{bottom:404.263500px;}
.y1da{bottom:407.367600px;}
.y52{bottom:407.770350px;}
.y1c9{bottom:407.772600px;}
.y12c{bottom:407.891550px;}
.y9f{bottom:407.912100px;}
.y1b1{bottom:407.920350px;}
.y24c{bottom:410.263500px;}
.y14f{bottom:411.090759px;}
.yf1{bottom:412.623150px;}
.y19f{bottom:417.715950px;}
.y20b{bottom:419.263500px;}
.y15b{bottom:420.782905px;}
.y24b{bottom:425.263500px;}
.y51{bottom:425.770350px;}
.y1c8{bottom:425.772600px;}
.yd2{bottom:425.912100px;}
.y9e{bottom:425.920350px;}
.yf0{bottom:428.871150px;}
.y1a7{bottom:430.971150px;}
.y12e{bottom:431.269704px;}
.y20a{bottom:434.263500px;}
.y6c{bottom:437.953800px;}
.y6d{bottom:438.055500px;}
.y24a{bottom:440.263500px;}
.y50{bottom:443.770350px;}
.y1c7{bottom:443.772600px;}
.yd1{bottom:443.912100px;}
.y9d{bottom:443.920350px;}
.y176{bottom:443.960370px;}
.y209{bottom:449.263500px;}
.y130{bottom:449.670600px;}
.y1b{bottom:450.364200px;}
.y19e{bottom:452.937300px;}
.y249{bottom:455.263500px;}
.yef{bottom:460.383150px;}
.y4f{bottom:461.770350px;}
.y1c6{bottom:461.772600px;}
.yd0{bottom:461.912100px;}
.y9c{bottom:461.920350px;}
.y208{bottom:464.263500px;}
.y163{bottom:469.272660px;}
.y248{bottom:470.263500px;}
.y158{bottom:471.990764px;}
.y164{bottom:476.828475px;}
.y1a{bottom:477.709200px;}
.y207{bottom:479.263500px;}
.y4e{bottom:479.770350px;}
.y1c5{bottom:479.772600px;}
.ycf{bottom:479.912100px;}
.y9b{bottom:479.920350px;}
.y247{bottom:485.263500px;}
.y157{bottom:493.362250px;}
.y206{bottom:494.263500px;}
.y150{bottom:494.765250px;}
.y165{bottom:494.882550px;}
.yee{bottom:495.280350px;}
.y19{bottom:495.709200px;}
.y4d{bottom:497.770350px;}
.y1c4{bottom:497.772600px;}
.yce{bottom:497.912100px;}
.y9a{bottom:497.920350px;}
.y246{bottom:500.263500px;}
.y151{bottom:502.768527px;}
.y175{bottom:503.376750px;}
.y7b{bottom:503.560950px;}
.y75{bottom:504.464850px;}
.y155{bottom:508.468767px;}
.y205{bottom:509.263500px;}
.y18{bottom:513.709200px;}
.y162{bottom:514.607550px;}
.yed{bottom:514.780350px;}
.y245{bottom:515.263500px;}
.y1d9{bottom:515.367600px;}
.y4c{bottom:515.770350px;}
.y193{bottom:515.772600px;}
.ycd{bottom:515.912100px;}
.y99{bottom:515.920350px;}
.y154{bottom:522.648774px;}
.y153{bottom:523.892944px;}
.y204{bottom:524.263500px;}
.y244{bottom:530.263500px;}
.y156{bottom:530.563812px;}
.y17{bottom:531.709200px;}
.y4b{bottom:533.770350px;}
.y192{bottom:533.772600px;}
.ycc{bottom:533.912100px;}
.y98{bottom:533.920350px;}
.y152{bottom:534.296322px;}
.y128{bottom:535.877274px;}
.y203{bottom:539.263500px;}
.y243{bottom:545.263500px;}
.y76{bottom:546.308700px;}
.y16{bottom:549.709200px;}
.y127{bottom:551.666250px;}
.y4a{bottom:551.770350px;}
.y191{bottom:551.772600px;}
.ycb{bottom:551.912100px;}
.y97{bottom:551.920350px;}
.y202{bottom:554.263500px;}
.y242{bottom:560.263500px;}
.y79{bottom:564.269278px;}
.y126{bottom:567.454880px;}
.y15{bottom:567.709200px;}
.y201{bottom:569.263500px;}
.y49{bottom:569.770350px;}
.y190{bottom:569.772600px;}
.yca{bottom:569.912100px;}
.y96{bottom:569.920350px;}
.y12f{bottom:571.191600px;}
.y241{bottom:575.263500px;}
.y125{bottom:583.237200px;}
.y200{bottom:584.263500px;}
.y14{bottom:585.709200px;}
.y15a{bottom:585.917100px;}
.y48{bottom:587.770350px;}
.y1c3{bottom:587.772600px;}
.yc9{bottom:587.912100px;}
.y95{bottom:587.920350px;}
.y6e{bottom:590.096100px;}
.y240{bottom:590.263500px;}
.y1ff{bottom:599.263500px;}
.y7a{bottom:600.187670px;}
.y13{bottom:603.709200px;}
.y23f{bottom:605.263500px;}
.y18f{bottom:605.367600px;}
.yec{bottom:605.515350px;}
.y47{bottom:605.770350px;}
.y1c2{bottom:605.772600px;}
.yc8{bottom:605.912100px;}
.y94{bottom:605.920350px;}
.y1fe{bottom:614.263500px;}
.y23e{bottom:620.263500px;}
.y12{bottom:621.709200px;}
.yeb{bottom:623.515350px;}
.y46{bottom:623.770350px;}
.y1c1{bottom:623.772600px;}
.yc7{bottom:623.912100px;}
.y93{bottom:623.920350px;}
.y1fd{bottom:629.263500px;}
.y23d{bottom:635.263500px;}
.y11{bottom:639.709200px;}
.y18e{bottom:641.232600px;}
.y45{bottom:641.770350px;}
.y1c0{bottom:641.772600px;}
.yc6{bottom:641.912100px;}
.y92{bottom:641.920350px;}
.y74{bottom:643.776450px;}
.y103{bottom:644.117100px;}
.y1fc{bottom:644.263500px;}
.y23c{bottom:650.263500px;}
.y10{bottom:657.709200px;}
.y1fb{bottom:659.263500px;}
.y44{bottom:659.770350px;}
.y1bf{bottom:659.772600px;}
.y102{bottom:659.861100px;}
.ye6{bottom:659.907600px;}
.yc5{bottom:659.912100px;}
.y91{bottom:659.920350px;}
.y23b{bottom:665.263500px;}
.y78{bottom:671.816702px;}
.y1fa{bottom:674.263500px;}
.yf{bottom:675.709200px;}
.y73{bottom:676.138650px;}
.y43{bottom:677.770350px;}
.y1be{bottom:677.772600px;}
.ye5{bottom:677.907600px;}
.yc4{bottom:677.912100px;}
.y90{bottom:677.920350px;}
.y23a{bottom:680.263500px;}
.y1f9{bottom:689.263500px;}
.y111{bottom:689.797071px;}
.y239{bottom:695.263500px;}
.y42{bottom:695.770350px;}
.y18d{bottom:695.772600px;}
.ye4{bottom:695.907600px;}
.yc3{bottom:695.912100px;}
.y8f{bottom:695.920350px;}
.y1f8{bottom:704.263500px;}
.y72{bottom:705.629850px;}
.y238{bottom:710.263500px;}
.y41{bottom:713.770350px;}
.y18c{bottom:713.772600px;}
.ye3{bottom:713.907600px;}
.yc2{bottom:713.912100px;}
.y8e{bottom:713.920350px;}
.y1f7{bottom:719.263500px;}
.ye{bottom:720.867300px;}
.y117{bottom:722.247450px;}
.y110{bottom:723.406095px;}
.y237{bottom:725.263500px;}
.y40{bottom:731.770350px;}
.y18b{bottom:731.772600px;}
.ye2{bottom:731.907600px;}
.yc1{bottom:731.912100px;}
.y8d{bottom:731.920350px;}
.yd{bottom:733.318050px;}
.y1f6{bottom:734.263500px;}
.y236{bottom:740.263500px;}
.y1f5{bottom:749.263500px;}
.yc{bottom:749.721000px;}
.y3f{bottom:749.770350px;}
.y18a{bottom:749.772600px;}
.ye1{bottom:749.907600px;}
.yc0{bottom:749.912100px;}
.y8c{bottom:749.920350px;}
.y235{bottom:755.263500px;}
.y118{bottom:757.942950px;}
.y6b{bottom:759.524925px;}
.y71{bottom:759.881550px;}
.y10f{bottom:761.273019px;}
.y70{bottom:763.730550px;}
.y1f4{bottom:764.263500px;}
.y3e{bottom:767.770350px;}
.y189{bottom:767.772600px;}
.ye0{bottom:767.907600px;}
.ybf{bottom:767.912100px;}
.y8b{bottom:767.920350px;}
.y234{bottom:770.263500px;}
.yb{bottom:776.733600px;}
.y77{bottom:778.902450px;}
.y1f3{bottom:779.263500px;}
.y116{bottom:779.600850px;}
.y233{bottom:785.263500px;}
.y3d{bottom:785.770350px;}
.y188{bottom:785.772600px;}
.ydf{bottom:785.907600px;}
.ybe{bottom:785.927100px;}
.y1f2{bottom:794.263500px;}
.ya{bottom:795.658950px;}
.y6f{bottom:797.098950px;}
.y10e{bottom:799.168329px;}
.y232{bottom:800.263500px;}
.y119{bottom:800.769216px;}
.y8a{bottom:803.515350px;}
.y9{bottom:803.733600px;}
.y3c{bottom:803.770350px;}
.y187{bottom:803.772600px;}
.yde{bottom:803.907600px;}
.ybd{bottom:803.927100px;}
.y1f1{bottom:809.263500px;}
.y231{bottom:815.263500px;}
.y3b{bottom:821.770350px;}
.y186{bottom:821.772600px;}
.ydd{bottom:821.907600px;}
.ybc{bottom:821.927100px;}
.y8{bottom:822.658950px;}
.y1f0{bottom:824.263500px;}
.y230{bottom:830.263500px;}
.y10d{bottom:837.063639px;}
.y1ef{bottom:839.263500px;}
.y3a{bottom:839.770350px;}
.y185{bottom:839.772600px;}
.ydc{bottom:839.907600px;}
.ybb{bottom:839.927100px;}
.y11a{bottom:842.908062px;}
.y22f{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.y1ee{bottom:854.263500px;}
.y39{bottom:857.770350px;}
.y184{bottom:857.772600px;}
.ydb{bottom:857.907600px;}
.yba{bottom:857.927100px;}
.y22e{bottom:860.263500px;}
.y1ed{bottom:869.263500px;}
.y115{bottom:873.753450px;}
.y10c{bottom:874.930563px;}
.y22d{bottom:875.263500px;}
.y38{bottom:875.770350px;}
.y183{bottom:875.772600px;}
.yda{bottom:875.907600px;}
.yb9{bottom:875.927100px;}
.y1ec{bottom:884.263500px;}
.y11e{bottom:884.597400px;}
.y11b{bottom:884.943795px;}
.y22c{bottom:890.263500px;}
.y37{bottom:893.770350px;}
.y182{bottom:893.772600px;}
.yea{bottom:893.777100px;}
.yd9{bottom:893.907600px;}
.y6{bottom:897.606900px;}
.y1eb{bottom:899.263500px;}
.y22b{bottom:905.263500px;}
.yb8{bottom:911.522100px;}
.y36{bottom:911.770350px;}
.y181{bottom:911.772600px;}
.ye9{bottom:911.777100px;}
.yd8{bottom:911.907600px;}
.y10b{bottom:912.825873px;}
.y1ea{bottom:914.263500px;}
.y22a{bottom:920.263500px;}
.y11c{bottom:928.131600px;}
.y1e9{bottom:929.263500px;}
.y35{bottom:929.770350px;}
.y180{bottom:929.772600px;}
.ye8{bottom:929.777100px;}
.yd7{bottom:929.907600px;}
.y5{bottom:934.036050px;}
.y229{bottom:935.263500px;}
.y6a{bottom:938.710200px;}
.y1e8{bottom:944.263500px;}
.y34{bottom:947.770350px;}
.y17f{bottom:947.772600px;}
.yb7{bottom:947.777100px;}
.yd6{bottom:947.907600px;}
.y228{bottom:950.263500px;}
.y10a{bottom:950.621832px;}
.y1e7{bottom:959.263500px;}
.y227{bottom:965.263500px;}
.y33{bottom:965.770350px;}
.y17e{bottom:965.772600px;}
.yb6{bottom:965.777100px;}
.yd5{bottom:965.907600px;}
.y4{bottom:970.496850px;}
.y1e6{bottom:974.263500px;}
.y226{bottom:980.263500px;}
.y32{bottom:983.770350px;}
.y17d{bottom:983.772600px;}
.yb5{bottom:983.777100px;}
.y114{bottom:985.787100px;}
.y109{bottom:988.417791px;}
.y1e5{bottom:989.263500px;}
.y225{bottom:995.263500px;}
.yd4{bottom:1001.502600px;}
.y31{bottom:1001.770350px;}
.y17c{bottom:1001.772600px;}
.yb4{bottom:1001.777100px;}
.y113{bottom:1002.131400px;}
.y1e4{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y224{bottom:1010.263500px;}
.y11d{bottom:1013.242917px;}
.y1b0{bottom:1019.367600px;}
.y30{bottom:1019.770350px;}
.y195{bottom:1019.772600px;}
.yb3{bottom:1019.777100px;}
.y112{bottom:1022.651250px;}
.y223{bottom:1025.263500px;}
.y108{bottom:1026.213750px;}
.yd3{bottom:1037.367600px;}
.ye7{bottom:1037.372100px;}
.y2f{bottom:1037.770350px;}
.y194{bottom:1037.772600px;}
.yb2{bottom:1037.777100px;}
.y222{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y101{bottom:1132.417350px;}
.y67{bottom:1132.418700px;}
.y15c{bottom:1132.421700px;}
.y262{bottom:1132.423500px;}
.y89{bottom:1132.448250px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h8{height:16.564260px;}
.h26{height:17.420891px;}
.h6{height:19.125417px;}
.h22{height:19.500858px;}
.h25{height:22.881261px;}
.h31{height:23.666484px;}
.h29{height:23.921041px;}
.h2c{height:23.973498px;}
.h2d{height:24.626953px;}
.h2a{height:27.909444px;}
.h37{height:28.399729px;}
.h9{height:28.412109px;}
.h24{height:30.421598px;}
.h2{height:30.597656px;}
.h20{height:31.059211px;}
.h21{height:31.151925px;}
.h13{height:31.524408px;}
.h7{height:32.805176px;}
.h11{height:34.453125px;}
.h2b{height:34.580313px;}
.h34{height:34.711242px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h1a{height:35.288680px;}
.h2f{height:35.499727px;}
.h12{height:38.034485px;}
.h1c{height:38.476336px;}
.h23{height:39.001716px;}
.h1d{height:39.001852px;}
.h14{height:39.052952px;}
.h27{height:39.053766px;}
.h15{height:39.146886px;}
.h16{height:39.209509px;}
.h33{height:40.248294px;}
.h2e{height:41.168704px;}
.h39{height:42.040697px;}
.he{height:43.066406px;}
.hd{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.717434px;}
.ha{height:43.740234px;}
.h35{height:43.800642px;}
.h17{height:44.597904px;}
.h38{height:44.686406px;}
.h1e{height:46.357031px;}
.h1f{height:46.449745px;}
.h32{height:47.332969px;}
.h28{height:52.002830px;}
.h1b{height:53.337715px;}
.h30{height:55.379573px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h19{height:62.578739px;}
.h18{height:86.300509px;}
.h4{height:92.168262px;}
.h36{height:280.083000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:338.032500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7e{left:10.386300px;}
.x7d{left:20.148150px;}
.x61{left:70.582650px;}
.xb{left:76.535400px;}
.x3f{left:82.429981px;}
.x3e{left:89.017050px;}
.x7b{left:91.686750px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x23{left:99.921300px;}
.x60{left:101.484208px;}
.x7c{left:103.421250px;}
.x4{left:106.299150px;}
.x7a{left:108.619500px;}
.xc{left:110.555400px;}
.x82{left:123.307350px;}
.x3{left:125.439150px;}
.x6{left:131.811000px;}
.x35{left:147.017100px;}
.x37{left:171.600735px;}
.x79{left:178.952550px;}
.x25{left:185.781300px;}
.x24{left:186.789300px;}
.x2d{left:188.492400px;}
.x7f{left:190.130400px;}
.x76{left:198.890400px;}
.x5{left:212.876400px;}
.x64{left:214.363515px;}
.x81{left:215.552550px;}
.x14{left:217.912160px;}
.x43{left:220.889817px;}
.x78{left:222.127200px;}
.x77{left:225.535800px;}
.x36{left:228.254850px;}
.x27{left:232.365300px;}
.x16{left:235.188300px;}
.x29{left:238.153650px;}
.x65{left:241.247850px;}
.x44{left:251.468882px;}
.x63{left:256.961550px;}
.x22{left:258.243000px;}
.x6a{left:259.751400px;}
.x69{left:263.596560px;}
.x62{left:267.961350px;}
.x2a{left:277.411488px;}
.x68{left:279.834360px;}
.x15{left:281.384550px;}
.x6e{left:285.243450px;}
.x66{left:289.257750px;}
.x45{left:291.508100px;}
.x67{left:292.868250px;}
.x6f{left:304.099050px;}
.x6d{left:307.068450px;}
.x38{left:309.172979px;}
.x47{left:316.489800px;}
.x6c{left:328.544250px;}
.x13{left:333.627000px;}
.x6b{left:335.706300px;}
.x46{left:337.416115px;}
.x40{left:355.556833px;}
.x48{left:362.500950px;}
.x4a{left:364.515612px;}
.x49{left:368.912831px;}
.x41{left:373.224542px;}
.x19{left:377.651850px;}
.x3a{left:380.622300px;}
.x1c{left:383.298000px;}
.x1a{left:389.674650px;}
.x1b{left:391.044750px;}
.x4b{left:401.362200px;}
.x17{left:402.506850px;}
.x20{left:405.273503px;}
.x18{left:407.242650px;}
.x42{left:414.130940px;}
.x72{left:434.587950px;}
.x71{left:436.799370px;}
.x1f{left:442.484589px;}
.x1e{left:444.677550px;}
.x4c{left:447.427950px;}
.x4d{left:450.187161px;}
.x74{left:453.005700px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x70{left:466.184550px;}
.x73{left:476.314800px;}
.x12{left:478.345350px;}
.x7{left:480.471000px;}
.x85{left:482.603400px;}
.xe{left:491.090400px;}
.x2b{left:494.197950px;}
.x4e{left:497.960929px;}
.x3b{left:499.600227px;}
.x83{left:503.846400px;}
.x52{left:509.028300px;}
.x4f{left:510.775931px;}
.x28{left:512.363850px;}
.x8{left:514.491000px;}
.xf{left:525.276600px;}
.x50{left:526.893227px;}
.x21{left:530.226113px;}
.x53{left:532.233600px;}
.x5e{left:533.247751px;}
.x1d{left:540.483750px;}
.x2c{left:551.653200px;}
.x5d{left:559.420838px;}
.x5c{left:566.883847px;}
.x75{left:569.836200px;}
.x51{left:574.710791px;}
.x5b{left:609.393215px;}
.x39{left:615.892800px;}
.x2e{left:642.155850px;}
.x2f{left:646.257456px;}
.x3c{left:652.143600px;}
.x54{left:656.038960px;}
.x5a{left:659.873638px;}
.x11{left:663.492300px;}
.x59{left:690.049771px;}
.x2{left:693.365400px;}
.x58{left:704.432705px;}
.x80{left:721.717650px;}
.x5f{left:724.899000px;}
.x10{left:728.391600px;}
.x55{left:731.422356px;}
.x57{left:734.061971px;}
.x3d{left:740.863350px;}
.x84{left:743.878350px;}
.x26{left:749.637300px;}
.x33{left:753.270300px;}
.x31{left:760.727400px;}
.x32{left:763.428900px;}
.x34{left:765.121500px;}
.x30{left:772.924650px;}
.x56{left:776.566500px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.vb{vertical-align:-18.005333pt;}
.v3{vertical-align:-16.721600pt;}
.v7{vertical-align:-10.450667pt;}
.v8{vertical-align:-8.317867pt;}
.v4{vertical-align:-1.079467pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.440000pt;}
.v9{vertical-align:3.545247pt;}
.vc{vertical-align:8.079467pt;}
.va{vertical-align:9.474908pt;}
.vd{vertical-align:10.397333pt;}
.vf{vertical-align:20.098133pt;}
.v6{vertical-align:25.093333pt;}
.v1{vertical-align:27.005867pt;}
.v5{vertical-align:41.858667pt;}
.lsa5{letter-spacing:-2.346667pt;}
.ls10{letter-spacing:-0.693333pt;}
.lsb6{letter-spacing:-0.384000pt;}
.ls63{letter-spacing:-0.373333pt;}
.ls6c{letter-spacing:-0.320000pt;}
.ls48{letter-spacing:-0.266667pt;}
.ls31{letter-spacing:-0.213333pt;}
.ls33{letter-spacing:-0.160000pt;}
.ls32{letter-spacing:-0.106667pt;}
.ls66{letter-spacing:-0.091200pt;}
.lsb7{letter-spacing:-0.085333pt;}
.ls11{letter-spacing:-0.053333pt;}
.lsa2{letter-spacing:-0.042667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.001067pt;}
.ls5c{letter-spacing:0.003285pt;}
.ls2{letter-spacing:0.003403pt;}
.ls1{letter-spacing:0.003680pt;}
.ls53{letter-spacing:0.004373pt;}
.ls4e{letter-spacing:0.004907pt;}
.ls0{letter-spacing:0.005045pt;}
.ls5b{letter-spacing:0.016533pt;}
.ls91{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.061333pt;}
.ls93{letter-spacing:0.085333pt;}
.ls65{letter-spacing:0.091296pt;}
.ls62{letter-spacing:0.093280pt;}
.ls2e{letter-spacing:0.106667pt;}
.ls58{letter-spacing:0.119467pt;}
.ls61{letter-spacing:0.124373pt;}
.ls95{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls98{letter-spacing:0.170667pt;}
.ls56{letter-spacing:0.182933pt;}
.ls6{letter-spacing:0.213333pt;}
.ls38{letter-spacing:0.231416pt;}
.ls9b{letter-spacing:0.256000pt;}
.ls4d{letter-spacing:0.259200pt;}
.ls12{letter-spacing:0.266667pt;}
.ls37{letter-spacing:0.277699pt;}
.ls39{letter-spacing:0.289423pt;}
.ls35{letter-spacing:0.298667pt;}
.ls60{letter-spacing:0.310933pt;}
.ls43{letter-spacing:0.317440pt;}
.ls16{letter-spacing:0.320000pt;}
.lsa7{letter-spacing:0.341333pt;}
.ls36{letter-spacing:0.370266pt;}
.lsd{letter-spacing:0.373333pt;}
.ls8f{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls6d{letter-spacing:0.463733pt;}
.lsa3{letter-spacing:0.469333pt;}
.ls42{letter-spacing:0.478400pt;}
.ls2a{letter-spacing:0.480000pt;}
.ls78{letter-spacing:0.497493pt;}
.ls94{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.533333pt;}
.ls54{letter-spacing:0.533867pt;}
.ls55{letter-spacing:0.540267pt;}
.ls50{letter-spacing:0.546773pt;}
.ls9a{letter-spacing:0.554667pt;}
.ls1c{letter-spacing:0.586667pt;}
.lsa6{letter-spacing:0.597333pt;}
.ls49{letter-spacing:0.621867pt;}
.ls8{letter-spacing:0.640000pt;}
.ls52{letter-spacing:0.678507pt;}
.ls8a{letter-spacing:0.682667pt;}
.lsb{letter-spacing:0.693333pt;}
.ls8b{letter-spacing:0.725333pt;}
.ls13{letter-spacing:0.746667pt;}
.ls99{letter-spacing:0.768000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls22{letter-spacing:0.853333pt;}
.ls74{letter-spacing:0.877333pt;}
.ls89{letter-spacing:0.896000pt;}
.ls4f{letter-spacing:0.899200pt;}
.ls26{letter-spacing:0.906667pt;}
.lsb4{letter-spacing:0.938667pt;}
.ls2d{letter-spacing:0.960000pt;}
.lsb1{letter-spacing:0.981333pt;}
.ls17{letter-spacing:1.013333pt;}
.ls96{letter-spacing:1.024000pt;}
.ls45{letter-spacing:1.036267pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls9e{letter-spacing:1.109333pt;}
.ls24{letter-spacing:1.120000pt;}
.ls70{letter-spacing:1.121173pt;}
.ls77{letter-spacing:1.152000pt;}
.ls51{letter-spacing:1.163733pt;}
.ls1d{letter-spacing:1.173333pt;}
.ls90{letter-spacing:1.194667pt;}
.ls1e{letter-spacing:1.226667pt;}
.lsb5{letter-spacing:1.237333pt;}
.ls15{letter-spacing:1.280000pt;}
.ls28{letter-spacing:1.333333pt;}
.lsa1{letter-spacing:1.365333pt;}
.lsa{letter-spacing:1.386667pt;}
.ls92{letter-spacing:1.408000pt;}
.ls81{letter-spacing:1.430293pt;}
.ls68{letter-spacing:1.440000pt;}
.lsb0{letter-spacing:1.450667pt;}
.ls7f{letter-spacing:1.493333pt;}
.ls76{letter-spacing:1.536000pt;}
.ls3f{letter-spacing:1.546667pt;}
.ls88{letter-spacing:1.578667pt;}
.ls19{letter-spacing:1.600000pt;}
.ls8e{letter-spacing:1.621333pt;}
.ls14{letter-spacing:1.653333pt;}
.lsb2{letter-spacing:1.664000pt;}
.lsc{letter-spacing:1.706667pt;}
.ls87{letter-spacing:1.749333pt;}
.ls18{letter-spacing:1.760000pt;}
.ls9c{letter-spacing:1.792000pt;}
.ls67{letter-spacing:1.813333pt;}
.lsad{letter-spacing:1.834667pt;}
.ls6f{letter-spacing:1.842667pt;}
.ls34{letter-spacing:1.866667pt;}
.ls9d{letter-spacing:1.877333pt;}
.ls57{letter-spacing:1.920000pt;}
.ls27{letter-spacing:1.973333pt;}
.lsa9{letter-spacing:2.005333pt;}
.ls4c{letter-spacing:2.026667pt;}
.ls8d{letter-spacing:2.048000pt;}
.ls2f{letter-spacing:2.080000pt;}
.ls9f{letter-spacing:2.090667pt;}
.ls21{letter-spacing:2.133333pt;}
.ls20{letter-spacing:2.186667pt;}
.lsab{letter-spacing:2.218667pt;}
.ls40{letter-spacing:2.240000pt;}
.ls80{letter-spacing:2.293333pt;}
.ls29{letter-spacing:2.346667pt;}
.ls7{letter-spacing:2.400000pt;}
.ls7a{letter-spacing:2.400533pt;}
.lsa0{letter-spacing:2.432000pt;}
.ls47{letter-spacing:2.453333pt;}
.ls64{letter-spacing:2.474667pt;}
.ls41{letter-spacing:2.506667pt;}
.lsb8{letter-spacing:2.517333pt;}
.ls73{letter-spacing:2.560000pt;}
.ls4b{letter-spacing:2.613333pt;}
.lsb3{letter-spacing:2.645333pt;}
.ls7e{letter-spacing:2.666667pt;}
.ls8c{letter-spacing:2.688000pt;}
.ls9{letter-spacing:2.720000pt;}
.ls1a{letter-spacing:2.773333pt;}
.ls6e{letter-spacing:2.826667pt;}
.ls79{letter-spacing:2.933333pt;}
.ls6b{letter-spacing:2.984960pt;}
.ls46{letter-spacing:2.986667pt;}
.ls7c{letter-spacing:3.040000pt;}
.ls72{letter-spacing:3.093333pt;}
.ls30{letter-spacing:3.146667pt;}
.ls3c{letter-spacing:3.200000pt;}
.ls23{letter-spacing:3.306667pt;}
.ls83{letter-spacing:3.360000pt;}
.ls2c{letter-spacing:3.413333pt;}
.lsae{letter-spacing:3.456000pt;}
.ls25{letter-spacing:3.466667pt;}
.lsa4{letter-spacing:3.498667pt;}
.ls44{letter-spacing:3.573333pt;}
.ls3b{letter-spacing:3.626667pt;}
.ls3a{letter-spacing:3.733333pt;}
.ls86{letter-spacing:3.786667pt;}
.ls3e{letter-spacing:3.893333pt;}
.lsba{letter-spacing:3.946667pt;}
.lsa8{letter-spacing:3.968000pt;}
.ls7b{letter-spacing:4.000000pt;}
.ls3d{letter-spacing:4.106667pt;}
.lsaa{letter-spacing:4.437333pt;}
.ls84{letter-spacing:4.480000pt;}
.ls97{letter-spacing:4.522667pt;}
.lsbc{letter-spacing:4.586667pt;}
.ls82{letter-spacing:4.640000pt;}
.ls7d{letter-spacing:4.746667pt;}
.ls5e{letter-spacing:4.960000pt;}
.ls5f{letter-spacing:5.013333pt;}
.lsaf{letter-spacing:5.034667pt;}
.lsac{letter-spacing:5.077333pt;}
.ls69{letter-spacing:5.105600pt;}
.ls6a{letter-spacing:5.120000pt;}
.ls75{letter-spacing:5.205333pt;}
.lsbd{letter-spacing:5.226667pt;}
.lsb9{letter-spacing:5.376000pt;}
.ls71{letter-spacing:5.600000pt;}
.ls85{letter-spacing:5.706667pt;}
.ls4a{letter-spacing:5.813333pt;}
.lsbb{letter-spacing:6.293333pt;}
.ls59{letter-spacing:385.136619pt;}
.ls5a{letter-spacing:507.690667pt;}
.ws9f{word-spacing:-15.680000pt;}
.ws70{word-spacing:-15.230400pt;}
.ws71{word-spacing:-15.200000pt;}
.wsa0{word-spacing:-14.986667pt;}
.ws5b{word-spacing:-14.933333pt;}
.ws3{word-spacing:-14.826667pt;}
.ws2{word-spacing:-14.773333pt;}
.ws4b{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.560000pt;}
.ws18{word-spacing:-13.866667pt;}
.ws7f{word-spacing:-13.813333pt;}
.ws99{word-spacing:-13.760000pt;}
.ws1a{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.493333pt;}
.ws4{word-spacing:-13.333333pt;}
.ws98{word-spacing:-13.066667pt;}
.wsad{word-spacing:-13.013333pt;}
.ws85{word-spacing:-12.881467pt;}
.ws74{word-spacing:-12.788267pt;}
.wsa9{word-spacing:-12.714667pt;}
.ws69{word-spacing:-12.616000pt;}
.wsed{word-spacing:-12.544000pt;}
.wsd3{word-spacing:-12.245333pt;}
.wsd8{word-spacing:-12.160000pt;}
.wsaf{word-spacing:-11.946667pt;}
.ws6{word-spacing:-11.861333pt;}
.wsab{word-spacing:-11.818667pt;}
.wsb2{word-spacing:-11.733333pt;}
.wsae{word-spacing:-11.690667pt;}
.wsda{word-spacing:-11.648000pt;}
.wsd6{word-spacing:-11.605333pt;}
.ws40{word-spacing:-11.570800pt;}
.wsb3{word-spacing:-11.349333pt;}
.wseb{word-spacing:-11.306667pt;}
.wsd4{word-spacing:-11.264000pt;}
.ws5{word-spacing:-11.120000pt;}
.wsaa{word-spacing:-11.093333pt;}
.wsac{word-spacing:-11.050667pt;}
.wsd9{word-spacing:-10.837333pt;}
.wsd7{word-spacing:-10.794667pt;}
.ws80{word-spacing:-10.758293pt;}
.ws60{word-spacing:-10.666667pt;}
.wsec{word-spacing:-10.624000pt;}
.wsb1{word-spacing:-10.453333pt;}
.wsd5{word-spacing:-10.282667pt;}
.ws73{word-spacing:-10.214400pt;}
.ws72{word-spacing:-10.184000pt;}
.ws75{word-spacing:-9.974933pt;}
.ws97{word-spacing:-9.203627pt;}
.ws1{word-spacing:-9.076144pt;}
.ws4a{word-spacing:-8.395200pt;}
.wsb0{word-spacing:-8.320000pt;}
.ws8b{word-spacing:-8.270827pt;}
.ws5c{word-spacing:-8.084267pt;}
.ws5d{word-spacing:-7.897707pt;}
.ws5e{word-spacing:-7.866613pt;}
.ws76{word-spacing:-7.843467pt;}
.ws49{word-spacing:-7.773333pt;}
.ws41{word-spacing:-7.713867pt;}
.ws62{word-spacing:-6.218667pt;}
.ws59{word-spacing:-5.813333pt;}
.ws91{word-spacing:-5.653333pt;}
.ws87{word-spacing:-5.120000pt;}
.ws66{word-spacing:-5.013333pt;}
.ws63{word-spacing:-4.960000pt;}
.wsa1{word-spacing:-4.640000pt;}
.wsf1{word-spacing:-4.586667pt;}
.ws53{word-spacing:-4.106667pt;}
.ws9c{word-spacing:-4.000000pt;}
.wsef{word-spacing:-3.946667pt;}
.ws54{word-spacing:-3.893333pt;}
.wsa6{word-spacing:-3.786667pt;}
.ws4d{word-spacing:-3.733333pt;}
.ws4f{word-spacing:-3.680000pt;}
.ws90{word-spacing:-3.626667pt;}
.ws57{word-spacing:-3.573333pt;}
.wsc7{word-spacing:-3.498667pt;}
.ws33{word-spacing:-3.466667pt;}
.wse2{word-spacing:-3.456000pt;}
.ws3b{word-spacing:-3.413333pt;}
.wsa4{word-spacing:-3.360000pt;}
.ws2f{word-spacing:-3.306667pt;}
.ws52{word-spacing:-3.200000pt;}
.ws3e{word-spacing:-3.146667pt;}
.ws92{word-spacing:-3.093333pt;}
.wsf0{word-spacing:-3.040000pt;}
.ws58{word-spacing:-2.986667pt;}
.ws7e{word-spacing:-2.969736pt;}
.ws9a{word-spacing:-2.933333pt;}
.ws8f{word-spacing:-2.826667pt;}
.ws25{word-spacing:-2.773333pt;}
.ws12{word-spacing:-2.720000pt;}
.wsbb{word-spacing:-2.688000pt;}
.ws9e{word-spacing:-2.666667pt;}
.wse7{word-spacing:-2.645333pt;}
.ws5a{word-spacing:-2.613333pt;}
.ws8{word-spacing:-2.565333pt;}
.ws56{word-spacing:-2.560000pt;}
.ws93{word-spacing:-2.506667pt;}
.wscb{word-spacing:-2.474667pt;}
.ws3a{word-spacing:-2.453333pt;}
.wsd2{word-spacing:-2.432000pt;}
.wsd{word-spacing:-2.400000pt;}
.ws39{word-spacing:-2.346667pt;}
.ws9b{word-spacing:-2.293333pt;}
.ws50{word-spacing:-2.240000pt;}
.wse0{word-spacing:-2.218667pt;}
.ws2d{word-spacing:-2.186667pt;}
.ws2e{word-spacing:-2.133333pt;}
.wsd0{word-spacing:-2.090667pt;}
.ws3d{word-spacing:-2.080000pt;}
.wsbc{word-spacing:-2.048000pt;}
.ws65{word-spacing:-2.026667pt;}
.wsdc{word-spacing:-2.005333pt;}
.ws37{word-spacing:-1.973333pt;}
.ws67{word-spacing:-1.920000pt;}
.wsce{word-spacing:-1.877333pt;}
.ws32{word-spacing:-1.866667pt;}
.wse1{word-spacing:-1.834667pt;}
.ws4e{word-spacing:-1.813333pt;}
.wscd{word-spacing:-1.792000pt;}
.ws23{word-spacing:-1.760000pt;}
.wsb4{word-spacing:-1.749333pt;}
.ws16{word-spacing:-1.706667pt;}
.wse6{word-spacing:-1.664000pt;}
.ws1c{word-spacing:-1.653333pt;}
.wsbd{word-spacing:-1.621333pt;}
.ws24{word-spacing:-1.600000pt;}
.wsb5{word-spacing:-1.578667pt;}
.ws55{word-spacing:-1.546667pt;}
.ws95{word-spacing:-1.536000pt;}
.ws86{word-spacing:-1.493333pt;}
.wsdb{word-spacing:-1.450667pt;}
.ws26{word-spacing:-1.440000pt;}
.wsc1{word-spacing:-1.408000pt;}
.ws13{word-spacing:-1.386667pt;}
.wsea{word-spacing:-1.365333pt;}
.ws38{word-spacing:-1.333333pt;}
.ws1e{word-spacing:-1.280000pt;}
.wse9{word-spacing:-1.237333pt;}
.ws2a{word-spacing:-1.226667pt;}
.wsbf{word-spacing:-1.194667pt;}
.ws29{word-spacing:-1.173333pt;}
.ws96{word-spacing:-1.152000pt;}
.ws30{word-spacing:-1.120000pt;}
.wsb6{word-spacing:-1.109333pt;}
.ws2c{word-spacing:-1.066667pt;}
.wsc6{word-spacing:-1.024000pt;}
.ws22{word-spacing:-1.013333pt;}
.wse5{word-spacing:-0.981333pt;}
.ws34{word-spacing:-0.960000pt;}
.wsdf{word-spacing:-0.938667pt;}
.ws36{word-spacing:-0.906667pt;}
.wsb7{word-spacing:-0.896000pt;}
.wsa{word-spacing:-0.853333pt;}
.wsf{word-spacing:-0.800000pt;}
.wsca{word-spacing:-0.768000pt;}
.ws15{word-spacing:-0.746667pt;}
.wsba{word-spacing:-0.725333pt;}
.ws14{word-spacing:-0.693333pt;}
.wsb9{word-spacing:-0.682667pt;}
.wse{word-spacing:-0.640000pt;}
.wsd1{word-spacing:-0.597333pt;}
.ws28{word-spacing:-0.586667pt;}
.wsc8{word-spacing:-0.554667pt;}
.ws27{word-spacing:-0.533333pt;}
.wsc4{word-spacing:-0.512000pt;}
.ws10{word-spacing:-0.480000pt;}
.wsc2{word-spacing:-0.469333pt;}
.ws8a{word-spacing:-0.463733pt;}
.ws9{word-spacing:-0.426667pt;}
.wsbe{word-spacing:-0.384000pt;}
.ws17{word-spacing:-0.373333pt;}
.wscf{word-spacing:-0.341333pt;}
.ws21{word-spacing:-0.320000pt;}
.ws44{word-spacing:-0.298667pt;}
.ws47{word-spacing:-0.289423pt;}
.ws45{word-spacing:-0.277699pt;}
.wsc{word-spacing:-0.266667pt;}
.wscc{word-spacing:-0.256000pt;}
.ws46{word-spacing:-0.231416pt;}
.wsb{word-spacing:-0.213333pt;}
.wsc9{word-spacing:-0.170667pt;}
.ws35{word-spacing:-0.160000pt;}
.wsc5{word-spacing:-0.128000pt;}
.ws3c{word-spacing:-0.106667pt;}
.wsc3{word-spacing:-0.085333pt;}
.ws83{word-spacing:-0.062080pt;}
.ws6f{word-spacing:-0.060800pt;}
.ws11{word-spacing:-0.053333pt;}
.ws81{word-spacing:-0.046560pt;}
.ws3f{word-spacing:-0.046283pt;}
.wsc0{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.wsb8{word-spacing:0.042667pt;}
.ws4c{word-spacing:0.053333pt;}
.wsde{word-spacing:0.085333pt;}
.ws7d{word-spacing:0.091200pt;}
.ws2b{word-spacing:0.106667pt;}
.wse8{word-spacing:0.128000pt;}
.ws31{word-spacing:0.160000pt;}
.ws20{word-spacing:0.213333pt;}
.ws51{word-spacing:0.266667pt;}
.ws88{word-spacing:0.320000pt;}
.ws68{word-spacing:0.373333pt;}
.wsdd{word-spacing:0.384000pt;}
.wsa5{word-spacing:0.480000pt;}
.wsa3{word-spacing:0.533333pt;}
.ws7b{word-spacing:1.024000pt;}
.ws84{word-spacing:1.030517pt;}
.ws8e{word-spacing:1.546667pt;}
.wsa2{word-spacing:1.920000pt;}
.ws89{word-spacing:1.962667pt;}
.ws48{word-spacing:2.026667pt;}
.ws64{word-spacing:2.133333pt;}
.wse3{word-spacing:2.176000pt;}
.ws9d{word-spacing:2.293333pt;}
.wse4{word-spacing:2.346667pt;}
.ws7c{word-spacing:2.517333pt;}
.wsee{word-spacing:3.242667pt;}
.wsf2{word-spacing:3.413333pt;}
.ws43{word-spacing:3.498667pt;}
.ws94{word-spacing:3.541333pt;}
.ws1d{word-spacing:4.373333pt;}
.ws1f{word-spacing:4.426667pt;}
.wsa8{word-spacing:4.853333pt;}
.wsa7{word-spacing:4.906667pt;}
.ws78{word-spacing:21.647968pt;}
.ws8c{word-spacing:21.866965pt;}
.ws77{word-spacing:35.138731pt;}
.ws0{word-spacing:43.841803pt;}
.ws6c{word-spacing:46.124096pt;}
.ws6b{word-spacing:47.688480pt;}
.ws6d{word-spacing:48.100021pt;}
.ws6e{word-spacing:48.115913pt;}
.ws8d{word-spacing:49.324800pt;}
.ws79{word-spacing:51.390394pt;}
.ws6a{word-spacing:56.368288pt;}
.ws61{word-spacing:68.864000pt;}
.ws42{word-spacing:102.789034pt;}
.ws7a{word-spacing:119.440310pt;}
.ws5f{word-spacing:169.856000pt;}
.ws82{word-spacing:442.768433pt;}
._c{margin-left:-2576.085333pt;}
._2f{margin-left:-2554.922667pt;}
._31{margin-left:-6.880000pt;}
._b{margin-left:-5.880000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.786667pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.906667pt;}
._9{width:1.173333pt;}
._8{width:2.533333pt;}
._6{width:3.733333pt;}
._4{width:4.800000pt;}
._5{width:5.866667pt;}
._7{width:6.773333pt;}
._a{width:7.733333pt;}
._30{width:9.013333pt;}
._32{width:10.186667pt;}
._56{width:58.744235pt;}
._59{width:62.097600pt;}
._55{width:65.050016pt;}
._45{width:66.133333pt;}
._44{width:70.144000pt;}
._57{width:76.741035pt;}
._46{width:79.608000pt;}
._58{width:83.780800pt;}
._4e{width:105.946667pt;}
._4d{width:122.084843pt;}
._41{width:132.650667pt;}
._52{width:140.544000pt;}
._3c{width:143.701333pt;}
._3b{width:150.698667pt;}
._47{width:152.021333pt;}
._3d{width:154.368000pt;}
._37{width:161.365333pt;}
._38{width:165.034667pt;}
._4c{width:171.434667pt;}
._49{width:172.544000pt;}
._40{width:173.440000pt;}
._28{width:174.634667pt;}
._21{width:175.829333pt;}
._1a{width:178.176000pt;}
._e{width:182.058667pt;}
._f{width:184.106667pt;}
._34{width:185.301333pt;}
._35{width:191.232000pt;}
._42{width:200.234667pt;}
._3a{width:206.421333pt;}
._10{width:208.042667pt;}
._50{width:210.210816pt;}
._29{width:211.285333pt;}
._54{width:213.141931pt;}
._39{width:221.568000pt;}
._3e{width:227.370667pt;}
._36{width:229.205333pt;}
._17{width:233.173333pt;}
._1e{width:234.325333pt;}
._14{width:243.840000pt;}
._26{width:252.800000pt;}
._33{width:254.421333pt;}
._2c{width:255.530667pt;}
._13{width:259.114667pt;}
._1d{width:260.266667pt;}
._2a{width:264.704000pt;}
._1f{width:267.989333pt;}
._4b{width:271.317333pt;}
._3f{width:274.805333pt;}
._53{width:275.754667pt;}
._22{width:281.344000pt;}
._24{width:284.032000pt;}
._4f{width:286.421333pt;}
._4a{width:289.962667pt;}
._d{width:292.090971pt;}
._18{width:297.557333pt;}
._11{width:298.752000pt;}
._15{width:305.877333pt;}
._51{width:312.112000pt;}
._1b{width:314.496000pt;}
._43{width:318.464000pt;}
._20{width:320.554667pt;}
._2d{width:321.578667pt;}
._25{width:325.290667pt;}
._27{width:331.605333pt;}
._23{width:333.610667pt;}
._2b{width:339.498667pt;}
._16{width:348.586667pt;}
._19{width:350.165333pt;}
._1c{width:356.138667pt;}
._2e{width:374.698667pt;}
._48{width:397.824000pt;}
._12{width:595.541333pt;}
.fs7{font-size:20.210667pt;}
.fs21{font-size:22.848533pt;}
.fs5{font-size:23.320000pt;}
.fs14{font-size:24.874667pt;}
.fs1d{font-size:25.576533pt;}
.fs20{font-size:30.010133pt;}
.fs1c{font-size:30.400000pt;}
.fsd{font-size:30.855467pt;}
.fs29{font-size:31.040000pt;}
.fs13{font-size:31.093333pt;}
.fs24{font-size:31.373867pt;}
.fs25{font-size:31.442667pt;}
.fs4{font-size:32.648000pt;}
.fs8{font-size:34.666667pt;}
.fs18{font-size:35.466667pt;}
.fs2d{font-size:36.357333pt;}
.fs0{font-size:37.333333pt;}
.fs1f{font-size:39.899733pt;}
.fs6{font-size:40.000000pt;}
.fs1a{font-size:40.736000pt;}
.fs1b{font-size:40.857600pt;}
.fsc{font-size:41.346133pt;}
.fsa{font-size:42.666667pt;}
.fs2c{font-size:44.437333pt;}
.fsb{font-size:46.283200pt;}
.fs27{font-size:46.560000pt;}
.fs15{font-size:50.464000pt;}
.fs16{font-size:50.585600pt;}
.fs1e{font-size:51.153067pt;}
.fse{font-size:51.220267pt;}
.fs22{font-size:51.221333pt;}
.fsf{font-size:51.343467pt;}
.fs10{font-size:51.425600pt;}
.fs2b{font-size:51.525867pt;}
.fs9{font-size:53.333333pt;}
.fs26{font-size:53.995200pt;}
.fs3{font-size:56.000000pt;}
.fs11{font-size:58.492800pt;}
.fs17{font-size:60.800000pt;}
.fs19{font-size:60.921600pt;}
.fs2a{font-size:62.080000pt;}
.fs23{font-size:68.204800pt;}
.fs1{font-size:69.333333pt;}
.fs28{font-size:72.633600pt;}
.fs12{font-size:82.075733pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y263{bottom:71.345333pt;}
.y161{bottom:73.777733pt;}
.y88{bottom:74.055333pt;}
.y19c{bottom:74.323867pt;}
.y1d8{bottom:74.344533pt;}
.y64{bottom:74.462533pt;}
.y1e3{bottom:74.464533pt;}
.yb1{bottom:74.588533pt;}
.y107{bottom:75.023200pt;}
.y2b{bottom:78.246000pt;}
.y221{bottom:79.345333pt;}
.y100{bottom:82.891867pt;}
.y261{bottom:84.678667pt;}
.y160{bottom:87.772400pt;}
.y19b{bottom:88.318533pt;}
.y106{bottom:89.017867pt;}
.y1e2{bottom:90.104533pt;}
.y1d7{bottom:90.344533pt;}
.y63{bottom:90.462533pt;}
.yb0{bottom:90.588533pt;}
.y2a{bottom:91.576000pt;}
.y220{bottom:92.678667pt;}
.y87{bottom:96.732667pt;}
.yff{bottom:97.341600pt;}
.y260{bottom:98.012000pt;}
.y15f{bottom:101.767067pt;}
.y19a{bottom:102.313200pt;}
.y105{bottom:103.012533pt;}
.y21f{bottom:106.012000pt;}
.y1d6{bottom:106.344533pt;}
.y62{bottom:106.462533pt;}
.y1aa{bottom:106.514133pt;}
.yaf{bottom:106.588533pt;}
.y86{bottom:111.175333pt;}
.y25f{bottom:111.345333pt;}
.yfe{bottom:111.784267pt;}
.y15e{bottom:115.761733pt;}
.y199{bottom:116.307867pt;}
.y104{bottom:117.007200pt;}
.y21e{bottom:119.345333pt;}
.y66{bottom:122.102533pt;}
.y1e1{bottom:122.104533pt;}
.y1d5{bottom:122.344533pt;}
.y61{bottom:122.462533pt;}
.yae{bottom:122.588533pt;}
.y25e{bottom:124.678667pt;}
.y85{bottom:125.618000pt;}
.yfd{bottom:126.230400pt;}
.y15d{bottom:129.756400pt;}
.y198{bottom:130.302533pt;}
.y21d{bottom:132.678667pt;}
.y25d{bottom:138.012000pt;}
.y1d4{bottom:138.344533pt;}
.y60{bottom:138.462533pt;}
.yad{bottom:138.588533pt;}
.y11f{bottom:140.019200pt;}
.y84{bottom:140.060667pt;}
.yfc{bottom:140.676533pt;}
.y27{bottom:142.557067pt;}
.y197{bottom:144.297200pt;}
.y21c{bottom:146.012000pt;}
.y25c{bottom:151.345333pt;}
.y65{bottom:153.982533pt;}
.y5f{bottom:154.462533pt;}
.y1e0{bottom:154.464533pt;}
.y83{bottom:154.503333pt;}
.yac{bottom:154.588533pt;}
.y123{bottom:155.090933pt;}
.yfb{bottom:155.122667pt;}
.y17b{bottom:155.456953pt;}
.y196{bottom:158.291867pt;}
.y26{bottom:158.557067pt;}
.y173{bottom:158.716387pt;}
.y21b{bottom:159.345333pt;}
.y140{bottom:159.953227pt;}
.y25b{bottom:164.678667pt;}
.y82{bottom:168.946000pt;}
.yfa{bottom:169.565333pt;}
.y1d3{bottom:169.984533pt;}
.y5e{bottom:170.462533pt;}
.y1df{bottom:170.464533pt;}
.yab{bottom:170.588533pt;}
.y1bd{bottom:170.595867pt;}
.y17a{bottom:170.669965pt;}
.y21a{bottom:172.678667pt;}
.y25{bottom:174.557067pt;}
.y124{bottom:176.779600pt;}
.y25a{bottom:178.012000pt;}
.y1a8{bottom:178.029333pt;}
.y13f{bottom:181.248239pt;}
.y1a1{bottom:181.430320pt;}
.y81{bottom:183.388667pt;}
.y174{bottom:185.367200pt;}
.y179{bottom:185.728400pt;}
.y219{bottom:186.012000pt;}
.y5d{bottom:186.462533pt;}
.y1de{bottom:186.464533pt;}
.yaa{bottom:186.588533pt;}
.y1bc{bottom:186.595867pt;}
.y141{bottom:186.942595pt;}
.y172{bottom:187.432267pt;}
.y24{bottom:190.557067pt;}
.y13e{bottom:191.209441pt;}
.y259{bottom:191.345333pt;}
.y16f{bottom:191.572133pt;}
.yf9{bottom:197.576000pt;}
.y1a0{bottom:197.594400pt;}
.y80{bottom:197.831333pt;}
.y170{bottom:198.455253pt;}
.y16e{bottom:199.076053pt;}
.y218{bottom:199.345333pt;}
.y139{bottom:200.011356pt;}
.y14b{bottom:202.148962pt;}
.y122{bottom:202.396400pt;}
.y5c{bottom:202.462533pt;}
.y1dd{bottom:202.464533pt;}
.ya9{bottom:202.588533pt;}
.y1bb{bottom:202.595867pt;}
.y258{bottom:204.678667pt;}
.y23{bottom:206.557067pt;}
.y1a2{bottom:209.713600pt;}
.y13a{bottom:210.419636pt;}
.y142{bottom:211.428533pt;}
.y7f{bottom:212.274000pt;}
.y217{bottom:212.678667pt;}
.y149{bottom:212.789333pt;}
.y144{bottom:213.213354pt;}
.y257{bottom:218.012000pt;}
.y5b{bottom:218.462533pt;}
.y1d2{bottom:218.464533pt;}
.ya8{bottom:218.588533pt;}
.y1ba{bottom:218.595867pt;}
.y13c{bottom:219.427467pt;}
.y137{bottom:220.835760pt;}
.y171{bottom:222.198133pt;}
.y1af{bottom:222.451733pt;}
.y22{bottom:222.557067pt;}
.y121{bottom:223.058933pt;}
.y13d{bottom:225.054000pt;}
.y216{bottom:226.012000pt;}
.y16c{bottom:228.093867pt;}
.yf8{bottom:228.593867pt;}
.y256{bottom:231.345333pt;}
.y1ae{bottom:233.222593pt;}
.y14a{bottom:233.577733pt;}
.y1dc{bottom:234.104533pt;}
.y5a{bottom:234.462533pt;}
.y1d1{bottom:234.464533pt;}
.ya7{bottom:234.588533pt;}
.y1b9{bottom:234.595867pt;}
.y13b{bottom:235.001061pt;}
.y21{bottom:238.557067pt;}
.y143{bottom:239.049733pt;}
.y215{bottom:239.345333pt;}
.y148{bottom:239.449750pt;}
.y1a9{bottom:239.730667pt;}
.y7e{bottom:240.284667pt;}
.y1a3{bottom:244.387733pt;}
.y255{bottom:244.678667pt;}
.y1ad{bottom:244.766047pt;}
.yf7{bottom:245.927200pt;}
.y132{bottom:248.907527pt;}
.y59{bottom:250.462533pt;}
.y1d0{bottom:250.464533pt;}
.ya6{bottom:250.588533pt;}
.y1b8{bottom:250.595867pt;}
.y214{bottom:252.678667pt;}
.y20{bottom:254.557067pt;}
.y138{bottom:255.566630pt;}
.y147{bottom:256.470073pt;}
.y1ac{bottom:256.482197pt;}
.y16d{bottom:257.221733pt;}
.y254{bottom:258.012000pt;}
.y12a{bottom:260.584955pt;}
.y146{bottom:265.835172pt;}
.y213{bottom:266.012000pt;}
.y58{bottom:266.462533pt;}
.y1cf{bottom:266.464533pt;}
.ya5{bottom:266.588533pt;}
.y1b7{bottom:266.595867pt;}
.y1ab{bottom:267.898400pt;}
.y12d{bottom:269.471333pt;}
.y1f{bottom:270.557067pt;}
.y7d{bottom:271.302533pt;}
.y253{bottom:271.345333pt;}
.y120{bottom:274.224933pt;}
.y1a4{bottom:279.062800pt;}
.y212{bottom:279.345333pt;}
.y19d{bottom:280.408933pt;}
.y57{bottom:282.462533pt;}
.y1ce{bottom:282.464533pt;}
.ya4{bottom:282.588533pt;}
.y1b6{bottom:282.595867pt;}
.y12b{bottom:283.578258pt;}
.y252{bottom:284.678667pt;}
.y145{bottom:284.949700pt;}
.yf6{bottom:286.095200pt;}
.y1e{bottom:286.557067pt;}
.y7c{bottom:288.635867pt;}
.y211{bottom:292.678667pt;}
.y14c{bottom:292.748846pt;}
.y131{bottom:297.521333pt;}
.y251{bottom:298.012000pt;}
.y56{bottom:298.462533pt;}
.y1cd{bottom:298.464533pt;}
.ya3{bottom:298.588533pt;}
.y1b5{bottom:298.595867pt;}
.y169{bottom:299.023920pt;}
.yf5{bottom:300.770800pt;}
.y1d{bottom:302.557067pt;}
.y168{bottom:303.315200pt;}
.y136{bottom:303.717672pt;}
.y210{bottom:306.012000pt;}
.y14d{bottom:306.953364pt;}
.y16a{bottom:310.247733pt;}
.y135{bottom:310.965035pt;}
.y250{bottom:311.345333pt;}
.y167{bottom:311.851200pt;}
.y1a5{bottom:313.736800pt;}
.y1db{bottom:314.104533pt;}
.y55{bottom:314.462533pt;}
.y1cc{bottom:314.464533pt;}
.ya2{bottom:314.588533pt;}
.y1b4{bottom:314.595867pt;}
.y29{bottom:318.557067pt;}
.y20f{bottom:319.345333pt;}
.yf4{bottom:323.448133pt;}
.y24f{bottom:324.678667pt;}
.y14e{bottom:325.073067pt;}
.y69{bottom:328.643733pt;}
.y16b{bottom:330.367733pt;}
.y134{bottom:330.377615pt;}
.y54{bottom:330.462533pt;}
.y1cb{bottom:330.464533pt;}
.ya1{bottom:330.588533pt;}
.y1b3{bottom:330.595867pt;}
.y20e{bottom:332.678667pt;}
.y1c{bottom:334.199067pt;}
.y28{bottom:334.557067pt;}
.y129{bottom:335.012667pt;}
.y177{bottom:335.127760pt;}
.y159{bottom:335.155067pt;}
.yf3{bottom:337.890800pt;}
.y24e{bottom:338.012000pt;}
.y133{bottom:341.821233pt;}
.y68{bottom:342.638400pt;}
.y166{bottom:345.940800pt;}
.y20d{bottom:346.012000pt;}
.y53{bottom:346.462533pt;}
.y1ca{bottom:346.464533pt;}
.ya0{bottom:346.588533pt;}
.y1b2{bottom:346.595867pt;}
.y1a6{bottom:348.411333pt;}
.y24d{bottom:351.345333pt;}
.yf2{bottom:352.333467pt;}
.y178{bottom:355.195120pt;}
.y20c{bottom:359.345333pt;}
.y1da{bottom:362.104533pt;}
.y52{bottom:362.462533pt;}
.y1c9{bottom:362.464533pt;}
.y12c{bottom:362.570267pt;}
.y9f{bottom:362.588533pt;}
.y1b1{bottom:362.595867pt;}
.y24c{bottom:364.678667pt;}
.y14f{bottom:365.414008pt;}
.yf1{bottom:366.776133pt;}
.y19f{bottom:371.303067pt;}
.y20b{bottom:372.678667pt;}
.y15b{bottom:374.029249pt;}
.y24b{bottom:378.012000pt;}
.y51{bottom:378.462533pt;}
.y1c8{bottom:378.464533pt;}
.yd2{bottom:378.588533pt;}
.y9e{bottom:378.595867pt;}
.yf0{bottom:381.218800pt;}
.y1a7{bottom:383.085467pt;}
.y12e{bottom:383.350848pt;}
.y20a{bottom:386.012000pt;}
.y6c{bottom:389.292267pt;}
.y6d{bottom:389.382667pt;}
.y24a{bottom:391.345333pt;}
.y50{bottom:394.462533pt;}
.y1c7{bottom:394.464533pt;}
.yd1{bottom:394.588533pt;}
.y9d{bottom:394.595867pt;}
.y176{bottom:394.631440pt;}
.y209{bottom:399.345333pt;}
.y130{bottom:399.707200pt;}
.y1b{bottom:400.323733pt;}
.y19e{bottom:402.610933pt;}
.y249{bottom:404.678667pt;}
.yef{bottom:409.229467pt;}
.y4f{bottom:410.462533pt;}
.y1c6{bottom:410.464533pt;}
.yd0{bottom:410.588533pt;}
.y9c{bottom:410.595867pt;}
.y208{bottom:412.678667pt;}
.y163{bottom:417.131253pt;}
.y248{bottom:418.012000pt;}
.y158{bottom:419.547346pt;}
.y164{bottom:423.847533pt;}
.y1a{bottom:424.630400pt;}
.y207{bottom:426.012000pt;}
.y4e{bottom:426.462533pt;}
.y1c5{bottom:426.464533pt;}
.ycf{bottom:426.588533pt;}
.y9b{bottom:426.595867pt;}
.y247{bottom:431.345333pt;}
.y157{bottom:438.544222pt;}
.y206{bottom:439.345333pt;}
.y150{bottom:439.791333pt;}
.y165{bottom:439.895600pt;}
.yee{bottom:440.249200pt;}
.y19{bottom:440.630400pt;}
.y4d{bottom:442.462533pt;}
.y1c4{bottom:442.464533pt;}
.yce{bottom:442.588533pt;}
.y9a{bottom:442.595867pt;}
.y246{bottom:444.678667pt;}
.y151{bottom:446.905358pt;}
.y175{bottom:447.446000pt;}
.y7b{bottom:447.609733pt;}
.y75{bottom:448.413200pt;}
.y155{bottom:451.972237pt;}
.y205{bottom:452.678667pt;}
.y18{bottom:456.630400pt;}
.y162{bottom:457.428933pt;}
.yed{bottom:457.582533pt;}
.y245{bottom:458.012000pt;}
.y1d9{bottom:458.104533pt;}
.y4c{bottom:458.462533pt;}
.y193{bottom:458.464533pt;}
.ycd{bottom:458.588533pt;}
.y99{bottom:458.595867pt;}
.y154{bottom:464.576688pt;}
.y153{bottom:465.682617pt;}
.y204{bottom:466.012000pt;}
.y244{bottom:471.345333pt;}
.y156{bottom:471.612278pt;}
.y17{bottom:472.630400pt;}
.y4b{bottom:474.462533pt;}
.y192{bottom:474.464533pt;}
.ycc{bottom:474.588533pt;}
.y98{bottom:474.595867pt;}
.y152{bottom:474.930064pt;}
.y128{bottom:476.335355pt;}
.y203{bottom:479.345333pt;}
.y243{bottom:484.678667pt;}
.y76{bottom:485.607733pt;}
.y16{bottom:488.630400pt;}
.y127{bottom:490.370000pt;}
.y4a{bottom:490.462533pt;}
.y191{bottom:490.464533pt;}
.ycb{bottom:490.588533pt;}
.y97{bottom:490.595867pt;}
.y202{bottom:492.678667pt;}
.y242{bottom:498.012000pt;}
.y79{bottom:501.572691pt;}
.y126{bottom:504.404338pt;}
.y15{bottom:504.630400pt;}
.y201{bottom:506.012000pt;}
.y49{bottom:506.462533pt;}
.y190{bottom:506.464533pt;}
.yca{bottom:506.588533pt;}
.y96{bottom:506.595867pt;}
.y12f{bottom:507.725867pt;}
.y241{bottom:511.345333pt;}
.y125{bottom:518.433067pt;}
.y200{bottom:519.345333pt;}
.y14{bottom:520.630400pt;}
.y15a{bottom:520.815200pt;}
.y48{bottom:522.462533pt;}
.y1c3{bottom:522.464533pt;}
.yc9{bottom:522.588533pt;}
.y95{bottom:522.595867pt;}
.y6e{bottom:524.529867pt;}
.y240{bottom:524.678667pt;}
.y1ff{bottom:532.678667pt;}
.y7a{bottom:533.500151pt;}
.y13{bottom:536.630400pt;}
.y23f{bottom:538.012000pt;}
.y18f{bottom:538.104533pt;}
.yec{bottom:538.235867pt;}
.y47{bottom:538.462533pt;}
.y1c2{bottom:538.464533pt;}
.yc8{bottom:538.588533pt;}
.y94{bottom:538.595867pt;}
.y1fe{bottom:546.012000pt;}
.y23e{bottom:551.345333pt;}
.y12{bottom:552.630400pt;}
.yeb{bottom:554.235867pt;}
.y46{bottom:554.462533pt;}
.y1c1{bottom:554.464533pt;}
.yc7{bottom:554.588533pt;}
.y93{bottom:554.595867pt;}
.y1fd{bottom:559.345333pt;}
.y23d{bottom:564.678667pt;}
.y11{bottom:568.630400pt;}
.y18e{bottom:569.984533pt;}
.y45{bottom:570.462533pt;}
.y1c0{bottom:570.464533pt;}
.yc6{bottom:570.588533pt;}
.y92{bottom:570.595867pt;}
.y74{bottom:572.245733pt;}
.y103{bottom:572.548533pt;}
.y1fc{bottom:572.678667pt;}
.y23c{bottom:578.012000pt;}
.y10{bottom:584.630400pt;}
.y1fb{bottom:586.012000pt;}
.y44{bottom:586.462533pt;}
.y1bf{bottom:586.464533pt;}
.y102{bottom:586.543200pt;}
.ye6{bottom:586.584533pt;}
.yc5{bottom:586.588533pt;}
.y91{bottom:586.595867pt;}
.y23b{bottom:591.345333pt;}
.y78{bottom:597.170402pt;}
.y1fa{bottom:599.345333pt;}
.yf{bottom:600.630400pt;}
.y73{bottom:601.012133pt;}
.y43{bottom:602.462533pt;}
.y1be{bottom:602.464533pt;}
.ye5{bottom:602.584533pt;}
.yc4{bottom:602.588533pt;}
.y90{bottom:602.595867pt;}
.y23a{bottom:604.678667pt;}
.y1f9{bottom:612.678667pt;}
.y111{bottom:613.152952pt;}
.y239{bottom:618.012000pt;}
.y42{bottom:618.462533pt;}
.y18d{bottom:618.464533pt;}
.ye4{bottom:618.584533pt;}
.yc3{bottom:618.588533pt;}
.y8f{bottom:618.595867pt;}
.y1f8{bottom:626.012000pt;}
.y72{bottom:627.226533pt;}
.y238{bottom:631.345333pt;}
.y41{bottom:634.462533pt;}
.y18c{bottom:634.464533pt;}
.ye3{bottom:634.584533pt;}
.yc2{bottom:634.588533pt;}
.y8e{bottom:634.595867pt;}
.y1f7{bottom:639.345333pt;}
.ye{bottom:640.770933pt;}
.y117{bottom:641.997733pt;}
.y110{bottom:643.027640pt;}
.y237{bottom:644.678667pt;}
.y40{bottom:650.462533pt;}
.y18b{bottom:650.464533pt;}
.ye2{bottom:650.584533pt;}
.yc1{bottom:650.588533pt;}
.y8d{bottom:650.595867pt;}
.yd{bottom:651.838267pt;}
.y1f6{bottom:652.678667pt;}
.y236{bottom:658.012000pt;}
.y1f5{bottom:666.012000pt;}
.yc{bottom:666.418667pt;}
.y3f{bottom:666.462533pt;}
.y18a{bottom:666.464533pt;}
.ye1{bottom:666.584533pt;}
.yc0{bottom:666.588533pt;}
.y8c{bottom:666.595867pt;}
.y235{bottom:671.345333pt;}
.y118{bottom:673.727067pt;}
.y6b{bottom:675.133266pt;}
.y71{bottom:675.450267pt;}
.y10f{bottom:676.687128pt;}
.y70{bottom:678.871600pt;}
.y1f4{bottom:679.345333pt;}
.y3e{bottom:682.462533pt;}
.y189{bottom:682.464533pt;}
.ye0{bottom:682.584533pt;}
.ybf{bottom:682.588533pt;}
.y8b{bottom:682.595867pt;}
.y234{bottom:684.678667pt;}
.yb{bottom:690.429867pt;}
.y77{bottom:692.357733pt;}
.y1f3{bottom:692.678667pt;}
.y116{bottom:692.978533pt;}
.y233{bottom:698.012000pt;}
.y3d{bottom:698.462533pt;}
.y188{bottom:698.464533pt;}
.ydf{bottom:698.584533pt;}
.ybe{bottom:698.601867pt;}
.y1f2{bottom:706.012000pt;}
.ya{bottom:707.252400pt;}
.y6f{bottom:708.532400pt;}
.y10e{bottom:710.371848pt;}
.y232{bottom:711.345333pt;}
.y119{bottom:711.794859pt;}
.y8a{bottom:714.235867pt;}
.y9{bottom:714.429867pt;}
.y3c{bottom:714.462533pt;}
.y187{bottom:714.464533pt;}
.yde{bottom:714.584533pt;}
.ybd{bottom:714.601867pt;}
.y1f1{bottom:719.345333pt;}
.y231{bottom:724.678667pt;}
.y3b{bottom:730.462533pt;}
.y186{bottom:730.464533pt;}
.ydd{bottom:730.584533pt;}
.ybc{bottom:730.601867pt;}
.y8{bottom:731.252400pt;}
.y1f0{bottom:732.678667pt;}
.y230{bottom:738.012000pt;}
.y10d{bottom:744.056568pt;}
.y1ef{bottom:746.012000pt;}
.y3a{bottom:746.462533pt;}
.y185{bottom:746.464533pt;}
.ydc{bottom:746.584533pt;}
.ybb{bottom:746.601867pt;}
.y11a{bottom:749.251611pt;}
.y22f{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.y1ee{bottom:759.345333pt;}
.y39{bottom:762.462533pt;}
.y184{bottom:762.464533pt;}
.ydb{bottom:762.584533pt;}
.yba{bottom:762.601867pt;}
.y22e{bottom:764.678667pt;}
.y1ed{bottom:772.678667pt;}
.y115{bottom:776.669733pt;}
.y10c{bottom:777.716056pt;}
.y22d{bottom:778.012000pt;}
.y38{bottom:778.462533pt;}
.y183{bottom:778.464533pt;}
.yda{bottom:778.584533pt;}
.yb9{bottom:778.601867pt;}
.y1ec{bottom:786.012000pt;}
.y11e{bottom:786.308800pt;}
.y11b{bottom:786.616707pt;}
.y22c{bottom:791.345333pt;}
.y37{bottom:794.462533pt;}
.y182{bottom:794.464533pt;}
.yea{bottom:794.468533pt;}
.yd9{bottom:794.584533pt;}
.y6{bottom:797.872800pt;}
.y1eb{bottom:799.345333pt;}
.y22b{bottom:804.678667pt;}
.yb8{bottom:810.241867pt;}
.y36{bottom:810.462533pt;}
.y181{bottom:810.464533pt;}
.ye9{bottom:810.468533pt;}
.yd8{bottom:810.584533pt;}
.y10b{bottom:811.400776pt;}
.y1ea{bottom:812.678667pt;}
.y22a{bottom:818.012000pt;}
.y11c{bottom:825.005867pt;}
.y1e9{bottom:826.012000pt;}
.y35{bottom:826.462533pt;}
.y180{bottom:826.464533pt;}
.ye8{bottom:826.468533pt;}
.yd7{bottom:826.584533pt;}
.y5{bottom:830.254267pt;}
.y229{bottom:831.345333pt;}
.y6a{bottom:834.409067pt;}
.y1e8{bottom:839.345333pt;}
.y34{bottom:842.462533pt;}
.y17f{bottom:842.464533pt;}
.yb7{bottom:842.468533pt;}
.yd6{bottom:842.584533pt;}
.y228{bottom:844.678667pt;}
.y10a{bottom:844.997184pt;}
.y1e7{bottom:852.678667pt;}
.y227{bottom:858.012000pt;}
.y33{bottom:858.462533pt;}
.y17e{bottom:858.464533pt;}
.yb6{bottom:858.468533pt;}
.yd5{bottom:858.584533pt;}
.y4{bottom:862.663867pt;}
.y1e6{bottom:866.012000pt;}
.y226{bottom:871.345333pt;}
.y32{bottom:874.462533pt;}
.y17d{bottom:874.464533pt;}
.yb5{bottom:874.468533pt;}
.y114{bottom:876.255200pt;}
.y109{bottom:878.593592pt;}
.y1e5{bottom:879.345333pt;}
.y225{bottom:884.678667pt;}
.yd4{bottom:890.224533pt;}
.y31{bottom:890.462533pt;}
.y17c{bottom:890.464533pt;}
.yb4{bottom:890.468533pt;}
.y113{bottom:890.783467pt;}
.y1e4{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y224{bottom:898.012000pt;}
.y11d{bottom:900.660371pt;}
.y1b0{bottom:906.104533pt;}
.y30{bottom:906.462533pt;}
.y195{bottom:906.464533pt;}
.yb3{bottom:906.468533pt;}
.y112{bottom:909.023333pt;}
.y223{bottom:911.345333pt;}
.y108{bottom:912.190000pt;}
.yd3{bottom:922.104533pt;}
.ye7{bottom:922.108533pt;}
.y2f{bottom:922.462533pt;}
.y194{bottom:922.464533pt;}
.yb2{bottom:922.468533pt;}
.y222{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y101{bottom:1006.593200pt;}
.y67{bottom:1006.594400pt;}
.y15c{bottom:1006.597067pt;}
.y262{bottom:1006.598667pt;}
.y89{bottom:1006.620667pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h8{height:14.723786pt;}
.h26{height:15.485236pt;}
.h6{height:17.000371pt;}
.h22{height:17.334096pt;}
.h25{height:20.338899pt;}
.h31{height:21.036875pt;}
.h29{height:21.263148pt;}
.h2c{height:21.309776pt;}
.h2d{height:21.890625pt;}
.h2a{height:24.808395pt;}
.h37{height:25.244203pt;}
.h9{height:25.255208pt;}
.h24{height:27.041421pt;}
.h2{height:27.197917pt;}
.h20{height:27.608187pt;}
.h21{height:27.690600pt;}
.h13{height:28.021696pt;}
.h7{height:29.160156pt;}
.h11{height:30.625000pt;}
.h2b{height:30.738056pt;}
.h34{height:30.854438pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h1a{height:31.367716pt;}
.h2f{height:31.555312pt;}
.h12{height:33.808431pt;}
.h1c{height:34.201188pt;}
.h23{height:34.668192pt;}
.h1d{height:34.668313pt;}
.h14{height:34.713735pt;}
.h27{height:34.714458pt;}
.h15{height:34.797232pt;}
.h16{height:34.852897pt;}
.h33{height:35.776261pt;}
.h2e{height:36.594403pt;}
.h39{height:37.369508pt;}
.he{height:38.281250pt;}
.hd{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.859942pt;}
.ha{height:38.880208pt;}
.h35{height:38.933904pt;}
.h17{height:39.642581pt;}
.h38{height:39.721250pt;}
.h1e{height:41.206250pt;}
.h1f{height:41.288662pt;}
.h32{height:42.073750pt;}
.h28{height:46.224738pt;}
.h1b{height:47.411302pt;}
.h30{height:49.226287pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h19{height:55.625546pt;}
.h18{height:76.711564pt;}
.h4{height:81.927344pt;}
.h36{height:248.962667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:300.473333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7e{left:9.232267pt;}
.x7d{left:17.909467pt;}
.x61{left:62.740133pt;}
.xb{left:68.031467pt;}
.x3f{left:73.271094pt;}
.x3e{left:79.126267pt;}
.x7b{left:81.499333pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x23{left:88.818933pt;}
.x60{left:90.208185pt;}
.x7c{left:91.930000pt;}
.x4{left:94.488133pt;}
.x7a{left:96.550667pt;}
.xc{left:98.271467pt;}
.x82{left:109.606533pt;}
.x3{left:111.501467pt;}
.x6{left:117.165333pt;}
.x35{left:130.681867pt;}
.x37{left:152.533986pt;}
.x79{left:159.068933pt;}
.x25{left:165.138933pt;}
.x24{left:166.034933pt;}
.x2d{left:167.548800pt;}
.x7f{left:169.004800pt;}
.x76{left:176.791467pt;}
.x5{left:189.223467pt;}
.x64{left:190.545347pt;}
.x81{left:191.602267pt;}
.x14{left:193.699698pt;}
.x43{left:196.346504pt;}
.x78{left:197.446400pt;}
.x77{left:200.476267pt;}
.x36{left:202.893200pt;}
.x27{left:206.546933pt;}
.x16{left:209.056267pt;}
.x29{left:211.692133pt;}
.x65{left:214.442533pt;}
.x44{left:223.527895pt;}
.x63{left:228.410267pt;}
.x22{left:229.549333pt;}
.x6a{left:230.890133pt;}
.x69{left:234.308053pt;}
.x62{left:238.187867pt;}
.x2a{left:246.587989pt;}
.x68{left:248.741653pt;}
.x15{left:250.119600pt;}
.x6e{left:253.549733pt;}
.x66{left:257.118000pt;}
.x45{left:259.118311pt;}
.x67{left:260.327333pt;}
.x6f{left:270.310267pt;}
.x6d{left:272.949733pt;}
.x38{left:274.820426pt;}
.x47{left:281.324267pt;}
.x6c{left:292.039333pt;}
.x13{left:296.557333pt;}
.x6b{left:298.405600pt;}
.x46{left:299.925436pt;}
.x40{left:316.050518pt;}
.x48{left:322.223067pt;}
.x4a{left:324.013877pt;}
.x49{left:327.922516pt;}
.x41{left:331.755149pt;}
.x19{left:335.690533pt;}
.x3a{left:338.330933pt;}
.x1c{left:340.709333pt;}
.x1a{left:346.377467pt;}
.x1b{left:347.595333pt;}
.x4b{left:356.766400pt;}
.x17{left:357.783867pt;}
.x20{left:360.243114pt;}
.x18{left:361.993467pt;}
.x42{left:368.116391pt;}
.x72{left:386.300400pt;}
.x71{left:388.266107pt;}
.x1f{left:393.319635pt;}
.x1e{left:395.268933pt;}
.x4c{left:397.713733pt;}
.x4d{left:400.166365pt;}
.x74{left:402.671733pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x70{left:414.386267pt;}
.x73{left:423.390933pt;}
.x12{left:425.195867pt;}
.x7{left:427.085333pt;}
.x85{left:428.980800pt;}
.xe{left:436.524800pt;}
.x2b{left:439.287067pt;}
.x4e{left:442.631937pt;}
.x3b{left:444.089091pt;}
.x83{left:447.863467pt;}
.x52{left:452.469600pt;}
.x4f{left:454.023050pt;}
.x28{left:455.434533pt;}
.x8{left:457.325333pt;}
.xf{left:466.912533pt;}
.x50{left:468.349535pt;}
.x21{left:471.312100pt;}
.x53{left:473.096533pt;}
.x5e{left:473.998001pt;}
.x1d{left:480.430000pt;}
.x2c{left:490.358400pt;}
.x5d{left:497.262967pt;}
.x5c{left:503.896753pt;}
.x75{left:506.521067pt;}
.x51{left:510.854037pt;}
.x5b{left:541.682858pt;}
.x39{left:547.460267pt;}
.x2e{left:570.805200pt;}
.x2f{left:574.451072pt;}
.x3c{left:579.683200pt;}
.x54{left:583.145742pt;}
.x5a{left:586.554345pt;}
.x11{left:589.770933pt;}
.x59{left:613.377574pt;}
.x2{left:616.324800pt;}
.x58{left:626.162405pt;}
.x80{left:641.526800pt;}
.x5f{left:644.354667pt;}
.x10{left:647.459200pt;}
.x55{left:650.153205pt;}
.x57{left:652.499530pt;}
.x3d{left:658.545200pt;}
.x84{left:661.225200pt;}
.x26{left:666.344267pt;}
.x33{left:669.573600pt;}
.x31{left:676.202133pt;}
.x32{left:678.603467pt;}
.x34{left:680.108000pt;}
.x30{left:687.044133pt;}
.x56{left:690.281333pt;}
}




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