
    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_b4aeecdfa18f65e7e59cb5ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934722;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_810025dc2cc2094936fd6cc8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949000;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_faae5d1c51e0ee19ee3b5ba3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.949000;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_7a4f31e86c0804363852068e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913000;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_95e5427596976ddb7399a1a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049000;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_fe7339082080cc37c015a5ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.876000;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_0a16811433b854c9ecdc2064.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_fbd7677c614bf0b56e85695d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.934722;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_98cdfd450d13c513b34fe02d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_42cc2d822982e8e371bbd7ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;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_25f4fff84952f2bb96c662b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.949000;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_8834a75fc4d7d0fd5d64709c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.710000;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_ece48c55a033a508c1157b0d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.897000;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_6fc9587033caeea0f2722b16.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.867000;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_ce7adeb7ed37897766084203.woff2')format("woff");}.fff{font-family:fff;line-height:0.934722;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_a8a6c1fee73bd4b0b10e1b68.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.049000;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_dc5a1148e57cc9b03b772cb7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.859000;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_ce7adeb7ed37897766084203.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934722;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_ece48c55a033a508c1157b0d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6fc9587033caeea0f2722b16.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.867000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_470b0b26e5f8f25d5914036e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.700000;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;}
.m3{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);}
.m4{transform:matrix(0.000000,0.212500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.212500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.212500,-0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.212500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.212500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.212500,0.250000,0.000000,0,0);}
.m6{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);}
.m1{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-10.334400px;}
.v1{vertical-align:-5.433600px;}
.v3{vertical-align:-2.184000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.184000px;}
.v2{vertical-align:18.381600px;}
.v5{vertical-align:33.000000px;}
.ls2f{letter-spacing:-5.220000px;}
.ls32{letter-spacing:-3.132000px;}
.ls25{letter-spacing:-2.760000px;}
.ls33{letter-spacing:-2.610000px;}
.ls26{letter-spacing:-2.214000px;}
.ls1b{letter-spacing:-2.208000px;}
.ls2c{letter-spacing:-2.160000px;}
.ls1c{letter-spacing:-1.728000px;}
.ls17{letter-spacing:-1.566000px;}
.ls27{letter-spacing:-1.188000px;}
.ls28{letter-spacing:-1.080000px;}
.ls20{letter-spacing:-1.026000px;}
.ls22{letter-spacing:-0.972000px;}
.ls23{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.702000px;}
.ls9{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.522000px;}
.ls21{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.378000px;}
.lsa{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.321602px;}
.ls2a{letter-spacing:0.412200px;}
.ls16{letter-spacing:0.480000px;}
.ls2e{letter-spacing:0.522000px;}
.ls2b{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.551400px;}
.ls11{letter-spacing:0.552000px;}
.ls6{letter-spacing:0.960000px;}
.ls30{letter-spacing:1.043400px;}
.ls2d{letter-spacing:1.044000px;}
.lsc{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.104000px;}
.lsd{letter-spacing:1.260000px;}
.ls15{letter-spacing:1.350000px;}
.ls1a{letter-spacing:1.440000px;}
.ls5{letter-spacing:1.504500px;}
.ls4{letter-spacing:1.530000px;}
.ls10{letter-spacing:1.560000px;}
.ls8{letter-spacing:1.620000px;}
.ls0{letter-spacing:1.680000px;}
.ls24{letter-spacing:2.308200px;}
.lse{letter-spacing:2.520000px;}
.lsf{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.760000px;}
.lsb{letter-spacing:2.850000px;}
.ls7{letter-spacing:3.840000px;}
.ls1d{letter-spacing:5.662800px;}
.ls19{letter-spacing:5.986200px;}
.ls29{letter-spacing:6.310800px;}
.ls3{letter-spacing:6.480000px;}
.ls2{letter-spacing:6.720000px;}
.ls35{letter-spacing:8.570400px;}
.ls34{letter-spacing:10.273800px;}
.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;}
}
.ws2{word-spacing:-25.248000px;}
.wse{word-spacing:-14.400000px;}
.ws98{word-spacing:-14.352000px;}
.ws1{word-spacing:-14.280000px;}
.ws0{word-spacing:-14.254500px;}
.ws15a{word-spacing:-14.094000px;}
.wsda{word-spacing:-13.800000px;}
.ws2c{word-spacing:-13.689600px;}
.ws122{word-spacing:-13.467600px;}
.ws97{word-spacing:-13.137600px;}
.ws159{word-spacing:-12.528000px;}
.ws8f{word-spacing:-12.480000px;}
.ws158{word-spacing:-11.901600px;}
.ws109{word-spacing:-11.448000px;}
.ws111{word-spacing:-11.232000px;}
.ws105{word-spacing:-10.206000px;}
.wscb{word-spacing:-9.180000px;}
.ws14{word-spacing:-8.748000px;}
.ws8a{word-spacing:-8.640000px;}
.ws17{word-spacing:-7.396800px;}
.ws14a{word-spacing:-5.637600px;}
.ws174{word-spacing:-4.541400px;}
.ws15f{word-spacing:-4.489200px;}
.ws123{word-spacing:-3.643200px;}
.ws1c{word-spacing:-3.532800px;}
.ws11e{word-spacing:-3.477600px;}
.ws80{word-spacing:-3.367200px;}
.ws103{word-spacing:-3.256800px;}
.ws134{word-spacing:-3.236400px;}
.ws16b{word-spacing:-3.184200px;}
.ws135{word-spacing:-3.079800px;}
.ws77{word-spacing:-3.036000px;}
.ws93{word-spacing:-2.870400px;}
.ws7c{word-spacing:-2.815200px;}
.ws32{word-spacing:-2.760000px;}
.wseb{word-spacing:-2.704800px;}
.ws18a{word-spacing:-2.662200px;}
.ws128{word-spacing:-2.649600px;}
.ws15c{word-spacing:-2.610000px;}
.ws13{word-spacing:-2.562000px;}
.ws18b{word-spacing:-2.557800px;}
.ws59{word-spacing:-2.539200px;}
.ws1d{word-spacing:-2.484000px;}
.wsff{word-spacing:-2.428800px;}
.ws1e{word-spacing:-2.373600px;}
.ws138{word-spacing:-2.349000px;}
.ws27{word-spacing:-2.263200px;}
.ws17a{word-spacing:-2.244600px;}
.ws51{word-spacing:-2.208000px;}
.ws16a{word-spacing:-2.140200px;}
.ws34{word-spacing:-2.097600px;}
.ws13c{word-spacing:-2.035800px;}
.ws5a{word-spacing:-1.987200px;}
.ws165{word-spacing:-1.983600px;}
.ws71{word-spacing:-1.932000px;}
.ws13d{word-spacing:-1.931400px;}
.wsb1{word-spacing:-1.876800px;}
.ws33{word-spacing:-1.821600px;}
.ws15b{word-spacing:-1.774800px;}
.wsb0{word-spacing:-1.766400px;}
.ws10d{word-spacing:-1.711200px;}
.ws16d{word-spacing:-1.670400px;}
.ws90{word-spacing:-1.656000px;}
.wsb8{word-spacing:-1.600800px;}
.ws5{word-spacing:-1.581000px;}
.ws2e{word-spacing:-1.545600px;}
.wsd{word-spacing:-1.530000px;}
.ws79{word-spacing:-1.490400px;}
.ws94{word-spacing:-1.435200px;}
.ws142{word-spacing:-1.409400px;}
.ws10f{word-spacing:-1.324800px;}
.wsa{word-spacing:-1.275000px;}
.ws54{word-spacing:-1.269600px;}
.ws84{word-spacing:-1.260000px;}
.ws17b{word-spacing:-1.200600px;}
.ws14d{word-spacing:-1.148400px;}
.ws62{word-spacing:-1.104000px;}
.ws10{word-spacing:-1.080000px;}
.ws2b{word-spacing:-1.048800px;}
.ws132{word-spacing:-1.044000px;}
.ws41{word-spacing:-0.993600px;}
.ws180{word-spacing:-0.991800px;}
.wsf{word-spacing:-0.960000px;}
.wsfb{word-spacing:-0.883200px;}
.ws16f{word-spacing:-0.835200px;}
.ws102{word-spacing:-0.828000px;}
.ws10c{word-spacing:-0.772800px;}
.ws9{word-spacing:-0.765000px;}
.ws17d{word-spacing:-0.730800px;}
.ws17e{word-spacing:-0.678600px;}
.ws6b{word-spacing:-0.662400px;}
.ws193{word-spacing:-0.626400px;}
.ws45{word-spacing:-0.552000px;}
.ws15d{word-spacing:-0.522000px;}
.wsf7{word-spacing:-0.496800px;}
.ws23{word-spacing:-0.441600px;}
.ws13a{word-spacing:-0.417600px;}
.ws24{word-spacing:-0.386400px;}
.ws64{word-spacing:-0.331200px;}
.ws78{word-spacing:-0.276000px;}
.ws30{word-spacing:-0.220800px;}
.ws16c{word-spacing:-0.208800px;}
.ws100{word-spacing:-0.110400px;}
.ws76{word-spacing:-0.055200px;}
.ws3{word-spacing:0.000000px;}
.ws67{word-spacing:0.055200px;}
.wsfc{word-spacing:0.165600px;}
.ws139{word-spacing:0.261000px;}
.ws35{word-spacing:0.386400px;}
.ws13b{word-spacing:0.417600px;}
.ws96{word-spacing:0.441600px;}
.ws3e{word-spacing:0.496800px;}
.ws164{word-spacing:0.522000px;}
.ws3a{word-spacing:0.552000px;}
.ws175{word-spacing:0.574200px;}
.ws4{word-spacing:0.600000px;}
.wsfe{word-spacing:0.607200px;}
.ws166{word-spacing:0.626400px;}
.ws2f{word-spacing:0.662400px;}
.ws20{word-spacing:0.717600px;}
.ws127{word-spacing:0.772800px;}
.ws14f{word-spacing:0.783000px;}
.ws3b{word-spacing:0.828000px;}
.ws14e{word-spacing:0.835200px;}
.ws69{word-spacing:0.883200px;}
.ws3d{word-spacing:0.938400px;}
.ws19b{word-spacing:0.991800px;}
.ws95{word-spacing:0.993600px;}
.ws136{word-spacing:1.044000px;}
.ws8{word-spacing:1.071000px;}
.ws137{word-spacing:1.096200px;}
.wsec{word-spacing:1.104000px;}
.wsc{word-spacing:1.122000px;}
.ws12c{word-spacing:1.159200px;}
.ws143{word-spacing:1.200600px;}
.ws53{word-spacing:1.214400px;}
.ws10b{word-spacing:1.269600px;}
.ws195{word-spacing:1.409400px;}
.ws5b{word-spacing:1.435200px;}
.ws194{word-spacing:1.461600px;}
.wsb7{word-spacing:1.490400px;}
.ws131{word-spacing:1.566000px;}
.wsb6{word-spacing:1.600800px;}
.wsf2{word-spacing:1.656000px;}
.ws7d{word-spacing:1.711200px;}
.ws61{word-spacing:1.766400px;}
.ws168{word-spacing:1.774800px;}
.wsd9{word-spacing:1.821600px;}
.ws16e{word-spacing:1.827000px;}
.ws6c{word-spacing:1.876800px;}
.ws167{word-spacing:1.879200px;}
.ws65{word-spacing:1.987200px;}
.ws6a{word-spacing:2.097600px;}
.ws176{word-spacing:2.140200px;}
.ws39{word-spacing:2.152800px;}
.ws7e{word-spacing:2.208000px;}
.wsf1{word-spacing:2.428800px;}
.ws191{word-spacing:2.453400px;}
.ws73{word-spacing:2.539200px;}
.ws117{word-spacing:2.594400px;}
.ws169{word-spacing:2.610000px;}
.ws42{word-spacing:2.649600px;}
.ws3c{word-spacing:2.704800px;}
.wsef{word-spacing:2.760000px;}
.ws192{word-spacing:2.766600px;}
.ws2d{word-spacing:2.870400px;}
.ws72{word-spacing:2.925600px;}
.ws66{word-spacing:2.980800px;}
.ws40{word-spacing:3.036000px;}
.wsf0{word-spacing:3.091200px;}
.ws163{word-spacing:3.132000px;}
.ws15e{word-spacing:3.236400px;}
.ws37{word-spacing:3.312000px;}
.ws15{word-spacing:3.360000px;}
.wsb3{word-spacing:3.367200px;}
.ws199{word-spacing:3.393000px;}
.ws110{word-spacing:3.456000px;}
.ws48{word-spacing:3.477600px;}
.wsb{word-spacing:3.519000px;}
.ws125{word-spacing:3.532800px;}
.ws44{word-spacing:3.588000px;}
.ws198{word-spacing:3.601800px;}
.ws31{word-spacing:3.643200px;}
.ws1b{word-spacing:3.698400px;}
.ws130{word-spacing:3.706200px;}
.ws101{word-spacing:3.753600px;}
.ws11d{word-spacing:3.808800px;}
.ws162{word-spacing:3.810600px;}
.ws1a{word-spacing:3.864000px;}
.ws26{word-spacing:3.919200px;}
.ws49{word-spacing:3.974400px;}
.ws196{word-spacing:4.071600px;}
.wsfd{word-spacing:4.084800px;}
.ws43{word-spacing:4.140000px;}
.ws83{word-spacing:4.195200px;}
.ws150{word-spacing:4.280400px;}
.ws50{word-spacing:4.360800px;}
.ws183{word-spacing:4.384800px;}
.ws5c{word-spacing:4.471200px;}
.ws179{word-spacing:4.541400px;}
.ws4f{word-spacing:4.581600px;}
.ws182{word-spacing:4.593600px;}
.ws11f{word-spacing:4.636800px;}
.ws17c{word-spacing:4.698000px;}
.ws18{word-spacing:4.747200px;}
.ws21{word-spacing:4.802400px;}
.ws155{word-spacing:4.854600px;}
.ws57{word-spacing:4.857600px;}
.ws12d{word-spacing:4.912800px;}
.wsb5{word-spacing:5.023200px;}
.ws7b{word-spacing:5.133600px;}
.wsf3{word-spacing:5.188800px;}
.ws12e{word-spacing:5.220000px;}
.ws1f{word-spacing:5.244000px;}
.ws133{word-spacing:5.324400px;}
.wsd8{word-spacing:5.354400px;}
.ws5f{word-spacing:5.409600px;}
.ws156{word-spacing:5.481000px;}
.wsf6{word-spacing:5.520000px;}
.ws18e{word-spacing:5.533200px;}
.ws22{word-spacing:5.740800px;}
.ws157{word-spacing:5.742000px;}
.ws18d{word-spacing:5.794200px;}
.ws6e{word-spacing:5.796000px;}
.wsd7{word-spacing:5.851200px;}
.wsaf{word-spacing:5.961600px;}
.ws38{word-spacing:6.016800px;}
.ws81{word-spacing:6.072000px;}
.ws6f{word-spacing:6.127200px;}
.ws13f{word-spacing:6.211800px;}
.ws11c{word-spacing:6.237600px;}
.ws82{word-spacing:6.292800px;}
.wsf4{word-spacing:6.458400px;}
.ws58{word-spacing:6.513600px;}
.ws13e{word-spacing:6.525000px;}
.ws19{word-spacing:6.568800px;}
.ws4c{word-spacing:6.624000px;}
.ws154{word-spacing:6.629400px;}
.ws186{word-spacing:6.681600px;}
.ws6{word-spacing:6.732000px;}
.ws68{word-spacing:6.734400px;}
.ws120{word-spacing:6.789600px;}
.ws147{word-spacing:6.838200px;}
.ws60{word-spacing:6.955200px;}
.ws153{word-spacing:6.994800px;}
.ws52{word-spacing:7.065600px;}
.ws129{word-spacing:7.120800px;}
.ws1a0{word-spacing:7.151400px;}
.ws91{word-spacing:7.176000px;}
.wsfa{word-spacing:7.231200px;}
.ws19d{word-spacing:7.308000px;}
.ws10a{word-spacing:7.341600px;}
.ws7f{word-spacing:7.396800px;}
.ws149{word-spacing:7.464600px;}
.ws19f{word-spacing:7.516800px;}
.ws19a{word-spacing:7.621200px;}
.ws116{word-spacing:7.672800px;}
.ws4a{word-spacing:7.728000px;}
.ws148{word-spacing:7.830000px;}
.ws85{word-spacing:7.920000px;}
.wsf9{word-spacing:7.948800px;}
.ws184{word-spacing:7.986600px;}
.ws4d{word-spacing:8.004000px;}
.ws25{word-spacing:8.059200px;}
.ws187{word-spacing:8.143200px;}
.ws63{word-spacing:8.169600px;}
.ws185{word-spacing:8.247600px;}
.ws5d{word-spacing:8.280000px;}
.ws12b{word-spacing:8.335200px;}
.ws18f{word-spacing:8.352000px;}
.ws11b{word-spacing:8.611200px;}
.ws118{word-spacing:8.721600px;}
.ws190{word-spacing:8.769600px;}
.ws11a{word-spacing:8.776800px;}
.ws55{word-spacing:8.887200px;}
.wsf5{word-spacing:8.942400px;}
.ws145{word-spacing:9.082800px;}
.ws19c{word-spacing:9.239400px;}
.ws56{word-spacing:9.328800px;}
.ws3f{word-spacing:9.384000px;}
.ws12a{word-spacing:9.494400px;}
.ws144{word-spacing:9.500400px;}
.wsee{word-spacing:9.660000px;}
.wsf8{word-spacing:9.715200px;}
.ws19e{word-spacing:9.918000px;}
.ws75{word-spacing:9.991200px;}
.ws141{word-spacing:10.022400px;}
.ws6d{word-spacing:10.101600px;}
.ws188{word-spacing:10.126800px;}
.wsed{word-spacing:10.156800px;}
.ws197{word-spacing:10.283400px;}
.ws7a{word-spacing:10.432800px;}
.ws140{word-spacing:10.544400px;}
.ws189{word-spacing:10.648800px;}
.ws121{word-spacing:10.708800px;}
.ws152{word-spacing:11.536200px;}
.ws7{word-spacing:12.087000px;}
.ws151{word-spacing:12.110400px;}
.ws5e{word-spacing:12.309600px;}
.ws92{word-spacing:12.364800px;}
.wsb2{word-spacing:12.420000px;}
.ws124{word-spacing:12.475200px;}
.ws126{word-spacing:12.806400px;}
.ws36{word-spacing:13.027200px;}
.ws181{word-spacing:13.206600px;}
.ws4b{word-spacing:13.413600px;}
.wsb4{word-spacing:13.965600px;}
.ws119{word-spacing:14.131200px;}
.ws46{word-spacing:14.241600px;}
.ws146{word-spacing:14.459400px;}
.ws14c{word-spacing:14.668200px;}
.ws47{word-spacing:15.124800px;}
.ws160{word-spacing:15.294600px;}
.ws14b{word-spacing:15.451200px;}
.ws70{word-spacing:15.621600px;}
.ws29{word-spacing:15.676800px;}
.ws161{word-spacing:16.077600px;}
.ws178{word-spacing:16.182000px;}
.ws28{word-spacing:16.449600px;}
.ws4e{word-spacing:16.670400px;}
.ws12f{word-spacing:16.756200px;}
.ws177{word-spacing:17.017200px;}
.ws2a{word-spacing:18.050400px;}
.ws10e{word-spacing:20.313600px;}
.ws17f{word-spacing:21.193200px;}
.ws18c{word-spacing:22.759200px;}
.ws74{word-spacing:23.128800px;}
.ws16{word-spacing:23.244000px;}
.ws173{word-spacing:23.281200px;}
.ws171{word-spacing:23.959800px;}
.ws172{word-spacing:24.429600px;}
.ws170{word-spacing:33.355800px;}
.ws11{word-spacing:36.567000px;}
.ws12{word-spacing:37.281000px;}
.ws9a{word-spacing:42.422400px;}
.ws87{word-spacing:42.423000px;}
.wsa7{word-spacing:53.574000px;}
.wsbb{word-spacing:54.059400px;}
.wsc4{word-spacing:54.303000px;}
.wsbd{word-spacing:54.517800px;}
.wse4{word-spacing:54.519000px;}
.wsc9{word-spacing:54.599400px;}
.wsc1{word-spacing:54.789000px;}
.wsc2{word-spacing:54.870600px;}
.wse8{word-spacing:54.978000px;}
.wsde{word-spacing:55.005000px;}
.wsd4{word-spacing:55.247400px;}
.wsa4{word-spacing:55.275000px;}
.wsbe{word-spacing:56.706000px;}
.ws9b{word-spacing:56.759400px;}
.wsbf{word-spacing:56.893800px;}
.ws89{word-spacing:57.840000px;}
.wsbc{word-spacing:58.002000px;}
.wse3{word-spacing:58.758000px;}
.wse6{word-spacing:58.972800px;}
.wsa1{word-spacing:59.487000px;}
.ws9e{word-spacing:59.865000px;}
.wsba{word-spacing:60.269400px;}
.wsa9{word-spacing:60.619800px;}
.wsdd{word-spacing:60.621000px;}
.ws88{word-spacing:61.431000px;}
.wse7{word-spacing:62.079000px;}
.wscd{word-spacing:62.511000px;}
.wsab{word-spacing:62.592000px;}
.wsdb{word-spacing:62.997600px;}
.wsad{word-spacing:63.267000px;}
.ws8e{word-spacing:64.347000px;}
.wsa6{word-spacing:66.803400px;}
.ws8b{word-spacing:69.962400px;}
.ws9c{word-spacing:70.070400px;}
.ws8c{word-spacing:70.501800px;}
.wsa2{word-spacing:70.907400px;}
.wscf{word-spacing:70.908000px;}
.ws8d{word-spacing:70.908600px;}
.wsd3{word-spacing:71.717400px;}
.wsce{word-spacing:71.906400px;}
.wsd0{word-spacing:72.742800px;}
.wse1{word-spacing:72.958800px;}
.wsa0{word-spacing:74.121000px;}
.wsca{word-spacing:74.687400px;}
.wsea{word-spacing:75.930600px;}
.wsa8{word-spacing:76.659600px;}
.wsaa{word-spacing:77.360400px;}
.wse2{word-spacing:77.389200px;}
.wsc7{word-spacing:77.712000px;}
.wsc3{word-spacing:82.464000px;}
.wsd6{word-spacing:85.594800px;}
.wsae{word-spacing:91.239600px;}
.wsac{word-spacing:94.019400px;}
.wsdc{word-spacing:95.314800px;}
.ws9f{word-spacing:97.792800px;}
.ws114{word-spacing:98.660400px;}
.ws104{word-spacing:101.362800px;}
.ws112{word-spacing:107.843400px;}
.wsc8{word-spacing:113.590800px;}
.wsdf{word-spacing:113.591400px;}
.ws108{word-spacing:117.642600px;}
.ws113{word-spacing:124.931400px;}
.ws107{word-spacing:126.878400px;}
.wscc{word-spacing:136.892400px;}
.ws86{word-spacing:155.015400px;}
.wsd2{word-spacing:157.737600px;}
.wsc0{word-spacing:158.492400px;}
.wsb9{word-spacing:161.395200px;}
.wse0{word-spacing:169.602600px;}
.wsd5{word-spacing:169.942200px;}
.wsa5{word-spacing:174.289800px;}
.ws115{word-spacing:176.256000px;}
.ws9d{word-spacing:178.014000px;}
.wse5{word-spacing:184.522800px;}
.ws99{word-spacing:185.851200px;}
.wse9{word-spacing:193.054200px;}
.wsd1{word-spacing:194.693400px;}
.wsa3{word-spacing:199.128600px;}
.wsc6{word-spacing:200.505600px;}
.wsc5{word-spacing:222.637800px;}
.ws106{word-spacing:227.749200px;}
._55{margin-left:-22.561800px;}
._14{margin-left:-13.068000px;}
._5b{margin-left:-10.796160px;}
._59{margin-left:-9.743820px;}
._5a{margin-left:-8.195280px;}
._2{margin-left:-6.897600px;}
._e{margin-left:-4.584000px;}
._0{margin-left:-3.312000px;}
._1{margin-left:-1.380000px;}
._3{width:1.014900px;}
._d{width:2.400000px;}
._4{width:4.074900px;}
._2a{width:5.983200px;}
._52{width:7.327800px;}
._b{width:9.024000px;}
._13{width:23.928000px;}
._9{width:37.329000px;}
._15{width:51.817200px;}
._49{width:54.826800px;}
._3e{width:57.375600px;}
._56{width:59.028600px;}
._35{width:61.243800px;}
._40{width:63.576000px;}
._25{width:64.616400px;}
._26{width:65.619000px;}
._34{width:67.089000px;}
._3f{width:68.234400px;}
._16{width:70.002600px;}
._1d{width:71.070600px;}
._a{width:72.267000px;}
._36{width:73.890600px;}
._48{width:75.390000px;}
._4e{width:76.523700px;}
._31{width:78.763200px;}
._2f{width:80.360400px;}
._c{width:82.212000px;}
._f{width:83.436000px;}
._21{width:84.492000px;}
._11{width:86.719200px;}
._29{width:89.238000px;}
._12{width:90.859200px;}
._44{width:92.895000px;}
._58{width:94.552800px;}
._47{width:96.908400px;}
._30{width:98.103300px;}
._39{width:106.219800px;}
._43{width:109.705800px;}
._24{width:113.298600px;}
._4b{width:114.319200px;}
._50{width:116.434200px;}
._38{width:122.035800px;}
._42{width:123.550200px;}
._4a{width:125.303400px;}
._41{width:126.305400px;}
._3d{width:127.500000px;}
._37{width:129.362400px;}
._4f{width:133.638000px;}
._3c{width:135.242400px;}
._23{width:140.487600px;}
._5{width:141.689100px;}
._45{width:143.510400px;}
._10{width:144.740400px;}
._1c{width:146.856000px;}
._2e{width:151.391400px;}
._2c{width:153.615000px;}
._22{width:154.780200px;}
._46{width:157.571400px;}
._3b{width:159.843600px;}
._17{width:163.858200px;}
._2d{width:164.970600px;}
._1b{width:166.062600px;}
._20{width:167.160000px;}
._18{width:169.242600px;}
._32{width:171.264600px;}
._54{width:172.309800px;}
._3a{width:177.840000px;}
._1e{width:182.797800px;}
._1f{width:184.336200px;}
._4c{width:186.118200px;}
._1a{width:191.914200px;}
._2b{width:194.702400px;}
._33{width:196.689000px;}
._28{width:200.914200px;}
._27{width:208.218000px;}
._6{width:210.010800px;}
._51{width:211.942200px;}
._4d{width:214.763100px;}
._19{width:223.323000px;}
._7{width:227.045400px;}
._57{width:269.917200px;}
._53{width:278.235600px;}
._8{width:570.848471px;}
.fc7{color:transparent;}
.fc6{color:rgb(241,72,37);}
.fc8{color:rgb(101,98,99);}
.fc3{color:rgb(79,76,77);}
.fc2{color:rgb(41,113,114);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(57,53,54);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:32.181600px;}
.fs9{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fsf{font-size:52.200000px;}
.fs6{font-size:54.000000px;}
.fsc{font-size:55.200000px;}
.fs8{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:69.000000px;}
.fse{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs5{font-size:81.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:22.325850px;}
.y1{bottom:40.322850px;}
.y1a1{bottom:54.402150px;}
.y111{bottom:62.988600px;}
.y4b{bottom:63.607950px;}
.ybb{bottom:63.779700px;}
.ycb{bottom:64.310250px;}
.y182{bottom:65.929050px;}
.y6a{bottom:66.601500px;}
.ydd{bottom:66.637650px;}
.y8d{bottom:67.387650px;}
.ya0{bottom:67.429050px;}
.y125{bottom:68.179050px;}
.y15{bottom:68.761350px;}
.y152{bottom:70.269600px;}
.y1a0{bottom:72.402150px;}
.y13e{bottom:73.324650px;}
.y102{bottom:74.866500px;}
.yba{bottom:78.779700px;}
.y4a{bottom:80.107950px;}
.y181{bottom:83.929050px;}
.yca{bottom:84.560250px;}
.y14{bottom:85.261350px;}
.y69{bottom:86.851500px;}
.ydc{bottom:86.887650px;}
.y8c{bottom:87.637650px;}
.y9f{bottom:87.679050px;}
.y124{bottom:88.429050px;}
.y19f{bottom:90.402150px;}
.y151{bottom:90.519600px;}
.y101{bottom:91.366500px;}
.y11d{bottom:91.608750px;}
.yb9{bottom:93.779700px;}
.y49{bottom:96.607950px;}
.y13d{bottom:98.788350px;}
.y180{bottom:101.929050px;}
.yc9{bottom:104.810250px;}
.y68{bottom:107.101500px;}
.ydb{bottom:107.137650px;}
.y8b{bottom:107.887650px;}
.y9e{bottom:107.929050px;}
.y19e{bottom:108.402150px;}
.y123{bottom:108.679050px;}
.y150{bottom:110.769600px;}
.y48{bottom:113.107950px;}
.y13c{bottom:115.288350px;}
.y11c{bottom:117.120450px;}
.y13{bottom:118.267350px;}
.y100{bottom:119.512200px;}
.y17f{bottom:119.929050px;}
.y138{bottom:121.412400px;}
.y1a7{bottom:126.402150px;}
.yda{bottom:127.387650px;}
.y8a{bottom:128.137650px;}
.y9d{bottom:128.179050px;}
.y122{bottom:128.929050px;}
.y47{bottom:129.607950px;}
.y14f{bottom:131.019600px;}
.y13b{bottom:131.788350px;}
.y132{bottom:132.583200px;}
.y12{bottom:134.765850px;}
.yff{bottom:136.012200px;}
.y11b{bottom:142.632300px;}
.y19d{bottom:144.402150px;}
.y67{bottom:146.060250px;}
.y46{bottom:146.107950px;}
.yd9{bottom:147.637650px;}
.y13a{bottom:148.288350px;}
.y89{bottom:148.387650px;}
.y9c{bottom:148.429050px;}
.y121{bottom:149.179050px;}
.y11{bottom:151.264350px;}
.y14e{bottom:151.269600px;}
.y131{bottom:153.335100px;}
.y17e{bottom:155.929050px;}
.y19c{bottom:162.402150px;}
.y45{bottom:162.607950px;}
.yfe{bottom:163.103700px;}
.y139{bottom:164.788350px;}
.yc8{bottom:166.310250px;}
.y10{bottom:167.762850px;}
.yd8{bottom:167.887650px;}
.y11a{bottom:168.144150px;}
.y88{bottom:168.637650px;}
.y9b{bottom:168.679050px;}
.yb8{bottom:169.429050px;}
.y14d{bottom:171.519600px;}
.y17d{bottom:173.929050px;}
.y130{bottom:174.087150px;}
.y44{bottom:179.107950px;}
.y19b{bottom:180.402150px;}
.yf{bottom:184.261350px;}
.y66{bottom:185.768850px;}
.y137{bottom:185.922900px;}
.yc7{bottom:186.560250px;}
.yd7{bottom:188.137650px;}
.y87{bottom:188.887650px;}
.y9a{bottom:188.929050px;}
.yb7{bottom:189.679050px;}
.yfd{bottom:191.267100px;}
.y14c{bottom:191.769600px;}
.y17c{bottom:191.929050px;}
.y119{bottom:193.655850px;}
.y136{bottom:194.172900px;}
.y12f{bottom:194.839050px;}
.y43{bottom:195.607950px;}
.y1a6{bottom:198.402150px;}
.ye{bottom:200.761350px;}
.y135{bottom:204.758850px;}
.yc6{bottom:206.810250px;}
.yd6{bottom:208.387650px;}
.y86{bottom:209.137650px;}
.y99{bottom:209.179050px;}
.yb6{bottom:209.929050px;}
.y12e{bottom:211.339050px;}
.y14b{bottom:212.019600px;}
.y42{bottom:212.107950px;}
.y19a{bottom:216.402150px;}
.y118{bottom:219.167700px;}
.y134{bottom:222.761550px;}
.yfc{bottom:226.726500px;}
.yc5{bottom:227.060250px;}
.y12d{bottom:227.839050px;}
.y41{bottom:228.607950px;}
.yd5{bottom:228.637650px;}
.y85{bottom:229.387650px;}
.y98{bottom:229.429050px;}
.yb5{bottom:230.179050px;}
.y133{bottom:231.011550px;}
.y14a{bottom:232.269600px;}
.yd{bottom:233.767350px;}
.y199{bottom:234.402150px;}
.y117{bottom:244.679550px;}
.y40{bottom:245.107950px;}
.y65{bottom:247.268850px;}
.yc4{bottom:247.310250px;}
.y17b{bottom:248.137650px;}
.y84{bottom:249.637650px;}
.y97{bottom:249.679050px;}
.yc{bottom:250.265850px;}
.yb4{bottom:250.429050px;}
.y198{bottom:252.402150px;}
.y149{bottom:252.519600px;}
.y12c{bottom:259.013400px;}
.y3f{bottom:261.607950px;}
.y104{bottom:266.496900px;}
.yb{bottom:266.764350px;}
.y64{bottom:267.518850px;}
.yc3{bottom:267.560250px;}
.y83{bottom:269.887650px;}
.y96{bottom:269.929050px;}
.y1aa{bottom:270.402150px;}
.yb3{bottom:270.679050px;}
.y148{bottom:272.769600px;}
.y12a{bottom:275.513400px;}
.y3e{bottom:278.107950px;}
.y116{bottom:278.813100px;}
.ya{bottom:283.262850px;}
.y103{bottom:286.746900px;}
.y197{bottom:288.402150px;}
.y82{bottom:290.137650px;}
.y95{bottom:290.179050px;}
.yb2{bottom:290.929050px;}
.y12b{bottom:292.013400px;}
.y147{bottom:293.019600px;}
.y3d{bottom:294.607950px;}
.y9{bottom:299.761350px;}
.yd4{bottom:301.524000px;}
.y196{bottom:306.402150px;}
.y63{bottom:308.018850px;}
.y17a{bottom:309.637650px;}
.y81{bottom:310.387650px;}
.y94{bottom:310.429050px;}
.y3c{bottom:311.107950px;}
.yb1{bottom:311.179050px;}
.y8{bottom:316.261350px;}
.y129{bottom:317.095350px;}
.y11f{bottom:318.583500px;}
.yf0{bottom:322.314450px;}
.y195{bottom:324.402150px;}
.y128{bottom:325.891200px;}
.yd1{bottom:327.353700px;}
.y3b{bottom:327.607950px;}
.y62{bottom:328.268850px;}
.y179{bottom:329.887650px;}
.y80{bottom:330.637650px;}
.y93{bottom:330.679050px;}
.yb0{bottom:331.429050px;}
.y11e{bottom:338.833500px;}
.y1f{bottom:341.313150px;}
.y1a5{bottom:342.402150px;}
.yef{bottom:342.564450px;}
.y3a{bottom:344.107950px;}
.y178{bottom:350.137650px;}
.y7f{bottom:350.887650px;}
.y4e{bottom:350.902500px;}
.y92{bottom:350.929050px;}
.yaf{bottom:351.679050px;}
.y146{bottom:354.519600px;}
.yd0{bottom:355.517100px;}
.y1e{bottom:357.813150px;}
.y194{bottom:360.402150px;}
.y39{bottom:360.607950px;}
.y127{bottom:361.323750px;}
.yee{bottom:362.814450px;}
.y61{bottom:368.768850px;}
.y177{bottom:370.387650px;}
.y7e{bottom:371.137650px;}
.y91{bottom:371.179050px;}
.yae{bottom:371.929050px;}
.y110{bottom:371.956200px;}
.y145{bottom:374.769600px;}
.y193{bottom:378.402150px;}
.y1d{bottom:378.565050px;}
.yed{bottom:383.064450px;}
.ycf{bottom:383.680500px;}
.yde{bottom:388.902000px;}
.y60{bottom:389.018850px;}
.y176{bottom:390.637650px;}
.y7d{bottom:391.387650px;}
.y90{bottom:391.429050px;}
.yad{bottom:392.179050px;}
.y10f{bottom:392.206200px;}
.y38{bottom:393.607950px;}
.y144{bottom:395.019600px;}
.y192{bottom:396.402150px;}
.y141{bottom:399.530250px;}
.y1c{bottom:402.069000px;}
.yec{bottom:403.314450px;}
.y37{bottom:410.107950px;}
.y175{bottom:410.887650px;}
.y7c{bottom:411.637650px;}
.yce{bottom:411.843900px;}
.yac{bottom:412.429050px;}
.y10e{bottom:412.456200px;}
.y191{bottom:414.402150px;}
.ye7{bottom:414.430500px;}
.y143{bottom:415.269600px;}
.y140{bottom:419.780250px;}
.y1b{bottom:421.321050px;}
.yeb{bottom:423.564450px;}
.y36{bottom:426.607950px;}
.y5f{bottom:429.518850px;}
.y23{bottom:430.013700px;}
.y8f{bottom:430.387650px;}
.y174{bottom:431.137650px;}
.y7b{bottom:431.887650px;}
.y1a9{bottom:432.402150px;}
.yab{bottom:432.679050px;}
.y10d{bottom:432.706200px;}
.y142{bottom:435.519600px;}
.ycd{bottom:440.007150px;}
.y13f{bottom:440.030250px;}
.ye6{bottom:442.593900px;}
.y35{bottom:443.107950px;}
.yea{bottom:443.814450px;}
.y5e{bottom:449.768850px;}
.y190{bottom:450.402150px;}
.y1a{bottom:451.321050px;}
.y8e{bottom:451.387650px;}
.y7a{bottom:452.137650px;}
.yaa{bottom:452.929050px;}
.y34{bottom:459.607950px;}
.y4f{bottom:463.272150px;}
.y18f{bottom:468.402150px;}
.y5d{bottom:470.018850px;}
.y19{bottom:470.572950px;}
.ye5{bottom:470.757300px;}
.y173{bottom:471.637650px;}
.y79{bottom:472.387650px;}
.ya9{bottom:473.179050px;}
.y10c{bottom:473.956200px;}
.ycc{bottom:475.466550px;}
.y33{bottom:476.107950px;}
.y153{bottom:480.390150px;}
.y18e{bottom:486.402150px;}
.yfb{bottom:487.122450px;}
.y5c{bottom:490.268850px;}
.y172{bottom:491.887650px;}
.y32{bottom:492.607950px;}
.y78{bottom:492.637650px;}
.ya8{bottom:493.429050px;}
.y10b{bottom:494.206200px;}
.ye4{bottom:498.920550px;}
.y18{bottom:500.572950px;}
.y16c{bottom:502.035000px;}
.y1a4{bottom:504.402150px;}
.y31{bottom:509.107950px;}
.y16b{bottom:510.285000px;}
.y5b{bottom:510.518850px;}
.y171{bottom:512.137650px;}
.yf8{bottom:512.561250px;}
.y77{bottom:512.887650px;}
.ya7{bottom:513.679050px;}
.y10a{bottom:514.456200px;}
.yd3{bottom:515.236950px;}
.y17{bottom:515.572950px;}
.y18d{bottom:522.402150px;}
.y30{bottom:525.607950px;}
.ye3{bottom:527.083950px;}
.y5a{bottom:530.768850px;}
.y170{bottom:532.387650px;}
.y76{bottom:533.137650px;}
.ya6{bottom:533.929050px;}
.y109{bottom:534.706200px;}
.y16{bottom:534.825000px;}
.yd2{bottom:535.486950px;}
.y15f{bottom:538.056300px;}
.y168{bottom:539.943900px;}
.y18c{bottom:540.402150px;}
.yf7{bottom:540.724650px;}
.y2f{bottom:542.107950px;}
.y165{bottom:546.067950px;}
.y16a{bottom:548.193900px;}
.y59{bottom:551.018850px;}
.y16f{bottom:552.637650px;}
.y75{bottom:553.387650px;}
.ya5{bottom:554.179050px;}
.y108{bottom:554.956200px;}
.ye2{bottom:555.247350px;}
.y167{bottom:556.443900px;}
.y1a8{bottom:558.402150px;}
.y2e{bottom:558.607950px;}
.y15e{bottom:558.808200px;}
.yf6{bottom:563.972250px;}
.y169{bottom:564.693900px;}
.y58{bottom:571.268850px;}
.yc2{bottom:571.310250px;}
.yf5{bottom:572.222250px;}
.y126{bottom:572.887650px;}
.y166{bottom:572.943900px;}
.y74{bottom:573.637650px;}
.ya4{bottom:574.429050px;}
.y2d{bottom:575.107950px;}
.y107{bottom:575.206200px;}
.y18b{bottom:576.402150px;}
.y15d{bottom:579.560250px;}
.ye1{bottom:583.410750px;}
.y57{bottom:591.518850px;}
.yc1{bottom:591.560250px;}
.y2c{bottom:591.607950px;}
.y120{bottom:593.137650px;}
.y73{bottom:593.887650px;}
.y18a{bottom:594.402150px;}
.ya3{bottom:594.679050px;}
.y164{bottom:594.915450px;}
.y106{bottom:595.456200px;}
.y15c{bottom:600.312150px;}
.y162{bottom:600.747150px;}
.y163{bottom:603.165450px;}
.yf4{bottom:603.719850px;}
.y2b{bottom:608.107950px;}
.ye0{bottom:611.574150px;}
.y56{bottom:611.768850px;}
.yc0{bottom:611.810250px;}
.y1a3{bottom:612.402150px;}
.y16e{bottom:613.387650px;}
.y72{bottom:614.137650px;}
.ya2{bottom:614.929050px;}
.y105{bottom:615.706200px;}
.y161{bottom:617.247150px;}
.y15b{bottom:621.064200px;}
.y2a{bottom:624.607950px;}
.y189{bottom:630.402150px;}
.yf3{bottom:631.883400px;}
.y55{bottom:632.018850px;}
.ybf{bottom:632.060250px;}
.y16d{bottom:633.637650px;}
.y71{bottom:634.387650px;}
.y160{bottom:636.330750px;}
.y4{bottom:637.634550px;}
.y29{bottom:641.107950px;}
.y15a{bottom:641.816100px;}
.ydf{bottom:647.033550px;}
.y188{bottom:648.402150px;}
.y54{bottom:652.268850px;}
.ybe{bottom:652.310250px;}
.ya1{bottom:653.887650px;}
.y70{bottom:654.637650px;}
.y112{bottom:656.138250px;}
.y3{bottom:657.127050px;}
.y28{bottom:657.607950px;}
.yf2{bottom:660.046650px;}
.y158{bottom:661.010400px;}
.y187{bottom:666.402150px;}
.y157{bottom:669.260400px;}
.y53{bottom:672.518850px;}
.ybd{bottom:672.560250px;}
.y27{bottom:674.107950px;}
.y6f{bottom:674.887650px;}
.y159{bottom:677.510400px;}
.y114{bottom:682.741500px;}
.y1a2{bottom:684.402150px;}
.ye9{bottom:686.803950px;}
.y26{bottom:690.607950px;}
.y52{bottom:692.768850px;}
.y6e{bottom:695.137650px;}
.y7{bottom:695.362500px;}
.yf1{bottom:695.506050px;}
.y186{bottom:702.402150px;}
.y156{bottom:704.024400px;}
.ye8{bottom:707.053950px;}
.y113{bottom:710.904900px;}
.ybc{bottom:712.268850px;}
.y155{bottom:712.820400px;}
.y51{bottom:713.018850px;}
.y6d{bottom:715.387650px;}
.y185{bottom:720.402150px;}
.y25{bottom:723.607950px;}
.y6{bottom:723.850500px;}
.yfa{bottom:735.276450px;}
.y6c{bottom:735.637650px;}
.y184{bottom:738.402150px;}
.y24{bottom:740.107950px;}
.y115{bottom:746.529600px;}
.y154{bottom:748.252800px;}
.y50{bottom:751.977600px;}
.y5{bottom:752.338500px;}
.y22{bottom:754.024650px;}
.yf9{bottom:755.526450px;}
.y6b{bottom:755.887650px;}
.y183{bottom:756.402150px;}
.y4c{bottom:826.714350px;}
.y21{bottom:846.266550px;}
.y20{bottom:846.295050px;}
.y4d{bottom:847.624950px;}
.h10{height:25.776000px;}
.h2{height:30.683333px;}
.h12{height:31.500000px;}
.hf{height:33.600000px;}
.hb{height:35.066667px;}
.h8{height:36.006000px;}
.h11{height:36.162000px;}
.h21{height:36.853200px;}
.h1c{height:37.800000px;}
.ha{height:38.664000px;}
.h16{height:38.745000px;}
.hd{height:39.450000px;}
.h15{height:40.130400px;}
.h17{height:40.476000px;}
.hc{height:41.328000px;}
.h7{height:42.000000px;}
.h18{height:42.660000px;}
.h5{height:43.620000px;}
.h6{height:43.911000px;}
.h20{height:44.944200px;}
.he{height:45.030000px;}
.h14{height:47.527200px;}
.h3{height:54.510000px;}
.h19{height:56.880000px;}
.h9{height:63.990000px;}
.h13{height:67.158000px;}
.h1f{height:73.476000px;}
.h1d{height:73.476600px;}
.h1a{height:75.660000px;}
.h1e{height:75.660600px;}
.h4{height:75.840000px;}
.h1b{height:108.660000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.x9{left:25.957200px;}
.xa{left:38.297550px;}
.x7{left:85.039350px;}
.x43{left:86.740050px;}
.x24{left:89.666400px;}
.x1d{left:91.973250px;}
.x20{left:95.212950px;}
.x15{left:96.920850px;}
.x1a{left:97.946850px;}
.x18{left:102.489300px;}
.x1e{left:104.951400px;}
.x10{left:106.299150px;}
.x17{left:108.571200px;}
.x23{left:110.501400px;}
.x2f{left:111.639750px;}
.xe{left:112.677150px;}
.x1f{left:114.220650px;}
.x11{left:115.307250px;}
.x19{left:116.903250px;}
.x12{left:118.749600px;}
.x1b{left:119.877150px;}
.x13{left:122.806200px;}
.x22{left:124.095600px;}
.x16{left:130.062750px;}
.xf{left:138.614250px;}
.x44{left:140.314950px;}
.xc{left:170.698350px;}
.x33{left:180.065400px;}
.x38{left:181.860450px;}
.x34{left:183.636150px;}
.x40{left:186.680100px;}
.x32{left:190.156500px;}
.x2{left:191.806950px;}
.x41{left:193.072200px;}
.x35{left:207.273750px;}
.x31{left:217.257150px;}
.x5{left:260.701350px;}
.x6{left:271.837350px;}
.x4{left:300.181350px;}
.x3a{left:311.309100px;}
.x36{left:314.225400px;}
.x27{left:317.121000px;}
.x30{left:322.669050px;}
.x26{left:324.350100px;}
.x39{left:326.482950px;}
.x25{left:330.566100px;}
.x42{left:335.790750px;}
.x1c{left:341.631000px;}
.x37{left:345.632550px;}
.x28{left:354.535500px;}
.x21{left:358.194900px;}
.x3{left:395.374200px;}
.x8{left:410.539350px;}
.x14{left:428.737950px;}
.x1{left:434.454450px;}
.x2d{left:445.564050px;}
.x3d{left:448.169550px;}
.x2e{left:449.229150px;}
.x29{left:455.763300px;}
.x2c{left:456.890400px;}
.x2a{left:464.140200px;}
.x2b{left:467.622750px;}
.x3c{left:474.534750px;}
.x3f{left:476.370900px;}
.x3b{left:478.908750px;}
.x3e{left:481.014750px;}
.xb{left:489.001350px;}
.xd{left:599.497650px;}
@media print{
.v6{vertical-align:-9.186133pt;}
.v1{vertical-align:-4.829867pt;}
.v3{vertical-align:-1.941333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.941333pt;}
.v2{vertical-align:16.339200pt;}
.v5{vertical-align:29.333333pt;}
.ls2f{letter-spacing:-4.640000pt;}
.ls32{letter-spacing:-2.784000pt;}
.ls25{letter-spacing:-2.453333pt;}
.ls33{letter-spacing:-2.320000pt;}
.ls26{letter-spacing:-1.968000pt;}
.ls1b{letter-spacing:-1.962667pt;}
.ls2c{letter-spacing:-1.920000pt;}
.ls1c{letter-spacing:-1.536000pt;}
.ls17{letter-spacing:-1.392000pt;}
.ls27{letter-spacing:-1.056000pt;}
.ls28{letter-spacing:-0.960000pt;}
.ls20{letter-spacing:-0.912000pt;}
.ls22{letter-spacing:-0.864000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.624000pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.464000pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.285869pt;}
.ls2a{letter-spacing:0.366400pt;}
.ls16{letter-spacing:0.426667pt;}
.ls2e{letter-spacing:0.464000pt;}
.ls2b{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.490133pt;}
.ls11{letter-spacing:0.490667pt;}
.ls6{letter-spacing:0.853333pt;}
.ls30{letter-spacing:0.927467pt;}
.ls2d{letter-spacing:0.928000pt;}
.lsc{letter-spacing:0.960000pt;}
.ls12{letter-spacing:0.981333pt;}
.lsd{letter-spacing:1.120000pt;}
.ls15{letter-spacing:1.200000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.337333pt;}
.ls4{letter-spacing:1.360000pt;}
.ls10{letter-spacing:1.386667pt;}
.ls8{letter-spacing:1.440000pt;}
.ls0{letter-spacing:1.493333pt;}
.ls24{letter-spacing:2.051733pt;}
.lse{letter-spacing:2.240000pt;}
.lsf{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.453333pt;}
.lsb{letter-spacing:2.533333pt;}
.ls7{letter-spacing:3.413333pt;}
.ls1d{letter-spacing:5.033600pt;}
.ls19{letter-spacing:5.321067pt;}
.ls29{letter-spacing:5.609600pt;}
.ls3{letter-spacing:5.760000pt;}
.ls2{letter-spacing:5.973333pt;}
.ls35{letter-spacing:7.618133pt;}
.ls34{letter-spacing:9.132267pt;}
.ws2{word-spacing:-22.442667pt;}
.wse{word-spacing:-12.800000pt;}
.ws98{word-spacing:-12.757333pt;}
.ws1{word-spacing:-12.693333pt;}
.ws0{word-spacing:-12.670667pt;}
.ws15a{word-spacing:-12.528000pt;}
.wsda{word-spacing:-12.266667pt;}
.ws2c{word-spacing:-12.168533pt;}
.ws122{word-spacing:-11.971200pt;}
.ws97{word-spacing:-11.677867pt;}
.ws159{word-spacing:-11.136000pt;}
.ws8f{word-spacing:-11.093333pt;}
.ws158{word-spacing:-10.579200pt;}
.ws109{word-spacing:-10.176000pt;}
.ws111{word-spacing:-9.984000pt;}
.ws105{word-spacing:-9.072000pt;}
.wscb{word-spacing:-8.160000pt;}
.ws14{word-spacing:-7.776000pt;}
.ws8a{word-spacing:-7.680000pt;}
.ws17{word-spacing:-6.574933pt;}
.ws14a{word-spacing:-5.011200pt;}
.ws174{word-spacing:-4.036800pt;}
.ws15f{word-spacing:-3.990400pt;}
.ws123{word-spacing:-3.238400pt;}
.ws1c{word-spacing:-3.140267pt;}
.ws11e{word-spacing:-3.091200pt;}
.ws80{word-spacing:-2.993067pt;}
.ws103{word-spacing:-2.894933pt;}
.ws134{word-spacing:-2.876800pt;}
.ws16b{word-spacing:-2.830400pt;}
.ws135{word-spacing:-2.737600pt;}
.ws77{word-spacing:-2.698667pt;}
.ws93{word-spacing:-2.551467pt;}
.ws7c{word-spacing:-2.502400pt;}
.ws32{word-spacing:-2.453333pt;}
.wseb{word-spacing:-2.404267pt;}
.ws18a{word-spacing:-2.366400pt;}
.ws128{word-spacing:-2.355200pt;}
.ws15c{word-spacing:-2.320000pt;}
.ws13{word-spacing:-2.277333pt;}
.ws18b{word-spacing:-2.273600pt;}
.ws59{word-spacing:-2.257067pt;}
.ws1d{word-spacing:-2.208000pt;}
.wsff{word-spacing:-2.158933pt;}
.ws1e{word-spacing:-2.109867pt;}
.ws138{word-spacing:-2.088000pt;}
.ws27{word-spacing:-2.011733pt;}
.ws17a{word-spacing:-1.995200pt;}
.ws51{word-spacing:-1.962667pt;}
.ws16a{word-spacing:-1.902400pt;}
.ws34{word-spacing:-1.864533pt;}
.ws13c{word-spacing:-1.809600pt;}
.ws5a{word-spacing:-1.766400pt;}
.ws165{word-spacing:-1.763200pt;}
.ws71{word-spacing:-1.717333pt;}
.ws13d{word-spacing:-1.716800pt;}
.wsb1{word-spacing:-1.668267pt;}
.ws33{word-spacing:-1.619200pt;}
.ws15b{word-spacing:-1.577600pt;}
.wsb0{word-spacing:-1.570133pt;}
.ws10d{word-spacing:-1.521067pt;}
.ws16d{word-spacing:-1.484800pt;}
.ws90{word-spacing:-1.472000pt;}
.wsb8{word-spacing:-1.422933pt;}
.ws5{word-spacing:-1.405333pt;}
.ws2e{word-spacing:-1.373867pt;}
.wsd{word-spacing:-1.360000pt;}
.ws79{word-spacing:-1.324800pt;}
.ws94{word-spacing:-1.275733pt;}
.ws142{word-spacing:-1.252800pt;}
.ws10f{word-spacing:-1.177600pt;}
.wsa{word-spacing:-1.133333pt;}
.ws54{word-spacing:-1.128533pt;}
.ws84{word-spacing:-1.120000pt;}
.ws17b{word-spacing:-1.067200pt;}
.ws14d{word-spacing:-1.020800pt;}
.ws62{word-spacing:-0.981333pt;}
.ws10{word-spacing:-0.960000pt;}
.ws2b{word-spacing:-0.932267pt;}
.ws132{word-spacing:-0.928000pt;}
.ws41{word-spacing:-0.883200pt;}
.ws180{word-spacing:-0.881600pt;}
.wsf{word-spacing:-0.853333pt;}
.wsfb{word-spacing:-0.785067pt;}
.ws16f{word-spacing:-0.742400pt;}
.ws102{word-spacing:-0.736000pt;}
.ws10c{word-spacing:-0.686933pt;}
.ws9{word-spacing:-0.680000pt;}
.ws17d{word-spacing:-0.649600pt;}
.ws17e{word-spacing:-0.603200pt;}
.ws6b{word-spacing:-0.588800pt;}
.ws193{word-spacing:-0.556800pt;}
.ws45{word-spacing:-0.490667pt;}
.ws15d{word-spacing:-0.464000pt;}
.wsf7{word-spacing:-0.441600pt;}
.ws23{word-spacing:-0.392533pt;}
.ws13a{word-spacing:-0.371200pt;}
.ws24{word-spacing:-0.343467pt;}
.ws64{word-spacing:-0.294400pt;}
.ws78{word-spacing:-0.245333pt;}
.ws30{word-spacing:-0.196267pt;}
.ws16c{word-spacing:-0.185600pt;}
.ws100{word-spacing:-0.098133pt;}
.ws76{word-spacing:-0.049067pt;}
.ws3{word-spacing:0.000000pt;}
.ws67{word-spacing:0.049067pt;}
.wsfc{word-spacing:0.147200pt;}
.ws139{word-spacing:0.232000pt;}
.ws35{word-spacing:0.343467pt;}
.ws13b{word-spacing:0.371200pt;}
.ws96{word-spacing:0.392533pt;}
.ws3e{word-spacing:0.441600pt;}
.ws164{word-spacing:0.464000pt;}
.ws3a{word-spacing:0.490667pt;}
.ws175{word-spacing:0.510400pt;}
.ws4{word-spacing:0.533333pt;}
.wsfe{word-spacing:0.539733pt;}
.ws166{word-spacing:0.556800pt;}
.ws2f{word-spacing:0.588800pt;}
.ws20{word-spacing:0.637867pt;}
.ws127{word-spacing:0.686933pt;}
.ws14f{word-spacing:0.696000pt;}
.ws3b{word-spacing:0.736000pt;}
.ws14e{word-spacing:0.742400pt;}
.ws69{word-spacing:0.785067pt;}
.ws3d{word-spacing:0.834133pt;}
.ws19b{word-spacing:0.881600pt;}
.ws95{word-spacing:0.883200pt;}
.ws136{word-spacing:0.928000pt;}
.ws8{word-spacing:0.952000pt;}
.ws137{word-spacing:0.974400pt;}
.wsec{word-spacing:0.981333pt;}
.wsc{word-spacing:0.997333pt;}
.ws12c{word-spacing:1.030400pt;}
.ws143{word-spacing:1.067200pt;}
.ws53{word-spacing:1.079467pt;}
.ws10b{word-spacing:1.128533pt;}
.ws195{word-spacing:1.252800pt;}
.ws5b{word-spacing:1.275733pt;}
.ws194{word-spacing:1.299200pt;}
.wsb7{word-spacing:1.324800pt;}
.ws131{word-spacing:1.392000pt;}
.wsb6{word-spacing:1.422933pt;}
.wsf2{word-spacing:1.472000pt;}
.ws7d{word-spacing:1.521067pt;}
.ws61{word-spacing:1.570133pt;}
.ws168{word-spacing:1.577600pt;}
.wsd9{word-spacing:1.619200pt;}
.ws16e{word-spacing:1.624000pt;}
.ws6c{word-spacing:1.668267pt;}
.ws167{word-spacing:1.670400pt;}
.ws65{word-spacing:1.766400pt;}
.ws6a{word-spacing:1.864533pt;}
.ws176{word-spacing:1.902400pt;}
.ws39{word-spacing:1.913600pt;}
.ws7e{word-spacing:1.962667pt;}
.wsf1{word-spacing:2.158933pt;}
.ws191{word-spacing:2.180800pt;}
.ws73{word-spacing:2.257067pt;}
.ws117{word-spacing:2.306133pt;}
.ws169{word-spacing:2.320000pt;}
.ws42{word-spacing:2.355200pt;}
.ws3c{word-spacing:2.404267pt;}
.wsef{word-spacing:2.453333pt;}
.ws192{word-spacing:2.459200pt;}
.ws2d{word-spacing:2.551467pt;}
.ws72{word-spacing:2.600533pt;}
.ws66{word-spacing:2.649600pt;}
.ws40{word-spacing:2.698667pt;}
.wsf0{word-spacing:2.747733pt;}
.ws163{word-spacing:2.784000pt;}
.ws15e{word-spacing:2.876800pt;}
.ws37{word-spacing:2.944000pt;}
.ws15{word-spacing:2.986667pt;}
.wsb3{word-spacing:2.993067pt;}
.ws199{word-spacing:3.016000pt;}
.ws110{word-spacing:3.072000pt;}
.ws48{word-spacing:3.091200pt;}
.wsb{word-spacing:3.128000pt;}
.ws125{word-spacing:3.140267pt;}
.ws44{word-spacing:3.189333pt;}
.ws198{word-spacing:3.201600pt;}
.ws31{word-spacing:3.238400pt;}
.ws1b{word-spacing:3.287467pt;}
.ws130{word-spacing:3.294400pt;}
.ws101{word-spacing:3.336533pt;}
.ws11d{word-spacing:3.385600pt;}
.ws162{word-spacing:3.387200pt;}
.ws1a{word-spacing:3.434667pt;}
.ws26{word-spacing:3.483733pt;}
.ws49{word-spacing:3.532800pt;}
.ws196{word-spacing:3.619200pt;}
.wsfd{word-spacing:3.630933pt;}
.ws43{word-spacing:3.680000pt;}
.ws83{word-spacing:3.729067pt;}
.ws150{word-spacing:3.804800pt;}
.ws50{word-spacing:3.876267pt;}
.ws183{word-spacing:3.897600pt;}
.ws5c{word-spacing:3.974400pt;}
.ws179{word-spacing:4.036800pt;}
.ws4f{word-spacing:4.072533pt;}
.ws182{word-spacing:4.083200pt;}
.ws11f{word-spacing:4.121600pt;}
.ws17c{word-spacing:4.176000pt;}
.ws18{word-spacing:4.219733pt;}
.ws21{word-spacing:4.268800pt;}
.ws155{word-spacing:4.315200pt;}
.ws57{word-spacing:4.317867pt;}
.ws12d{word-spacing:4.366933pt;}
.wsb5{word-spacing:4.465067pt;}
.ws7b{word-spacing:4.563200pt;}
.wsf3{word-spacing:4.612267pt;}
.ws12e{word-spacing:4.640000pt;}
.ws1f{word-spacing:4.661333pt;}
.ws133{word-spacing:4.732800pt;}
.wsd8{word-spacing:4.759467pt;}
.ws5f{word-spacing:4.808533pt;}
.ws156{word-spacing:4.872000pt;}
.wsf6{word-spacing:4.906667pt;}
.ws18e{word-spacing:4.918400pt;}
.ws22{word-spacing:5.102933pt;}
.ws157{word-spacing:5.104000pt;}
.ws18d{word-spacing:5.150400pt;}
.ws6e{word-spacing:5.152000pt;}
.wsd7{word-spacing:5.201067pt;}
.wsaf{word-spacing:5.299200pt;}
.ws38{word-spacing:5.348267pt;}
.ws81{word-spacing:5.397333pt;}
.ws6f{word-spacing:5.446400pt;}
.ws13f{word-spacing:5.521600pt;}
.ws11c{word-spacing:5.544533pt;}
.ws82{word-spacing:5.593600pt;}
.wsf4{word-spacing:5.740800pt;}
.ws58{word-spacing:5.789867pt;}
.ws13e{word-spacing:5.800000pt;}
.ws19{word-spacing:5.838933pt;}
.ws4c{word-spacing:5.888000pt;}
.ws154{word-spacing:5.892800pt;}
.ws186{word-spacing:5.939200pt;}
.ws6{word-spacing:5.984000pt;}
.ws68{word-spacing:5.986133pt;}
.ws120{word-spacing:6.035200pt;}
.ws147{word-spacing:6.078400pt;}
.ws60{word-spacing:6.182400pt;}
.ws153{word-spacing:6.217600pt;}
.ws52{word-spacing:6.280533pt;}
.ws129{word-spacing:6.329600pt;}
.ws1a0{word-spacing:6.356800pt;}
.ws91{word-spacing:6.378667pt;}
.wsfa{word-spacing:6.427733pt;}
.ws19d{word-spacing:6.496000pt;}
.ws10a{word-spacing:6.525867pt;}
.ws7f{word-spacing:6.574933pt;}
.ws149{word-spacing:6.635200pt;}
.ws19f{word-spacing:6.681600pt;}
.ws19a{word-spacing:6.774400pt;}
.ws116{word-spacing:6.820267pt;}
.ws4a{word-spacing:6.869333pt;}
.ws148{word-spacing:6.960000pt;}
.ws85{word-spacing:7.040000pt;}
.wsf9{word-spacing:7.065600pt;}
.ws184{word-spacing:7.099200pt;}
.ws4d{word-spacing:7.114667pt;}
.ws25{word-spacing:7.163733pt;}
.ws187{word-spacing:7.238400pt;}
.ws63{word-spacing:7.261867pt;}
.ws185{word-spacing:7.331200pt;}
.ws5d{word-spacing:7.360000pt;}
.ws12b{word-spacing:7.409067pt;}
.ws18f{word-spacing:7.424000pt;}
.ws11b{word-spacing:7.654400pt;}
.ws118{word-spacing:7.752533pt;}
.ws190{word-spacing:7.795200pt;}
.ws11a{word-spacing:7.801600pt;}
.ws55{word-spacing:7.899733pt;}
.wsf5{word-spacing:7.948800pt;}
.ws145{word-spacing:8.073600pt;}
.ws19c{word-spacing:8.212800pt;}
.ws56{word-spacing:8.292267pt;}
.ws3f{word-spacing:8.341333pt;}
.ws12a{word-spacing:8.439467pt;}
.ws144{word-spacing:8.444800pt;}
.wsee{word-spacing:8.586667pt;}
.wsf8{word-spacing:8.635733pt;}
.ws19e{word-spacing:8.816000pt;}
.ws75{word-spacing:8.881067pt;}
.ws141{word-spacing:8.908800pt;}
.ws6d{word-spacing:8.979200pt;}
.ws188{word-spacing:9.001600pt;}
.wsed{word-spacing:9.028267pt;}
.ws197{word-spacing:9.140800pt;}
.ws7a{word-spacing:9.273600pt;}
.ws140{word-spacing:9.372800pt;}
.ws189{word-spacing:9.465600pt;}
.ws121{word-spacing:9.518933pt;}
.ws152{word-spacing:10.254400pt;}
.ws7{word-spacing:10.744000pt;}
.ws151{word-spacing:10.764800pt;}
.ws5e{word-spacing:10.941867pt;}
.ws92{word-spacing:10.990933pt;}
.wsb2{word-spacing:11.040000pt;}
.ws124{word-spacing:11.089067pt;}
.ws126{word-spacing:11.383467pt;}
.ws36{word-spacing:11.579733pt;}
.ws181{word-spacing:11.739200pt;}
.ws4b{word-spacing:11.923200pt;}
.wsb4{word-spacing:12.413867pt;}
.ws119{word-spacing:12.561067pt;}
.ws46{word-spacing:12.659200pt;}
.ws146{word-spacing:12.852800pt;}
.ws14c{word-spacing:13.038400pt;}
.ws47{word-spacing:13.444267pt;}
.ws160{word-spacing:13.595200pt;}
.ws14b{word-spacing:13.734400pt;}
.ws70{word-spacing:13.885867pt;}
.ws29{word-spacing:13.934933pt;}
.ws161{word-spacing:14.291200pt;}
.ws178{word-spacing:14.384000pt;}
.ws28{word-spacing:14.621867pt;}
.ws4e{word-spacing:14.818133pt;}
.ws12f{word-spacing:14.894400pt;}
.ws177{word-spacing:15.126400pt;}
.ws2a{word-spacing:16.044800pt;}
.ws10e{word-spacing:18.056533pt;}
.ws17f{word-spacing:18.838400pt;}
.ws18c{word-spacing:20.230400pt;}
.ws74{word-spacing:20.558933pt;}
.ws16{word-spacing:20.661333pt;}
.ws173{word-spacing:20.694400pt;}
.ws171{word-spacing:21.297600pt;}
.ws172{word-spacing:21.715200pt;}
.ws170{word-spacing:29.649600pt;}
.ws11{word-spacing:32.504000pt;}
.ws12{word-spacing:33.138667pt;}
.ws9a{word-spacing:37.708800pt;}
.ws87{word-spacing:37.709333pt;}
.wsa7{word-spacing:47.621333pt;}
.wsbb{word-spacing:48.052800pt;}
.wsc4{word-spacing:48.269333pt;}
.wsbd{word-spacing:48.460267pt;}
.wse4{word-spacing:48.461333pt;}
.wsc9{word-spacing:48.532800pt;}
.wsc1{word-spacing:48.701333pt;}
.wsc2{word-spacing:48.773867pt;}
.wse8{word-spacing:48.869333pt;}
.wsde{word-spacing:48.893333pt;}
.wsd4{word-spacing:49.108800pt;}
.wsa4{word-spacing:49.133333pt;}
.wsbe{word-spacing:50.405333pt;}
.ws9b{word-spacing:50.452800pt;}
.wsbf{word-spacing:50.572267pt;}
.ws89{word-spacing:51.413333pt;}
.wsbc{word-spacing:51.557333pt;}
.wse3{word-spacing:52.229333pt;}
.wse6{word-spacing:52.420267pt;}
.wsa1{word-spacing:52.877333pt;}
.ws9e{word-spacing:53.213333pt;}
.wsba{word-spacing:53.572800pt;}
.wsa9{word-spacing:53.884267pt;}
.wsdd{word-spacing:53.885333pt;}
.ws88{word-spacing:54.605333pt;}
.wse7{word-spacing:55.181333pt;}
.wscd{word-spacing:55.565333pt;}
.wsab{word-spacing:55.637333pt;}
.wsdb{word-spacing:55.997867pt;}
.wsad{word-spacing:56.237333pt;}
.ws8e{word-spacing:57.197333pt;}
.wsa6{word-spacing:59.380800pt;}
.ws8b{word-spacing:62.188800pt;}
.ws9c{word-spacing:62.284800pt;}
.ws8c{word-spacing:62.668267pt;}
.wsa2{word-spacing:63.028800pt;}
.wscf{word-spacing:63.029333pt;}
.ws8d{word-spacing:63.029867pt;}
.wsd3{word-spacing:63.748800pt;}
.wsce{word-spacing:63.916800pt;}
.wsd0{word-spacing:64.660267pt;}
.wse1{word-spacing:64.852267pt;}
.wsa0{word-spacing:65.885333pt;}
.wsca{word-spacing:66.388800pt;}
.wsea{word-spacing:67.493867pt;}
.wsa8{word-spacing:68.141867pt;}
.wsaa{word-spacing:68.764800pt;}
.wse2{word-spacing:68.790400pt;}
.wsc7{word-spacing:69.077333pt;}
.wsc3{word-spacing:73.301333pt;}
.wsd6{word-spacing:76.084267pt;}
.wsae{word-spacing:81.101867pt;}
.wsac{word-spacing:83.572800pt;}
.wsdc{word-spacing:84.724267pt;}
.ws9f{word-spacing:86.926933pt;}
.ws114{word-spacing:87.698133pt;}
.ws104{word-spacing:90.100267pt;}
.ws112{word-spacing:95.860800pt;}
.wsc8{word-spacing:100.969600pt;}
.wsdf{word-spacing:100.970133pt;}
.ws108{word-spacing:104.571200pt;}
.ws113{word-spacing:111.050133pt;}
.ws107{word-spacing:112.780800pt;}
.wscc{word-spacing:121.682133pt;}
.ws86{word-spacing:137.791467pt;}
.wsd2{word-spacing:140.211200pt;}
.wsc0{word-spacing:140.882133pt;}
.wsb9{word-spacing:143.462400pt;}
.wse0{word-spacing:150.757867pt;}
.wsd5{word-spacing:151.059733pt;}
.wsa5{word-spacing:154.924267pt;}
.ws115{word-spacing:156.672000pt;}
.ws9d{word-spacing:158.234667pt;}
.wse5{word-spacing:164.020267pt;}
.ws99{word-spacing:165.201067pt;}
.wse9{word-spacing:171.603733pt;}
.wsd1{word-spacing:173.060800pt;}
.wsa3{word-spacing:177.003200pt;}
.wsc6{word-spacing:178.227200pt;}
.wsc5{word-spacing:197.900267pt;}
.ws106{word-spacing:202.443733pt;}
._55{margin-left:-20.054933pt;}
._14{margin-left:-11.616000pt;}
._5b{margin-left:-9.596587pt;}
._59{margin-left:-8.661173pt;}
._5a{margin-left:-7.284693pt;}
._2{margin-left:-6.131200pt;}
._e{margin-left:-4.074667pt;}
._0{margin-left:-2.944000pt;}
._1{margin-left:-1.226667pt;}
._3{width:0.902133pt;}
._d{width:2.133333pt;}
._4{width:3.622133pt;}
._2a{width:5.318400pt;}
._52{width:6.513600pt;}
._b{width:8.021333pt;}
._13{width:21.269333pt;}
._9{width:33.181333pt;}
._15{width:46.059733pt;}
._49{width:48.734933pt;}
._3e{width:51.000533pt;}
._56{width:52.469867pt;}
._35{width:54.438933pt;}
._40{width:56.512000pt;}
._25{width:57.436800pt;}
._26{width:58.328000pt;}
._34{width:59.634667pt;}
._3f{width:60.652800pt;}
._16{width:62.224533pt;}
._1d{width:63.173867pt;}
._a{width:64.237333pt;}
._36{width:65.680533pt;}
._48{width:67.013333pt;}
._4e{width:68.021067pt;}
._31{width:70.011733pt;}
._2f{width:71.431467pt;}
._c{width:73.077333pt;}
._f{width:74.165333pt;}
._21{width:75.104000pt;}
._11{width:77.083733pt;}
._29{width:79.322667pt;}
._12{width:80.763733pt;}
._44{width:82.573333pt;}
._58{width:84.046933pt;}
._47{width:86.140800pt;}
._30{width:87.202933pt;}
._39{width:94.417600pt;}
._43{width:97.516267pt;}
._24{width:100.709867pt;}
._4b{width:101.617067pt;}
._50{width:103.497067pt;}
._38{width:108.476267pt;}
._42{width:109.822400pt;}
._4a{width:111.380800pt;}
._41{width:112.271467pt;}
._3d{width:113.333333pt;}
._37{width:114.988800pt;}
._4f{width:118.789333pt;}
._3c{width:120.215467pt;}
._23{width:124.877867pt;}
._5{width:125.945867pt;}
._45{width:127.564800pt;}
._10{width:128.658133pt;}
._1c{width:130.538667pt;}
._2e{width:134.570133pt;}
._2c{width:136.546667pt;}
._22{width:137.582400pt;}
._46{width:140.063467pt;}
._3b{width:142.083200pt;}
._17{width:145.651733pt;}
._2d{width:146.640533pt;}
._1b{width:147.611200pt;}
._20{width:148.586667pt;}
._18{width:150.437867pt;}
._32{width:152.235200pt;}
._54{width:153.164267pt;}
._3a{width:158.080000pt;}
._1e{width:162.486933pt;}
._1f{width:163.854400pt;}
._4c{width:165.438400pt;}
._1a{width:170.590400pt;}
._2b{width:173.068800pt;}
._33{width:174.834667pt;}
._28{width:178.590400pt;}
._27{width:185.082667pt;}
._6{width:186.676267pt;}
._51{width:188.393067pt;}
._4d{width:190.900533pt;}
._19{width:198.509333pt;}
._7{width:201.818133pt;}
._57{width:239.926400pt;}
._53{width:247.320533pt;}
._8{width:507.420863pt;}
.fsd{font-size:28.605867pt;}
.fs9{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fsf{font-size:46.400000pt;}
.fs6{font-size:48.000000pt;}
.fsc{font-size:49.066667pt;}
.fs8{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:61.333333pt;}
.fse{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs5{font-size:72.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:19.845200pt;}
.y1{bottom:35.842533pt;}
.y1a1{bottom:48.357467pt;}
.y111{bottom:55.989867pt;}
.y4b{bottom:56.540400pt;}
.ybb{bottom:56.693067pt;}
.ycb{bottom:57.164667pt;}
.y182{bottom:58.603600pt;}
.y6a{bottom:59.201333pt;}
.ydd{bottom:59.233467pt;}
.y8d{bottom:59.900133pt;}
.ya0{bottom:59.936933pt;}
.y125{bottom:60.603600pt;}
.y15{bottom:61.121200pt;}
.y152{bottom:62.461867pt;}
.y1a0{bottom:64.357467pt;}
.y13e{bottom:65.177467pt;}
.y102{bottom:66.548000pt;}
.yba{bottom:70.026400pt;}
.y4a{bottom:71.207067pt;}
.y181{bottom:74.603600pt;}
.yca{bottom:75.164667pt;}
.y14{bottom:75.787867pt;}
.y69{bottom:77.201333pt;}
.ydc{bottom:77.233467pt;}
.y8c{bottom:77.900133pt;}
.y9f{bottom:77.936933pt;}
.y124{bottom:78.603600pt;}
.y19f{bottom:80.357467pt;}
.y151{bottom:80.461867pt;}
.y101{bottom:81.214667pt;}
.y11d{bottom:81.430000pt;}
.yb9{bottom:83.359733pt;}
.y49{bottom:85.873733pt;}
.y13d{bottom:87.811867pt;}
.y180{bottom:90.603600pt;}
.yc9{bottom:93.164667pt;}
.y68{bottom:95.201333pt;}
.ydb{bottom:95.233467pt;}
.y8b{bottom:95.900133pt;}
.y9e{bottom:95.936933pt;}
.y19e{bottom:96.357467pt;}
.y123{bottom:96.603600pt;}
.y150{bottom:98.461867pt;}
.y48{bottom:100.540400pt;}
.y13c{bottom:102.478533pt;}
.y11c{bottom:104.107067pt;}
.y13{bottom:105.126533pt;}
.y100{bottom:106.233067pt;}
.y17f{bottom:106.603600pt;}
.y138{bottom:107.922133pt;}
.y1a7{bottom:112.357467pt;}
.yda{bottom:113.233467pt;}
.y8a{bottom:113.900133pt;}
.y9d{bottom:113.936933pt;}
.y122{bottom:114.603600pt;}
.y47{bottom:115.207067pt;}
.y14f{bottom:116.461867pt;}
.y13b{bottom:117.145200pt;}
.y132{bottom:117.851733pt;}
.y12{bottom:119.791867pt;}
.yff{bottom:120.899733pt;}
.y11b{bottom:126.784267pt;}
.y19d{bottom:128.357467pt;}
.y67{bottom:129.831333pt;}
.y46{bottom:129.873733pt;}
.yd9{bottom:131.233467pt;}
.y13a{bottom:131.811867pt;}
.y89{bottom:131.900133pt;}
.y9c{bottom:131.936933pt;}
.y121{bottom:132.603600pt;}
.y11{bottom:134.457200pt;}
.y14e{bottom:134.461867pt;}
.y131{bottom:136.297867pt;}
.y17e{bottom:138.603600pt;}
.y19c{bottom:144.357467pt;}
.y45{bottom:144.540400pt;}
.yfe{bottom:144.981067pt;}
.y139{bottom:146.478533pt;}
.yc8{bottom:147.831333pt;}
.y10{bottom:149.122533pt;}
.yd8{bottom:149.233467pt;}
.y11a{bottom:149.461467pt;}
.y88{bottom:149.900133pt;}
.y9b{bottom:149.936933pt;}
.yb8{bottom:150.603600pt;}
.y14d{bottom:152.461867pt;}
.y17d{bottom:154.603600pt;}
.y130{bottom:154.744133pt;}
.y44{bottom:159.207067pt;}
.y19b{bottom:160.357467pt;}
.yf{bottom:163.787867pt;}
.y66{bottom:165.127867pt;}
.y137{bottom:165.264800pt;}
.yc7{bottom:165.831333pt;}
.yd7{bottom:167.233467pt;}
.y87{bottom:167.900133pt;}
.y9a{bottom:167.936933pt;}
.yb7{bottom:168.603600pt;}
.yfd{bottom:170.015200pt;}
.y14c{bottom:170.461867pt;}
.y17c{bottom:170.603600pt;}
.y119{bottom:172.138533pt;}
.y136{bottom:172.598133pt;}
.y12f{bottom:173.190267pt;}
.y43{bottom:173.873733pt;}
.y1a6{bottom:176.357467pt;}
.ye{bottom:178.454533pt;}
.y135{bottom:182.007867pt;}
.yc6{bottom:183.831333pt;}
.yd6{bottom:185.233467pt;}
.y86{bottom:185.900133pt;}
.y99{bottom:185.936933pt;}
.yb6{bottom:186.603600pt;}
.y12e{bottom:187.856933pt;}
.y14b{bottom:188.461867pt;}
.y42{bottom:188.540400pt;}
.y19a{bottom:192.357467pt;}
.y118{bottom:194.815733pt;}
.y134{bottom:198.010267pt;}
.yfc{bottom:201.534667pt;}
.yc5{bottom:201.831333pt;}
.y12d{bottom:202.523600pt;}
.y41{bottom:203.207067pt;}
.yd5{bottom:203.233467pt;}
.y85{bottom:203.900133pt;}
.y98{bottom:203.936933pt;}
.yb5{bottom:204.603600pt;}
.y133{bottom:205.343600pt;}
.y14a{bottom:206.461867pt;}
.yd{bottom:207.793200pt;}
.y199{bottom:208.357467pt;}
.y117{bottom:217.492933pt;}
.y40{bottom:217.873733pt;}
.y65{bottom:219.794533pt;}
.yc4{bottom:219.831333pt;}
.y17b{bottom:220.566800pt;}
.y84{bottom:221.900133pt;}
.y97{bottom:221.936933pt;}
.yc{bottom:222.458533pt;}
.yb4{bottom:222.603600pt;}
.y198{bottom:224.357467pt;}
.y149{bottom:224.461867pt;}
.y12c{bottom:230.234133pt;}
.y3f{bottom:232.540400pt;}
.y104{bottom:236.886133pt;}
.yb{bottom:237.123867pt;}
.y64{bottom:237.794533pt;}
.yc3{bottom:237.831333pt;}
.y83{bottom:239.900133pt;}
.y96{bottom:239.936933pt;}
.y1aa{bottom:240.357467pt;}
.yb3{bottom:240.603600pt;}
.y148{bottom:242.461867pt;}
.y12a{bottom:244.900800pt;}
.y3e{bottom:247.207067pt;}
.y116{bottom:247.833867pt;}
.ya{bottom:251.789200pt;}
.y103{bottom:254.886133pt;}
.y197{bottom:256.357467pt;}
.y82{bottom:257.900133pt;}
.y95{bottom:257.936933pt;}
.yb2{bottom:258.603600pt;}
.y12b{bottom:259.567467pt;}
.y147{bottom:260.461867pt;}
.y3d{bottom:261.873733pt;}
.y9{bottom:266.454533pt;}
.yd4{bottom:268.021333pt;}
.y196{bottom:272.357467pt;}
.y63{bottom:273.794533pt;}
.y17a{bottom:275.233467pt;}
.y81{bottom:275.900133pt;}
.y94{bottom:275.936933pt;}
.y3c{bottom:276.540400pt;}
.yb1{bottom:276.603600pt;}
.y8{bottom:281.121200pt;}
.y129{bottom:281.862533pt;}
.y11f{bottom:283.185333pt;}
.yf0{bottom:286.501733pt;}
.y195{bottom:288.357467pt;}
.y128{bottom:289.681067pt;}
.yd1{bottom:290.981067pt;}
.y3b{bottom:291.207067pt;}
.y62{bottom:291.794533pt;}
.y179{bottom:293.233467pt;}
.y80{bottom:293.900133pt;}
.y93{bottom:293.936933pt;}
.yb0{bottom:294.603600pt;}
.y11e{bottom:301.185333pt;}
.y1f{bottom:303.389467pt;}
.y1a5{bottom:304.357467pt;}
.yef{bottom:304.501733pt;}
.y3a{bottom:305.873733pt;}
.y178{bottom:311.233467pt;}
.y7f{bottom:311.900133pt;}
.y4e{bottom:311.913333pt;}
.y92{bottom:311.936933pt;}
.yaf{bottom:312.603600pt;}
.y146{bottom:315.128533pt;}
.yd0{bottom:316.015200pt;}
.y1e{bottom:318.056133pt;}
.y194{bottom:320.357467pt;}
.y39{bottom:320.540400pt;}
.y127{bottom:321.176667pt;}
.yee{bottom:322.501733pt;}
.y61{bottom:327.794533pt;}
.y177{bottom:329.233467pt;}
.y7e{bottom:329.900133pt;}
.y91{bottom:329.936933pt;}
.yae{bottom:330.603600pt;}
.y110{bottom:330.627733pt;}
.y145{bottom:333.128533pt;}
.y193{bottom:336.357467pt;}
.y1d{bottom:336.502267pt;}
.yed{bottom:340.501733pt;}
.ycf{bottom:341.049333pt;}
.yde{bottom:345.690667pt;}
.y60{bottom:345.794533pt;}
.y176{bottom:347.233467pt;}
.y7d{bottom:347.900133pt;}
.y90{bottom:347.936933pt;}
.yad{bottom:348.603600pt;}
.y10f{bottom:348.627733pt;}
.y38{bottom:349.873733pt;}
.y144{bottom:351.128533pt;}
.y192{bottom:352.357467pt;}
.y141{bottom:355.138000pt;}
.y1c{bottom:357.394667pt;}
.yec{bottom:358.501733pt;}
.y37{bottom:364.540400pt;}
.y175{bottom:365.233467pt;}
.y7c{bottom:365.900133pt;}
.yce{bottom:366.083467pt;}
.yac{bottom:366.603600pt;}
.y10e{bottom:366.627733pt;}
.y191{bottom:368.357467pt;}
.ye7{bottom:368.382667pt;}
.y143{bottom:369.128533pt;}
.y140{bottom:373.138000pt;}
.y1b{bottom:374.507600pt;}
.yeb{bottom:376.501733pt;}
.y36{bottom:379.207067pt;}
.y5f{bottom:381.794533pt;}
.y23{bottom:382.234400pt;}
.y8f{bottom:382.566800pt;}
.y174{bottom:383.233467pt;}
.y7b{bottom:383.900133pt;}
.y1a9{bottom:384.357467pt;}
.yab{bottom:384.603600pt;}
.y10d{bottom:384.627733pt;}
.y142{bottom:387.128533pt;}
.ycd{bottom:391.117467pt;}
.y13f{bottom:391.138000pt;}
.ye6{bottom:393.416800pt;}
.y35{bottom:393.873733pt;}
.yea{bottom:394.501733pt;}
.y5e{bottom:399.794533pt;}
.y190{bottom:400.357467pt;}
.y1a{bottom:401.174267pt;}
.y8e{bottom:401.233467pt;}
.y7a{bottom:401.900133pt;}
.yaa{bottom:402.603600pt;}
.y34{bottom:408.540400pt;}
.y4f{bottom:411.797467pt;}
.y18f{bottom:416.357467pt;}
.y5d{bottom:417.794533pt;}
.y19{bottom:418.287067pt;}
.ye5{bottom:418.450933pt;}
.y173{bottom:419.233467pt;}
.y79{bottom:419.900133pt;}
.ya9{bottom:420.603600pt;}
.y10c{bottom:421.294400pt;}
.ycc{bottom:422.636933pt;}
.y33{bottom:423.207067pt;}
.y153{bottom:427.013467pt;}
.y18e{bottom:432.357467pt;}
.yfb{bottom:432.997733pt;}
.y5c{bottom:435.794533pt;}
.y172{bottom:437.233467pt;}
.y32{bottom:437.873733pt;}
.y78{bottom:437.900133pt;}
.ya8{bottom:438.603600pt;}
.y10b{bottom:439.294400pt;}
.ye4{bottom:443.484933pt;}
.y18{bottom:444.953733pt;}
.y16c{bottom:446.253333pt;}
.y1a4{bottom:448.357467pt;}
.y31{bottom:452.540400pt;}
.y16b{bottom:453.586667pt;}
.y5b{bottom:453.794533pt;}
.y171{bottom:455.233467pt;}
.yf8{bottom:455.610000pt;}
.y77{bottom:455.900133pt;}
.ya7{bottom:456.603600pt;}
.y10a{bottom:457.294400pt;}
.yd3{bottom:457.988400pt;}
.y17{bottom:458.287067pt;}
.y18d{bottom:464.357467pt;}
.y30{bottom:467.207067pt;}
.ye3{bottom:468.519067pt;}
.y5a{bottom:471.794533pt;}
.y170{bottom:473.233467pt;}
.y76{bottom:473.900133pt;}
.ya6{bottom:474.603600pt;}
.y109{bottom:475.294400pt;}
.y16{bottom:475.400000pt;}
.yd2{bottom:475.988400pt;}
.y15f{bottom:478.272267pt;}
.y168{bottom:479.950133pt;}
.y18c{bottom:480.357467pt;}
.yf7{bottom:480.644133pt;}
.y2f{bottom:481.873733pt;}
.y165{bottom:485.393733pt;}
.y16a{bottom:487.283467pt;}
.y59{bottom:489.794533pt;}
.y16f{bottom:491.233467pt;}
.y75{bottom:491.900133pt;}
.ya5{bottom:492.603600pt;}
.y108{bottom:493.294400pt;}
.ye2{bottom:493.553200pt;}
.y167{bottom:494.616800pt;}
.y1a8{bottom:496.357467pt;}
.y2e{bottom:496.540400pt;}
.y15e{bottom:496.718400pt;}
.yf6{bottom:501.308667pt;}
.y169{bottom:501.950133pt;}
.y58{bottom:507.794533pt;}
.yc2{bottom:507.831333pt;}
.yf5{bottom:508.642000pt;}
.y126{bottom:509.233467pt;}
.y166{bottom:509.283467pt;}
.y74{bottom:509.900133pt;}
.ya4{bottom:510.603600pt;}
.y2d{bottom:511.207067pt;}
.y107{bottom:511.294400pt;}
.y18b{bottom:512.357467pt;}
.y15d{bottom:515.164667pt;}
.ye1{bottom:518.587333pt;}
.y57{bottom:525.794533pt;}
.yc1{bottom:525.831333pt;}
.y2c{bottom:525.873733pt;}
.y120{bottom:527.233467pt;}
.y73{bottom:527.900133pt;}
.y18a{bottom:528.357467pt;}
.ya3{bottom:528.603600pt;}
.y164{bottom:528.813733pt;}
.y106{bottom:529.294400pt;}
.y15c{bottom:533.610800pt;}
.y162{bottom:533.997467pt;}
.y163{bottom:536.147067pt;}
.yf4{bottom:536.639867pt;}
.y2b{bottom:540.540400pt;}
.ye0{bottom:543.621467pt;}
.y56{bottom:543.794533pt;}
.yc0{bottom:543.831333pt;}
.y1a3{bottom:544.357467pt;}
.y16e{bottom:545.233467pt;}
.y72{bottom:545.900133pt;}
.ya2{bottom:546.603600pt;}
.y105{bottom:547.294400pt;}
.y161{bottom:548.664133pt;}
.y15b{bottom:552.057067pt;}
.y2a{bottom:555.207067pt;}
.y189{bottom:560.357467pt;}
.yf3{bottom:561.674133pt;}
.y55{bottom:561.794533pt;}
.ybf{bottom:561.831333pt;}
.y16d{bottom:563.233467pt;}
.y71{bottom:563.900133pt;}
.y160{bottom:565.627333pt;}
.y4{bottom:566.786267pt;}
.y29{bottom:569.873733pt;}
.y15a{bottom:570.503200pt;}
.ydf{bottom:575.140933pt;}
.y188{bottom:576.357467pt;}
.y54{bottom:579.794533pt;}
.ybe{bottom:579.831333pt;}
.ya1{bottom:581.233467pt;}
.y70{bottom:581.900133pt;}
.y112{bottom:583.234000pt;}
.y3{bottom:584.112933pt;}
.y28{bottom:584.540400pt;}
.yf2{bottom:586.708133pt;}
.y158{bottom:587.564800pt;}
.y187{bottom:592.357467pt;}
.y157{bottom:594.898133pt;}
.y53{bottom:597.794533pt;}
.ybd{bottom:597.831333pt;}
.y27{bottom:599.207067pt;}
.y6f{bottom:599.900133pt;}
.y159{bottom:602.231467pt;}
.y114{bottom:606.881333pt;}
.y1a2{bottom:608.357467pt;}
.ye9{bottom:610.492400pt;}
.y26{bottom:613.873733pt;}
.y52{bottom:615.794533pt;}
.y6e{bottom:617.900133pt;}
.y7{bottom:618.100000pt;}
.yf1{bottom:618.227600pt;}
.y186{bottom:624.357467pt;}
.y156{bottom:625.799467pt;}
.ye8{bottom:628.492400pt;}
.y113{bottom:631.915467pt;}
.ybc{bottom:633.127867pt;}
.y155{bottom:633.618133pt;}
.y51{bottom:633.794533pt;}
.y6d{bottom:635.900133pt;}
.y185{bottom:640.357467pt;}
.y25{bottom:643.207067pt;}
.y6{bottom:643.422667pt;}
.yfa{bottom:653.579067pt;}
.y6c{bottom:653.900133pt;}
.y184{bottom:656.357467pt;}
.y24{bottom:657.873733pt;}
.y115{bottom:663.581867pt;}
.y154{bottom:665.113600pt;}
.y50{bottom:668.424533pt;}
.y5{bottom:668.745333pt;}
.y22{bottom:670.244133pt;}
.yf9{bottom:671.579067pt;}
.y6b{bottom:671.900133pt;}
.y183{bottom:672.357467pt;}
.y4c{bottom:734.857200pt;}
.y21{bottom:752.236933pt;}
.y20{bottom:752.262267pt;}
.y4d{bottom:753.444400pt;}
.h10{height:22.912000pt;}
.h2{height:27.274074pt;}
.h12{height:28.000000pt;}
.hf{height:29.866667pt;}
.hb{height:31.170370pt;}
.h8{height:32.005333pt;}
.h11{height:32.144000pt;}
.h21{height:32.758400pt;}
.h1c{height:33.600000pt;}
.ha{height:34.368000pt;}
.h16{height:34.440000pt;}
.hd{height:35.066667pt;}
.h15{height:35.671467pt;}
.h17{height:35.978667pt;}
.hc{height:36.736000pt;}
.h7{height:37.333333pt;}
.h18{height:37.920000pt;}
.h5{height:38.773333pt;}
.h6{height:39.032000pt;}
.h20{height:39.950400pt;}
.he{height:40.026667pt;}
.h14{height:42.246400pt;}
.h3{height:48.453333pt;}
.h19{height:50.560000pt;}
.h9{height:56.880000pt;}
.h13{height:59.696000pt;}
.h1f{height:65.312000pt;}
.h1d{height:65.312533pt;}
.h1a{height:67.253333pt;}
.h1e{height:67.253867pt;}
.h4{height:67.413333pt;}
.h1b{height:96.586667pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.x9{left:23.073067pt;}
.xa{left:34.042267pt;}
.x7{left:75.590533pt;}
.x43{left:77.102267pt;}
.x24{left:79.703467pt;}
.x1d{left:81.754000pt;}
.x20{left:84.633733pt;}
.x15{left:86.151867pt;}
.x1a{left:87.063867pt;}
.x18{left:91.101600pt;}
.x1e{left:93.290133pt;}
.x10{left:94.488133pt;}
.x17{left:96.507733pt;}
.x23{left:98.223467pt;}
.x2f{left:99.235333pt;}
.xe{left:100.157467pt;}
.x1f{left:101.529467pt;}
.x11{left:102.495333pt;}
.x19{left:103.914000pt;}
.x12{left:105.555200pt;}
.x1b{left:106.557467pt;}
.x13{left:109.161067pt;}
.x22{left:110.307200pt;}
.x16{left:115.611333pt;}
.xf{left:123.212667pt;}
.x44{left:124.724400pt;}
.xc{left:151.731867pt;}
.x33{left:160.058133pt;}
.x38{left:161.653733pt;}
.x34{left:163.232133pt;}
.x40{left:165.937867pt;}
.x32{left:169.028000pt;}
.x2{left:170.495067pt;}
.x41{left:171.619733pt;}
.x35{left:184.243333pt;}
.x31{left:193.117467pt;}
.x5{left:231.734533pt;}
.x6{left:241.633200pt;}
.x4{left:266.827867pt;}
.x3a{left:276.719200pt;}
.x36{left:279.311467pt;}
.x27{left:281.885333pt;}
.x30{left:286.816933pt;}
.x26{left:288.311200pt;}
.x39{left:290.207067pt;}
.x25{left:293.836533pt;}
.x42{left:298.480667pt;}
.x1c{left:303.672000pt;}
.x37{left:307.228933pt;}
.x28{left:315.142667pt;}
.x21{left:318.395467pt;}
.x3{left:351.443733pt;}
.x8{left:364.923867pt;}
.x14{left:381.100400pt;}
.x1{left:386.181733pt;}
.x2d{left:396.056933pt;}
.x3d{left:398.372933pt;}
.x2e{left:399.314800pt;}
.x29{left:405.122933pt;}
.x2c{left:406.124800pt;}
.x2a{left:412.569067pt;}
.x2b{left:415.664667pt;}
.x3c{left:421.808667pt;}
.x3f{left:423.440800pt;}
.x3b{left:425.696667pt;}
.x3e{left:427.568667pt;}
.xb{left:434.667867pt;}
.xd{left:532.886800pt;}
}




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