
    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_37c56cc615629601fcc8ff93.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4e8d6e76489b9798734e0c64.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.804000;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_1ac1824ebfc335260ae21e29.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_94deb19b27ed3bf2ae901686.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.870117;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_d0298f5457d9cd2506e7cf29.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_35b73006d2acd3d2da59b4b3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c8c7bb1fecf552b51e9bdc88.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3d5b01bc75c70aab3dff9326.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c3d67828053dd2e8b0072246.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.877000;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_2c89b73a4429b9d0a60a4bdd.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_334e95b2cca3f10a3352df97.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.909000;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_3eadb9cabd0bd20fa2722e61.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.841000;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_79a69709a18d9da6bc5df848.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.841000;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_79a69709a18d9da6bc5df848.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.841000;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_668effc99ad7a285ae8f581e.woff2')format("woff");}.fff{font-family:fff;line-height:0.841000;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_e83b624a5024528e904dd5d4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.841000;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_d1bf7de576898e8763ac2180.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.841000;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_1393d2938aeaf3f3cade0246.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.841000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ca671f4bef6dd6de938793a1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v6{vertical-align:-38.430000px;}
.v16{vertical-align:-31.704119px;}
.v11{vertical-align:-30.064200px;}
.va{vertical-align:-27.180000px;}
.v13{vertical-align:-24.366300px;}
.v10{vertical-align:-19.312200px;}
.v3{vertical-align:-18.000000px;}
.v15{vertical-align:-16.553400px;}
.v7{vertical-align:-9.540000px;}
.vc{vertical-align:-8.235000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.485000px;}
.v12{vertical-align:3.732000px;}
.ve{vertical-align:8.062200px;}
.v17{vertical-align:9.900000px;}
.v9{vertical-align:12.000000px;}
.v14{vertical-align:14.017800px;}
.v2{vertical-align:18.000000px;}
.v4{vertical-align:19.800000px;}
.v1{vertical-align:21.600000px;}
.vf{vertical-align:24.750000px;}
.v8{vertical-align:38.070000px;}
.v18{vertical-align:44.040000px;}
.vb{vertical-align:47.220000px;}
.v5{vertical-align:53.820000px;}
.ls4{letter-spacing:-18.021312px;}
.ls3{letter-spacing:-6.757992px;}
.ls6d{letter-spacing:-5.994000px;}
.ls71{letter-spacing:-5.328000px;}
.ls6f{letter-spacing:-2.220000px;}
.ls70{letter-spacing:-1.998000px;}
.ls6b{letter-spacing:-1.188000px;}
.lsc{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.726000px;}
.ls6c{letter-spacing:-0.660000px;}
.ls11{letter-spacing:-0.528000px;}
.ls6e{letter-spacing:-0.462000px;}
.lsd{letter-spacing:-0.396000px;}
.ls60{letter-spacing:-0.339427px;}
.ls63{letter-spacing:-0.330000px;}
.ls44{letter-spacing:-0.315000px;}
.lsf{letter-spacing:-0.264000px;}
.ls8{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.198000px;}
.ls12{letter-spacing:-0.132000px;}
.ls7{letter-spacing:-0.120000px;}
.ls5{letter-spacing:-0.108000px;}
.ls3b{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084000px;}
.lse{letter-spacing:-0.066000px;}
.ls6{letter-spacing:-0.060000px;}
.ls9{letter-spacing:-0.054000px;}
.ls14{letter-spacing:-0.046200px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000600px;}
.ls1{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.007800px;}
.ls34{letter-spacing:0.045000px;}
.ls5e{letter-spacing:0.049500px;}
.ls5f{letter-spacing:0.084857px;}
.ls5d{letter-spacing:0.099000px;}
.ls2a{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.300000px;}
.ls29{letter-spacing:8.619600px;}
.ls66{letter-spacing:12.825000px;}
.ls65{letter-spacing:13.230000px;}
.ls64{letter-spacing:13.545000px;}
.ls68{letter-spacing:21.195000px;}
.ls38{letter-spacing:22.200000px;}
.ls28{letter-spacing:26.238000px;}
.ls69{letter-spacing:30.660000px;}
.ls3e{letter-spacing:34.260000px;}
.ls67{letter-spacing:39.375000px;}
.ls31{letter-spacing:45.300000px;}
.ls16{letter-spacing:47.070000px;}
.ls39{letter-spacing:55.800000px;}
.ls5c{letter-spacing:56.460000px;}
.ls43{letter-spacing:58.800000px;}
.ls57{letter-spacing:61.680000px;}
.ls4e{letter-spacing:62.880000px;}
.ls37{letter-spacing:78.030000px;}
.ls30{letter-spacing:82.320000px;}
.ls58{letter-spacing:83.100000px;}
.ls33{letter-spacing:86.985000px;}
.ls3a{letter-spacing:89.340000px;}
.ls35{letter-spacing:93.105000px;}
.ls55{letter-spacing:99.180000px;}
.ls2d{letter-spacing:101.700000px;}
.ls2e{letter-spacing:111.600000px;}
.ls2b{letter-spacing:130.560000px;}
.ls5a{letter-spacing:136.320000px;}
.ls3f{letter-spacing:142.860000px;}
.ls5b{letter-spacing:146.640000px;}
.ls2c{letter-spacing:146.700000px;}
.ls41{letter-spacing:157.860000px;}
.ls26{letter-spacing:158.101200px;}
.ls49{letter-spacing:176.700000px;}
.ls50{letter-spacing:185.400000px;}
.ls56{letter-spacing:191.460000px;}
.ls59{letter-spacing:205.020000px;}
.ls4a{letter-spacing:238.560000px;}
.ls61{letter-spacing:251.640000px;}
.ls62{letter-spacing:263.250000px;}
.ls25{letter-spacing:272.205000px;}
.ls1e{letter-spacing:282.690000px;}
.ls20{letter-spacing:285.705000px;}
.ls6a{letter-spacing:293.100000px;}
.ls4f{letter-spacing:301.680000px;}
.ls36{letter-spacing:305.100000px;}
.ls1f{letter-spacing:316.260000px;}
.ls27{letter-spacing:319.500000px;}
.ls51{letter-spacing:322.500000px;}
.ls32{letter-spacing:326.940000px;}
.ls48{letter-spacing:442.200000px;}
.ls3d{letter-spacing:462.840000px;}
.ls52{letter-spacing:516.960000px;}
.ls18{letter-spacing:524.790000px;}
.ls3c{letter-spacing:527.472000px;}
.ls45{letter-spacing:530.496000px;}
.ls19{letter-spacing:552.915000px;}
.ls1a{letter-spacing:587.790000px;}
.ls1d{letter-spacing:592.357800px;}
.ls17{letter-spacing:620.325000px;}
.ls21{letter-spacing:633.510000px;}
.ls15{letter-spacing:640.980000px;}
.ls24{letter-spacing:677.565000px;}
.ls1c{letter-spacing:687.574200px;}
.ls23{letter-spacing:745.687800px;}
.ls22{letter-spacing:762.414000px;}
.ls46{letter-spacing:1012.680000px;}
.ls40{letter-spacing:1013.820000px;}
.ls53{letter-spacing:1026.180000px;}
.ls4c{letter-spacing:1026.576000px;}
.ls47{letter-spacing:1035.360000px;}
.ls42{letter-spacing:1035.540000px;}
.ls54{letter-spacing:1047.960000px;}
.ls4b{letter-spacing:1063.935000px;}
.ls4d{letter-spacing:1066.140000px;}
.ls1b{letter-spacing:1278.180000px;}
.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;}
}
.ws9b{word-spacing:-1066.140000px;}
.ws9a{word-spacing:-1063.935000px;}
.ws9f{word-spacing:-1047.960000px;}
.ws96{word-spacing:-1035.540000px;}
.ws99{word-spacing:-1035.360000px;}
.ws72{word-spacing:-1026.648000px;}
.ws9e{word-spacing:-1026.180000px;}
.ws95{word-spacing:-1013.820000px;}
.ws98{word-spacing:-1012.680000px;}
.ws6a{word-spacing:-530.568000px;}
.ws63{word-spacing:-527.544000px;}
.ws77{word-spacing:-517.032000px;}
.ws64{word-spacing:-462.900000px;}
.ws6d{word-spacing:-457.200000px;}
.ws57{word-spacing:-327.000000px;}
.ws9d{word-spacing:-322.500000px;}
.ws9c{word-spacing:-301.680000px;}
.ws5a{word-spacing:-294.780000px;}
.wsba{word-spacing:-293.100000px;}
.ws7c{word-spacing:-205.080000px;}
.ws6e{word-spacing:-191.700000px;}
.wsa1{word-spacing:-191.460000px;}
.ws74{word-spacing:-185.460000px;}
.ws67{word-spacing:-172.860000px;}
.ws52{word-spacing:-161.700000px;}
.ws7e{word-spacing:-161.640000px;}
.ws94{word-spacing:-142.860000px;}
.ws53{word-spacing:-116.700000px;}
.ws8c{word-spacing:-111.600000px;}
.ws90{word-spacing:-101.700000px;}
.ws51{word-spacing:-99.420000px;}
.wsa0{word-spacing:-99.180000px;}
.ws8e{word-spacing:-86.985000px;}
.ws7b{word-spacing:-83.160000px;}
.ws55{word-spacing:-82.380000px;}
.ws8f{word-spacing:-78.030000px;}
.ws73{word-spacing:-62.940000px;}
.ws0{word-spacing:-44.892402px;}
.wsb7{word-spacing:-39.375000px;}
.ws93{word-spacing:-34.260000px;}
.wsb9{word-spacing:-30.660000px;}
.ws1{word-spacing:-28.158300px;}
.ws91{word-spacing:-22.200000px;}
.wsb8{word-spacing:-21.195000px;}
.ws132{word-spacing:-21.000000px;}
.ws4{word-spacing:-20.016000px;}
.ws2{word-spacing:-16.894980px;}
.ws19{word-spacing:-16.500000px;}
.ws139{word-spacing:-16.434000px;}
.ws13f{word-spacing:-16.104000px;}
.ws138{word-spacing:-16.038000px;}
.ws133{word-spacing:-15.774000px;}
.ws50{word-spacing:-15.180000px;}
.ws3{word-spacing:-15.012000px;}
.ws5{word-spacing:-15.000000px;}
.ws6{word-spacing:-14.958000px;}
.ws18{word-spacing:-13.932000px;}
.wsab{word-spacing:-13.590000px;}
.wsd2{word-spacing:-13.500000px;}
.wsac{word-spacing:-13.275000px;}
.wsad{word-spacing:-12.870000px;}
.ws11b{word-spacing:-12.000000px;}
.ws1a{word-spacing:-11.550000px;}
.ws49{word-spacing:-11.503800px;}
.ws123{word-spacing:-11.502000px;}
.ws5d{word-spacing:-11.250000px;}
.ws7{word-spacing:-10.500000px;}
.ws8{word-spacing:-10.416000px;}
.wsa3{word-spacing:-8.250000px;}
.ws81{word-spacing:-5.460000px;}
.ws7f{word-spacing:-4.500000px;}
.wsb{word-spacing:-3.960000px;}
.ws7d{word-spacing:-3.600000px;}
.ws145{word-spacing:-3.366000px;}
.ws1f{word-spacing:-3.300000px;}
.ws137{word-spacing:-3.036000px;}
.wsd{word-spacing:-3.000000px;}
.wsc{word-spacing:-2.970000px;}
.wsbf{word-spacing:-2.838000px;}
.wsf{word-spacing:-2.820000px;}
.wsff{word-spacing:-2.772000px;}
.ws22{word-spacing:-2.706000px;}
.wsca{word-spacing:-2.640000px;}
.ws4e{word-spacing:-2.574000px;}
.ws21{word-spacing:-2.508000px;}
.wsa6{word-spacing:-2.442000px;}
.ws25{word-spacing:-2.376000px;}
.ws20{word-spacing:-2.244000px;}
.ws86{word-spacing:-2.178000px;}
.ws131{word-spacing:-2.112000px;}
.wsd0{word-spacing:-2.046000px;}
.ws1c{word-spacing:-1.980000px;}
.wsb6{word-spacing:-1.848000px;}
.ws2f{word-spacing:-1.782000px;}
.ws2c{word-spacing:-1.716000px;}
.wsc2{word-spacing:-1.650000px;}
.wsdc{word-spacing:-1.620000px;}
.ws36{word-spacing:-1.584000px;}
.wsb1{word-spacing:-1.452000px;}
.ws126{word-spacing:-1.404000px;}
.wsc8{word-spacing:-1.386000px;}
.wse{word-spacing:-1.380000px;}
.wsaa{word-spacing:-1.320000px;}
.wsb0{word-spacing:-1.254000px;}
.ws31{word-spacing:-1.188000px;}
.wsdf{word-spacing:-1.122000px;}
.ws17{word-spacing:-1.080000px;}
.wsd6{word-spacing:-1.056000px;}
.wsbe{word-spacing:-0.990000px;}
.ws102{word-spacing:-0.972000px;}
.wsa7{word-spacing:-0.924000px;}
.ws134{word-spacing:-0.792000px;}
.ws117{word-spacing:-0.756000px;}
.wseb{word-spacing:-0.726000px;}
.wscd{word-spacing:-0.660000px;}
.wse9{word-spacing:-0.648000px;}
.ws33{word-spacing:-0.594000px;}
.wsc7{word-spacing:-0.528000px;}
.ws1d{word-spacing:-0.462000px;}
.wsa5{word-spacing:-0.396000px;}
.ws54{word-spacing:-0.360000px;}
.ws3d{word-spacing:-0.330000px;}
.ws14{word-spacing:-0.300000px;}
.ws130{word-spacing:-0.264000px;}
.wsa2{word-spacing:-0.132000px;}
.wsa4{word-spacing:-0.099000px;}
.wsa9{word-spacing:-0.084857px;}
.ws5c{word-spacing:-0.072000px;}
.ws28{word-spacing:-0.066000px;}
.ws83{word-spacing:-0.056572px;}
.ws62{word-spacing:-0.045000px;}
.ws9{word-spacing:0.000000px;}
.ws92{word-spacing:0.090000px;}
.wsc9{word-spacing:0.108000px;}
.ws8d{word-spacing:0.120000px;}
.ws2a{word-spacing:0.132000px;}
.ws3b{word-spacing:0.198000px;}
.ws37{word-spacing:0.264000px;}
.ws97{word-spacing:0.315000px;}
.ws4c{word-spacing:0.330000px;}
.ws4a{word-spacing:0.396000px;}
.ws12d{word-spacing:0.462000px;}
.ws29{word-spacing:0.528000px;}
.ws87{word-spacing:0.594000px;}
.ws101{word-spacing:0.702000px;}
.ws13e{word-spacing:0.726000px;}
.wscb{word-spacing:0.792000px;}
.ws39{word-spacing:0.990000px;}
.ws10{word-spacing:1.020000px;}
.ws32{word-spacing:1.056000px;}
.ws3f{word-spacing:1.122000px;}
.ws118{word-spacing:1.134000px;}
.wsbc{word-spacing:1.188000px;}
.ws3e{word-spacing:1.254000px;}
.wsa8{word-spacing:1.386000px;}
.ws2d{word-spacing:1.584000px;}
.ws88{word-spacing:1.650000px;}
.wsc5{word-spacing:1.716000px;}
.ws114{word-spacing:1.782000px;}
.ws135{word-spacing:1.848000px;}
.ws11{word-spacing:1.860000px;}
.wsd9{word-spacing:1.980000px;}
.ws3c{word-spacing:2.046000px;}
.wsaf{word-spacing:2.112000px;}
.wscc{word-spacing:2.178000px;}
.wse7{word-spacing:2.220000px;}
.wsd5{word-spacing:2.244000px;}
.wsfe{word-spacing:2.268000px;}
.ws2e{word-spacing:2.310000px;}
.ws24{word-spacing:2.376000px;}
.wsbb{word-spacing:2.508000px;}
.ws13a{word-spacing:2.574000px;}
.ws12e{word-spacing:2.706000px;}
.ws27{word-spacing:2.772000px;}
.ws15{word-spacing:2.820000px;}
.ws4f{word-spacing:2.862000px;}
.ws128{word-spacing:2.904000px;}
.ws8a{word-spacing:2.970000px;}
.wsd7{word-spacing:3.168000px;}
.ws100{word-spacing:3.234000px;}
.ws48{word-spacing:3.300000px;}
.wsc4{word-spacing:3.366000px;}
.ws141{word-spacing:3.498000px;}
.ws12f{word-spacing:3.564000px;}
.ws127{word-spacing:3.630000px;}
.wscf{word-spacing:3.696000px;}
.ws136{word-spacing:3.762000px;}
.wsc0{word-spacing:3.828000px;}
.wsc3{word-spacing:3.894000px;}
.ws13d{word-spacing:3.960000px;}
.ws119{word-spacing:4.092000px;}
.wsda{word-spacing:4.158000px;}
.wsc6{word-spacing:4.224000px;}
.ws34{word-spacing:4.488000px;}
.ws129{word-spacing:4.554000px;}
.ws23{word-spacing:4.620000px;}
.wsdb{word-spacing:4.752000px;}
.ws143{word-spacing:4.818000px;}
.ws12{word-spacing:4.860000px;}
.ws1e{word-spacing:5.016000px;}
.ws12a{word-spacing:5.148000px;}
.ws41{word-spacing:5.412000px;}
.ws115{word-spacing:5.478000px;}
.ws35{word-spacing:5.544000px;}
.ws13{word-spacing:5.580000px;}
.ws45{word-spacing:5.610000px;}
.wsdd{word-spacing:5.742000px;}
.ws13c{word-spacing:5.874000px;}
.ws2b{word-spacing:5.940000px;}
.wsb2{word-spacing:6.006000px;}
.ws8b{word-spacing:6.138000px;}
.ws13b{word-spacing:6.204000px;}
.wse8{word-spacing:6.264000px;}
.wsb4{word-spacing:6.270000px;}
.wsce{word-spacing:6.534000px;}
.wsde{word-spacing:6.600000px;}
.ws26{word-spacing:6.666000px;}
.ws5f{word-spacing:6.720000px;}
.wsea{word-spacing:6.732000px;}
.ws125{word-spacing:6.750000px;}
.wsa{word-spacing:6.757992px;}
.ws30{word-spacing:6.798000px;}
.ws38{word-spacing:6.864000px;}
.ws116{word-spacing:6.996000px;}
.ws12b{word-spacing:7.260000px;}
.wsd8{word-spacing:7.458000px;}
.ws89{word-spacing:7.524000px;}
.ws144{word-spacing:7.590000px;}
.ws16{word-spacing:7.620000px;}
.wsc1{word-spacing:7.656000px;}
.ws12c{word-spacing:7.722000px;}
.ws4d{word-spacing:7.788000px;}
.ws3a{word-spacing:7.854000px;}
.ws142{word-spacing:7.920000px;}
.wsb3{word-spacing:8.052000px;}
.ws44{word-spacing:8.646000px;}
.ws4b{word-spacing:8.844000px;}
.wsd1{word-spacing:9.174000px;}
.ws40{word-spacing:9.306000px;}
.ws47{word-spacing:9.372000px;}
.wsb5{word-spacing:9.438000px;}
.ws140{word-spacing:9.570000px;}
.wsbd{word-spacing:11.088000px;}
.ws82{word-spacing:11.260500px;}
.ws43{word-spacing:11.748000px;}
.ws46{word-spacing:12.804000px;}
.ws84{word-spacing:12.970742px;}
.wsae{word-spacing:13.365000px;}
.ws42{word-spacing:14.190000px;}
.ws85{word-spacing:17.031000px;}
.ws80{word-spacing:19.620000px;}
.ws71{word-spacing:27.840000px;}
.wsee{word-spacing:33.829800px;}
.ws59{word-spacing:34.110000px;}
.ws58{word-spacing:42.930000px;}
.wsed{word-spacing:53.781000px;}
.ws1b{word-spacing:56.028000px;}
.ws56{word-spacing:57.660000px;}
.ws79{word-spacing:68.040000px;}
.ws103{word-spacing:77.964600px;}
.wsfd{word-spacing:98.628000px;}
.ws7a{word-spacing:100.620000px;}
.wsec{word-spacing:105.909600px;}
.ws113{word-spacing:116.610600px;}
.wsf0{word-spacing:125.628000px;}
.wsf1{word-spacing:125.628600px;}
.wsf2{word-spacing:126.630000px;}
.wsf6{word-spacing:127.632000px;}
.ws11a{word-spacing:127.788600px;}
.ws112{word-spacing:143.610000px;}
.wsfc{word-spacing:143.610600px;}
.ws10c{word-spacing:144.612000px;}
.wsf7{word-spacing:145.116600px;}
.ws10f{word-spacing:145.614000px;}
.ws10b{word-spacing:148.602600px;}
.ws110{word-spacing:149.598600px;}
.wse6{word-spacing:150.625800px;}
.wsf4{word-spacing:152.628000px;}
.wsf3{word-spacing:152.628600px;}
.wsfb{word-spacing:157.110000px;}
.ws107{word-spacing:158.112600px;}
.ws106{word-spacing:161.619000px;}
.wse5{word-spacing:162.998400px;}
.ws124{word-spacing:167.634000px;}
.ws5b{word-spacing:167.640000px;}
.ws105{word-spacing:170.610600px;}
.wsf9{word-spacing:175.602000px;}
.wse1{word-spacing:177.625800px;}
.wsef{word-spacing:179.628000px;}
.wse3{word-spacing:182.617800px;}
.wse2{word-spacing:184.004400px;}
.ws104{word-spacing:185.112600px;}
.ws111{word-spacing:186.129600px;}
.ws10d{word-spacing:187.131600px;}
.ws108{word-spacing:191.121600px;}
.wse4{word-spacing:191.125800px;}
.ws11e{word-spacing:194.633400px;}
.ws11d{word-spacing:194.634000px;}
.wsf8{word-spacing:197.013600px;}
.ws11f{word-spacing:199.626000px;}
.ws121{word-spacing:200.628000px;}
.wse0{word-spacing:204.625800px;}
.ws120{word-spacing:210.138000px;}
.wsfa{word-spacing:213.130200px;}
.ws10a{word-spacing:218.019600px;}
.ws68{word-spacing:218.520000px;}
.ws11c{word-spacing:221.634000px;}
.ws5e{word-spacing:224.520000px;}
.ws109{word-spacing:228.649800px;}
.ws122{word-spacing:232.494000px;}
.ws10e{word-spacing:233.641800px;}
.wsf5{word-spacing:239.985600px;}
.ws75{word-spacing:245.520000px;}
.ws60{word-spacing:349.785000px;}
.ws66{word-spacing:373.095000px;}
.ws6c{word-spacing:373.125000px;}
.ws6f{word-spacing:421.380000px;}
.wsd4{word-spacing:448.458600px;}
.ws70{word-spacing:516.105000px;}
.wsd3{word-spacing:580.118400px;}
.ws78{word-spacing:674.055000px;}
.ws76{word-spacing:683.055000px;}
.ws65{word-spacing:684.585000px;}
.ws6b{word-spacing:687.555000px;}
.ws61{word-spacing:693.585000px;}
.ws69{word-spacing:696.555000px;}
._21{margin-left:-1226.232000px;}
._1d{margin-left:-1175.640000px;}
._1b{margin-left:-702.072000px;}
._17{margin-left:-698.976000px;}
._26{margin-left:-688.464000px;}
._2b{margin-left:-609.660000px;}
._18{margin-left:-400.020000px;}
._11{margin-left:-326.940000px;}
._1c{margin-left:-311.580000px;}
._25{margin-left:-263.940000px;}
._20{margin-left:-199.656000px;}
._13{margin-left:-193.614000px;}
._1f{margin-left:-175.275000px;}
._22{margin-left:-173.070000px;}
._16{margin-left:-171.504000px;}
._15{margin-left:-153.315000px;}
._19{margin-left:-151.110000px;}
._f{margin-left:-147.000000px;}
._1a{margin-left:-137.040000px;}
._27{margin-left:-50.640000px;}
._1e{margin-left:-35.820000px;}
._10{margin-left:-31.560000px;}
._28{margin-left:-30.480000px;}
._24{margin-left:-28.620000px;}
._23{margin-left:-25.425000px;}
._14{margin-left:-22.500000px;}
._2a{margin-left:-13.590000px;}
._0{margin-left:-8.688725px;}
._3{margin-left:-6.746812px;}
._c{margin-left:-5.658672px;}
._1{margin-left:-4.505328px;}
._4{margin-left:-2.982600px;}
._6{margin-left:-1.883849px;}
._7{width:1.918200px;}
._9{width:2.923728px;}
._5{width:4.732925px;}
._b{width:6.324000px;}
._a{width:7.424400px;}
._43{width:8.442600px;}
._e{width:9.774600px;}
._2{width:11.263320px;}
._29{width:13.204800px;}
._44{width:33.848400px;}
._d{width:56.028000px;}
._8{width:66.046800px;}
._5f{width:67.863600px;}
._12{width:71.640000px;}
._92{width:96.580800px;}
._55{width:101.586600px;}
._9b{width:103.344000px;}
._48{width:105.477600px;}
._49{width:109.446600px;}
._3c{width:112.939612px;}
._63{width:120.786600px;}
._81{width:122.887800px;}
._88{width:125.912437px;}
._62{width:128.790000px;}
._3f{width:130.921612px;}
._61{width:139.450200px;}
._67{width:152.628000px;}
._75{width:154.231049px;}
._47{width:157.012800px;}
._82{width:160.936200px;}
._85{width:162.408000px;}
._5e{width:165.128400px;}
._2c{width:167.388000px;}
._57{width:170.504400px;}
._99{width:172.629000px;}
._46{width:174.543000px;}
._78{width:175.696200px;}
._6d{width:179.628000px;}
._6a{width:181.464600px;}
._68{width:183.210449px;}
._6c{width:185.467800px;}
._72{width:188.620200px;}
._56{width:191.125800px;}
._4a{width:197.504400px;}
._7c{width:198.510151px;}
._90{width:199.629000px;}
._65{width:202.120200px;}
._4f{width:204.626400px;}
._a6{width:207.620400px;}
._6e{width:208.647000px;}
._ac{width:209.649600px;}
._89{width:210.850800px;}
._7f{width:212.673151px;}
._9a{width:215.149800px;}
._4e{width:218.125800px;}
._a7{width:222.147600px;}
._69{width:224.167800px;}
._83{width:226.630200px;}
._a5{width:230.103000px;}
._4c{width:232.037400px;}
._86{width:233.615249px;}
._76{width:237.668400px;}
._74{width:238.750200px;}
._79{width:240.130200px;}
._8e{width:242.242200px;}
._2f{width:244.714800px;}
._7b{width:245.953800px;}
._6f{width:251.167800px;}
._73{width:252.967800px;}
._77{width:256.428600px;}
._7d{width:260.260649px;}
._9d{width:267.000000px;}
._80{width:269.149200px;}
._7a{width:273.658200px;}
._3d{width:278.238000px;}
._31{width:291.762000px;}
._71{width:298.003800px;}
._70{width:303.997800px;}
._39{width:312.435600px;}
._66{width:342.985800px;}
._96{width:348.499800px;}
._84{width:353.899800px;}
._30{width:355.443000px;}
._34{width:358.916400px;}
._2e{width:365.359800px;}
._7e{width:371.881800px;}
._37{width:373.911000px;}
._60{width:384.792600px;}
._2d{width:392.359800px;}
._6b{width:406.003800px;}
._8d{width:407.088600px;}
._3e{width:412.205400px;}
._64{width:416.479800px;}
._42{width:421.216200px;}
._93{width:431.467800px;}
._40{width:436.851412px;}
._33{width:443.946000px;}
._58{width:449.562600px;}
._41{width:456.772800px;}
._36{width:458.975400px;}
._50{width:467.544600px;}
._95{width:470.563800px;}
._94{width:481.038600px;}
._5a{width:488.658600px;}
._ab{width:493.978800px;}
._59{width:499.026600px;}
._91{width:500.068800px;}
._54{width:518.574600px;}
._8f{width:531.604800px;}
._53{width:551.112600px;}
._a1{width:552.591000px;}
._3b{width:563.218800px;}
._52{width:569.604600px;}
._a8{width:577.948800px;}
._38{width:581.641200px;}
._8b{width:590.086800px;}
._97{width:592.009800px;}
._35{width:599.623200px;}
._32{width:605.617200px;}
._4d{width:608.592600px;}
._5c{width:610.104600px;}
._a9{width:617.044800px;}
._45{width:618.883200px;}
._3a{width:622.225612px;}
._5b{width:628.086600px;}
._a4{width:647.091000px;}
._8c{width:653.104800px;}
._8a{width:663.580800px;}
._51{width:671.610600px;}
._a3{width:678.627000px;}
._4b{width:682.086600px;}
._a2{width:684.621000px;}
._87{width:706.995528px;}
._9f{width:723.609000px;}
._ad{width:738.490800px;}
._aa{width:756.472800px;}
._9c{width:769.407000px;}
._a0{width:786.627000px;}
._9e{width:797.103000px;}
._5d{width:888.578328px;}
._98{width:904.605528px;}
._ae{width:1086.590328px;}
.fc4{color:rgb(177,86,56);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(198,56,54);}
.fc1{color:rgb(133,138,141);}
.fc0{color:rgb(27,24,26);}
.fs7{font-size:42.000000px;}
.fse{font-size:42.428400px;}
.fsb{font-size:45.000000px;}
.fsa{font-size:46.200000px;}
.fsf{font-size:48.000000px;}
.fsc{font-size:49.500000px;}
.fs5{font-size:50.400000px;}
.fs3{font-size:54.000000px;}
.fsd{font-size:56.571600px;}
.fs0{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:112.633200px;}
.fs1{font-size:144.814200px;}
.y0{bottom:0.000000px;}
.ycb{bottom:3.000000px;}
.yc9{bottom:3.000600px;}
.ycd{bottom:3.001050px;}
.yc1{bottom:3.328050px;}
.y9e{bottom:10.498950px;}
.y84{bottom:10.499550px;}
.yab{bottom:10.500450px;}
.y78{bottom:17.999550px;}
.yc6{bottom:22.500000px;}
.yae{bottom:39.140250px;}
.y1{bottom:57.631050px;}
.y120{bottom:117.984750px;}
.y5d{bottom:128.314950px;}
.y107{bottom:134.915850px;}
.yee{bottom:137.385450px;}
.y122{bottom:140.234100px;}
.y11f{bottom:144.353100px;}
.y5c{bottom:149.314950px;}
.yed{bottom:155.249700px;}
.yba{bottom:155.406525px;}
.y121{bottom:157.484100px;}
.y106{bottom:161.284200px;}
.y11e{bottom:162.217350px;}
.y154{bottom:163.967400px;}
.y5b{bottom:170.314950px;}
.yec{bottom:173.114100px;}
.y2d{bottom:175.045200px;}
.yb9{bottom:178.240980px;}
.y105{bottom:179.148450px;}
.y11d{bottom:180.081600px;}
.y153{bottom:181.217400px;}
.yeb{bottom:190.978350px;}
.y5a{bottom:191.314950px;}
.y2c{bottom:193.045200px;}
.y104{bottom:197.012700px;}
.y11c{bottom:197.945850px;}
.y152{bottom:198.467400px;}
.yea{bottom:208.842600px;}
.y2b{bottom:211.045200px;}
.y59{bottom:212.314950px;}
.y103{bottom:214.876950px;}
.y11b{bottom:215.810250px;}
.yb8{bottom:218.406525px;}
.ye9{bottom:226.706850px;}
.y102{bottom:232.741350px;}
.y58{bottom:233.314950px;}
.y2a{bottom:233.545200px;}
.y11a{bottom:233.674500px;}
.y139{bottom:239.910000px;}
.yb7{bottom:240.831000px;}
.ye8{bottom:244.571250px;}
.yef{bottom:245.244150px;}
.y101{bottom:250.605600px;}
.y119{bottom:251.538750px;}
.y29{bottom:251.545050px;}
.y57{bottom:254.314950px;}
.ye7{bottom:262.435500px;}
.y118{bottom:265.038750px;}
.y138{bottom:266.278350px;}
.y100{bottom:268.469850px;}
.y28{bottom:269.545050px;}
.y56{bottom:275.314950px;}
.y117{bottom:282.903000px;}
.y27{bottom:283.045050px;}
.y137{bottom:284.142600px;}
.yad{bottom:285.685500px;}
.yff{bottom:286.334250px;}
.ye6{bottom:288.803700px;}
.yb3{bottom:291.820050px;}
.yaf{bottom:294.403800px;}
.yb6{bottom:294.405750px;}
.y55{bottom:296.314950px;}
.y116{bottom:300.767400px;}
.y26{bottom:301.045050px;}
.y136{bottom:302.006850px;}
.ye5{bottom:302.303700px;}
.yfe{bottom:304.198500px;}
.yb2{bottom:316.052550px;}
.y54{bottom:317.314950px;}
.y115{bottom:318.631650px;}
.y25{bottom:319.045050px;}
.yb4{bottom:319.798800px;}
.yb0{bottom:319.810050px;}
.y135{bottom:319.871100px;}
.yfd{bottom:322.062750px;}
.yb5{bottom:322.810200px;}
.yac{bottom:324.825750px;}
.ye4{bottom:327.631950px;}
.yb1{bottom:331.712550px;}
.y114{bottom:336.495900px;}
.y134{bottom:337.735500px;}
.y53{bottom:338.314950px;}
.yfc{bottom:339.927000px;}
.ye3{bottom:344.881950px;}
.y113{bottom:354.360150px;}
.y24{bottom:355.045050px;}
.y133{bottom:355.599750px;}
.yfb{bottom:357.791400px;}
.yaa{bottom:359.314500px;}
.y52{bottom:359.314950px;}
.ye2{bottom:362.131950px;}
.ya8{bottom:364.776900px;}
.ya6{bottom:364.788150px;}
.ya3{bottom:364.799400px;}
.ya1{bottom:365.361900px;}
.ya9{bottom:367.799400px;}
.ya0{bottom:369.814950px;}
.y112{bottom:372.224550px;}
.y13b{bottom:373.029300px;}
.y23{bottom:373.045050px;}
.y132{bottom:373.464000px;}
.ya5{bottom:374.541900px;}
.ya2{bottom:374.553150px;}
.yfa{bottom:375.655650px;}
.ya7{bottom:376.690650px;}
.ya4{bottom:376.701900px;}
.ye1{bottom:379.381950px;}
.y51{bottom:380.314950px;}
.y111{bottom:390.088800px;}
.y13a{bottom:390.279300px;}
.y22{bottom:391.045050px;}
.y131{bottom:391.328400px;}
.yf9{bottom:393.519900px;}
.ye0{bottom:396.631950px;}
.y50{bottom:401.314950px;}
.y9d{bottom:407.694000px;}
.y110{bottom:407.953050px;}
.y21{bottom:409.045050px;}
.y130{bottom:409.192500px;}
.yf8{bottom:411.384150px;}
.y96{bottom:413.162400px;}
.y92{bottom:413.173650px;}
.y9a{bottom:413.177250px;}
.y98{bottom:413.533650px;}
.y9b{bottom:413.548500px;}
.y94{bottom:413.736150px;}
.ydf{bottom:413.881950px;}
.y91{bottom:415.614900px;}
.y9c{bottom:416.177400px;}
.y90{bottom:418.192950px;}
.y4f{bottom:422.314950px;}
.y97{bottom:425.064900px;}
.y93{bottom:425.076150px;}
.y9f{bottom:425.083500px;}
.y99{bottom:425.211150px;}
.y95{bottom:425.222400px;}
.y20{bottom:427.045050px;}
.y12f{bottom:427.056900px;}
.yde{bottom:431.131950px;}
.y10f{bottom:434.321250px;}
.yf7{bottom:437.752350px;}
.ycf{bottom:440.125500px;}
.y4e{bottom:443.314950px;}
.y12e{bottom:444.921150px;}
.y1f{bottom:445.045050px;}
.ydd{bottom:448.381950px;}
.y10e{bottom:459.649500px;}
.ycc{bottom:460.062000px;}
.yce{bottom:461.125500px;}
.y12d{bottom:462.785400px;}
.y1e{bottom:463.045050px;}
.yf6{bottom:463.080600px;}
.y8f{bottom:463.252500px;}
.y4d{bottom:464.314950px;}
.ydc{bottom:465.631950px;}
.y8d{bottom:468.713850px;}
.y8b{bottom:468.725100px;}
.y88{bottom:468.736350px;}
.y86{bottom:469.298850px;}
.y8e{bottom:471.736350px;}
.y85{bottom:473.752050px;}
.y10d{bottom:476.899500px;}
.y8a{bottom:478.478850px;}
.y87{bottom:478.490100px;}
.yf5{bottom:480.330600px;}
.y8c{bottom:480.627600px;}
.y89{bottom:480.638850px;}
.y12c{bottom:480.649800px;}
.y1d{bottom:481.045050px;}
.ydb{bottom:482.881950px;}
.y4c{bottom:485.314950px;}
.y10c{bottom:494.149500px;}
.yf4{bottom:497.580600px;}
.y12b{bottom:498.514050px;}
.y1c{bottom:499.045050px;}
.yda{bottom:500.131950px;}
.yca{bottom:501.000000px;}
.y4b{bottom:506.314950px;}
.y10b{bottom:511.399500px;}
.yf3{bottom:514.830600px;}
.y12a{bottom:516.378300px;}
.y83{bottom:516.685500px;}
.y1b{bottom:517.045050px;}
.y81{bottom:522.146850px;}
.y7f{bottom:522.158100px;}
.y7c{bottom:522.169350px;}
.y7a{bottom:522.731850px;}
.yc8{bottom:524.125500px;}
.y82{bottom:525.169500px;}
.y79{bottom:527.185050px;}
.y4a{bottom:527.314950px;}
.y10a{bottom:528.649500px;}
.y7e{bottom:531.911850px;}
.y7b{bottom:531.923100px;}
.yf2{bottom:532.080600px;}
.y80{bottom:534.060600px;}
.y7d{bottom:534.071850px;}
.y1a{bottom:535.045050px;}
.y129{bottom:542.746500px;}
.y60{bottom:543.309300px;}
.y109{bottom:545.899500px;}
.y49{bottom:548.314950px;}
.y19{bottom:553.045050px;}
.y5f{bottom:560.559300px;}
.y128{bottom:568.074750px;}
.y48{bottom:569.314950px;}
.y18{bottom:571.045050px;}
.y127{bottom:585.324750px;}
.y17{bottom:589.045050px;}
.y47{bottom:590.314950px;}
.y77{bottom:597.496500px;}
.y126{bottom:602.574750px;}
.y73{bottom:603.683550px;}
.yc0{bottom:606.000000px;}
.y16{bottom:607.045050px;}
.y6d{bottom:608.183550px;}
.y70{bottom:608.187300px;}
.y6e{bottom:610.478550px;}
.y76{bottom:610.480500px;}
.y71{bottom:610.482300px;}
.y46{bottom:611.314950px;}
.yc4{bottom:611.761800px;}
.ybf{bottom:611.769300px;}
.yc7{bottom:612.328050px;}
.y68{bottom:612.916050px;}
.y75{bottom:613.487550px;}
.ybc{bottom:614.340000px;}
.y69{bottom:615.494250px;}
.y61{bottom:615.496050px;}
.y125{bottom:619.824750px;}
.yc2{bottom:621.234300px;}
.y72{bottom:622.384800px;}
.y66{bottom:623.929800px;}
.y6b{bottom:623.933550px;}
.y64{bottom:624.492300px;}
.yc5{bottom:625.914300px;}
.ybd{bottom:625.921800px;}
.y63{bottom:626.371050px;}
.y74{bottom:626.933550px;}
.ybb{bottom:628.500000px;}
.y6a{bottom:628.949250px;}
.y62{bottom:628.951050px;}
.y45{bottom:632.314950px;}
.y6c{bottom:633.451050px;}
.y67{bottom:635.832300px;}
.y6f{bottom:635.839800px;}
.y65{bottom:635.978550px;}
.ybe{bottom:636.935550px;}
.yc3{bottom:636.939300px;}
.y124{bottom:637.074750px;}
.y15{bottom:646.305000px;}
.y44{bottom:653.314950px;}
.y123{bottom:654.324750px;}
.y14{bottom:664.305000px;}
.y43{bottom:674.314950px;}
.y13{bottom:682.305000px;}
.y42{bottom:695.314950px;}
.y12{bottom:700.305000px;}
.y41{bottom:716.314950px;}
.y11{bottom:718.305000px;}
.y151{bottom:722.750400px;}
.y40{bottom:737.314950px;}
.y150{bottom:749.118750px;}
.y10{bottom:757.564800px;}
.y3f{bottom:758.314950px;}
.y14f{bottom:766.983000px;}
.yf1{bottom:770.109300px;}
.yf{bottom:775.564800px;}
.y3e{bottom:779.314950px;}
.y14e{bottom:784.847250px;}
.yf0{bottom:787.359300px;}
.ye{bottom:793.564800px;}
.y108{bottom:798.366150px;}
.y3d{bottom:800.314950px;}
.y14d{bottom:802.711650px;}
.yd1{bottom:805.474050px;}
.y14c{bottom:820.575900px;}
.y3c{bottom:821.314950px;}
.yd0{bottom:822.724050px;}
.y14b{bottom:838.440150px;}
.y3b{bottom:842.314950px;}
.y14a{bottom:856.304400px;}
.y3a{bottom:863.314950px;}
.yd{bottom:871.092450px;}
.y149{bottom:874.168800px;}
.y39{bottom:884.314950px;}
.y148{bottom:892.033050px;}
.yc{bottom:901.092450px;}
.y38{bottom:905.314950px;}
.y147{bottom:909.897300px;}
.y37{bottom:926.314950px;}
.y146{bottom:927.761700px;}
.y145{bottom:945.625800px;}
.y36{bottom:947.314950px;}
.y144{bottom:963.490200px;}
.y35{bottom:968.314950px;}
.yb{bottom:973.612050px;}
.yd9{bottom:979.511700px;}
.y143{bottom:981.354450px;}
.y34{bottom:989.314950px;}
.ya{bottom:994.612050px;}
.yd8{bottom:997.375950px;}
.y142{bottom:999.218700px;}
.y33{bottom:1010.314950px;}
.yd7{bottom:1015.240200px;}
.y141{bottom:1025.587050px;}
.y32{bottom:1031.314950px;}
.yd6{bottom:1033.104600px;}
.y140{bottom:1050.915150px;}
.yd5{bottom:1050.968850px;}
.y31{bottom:1052.314950px;}
.y13f{bottom:1068.165150px;}
.y30{bottom:1073.314950px;}
.yd4{bottom:1077.337050px;}
.y9{bottom:1081.226850px;}
.y13e{bottom:1085.415150px;}
.y5e{bottom:1094.314950px;}
.y8{bottom:1099.226850px;}
.y13d{bottom:1102.665150px;}
.yd3{bottom:1102.665300px;}
.y2f{bottom:1115.314950px;}
.y7{bottom:1117.226850px;}
.y13c{bottom:1119.915150px;}
.yd2{bottom:1119.915300px;}
.y6{bottom:1135.226850px;}
.y2{bottom:1143.169950px;}
.y5{bottom:1161.730800px;}
.y4{bottom:1179.730800px;}
.y2e{bottom:1189.226850px;}
.y3{bottom:1197.730800px;}
.h2d{height:16.500000px;}
.h2b{height:16.501500px;}
.h27{height:29.699880px;}
.h22{height:30.000000px;}
.h16{height:31.500000px;}
.ha{height:32.039062px;}
.h20{height:32.985000px;}
.h1a{height:33.345000px;}
.h2f{height:33.351562px;}
.h26{height:34.650000px;}
.h1f{height:34.830000px;}
.h12{height:37.520508px;}
.h7{height:39.313477px;}
.h4{height:39.339844px;}
.h2e{height:40.031250px;}
.h8{height:41.689453px;}
.h13{height:42.000000px;}
.h19{height:44.460000px;}
.h11{height:45.035156px;}
.hd{height:45.858398px;}
.h10{height:46.200000px;}
.hf{height:48.796875px;}
.h14{height:49.492800px;}
.h29{height:49.500000px;}
.h2{height:50.039062px;}
.h2a{height:50.265000px;}
.h1e{height:50.998500px;}
.h9{height:53.027344px;}
.h1d{height:53.352000px;}
.hc{height:55.042969px;}
.h2c{height:55.986328px;}
.h25{height:56.250000px;}
.hb{height:56.929688px;}
.h5{height:58.317188px;}
.he{height:58.330078px;}
.h24{height:58.500000px;}
.h1c{height:62.040000px;}
.h23{height:62.062200px;}
.h21{height:62.062800px;}
.h18{height:62.077800px;}
.h1b{height:65.352000px;}
.h17{height:69.570000px;}
.h6{height:73.195312px;}
.h28{height:86.040000px;}
.h15{height:95.820000px;}
.h30{height:99.035156px;}
.h3{height:112.810262px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:16.500000px;}
.w3{width:198.000000px;}
.w2{width:598.501500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x60{left:72.563100px;}
.x65{left:76.500600px;}
.x66{left:82.172400px;}
.x51{left:94.641150px;}
.x2{left:128.209500px;}
.xe{left:130.090350px;}
.x5c{left:131.730900px;}
.x53{left:137.545350px;}
.x5e{left:138.715350px;}
.x2c{left:143.815350px;}
.x52{left:145.746600px;}
.x54{left:149.875350px;}
.x55{left:155.543400px;}
.x73{left:157.322850px;}
.x10{left:158.684100px;}
.x31{left:160.324650px;}
.x68{left:161.928750px;}
.x50{left:163.184100px;}
.x57{left:168.563400px;}
.xc{left:170.078700px;}
.x2b{left:174.055350px;}
.x2a{left:175.787850px;}
.x2f{left:179.882850px;}
.x72{left:182.834550px;}
.x16{left:186.158400px;}
.xa{left:191.338650px;}
.x28{left:192.527850px;}
.x71{left:194.239650px;}
.x19{left:197.352150px;}
.xb{left:199.842450px;}
.x29{left:202.090350px;}
.x4b{left:203.170350px;}
.x56{left:206.723400px;}
.x25{left:209.315850px;}
.x3b{left:211.133400px;}
.x61{left:213.850350px;}
.x41{left:217.559100px;}
.x23{left:222.852150px;}
.x5f{left:225.430350px;}
.x26{left:226.793400px;}
.x62{left:228.846600px;}
.x20{left:232.470900px;}
.x32{left:234.105900px;}
.x24{left:240.527850px;}
.x3a{left:243.668400px;}
.x58{left:247.490400px;}
.x21{left:254.262150px;}
.x15{left:255.998400px;}
.x2e{left:258.452850px;}
.x38{left:259.577850px;}
.x5d{left:264.675900px;}
.x1e{left:265.793400px;}
.x70{left:274.470150px;}
.x63{left:281.485350px;}
.x14{left:286.418400px;}
.xd{left:287.696700px;}
.x37{left:289.446600px;}
.x1d{left:290.729100px;}
.x3c{left:292.414650px;}
.x30{left:294.542850px;}
.x18{left:296.408400px;}
.x4c{left:297.617850px;}
.x33{left:300.250350px;}
.xf{left:302.875350px;}
.x69{left:305.636400px;}
.x4f{left:312.938100px;}
.x35{left:315.563100px;}
.x2d{left:317.425350px;}
.x4d{left:319.781850px;}
.x13{left:321.945900px;}
.x39{left:323.156850px;}
.x1b{left:328.371600px;}
.x46{left:332.637150px;}
.x17{left:334.050900px;}
.x6b{left:344.492400px;}
.x40{left:346.155900px;}
.x11{left:354.480900px;}
.x47{left:355.793400px;}
.x6d{left:357.777150px;}
.x6c{left:361.152150px;}
.x1a{left:364.737150px;}
.x4e{left:374.449650px;}
.x34{left:377.074650px;}
.x3f{left:378.128400px;}
.x43{left:382.281600px;}
.x45{left:387.953400px;}
.x12{left:404.397150px;}
.x3d{left:413.475900px;}
.x1f{left:415.654650px;}
.x22{left:426.994650px;}
.x6f{left:438.956700px;}
.x1{left:442.706700px;}
.x1c{left:490.371600px;}
.x8{left:492.501750px;}
.x4a{left:493.594200px;}
.x3e{left:494.757150px;}
.x48{left:500.438100px;}
.x42{left:505.379100px;}
.x44{left:511.050900px;}
.x49{left:517.558950px;}
.x3{left:520.273050px;}
.x6a{left:533.809500px;}
.x9{left:539.066250px;}
.x5a{left:550.512340px;}
.x5{left:576.527400px;}
.x64{left:577.875600px;}
.x27{left:580.547400px;}
.x4{left:611.852850px;}
.x6{left:619.354350px;}
.x6e{left:623.009100px;}
.x7{left:624.331200px;}
.x67{left:710.355900px;}
.x5b{left:714.853425px;}
.x36{left:718.652700px;}
.x59{left:736.353825px;}
@media print{
.v6{vertical-align:-34.160000pt;}
.v16{vertical-align:-28.181439pt;}
.v11{vertical-align:-26.723733pt;}
.va{vertical-align:-24.160000pt;}
.v13{vertical-align:-21.658933pt;}
.v10{vertical-align:-17.166400pt;}
.v3{vertical-align:-16.000000pt;}
.v15{vertical-align:-14.714133pt;}
.v7{vertical-align:-8.480000pt;}
.vc{vertical-align:-7.320000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.320000pt;}
.v12{vertical-align:3.317333pt;}
.ve{vertical-align:7.166400pt;}
.v17{vertical-align:8.800000pt;}
.v9{vertical-align:10.666667pt;}
.v14{vertical-align:12.460267pt;}
.v2{vertical-align:16.000000pt;}
.v4{vertical-align:17.600000pt;}
.v1{vertical-align:19.200000pt;}
.vf{vertical-align:22.000000pt;}
.v8{vertical-align:33.840000pt;}
.v18{vertical-align:39.146667pt;}
.vb{vertical-align:41.973333pt;}
.v5{vertical-align:47.840000pt;}
.ls4{letter-spacing:-16.018944pt;}
.ls3{letter-spacing:-6.007104pt;}
.ls6d{letter-spacing:-5.328000pt;}
.ls71{letter-spacing:-4.736000pt;}
.ls6f{letter-spacing:-1.973333pt;}
.ls70{letter-spacing:-1.776000pt;}
.ls6b{letter-spacing:-1.056000pt;}
.lsc{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.645333pt;}
.ls6c{letter-spacing:-0.586667pt;}
.ls11{letter-spacing:-0.469333pt;}
.ls6e{letter-spacing:-0.410667pt;}
.lsd{letter-spacing:-0.352000pt;}
.ls60{letter-spacing:-0.301713pt;}
.ls63{letter-spacing:-0.293333pt;}
.ls44{letter-spacing:-0.280000pt;}
.lsf{letter-spacing:-0.234667pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.176000pt;}
.ls12{letter-spacing:-0.117333pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:-0.096000pt;}
.ls3b{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.074667pt;}
.lse{letter-spacing:-0.058667pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls9{letter-spacing:-0.048000pt;}
.ls14{letter-spacing:-0.041067pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000533pt;}
.ls1{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.006933pt;}
.ls34{letter-spacing:0.040000pt;}
.ls5e{letter-spacing:0.044000pt;}
.ls5f{letter-spacing:0.075428pt;}
.ls5d{letter-spacing:0.088000pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.266667pt;}
.ls29{letter-spacing:7.661867pt;}
.ls66{letter-spacing:11.400000pt;}
.ls65{letter-spacing:11.760000pt;}
.ls64{letter-spacing:12.040000pt;}
.ls68{letter-spacing:18.840000pt;}
.ls38{letter-spacing:19.733333pt;}
.ls28{letter-spacing:23.322667pt;}
.ls69{letter-spacing:27.253333pt;}
.ls3e{letter-spacing:30.453333pt;}
.ls67{letter-spacing:35.000000pt;}
.ls31{letter-spacing:40.266667pt;}
.ls16{letter-spacing:41.840000pt;}
.ls39{letter-spacing:49.600000pt;}
.ls5c{letter-spacing:50.186667pt;}
.ls43{letter-spacing:52.266667pt;}
.ls57{letter-spacing:54.826667pt;}
.ls4e{letter-spacing:55.893333pt;}
.ls37{letter-spacing:69.360000pt;}
.ls30{letter-spacing:73.173333pt;}
.ls58{letter-spacing:73.866667pt;}
.ls33{letter-spacing:77.320000pt;}
.ls3a{letter-spacing:79.413333pt;}
.ls35{letter-spacing:82.760000pt;}
.ls55{letter-spacing:88.160000pt;}
.ls2d{letter-spacing:90.400000pt;}
.ls2e{letter-spacing:99.200000pt;}
.ls2b{letter-spacing:116.053333pt;}
.ls5a{letter-spacing:121.173333pt;}
.ls3f{letter-spacing:126.986667pt;}
.ls5b{letter-spacing:130.346667pt;}
.ls2c{letter-spacing:130.400000pt;}
.ls41{letter-spacing:140.320000pt;}
.ls26{letter-spacing:140.534400pt;}
.ls49{letter-spacing:157.066667pt;}
.ls50{letter-spacing:164.800000pt;}
.ls56{letter-spacing:170.186667pt;}
.ls59{letter-spacing:182.240000pt;}
.ls4a{letter-spacing:212.053333pt;}
.ls61{letter-spacing:223.680000pt;}
.ls62{letter-spacing:234.000000pt;}
.ls25{letter-spacing:241.960000pt;}
.ls1e{letter-spacing:251.280000pt;}
.ls20{letter-spacing:253.960000pt;}
.ls6a{letter-spacing:260.533333pt;}
.ls4f{letter-spacing:268.160000pt;}
.ls36{letter-spacing:271.200000pt;}
.ls1f{letter-spacing:281.120000pt;}
.ls27{letter-spacing:284.000000pt;}
.ls51{letter-spacing:286.666667pt;}
.ls32{letter-spacing:290.613333pt;}
.ls48{letter-spacing:393.066667pt;}
.ls3d{letter-spacing:411.413333pt;}
.ls52{letter-spacing:459.520000pt;}
.ls18{letter-spacing:466.480000pt;}
.ls3c{letter-spacing:468.864000pt;}
.ls45{letter-spacing:471.552000pt;}
.ls19{letter-spacing:491.480000pt;}
.ls1a{letter-spacing:522.480000pt;}
.ls1d{letter-spacing:526.540267pt;}
.ls17{letter-spacing:551.400000pt;}
.ls21{letter-spacing:563.120000pt;}
.ls15{letter-spacing:569.760000pt;}
.ls24{letter-spacing:602.280000pt;}
.ls1c{letter-spacing:611.177067pt;}
.ls23{letter-spacing:662.833600pt;}
.ls22{letter-spacing:677.701333pt;}
.ls46{letter-spacing:900.160000pt;}
.ls40{letter-spacing:901.173333pt;}
.ls53{letter-spacing:912.160000pt;}
.ls4c{letter-spacing:912.512000pt;}
.ls47{letter-spacing:920.320000pt;}
.ls42{letter-spacing:920.480000pt;}
.ls54{letter-spacing:931.520000pt;}
.ls4b{letter-spacing:945.720000pt;}
.ls4d{letter-spacing:947.680000pt;}
.ls1b{letter-spacing:1136.160000pt;}
.ws9b{word-spacing:-947.680000pt;}
.ws9a{word-spacing:-945.720000pt;}
.ws9f{word-spacing:-931.520000pt;}
.ws96{word-spacing:-920.480000pt;}
.ws99{word-spacing:-920.320000pt;}
.ws72{word-spacing:-912.576000pt;}
.ws9e{word-spacing:-912.160000pt;}
.ws95{word-spacing:-901.173333pt;}
.ws98{word-spacing:-900.160000pt;}
.ws6a{word-spacing:-471.616000pt;}
.ws63{word-spacing:-468.928000pt;}
.ws77{word-spacing:-459.584000pt;}
.ws64{word-spacing:-411.466667pt;}
.ws6d{word-spacing:-406.400000pt;}
.ws57{word-spacing:-290.666667pt;}
.ws9d{word-spacing:-286.666667pt;}
.ws9c{word-spacing:-268.160000pt;}
.ws5a{word-spacing:-262.026667pt;}
.wsba{word-spacing:-260.533333pt;}
.ws7c{word-spacing:-182.293333pt;}
.ws6e{word-spacing:-170.400000pt;}
.wsa1{word-spacing:-170.186667pt;}
.ws74{word-spacing:-164.853333pt;}
.ws67{word-spacing:-153.653333pt;}
.ws52{word-spacing:-143.733333pt;}
.ws7e{word-spacing:-143.680000pt;}
.ws94{word-spacing:-126.986667pt;}
.ws53{word-spacing:-103.733333pt;}
.ws8c{word-spacing:-99.200000pt;}
.ws90{word-spacing:-90.400000pt;}
.ws51{word-spacing:-88.373333pt;}
.wsa0{word-spacing:-88.160000pt;}
.ws8e{word-spacing:-77.320000pt;}
.ws7b{word-spacing:-73.920000pt;}
.ws55{word-spacing:-73.226667pt;}
.ws8f{word-spacing:-69.360000pt;}
.ws73{word-spacing:-55.946667pt;}
.ws0{word-spacing:-39.904357pt;}
.wsb7{word-spacing:-35.000000pt;}
.ws93{word-spacing:-30.453333pt;}
.wsb9{word-spacing:-27.253333pt;}
.ws1{word-spacing:-25.029600pt;}
.ws91{word-spacing:-19.733333pt;}
.wsb8{word-spacing:-18.840000pt;}
.ws132{word-spacing:-18.666667pt;}
.ws4{word-spacing:-17.792000pt;}
.ws2{word-spacing:-15.017760pt;}
.ws19{word-spacing:-14.666667pt;}
.ws139{word-spacing:-14.608000pt;}
.ws13f{word-spacing:-14.314667pt;}
.ws138{word-spacing:-14.256000pt;}
.ws133{word-spacing:-14.021333pt;}
.ws50{word-spacing:-13.493333pt;}
.ws3{word-spacing:-13.344000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws6{word-spacing:-13.296000pt;}
.ws18{word-spacing:-12.384000pt;}
.wsab{word-spacing:-12.080000pt;}
.wsd2{word-spacing:-12.000000pt;}
.wsac{word-spacing:-11.800000pt;}
.wsad{word-spacing:-11.440000pt;}
.ws11b{word-spacing:-10.666667pt;}
.ws1a{word-spacing:-10.266667pt;}
.ws49{word-spacing:-10.225600pt;}
.ws123{word-spacing:-10.224000pt;}
.ws5d{word-spacing:-10.000000pt;}
.ws7{word-spacing:-9.333333pt;}
.ws8{word-spacing:-9.258667pt;}
.wsa3{word-spacing:-7.333333pt;}
.ws81{word-spacing:-4.853333pt;}
.ws7f{word-spacing:-4.000000pt;}
.wsb{word-spacing:-3.520000pt;}
.ws7d{word-spacing:-3.200000pt;}
.ws145{word-spacing:-2.992000pt;}
.ws1f{word-spacing:-2.933333pt;}
.ws137{word-spacing:-2.698667pt;}
.wsd{word-spacing:-2.666667pt;}
.wsc{word-spacing:-2.640000pt;}
.wsbf{word-spacing:-2.522667pt;}
.wsf{word-spacing:-2.506667pt;}
.wsff{word-spacing:-2.464000pt;}
.ws22{word-spacing:-2.405333pt;}
.wsca{word-spacing:-2.346667pt;}
.ws4e{word-spacing:-2.288000pt;}
.ws21{word-spacing:-2.229333pt;}
.wsa6{word-spacing:-2.170667pt;}
.ws25{word-spacing:-2.112000pt;}
.ws20{word-spacing:-1.994667pt;}
.ws86{word-spacing:-1.936000pt;}
.ws131{word-spacing:-1.877333pt;}
.wsd0{word-spacing:-1.818667pt;}
.ws1c{word-spacing:-1.760000pt;}
.wsb6{word-spacing:-1.642667pt;}
.ws2f{word-spacing:-1.584000pt;}
.ws2c{word-spacing:-1.525333pt;}
.wsc2{word-spacing:-1.466667pt;}
.wsdc{word-spacing:-1.440000pt;}
.ws36{word-spacing:-1.408000pt;}
.wsb1{word-spacing:-1.290667pt;}
.ws126{word-spacing:-1.248000pt;}
.wsc8{word-spacing:-1.232000pt;}
.wse{word-spacing:-1.226667pt;}
.wsaa{word-spacing:-1.173333pt;}
.wsb0{word-spacing:-1.114667pt;}
.ws31{word-spacing:-1.056000pt;}
.wsdf{word-spacing:-0.997333pt;}
.ws17{word-spacing:-0.960000pt;}
.wsd6{word-spacing:-0.938667pt;}
.wsbe{word-spacing:-0.880000pt;}
.ws102{word-spacing:-0.864000pt;}
.wsa7{word-spacing:-0.821333pt;}
.ws134{word-spacing:-0.704000pt;}
.ws117{word-spacing:-0.672000pt;}
.wseb{word-spacing:-0.645333pt;}
.wscd{word-spacing:-0.586667pt;}
.wse9{word-spacing:-0.576000pt;}
.ws33{word-spacing:-0.528000pt;}
.wsc7{word-spacing:-0.469333pt;}
.ws1d{word-spacing:-0.410667pt;}
.wsa5{word-spacing:-0.352000pt;}
.ws54{word-spacing:-0.320000pt;}
.ws3d{word-spacing:-0.293333pt;}
.ws14{word-spacing:-0.266667pt;}
.ws130{word-spacing:-0.234667pt;}
.wsa2{word-spacing:-0.117333pt;}
.wsa4{word-spacing:-0.088000pt;}
.wsa9{word-spacing:-0.075428pt;}
.ws5c{word-spacing:-0.064000pt;}
.ws28{word-spacing:-0.058667pt;}
.ws83{word-spacing:-0.050286pt;}
.ws62{word-spacing:-0.040000pt;}
.ws9{word-spacing:0.000000pt;}
.ws92{word-spacing:0.080000pt;}
.wsc9{word-spacing:0.096000pt;}
.ws8d{word-spacing:0.106667pt;}
.ws2a{word-spacing:0.117333pt;}
.ws3b{word-spacing:0.176000pt;}
.ws37{word-spacing:0.234667pt;}
.ws97{word-spacing:0.280000pt;}
.ws4c{word-spacing:0.293333pt;}
.ws4a{word-spacing:0.352000pt;}
.ws12d{word-spacing:0.410667pt;}
.ws29{word-spacing:0.469333pt;}
.ws87{word-spacing:0.528000pt;}
.ws101{word-spacing:0.624000pt;}
.ws13e{word-spacing:0.645333pt;}
.wscb{word-spacing:0.704000pt;}
.ws39{word-spacing:0.880000pt;}
.ws10{word-spacing:0.906667pt;}
.ws32{word-spacing:0.938667pt;}
.ws3f{word-spacing:0.997333pt;}
.ws118{word-spacing:1.008000pt;}
.wsbc{word-spacing:1.056000pt;}
.ws3e{word-spacing:1.114667pt;}
.wsa8{word-spacing:1.232000pt;}
.ws2d{word-spacing:1.408000pt;}
.ws88{word-spacing:1.466667pt;}
.wsc5{word-spacing:1.525333pt;}
.ws114{word-spacing:1.584000pt;}
.ws135{word-spacing:1.642667pt;}
.ws11{word-spacing:1.653333pt;}
.wsd9{word-spacing:1.760000pt;}
.ws3c{word-spacing:1.818667pt;}
.wsaf{word-spacing:1.877333pt;}
.wscc{word-spacing:1.936000pt;}
.wse7{word-spacing:1.973333pt;}
.wsd5{word-spacing:1.994667pt;}
.wsfe{word-spacing:2.016000pt;}
.ws2e{word-spacing:2.053333pt;}
.ws24{word-spacing:2.112000pt;}
.wsbb{word-spacing:2.229333pt;}
.ws13a{word-spacing:2.288000pt;}
.ws12e{word-spacing:2.405333pt;}
.ws27{word-spacing:2.464000pt;}
.ws15{word-spacing:2.506667pt;}
.ws4f{word-spacing:2.544000pt;}
.ws128{word-spacing:2.581333pt;}
.ws8a{word-spacing:2.640000pt;}
.wsd7{word-spacing:2.816000pt;}
.ws100{word-spacing:2.874667pt;}
.ws48{word-spacing:2.933333pt;}
.wsc4{word-spacing:2.992000pt;}
.ws141{word-spacing:3.109333pt;}
.ws12f{word-spacing:3.168000pt;}
.ws127{word-spacing:3.226667pt;}
.wscf{word-spacing:3.285333pt;}
.ws136{word-spacing:3.344000pt;}
.wsc0{word-spacing:3.402667pt;}
.wsc3{word-spacing:3.461333pt;}
.ws13d{word-spacing:3.520000pt;}
.ws119{word-spacing:3.637333pt;}
.wsda{word-spacing:3.696000pt;}
.wsc6{word-spacing:3.754667pt;}
.ws34{word-spacing:3.989333pt;}
.ws129{word-spacing:4.048000pt;}
.ws23{word-spacing:4.106667pt;}
.wsdb{word-spacing:4.224000pt;}
.ws143{word-spacing:4.282667pt;}
.ws12{word-spacing:4.320000pt;}
.ws1e{word-spacing:4.458667pt;}
.ws12a{word-spacing:4.576000pt;}
.ws41{word-spacing:4.810667pt;}
.ws115{word-spacing:4.869333pt;}
.ws35{word-spacing:4.928000pt;}
.ws13{word-spacing:4.960000pt;}
.ws45{word-spacing:4.986667pt;}
.wsdd{word-spacing:5.104000pt;}
.ws13c{word-spacing:5.221333pt;}
.ws2b{word-spacing:5.280000pt;}
.wsb2{word-spacing:5.338667pt;}
.ws8b{word-spacing:5.456000pt;}
.ws13b{word-spacing:5.514667pt;}
.wse8{word-spacing:5.568000pt;}
.wsb4{word-spacing:5.573333pt;}
.wsce{word-spacing:5.808000pt;}
.wsde{word-spacing:5.866667pt;}
.ws26{word-spacing:5.925333pt;}
.ws5f{word-spacing:5.973333pt;}
.wsea{word-spacing:5.984000pt;}
.ws125{word-spacing:6.000000pt;}
.wsa{word-spacing:6.007104pt;}
.ws30{word-spacing:6.042667pt;}
.ws38{word-spacing:6.101333pt;}
.ws116{word-spacing:6.218667pt;}
.ws12b{word-spacing:6.453333pt;}
.wsd8{word-spacing:6.629333pt;}
.ws89{word-spacing:6.688000pt;}
.ws144{word-spacing:6.746667pt;}
.ws16{word-spacing:6.773333pt;}
.wsc1{word-spacing:6.805333pt;}
.ws12c{word-spacing:6.864000pt;}
.ws4d{word-spacing:6.922667pt;}
.ws3a{word-spacing:6.981333pt;}
.ws142{word-spacing:7.040000pt;}
.wsb3{word-spacing:7.157333pt;}
.ws44{word-spacing:7.685333pt;}
.ws4b{word-spacing:7.861333pt;}
.wsd1{word-spacing:8.154667pt;}
.ws40{word-spacing:8.272000pt;}
.ws47{word-spacing:8.330667pt;}
.wsb5{word-spacing:8.389333pt;}
.ws140{word-spacing:8.506667pt;}
.wsbd{word-spacing:9.856000pt;}
.ws82{word-spacing:10.009333pt;}
.ws43{word-spacing:10.442667pt;}
.ws46{word-spacing:11.381333pt;}
.ws84{word-spacing:11.529549pt;}
.wsae{word-spacing:11.880000pt;}
.ws42{word-spacing:12.613333pt;}
.ws85{word-spacing:15.138667pt;}
.ws80{word-spacing:17.440000pt;}
.ws71{word-spacing:24.746667pt;}
.wsee{word-spacing:30.070933pt;}
.ws59{word-spacing:30.320000pt;}
.ws58{word-spacing:38.160000pt;}
.wsed{word-spacing:47.805333pt;}
.ws1b{word-spacing:49.802667pt;}
.ws56{word-spacing:51.253333pt;}
.ws79{word-spacing:60.480000pt;}
.ws103{word-spacing:69.301867pt;}
.wsfd{word-spacing:87.669333pt;}
.ws7a{word-spacing:89.440000pt;}
.wsec{word-spacing:94.141867pt;}
.ws113{word-spacing:103.653867pt;}
.wsf0{word-spacing:111.669333pt;}
.wsf1{word-spacing:111.669867pt;}
.wsf2{word-spacing:112.560000pt;}
.wsf6{word-spacing:113.450667pt;}
.ws11a{word-spacing:113.589867pt;}
.ws112{word-spacing:127.653333pt;}
.wsfc{word-spacing:127.653867pt;}
.ws10c{word-spacing:128.544000pt;}
.wsf7{word-spacing:128.992533pt;}
.ws10f{word-spacing:129.434667pt;}
.ws10b{word-spacing:132.091200pt;}
.ws110{word-spacing:132.976533pt;}
.wse6{word-spacing:133.889600pt;}
.wsf4{word-spacing:135.669333pt;}
.wsf3{word-spacing:135.669867pt;}
.wsfb{word-spacing:139.653333pt;}
.ws107{word-spacing:140.544533pt;}
.ws106{word-spacing:143.661333pt;}
.wse5{word-spacing:144.887467pt;}
.ws124{word-spacing:149.008000pt;}
.ws5b{word-spacing:149.013333pt;}
.ws105{word-spacing:151.653867pt;}
.wsf9{word-spacing:156.090667pt;}
.wse1{word-spacing:157.889600pt;}
.wsef{word-spacing:159.669333pt;}
.wse3{word-spacing:162.326933pt;}
.wse2{word-spacing:163.559467pt;}
.ws104{word-spacing:164.544533pt;}
.ws111{word-spacing:165.448533pt;}
.ws10d{word-spacing:166.339200pt;}
.ws108{word-spacing:169.885867pt;}
.wse4{word-spacing:169.889600pt;}
.ws11e{word-spacing:173.007467pt;}
.ws11d{word-spacing:173.008000pt;}
.wsf8{word-spacing:175.123200pt;}
.ws11f{word-spacing:177.445333pt;}
.ws121{word-spacing:178.336000pt;}
.wse0{word-spacing:181.889600pt;}
.ws120{word-spacing:186.789333pt;}
.wsfa{word-spacing:189.449067pt;}
.ws10a{word-spacing:193.795200pt;}
.ws68{word-spacing:194.240000pt;}
.ws11c{word-spacing:197.008000pt;}
.ws5e{word-spacing:199.573333pt;}
.ws109{word-spacing:203.244267pt;}
.ws122{word-spacing:206.661333pt;}
.ws10e{word-spacing:207.681600pt;}
.wsf5{word-spacing:213.320533pt;}
.ws75{word-spacing:218.240000pt;}
.ws60{word-spacing:310.920000pt;}
.ws66{word-spacing:331.640000pt;}
.ws6c{word-spacing:331.666667pt;}
.ws6f{word-spacing:374.560000pt;}
.wsd4{word-spacing:398.629867pt;}
.ws70{word-spacing:458.760000pt;}
.wsd3{word-spacing:515.660800pt;}
.ws78{word-spacing:599.160000pt;}
.ws76{word-spacing:607.160000pt;}
.ws65{word-spacing:608.520000pt;}
.ws6b{word-spacing:611.160000pt;}
.ws61{word-spacing:616.520000pt;}
.ws69{word-spacing:619.160000pt;}
._21{margin-left:-1089.984000pt;}
._1d{margin-left:-1045.013333pt;}
._1b{margin-left:-624.064000pt;}
._17{margin-left:-621.312000pt;}
._26{margin-left:-611.968000pt;}
._2b{margin-left:-541.920000pt;}
._18{margin-left:-355.573333pt;}
._11{margin-left:-290.613333pt;}
._1c{margin-left:-276.960000pt;}
._25{margin-left:-234.613333pt;}
._20{margin-left:-177.472000pt;}
._13{margin-left:-172.101333pt;}
._1f{margin-left:-155.800000pt;}
._22{margin-left:-153.840000pt;}
._16{margin-left:-152.448000pt;}
._15{margin-left:-136.280000pt;}
._19{margin-left:-134.320000pt;}
._f{margin-left:-130.666667pt;}
._1a{margin-left:-121.813333pt;}
._27{margin-left:-45.013333pt;}
._1e{margin-left:-31.840000pt;}
._10{margin-left:-28.053333pt;}
._28{margin-left:-27.093333pt;}
._24{margin-left:-25.440000pt;}
._23{margin-left:-22.600000pt;}
._14{margin-left:-20.000000pt;}
._2a{margin-left:-12.080000pt;}
._0{margin-left:-7.723311pt;}
._3{margin-left:-5.997166pt;}
._c{margin-left:-5.029931pt;}
._1{margin-left:-4.004736pt;}
._4{margin-left:-2.651200pt;}
._6{margin-left:-1.674532pt;}
._7{width:1.705067pt;}
._9{width:2.598869pt;}
._5{width:4.207044pt;}
._b{width:5.621333pt;}
._a{width:6.599467pt;}
._43{width:7.504533pt;}
._e{width:8.688533pt;}
._2{width:10.011840pt;}
._29{width:11.737600pt;}
._44{width:30.087467pt;}
._d{width:49.802667pt;}
._8{width:58.708267pt;}
._5f{width:60.323200pt;}
._12{width:63.680000pt;}
._92{width:85.849600pt;}
._55{width:90.299200pt;}
._9b{width:91.861333pt;}
._48{width:93.757867pt;}
._49{width:97.285867pt;}
._3c{width:100.390766pt;}
._63{width:107.365867pt;}
._81{width:109.233600pt;}
._88{width:111.922166pt;}
._62{width:114.480000pt;}
._3f{width:116.374766pt;}
._61{width:123.955733pt;}
._67{width:135.669333pt;}
._75{width:137.094266pt;}
._47{width:139.566933pt;}
._82{width:143.054400pt;}
._85{width:144.362667pt;}
._5e{width:146.780800pt;}
._2c{width:148.789333pt;}
._57{width:151.559467pt;}
._99{width:153.448000pt;}
._46{width:155.149333pt;}
._78{width:156.174400pt;}
._6d{width:159.669333pt;}
._6a{width:161.301867pt;}
._68{width:162.853732pt;}
._6c{width:164.860267pt;}
._72{width:167.662400pt;}
._56{width:169.889600pt;}
._4a{width:175.559467pt;}
._7c{width:176.453468pt;}
._90{width:177.448000pt;}
._65{width:179.662400pt;}
._4f{width:181.890133pt;}
._a6{width:184.551467pt;}
._6e{width:185.464000pt;}
._ac{width:186.355200pt;}
._89{width:187.422933pt;}
._7f{width:189.042801pt;}
._9a{width:191.244267pt;}
._4e{width:193.889600pt;}
._a7{width:197.464533pt;}
._69{width:199.260267pt;}
._83{width:201.449067pt;}
._a5{width:204.536000pt;}
._4c{width:206.255467pt;}
._86{width:207.657999pt;}
._76{width:211.260800pt;}
._74{width:212.222400pt;}
._79{width:213.449067pt;}
._8e{width:215.326400pt;}
._2f{width:217.524267pt;}
._7b{width:218.625600pt;}
._6f{width:223.260267pt;}
._73{width:224.860267pt;}
._77{width:227.936533pt;}
._7d{width:231.342799pt;}
._9d{width:237.333333pt;}
._80{width:239.243733pt;}
._7a{width:243.251733pt;}
._3d{width:247.322667pt;}
._31{width:259.344000pt;}
._71{width:264.892267pt;}
._70{width:270.220267pt;}
._39{width:277.720533pt;}
._66{width:304.876267pt;}
._96{width:309.777600pt;}
._84{width:314.577600pt;}
._30{width:315.949333pt;}
._34{width:319.036800pt;}
._2e{width:324.764267pt;}
._7e{width:330.561600pt;}
._37{width:332.365333pt;}
._60{width:342.037867pt;}
._2d{width:348.764267pt;}
._6b{width:360.892267pt;}
._8d{width:361.856533pt;}
._3e{width:366.404800pt;}
._64{width:370.204267pt;}
._42{width:374.414400pt;}
._93{width:383.526933pt;}
._40{width:388.312366pt;}
._33{width:394.618667pt;}
._58{width:399.611200pt;}
._41{width:406.020267pt;}
._36{width:407.978133pt;}
._50{width:415.595200pt;}
._95{width:418.278933pt;}
._94{width:427.589867pt;}
._5a{width:434.363200pt;}
._ab{width:439.092267pt;}
._59{width:443.579200pt;}
._91{width:444.505600pt;}
._54{width:460.955200pt;}
._8f{width:472.537600pt;}
._53{width:489.877867pt;}
._a1{width:491.192000pt;}
._3b{width:500.638933pt;}
._52{width:506.315200pt;}
._a8{width:513.732267pt;}
._38{width:517.014400pt;}
._8b{width:524.521600pt;}
._97{width:526.230933pt;}
._35{width:532.998400pt;}
._32{width:538.326400pt;}
._4d{width:540.971200pt;}
._5c{width:542.315200pt;}
._a9{width:548.484267pt;}
._45{width:550.118400pt;}
._3a{width:553.089433pt;}
._5b{width:558.299200pt;}
._a4{width:575.192000pt;}
._8c{width:580.537600pt;}
._8a{width:589.849600pt;}
._51{width:596.987200pt;}
._a3{width:603.224000pt;}
._4b{width:606.299200pt;}
._a2{width:608.552000pt;}
._87{width:628.440469pt;}
._9f{width:643.208000pt;}
._ad{width:656.436267pt;}
._aa{width:672.420267pt;}
._9c{width:683.917333pt;}
._a0{width:699.224000pt;}
._9e{width:708.536000pt;}
._5d{width:789.847403pt;}
._98{width:804.093803pt;}
._ae{width:965.858069pt;}
.fs7{font-size:37.333333pt;}
.fse{font-size:37.714133pt;}
.fsb{font-size:40.000000pt;}
.fsa{font-size:41.066667pt;}
.fsf{font-size:42.666667pt;}
.fsc{font-size:44.000000pt;}
.fs5{font-size:44.800000pt;}
.fs3{font-size:48.000000pt;}
.fsd{font-size:50.285867pt;}
.fs0{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:100.118400pt;}
.fs1{font-size:128.723733pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:2.666667pt;}
.yc9{bottom:2.667200pt;}
.ycd{bottom:2.667600pt;}
.yc1{bottom:2.958267pt;}
.y9e{bottom:9.332400pt;}
.y84{bottom:9.332933pt;}
.yab{bottom:9.333733pt;}
.y78{bottom:15.999600pt;}
.yc6{bottom:20.000000pt;}
.yae{bottom:34.791333pt;}
.y1{bottom:51.227600pt;}
.y120{bottom:104.875333pt;}
.y5d{bottom:114.057733pt;}
.y107{bottom:119.925200pt;}
.yee{bottom:122.120400pt;}
.y122{bottom:124.652533pt;}
.y11f{bottom:128.313867pt;}
.y5c{bottom:132.724400pt;}
.yed{bottom:137.999733pt;}
.yba{bottom:138.139133pt;}
.y121{bottom:139.985867pt;}
.y106{bottom:143.363733pt;}
.y11e{bottom:144.193200pt;}
.y154{bottom:145.748800pt;}
.y5b{bottom:151.391067pt;}
.yec{bottom:153.879200pt;}
.y2d{bottom:155.595733pt;}
.yb9{bottom:158.436426pt;}
.y105{bottom:159.243067pt;}
.y11d{bottom:160.072533pt;}
.y153{bottom:161.082133pt;}
.yeb{bottom:169.758533pt;}
.y5a{bottom:170.057733pt;}
.y2c{bottom:171.595733pt;}
.y104{bottom:175.122400pt;}
.y11c{bottom:175.951867pt;}
.y152{bottom:176.415467pt;}
.yea{bottom:185.637867pt;}
.y2b{bottom:187.595733pt;}
.y59{bottom:188.724400pt;}
.y103{bottom:191.001733pt;}
.y11b{bottom:191.831333pt;}
.yb8{bottom:194.139133pt;}
.ye9{bottom:201.517200pt;}
.y102{bottom:206.881200pt;}
.y58{bottom:207.391067pt;}
.y2a{bottom:207.595733pt;}
.y11a{bottom:207.710667pt;}
.y139{bottom:213.253333pt;}
.yb7{bottom:214.072000pt;}
.ye8{bottom:217.396667pt;}
.yef{bottom:217.994800pt;}
.y101{bottom:222.760533pt;}
.y119{bottom:223.590000pt;}
.y29{bottom:223.595600pt;}
.y57{bottom:226.057733pt;}
.ye7{bottom:233.276000pt;}
.y118{bottom:235.590000pt;}
.y138{bottom:236.691867pt;}
.y100{bottom:238.639867pt;}
.y28{bottom:239.595600pt;}
.y56{bottom:244.724400pt;}
.y117{bottom:251.469333pt;}
.y27{bottom:251.595600pt;}
.y137{bottom:252.571200pt;}
.yad{bottom:253.942667pt;}
.yff{bottom:254.519333pt;}
.ye6{bottom:256.714400pt;}
.yb3{bottom:259.395600pt;}
.yaf{bottom:261.692267pt;}
.yb6{bottom:261.694000pt;}
.y55{bottom:263.391067pt;}
.y116{bottom:267.348800pt;}
.y26{bottom:267.595600pt;}
.y136{bottom:268.450533pt;}
.ye5{bottom:268.714400pt;}
.yfe{bottom:270.398667pt;}
.yb2{bottom:280.935600pt;}
.y54{bottom:282.057733pt;}
.y115{bottom:283.228133pt;}
.y25{bottom:283.595600pt;}
.yb4{bottom:284.265600pt;}
.yb0{bottom:284.275600pt;}
.y135{bottom:284.329867pt;}
.yfd{bottom:286.278000pt;}
.yb5{bottom:286.942400pt;}
.yac{bottom:288.734000pt;}
.ye4{bottom:291.228400pt;}
.yb1{bottom:294.855600pt;}
.y114{bottom:299.107467pt;}
.y134{bottom:300.209333pt;}
.y53{bottom:300.724400pt;}
.yfc{bottom:302.157333pt;}
.ye3{bottom:306.561733pt;}
.y113{bottom:314.986800pt;}
.y24{bottom:315.595600pt;}
.y133{bottom:316.088667pt;}
.yfb{bottom:318.036800pt;}
.yaa{bottom:319.390667pt;}
.y52{bottom:319.391067pt;}
.ye2{bottom:321.895067pt;}
.ya8{bottom:324.246133pt;}
.ya6{bottom:324.256133pt;}
.ya3{bottom:324.266133pt;}
.ya1{bottom:324.766133pt;}
.ya9{bottom:326.932800pt;}
.ya0{bottom:328.724400pt;}
.y112{bottom:330.866267pt;}
.y13b{bottom:331.581600pt;}
.y23{bottom:331.595600pt;}
.y132{bottom:331.968000pt;}
.ya5{bottom:332.926133pt;}
.ya2{bottom:332.936133pt;}
.yfa{bottom:333.916133pt;}
.ya7{bottom:334.836133pt;}
.ya4{bottom:334.846133pt;}
.ye1{bottom:337.228400pt;}
.y51{bottom:338.057733pt;}
.y111{bottom:346.745600pt;}
.y13a{bottom:346.914933pt;}
.y22{bottom:347.595600pt;}
.y131{bottom:347.847467pt;}
.yf9{bottom:349.795467pt;}
.ye0{bottom:352.561733pt;}
.y50{bottom:356.724400pt;}
.y9d{bottom:362.394667pt;}
.y110{bottom:362.624933pt;}
.y21{bottom:363.595600pt;}
.y130{bottom:363.726667pt;}
.yf8{bottom:365.674800pt;}
.y96{bottom:367.255467pt;}
.y92{bottom:367.265467pt;}
.y9a{bottom:367.268667pt;}
.y98{bottom:367.585467pt;}
.y9b{bottom:367.598667pt;}
.y94{bottom:367.765467pt;}
.ydf{bottom:367.895067pt;}
.y91{bottom:369.435467pt;}
.y9c{bottom:369.935467pt;}
.y90{bottom:371.727067pt;}
.y4f{bottom:375.391067pt;}
.y97{bottom:377.835467pt;}
.y93{bottom:377.845467pt;}
.y9f{bottom:377.852000pt;}
.y99{bottom:377.965467pt;}
.y95{bottom:377.975467pt;}
.y20{bottom:379.595600pt;}
.y12f{bottom:379.606133pt;}
.yde{bottom:383.228400pt;}
.y10f{bottom:386.063333pt;}
.yf7{bottom:389.113200pt;}
.ycf{bottom:391.222667pt;}
.y4e{bottom:394.057733pt;}
.y12e{bottom:395.485467pt;}
.y1f{bottom:395.595600pt;}
.ydd{bottom:398.561733pt;}
.y10e{bottom:408.577333pt;}
.ycc{bottom:408.944000pt;}
.yce{bottom:409.889333pt;}
.y12d{bottom:411.364800pt;}
.y1e{bottom:411.595600pt;}
.yf6{bottom:411.627200pt;}
.y8f{bottom:411.780000pt;}
.y4d{bottom:412.724400pt;}
.ydc{bottom:413.895067pt;}
.y8d{bottom:416.634533pt;}
.y8b{bottom:416.644533pt;}
.y88{bottom:416.654533pt;}
.y86{bottom:417.154533pt;}
.y8e{bottom:419.321200pt;}
.y85{bottom:421.112933pt;}
.y10d{bottom:423.910667pt;}
.y8a{bottom:425.314533pt;}
.y87{bottom:425.324533pt;}
.yf5{bottom:426.960533pt;}
.y8c{bottom:427.224533pt;}
.y89{bottom:427.234533pt;}
.y12c{bottom:427.244267pt;}
.y1d{bottom:427.595600pt;}
.ydb{bottom:429.228400pt;}
.y4c{bottom:431.391067pt;}
.y10c{bottom:439.244000pt;}
.yf4{bottom:442.293867pt;}
.y12b{bottom:443.123600pt;}
.y1c{bottom:443.595600pt;}
.yda{bottom:444.561733pt;}
.yca{bottom:445.333333pt;}
.y4b{bottom:450.057733pt;}
.y10b{bottom:454.577333pt;}
.yf3{bottom:457.627200pt;}
.y12a{bottom:459.002933pt;}
.y83{bottom:459.276000pt;}
.y1b{bottom:459.595600pt;}
.y81{bottom:464.130533pt;}
.y7f{bottom:464.140533pt;}
.y7c{bottom:464.150533pt;}
.y7a{bottom:464.650533pt;}
.yc8{bottom:465.889333pt;}
.y82{bottom:466.817333pt;}
.y79{bottom:468.608933pt;}
.y4a{bottom:468.724400pt;}
.y10a{bottom:469.910667pt;}
.y7e{bottom:472.810533pt;}
.y7b{bottom:472.820533pt;}
.yf2{bottom:472.960533pt;}
.y80{bottom:474.720533pt;}
.y7d{bottom:474.730533pt;}
.y1a{bottom:475.595600pt;}
.y129{bottom:482.441333pt;}
.y60{bottom:482.941600pt;}
.y109{bottom:485.244000pt;}
.y49{bottom:487.391067pt;}
.y19{bottom:491.595600pt;}
.y5f{bottom:498.274933pt;}
.y128{bottom:504.955333pt;}
.y48{bottom:506.057733pt;}
.y18{bottom:507.595600pt;}
.y127{bottom:520.288667pt;}
.y17{bottom:523.595600pt;}
.y47{bottom:524.724400pt;}
.y77{bottom:531.108000pt;}
.y126{bottom:535.622000pt;}
.y73{bottom:536.607600pt;}
.yc0{bottom:538.666667pt;}
.y16{bottom:539.595600pt;}
.y6d{bottom:540.607600pt;}
.y70{bottom:540.610933pt;}
.y6e{bottom:542.647600pt;}
.y76{bottom:542.649333pt;}
.y71{bottom:542.650933pt;}
.y46{bottom:543.391067pt;}
.yc4{bottom:543.788267pt;}
.ybf{bottom:543.794933pt;}
.yc7{bottom:544.291600pt;}
.y68{bottom:544.814267pt;}
.y75{bottom:545.322267pt;}
.ybc{bottom:546.080000pt;}
.y69{bottom:547.106000pt;}
.y61{bottom:547.107600pt;}
.y125{bottom:550.955333pt;}
.yc2{bottom:552.208267pt;}
.y72{bottom:553.230933pt;}
.y66{bottom:554.604267pt;}
.y6b{bottom:554.607600pt;}
.y64{bottom:555.104267pt;}
.yc5{bottom:556.368267pt;}
.ybd{bottom:556.374933pt;}
.y63{bottom:556.774267pt;}
.y74{bottom:557.274267pt;}
.ybb{bottom:558.666667pt;}
.y6a{bottom:559.066000pt;}
.y62{bottom:559.067600pt;}
.y45{bottom:562.057733pt;}
.y6c{bottom:563.067600pt;}
.y67{bottom:565.184267pt;}
.y6f{bottom:565.190933pt;}
.y65{bottom:565.314267pt;}
.ybe{bottom:566.164933pt;}
.yc3{bottom:566.168267pt;}
.y124{bottom:566.288667pt;}
.y15{bottom:574.493333pt;}
.y44{bottom:580.724400pt;}
.y123{bottom:581.622000pt;}
.y14{bottom:590.493333pt;}
.y43{bottom:599.391067pt;}
.y13{bottom:606.493333pt;}
.y42{bottom:618.057733pt;}
.y12{bottom:622.493333pt;}
.y41{bottom:636.724400pt;}
.y11{bottom:638.493333pt;}
.y151{bottom:642.444800pt;}
.y40{bottom:655.391067pt;}
.y150{bottom:665.883333pt;}
.y10{bottom:673.390933pt;}
.y3f{bottom:674.057733pt;}
.y14f{bottom:681.762667pt;}
.yf1{bottom:684.541600pt;}
.yf{bottom:689.390933pt;}
.y3e{bottom:692.724400pt;}
.y14e{bottom:697.642000pt;}
.yf0{bottom:699.874933pt;}
.ye{bottom:705.390933pt;}
.y108{bottom:709.658800pt;}
.y3d{bottom:711.391067pt;}
.y14d{bottom:713.521467pt;}
.yd1{bottom:715.976933pt;}
.y14c{bottom:729.400800pt;}
.y3c{bottom:730.057733pt;}
.yd0{bottom:731.310267pt;}
.y14b{bottom:745.280133pt;}
.y3b{bottom:748.724400pt;}
.y14a{bottom:761.159467pt;}
.y3a{bottom:767.391067pt;}
.yd{bottom:774.304400pt;}
.y149{bottom:777.038933pt;}
.y39{bottom:786.057733pt;}
.y148{bottom:792.918267pt;}
.yc{bottom:800.971067pt;}
.y38{bottom:804.724400pt;}
.y147{bottom:808.797600pt;}
.y37{bottom:823.391067pt;}
.y146{bottom:824.677067pt;}
.y145{bottom:840.556267pt;}
.y36{bottom:842.057733pt;}
.y144{bottom:856.435733pt;}
.y35{bottom:860.724400pt;}
.yb{bottom:865.432933pt;}
.yd9{bottom:870.677067pt;}
.y143{bottom:872.315067pt;}
.y34{bottom:879.391067pt;}
.ya{bottom:884.099600pt;}
.yd8{bottom:886.556400pt;}
.y142{bottom:888.194400pt;}
.y33{bottom:898.057733pt;}
.yd7{bottom:902.435733pt;}
.y141{bottom:911.632933pt;}
.y32{bottom:916.724400pt;}
.yd6{bottom:918.315200pt;}
.y140{bottom:934.146800pt;}
.yd5{bottom:934.194533pt;}
.y31{bottom:935.391067pt;}
.y13f{bottom:949.480133pt;}
.y30{bottom:954.057733pt;}
.yd4{bottom:957.632933pt;}
.y9{bottom:961.090533pt;}
.y13e{bottom:964.813467pt;}
.y5e{bottom:972.724400pt;}
.y8{bottom:977.090533pt;}
.y13d{bottom:980.146800pt;}
.yd3{bottom:980.146933pt;}
.y2f{bottom:991.391067pt;}
.y7{bottom:993.090533pt;}
.y13c{bottom:995.480133pt;}
.yd2{bottom:995.480267pt;}
.y6{bottom:1009.090533pt;}
.y2{bottom:1016.151067pt;}
.y5{bottom:1032.649600pt;}
.y4{bottom:1048.649600pt;}
.y2e{bottom:1057.090533pt;}
.y3{bottom:1064.649600pt;}
.h2d{height:14.666667pt;}
.h2b{height:14.668000pt;}
.h27{height:26.399893pt;}
.h22{height:26.666667pt;}
.h16{height:28.000000pt;}
.ha{height:28.479167pt;}
.h20{height:29.320000pt;}
.h1a{height:29.640000pt;}
.h2f{height:29.645833pt;}
.h26{height:30.800000pt;}
.h1f{height:30.960000pt;}
.h12{height:33.351562pt;}
.h7{height:34.945312pt;}
.h4{height:34.968750pt;}
.h2e{height:35.583333pt;}
.h8{height:37.057292pt;}
.h13{height:37.333333pt;}
.h19{height:39.520000pt;}
.h11{height:40.031250pt;}
.hd{height:40.763021pt;}
.h10{height:41.066667pt;}
.hf{height:43.375000pt;}
.h14{height:43.993600pt;}
.h29{height:44.000000pt;}
.h2{height:44.479167pt;}
.h2a{height:44.680000pt;}
.h1e{height:45.332000pt;}
.h9{height:47.135417pt;}
.h1d{height:47.424000pt;}
.hc{height:48.927083pt;}
.h2c{height:49.765625pt;}
.h25{height:50.000000pt;}
.hb{height:50.604167pt;}
.h5{height:51.837500pt;}
.he{height:51.848958pt;}
.h24{height:52.000000pt;}
.h1c{height:55.146667pt;}
.h23{height:55.166400pt;}
.h21{height:55.166933pt;}
.h18{height:55.180267pt;}
.h1b{height:58.090667pt;}
.h17{height:61.840000pt;}
.h6{height:65.062500pt;}
.h28{height:76.480000pt;}
.h15{height:85.173333pt;}
.h30{height:88.031250pt;}
.h3{height:100.275788pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:14.666667pt;}
.w3{width:176.000000pt;}
.w2{width:532.001333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x60{left:64.500533pt;}
.x65{left:68.000533pt;}
.x66{left:73.042133pt;}
.x51{left:84.125467pt;}
.x2{left:113.964000pt;}
.xe{left:115.635867pt;}
.x5c{left:117.094133pt;}
.x53{left:122.262533pt;}
.x5e{left:123.302533pt;}
.x2c{left:127.835867pt;}
.x52{left:129.552533pt;}
.x54{left:133.222533pt;}
.x55{left:138.260800pt;}
.x73{left:139.842533pt;}
.x10{left:141.052533pt;}
.x31{left:142.510800pt;}
.x68{left:143.936667pt;}
.x50{left:145.052533pt;}
.x57{left:149.834133pt;}
.xc{left:151.181067pt;}
.x2b{left:154.715867pt;}
.x2a{left:156.255867pt;}
.x2f{left:159.895867pt;}
.x72{left:162.519600pt;}
.x16{left:165.474133pt;}
.xa{left:170.078800pt;}
.x28{left:171.135867pt;}
.x71{left:172.657467pt;}
.x19{left:175.424133pt;}
.xb{left:177.637733pt;}
.x29{left:179.635867pt;}
.x4b{left:180.595867pt;}
.x56{left:183.754133pt;}
.x25{left:186.058533pt;}
.x3b{left:187.674133pt;}
.x61{left:190.089200pt;}
.x41{left:193.385867pt;}
.x23{left:198.090800pt;}
.x5f{left:200.382533pt;}
.x26{left:201.594133pt;}
.x62{left:203.419200pt;}
.x20{left:206.640800pt;}
.x32{left:208.094133pt;}
.x24{left:213.802533pt;}
.x3a{left:216.594133pt;}
.x58{left:219.991467pt;}
.x21{left:226.010800pt;}
.x15{left:227.554133pt;}
.x2e{left:229.735867pt;}
.x38{left:230.735867pt;}
.x5d{left:235.267467pt;}
.x1e{left:236.260800pt;}
.x70{left:243.973467pt;}
.x63{left:250.209200pt;}
.x14{left:254.594133pt;}
.xd{left:255.730400pt;}
.x37{left:257.285867pt;}
.x1d{left:258.425867pt;}
.x3c{left:259.924133pt;}
.x30{left:261.815867pt;}
.x18{left:263.474133pt;}
.x4c{left:264.549200pt;}
.x33{left:266.889200pt;}
.xf{left:269.222533pt;}
.x69{left:271.676800pt;}
.x4f{left:278.167200pt;}
.x35{left:280.500533pt;}
.x2d{left:282.155867pt;}
.x4d{left:284.250533pt;}
.x13{left:286.174133pt;}
.x39{left:287.250533pt;}
.x1b{left:291.885867pt;}
.x46{left:295.677467pt;}
.x17{left:296.934133pt;}
.x6b{left:306.215467pt;}
.x40{left:307.694133pt;}
.x11{left:315.094133pt;}
.x47{left:316.260800pt;}
.x6d{left:318.024133pt;}
.x6c{left:321.024133pt;}
.x1a{left:324.210800pt;}
.x4e{left:332.844133pt;}
.x34{left:335.177467pt;}
.x3f{left:336.114133pt;}
.x43{left:339.805867pt;}
.x45{left:344.847467pt;}
.x12{left:359.464133pt;}
.x3d{left:367.534133pt;}
.x1f{left:369.470800pt;}
.x22{left:379.550800pt;}
.x6f{left:390.183733pt;}
.x1{left:393.517067pt;}
.x1c{left:435.885867pt;}
.x8{left:437.779333pt;}
.x4a{left:438.750400pt;}
.x3e{left:439.784133pt;}
.x48{left:444.833867pt;}
.x42{left:449.225867pt;}
.x44{left:454.267467pt;}
.x49{left:460.052400pt;}
.x3{left:462.464933pt;}
.x6a{left:474.497333pt;}
.x9{left:479.170000pt;}
.x5a{left:489.344302pt;}
.x5{left:512.468800pt;}
.x64{left:513.667200pt;}
.x27{left:516.042133pt;}
.x4{left:543.869200pt;}
.x6{left:550.537200pt;}
.x6e{left:553.785867pt;}
.x7{left:554.961067pt;}
.x67{left:631.427467pt;}
.x5b{left:635.425267pt;}
.x36{left:638.802400pt;}
.x59{left:654.536733pt;}
}




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