
    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_87f058cdc291fd1768b45e2c.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_a4ccdb99b914ca947092937c.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_e13053f71e5f32a9a7c02dab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_5a9e33f4e0d7ef70fc8a1177.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_32e0bebf3b50b2c09defbcb1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e9aee8d192bda9517b67fa00.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f04f3ca6f9b056625cd9982.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_aa32a743140b18cd41a33132.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d178205893613982e678cb68.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d5f687f1b7a00645927e26c6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6253cf4ad94fe0731235a9a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c7d7540a2fd49fcb180482e8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1226ab5e3931b0fd022717bc.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1a87e8347d960dba81f9fc74.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6c568ca42ea26fe5af6c113a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_06bf76a9a023cfba96f5e51d.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_a429dac6c53fbe52f0527da2.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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-38.475120px;}
.v2{vertical-align:-15.442200px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.620000px;}
.v4{vertical-align:15.940200px;}
.v3{vertical-align:19.936200px;}
.v1{vertical-align:21.619200px;}
.lse{letter-spacing:-0.780000px;}
.lsf{letter-spacing:-0.480000px;}
.ls57{letter-spacing:-0.420000px;}
.ls4a{letter-spacing:-0.378691px;}
.ls3d{letter-spacing:-0.360000px;}
.ls48{letter-spacing:-0.300000px;}
.ls87{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.240000px;}
.ls84{letter-spacing:-0.192000px;}
.ls30{letter-spacing:-0.180000px;}
.ls85{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.120000px;}
.ls86{letter-spacing:-0.096000px;}
.ls2f{letter-spacing:-0.060000px;}
.ls78{letter-spacing:-0.048000px;}
.ls58{letter-spacing:-0.043800px;}
.ls49{letter-spacing:-0.033311px;}
.lsd{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.005400px;}
.ls4b{letter-spacing:0.042077px;}
.ls51{letter-spacing:0.048000px;}
.ls1d{letter-spacing:0.060000px;}
.ls46{letter-spacing:0.084154px;}
.ls45{letter-spacing:0.096000px;}
.ls7{letter-spacing:0.120000px;}
.ls60{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.192000px;}
.ls1b{letter-spacing:0.240000px;}
.ls6b{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.300000px;}
.ls75{letter-spacing:0.336000px;}
.ls10{letter-spacing:0.360000px;}
.ls7b{letter-spacing:0.384000px;}
.ls2b{letter-spacing:0.420000px;}
.ls69{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.480000px;}
.ls73{letter-spacing:0.528000px;}
.ls14{letter-spacing:0.540000px;}
.ls61{letter-spacing:0.576000px;}
.ls2c{letter-spacing:0.600000px;}
.ls7c{letter-spacing:0.624000px;}
.ls23{letter-spacing:0.660000px;}
.ls7e{letter-spacing:0.672000px;}
.ls13{letter-spacing:0.720000px;}
.ls72{letter-spacing:0.768000px;}
.ls12{letter-spacing:0.780000px;}
.ls74{letter-spacing:0.816000px;}
.ls3a{letter-spacing:0.840000px;}
.ls6e{letter-spacing:0.864000px;}
.ls25{letter-spacing:0.900000px;}
.ls6f{letter-spacing:0.912000px;}
.ls11{letter-spacing:0.960000px;}
.ls80{letter-spacing:1.008000px;}
.ls4{letter-spacing:1.020000px;}
.ls7a{letter-spacing:1.056000px;}
.ls16{letter-spacing:1.080000px;}
.ls63{letter-spacing:1.104000px;}
.ls27{letter-spacing:1.140000px;}
.lsc{letter-spacing:1.200000px;}
.ls83{letter-spacing:1.248000px;}
.ls37{letter-spacing:1.260000px;}
.ls68{letter-spacing:1.296000px;}
.ls3{letter-spacing:1.320000px;}
.ls44{letter-spacing:1.344000px;}
.ls21{letter-spacing:1.380000px;}
.lsb{letter-spacing:1.440000px;}
.ls6a{letter-spacing:1.488000px;}
.ls8{letter-spacing:1.500000px;}
.ls34{letter-spacing:1.560000px;}
.ls66{letter-spacing:1.584000px;}
.ls28{letter-spacing:1.620000px;}
.ls6d{letter-spacing:1.632000px;}
.ls3f{letter-spacing:1.680000px;}
.ls5e{letter-spacing:1.728000px;}
.ls33{letter-spacing:1.740000px;}
.ls77{letter-spacing:1.776000px;}
.ls40{letter-spacing:1.800000px;}
.ls6c{letter-spacing:1.824000px;}
.ls5{letter-spacing:1.860000px;}
.ls19{letter-spacing:1.920000px;}
.ls8c{letter-spacing:1.968000px;}
.ls3c{letter-spacing:1.973400px;}
.ls4c{letter-spacing:1.980000px;}
.ls70{letter-spacing:2.016000px;}
.ls6{letter-spacing:2.040000px;}
.ls8a{letter-spacing:2.064000px;}
.ls9{letter-spacing:2.100000px;}
.ls5f{letter-spacing:2.112000px;}
.ls2d{letter-spacing:2.160000px;}
.ls35{letter-spacing:2.220000px;}
.ls2a{letter-spacing:2.280000px;}
.ls20{letter-spacing:2.340000px;}
.ls18{letter-spacing:2.400000px;}
.ls65{letter-spacing:2.448000px;}
.ls15{letter-spacing:2.460000px;}
.ls62{letter-spacing:2.496000px;}
.ls38{letter-spacing:2.520000px;}
.ls89{letter-spacing:2.544000px;}
.ls8f{letter-spacing:2.592000px;}
.ls4f{letter-spacing:2.640000px;}
.ls7d{letter-spacing:2.688000px;}
.ls50{letter-spacing:2.700000px;}
.ls64{letter-spacing:2.736000px;}
.ls1f{letter-spacing:2.880000px;}
.ls42{letter-spacing:2.940000px;}
.ls82{letter-spacing:2.976000px;}
.ls22{letter-spacing:3.000000px;}
.ls8d{letter-spacing:3.024000px;}
.ls36{letter-spacing:3.060000px;}
.ls71{letter-spacing:3.072000px;}
.ls4e{letter-spacing:3.120000px;}
.ls26{letter-spacing:3.180000px;}
.ls1e{letter-spacing:3.240000px;}
.ls88{letter-spacing:3.264000px;}
.ls3b{letter-spacing:3.300000px;}
.ls7f{letter-spacing:3.360000px;}
.ls47{letter-spacing:3.480000px;}
.ls39{letter-spacing:3.540000px;}
.ls79{letter-spacing:3.552000px;}
.ls81{letter-spacing:3.648000px;}
.ls24{letter-spacing:3.780000px;}
.ls67{letter-spacing:3.792000px;}
.ls8b{letter-spacing:3.888000px;}
.ls5b{letter-spacing:3.900000px;}
.ls43{letter-spacing:3.960000px;}
.ls41{letter-spacing:4.140000px;}
.ls59{letter-spacing:4.200000px;}
.ls76{letter-spacing:4.608000px;}
.ls4d{letter-spacing:4.860000px;}
.ls8e{letter-spacing:4.944000px;}
.ls1c{letter-spacing:5.220000px;}
.ls5a{letter-spacing:5.340000px;}
.ls5c{letter-spacing:5.460000px;}
.ls5d{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.120000px;}
.ls29{letter-spacing:6.300000px;}
.ls56{letter-spacing:64.473600px;}
.ls55{letter-spacing:76.956600px;}
.ls3e{letter-spacing:83.174810px;}
.ls54{letter-spacing:88.738800px;}
.ls52{letter-spacing:89.089200px;}
.ls53{letter-spacing:89.133000px;}
.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;}
}
.ws51{word-spacing:-83.174810px;}
.ws3{word-spacing:-21.120000px;}
.ws78{word-spacing:-20.880000px;}
.ws49{word-spacing:-19.628690px;}
.ws30{word-spacing:-18.348000px;}
.ws12{word-spacing:-16.920000px;}
.ws1{word-spacing:-16.680000px;}
.ws6c{word-spacing:-15.900000px;}
.ws7d{word-spacing:-15.792000px;}
.ws11{word-spacing:-15.780000px;}
.wsa1{word-spacing:-15.648000px;}
.ws33{word-spacing:-15.600000px;}
.ws6d{word-spacing:-15.480000px;}
.ws13{word-spacing:-15.300000px;}
.ws36{word-spacing:-15.240000px;}
.ws83{word-spacing:-15.072000px;}
.ws34{word-spacing:-15.060000px;}
.ws4{word-spacing:-15.000000px;}
.ws4b{word-spacing:-14.721601px;}
.ws9f{word-spacing:-14.688000px;}
.ws82{word-spacing:-13.824000px;}
.ws7a{word-spacing:-13.776000px;}
.ws79{word-spacing:-13.728000px;}
.wsa2{word-spacing:-13.440000px;}
.ws5{word-spacing:-13.344000px;}
.ws7e{word-spacing:-13.296000px;}
.wsa4{word-spacing:-13.104000px;}
.wsa0{word-spacing:-12.960000px;}
.ws9e{word-spacing:-12.624000px;}
.ws7b{word-spacing:-12.576000px;}
.ws84{word-spacing:-12.528000px;}
.ws2{word-spacing:-12.510000px;}
.ws81{word-spacing:-12.480000px;}
.ws80{word-spacing:-12.288000px;}
.wsa3{word-spacing:-12.144000px;}
.ws7c{word-spacing:-12.048000px;}
.ws7f{word-spacing:-12.000000px;}
.ws57{word-spacing:-11.781504px;}
.ws56{word-spacing:-11.697350px;}
.ws0{word-spacing:-10.508400px;}
.ws55{word-spacing:-9.260402px;}
.ws35{word-spacing:-9.000000px;}
.ws52{word-spacing:-8.773013px;}
.ws37{word-spacing:-7.200000px;}
.ws2e{word-spacing:-4.392000px;}
.ws4d{word-spacing:-4.307015px;}
.ws2d{word-spacing:-4.176000px;}
.ws5e{word-spacing:-4.140000px;}
.ws4e{word-spacing:-4.095194px;}
.wsc1{word-spacing:-3.888000px;}
.ws8d{word-spacing:-3.792000px;}
.ws3e{word-spacing:-3.780000px;}
.wsb2{word-spacing:-3.648000px;}
.ws5f{word-spacing:-3.480000px;}
.ws2f{word-spacing:-3.456000px;}
.ws4c{word-spacing:-3.389126px;}
.ws48{word-spacing:-3.300000px;}
.wsbc{word-spacing:-3.264000px;}
.ws62{word-spacing:-3.240000px;}
.ws97{word-spacing:-3.120000px;}
.ws60{word-spacing:-2.940000px;}
.ws7{word-spacing:-2.886000px;}
.ws20{word-spacing:-2.880000px;}
.ws8b{word-spacing:-2.736000px;}
.wsae{word-spacing:-2.688000px;}
.wsb8{word-spacing:-2.640000px;}
.ws1f{word-spacing:-2.220000px;}
.ws8c{word-spacing:-2.160000px;}
.ws21{word-spacing:-2.100000px;}
.ws71{word-spacing:-1.980000px;}
.ws1c{word-spacing:-1.920000px;}
.ws93{word-spacing:-1.824000px;}
.ws86{word-spacing:-1.776000px;}
.wsc0{word-spacing:-1.728000px;}
.ws59{word-spacing:-1.680000px;}
.ws39{word-spacing:-1.620000px;}
.ws5d{word-spacing:-1.560000px;}
.ws89{word-spacing:-1.488000px;}
.wsb3{word-spacing:-1.440000px;}
.ws65{word-spacing:-1.344000px;}
.ws90{word-spacing:-1.296000px;}
.ws5a{word-spacing:-1.200000px;}
.wsa9{word-spacing:-1.104000px;}
.ws41{word-spacing:-1.080000px;}
.wsaa{word-spacing:-1.056000px;}
.wsb1{word-spacing:-1.008000px;}
.wsa8{word-spacing:-0.960000px;}
.wsb4{word-spacing:-0.912000px;}
.ws6f{word-spacing:-0.900000px;}
.ws87{word-spacing:-0.864000px;}
.ws9b{word-spacing:-0.816000px;}
.ws16{word-spacing:-0.780000px;}
.ws9a{word-spacing:-0.624000px;}
.ws8a{word-spacing:-0.576000px;}
.ws99{word-spacing:-0.528000px;}
.ws75{word-spacing:-0.480000px;}
.ws91{word-spacing:-0.432000px;}
.ws2c{word-spacing:-0.420000px;}
.ws14{word-spacing:-0.360000px;}
.wsab{word-spacing:-0.336000px;}
.ws23{word-spacing:-0.300000px;}
.ws9d{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.240000px;}
.ws32{word-spacing:-0.192000px;}
.wsb5{word-spacing:-0.144000px;}
.ws46{word-spacing:-0.120000px;}
.ws68{word-spacing:-0.096000px;}
.ws3c{word-spacing:-0.060000px;}
.ws94{word-spacing:-0.048000px;}
.ws6b{word-spacing:-0.042077px;}
.ws6{word-spacing:0.000000px;}
.ws69{word-spacing:0.033311px;}
.ws77{word-spacing:0.043800px;}
.ws98{word-spacing:0.048000px;}
.ws61{word-spacing:0.060000px;}
.wsb0{word-spacing:0.096000px;}
.ws45{word-spacing:0.120000px;}
.wsa6{word-spacing:0.144000px;}
.wsa5{word-spacing:0.192000px;}
.ws18{word-spacing:0.240000px;}
.wsb9{word-spacing:0.288000px;}
.ws1a{word-spacing:0.300000px;}
.ws43{word-spacing:0.360000px;}
.ws6a{word-spacing:0.378691px;}
.wsaf{word-spacing:0.384000px;}
.ws2a{word-spacing:0.420000px;}
.ws19{word-spacing:0.480000px;}
.ws76{word-spacing:0.600000px;}
.wse{word-spacing:0.840000px;}
.wsbb{word-spacing:0.864000px;}
.ws95{word-spacing:0.960000px;}
.wsbf{word-spacing:1.008000px;}
.wsbe{word-spacing:1.200000px;}
.ws8f{word-spacing:1.296000px;}
.ws88{word-spacing:1.344000px;}
.wsf{word-spacing:1.380000px;}
.wsad{word-spacing:1.392000px;}
.wsb7{word-spacing:1.440000px;}
.wsac{word-spacing:1.584000px;}
.ws42{word-spacing:1.680000px;}
.ws50{word-spacing:1.728000px;}
.ws40{word-spacing:1.740000px;}
.ws5b{word-spacing:1.800000px;}
.wsba{word-spacing:1.824000px;}
.wsc{word-spacing:1.860000px;}
.ws15{word-spacing:1.920000px;}
.ws1b{word-spacing:1.980000px;}
.ws9c{word-spacing:2.016000px;}
.ws29{word-spacing:2.040000px;}
.ws64{word-spacing:2.160000px;}
.ws1d{word-spacing:2.220000px;}
.wsa7{word-spacing:2.256000px;}
.ws72{word-spacing:2.280000px;}
.ws25{word-spacing:2.340000px;}
.ws74{word-spacing:2.460000px;}
.ws5c{word-spacing:2.520000px;}
.ws1e{word-spacing:2.580000px;}
.wsc2{word-spacing:2.592000px;}
.ws24{word-spacing:2.700000px;}
.ws67{word-spacing:2.736000px;}
.ws2b{word-spacing:2.760000px;}
.ws92{word-spacing:2.784000px;}
.ws3b{word-spacing:2.820000px;}
.ws22{word-spacing:2.880000px;}
.wsb6{word-spacing:2.976000px;}
.ws73{word-spacing:3.000000px;}
.ws63{word-spacing:3.060000px;}
.ws96{word-spacing:3.072000px;}
.ws17{word-spacing:3.120000px;}
.wsb{word-spacing:3.240000px;}
.ws3d{word-spacing:3.540000px;}
.ws26{word-spacing:3.720000px;}
.ws28{word-spacing:3.840000px;}
.ws70{word-spacing:3.900000px;}
.ws31{word-spacing:3.936000px;}
.ws66{word-spacing:3.984000px;}
.ws3f{word-spacing:4.140000px;}
.ws27{word-spacing:4.320000px;}
.ws10{word-spacing:4.440000px;}
.ws3a{word-spacing:4.500000px;}
.ws47{word-spacing:4.680000px;}
.ws9{word-spacing:4.740000px;}
.ws6e{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
.ws8e{word-spacing:5.328000px;}
.ws85{word-spacing:5.520000px;}
.ws44{word-spacing:6.060000px;}
.wsbd{word-spacing:7.248000px;}
.ws4a{word-spacing:28.030900px;}
.ws54{word-spacing:54.163361px;}
.ws53{word-spacing:54.363226px;}
.ws58{word-spacing:301.929091px;}
.ws38{word-spacing:329.184000px;}
.ws4f{word-spacing:2374.219529px;}
._b{margin-left:-2898.096000px;}
._c{margin-left:-2874.288000px;}
._2b{margin-left:-670.946134px;}
._3{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._5{width:1.052400px;}
._7{width:2.580000px;}
._a{width:3.960000px;}
._6{width:5.280000px;}
._8{width:7.170000px;}
._9{width:8.430000px;}
._d{width:9.450000px;}
._29{width:65.523110px;}
._28{width:83.527844px;}
._17{width:116.592000px;}
._14{width:121.440000px;}
._21{width:126.336000px;}
._20{width:128.448000px;}
._16{width:130.752000px;}
._18{width:138.336000px;}
._26{width:140.160000px;}
._1c{width:145.440000px;}
._f{width:156.096000px;}
._24{width:157.440000px;}
._13{width:160.512000px;}
._22{width:162.144000px;}
._1b{width:164.928000px;}
._25{width:168.480000px;}
._e{width:175.056000px;}
._23{width:177.792000px;}
._1a{width:179.142000px;}
._12{width:185.376000px;}
._1f{width:189.744000px;}
._1d{width:198.144000px;}
._19{width:201.792000px;}
._1e{width:213.840000px;}
._15{width:252.144000px;}
._27{width:265.736400px;}
._11{width:368.304000px;}
._2a{width:410.627491px;}
._10{width:513.936000px;}
.fc3{color:rgb(114,113,113);}
.fc2{color:rgb(125,124,125);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fsd{font-size:28.800000px;}
.fs10{font-size:31.557600px;}
.fs11{font-size:33.310800px;}
.fsc{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs12{font-size:42.076800px;}
.fs13{font-size:43.800000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsf{font-size:52.955400px;}
.fs14{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fse{font-size:70.606800px;}
.fsa{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.y16f{bottom:82.734750px;}
.y103{bottom:83.200800px;}
.y5f{bottom:83.770350px;}
.y162{bottom:83.800350px;}
.yfd{bottom:83.920350px;}
.y76{bottom:84.070350px;}
.y166{bottom:84.074700px;}
.y193{bottom:86.121900px;}
.y1e{bottom:88.026750px;}
.yb8{bottom:94.340100px;}
.y1d3{bottom:95.263500px;}
.y11a{bottom:96.312900px;}
.y102{bottom:98.944800px;}
.ybb{bottom:99.763800px;}
.y165{bottom:99.818700px;}
.y192{bottom:101.121900px;}
.y5e{bottom:101.770350px;}
.y161{bottom:101.800350px;}
.yfc{bottom:101.920350px;}
.y75{bottom:102.070350px;}
.y1d{bottom:103.023000px;}
.y79{bottom:105.078750px;}
.y1d2{bottom:110.263500px;}
.yb7{bottom:110.588100px;}
.y101{bottom:114.688800px;}
.yba{bottom:115.507800px;}
.y164{bottom:115.562700px;}
.y191{bottom:116.121900px;}
.y5d{bottom:119.770350px;}
.y160{bottom:119.800350px;}
.yfb{bottom:119.920350px;}
.y74{bottom:120.070350px;}
.y78{bottom:120.822750px;}
.y1d1{bottom:125.263500px;}
.yb6{bottom:126.836100px;}
.y100{bottom:130.432800px;}
.y190{bottom:131.121900px;}
.y163{bottom:131.306700px;}
.y5c{bottom:137.770350px;}
.y15f{bottom:137.800350px;}
.yfa{bottom:137.920350px;}
.y73{bottom:138.070350px;}
.yc9{bottom:138.543000px;}
.y1d0{bottom:140.263500px;}
.yb5{bottom:143.084100px;}
.yc8{bottom:144.274350px;}
.ycf{bottom:144.274670px;}
.y18f{bottom:146.121900px;}
.yff{bottom:146.176800px;}
.y16e{bottom:154.455000px;}
.y1cf{bottom:155.263500px;}
.y5b{bottom:155.770350px;}
.y15e{bottom:155.800350px;}
.yf9{bottom:155.920350px;}
.y72{bottom:156.070350px;}
.yc3{bottom:157.157675px;}
.y16d{bottom:158.837400px;}
.yb4{bottom:159.332100px;}
.y18e{bottom:161.121900px;}
.yfe{bottom:161.920800px;}
.y7c{bottom:165.300300px;}
.yc2{bottom:166.071783px;}
.y28{bottom:166.615050px;}
.y1ce{bottom:170.263500px;}
.y5a{bottom:173.770350px;}
.y15d{bottom:173.800350px;}
.yf8{bottom:173.920350px;}
.y71{bottom:174.070350px;}
.yc1{bottom:175.074150px;}
.yc4{bottom:175.164900px;}
.yb3{bottom:175.580100px;}
.y18d{bottom:176.121900px;}
.y16c{bottom:176.775150px;}
.y27{bottom:184.615050px;}
.y1cd{bottom:185.263500px;}
.y113{bottom:185.724000px;}
.y11b{bottom:188.429700px;}
.y18c{bottom:191.121900px;}
.y59{bottom:191.770350px;}
.y15c{bottom:191.800350px;}
.yb2{bottom:191.828100px;}
.yf7{bottom:191.920350px;}
.y70{bottom:192.070350px;}
.ybc{bottom:199.081350px;}
.y1cc{bottom:200.263500px;}
.y10d{bottom:200.723400px;}
.y26{bottom:202.615050px;}
.y167{bottom:203.320350px;}
.y18b{bottom:206.121900px;}
.yb1{bottom:208.076100px;}
.y15b{bottom:209.800350px;}
.yf6{bottom:209.920350px;}
.y6f{bottom:210.070350px;}
.y1cb{bottom:215.263500px;}
.y25{bottom:220.615050px;}
.y18a{bottom:221.121900px;}
.yb0{bottom:224.324100px;}
.y58{bottom:227.365350px;}
.y15a{bottom:227.800350px;}
.yf5{bottom:227.920350px;}
.y6e{bottom:228.070350px;}
.y1ca{bottom:230.263500px;}
.y10e{bottom:232.281000px;}
.y189{bottom:236.121900px;}
.y24{bottom:238.615050px;}
.yaf{bottom:240.572100px;}
.ybd{bottom:244.446219px;}
.y1c9{bottom:245.263500px;}
.y159{bottom:245.800350px;}
.yf4{bottom:245.920350px;}
.y6d{bottom:246.070350px;}
.y188{bottom:251.121900px;}
.y23{bottom:256.615050px;}
.yae{bottom:256.820100px;}
.y1c8{bottom:260.263500px;}
.y57{bottom:263.230350px;}
.y158{bottom:263.800350px;}
.y10f{bottom:263.838600px;}
.yf3{bottom:263.920350px;}
.y6c{bottom:264.070350px;}
.y187{bottom:266.121900px;}
.y168{bottom:270.586200px;}
.yad{bottom:273.068100px;}
.y22{bottom:274.615050px;}
.y1c7{bottom:275.263500px;}
.y186{bottom:281.121900px;}
.y157{bottom:281.800350px;}
.yf2{bottom:281.920350px;}
.y6b{bottom:282.070350px;}
.y114{bottom:287.409150px;}
.ybe{bottom:289.811088px;}
.y1c6{bottom:290.263500px;}
.y21{bottom:292.615050px;}
.y110{bottom:295.396200px;}
.y185{bottom:296.121900px;}
.y156{bottom:299.800350px;}
.yf1{bottom:299.920350px;}
.y6a{bottom:300.070350px;}
.yac{bottom:302.072100px;}
.y1c5{bottom:305.263500px;}
.y20{bottom:310.615050px;}
.y184{bottom:311.121900px;}
.y118{bottom:316.365066px;}
.yaa{bottom:316.572150px;}
.y56{bottom:317.770350px;}
.y155{bottom:317.800350px;}
.yf0{bottom:317.920350px;}
.y69{bottom:318.070350px;}
.y1c4{bottom:320.263500px;}
.y183{bottom:326.121900px;}
.yc7{bottom:326.439300px;}
.y111{bottom:326.953800px;}
.y2a{bottom:328.615050px;}
.yab{bottom:331.080150px;}
.ybf{bottom:335.087698px;}
.y1c3{bottom:335.263500px;}
.y55{bottom:335.770350px;}
.y154{bottom:335.800350px;}
.yef{bottom:335.920350px;}
.y169{bottom:337.852050px;}
.y182{bottom:341.121900px;}
.y117{bottom:341.558550px;}
.y1f{bottom:346.210050px;}
.y29{bottom:346.615050px;}
.yc6{bottom:349.298250px;}
.y1c2{bottom:350.263500px;}
.y68{bottom:353.665350px;}
.y54{bottom:353.770350px;}
.y153{bottom:353.800350px;}
.yee{bottom:353.920350px;}
.y181{bottom:356.121900px;}
.y112{bottom:358.511400px;}
.yce{bottom:362.979233px;}
.ya9{bottom:363.460350px;}
.y1c1{bottom:365.263500px;}
.y119{bottom:366.983456px;}
.y116{bottom:368.769900px;}
.y180{bottom:371.121900px;}
.y53{bottom:371.770350px;}
.y152{bottom:371.800350px;}
.yed{bottom:371.920350px;}
.yc5{bottom:372.157050px;}
.y1c0{bottom:380.263500px;}
.yc0{bottom:380.452567px;}
.ya8{bottom:382.960350px;}
.y17f{bottom:386.121900px;}
.y52{bottom:389.770350px;}
.y151{bottom:389.800350px;}
.y67{bottom:389.920350px;}
.y1bf{bottom:395.263500px;}
.y17e{bottom:401.121900px;}
.y16a{bottom:405.216450px;}
.yd0{bottom:405.341700px;}
.yec{bottom:407.515350px;}
.y51{bottom:407.770350px;}
.y150{bottom:407.800350px;}
.y66{bottom:407.920350px;}
.y1be{bottom:410.263500px;}
.y115{bottom:411.154650px;}
.yca{bottom:412.426800px;}
.y17d{bottom:416.121900px;}
.y10c{bottom:420.099958px;}
.y11c{bottom:420.106314px;}
.y1bd{bottom:425.263500px;}
.ya5{bottom:425.637600px;}
.y50{bottom:425.770350px;}
.y65{bottom:425.920350px;}
.y1c{bottom:426.064200px;}
.y17c{bottom:431.121900px;}
.y10b{bottom:437.038500px;}
.y1bc{bottom:440.263500px;}
.yd1{bottom:442.057236px;}
.y14f{bottom:443.395350px;}
.ya4{bottom:443.637600px;}
.y4f{bottom:443.770350px;}
.y64{bottom:443.920350px;}
.y17b{bottom:446.121900px;}
.y7b{bottom:447.558300px;}
.y104{bottom:447.978750px;}
.y1b{bottom:453.409200px;}
.y1bb{bottom:455.263500px;}
.ya3{bottom:461.637600px;}
.y4e{bottom:461.770350px;}
.y63{bottom:461.920350px;}
.y1ba{bottom:470.263500px;}
.y105{bottom:471.331374px;}
.y1a{bottom:471.409200px;}
.y16b{bottom:472.580850px;}
.yd2{bottom:478.772772px;}
.y17a{bottom:479.232600px;}
.ya2{bottom:479.637600px;}
.y4d{bottom:479.770350px;}
.y62{bottom:479.920350px;}
.y1b9{bottom:485.263500px;}
.y19{bottom:489.409200px;}
.y106{bottom:494.739224px;}
.ya1{bottom:497.637600px;}
.y4c{bottom:497.770350px;}
.y61{bottom:497.920350px;}
.y14e{bottom:497.935350px;}
.y1b8{bottom:500.263500px;}
.y18{bottom:507.409200px;}
.y1b7{bottom:515.263500px;}
.yd3{bottom:515.488308px;}
.ya0{bottom:515.637600px;}
.y4b{bottom:515.770350px;}
.y14d{bottom:515.935350px;}
.y107{bottom:518.091848px;}
.y17{bottom:525.409200px;}
.y1b6{bottom:530.263500px;}
.y60{bottom:533.515350px;}
.yd7{bottom:533.582850px;}
.y9f{bottom:533.637600px;}
.y4a{bottom:533.770350px;}
.y179{bottom:533.772600px;}
.y131{bottom:533.920350px;}
.y14c{bottom:533.935350px;}
.y108{bottom:541.499698px;}
.y16{bottom:543.409200px;}
.y1b5{bottom:545.263500px;}
.y9e{bottom:551.637600px;}
.y49{bottom:551.770350px;}
.y178{bottom:551.772600px;}
.y130{bottom:551.920350px;}
.y14b{bottom:551.935350px;}
.yd4{bottom:552.203844px;}
.yd6{bottom:556.441050px;}
.y1b4{bottom:560.263500px;}
.y15{bottom:561.409200px;}
.y109{bottom:564.907547px;}
.y9d{bottom:569.637600px;}
.y48{bottom:569.770350px;}
.y177{bottom:569.772600px;}
.y12f{bottom:569.920350px;}
.y14a{bottom:569.935350px;}
.ycb{bottom:570.828000px;}
.y1b3{bottom:575.263500px;}
.y14{bottom:579.409200px;}
.y9c{bottom:587.637600px;}
.y47{bottom:587.770350px;}
.y176{bottom:587.772600px;}
.y12e{bottom:587.920350px;}
.y149{bottom:587.935350px;}
.y10a{bottom:588.260171px;}
.yd5{bottom:588.919380px;}
.y1b2{bottom:590.263500px;}
.y13{bottom:597.409200px;}
.y7a{bottom:602.178300px;}
.y1b1{bottom:605.263500px;}
.y175{bottom:605.367600px;}
.y46{bottom:605.770350px;}
.y12d{bottom:605.920350px;}
.y148{bottom:605.935350px;}
.y86{bottom:613.816350px;}
.yd8{bottom:614.604150px;}
.y12{bottom:615.409200px;}
.y1b0{bottom:620.263500px;}
.y9b{bottom:623.232600px;}
.y45{bottom:623.770350px;}
.y12c{bottom:623.920350px;}
.y147{bottom:623.935350px;}
.y11{bottom:633.409200px;}
.y1af{bottom:635.263500px;}
.y174{bottom:641.367600px;}
.y44{bottom:641.770350px;}
.y12b{bottom:641.920350px;}
.y146{bottom:641.935350px;}
.y1ae{bottom:650.263500px;}
.yd9{bottom:651.407944px;}
.y10{bottom:651.409200px;}
.y43{bottom:659.770350px;}
.y12a{bottom:659.920350px;}
.y145{bottom:659.935350px;}
.y1ad{bottom:665.263500px;}
.yf{bottom:669.409200px;}
.y42{bottom:677.770350px;}
.y9a{bottom:677.772600px;}
.y129{bottom:677.920350px;}
.y144{bottom:677.935350px;}
.y1ed{bottom:680.263500px;}
.y1ac{bottom:680.265900px;}
.ye{bottom:687.409200px;}
.yda{bottom:688.123480px;}
.y1ec{bottom:695.263500px;}
.y1ab{bottom:695.265900px;}
.y41{bottom:695.770350px;}
.y99{bottom:695.772600px;}
.y128{bottom:695.920350px;}
.y143{bottom:695.935350px;}
.y1eb{bottom:710.263500px;}
.y1aa{bottom:710.265900px;}
.y173{bottom:713.367600px;}
.y40{bottom:713.770350px;}
.y98{bottom:713.772600px;}
.y127{bottom:713.920350px;}
.y142{bottom:713.935350px;}
.ydb{bottom:724.839016px;}
.y1ea{bottom:725.263500px;}
.y1a9{bottom:725.265900px;}
.ye0{bottom:731.105400px;}
.y3f{bottom:731.770350px;}
.y97{bottom:731.772600px;}
.y126{bottom:731.920350px;}
.y141{bottom:731.935350px;}
.yd{bottom:732.567300px;}
.y1e9{bottom:740.263500px;}
.y1a8{bottom:740.265900px;}
.y82{bottom:743.974200px;}
.yc{bottom:745.018050px;}
.y3e{bottom:749.770350px;}
.y96{bottom:749.772600px;}
.y125{bottom:749.920350px;}
.y140{bottom:749.935350px;}
.ydf{bottom:754.405950px;}
.y1e8{bottom:755.263500px;}
.y1a7{bottom:755.265900px;}
.ydc{bottom:761.642811px;}
.y172{bottom:767.367600px;}
.y3d{bottom:767.770350px;}
.y95{bottom:767.772600px;}
.y81{bottom:767.866200px;}
.y124{bottom:767.920350px;}
.y13f{bottom:767.935350px;}
.y1e7{bottom:770.263500px;}
.y1a6{bottom:770.265900px;}
.yde{bottom:777.794250px;}
.ycc{bottom:779.206318px;}
.yb{bottom:780.594150px;}
.y1e6{bottom:785.263500px;}
.y1a5{bottom:785.265900px;}
.y3c{bottom:785.770350px;}
.y94{bottom:785.772600px;}
.y123{bottom:785.920350px;}
.y13e{bottom:785.935350px;}
.ya{bottom:794.094150px;}
.ydd{bottom:798.358347px;}
.y1e5{bottom:800.263500px;}
.y1a4{bottom:800.265900px;}
.y7f{bottom:803.027700px;}
.y9{bottom:803.733600px;}
.y3b{bottom:803.770350px;}
.y93{bottom:803.772600px;}
.y122{bottom:803.920350px;}
.y13d{bottom:803.935350px;}
.y1e4{bottom:815.263500px;}
.y1a3{bottom:815.265900px;}
.y8{bottom:821.094150px;}
.y3a{bottom:821.770350px;}
.y92{bottom:821.772600px;}
.y121{bottom:821.920350px;}
.y13c{bottom:821.935350px;}
.ye1{bottom:823.423500px;}
.y7e{bottom:829.988700px;}
.y1e3{bottom:830.263500px;}
.y1a2{bottom:830.265900px;}
.y39{bottom:839.770350px;}
.y91{bottom:839.772600px;}
.y120{bottom:839.920350px;}
.y13b{bottom:839.935350px;}
.y1e2{bottom:845.263500px;}
.y1a1{bottom:845.265900px;}
.y7{bottom:851.380950px;}
.y7d{bottom:853.880700px;}
.y38{bottom:857.770350px;}
.y90{bottom:857.772600px;}
.y11f{bottom:857.920350px;}
.y13a{bottom:857.935350px;}
.ye2{bottom:859.786002px;}
.y1e1{bottom:860.263500px;}
.y1a0{bottom:860.265900px;}
.ye6{bottom:866.781150px;}
.y80{bottom:867.806700px;}
.y1e0{bottom:875.263500px;}
.y19f{bottom:875.265900px;}
.y37{bottom:875.770350px;}
.y8f{bottom:875.772600px;}
.y11e{bottom:875.920350px;}
.y139{bottom:875.935350px;}
.y1df{bottom:890.263500px;}
.y19e{bottom:890.265900px;}
.y171{bottom:893.367600px;}
.y36{bottom:893.770350px;}
.y8e{bottom:893.772600px;}
.y138{bottom:893.935350px;}
.ye3{bottom:896.148504px;}
.y6{bottom:897.543600px;}
.y1de{bottom:905.263500px;}
.y19d{bottom:905.265900px;}
.y11d{bottom:911.515350px;}
.y35{bottom:911.770350px;}
.y8d{bottom:911.772600px;}
.y137{bottom:911.935350px;}
.y1dd{bottom:920.263500px;}
.y19c{bottom:920.265900px;}
.yeb{bottom:929.365350px;}
.y34{bottom:929.770350px;}
.y8c{bottom:929.772600px;}
.y136{bottom:929.935350px;}
.y84{bottom:930.465450px;}
.ye4{bottom:932.599265px;}
.y5{bottom:934.004400px;}
.y1dc{bottom:935.263500px;}
.y19b{bottom:935.265900px;}
.y33{bottom:947.770350px;}
.y8b{bottom:947.772600px;}
.ye9{bottom:948.222300px;}
.y1db{bottom:950.263500px;}
.y19a{bottom:950.265900px;}
.y83{bottom:954.357450px;}
.yea{bottom:965.230350px;}
.y1da{bottom:965.263500px;}
.y199{bottom:965.265900px;}
.y135{bottom:965.530350px;}
.y32{bottom:965.770350px;}
.y8a{bottom:965.772600px;}
.ye8{bottom:968.256150px;}
.ye5{bottom:968.961767px;}
.y4{bottom:970.465200px;}
.y1d9{bottom:980.263500px;}
.y198{bottom:980.265900px;}
.y85{bottom:982.258350px;}
.y31{bottom:983.770350px;}
.y89{bottom:983.772600px;}
.ye7{bottom:988.290900px;}
.ycd{bottom:988.467222px;}
.y1d8{bottom:995.263500px;}
.y197{bottom:995.265900px;}
.y30{bottom:1001.770350px;}
.y88{bottom:1001.772600px;}
.y134{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y1d7{bottom:1010.263500px;}
.y196{bottom:1010.265900px;}
.y2f{bottom:1019.770350px;}
.ya7{bottom:1019.772600px;}
.y133{bottom:1019.785350px;}
.y1d6{bottom:1025.263500px;}
.y195{bottom:1025.265900px;}
.y87{bottom:1037.367600px;}
.y2e{bottom:1037.770350px;}
.ya6{bottom:1037.772600px;}
.y132{bottom:1037.785350px;}
.y1d5{bottom:1040.263500px;}
.y194{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y77{bottom:1132.418700px;}
.y170{bottom:1132.421700px;}
.y1d4{bottom:1132.423500px;}
.yb9{bottom:1132.472100px;}
.y2c{bottom:1136.089500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h1a{height:22.990205px;}
.h1b{height:24.267438px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.h1d{height:30.653606px;}
.h1e{height:30.674152px;}
.h1f{height:31.908984px;}
.hc{height:32.783203px;}
.h7{height:32.805176px;}
.h11{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h16{height:35.951138px;}
.h18{height:38.578836px;}
.h20{height:39.339844px;}
.he{height:41.689453px;}
.hd{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.717434px;}
.h9{height:43.740234px;}
.h14{height:44.949872px;}
.h15{height:44.958872px;}
.h13{height:48.082031px;}
.h5{height:49.138634px;}
.h17{height:51.438157px;}
.h12{height:52.453125px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h21{height:338.986500px;}
.h1c{height:420.181500px;}
.h19{height:881.929500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w4{width:337.885500px;}
.w3{width:338.031000px;}
.w2{width:718.582500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x48{left:9.026850px;}
.x52{left:11.585400px;}
.x37{left:15.147750px;}
.x3d{left:35.096850px;}
.x49{left:54.826650px;}
.xa{left:76.535400px;}
.x20{left:78.661350px;}
.x47{left:91.140187px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x46{left:99.913200px;}
.x44{left:102.549783px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x50{left:117.636600px;}
.x55{left:123.307050px;}
.x3{left:125.433000px;}
.x1c{left:127.306350px;}
.x6{left:131.816400px;}
.x26{left:132.892306px;}
.x25{left:142.689000px;}
.xc{left:144.710400px;}
.x45{left:149.283348px;}
.x4b{left:171.002059px;}
.x23{left:174.777900px;}
.x24{left:178.425900px;}
.x53{left:194.285400px;}
.x43{left:198.879300px;}
.x27{left:200.231051px;}
.x17{left:203.046150px;}
.x1f{left:211.115400px;}
.x5{left:212.876400px;}
.x28{left:222.472193px;}
.x51{left:236.374650px;}
.x4c{left:242.512946px;}
.x29{left:244.713335px;}
.x36{left:253.539600px;}
.x18{left:259.707150px;}
.x2a{left:266.954476px;}
.x12{left:273.003150px;}
.x22{left:278.517900px;}
.x16{left:280.876650px;}
.x2b{left:289.195619px;}
.x19{left:300.561150px;}
.x42{left:306.353296px;}
.x2c{left:311.525019px;}
.x40{left:318.480014px;}
.x41{left:319.521464px;}
.x3f{left:323.528400px;}
.x21{left:326.929350px;}
.x2d{left:333.766161px;}
.x15{left:335.607150px;}
.x14{left:352.569150px;}
.x2e{left:356.007303px;}
.x13{left:367.107150px;}
.x4a{left:376.641900px;}
.x2f{left:378.248445px;}
.x30{left:400.577845px;}
.x31{left:422.818987px;}
.x32{left:445.060130px;}
.x9{left:455.041500px;}
.xd{left:457.070400px;}
.x33{left:467.301271px;}
.x4d{left:478.345350px;}
.x7{left:480.476400px;}
.x54{left:482.615400px;}
.x34{left:489.454200px;}
.xe{left:491.090400px;}
.x1d{left:498.232350px;}
.x56{left:503.887050px;}
.x4e{left:512.365350px;}
.x3a{left:528.236146px;}
.x39{left:540.451122px;}
.x38{left:545.411250px;}
.x1a{left:561.261000px;}
.x4f{left:591.970350px;}
.x1b{left:602.115000px;}
.x3b{left:633.087244px;}
.x11{left:660.939150px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x57{left:721.703250px;}
.xf{left:728.391600px;}
.x3e{left:740.462550px;}
.x35{left:748.051800px;}
.x1e{left:749.651400px;}
.x3c{left:750.965400px;}
@media print{
.v5{vertical-align:-34.200107pt;}
.v2{vertical-align:-13.726400pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v4{vertical-align:14.169067pt;}
.v3{vertical-align:17.721067pt;}
.v1{vertical-align:19.217067pt;}
.lse{letter-spacing:-0.693333pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls57{letter-spacing:-0.373333pt;}
.ls4a{letter-spacing:-0.336614pt;}
.ls3d{letter-spacing:-0.320000pt;}
.ls48{letter-spacing:-0.266667pt;}
.ls87{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.213333pt;}
.ls84{letter-spacing:-0.170667pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls85{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.106667pt;}
.ls86{letter-spacing:-0.085333pt;}
.ls2f{letter-spacing:-0.053333pt;}
.ls78{letter-spacing:-0.042667pt;}
.ls58{letter-spacing:-0.038933pt;}
.ls49{letter-spacing:-0.029610pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.004800pt;}
.ls4b{letter-spacing:0.037402pt;}
.ls51{letter-spacing:0.042667pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls46{letter-spacing:0.074803pt;}
.ls45{letter-spacing:0.085333pt;}
.ls7{letter-spacing:0.106667pt;}
.ls60{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.170667pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls6b{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.266667pt;}
.ls75{letter-spacing:0.298667pt;}
.ls10{letter-spacing:0.320000pt;}
.ls7b{letter-spacing:0.341333pt;}
.ls2b{letter-spacing:0.373333pt;}
.ls69{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls73{letter-spacing:0.469333pt;}
.ls14{letter-spacing:0.480000pt;}
.ls61{letter-spacing:0.512000pt;}
.ls2c{letter-spacing:0.533333pt;}
.ls7c{letter-spacing:0.554667pt;}
.ls23{letter-spacing:0.586667pt;}
.ls7e{letter-spacing:0.597333pt;}
.ls13{letter-spacing:0.640000pt;}
.ls72{letter-spacing:0.682667pt;}
.ls12{letter-spacing:0.693333pt;}
.ls74{letter-spacing:0.725333pt;}
.ls3a{letter-spacing:0.746667pt;}
.ls6e{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.800000pt;}
.ls6f{letter-spacing:0.810667pt;}
.ls11{letter-spacing:0.853333pt;}
.ls80{letter-spacing:0.896000pt;}
.ls4{letter-spacing:0.906667pt;}
.ls7a{letter-spacing:0.938667pt;}
.ls16{letter-spacing:0.960000pt;}
.ls63{letter-spacing:0.981333pt;}
.ls27{letter-spacing:1.013333pt;}
.lsc{letter-spacing:1.066667pt;}
.ls83{letter-spacing:1.109333pt;}
.ls37{letter-spacing:1.120000pt;}
.ls68{letter-spacing:1.152000pt;}
.ls3{letter-spacing:1.173333pt;}
.ls44{letter-spacing:1.194667pt;}
.ls21{letter-spacing:1.226667pt;}
.lsb{letter-spacing:1.280000pt;}
.ls6a{letter-spacing:1.322667pt;}
.ls8{letter-spacing:1.333333pt;}
.ls34{letter-spacing:1.386667pt;}
.ls66{letter-spacing:1.408000pt;}
.ls28{letter-spacing:1.440000pt;}
.ls6d{letter-spacing:1.450667pt;}
.ls3f{letter-spacing:1.493333pt;}
.ls5e{letter-spacing:1.536000pt;}
.ls33{letter-spacing:1.546667pt;}
.ls77{letter-spacing:1.578667pt;}
.ls40{letter-spacing:1.600000pt;}
.ls6c{letter-spacing:1.621333pt;}
.ls5{letter-spacing:1.653333pt;}
.ls19{letter-spacing:1.706667pt;}
.ls8c{letter-spacing:1.749333pt;}
.ls3c{letter-spacing:1.754133pt;}
.ls4c{letter-spacing:1.760000pt;}
.ls70{letter-spacing:1.792000pt;}
.ls6{letter-spacing:1.813333pt;}
.ls8a{letter-spacing:1.834667pt;}
.ls9{letter-spacing:1.866667pt;}
.ls5f{letter-spacing:1.877333pt;}
.ls2d{letter-spacing:1.920000pt;}
.ls35{letter-spacing:1.973333pt;}
.ls2a{letter-spacing:2.026667pt;}
.ls20{letter-spacing:2.080000pt;}
.ls18{letter-spacing:2.133333pt;}
.ls65{letter-spacing:2.176000pt;}
.ls15{letter-spacing:2.186667pt;}
.ls62{letter-spacing:2.218667pt;}
.ls38{letter-spacing:2.240000pt;}
.ls89{letter-spacing:2.261333pt;}
.ls8f{letter-spacing:2.304000pt;}
.ls4f{letter-spacing:2.346667pt;}
.ls7d{letter-spacing:2.389333pt;}
.ls50{letter-spacing:2.400000pt;}
.ls64{letter-spacing:2.432000pt;}
.ls1f{letter-spacing:2.560000pt;}
.ls42{letter-spacing:2.613333pt;}
.ls82{letter-spacing:2.645333pt;}
.ls22{letter-spacing:2.666667pt;}
.ls8d{letter-spacing:2.688000pt;}
.ls36{letter-spacing:2.720000pt;}
.ls71{letter-spacing:2.730667pt;}
.ls4e{letter-spacing:2.773333pt;}
.ls26{letter-spacing:2.826667pt;}
.ls1e{letter-spacing:2.880000pt;}
.ls88{letter-spacing:2.901333pt;}
.ls3b{letter-spacing:2.933333pt;}
.ls7f{letter-spacing:2.986667pt;}
.ls47{letter-spacing:3.093333pt;}
.ls39{letter-spacing:3.146667pt;}
.ls79{letter-spacing:3.157333pt;}
.ls81{letter-spacing:3.242667pt;}
.ls24{letter-spacing:3.360000pt;}
.ls67{letter-spacing:3.370667pt;}
.ls8b{letter-spacing:3.456000pt;}
.ls5b{letter-spacing:3.466667pt;}
.ls43{letter-spacing:3.520000pt;}
.ls41{letter-spacing:3.680000pt;}
.ls59{letter-spacing:3.733333pt;}
.ls76{letter-spacing:4.096000pt;}
.ls4d{letter-spacing:4.320000pt;}
.ls8e{letter-spacing:4.394667pt;}
.ls1c{letter-spacing:4.640000pt;}
.ls5a{letter-spacing:4.746667pt;}
.ls5c{letter-spacing:4.853333pt;}
.ls5d{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.440000pt;}
.ls29{letter-spacing:5.600000pt;}
.ls56{letter-spacing:57.309867pt;}
.ls55{letter-spacing:68.405867pt;}
.ls3e{letter-spacing:73.933165pt;}
.ls54{letter-spacing:78.878933pt;}
.ls52{letter-spacing:79.190400pt;}
.ls53{letter-spacing:79.229333pt;}
.ws51{word-spacing:-73.933165pt;}
.ws3{word-spacing:-18.773333pt;}
.ws78{word-spacing:-18.560000pt;}
.ws49{word-spacing:-17.447725pt;}
.ws30{word-spacing:-16.309333pt;}
.ws12{word-spacing:-15.040000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws6c{word-spacing:-14.133333pt;}
.ws7d{word-spacing:-14.037333pt;}
.ws11{word-spacing:-14.026667pt;}
.wsa1{word-spacing:-13.909333pt;}
.ws33{word-spacing:-13.866667pt;}
.ws6d{word-spacing:-13.760000pt;}
.ws13{word-spacing:-13.600000pt;}
.ws36{word-spacing:-13.546667pt;}
.ws83{word-spacing:-13.397333pt;}
.ws34{word-spacing:-13.386667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws4b{word-spacing:-13.085868pt;}
.ws9f{word-spacing:-13.056000pt;}
.ws82{word-spacing:-12.288000pt;}
.ws7a{word-spacing:-12.245333pt;}
.ws79{word-spacing:-12.202667pt;}
.wsa2{word-spacing:-11.946667pt;}
.ws5{word-spacing:-11.861333pt;}
.ws7e{word-spacing:-11.818667pt;}
.wsa4{word-spacing:-11.648000pt;}
.wsa0{word-spacing:-11.520000pt;}
.ws9e{word-spacing:-11.221333pt;}
.ws7b{word-spacing:-11.178667pt;}
.ws84{word-spacing:-11.136000pt;}
.ws2{word-spacing:-11.120000pt;}
.ws81{word-spacing:-11.093333pt;}
.ws80{word-spacing:-10.922667pt;}
.wsa3{word-spacing:-10.794667pt;}
.ws7c{word-spacing:-10.709333pt;}
.ws7f{word-spacing:-10.666667pt;}
.ws57{word-spacing:-10.472448pt;}
.ws56{word-spacing:-10.397645pt;}
.ws0{word-spacing:-9.340800pt;}
.ws55{word-spacing:-8.231469pt;}
.ws35{word-spacing:-8.000000pt;}
.ws52{word-spacing:-7.798234pt;}
.ws37{word-spacing:-6.400000pt;}
.ws2e{word-spacing:-3.904000pt;}
.ws4d{word-spacing:-3.828458pt;}
.ws2d{word-spacing:-3.712000pt;}
.ws5e{word-spacing:-3.680000pt;}
.ws4e{word-spacing:-3.640173pt;}
.wsc1{word-spacing:-3.456000pt;}
.ws8d{word-spacing:-3.370667pt;}
.ws3e{word-spacing:-3.360000pt;}
.wsb2{word-spacing:-3.242667pt;}
.ws5f{word-spacing:-3.093333pt;}
.ws2f{word-spacing:-3.072000pt;}
.ws4c{word-spacing:-3.012557pt;}
.ws48{word-spacing:-2.933333pt;}
.wsbc{word-spacing:-2.901333pt;}
.ws62{word-spacing:-2.880000pt;}
.ws97{word-spacing:-2.773333pt;}
.ws60{word-spacing:-2.613333pt;}
.ws7{word-spacing:-2.565333pt;}
.ws20{word-spacing:-2.560000pt;}
.ws8b{word-spacing:-2.432000pt;}
.wsae{word-spacing:-2.389333pt;}
.wsb8{word-spacing:-2.346667pt;}
.ws1f{word-spacing:-1.973333pt;}
.ws8c{word-spacing:-1.920000pt;}
.ws21{word-spacing:-1.866667pt;}
.ws71{word-spacing:-1.760000pt;}
.ws1c{word-spacing:-1.706667pt;}
.ws93{word-spacing:-1.621333pt;}
.ws86{word-spacing:-1.578667pt;}
.wsc0{word-spacing:-1.536000pt;}
.ws59{word-spacing:-1.493333pt;}
.ws39{word-spacing:-1.440000pt;}
.ws5d{word-spacing:-1.386667pt;}
.ws89{word-spacing:-1.322667pt;}
.wsb3{word-spacing:-1.280000pt;}
.ws65{word-spacing:-1.194667pt;}
.ws90{word-spacing:-1.152000pt;}
.ws5a{word-spacing:-1.066667pt;}
.wsa9{word-spacing:-0.981333pt;}
.ws41{word-spacing:-0.960000pt;}
.wsaa{word-spacing:-0.938667pt;}
.wsb1{word-spacing:-0.896000pt;}
.wsa8{word-spacing:-0.853333pt;}
.wsb4{word-spacing:-0.810667pt;}
.ws6f{word-spacing:-0.800000pt;}
.ws87{word-spacing:-0.768000pt;}
.ws9b{word-spacing:-0.725333pt;}
.ws16{word-spacing:-0.693333pt;}
.ws9a{word-spacing:-0.554667pt;}
.ws8a{word-spacing:-0.512000pt;}
.ws99{word-spacing:-0.469333pt;}
.ws75{word-spacing:-0.426667pt;}
.ws91{word-spacing:-0.384000pt;}
.ws2c{word-spacing:-0.373333pt;}
.ws14{word-spacing:-0.320000pt;}
.wsab{word-spacing:-0.298667pt;}
.ws23{word-spacing:-0.266667pt;}
.ws9d{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.213333pt;}
.ws32{word-spacing:-0.170667pt;}
.wsb5{word-spacing:-0.128000pt;}
.ws46{word-spacing:-0.106667pt;}
.ws68{word-spacing:-0.085333pt;}
.ws3c{word-spacing:-0.053333pt;}
.ws94{word-spacing:-0.042667pt;}
.ws6b{word-spacing:-0.037402pt;}
.ws6{word-spacing:0.000000pt;}
.ws69{word-spacing:0.029610pt;}
.ws77{word-spacing:0.038933pt;}
.ws98{word-spacing:0.042667pt;}
.ws61{word-spacing:0.053333pt;}
.wsb0{word-spacing:0.085333pt;}
.ws45{word-spacing:0.106667pt;}
.wsa6{word-spacing:0.128000pt;}
.wsa5{word-spacing:0.170667pt;}
.ws18{word-spacing:0.213333pt;}
.wsb9{word-spacing:0.256000pt;}
.ws1a{word-spacing:0.266667pt;}
.ws43{word-spacing:0.320000pt;}
.ws6a{word-spacing:0.336614pt;}
.wsaf{word-spacing:0.341333pt;}
.ws2a{word-spacing:0.373333pt;}
.ws19{word-spacing:0.426667pt;}
.ws76{word-spacing:0.533333pt;}
.wse{word-spacing:0.746667pt;}
.wsbb{word-spacing:0.768000pt;}
.ws95{word-spacing:0.853333pt;}
.wsbf{word-spacing:0.896000pt;}
.wsbe{word-spacing:1.066667pt;}
.ws8f{word-spacing:1.152000pt;}
.ws88{word-spacing:1.194667pt;}
.wsf{word-spacing:1.226667pt;}
.wsad{word-spacing:1.237333pt;}
.wsb7{word-spacing:1.280000pt;}
.wsac{word-spacing:1.408000pt;}
.ws42{word-spacing:1.493333pt;}
.ws50{word-spacing:1.536000pt;}
.ws40{word-spacing:1.546667pt;}
.ws5b{word-spacing:1.600000pt;}
.wsba{word-spacing:1.621333pt;}
.wsc{word-spacing:1.653333pt;}
.ws15{word-spacing:1.706667pt;}
.ws1b{word-spacing:1.760000pt;}
.ws9c{word-spacing:1.792000pt;}
.ws29{word-spacing:1.813333pt;}
.ws64{word-spacing:1.920000pt;}
.ws1d{word-spacing:1.973333pt;}
.wsa7{word-spacing:2.005333pt;}
.ws72{word-spacing:2.026667pt;}
.ws25{word-spacing:2.080000pt;}
.ws74{word-spacing:2.186667pt;}
.ws5c{word-spacing:2.240000pt;}
.ws1e{word-spacing:2.293333pt;}
.wsc2{word-spacing:2.304000pt;}
.ws24{word-spacing:2.400000pt;}
.ws67{word-spacing:2.432000pt;}
.ws2b{word-spacing:2.453333pt;}
.ws92{word-spacing:2.474667pt;}
.ws3b{word-spacing:2.506667pt;}
.ws22{word-spacing:2.560000pt;}
.wsb6{word-spacing:2.645333pt;}
.ws73{word-spacing:2.666667pt;}
.ws63{word-spacing:2.720000pt;}
.ws96{word-spacing:2.730667pt;}
.ws17{word-spacing:2.773333pt;}
.wsb{word-spacing:2.880000pt;}
.ws3d{word-spacing:3.146667pt;}
.ws26{word-spacing:3.306667pt;}
.ws28{word-spacing:3.413333pt;}
.ws70{word-spacing:3.466667pt;}
.ws31{word-spacing:3.498667pt;}
.ws66{word-spacing:3.541333pt;}
.ws3f{word-spacing:3.680000pt;}
.ws27{word-spacing:3.840000pt;}
.ws10{word-spacing:3.946667pt;}
.ws3a{word-spacing:4.000000pt;}
.ws47{word-spacing:4.160000pt;}
.ws9{word-spacing:4.213333pt;}
.ws6e{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
.ws8e{word-spacing:4.736000pt;}
.ws85{word-spacing:4.906667pt;}
.ws44{word-spacing:5.386667pt;}
.wsbd{word-spacing:6.442667pt;}
.ws4a{word-spacing:24.916355pt;}
.ws54{word-spacing:48.145210pt;}
.ws53{word-spacing:48.322867pt;}
.ws58{word-spacing:268.381414pt;}
.ws38{word-spacing:292.608000pt;}
.ws4f{word-spacing:2110.417359pt;}
._b{margin-left:-2576.085333pt;}
._c{margin-left:-2554.922667pt;}
._2b{margin-left:-596.396563pt;}
._3{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._5{width:0.935467pt;}
._7{width:2.293333pt;}
._a{width:3.520000pt;}
._6{width:4.693333pt;}
._8{width:6.373333pt;}
._9{width:7.493333pt;}
._d{width:8.400000pt;}
._29{width:58.242765pt;}
._28{width:74.246973pt;}
._17{width:103.637333pt;}
._14{width:107.946667pt;}
._21{width:112.298667pt;}
._20{width:114.176000pt;}
._16{width:116.224000pt;}
._18{width:122.965333pt;}
._26{width:124.586667pt;}
._1c{width:129.280000pt;}
._f{width:138.752000pt;}
._24{width:139.946667pt;}
._13{width:142.677333pt;}
._22{width:144.128000pt;}
._1b{width:146.602667pt;}
._25{width:149.760000pt;}
._e{width:155.605333pt;}
._23{width:158.037333pt;}
._1a{width:159.237333pt;}
._12{width:164.778667pt;}
._1f{width:168.661333pt;}
._1d{width:176.128000pt;}
._19{width:179.370667pt;}
._1e{width:190.080000pt;}
._15{width:224.128000pt;}
._27{width:236.210133pt;}
._11{width:327.381333pt;}
._2a{width:365.002214pt;}
._10{width:456.832000pt;}
.fs5{font-size:24.000000pt;}
.fsd{font-size:25.600000pt;}
.fs10{font-size:28.051200pt;}
.fs11{font-size:29.609600pt;}
.fsc{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs12{font-size:37.401600pt;}
.fs13{font-size:38.933333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsf{font-size:47.071467pt;}
.fs14{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fse{font-size:62.761600pt;}
.fsa{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.y16f{bottom:73.542000pt;}
.y103{bottom:73.956267pt;}
.y5f{bottom:74.462533pt;}
.y162{bottom:74.489200pt;}
.yfd{bottom:74.595867pt;}
.y76{bottom:74.729200pt;}
.y166{bottom:74.733067pt;}
.y193{bottom:76.552800pt;}
.y1e{bottom:78.246000pt;}
.yb8{bottom:83.857867pt;}
.y1d3{bottom:84.678667pt;}
.y11a{bottom:85.611467pt;}
.y102{bottom:87.950933pt;}
.ybb{bottom:88.678933pt;}
.y165{bottom:88.727733pt;}
.y192{bottom:89.886133pt;}
.y5e{bottom:90.462533pt;}
.y161{bottom:90.489200pt;}
.yfc{bottom:90.595867pt;}
.y75{bottom:90.729200pt;}
.y1d{bottom:91.576000pt;}
.y79{bottom:93.403333pt;}
.y1d2{bottom:98.012000pt;}
.yb7{bottom:98.300533pt;}
.y101{bottom:101.945600pt;}
.yba{bottom:102.673600pt;}
.y164{bottom:102.722400pt;}
.y191{bottom:103.219467pt;}
.y5d{bottom:106.462533pt;}
.y160{bottom:106.489200pt;}
.yfb{bottom:106.595867pt;}
.y74{bottom:106.729200pt;}
.y78{bottom:107.398000pt;}
.y1d1{bottom:111.345333pt;}
.yb6{bottom:112.743200pt;}
.y100{bottom:115.940267pt;}
.y190{bottom:116.552800pt;}
.y163{bottom:116.717067pt;}
.y5c{bottom:122.462533pt;}
.y15f{bottom:122.489200pt;}
.yfa{bottom:122.595867pt;}
.y73{bottom:122.729200pt;}
.yc9{bottom:123.149333pt;}
.y1d0{bottom:124.678667pt;}
.yb5{bottom:127.185867pt;}
.yc8{bottom:128.243867pt;}
.ycf{bottom:128.244151pt;}
.y18f{bottom:129.886133pt;}
.yff{bottom:129.934933pt;}
.y16e{bottom:137.293333pt;}
.y1cf{bottom:138.012000pt;}
.y5b{bottom:138.462533pt;}
.y15e{bottom:138.489200pt;}
.yf9{bottom:138.595867pt;}
.y72{bottom:138.729200pt;}
.yc3{bottom:139.695711pt;}
.y16d{bottom:141.188800pt;}
.yb4{bottom:141.628533pt;}
.y18e{bottom:143.219467pt;}
.yfe{bottom:143.929600pt;}
.y7c{bottom:146.933600pt;}
.yc2{bottom:147.619363pt;}
.y28{bottom:148.102267pt;}
.y1ce{bottom:151.345333pt;}
.y5a{bottom:154.462533pt;}
.y15d{bottom:154.489200pt;}
.yf8{bottom:154.595867pt;}
.y71{bottom:154.729200pt;}
.yc1{bottom:155.621467pt;}
.yc4{bottom:155.702133pt;}
.yb3{bottom:156.071200pt;}
.y18d{bottom:156.552800pt;}
.y16c{bottom:157.133467pt;}
.y27{bottom:164.102267pt;}
.y1cd{bottom:164.678667pt;}
.y113{bottom:165.088000pt;}
.y11b{bottom:167.493067pt;}
.y18c{bottom:169.886133pt;}
.y59{bottom:170.462533pt;}
.y15c{bottom:170.489200pt;}
.yb2{bottom:170.513867pt;}
.yf7{bottom:170.595867pt;}
.y70{bottom:170.729200pt;}
.ybc{bottom:176.961200pt;}
.y1cc{bottom:178.012000pt;}
.y10d{bottom:178.420800pt;}
.y26{bottom:180.102267pt;}
.y167{bottom:180.729200pt;}
.y18b{bottom:183.219467pt;}
.yb1{bottom:184.956533pt;}
.y15b{bottom:186.489200pt;}
.yf6{bottom:186.595867pt;}
.y6f{bottom:186.729200pt;}
.y1cb{bottom:191.345333pt;}
.y25{bottom:196.102267pt;}
.y18a{bottom:196.552800pt;}
.yb0{bottom:199.399200pt;}
.y58{bottom:202.102533pt;}
.y15a{bottom:202.489200pt;}
.yf5{bottom:202.595867pt;}
.y6e{bottom:202.729200pt;}
.y1ca{bottom:204.678667pt;}
.y10e{bottom:206.472000pt;}
.y189{bottom:209.886133pt;}
.y24{bottom:212.102267pt;}
.yaf{bottom:213.841867pt;}
.ybd{bottom:217.285528pt;}
.y1c9{bottom:218.012000pt;}
.y159{bottom:218.489200pt;}
.yf4{bottom:218.595867pt;}
.y6d{bottom:218.729200pt;}
.y188{bottom:223.219467pt;}
.y23{bottom:228.102267pt;}
.yae{bottom:228.284533pt;}
.y1c8{bottom:231.345333pt;}
.y57{bottom:233.982533pt;}
.y158{bottom:234.489200pt;}
.y10f{bottom:234.523200pt;}
.yf3{bottom:234.595867pt;}
.y6c{bottom:234.729200pt;}
.y187{bottom:236.552800pt;}
.y168{bottom:240.521067pt;}
.yad{bottom:242.727200pt;}
.y22{bottom:244.102267pt;}
.y1c7{bottom:244.678667pt;}
.y186{bottom:249.886133pt;}
.y157{bottom:250.489200pt;}
.yf2{bottom:250.595867pt;}
.y6b{bottom:250.729200pt;}
.y114{bottom:255.474800pt;}
.ybe{bottom:257.609856pt;}
.y1c6{bottom:258.012000pt;}
.y21{bottom:260.102267pt;}
.y110{bottom:262.574400pt;}
.y185{bottom:263.219467pt;}
.y156{bottom:266.489200pt;}
.yf1{bottom:266.595867pt;}
.y6a{bottom:266.729200pt;}
.yac{bottom:268.508533pt;}
.y1c5{bottom:271.345333pt;}
.y20{bottom:276.102267pt;}
.y184{bottom:276.552800pt;}
.y118{bottom:281.213392pt;}
.yaa{bottom:281.397467pt;}
.y56{bottom:282.462533pt;}
.y155{bottom:282.489200pt;}
.yf0{bottom:282.595867pt;}
.y69{bottom:282.729200pt;}
.y1c4{bottom:284.678667pt;}
.y183{bottom:289.886133pt;}
.yc7{bottom:290.168267pt;}
.y111{bottom:290.625600pt;}
.y2a{bottom:292.102267pt;}
.yab{bottom:294.293467pt;}
.ybf{bottom:297.855732pt;}
.y1c3{bottom:298.012000pt;}
.y55{bottom:298.462533pt;}
.y154{bottom:298.489200pt;}
.yef{bottom:298.595867pt;}
.y169{bottom:300.312933pt;}
.y182{bottom:303.219467pt;}
.y117{bottom:303.607600pt;}
.y1f{bottom:307.742267pt;}
.y29{bottom:308.102267pt;}
.yc6{bottom:310.487333pt;}
.y1c2{bottom:311.345333pt;}
.y68{bottom:314.369200pt;}
.y54{bottom:314.462533pt;}
.y153{bottom:314.489200pt;}
.yee{bottom:314.595867pt;}
.y181{bottom:316.552800pt;}
.y112{bottom:318.676800pt;}
.yce{bottom:322.648207pt;}
.ya9{bottom:323.075867pt;}
.y1c1{bottom:324.678667pt;}
.y119{bottom:326.207517pt;}
.y116{bottom:327.795467pt;}
.y180{bottom:329.886133pt;}
.y53{bottom:330.462533pt;}
.y152{bottom:330.489200pt;}
.yed{bottom:330.595867pt;}
.yc5{bottom:330.806267pt;}
.y1c0{bottom:338.012000pt;}
.yc0{bottom:338.180060pt;}
.ya8{bottom:340.409200pt;}
.y17f{bottom:343.219467pt;}
.y52{bottom:346.462533pt;}
.y151{bottom:346.489200pt;}
.y67{bottom:346.595867pt;}
.y1bf{bottom:351.345333pt;}
.y17e{bottom:356.552800pt;}
.y16a{bottom:360.192400pt;}
.yd0{bottom:360.303733pt;}
.yec{bottom:362.235867pt;}
.y51{bottom:362.462533pt;}
.y150{bottom:362.489200pt;}
.y66{bottom:362.595867pt;}
.y1be{bottom:364.678667pt;}
.y115{bottom:365.470800pt;}
.yca{bottom:366.601600pt;}
.y17d{bottom:369.886133pt;}
.y10c{bottom:373.422185pt;}
.y11c{bottom:373.427835pt;}
.y1bd{bottom:378.012000pt;}
.ya5{bottom:378.344533pt;}
.y50{bottom:378.462533pt;}
.y65{bottom:378.595867pt;}
.y1c{bottom:378.723733pt;}
.y17c{bottom:383.219467pt;}
.y10b{bottom:388.478667pt;}
.y1bc{bottom:391.345333pt;}
.yd1{bottom:392.939765pt;}
.y14f{bottom:394.129200pt;}
.ya4{bottom:394.344533pt;}
.y4f{bottom:394.462533pt;}
.y64{bottom:394.595867pt;}
.y17b{bottom:396.552800pt;}
.y7b{bottom:397.829600pt;}
.y104{bottom:398.203333pt;}
.y1b{bottom:403.030400pt;}
.y1bb{bottom:404.678667pt;}
.ya3{bottom:410.344533pt;}
.y4e{bottom:410.462533pt;}
.y63{bottom:410.595867pt;}
.y1ba{bottom:418.012000pt;}
.y105{bottom:418.961221pt;}
.y1a{bottom:419.030400pt;}
.y16b{bottom:420.071867pt;}
.yd2{bottom:425.575797pt;}
.y17a{bottom:425.984533pt;}
.ya2{bottom:426.344533pt;}
.y4d{bottom:426.462533pt;}
.y62{bottom:426.595867pt;}
.y1b9{bottom:431.345333pt;}
.y19{bottom:435.030400pt;}
.y106{bottom:439.768199pt;}
.ya1{bottom:442.344533pt;}
.y4c{bottom:442.462533pt;}
.y61{bottom:442.595867pt;}
.y14e{bottom:442.609200pt;}
.y1b8{bottom:444.678667pt;}
.y18{bottom:451.030400pt;}
.y1b7{bottom:458.012000pt;}
.yd3{bottom:458.211829pt;}
.ya0{bottom:458.344533pt;}
.y4b{bottom:458.462533pt;}
.y14d{bottom:458.609200pt;}
.y107{bottom:460.526087pt;}
.y17{bottom:467.030400pt;}
.y1b6{bottom:471.345333pt;}
.y60{bottom:474.235867pt;}
.yd7{bottom:474.295867pt;}
.y9f{bottom:474.344533pt;}
.y4a{bottom:474.462533pt;}
.y179{bottom:474.464533pt;}
.y131{bottom:474.595867pt;}
.y14c{bottom:474.609200pt;}
.y108{bottom:481.333065pt;}
.y16{bottom:483.030400pt;}
.y1b5{bottom:484.678667pt;}
.y9e{bottom:490.344533pt;}
.y49{bottom:490.462533pt;}
.y178{bottom:490.464533pt;}
.y130{bottom:490.595867pt;}
.y14b{bottom:490.609200pt;}
.yd4{bottom:490.847861pt;}
.yd6{bottom:494.614267pt;}
.y1b4{bottom:498.012000pt;}
.y15{bottom:499.030400pt;}
.y109{bottom:502.140042pt;}
.y9d{bottom:506.344533pt;}
.y48{bottom:506.462533pt;}
.y177{bottom:506.464533pt;}
.y12f{bottom:506.595867pt;}
.y14a{bottom:506.609200pt;}
.ycb{bottom:507.402667pt;}
.y1b3{bottom:511.345333pt;}
.y14{bottom:515.030400pt;}
.y9c{bottom:522.344533pt;}
.y47{bottom:522.462533pt;}
.y176{bottom:522.464533pt;}
.y12e{bottom:522.595867pt;}
.y149{bottom:522.609200pt;}
.y10a{bottom:522.897930pt;}
.yd5{bottom:523.483893pt;}
.y1b2{bottom:524.678667pt;}
.y13{bottom:531.030400pt;}
.y7a{bottom:535.269600pt;}
.y1b1{bottom:538.012000pt;}
.y175{bottom:538.104533pt;}
.y46{bottom:538.462533pt;}
.y12d{bottom:538.595867pt;}
.y148{bottom:538.609200pt;}
.y86{bottom:545.614533pt;}
.yd8{bottom:546.314800pt;}
.y12{bottom:547.030400pt;}
.y1b0{bottom:551.345333pt;}
.y9b{bottom:553.984533pt;}
.y45{bottom:554.462533pt;}
.y12c{bottom:554.595867pt;}
.y147{bottom:554.609200pt;}
.y11{bottom:563.030400pt;}
.y1af{bottom:564.678667pt;}
.y174{bottom:570.104533pt;}
.y44{bottom:570.462533pt;}
.y12b{bottom:570.595867pt;}
.y146{bottom:570.609200pt;}
.y1ae{bottom:578.012000pt;}
.yd9{bottom:579.029284pt;}
.y10{bottom:579.030400pt;}
.y43{bottom:586.462533pt;}
.y12a{bottom:586.595867pt;}
.y145{bottom:586.609200pt;}
.y1ad{bottom:591.345333pt;}
.yf{bottom:595.030400pt;}
.y42{bottom:602.462533pt;}
.y9a{bottom:602.464533pt;}
.y129{bottom:602.595867pt;}
.y144{bottom:602.609200pt;}
.y1ed{bottom:604.678667pt;}
.y1ac{bottom:604.680800pt;}
.ye{bottom:611.030400pt;}
.yda{bottom:611.665316pt;}
.y1ec{bottom:618.012000pt;}
.y1ab{bottom:618.014133pt;}
.y41{bottom:618.462533pt;}
.y99{bottom:618.464533pt;}
.y128{bottom:618.595867pt;}
.y143{bottom:618.609200pt;}
.y1eb{bottom:631.345333pt;}
.y1aa{bottom:631.347467pt;}
.y173{bottom:634.104533pt;}
.y40{bottom:634.462533pt;}
.y98{bottom:634.464533pt;}
.y127{bottom:634.595867pt;}
.y142{bottom:634.609200pt;}
.ydb{bottom:644.301348pt;}
.y1ea{bottom:644.678667pt;}
.y1a9{bottom:644.680800pt;}
.ye0{bottom:649.871467pt;}
.y3f{bottom:650.462533pt;}
.y97{bottom:650.464533pt;}
.y126{bottom:650.595867pt;}
.y141{bottom:650.609200pt;}
.yd{bottom:651.170933pt;}
.y1e9{bottom:658.012000pt;}
.y1a8{bottom:658.014133pt;}
.y82{bottom:661.310400pt;}
.yc{bottom:662.238267pt;}
.y3e{bottom:666.462533pt;}
.y96{bottom:666.464533pt;}
.y125{bottom:666.595867pt;}
.y140{bottom:666.609200pt;}
.ydf{bottom:670.583067pt;}
.y1e8{bottom:671.345333pt;}
.y1a7{bottom:671.347467pt;}
.ydc{bottom:677.015832pt;}
.y172{bottom:682.104533pt;}
.y3d{bottom:682.462533pt;}
.y95{bottom:682.464533pt;}
.y81{bottom:682.547733pt;}
.y124{bottom:682.595867pt;}
.y13f{bottom:682.609200pt;}
.y1e7{bottom:684.678667pt;}
.y1a6{bottom:684.680800pt;}
.yde{bottom:691.372667pt;}
.ycc{bottom:692.627839pt;}
.yb{bottom:693.861467pt;}
.y1e6{bottom:698.012000pt;}
.y1a5{bottom:698.014133pt;}
.y3c{bottom:698.462533pt;}
.y94{bottom:698.464533pt;}
.y123{bottom:698.595867pt;}
.y13e{bottom:698.609200pt;}
.ya{bottom:705.861467pt;}
.ydd{bottom:709.651864pt;}
.y1e5{bottom:711.345333pt;}
.y1a4{bottom:711.347467pt;}
.y7f{bottom:713.802400pt;}
.y9{bottom:714.429867pt;}
.y3b{bottom:714.462533pt;}
.y93{bottom:714.464533pt;}
.y122{bottom:714.595867pt;}
.y13d{bottom:714.609200pt;}
.y1e4{bottom:724.678667pt;}
.y1a3{bottom:724.680800pt;}
.y8{bottom:729.861467pt;}
.y3a{bottom:730.462533pt;}
.y92{bottom:730.464533pt;}
.y121{bottom:730.595867pt;}
.y13c{bottom:730.609200pt;}
.ye1{bottom:731.932000pt;}
.y7e{bottom:737.767733pt;}
.y1e3{bottom:738.012000pt;}
.y1a2{bottom:738.014133pt;}
.y39{bottom:746.462533pt;}
.y91{bottom:746.464533pt;}
.y120{bottom:746.595867pt;}
.y13b{bottom:746.609200pt;}
.y1e2{bottom:751.345333pt;}
.y1a1{bottom:751.347467pt;}
.y7{bottom:756.783067pt;}
.y7d{bottom:759.005067pt;}
.y38{bottom:762.462533pt;}
.y90{bottom:762.464533pt;}
.y11f{bottom:762.595867pt;}
.y13a{bottom:762.609200pt;}
.ye2{bottom:764.254224pt;}
.y1e1{bottom:764.678667pt;}
.y1a0{bottom:764.680800pt;}
.ye6{bottom:770.472133pt;}
.y80{bottom:771.383733pt;}
.y1e0{bottom:778.012000pt;}
.y19f{bottom:778.014133pt;}
.y37{bottom:778.462533pt;}
.y8f{bottom:778.464533pt;}
.y11e{bottom:778.595867pt;}
.y139{bottom:778.609200pt;}
.y1df{bottom:791.345333pt;}
.y19e{bottom:791.347467pt;}
.y171{bottom:794.104533pt;}
.y36{bottom:794.462533pt;}
.y8e{bottom:794.464533pt;}
.y138{bottom:794.609200pt;}
.ye3{bottom:796.576448pt;}
.y6{bottom:797.816533pt;}
.y1de{bottom:804.678667pt;}
.y19d{bottom:804.680800pt;}
.y11d{bottom:810.235867pt;}
.y35{bottom:810.462533pt;}
.y8d{bottom:810.464533pt;}
.y137{bottom:810.609200pt;}
.y1dd{bottom:818.012000pt;}
.y19c{bottom:818.014133pt;}
.yeb{bottom:826.102533pt;}
.y34{bottom:826.462533pt;}
.y8c{bottom:826.464533pt;}
.y136{bottom:826.609200pt;}
.y84{bottom:827.080400pt;}
.ye4{bottom:828.977124pt;}
.y5{bottom:830.226133pt;}
.y1dc{bottom:831.345333pt;}
.y19b{bottom:831.347467pt;}
.y33{bottom:842.462533pt;}
.y8b{bottom:842.464533pt;}
.ye9{bottom:842.864267pt;}
.y1db{bottom:844.678667pt;}
.y19a{bottom:844.680800pt;}
.y83{bottom:848.317733pt;}
.yea{bottom:857.982533pt;}
.y1da{bottom:858.012000pt;}
.y199{bottom:858.014133pt;}
.y135{bottom:858.249200pt;}
.y32{bottom:858.462533pt;}
.y8a{bottom:858.464533pt;}
.ye8{bottom:860.672133pt;}
.ye5{bottom:861.299348pt;}
.y4{bottom:862.635733pt;}
.y1d9{bottom:871.345333pt;}
.y198{bottom:871.347467pt;}
.y85{bottom:873.118533pt;}
.y31{bottom:874.462533pt;}
.y89{bottom:874.464533pt;}
.ye7{bottom:878.480800pt;}
.ycd{bottom:878.637531pt;}
.y1d8{bottom:884.678667pt;}
.y197{bottom:884.680800pt;}
.y30{bottom:890.462533pt;}
.y88{bottom:890.464533pt;}
.y134{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y1d7{bottom:898.012000pt;}
.y196{bottom:898.014133pt;}
.y2f{bottom:906.462533pt;}
.ya7{bottom:906.464533pt;}
.y133{bottom:906.475867pt;}
.y1d6{bottom:911.345333pt;}
.y195{bottom:911.347467pt;}
.y87{bottom:922.104533pt;}
.y2e{bottom:922.462533pt;}
.ya6{bottom:922.464533pt;}
.y132{bottom:922.475867pt;}
.y1d5{bottom:924.678667pt;}
.y194{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y77{bottom:1006.594400pt;}
.y170{bottom:1006.597067pt;}
.y1d4{bottom:1006.598667pt;}
.yb9{bottom:1006.641867pt;}
.y2c{bottom:1009.857333pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h1a{height:20.435738pt;}
.h1b{height:21.571056pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.h1d{height:27.247650pt;}
.h1e{height:27.265912pt;}
.h1f{height:28.363542pt;}
.hc{height:29.140625pt;}
.h7{height:29.160156pt;}
.h11{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h16{height:31.956567pt;}
.h18{height:34.292299pt;}
.h20{height:34.968750pt;}
.he{height:37.057292pt;}
.hd{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.859942pt;}
.h9{height:38.880208pt;}
.h14{height:39.955442pt;}
.h15{height:39.963442pt;}
.h13{height:42.739583pt;}
.h5{height:43.678785pt;}
.h17{height:45.722806pt;}
.h12{height:46.625000pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h21{height:301.321333pt;}
.h1c{height:373.494667pt;}
.h19{height:783.937333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w4{width:300.342667pt;}
.w3{width:300.472000pt;}
.w2{width:638.740000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x48{left:8.023867pt;}
.x52{left:10.298133pt;}
.x37{left:13.464667pt;}
.x3d{left:31.197200pt;}
.x49{left:48.734800pt;}
.xa{left:68.031467pt;}
.x20{left:69.921200pt;}
.x47{left:81.013500pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x46{left:88.811733pt;}
.x44{left:91.155363pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x50{left:104.565867pt;}
.x55{left:109.606267pt;}
.x3{left:111.496000pt;}
.x1c{left:113.161200pt;}
.x6{left:117.170133pt;}
.x26{left:118.126495pt;}
.x25{left:126.834667pt;}
.xc{left:128.631467pt;}
.x45{left:132.696309pt;}
.x4b{left:152.001830pt;}
.x23{left:155.358133pt;}
.x24{left:158.600800pt;}
.x53{left:172.698133pt;}
.x43{left:176.781600pt;}
.x27{left:177.983156pt;}
.x17{left:180.485467pt;}
.x1f{left:187.658133pt;}
.x5{left:189.223467pt;}
.x28{left:197.753060pt;}
.x51{left:210.110800pt;}
.x4c{left:215.567063pt;}
.x29{left:217.522964pt;}
.x36{left:225.368533pt;}
.x18{left:230.850800pt;}
.x2a{left:237.292868pt;}
.x12{left:242.669467pt;}
.x22{left:247.571467pt;}
.x16{left:249.668133pt;}
.x2b{left:257.062772pt;}
.x19{left:267.165467pt;}
.x42{left:272.314041pt;}
.x2c{left:276.911128pt;}
.x40{left:283.093346pt;}
.x41{left:284.019079pt;}
.x3f{left:287.580800pt;}
.x21{left:290.603867pt;}
.x2d{left:296.681032pt;}
.x15{left:298.317467pt;}
.x14{left:313.394800pt;}
.x2e{left:316.450936pt;}
.x13{left:326.317467pt;}
.x4a{left:334.792800pt;}
.x2f{left:336.220840pt;}
.x30{left:356.069196pt;}
.x31{left:375.839100pt;}
.x32{left:395.609004pt;}
.x9{left:404.481333pt;}
.xd{left:406.284800pt;}
.x33{left:415.378908pt;}
.x4d{left:425.195867pt;}
.x7{left:427.090133pt;}
.x54{left:428.991467pt;}
.x34{left:435.070400pt;}
.xe{left:436.524800pt;}
.x1d{left:442.873200pt;}
.x56{left:447.899600pt;}
.x4e{left:455.435867pt;}
.x3a{left:469.543241pt;}
.x39{left:480.400998pt;}
.x38{left:484.810000pt;}
.x1a{left:498.898667pt;}
.x4f{left:526.195867pt;}
.x1b{left:535.213333pt;}
.x3b{left:562.744217pt;}
.x11{left:587.501467pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x57{left:641.514000pt;}
.xf{left:647.459200pt;}
.x3e{left:658.188933pt;}
.x35{left:664.934933pt;}
.x1e{left:666.356800pt;}
.x3c{left:667.524800pt;}
}




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