
    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_25a8efeabcc3ecdcf539ab48.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_56e9fdc4105535b2607056d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.191000;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_f935b7754d4501fd24895876.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.175000;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_af6c1efadbafd5d6bbe72295.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.844000;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_743cc44923a6ffff6463ab4a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.928000;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_1aad30552a4a34eacb95806c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.009000;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_59e0c961967eadeaa33f1402.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773000;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b22d0bc24e05f02927867e53.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_19cd462cd5190fe2681a8b31.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.988000;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_b70cb6ba16d96beb70109da7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.580000;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);}
.v4{vertical-align:-19.530000px;}
.v6{vertical-align:-17.358000px;}
.v3{vertical-align:-13.986000px;}
.v7{vertical-align:-11.760000px;}
.v8{vertical-align:-10.464000px;}
.v9{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.082000px;}
.vb{vertical-align:11.760000px;}
.v5{vertical-align:12.912000px;}
.vf{vertical-align:16.068000px;}
.vd{vertical-align:17.358000px;}
.ve{vertical-align:19.530000px;}
.v2{vertical-align:26.040000px;}
.vc{vertical-align:31.230000px;}
.va{vertical-align:49.254000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000355px;}
.ls8{letter-spacing:0.000586px;}
.ls1{letter-spacing:0.002237px;}
.ls9{letter-spacing:0.002285px;}
.ls5{letter-spacing:0.003120px;}
.ls4c{letter-spacing:0.398570px;}
.ls48{letter-spacing:0.508200px;}
.ls6c{letter-spacing:0.535346px;}
.ls6a{letter-spacing:0.541346px;}
.ls3a{letter-spacing:0.548815px;}
.ls38{letter-spacing:0.564600px;}
.ls40{letter-spacing:0.570600px;}
.ls6b{letter-spacing:0.572693px;}
.ls69{letter-spacing:0.578693px;}
.ls77{letter-spacing:0.642088px;}
.ls79{letter-spacing:0.648088px;}
.ls3f{letter-spacing:0.882571px;}
.ls37{letter-spacing:0.888571px;}
.ls71{letter-spacing:0.896918px;}
.ls4a{letter-spacing:0.994483px;}
.ls5f{letter-spacing:1.000483px;}
.ls78{letter-spacing:1.046405px;}
.ls41{letter-spacing:1.131943px;}
.ls39{letter-spacing:1.137943px;}
.ls35{letter-spacing:1.467483px;}
.ls36{letter-spacing:1.553108px;}
.ls45{letter-spacing:1.939625px;}
.ls57{letter-spacing:1.942200px;}
.ls3d{letter-spacing:1.945625px;}
.ls50{letter-spacing:2.598583px;}
.ls4{letter-spacing:2.992800px;}
.ls46{letter-spacing:3.139200px;}
.ls11{letter-spacing:3.436200px;}
.ls44{letter-spacing:4.933200px;}
.ls6d{letter-spacing:6.664200px;}
.ls3e{letter-spacing:6.721200px;}
.ls62{letter-spacing:9.927483px;}
.ls51{letter-spacing:10.712100px;}
.ls61{letter-spacing:12.131108px;}
.ls49{letter-spacing:13.089483px;}
.ls6f{letter-spacing:13.856693px;}
.ls76{letter-spacing:14.047266px;}
.ls75{letter-spacing:14.107042px;}
.ls5d{letter-spacing:14.465695px;}
.ls70{letter-spacing:14.477700px;}
.ls6e{letter-spacing:14.483700px;}
.ls43{letter-spacing:14.577483px;}
.ls3c{letter-spacing:14.583483px;}
.ls55{letter-spacing:14.792100px;}
.ls58{letter-spacing:14.852100px;}
.ls3b{letter-spacing:15.355200px;}
.ls42{letter-spacing:15.361200px;}
.ls34{letter-spacing:15.655334px;}
.ls2b{letter-spacing:15.720983px;}
.ls72{letter-spacing:15.840534px;}
.ls47{letter-spacing:15.927943px;}
.ls2f{letter-spacing:16.199188px;}
.ls4b{letter-spacing:16.242571px;}
.ls74{letter-spacing:16.498066px;}
.ls73{letter-spacing:16.557841px;}
.ls1c{letter-spacing:16.916495px;}
.ls14{letter-spacing:17.036046px;}
.ls13{letter-spacing:17.095822px;}
.ls59{letter-spacing:17.318100px;}
.ls53{letter-spacing:17.319483px;}
.ls4f{letter-spacing:17.325483px;}
.ls15{letter-spacing:17.394700px;}
.ls5a{letter-spacing:17.618100px;}
.ls56{letter-spacing:17.786100px;}
.ls10{letter-spacing:17.872904px;}
.ls52{letter-spacing:18.098725px;}
.ls19{letter-spacing:18.112007px;}
.ls21{letter-spacing:18.171782px;}
.ls4e{letter-spacing:18.512383px;}
.lsa{letter-spacing:18.642600px;}
.ls5b{letter-spacing:18.801943px;}
.ls24{letter-spacing:18.829314px;}
.ls23{letter-spacing:18.889090px;}
.ls20{letter-spacing:18.948865px;}
.ls1f{letter-spacing:19.008641px;}
.ls2c{letter-spacing:19.128192px;}
.ls18{letter-spacing:19.187968px;}
.ls33{letter-spacing:19.367294px;}
.ls32{letter-spacing:19.427070px;}
.ls67{letter-spacing:19.529108px;}
.ls31{letter-spacing:19.606397px;}
.ls30{letter-spacing:19.666172px;}
.ls66{letter-spacing:19.674571px;}
.ls5e{letter-spacing:20.165300px;}
.ls26{letter-spacing:20.323704px;}
.ls2d{letter-spacing:20.622582px;}
.lsd{letter-spacing:20.801909px;}
.lsc{letter-spacing:20.861684px;}
.ls2{letter-spacing:20.873453px;}
.ls2a{letter-spacing:20.921460px;}
.ls5c{letter-spacing:20.949943px;}
.ls25{letter-spacing:20.981236px;}
.ls16{letter-spacing:21.578992px;}
.ls17{letter-spacing:21.638767px;}
.ls1a{letter-spacing:21.997421px;}
.ls1b{letter-spacing:22.057196px;}
.ls28{letter-spacing:22.475626px;}
.ls27{letter-spacing:22.535401px;}
.ls68{letter-spacing:22.595177px;}
.lse{letter-spacing:22.654952px;}
.ls65{letter-spacing:23.099108px;}
.ls60{letter-spacing:23.292571px;}
.lsf{letter-spacing:23.372260px;}
.ls64{letter-spacing:23.520583px;}
.ls29{letter-spacing:24.507996px;}
.ls2e{letter-spacing:24.806874px;}
.ls22{letter-spacing:24.986201px;}
.ls12{letter-spacing:25.225303px;}
.ls63{letter-spacing:25.755483px;}
.ls1e{letter-spacing:25.763284px;}
.ls1d{letter-spacing:25.823059px;}
.lsb{letter-spacing:26.301264px;}
.ls7b{letter-spacing:26.420815px;}
.ls7c{letter-spacing:27.496776px;}
.ls7a{letter-spacing:43.397086px;}
.ls7{letter-spacing:53.705510px;}
.ls6{letter-spacing:56.692800px;}
.ls4d{letter-spacing:78.326100px;}
.ls54{letter-spacing:191.891108px;}
.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;}
}
.ws3{word-spacing:-17.932800px;}
.ws47{word-spacing:-14.943900px;}
.wsb{word-spacing:-13.449600px;}
.wsd9{word-spacing:-11.955150px;}
.wsbf{word-spacing:-11.357400px;}
.wsc0{word-spacing:-4.244068px;}
.ws123{word-spacing:-4.018694px;}
.ws1d{word-spacing:-3.016310px;}
.ws1e{word-spacing:-3.012691px;}
.wsc3{word-spacing:-1.733492px;}
.ws137{word-spacing:-1.554166px;}
.ws14d{word-spacing:-1.494390px;}
.ws12a{word-spacing:-1.434614px;}
.ws120{word-spacing:-1.374839px;}
.ws126{word-spacing:-1.315063px;}
.ws10d{word-spacing:-1.090005px;}
.wsb1{word-spacing:-0.956410px;}
.ws84{word-spacing:-0.896634px;}
.ws14c{word-spacing:-0.836858px;}
.ws139{word-spacing:-0.777083px;}
.ws147{word-spacing:-0.717307px;}
.wsa6{word-spacing:-0.657532px;}
.wscd{word-spacing:-0.597756px;}
.ws90{word-spacing:-0.537980px;}
.wsc8{word-spacing:-0.478205px;}
.wsc1{word-spacing:-0.358654px;}
.ws68{word-spacing:-0.298878px;}
.wsa8{word-spacing:-0.239102px;}
.ws14e{word-spacing:-0.179327px;}
.ws138{word-spacing:-0.119551px;}
.ws5{word-spacing:-0.071731px;}
.ws11a{word-spacing:-0.043600px;}
.ws0{word-spacing:0.000000px;}
.ws12c{word-spacing:0.059776px;}
.wsc9{word-spacing:0.119551px;}
.ws82{word-spacing:0.298878px;}
.ws92{word-spacing:0.358654px;}
.ws107{word-spacing:0.478205px;}
.ws108{word-spacing:0.537980px;}
.ws122{word-spacing:0.597756px;}
.ws121{word-spacing:0.657532px;}
.wsc6{word-spacing:0.717307px;}
.ws1b{word-spacing:0.750893px;}
.ws83{word-spacing:0.777083px;}
.ws66{word-spacing:0.817068px;}
.wsd0{word-spacing:0.836858px;}
.ws101{word-spacing:0.896634px;}
.ws22{word-spacing:0.956410px;}
.wscc{word-spacing:1.016185px;}
.ws11f{word-spacing:1.075961px;}
.ws67{word-spacing:1.135736px;}
.ws10{word-spacing:1.183565px;}
.ws91{word-spacing:1.255288px;}
.ws79{word-spacing:1.315063px;}
.ws125{word-spacing:1.374839px;}
.ws19{word-spacing:1.398758px;}
.wsf3{word-spacing:1.425434px;}
.wsf5{word-spacing:1.434614px;}
.ws25{word-spacing:1.494390px;}
.ws20{word-spacing:1.506355px;}
.ws40{word-spacing:1.554166px;}
.wscf{word-spacing:1.613941px;}
.ws55{word-spacing:1.663974px;}
.ws11e{word-spacing:1.667620px;}
.ws7e{word-spacing:1.671870px;}
.ws86{word-spacing:1.673233px;}
.ws131{word-spacing:1.673717px;}
.wsd3{word-spacing:1.680205px;}
.ws104{word-spacing:1.691467px;}
.ws77{word-spacing:1.699044px;}
.wsc7{word-spacing:1.793268px;}
.ws49{word-spacing:1.853044px;}
.wsa3{word-spacing:1.912819px;}
.ws17{word-spacing:1.936742px;}
.ws1{word-spacing:1.960645px;}
.ws30{word-spacing:1.972595px;}
.ws31{word-spacing:2.032370px;}
.ws45{word-spacing:2.092146px;}
.ws3f{word-spacing:2.151922px;}
.wsc{word-spacing:2.205734px;}
.ws56{word-spacing:2.211697px;}
.ws6f{word-spacing:2.271473px;}
.ws8b{word-spacing:2.391024px;}
.wsee{word-spacing:2.407650px;}
.wsec{word-spacing:2.407950px;}
.ws11b{word-spacing:2.413950px;}
.ws155{word-spacing:2.450533px;}
.ws15e{word-spacing:2.450658px;}
.ws38{word-spacing:2.450800px;}
.ws141{word-spacing:2.453225px;}
.ws145{word-spacing:2.454600px;}
.ws34{word-spacing:2.510575px;}
.wsa9{word-spacing:2.570351px;}
.wsf4{word-spacing:2.673541px;}
.wsc4{word-spacing:2.676925px;}
.ws6b{word-spacing:2.689902px;}
.ws129{word-spacing:2.749678px;}
.wsd6{word-spacing:2.869229px;}
.ws2e{word-spacing:2.929004px;}
.ws2{word-spacing:2.940979px;}
.ws12{word-spacing:2.958912px;}
.ws9d{word-spacing:2.988780px;}
.wsa4{word-spacing:3.048556px;}
.ws4c{word-spacing:3.108331px;}
.ws4d{word-spacing:3.168107px;}
.wse2{word-spacing:3.207560px;}
.wse3{word-spacing:3.213560px;}
.ws65{word-spacing:3.227882px;}
.ws1f{word-spacing:3.227904px;}
.ws11d{word-spacing:3.287658px;}
.ws78{word-spacing:3.347434px;}
.ws76{word-spacing:3.407209px;}
.ws12f{word-spacing:3.466985px;}
.wsae{word-spacing:3.526760px;}
.wscb{word-spacing:3.586536px;}
.wsb8{word-spacing:3.604493px;}
.ws71{word-spacing:3.646312px;}
.ws3b{word-spacing:3.706087px;}
.wsa0{word-spacing:3.765863px;}
.ws124{word-spacing:3.825638px;}
.ws16{word-spacing:3.873485px;}
.ws105{word-spacing:3.885414px;}
.ws6d{word-spacing:3.945190px;}
.wsd1{word-spacing:3.978097px;}
.ws62{word-spacing:4.004965px;}
.ws5a{word-spacing:4.064741px;}
.wsaa{word-spacing:4.124516px;}
.ws1c{word-spacing:4.142477px;}
.ws29{word-spacing:4.184292px;}
.ws14{word-spacing:4.196275px;}
.ws4b{word-spacing:4.244068px;}
.ws69{word-spacing:4.303843px;}
.ws32{word-spacing:4.363619px;}
.wsaf{word-spacing:4.423394px;}
.ws63{word-spacing:4.483170px;}
.wsd2{word-spacing:4.542946px;}
.ws9c{word-spacing:4.602721px;}
.ws80{word-spacing:4.662497px;}
.ws54{word-spacing:4.722272px;}
.ws44{word-spacing:4.782048px;}
.ws15{word-spacing:4.788058px;}
.wsef{word-spacing:4.835555px;}
.ws37{word-spacing:4.841824px;}
.ws42{word-spacing:4.901599px;}
.ws9e{word-spacing:4.961375px;}
.ws6e{word-spacing:5.021150px;}
.ws33{word-spacing:5.080926px;}
.ws94{word-spacing:5.140702px;}
.ws127{word-spacing:5.200477px;}
.ws7f{word-spacing:5.260253px;}
.wsba{word-spacing:5.308087px;}
.ws48{word-spacing:5.320028px;}
.ws9b{word-spacing:5.379804px;}
.ws18{word-spacing:5.433638px;}
.ws73{word-spacing:5.439580px;}
.wsb9{word-spacing:5.487437px;}
.ws12d{word-spacing:5.499355px;}
.wsa7{word-spacing:5.559131px;}
.wsb3{word-spacing:5.618906px;}
.ws87{word-spacing:5.678682px;}
.ws43{word-spacing:5.738458px;}
.wseb{word-spacing:5.755148px;}
.ws8d{word-spacing:5.798233px;}
.ws26{word-spacing:5.858009px;}
.ws27{word-spacing:5.917784px;}
.wse{word-spacing:5.971622px;}
.ws2a{word-spacing:5.977560px;}
.ws3a{word-spacing:6.037336px;}
.ws5c{word-spacing:6.097111px;}
.ws53{word-spacing:6.156887px;}
.ws50{word-spacing:6.216662px;}
.ws15f{word-spacing:6.276438px;}
.ws36{word-spacing:6.336214px;}
.ws35{word-spacing:6.395989px;}
.wsb0{word-spacing:6.515540px;}
.ws11c{word-spacing:6.622110px;}
.wsed{word-spacing:6.628110px;}
.ws46{word-spacing:6.635092px;}
.wsce{word-spacing:6.725948px;}
.wsac{word-spacing:6.754643px;}
.wsc2{word-spacing:6.795367px;}
.ws8a{word-spacing:6.814418px;}
.ws103{word-spacing:6.874194px;}
.ws98{word-spacing:6.933970px;}
.ws58{word-spacing:6.993745px;}
.ws1a{word-spacing:7.047590px;}
.ws4f{word-spacing:7.053521px;}
.ws4e{word-spacing:7.113296px;}
.ws156{word-spacing:7.173072px;}
.ws75{word-spacing:7.232848px;}
.ws8f{word-spacing:7.292623px;}
.wsd4{word-spacing:7.412174px;}
.wsc5{word-spacing:7.443367px;}
.wsab{word-spacing:7.471950px;}
.ws7b{word-spacing:7.531726px;}
.ws7a{word-spacing:7.591501px;}
.ws2b{word-spacing:7.651277px;}
.ws2c{word-spacing:7.711052px;}
.ws13{word-spacing:7.746970px;}
.wsd5{word-spacing:7.770828px;}
.ws28{word-spacing:7.830604px;}
.ws158{word-spacing:7.890379px;}
.ws21{word-spacing:7.962163px;}
.ws39{word-spacing:8.009930px;}
.ws51{word-spacing:8.069706px;}
.ws3e{word-spacing:8.189257px;}
.ws99{word-spacing:8.249033px;}
.ws2d{word-spacing:8.368584px;}
.ws128{word-spacing:8.428360px;}
.ws61{word-spacing:8.488135px;}
.wsad{word-spacing:8.547911px;}
.wsf1{word-spacing:8.607686px;}
.ws11{word-spacing:8.607744px;}
.ws12b{word-spacing:8.667462px;}
.ws93{word-spacing:8.727238px;}
.ws59{word-spacing:8.787013px;}
.ws8e{word-spacing:8.846789px;}
.wsb2{word-spacing:8.906564px;}
.ws8c{word-spacing:8.966340px;}
.ws157{word-spacing:9.026116px;}
.ws57{word-spacing:9.085891px;}
.ws96{word-spacing:9.145667px;}
.ws41{word-spacing:9.205442px;}
.ws133{word-spacing:9.265218px;}
.wsca{word-spacing:9.324994px;}
.wsa1{word-spacing:9.384769px;}
.ws9a{word-spacing:9.444545px;}
.wsa2{word-spacing:9.504320px;}
.wsbe{word-spacing:9.549367px;}
.ws7d{word-spacing:9.564096px;}
.ws106{word-spacing:9.683647px;}
.wsa5{word-spacing:9.743423px;}
.ws88{word-spacing:9.803198px;}
.wsf2{word-spacing:9.857358px;}
.ws89{word-spacing:9.862974px;}
.ws9f{word-spacing:9.922750px;}
.ws102{word-spacing:9.982525px;}
.ws6a{word-spacing:10.042301px;}
.ws7c{word-spacing:10.102076px;}
.ws60{word-spacing:10.161852px;}
.ws6c{word-spacing:10.221628px;}
.ws3c{word-spacing:10.281403px;}
.ws85{word-spacing:10.400954px;}
.ws52{word-spacing:10.460730px;}
.ws70{word-spacing:10.520506px;}
.ws72{word-spacing:10.580281px;}
.ws161{word-spacing:10.640057px;}
.ws5b{word-spacing:10.699832px;}
.ws5e{word-spacing:10.819384px;}
.ws5d{word-spacing:10.879159px;}
.ws148{word-spacing:10.998710px;}
.ws13e{word-spacing:11.178037px;}
.ws24{word-spacing:11.297588px;}
.ws23{word-spacing:11.357364px;}
.ws162{word-spacing:11.476915px;}
.ws160{word-spacing:11.656242px;}
.ws5f{word-spacing:11.775793px;}
.ws95{word-spacing:11.955120px;}
.ws132{word-spacing:12.074671px;}
.ws4a{word-spacing:12.313774px;}
.wsd{word-spacing:12.317971px;}
.wsf0{word-spacing:12.373549px;}
.ws140{word-spacing:12.433325px;}
.ws146{word-spacing:12.612652px;}
.ws64{word-spacing:12.732203px;}
.wsf{word-spacing:12.750221px;}
.ws97{word-spacing:12.851754px;}
.wsd7{word-spacing:14.154898px;}
.ws130{word-spacing:15.302554px;}
.ws74{word-spacing:15.541656px;}
.ws136{word-spacing:16.139412px;}
.ws13f{word-spacing:16.737168px;}
.ws12e{word-spacing:16.907006px;}
.ws81{word-spacing:17.334924px;}
.ws135{word-spacing:17.633802px;}
.ws154{word-spacing:17.693578px;}
.wsb6{word-spacing:18.183859px;}
.wse6{word-spacing:18.650034px;}
.wsb7{word-spacing:19.152230px;}
.ws153{word-spacing:19.187968px;}
.wsb4{word-spacing:19.905275px;}
.ws14f{word-spacing:20.323704px;}
.ws13b{word-spacing:20.562806px;}
.ws8{word-spacing:20.797757px;}
.ws9{word-spacing:20.800810px;}
.ws4{word-spacing:20.801885px;}
.wsa{word-spacing:20.802480px;}
.ws7{word-spacing:20.805850px;}
.ws13a{word-spacing:22.057196px;}
.ws151{word-spacing:23.730913px;}
.ws14a{word-spacing:23.910240px;}
.ws150{word-spacing:25.524181px;}
.ws134{word-spacing:25.583957px;}
.ws13d{word-spacing:26.480591px;}
.ws144{word-spacing:28.034756px;}
.ws13c{word-spacing:28.453186px;}
.ws142{word-spacing:29.768249px;}
.ws143{word-spacing:30.067127px;}
.ws3d{word-spacing:30.186678px;}
.ws152{word-spacing:31.681068px;}
.wsea{word-spacing:34.526473px;}
.wse8{word-spacing:35.103900px;}
.wse9{word-spacing:35.109900px;}
.ws6{word-spacing:35.793869px;}
.ws14b{word-spacing:37.718404px;}
.wsfc{word-spacing:40.411987px;}
.wsfe{word-spacing:40.417987px;}
.wsfb{word-spacing:42.560334px;}
.ws149{word-spacing:45.070802px;}
.wse4{word-spacing:46.441001px;}
.ws15b{word-spacing:51.944996px;}
.ws15a{word-spacing:55.113103px;}
.wsbd{word-spacing:58.914979px;}
.wsff{word-spacing:59.014200px;}
.wsfd{word-spacing:59.020200px;}
.ws159{word-spacing:59.118068px;}
.ws112{word-spacing:61.343818px;}
.ws15c{word-spacing:72.268700px;}
.ws15d{word-spacing:76.452992px;}
.ws10e{word-spacing:89.909568px;}
.ws100{word-spacing:94.277225px;}
.ws116{word-spacing:99.809674px;}
.wsbb{word-spacing:106.735579px;}
.ws10c{word-spacing:106.964861px;}
.wsd8{word-spacing:108.143873px;}
.wsfa{word-spacing:110.419109px;}
.wse1{word-spacing:111.013109px;}
.ws10a{word-spacing:112.398499px;}
.ws115{word-spacing:126.354000px;}
.wse5{word-spacing:127.634525px;}
.ws110{word-spacing:133.916659px;}
.wsb5{word-spacing:133.945430px;}
.ws113{word-spacing:140.072592px;}
.ws118{word-spacing:145.829021px;}
.wsbc{word-spacing:154.556179px;}
.ws109{word-spacing:182.173430px;}
.ws117{word-spacing:192.348481px;}
.ws114{word-spacing:193.020481px;}
.wse7{word-spacing:195.942494px;}
.ws119{word-spacing:217.959795px;}
.ws10f{word-spacing:219.918481px;}
.ws10b{word-spacing:264.168481px;}
.ws111{word-spacing:276.618000px;}
.wsda{word-spacing:345.125992px;}
.wsf6{word-spacing:547.268562px;}
.wsdb{word-spacing:547.868562px;}
.ws2f{word-spacing:699.184500px;}
.wsdc{word-spacing:828.797813px;}
.wsdd{word-spacing:1030.010123px;}
.wsde{word-spacing:1301.875128px;}
.wsf7{word-spacing:1302.475128px;}
.wsdf{word-spacing:1531.492875px;}
.wsf8{word-spacing:1532.086875px;}
.wse0{word-spacing:2032.427932px;}
.wsf9{word-spacing:2033.021932px;}
._4{margin-left:-27.831706px;}
._15{margin-left:-23.204182px;}
._12{margin-left:-21.788348px;}
._8{margin-left:-20.658586px;}
._18{margin-left:-18.554393px;}
._69{margin-left:-7.627408px;}
._7{margin-left:-6.599270px;}
._21{margin-left:-5.379804px;}
._9{margin-left:-3.981082px;}
._5{margin-left:-2.295394px;}
._0{margin-left:-1.004233px;}
._2{width:1.147695px;}
._f{width:2.420928px;}
._3{width:3.586556px;}
._5a{width:4.901560px;}
._5b{width:6.336194px;}
._6{width:7.962173px;}
._5c{width:12.054505px;}
._5d{width:13.558288px;}
._c{width:14.812497px;}
._17{width:16.259020px;}
._19{width:17.311063px;}
._a{width:19.528815px;}
._1b{width:20.801909px;}
._1c{width:22.559323px;}
._e{width:23.617498px;}
._1d{width:24.627547px;}
._b{width:25.768550px;}
._24{width:27.138122px;}
._10{width:29.104934px;}
._1e{width:30.246454px;}
._14{width:31.358342px;}
._1a{width:32.361818px;}
._11{width:34.251644px;}
._d{width:36.098726px;}
._26{width:37.204345px;}
._16{width:38.220530px;}
._68{width:39.224762px;}
._22{width:40.551778px;}
._6a{width:41.555995px;}
._27{width:42.715669px;}
._25{width:43.875290px;}
._1f{width:45.441425px;}
._13{width:48.071551px;}
._66{width:50.151728px;}
._65{width:51.407016px;}
._23{width:52.853593px;}
._6f{width:54.862038px;}
._61{width:57.265237px;}
._62{width:60.947465px;}
._6d{width:64.999999px;}
._60{width:66.614096px;}
._6c{width:70.151750px;}
._5f{width:71.491797px;}
._29{width:74.121610px;}
._6b{width:76.811646px;}
._63{width:78.377963px;}
._55{width:82.825279px;}
._54{width:85.229762px;}
._64{width:86.978477px;}
._70{width:88.878892px;}
._6e{width:90.858912px;}
._2b{width:92.927011px;}
._40{width:95.354276px;}
._45{width:97.184912px;}
._5e{width:104.608892px;}
._72{width:109.040506px;}
._30{width:114.201418px;}
._2d{width:115.869168px;}
._53{width:118.690729px;}
._71{width:120.662421px;}
._3e{width:128.264657px;}
._34{width:134.967600px;}
._58{width:141.740579px;}
._4d{width:143.080659px;}
._51{width:145.005512px;}
._32{width:148.686192px;}
._35{width:152.667274px;}
._37{width:154.442621px;}
._42{width:158.777845px;}
._2c{width:159.822461px;}
._41{width:163.642121px;}
._2a{width:165.256099px;}
._44{width:166.511329px;}
._38{width:168.484003px;}
._3a{width:187.851427px;}
._47{width:190.421629px;}
._2f{width:198.192543px;}
._4b{width:204.781262px;}
._43{width:210.792926px;}
._49{width:226.287079px;}
._48{width:228.691562px;}
._67{width:242.307958px;}
._4e{width:246.419273px;}
._4c{width:247.901712px;}
._3c{width:264.029962px;}
._3f{width:276.904892px;}
._4f{width:280.611002px;}
._50{width:282.189082px;}
._4a{width:286.971142px;}
._46{width:291.801023px;}
._52{width:294.670259px;}
._2e{width:298.956955px;}
._20{width:357.551699px;}
._33{width:387.867764px;}
._39{width:522.507235px;}
._31{width:557.691389px;}
._3d{width:570.172582px;}
._56{width:575.286787px;}
._36{width:641.437561px;}
._3b{width:762.986083px;}
._57{width:812.285675px;}
._59{width:879.999644px;}
._28{width:1009.544114px;}
._1{width:1131.373163px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:37.371600px;}
.fs9{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:43.600200px;}
.fsb{font-size:45.429600px;}
.fsd{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fse{font-size:49.829400px;}
.fs8{font-size:53.798400px;}
.fsf{font-size:56.058000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y51{bottom:82.585500px;}
.y4{bottom:97.125005px;}
.y50{bottom:98.202000px;}
.y80{bottom:123.307500px;}
.y4f{bottom:127.647000px;}
.y1f9{bottom:137.848500px;}
.y22{bottom:139.264499px;}
.y7f{bottom:143.032500px;}
.y173{bottom:143.034000px;}
.y11e{bottom:144.477000px;}
.y19e{bottom:153.237000px;}
.y1f8{bottom:157.575000px;}
.y147{bottom:158.944500px;}
.y4e{bottom:160.762500px;}
.y7e{bottom:162.759000px;}
.y11d{bottom:164.203500px;}
.y19d{bottom:172.963500px;}
.y1f7{bottom:177.301500px;}
.y146{bottom:178.671000px;}
.y4d{bottom:180.487500px;}
.y7d{bottom:182.485500px;}
.y11c{bottom:183.930000px;}
.y19c{bottom:192.690000px;}
.y19{bottom:196.933500px;}
.y1f6{bottom:197.026500px;}
.y145{bottom:198.397500px;}
.ycf{bottom:199.990500px;}
.y4c{bottom:200.214000px;}
.y7c{bottom:202.212000px;}
.ya6{bottom:203.076000px;}
.y11b{bottom:203.656500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y19b{bottom:212.415000px;}
.y1f5{bottom:216.753000px;}
.y144{bottom:218.122500px;}
.y4b{bottom:219.940500px;}
.y7b{bottom:221.937000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.ya5{bottom:222.802500px;}
.y172{bottom:225.555000px;}
.y19a{bottom:232.141500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y1f4{bottom:236.479500px;}
.y143{bottom:237.849000px;}
.y4a{bottom:239.667000px;}
.y7a{bottom:241.663500px;}
.ya4{bottom:242.529000px;}
.y11a{bottom:249.402000px;}
.yce{bottom:251.599500px;}
.y199{bottom:251.868000px;}
.y171{bottom:252.961500px;}
.y1f3{bottom:256.206000px;}
.y142{bottom:257.575500px;}
.y49{bottom:259.392000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1bc{bottom:260.235000px;}
.y170{bottom:260.770500px;}
.y79{bottom:261.390000px;}
.ya3{bottom:262.255500px;}
.y119{bottom:267.484500px;}
.ycd{bottom:271.326000px;}
.y198{bottom:271.594500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y1f2{bottom:275.932500px;}
.y141{bottom:277.302000px;}
.y48{bottom:279.118500px;}
.y78{bottom:281.116500px;}
.ya2{bottom:281.980500px;}
.y16f{bottom:284.194500px;}
.yf4{bottom:284.751000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y118{bottom:285.567000px;}
.ycc{bottom:291.052500px;}
.y197{bottom:291.321000px;}
.y16e{bottom:292.003500px;}
.y1f1{bottom:295.657500px;}
.y140{bottom:297.027000px;}
.y47{bottom:298.845000px;}
.y77{bottom:300.841500px;}
.ya1{bottom:301.707000px;}
.y117{bottom:303.649500px;}
.yf3{bottom:304.477500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.ycb{bottom:310.777500px;}
.y196{bottom:311.046000px;}
.y1bb{bottom:314.977500px;}
.y1f0{bottom:315.384000px;}
.y16d{bottom:315.427500px;}
.y13f{bottom:316.753500px;}
.y46{bottom:318.571500px;}
.y1d4{bottom:320.568000px;}
.ya0{bottom:321.433500px;}
.y116{bottom:321.732000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y16c{bottom:323.236500px;}
.y76{bottom:323.476500px;}
.yf2{bottom:324.204000px;}
.yca{bottom:330.504000px;}
.y195{bottom:330.772500px;}
.y1ba{bottom:334.704000px;}
.y1ef{bottom:335.110500px;}
.y13e{bottom:336.480000px;}
.y45{bottom:338.296500px;}
.y115{bottom:339.814500px;}
.y1d3{bottom:340.294500px;}
.y9f{bottom:341.160000px;}
.y75{bottom:343.203000px;}
.yf1{bottom:343.930500px;}
.y16b{bottom:346.660500px;}
.y10{bottom:348.133500px;}
.y194{bottom:350.499000px;}
.yc9{bottom:350.944500px;}
.y1b9{bottom:354.430500px;}
.y16a{bottom:354.469500px;}
.y1ee{bottom:354.837000px;}
.y13d{bottom:356.206500px;}
.y114{bottom:357.895500px;}
.y1d2{bottom:360.021000px;}
.y9e{bottom:360.885000px;}
.y74{bottom:362.929500px;}
.yf0{bottom:363.655500px;}
.y21e{bottom:367.744500px;}
.y193{bottom:370.225500px;}
.yc8{bottom:370.671000px;}
.y1b8{bottom:374.157000px;}
.y1ed{bottom:374.562000px;}
.y44{bottom:374.826000px;}
.y13c{bottom:375.931500px;}
.y113{bottom:375.978000px;}
.y1d1{bottom:379.747500px;}
.y9d{bottom:380.611500px;}
.y73{bottom:382.654500px;}
.yef{bottom:383.382000px;}
.yf{bottom:386.785499px;}
.y21d{bottom:387.471000px;}
.y192{bottom:389.950500px;}
.yc7{bottom:390.397500px;}
.y168{bottom:393.510000px;}
.y1b7{bottom:393.882000px;}
.y112{bottom:394.060500px;}
.y1ec{bottom:394.288500px;}
.y13b{bottom:395.658000px;}
.y1d0{bottom:399.472500px;}
.y9c{bottom:400.338000px;}
.y72{bottom:402.381000px;}
.yee{bottom:403.108500px;}
.y21c{bottom:407.197500px;}
.ye{bottom:408.044999px;}
.y169{bottom:409.126500px;}
.y191{bottom:409.677000px;}
.yc6{bottom:410.122500px;}
.y111{bottom:412.143000px;}
.y1b6{bottom:413.608500px;}
.y1eb{bottom:414.015000px;}
.y13a{bottom:415.384500px;}
.y1cf{bottom:419.199000px;}
.y9b{bottom:420.064500px;}
.y202{bottom:421.992000px;}
.y71{bottom:422.107500px;}
.yed{bottom:422.835000px;}
.y167{bottom:424.743000px;}
.yc5{bottom:429.849000px;}
.y110{bottom:430.225500px;}
.y21b{bottom:431.406000px;}
.y166{bottom:432.552000px;}
.y1b5{bottom:433.335000px;}
.y1ea{bottom:433.741500px;}
.y139{bottom:435.111000px;}
.y1ce{bottom:438.925500px;}
.y9a{bottom:439.789500px;}
.y201{bottom:440.074500px;}
.y70{bottom:441.834000px;}
.yec{bottom:442.560000px;}
.y190{bottom:447.730500px;}
.y10f{bottom:448.308000px;}
.yc4{bottom:449.575500px;}
.y21a{bottom:451.132500px;}
.y1b4{bottom:453.061500px;}
.y1e9{bottom:453.466500px;}
.y138{bottom:454.836000px;}
.y165{bottom:455.976000px;}
.y200{bottom:458.157000px;}
.y1cd{bottom:458.652000px;}
.y99{bottom:459.516000px;}
.yeb{bottom:462.286500px;}
.y164{bottom:463.785000px;}
.y6f{bottom:464.467500px;}
.y10e{bottom:466.390500px;}
.yc3{bottom:469.302000px;}
.y219{bottom:470.859000px;}
.y1b3{bottom:472.786500px;}
.y1e8{bottom:473.193000px;}
.y137{bottom:474.562500px;}
.y18f{bottom:475.138500px;}
.y1ff{bottom:476.238000px;}
.y98{bottom:479.242500px;}
.yea{bottom:482.013000px;}
.y18e{bottom:482.946000px;}
.y6e{bottom:484.194000px;}
.y10d{bottom:484.471500px;}
.yd{bottom:484.864502px;}
.y163{bottom:487.209000px;}
.yc2{bottom:489.027000px;}
.y218{bottom:490.585500px;}
.y1e7{bottom:492.919500px;}
.y136{bottom:494.289000px;}
.y1fe{bottom:494.320500px;}
.y1cc{bottom:494.541000px;}
.y162{bottom:495.018000px;}
.y43{bottom:497.049000px;}
.y97{bottom:498.969000px;}
.ye9{bottom:501.739500px;}
.y10c{bottom:502.554000px;}
.yc{bottom:502.864502px;}
.y6d{bottom:503.920500px;}
.y18d{bottom:506.371500px;}
.yc1{bottom:508.753500px;}
.y217{bottom:510.310500px;}
.y1e6{bottom:512.646000px;}
.y135{bottom:514.015500px;}
.y18c{bottom:514.179000px;}
.y42{bottom:515.131500px;}
.y1b2{bottom:515.268000px;}
.y161{bottom:518.442000px;}
.y96{bottom:518.694000px;}
.y10b{bottom:520.636500px;}
.yb{bottom:520.864502px;}
.ye8{bottom:521.464500px;}
.y6c{bottom:523.647000px;}
.y160{bottom:526.251000px;}
.yc0{bottom:528.480000px;}
.y216{bottom:530.037000px;}
.y1e5{bottom:532.371000px;}
.y41{bottom:533.214000px;}
.y134{bottom:533.740500px;}
.y1b1{bottom:535.713000px;}
.y18b{bottom:537.604500px;}
.y95{bottom:538.420500px;}
.y10a{bottom:538.719000px;}
.ya{bottom:538.864499px;}
.ye7{bottom:541.191000px;}
.y1cb{bottom:542.344500px;}
.y6b{bottom:543.372000px;}
.y18a{bottom:545.412000px;}
.ybf{bottom:548.206500px;}
.y1fd{bottom:548.568000px;}
.y15f{bottom:549.675000px;}
.y215{bottom:549.763500px;}
.y2f{bottom:551.296500px;}
.y1e4{bottom:552.097500px;}
.y133{bottom:553.467000px;}
.y1b0{bottom:553.794000px;}
.y40{bottom:555.549000px;}
.y9{bottom:556.864499px;}
.y15e{bottom:557.484000px;}
.y94{bottom:558.147000px;}
.ye6{bottom:560.917500px;}
.y1ca{bottom:562.071000px;}
.y6a{bottom:563.098500px;}
.y109{bottom:565.618500px;}
.y1fc{bottom:566.650500px;}
.ybe{bottom:568.647000px;}
.y189{bottom:568.837500px;}
.y2e{bottom:569.379000px;}
.y214{bottom:569.490000px;}
.y1e3{bottom:571.824000px;}
.y1af{bottom:571.876500px;}
.y3f{bottom:573.630000px;}
.y188{bottom:576.645000px;}
.y93{bottom:577.873500px;}
.ye5{bottom:580.644000px;}
.y15d{bottom:580.908000px;}
.y69{bottom:582.825000px;}
.y132{bottom:586.635000px;}
.y2d{bottom:587.460000px;}
.ybd{bottom:588.373500px;}
.y108{bottom:588.562500px;}
.y15c{bottom:588.717000px;}
.y213{bottom:589.215000px;}
.y1ae{bottom:589.959000px;}
.y1e2{bottom:591.550500px;}
.y3e{bottom:591.712500px;}
.y1c9{bottom:592.398000px;}
.y92{bottom:597.598500px;}
.ye4{bottom:600.370500px;}
.y68{bottom:602.551500px;}
.y2c{bottom:605.542500px;}
.y1ad{bottom:608.041500px;}
.ybc{bottom:608.098500px;}
.y212{bottom:608.941500px;}
.y3d{bottom:609.795000px;}
.y131{bottom:610.845000px;}
.y1e1{bottom:611.275500px;}
.y15b{bottom:612.141000px;}
.y186{bottom:615.687000px;}
.y91{bottom:617.325000px;}
.y15a{bottom:619.950000px;}
.ye3{bottom:620.095500px;}
.y2b{bottom:623.625000px;}
.y67{bottom:625.185000px;}
.y1ac{bottom:626.124000px;}
.ybb{bottom:627.825000px;}
.y3c{bottom:627.877500px;}
.y107{bottom:628.114500px;}
.y211{bottom:628.668000px;}
.y1c8{bottom:630.910500px;}
.y1e0{bottom:631.002000px;}
.y187{bottom:631.303500px;}
.y90{bottom:637.917000px;}
.ye2{bottom:643.458000px;}
.y1ab{bottom:644.206500px;}
.y66{bottom:644.911500px;}
.y130{bottom:645.321000px;}
.y8{bottom:645.510000px;}
.y3b{bottom:645.960000px;}
.y185{bottom:646.920000px;}
.yba{bottom:647.551500px;}
.y159{bottom:647.559000px;}
.y106{bottom:647.841000px;}
.y210{bottom:648.394500px;}
.y1c7{bottom:650.637000px;}
.y1df{bottom:650.728500px;}
.y184{bottom:654.727500px;}
.y8f{bottom:657.642000px;}
.y1aa{bottom:662.287500px;}
.ye1{bottom:663.183000px;}
.y3a{bottom:664.042500px;}
.y65{bottom:664.638000px;}
.y7{bottom:666.771000px;}
.yb9{bottom:667.278000px;}
.y105{bottom:667.566000px;}
.y20f{bottom:668.119500px;}
.y158{bottom:668.778000px;}
.y1c6{bottom:670.363500px;}
.y1de{bottom:670.455000px;}
.y8e{bottom:677.368500px;}
.y2a{bottom:677.872500px;}
.y183{bottom:678.153000px;}
.y1a9{bottom:680.370000px;}
.y39{bottom:682.125000px;}
.ye0{bottom:682.909500px;}
.y64{bottom:684.364500px;}
.y12f{bottom:685.273500px;}
.y182{bottom:685.960500px;}
.yb8{bottom:687.003000px;}
.y104{bottom:687.292500px;}
.y20e{bottom:687.846000px;}
.y1c5{bottom:690.090000px;}
.y1dd{bottom:690.181500px;}
.y29{bottom:695.955000px;}
.y38{bottom:700.206000px;}
.y12e{bottom:700.890000px;}
.ydf{bottom:702.636000px;}
.y1a8{bottom:702.637500px;}
.y63{bottom:704.089500px;}
.yb7{bottom:706.729500px;}
.y103{bottom:707.019000px;}
.y20d{bottom:707.572500px;}
.y157{bottom:708.301500px;}
.y181{bottom:709.386000px;}
.y1c4{bottom:709.815000px;}
.y1dc{bottom:709.906500px;}
.y8d{bottom:714.891000px;}
.y12d{bottom:717.103500px;}
.y180{bottom:717.193500px;}
.y37{bottom:718.288500px;}
.y1a7{bottom:720.720000px;}
.yde{bottom:722.362500px;}
.y62{bottom:723.816000px;}
.y6{bottom:726.298500px;}
.yb6{bottom:726.456000px;}
.y102{bottom:726.745500px;}
.y20c{bottom:727.299000px;}
.y156{bottom:728.028000px;}
.y1c3{bottom:729.541500px;}
.y1db{bottom:729.633000px;}
.y12c{bottom:733.318500px;}
.y36{bottom:736.371000px;}
.y17f{bottom:740.619000px;}
.ydd{bottom:742.087500px;}
.y61{bottom:743.542500px;}
.yb5{bottom:746.182500px;}
.y20b{bottom:747.024000px;}
.y155{bottom:747.753000px;}
.y101{bottom:747.915000px;}
.y17e{bottom:748.426500px;}
.y1a6{bottom:748.443000px;}
.y12b{bottom:748.935000px;}
.y1c2{bottom:749.268000px;}
.y1da{bottom:749.359500px;}
.y3{bottom:752.599495px;}
.y35{bottom:754.453500px;}
.ydc{bottom:761.814000px;}
.y60{bottom:763.269000px;}
.y12a{bottom:764.551500px;}
.yb4{bottom:766.623000px;}
.y20a{bottom:766.750500px;}
.y8c{bottom:767.356500px;}
.y154{bottom:767.479500px;}
.y100{bottom:767.641500px;}
.y1c1{bottom:768.994500px;}
.y1d9{bottom:769.086000px;}
.y17d{bottom:771.852000px;}
.y34{bottom:772.536000px;}
.y17c{bottom:779.659500px;}
.y129{bottom:780.168000px;}
.ydb{bottom:781.540500px;}
.y5f{bottom:782.994000px;}
.yb3{bottom:786.348000px;}
.y209{bottom:786.477000px;}
.y8b{bottom:787.081500px;}
.y153{bottom:787.206000px;}
.yff{bottom:787.368000px;}
.y1a5{bottom:787.546500px;}
.y1c0{bottom:788.719500px;}
.y1d8{bottom:788.811000px;}
.y33{bottom:790.618500px;}
.y128{bottom:795.784500px;}
.yda{bottom:801.267000px;}
.y5e{bottom:802.720500px;}
.y17b{bottom:803.085000px;}
.yb2{bottom:806.074500px;}
.y208{bottom:806.203500px;}
.y8a{bottom:806.808000px;}
.y152{bottom:806.932500px;}
.yfe{bottom:807.093000px;}
.y1a4{bottom:807.273000px;}
.y1bf{bottom:808.492500px;}
.y1d7{bottom:808.537500px;}
.y32{bottom:808.701000px;}
.y17a{bottom:810.892500px;}
.y127{bottom:811.401000px;}
.y5d{bottom:822.447000px;}
.yd9{bottom:824.628000px;}
.yb1{bottom:825.801000px;}
.y207{bottom:825.930000px;}
.y89{bottom:826.534500px;}
.y151{bottom:826.657500px;}
.y31{bottom:826.782000px;}
.yfd{bottom:826.819500px;}
.y1a3{bottom:826.998000px;}
.y126{bottom:827.017500px;}
.y1be{bottom:828.217500px;}
.y1d6{bottom:828.264000px;}
.y179{bottom:834.318000px;}
.y178{bottom:842.125500px;}
.y125{bottom:842.634000px;}
.yd8{bottom:844.354500px;}
.y5c{bottom:845.082000px;}
.yb0{bottom:845.527500px;}
.y206{bottom:845.655000px;}
.y88{bottom:846.261000px;}
.y150{bottom:846.384000px;}
.yfc{bottom:846.546000px;}
.y1a2{bottom:846.724500px;}
.y30{bottom:847.854000px;}
.y1bd{bottom:847.944000px;}
.y1d5{bottom:847.990500px;}
.y124{bottom:858.250500px;}
.yd7{bottom:864.081000px;}
.y5b{bottom:864.807000px;}
.yaf{bottom:865.252500px;}
.y205{bottom:865.381500px;}
.y14f{bottom:866.110500px;}
.yfb{bottom:866.272500px;}
.y87{bottom:866.851500px;}
.y1a1{bottom:867.715500px;}
.y177{bottom:869.734500px;}
.y123{bottom:873.867000px;}
.y2{bottom:879.369000px;}
.yd6{bottom:883.806000px;}
.y5a{bottom:884.533500px;}
.yae{bottom:884.979000px;}
.y204{bottom:885.108000px;}
.y14e{bottom:885.837000px;}
.yfa{bottom:885.997500px;}
.y28{bottom:886.251000px;}
.y86{bottom:886.578000px;}
.y1a0{bottom:887.442000px;}
.y122{bottom:889.483500px;}
.y176{bottom:890.953500px;}
.yd5{bottom:903.532500px;}
.y59{bottom:904.260000px;}
.y203{bottom:904.834500px;}
.yad{bottom:905.419500px;}
.y14d{bottom:905.563500px;}
.yf9{bottom:905.724000px;}
.y85{bottom:906.303000px;}
.y19f{bottom:907.168500px;}
.y121{bottom:912.945000px;}
.yd4{bottom:923.259000px;}
.y27{bottom:923.425500px;}
.y58{bottom:923.986500px;}
.yac{bottom:925.146000px;}
.y14c{bottom:925.288500px;}
.yf8{bottom:925.450500px;}
.y84{bottom:926.029500px;}
.y175{bottom:926.895000px;}
.y120{bottom:932.821500px;}
.yd3{bottom:942.985500px;}
.y57{bottom:943.713000px;}
.y1fb{bottom:944.827500px;}
.yab{bottom:944.872500px;}
.yf7{bottom:945.177000px;}
.y83{bottom:945.756000px;}
.y14b{bottom:946.447500px;}
.y174{bottom:946.620000px;}
.y11f{bottom:954.040500px;}
.yd2{bottom:962.712000px;}
.y26{bottom:962.793000px;}
.y56{bottom:963.438000px;}
.yaa{bottom:964.599000px;}
.yf6{bottom:964.902000px;}
.y14a{bottom:966.174000px;}
.y82{bottom:966.346500px;}
.y1{bottom:966.726000px;}
.y1fa{bottom:967.842000px;}
.yd1{bottom:982.437000px;}
.y55{bottom:983.164500px;}
.ya9{bottom:984.324000px;}
.yf5{bottom:984.628500px;}
.y25{bottom:985.806000px;}
.y149{bottom:985.900500px;}
.y81{bottom:986.073000px;}
.yd0{bottom:1002.163500px;}
.ya8{bottom:1004.050500px;}
.y54{bottom:1005.799500px;}
.ya7{bottom:1023.777000px;}
.y148{bottom:1024.524000px;}
.y53{bottom:1025.524500px;}
.y24{bottom:1050.823500px;}
.y52{bottom:1058.740500px;}
.y23{bottom:1066.440000px;}
.h17{height:26.063105px;}
.h8{height:32.130000px;}
.h10{height:37.993262px;}
.h16{height:39.434227px;}
.h9{height:39.648000px;}
.hc{height:43.421105px;}
.h22{height:43.815515px;}
.h1c{height:46.714950px;}
.h3{height:48.195000px;}
.h12{height:48.848947px;}
.h13{height:48.902746px;}
.h14{height:49.226947px;}
.hb{height:54.276245px;}
.h1a{height:54.336020px;}
.h19{height:54.690245px;}
.h18{height:54.696245px;}
.h7{height:56.640000px;}
.h1b{height:56.786820px;}
.h21{height:57.201515px;}
.h6{height:59.472000px;}
.h15{height:60.950746px;}
.h11{height:61.760947px;}
.he{height:65.131930px;}
.hd{height:65.203661px;}
.h2{height:67.968000px;}
.h1e{height:74.651105px;}
.h1f{height:74.657105px;}
.hf{height:74.888947px;}
.h20{height:81.271661px;}
.h5{height:96.288000px;}
.h1d{height:103.530245px;}
.h4{height:119.055004px;}
.ha{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:142.015500px;}
.x5{left:145.318500px;}
.x2f{left:150.982500px;}
.x55{left:155.065500px;}
.x53{left:156.955500px;}
.x8{left:158.152500px;}
.x15{left:171.897000px;}
.x26{left:174.190500px;}
.x6{left:182.682000px;}
.xe{left:189.399000px;}
.x22{left:193.191000px;}
.x35{left:200.727000px;}
.x4{left:203.484001px;}
.x3b{left:223.591500px;}
.x1c{left:231.532500px;}
.x50{left:233.688000px;}
.x30{left:240.204000px;}
.x21{left:243.043500px;}
.xf{left:253.108500px;}
.x34{left:272.980500px;}
.x4b{left:275.583000px;}
.x9{left:282.391500px;}
.x3c{left:284.044500px;}
.x1e{left:287.791500px;}
.x20{left:289.513500px;}
.x39{left:295.395000px;}
.x46{left:301.372500px;}
.x45{left:303.547500px;}
.x4f{left:306.201000px;}
.x4e{left:307.422000px;}
.x36{left:310.074000px;}
.x24{left:316.099500px;}
.x37{left:318.154500px;}
.x1a{left:322.609500px;}
.x2d{left:329.959500px;}
.xa{left:333.319500px;}
.x10{left:336.472500px;}
.xc{left:339.775500px;}
.x4c{left:342.358500px;}
.x3d{left:344.497500px;}
.x2c{left:345.993000px;}
.x1d{left:358.374000px;}
.x3a{left:362.169000px;}
.x56{left:366.352500px;}
.x11{left:369.006000px;}
.x12{left:370.849500px;}
.x4a{left:383.185500px;}
.x4d{left:386.623500px;}
.x2e{left:396.735000px;}
.x7{left:399.624000px;}
.x3e{left:404.950500px;}
.x14{left:414.027000px;}
.x33{left:424.152000px;}
.x13{left:432.286500px;}
.x49{left:437.310000px;}
.x25{left:450.163500px;}
.x3{left:454.959000px;}
.x3f{left:465.403500px;}
.x32{left:469.864500px;}
.x52{left:476.595000px;}
.x2a{left:482.064000px;}
.x29{left:483.351000px;}
.x44{left:505.357500px;}
.x19{left:510.432000px;}
.x16{left:512.401500px;}
.x31{left:520.753500px;}
.x40{left:525.856500px;}
.x48{left:527.116500px;}
.x38{left:536.659500px;}
.x23{left:541.360500px;}
.xb{left:545.542500px;}
.x41{left:586.308000px;}
.x27{left:622.327500px;}
.x17{left:641.947500px;}
.x42{left:646.761000px;}
.x2b{left:652.092000px;}
.x18{left:677.088000px;}
.x28{left:686.416500px;}
.x47{left:687.979500px;}
.x51{left:689.821500px;}
.x1b{left:697.119000px;}
.x43{left:707.214000px;}
.x54{left:708.324000px;}
.x1f{left:727.900500px;}
@media print{
.v4{vertical-align:-17.360000pt;}
.v6{vertical-align:-15.429333pt;}
.v3{vertical-align:-12.432000pt;}
.v7{vertical-align:-10.453333pt;}
.v8{vertical-align:-9.301333pt;}
.v9{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.850667pt;}
.vb{vertical-align:10.453333pt;}
.v5{vertical-align:11.477333pt;}
.vf{vertical-align:14.282667pt;}
.vd{vertical-align:15.429333pt;}
.ve{vertical-align:17.360000pt;}
.v2{vertical-align:23.146667pt;}
.vc{vertical-align:27.760000pt;}
.va{vertical-align:43.781333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000316pt;}
.ls8{letter-spacing:0.000521pt;}
.ls1{letter-spacing:0.001988pt;}
.ls9{letter-spacing:0.002031pt;}
.ls5{letter-spacing:0.002773pt;}
.ls4c{letter-spacing:0.354285pt;}
.ls48{letter-spacing:0.451733pt;}
.ls6c{letter-spacing:0.475863pt;}
.ls6a{letter-spacing:0.481197pt;}
.ls3a{letter-spacing:0.487835pt;}
.ls38{letter-spacing:0.501867pt;}
.ls40{letter-spacing:0.507200pt;}
.ls6b{letter-spacing:0.509060pt;}
.ls69{letter-spacing:0.514393pt;}
.ls77{letter-spacing:0.570745pt;}
.ls79{letter-spacing:0.576078pt;}
.ls3f{letter-spacing:0.784508pt;}
.ls37{letter-spacing:0.789841pt;}
.ls71{letter-spacing:0.797261pt;}
.ls4a{letter-spacing:0.883985pt;}
.ls5f{letter-spacing:0.889318pt;}
.ls78{letter-spacing:0.930138pt;}
.ls41{letter-spacing:1.006172pt;}
.ls39{letter-spacing:1.011505pt;}
.ls35{letter-spacing:1.304429pt;}
.ls36{letter-spacing:1.380541pt;}
.ls45{letter-spacing:1.724111pt;}
.ls57{letter-spacing:1.726400pt;}
.ls3d{letter-spacing:1.729444pt;}
.ls50{letter-spacing:2.309852pt;}
.ls4{letter-spacing:2.660267pt;}
.ls46{letter-spacing:2.790400pt;}
.ls11{letter-spacing:3.054400pt;}
.ls44{letter-spacing:4.385067pt;}
.ls6d{letter-spacing:5.923733pt;}
.ls3e{letter-spacing:5.974400pt;}
.ls62{letter-spacing:8.824429pt;}
.ls51{letter-spacing:9.521867pt;}
.ls61{letter-spacing:10.783207pt;}
.ls49{letter-spacing:11.635096pt;}
.ls6f{letter-spacing:12.317060pt;}
.ls76{letter-spacing:12.486459pt;}
.ls75{letter-spacing:12.539593pt;}
.ls5d{letter-spacing:12.858396pt;}
.ls70{letter-spacing:12.869067pt;}
.ls6e{letter-spacing:12.874400pt;}
.ls43{letter-spacing:12.957762pt;}
.ls3c{letter-spacing:12.963096pt;}
.ls55{letter-spacing:13.148533pt;}
.ls58{letter-spacing:13.201867pt;}
.ls3b{letter-spacing:13.649067pt;}
.ls42{letter-spacing:13.654400pt;}
.ls34{letter-spacing:13.915853pt;}
.ls2b{letter-spacing:13.974207pt;}
.ls72{letter-spacing:14.080475pt;}
.ls47{letter-spacing:14.158172pt;}
.ls2f{letter-spacing:14.399278pt;}
.ls4b{letter-spacing:14.437841pt;}
.ls74{letter-spacing:14.664947pt;}
.ls73{letter-spacing:14.718081pt;}
.ls1c{letter-spacing:15.036884pt;}
.ls14{letter-spacing:15.143152pt;}
.ls13{letter-spacing:15.196286pt;}
.ls59{letter-spacing:15.393867pt;}
.ls53{letter-spacing:15.395096pt;}
.ls4f{letter-spacing:15.400429pt;}
.ls15{letter-spacing:15.461955pt;}
.ls5a{letter-spacing:15.660533pt;}
.ls56{letter-spacing:15.809867pt;}
.ls10{letter-spacing:15.887026pt;}
.ls52{letter-spacing:16.087756pt;}
.ls19{letter-spacing:16.099562pt;}
.ls21{letter-spacing:16.152695pt;}
.ls4e{letter-spacing:16.455452pt;}
.lsa{letter-spacing:16.571200pt;}
.ls5b{letter-spacing:16.712838pt;}
.ls24{letter-spacing:16.737168pt;}
.ls23{letter-spacing:16.790302pt;}
.ls20{letter-spacing:16.843436pt;}
.ls1f{letter-spacing:16.896570pt;}
.ls2c{letter-spacing:17.002837pt;}
.ls18{letter-spacing:17.055971pt;}
.ls33{letter-spacing:17.215373pt;}
.ls32{letter-spacing:17.268507pt;}
.ls67{letter-spacing:17.359207pt;}
.ls31{letter-spacing:17.427908pt;}
.ls30{letter-spacing:17.481042pt;}
.ls66{letter-spacing:17.488508pt;}
.ls5e{letter-spacing:17.924711pt;}
.ls26{letter-spacing:18.065515pt;}
.ls2d{letter-spacing:18.331184pt;}
.lsd{letter-spacing:18.490586pt;}
.lsc{letter-spacing:18.543719pt;}
.ls2{letter-spacing:18.554180pt;}
.ls2a{letter-spacing:18.596853pt;}
.ls5c{letter-spacing:18.622172pt;}
.ls25{letter-spacing:18.649987pt;}
.ls16{letter-spacing:19.181326pt;}
.ls17{letter-spacing:19.234460pt;}
.ls1a{letter-spacing:19.553263pt;}
.ls1b{letter-spacing:19.606397pt;}
.ls28{letter-spacing:19.978334pt;}
.ls27{letter-spacing:20.031468pt;}
.ls68{letter-spacing:20.084602pt;}
.lse{letter-spacing:20.137735pt;}
.ls65{letter-spacing:20.532541pt;}
.ls60{letter-spacing:20.704508pt;}
.lsf{letter-spacing:20.775342pt;}
.ls64{letter-spacing:20.907185pt;}
.ls29{letter-spacing:21.784885pt;}
.ls2e{letter-spacing:22.050555pt;}
.ls22{letter-spacing:22.209956pt;}
.ls12{letter-spacing:22.422492pt;}
.ls63{letter-spacing:22.893762pt;}
.ls1e{letter-spacing:22.900697pt;}
.ls1d{letter-spacing:22.953830pt;}
.lsb{letter-spacing:23.378901pt;}
.ls7b{letter-spacing:23.485169pt;}
.ls7c{letter-spacing:24.441579pt;}
.ls7a{letter-spacing:38.575187pt;}
.ls7{letter-spacing:47.738231pt;}
.ls6{letter-spacing:50.393600pt;}
.ls4d{letter-spacing:69.623200pt;}
.ls54{letter-spacing:170.569874pt;}
.ws3{word-spacing:-15.940267pt;}
.ws47{word-spacing:-13.283467pt;}
.wsb{word-spacing:-11.955200pt;}
.wsd9{word-spacing:-10.626800pt;}
.wsbf{word-spacing:-10.095467pt;}
.wsc0{word-spacing:-3.772505pt;}
.ws123{word-spacing:-3.572173pt;}
.ws1d{word-spacing:-2.681165pt;}
.ws1e{word-spacing:-2.677948pt;}
.wsc3{word-spacing:-1.540882pt;}
.ws137{word-spacing:-1.381481pt;}
.ws14d{word-spacing:-1.328347pt;}
.ws12a{word-spacing:-1.275213pt;}
.ws120{word-spacing:-1.222079pt;}
.ws126{word-spacing:-1.168945pt;}
.ws10d{word-spacing:-0.968893pt;}
.wsb1{word-spacing:-0.850142pt;}
.ws84{word-spacing:-0.797008pt;}
.ws14c{word-spacing:-0.743874pt;}
.ws139{word-spacing:-0.690740pt;}
.ws147{word-spacing:-0.637606pt;}
.wsa6{word-spacing:-0.584473pt;}
.wscd{word-spacing:-0.531339pt;}
.ws90{word-spacing:-0.478205pt;}
.wsc8{word-spacing:-0.425071pt;}
.wsc1{word-spacing:-0.318803pt;}
.ws68{word-spacing:-0.265669pt;}
.wsa8{word-spacing:-0.212535pt;}
.ws14e{word-spacing:-0.159402pt;}
.ws138{word-spacing:-0.106268pt;}
.ws5{word-spacing:-0.063761pt;}
.ws11a{word-spacing:-0.038756pt;}
.ws0{word-spacing:0.000000pt;}
.ws12c{word-spacing:0.053134pt;}
.wsc9{word-spacing:0.106268pt;}
.ws82{word-spacing:0.265669pt;}
.ws92{word-spacing:0.318803pt;}
.ws107{word-spacing:0.425071pt;}
.ws108{word-spacing:0.478205pt;}
.ws122{word-spacing:0.531339pt;}
.ws121{word-spacing:0.584473pt;}
.wsc6{word-spacing:0.637606pt;}
.ws1b{word-spacing:0.667460pt;}
.ws83{word-spacing:0.690740pt;}
.ws66{word-spacing:0.726283pt;}
.wsd0{word-spacing:0.743874pt;}
.ws101{word-spacing:0.797008pt;}
.ws22{word-spacing:0.850142pt;}
.wscc{word-spacing:0.903276pt;}
.ws11f{word-spacing:0.956410pt;}
.ws67{word-spacing:1.009543pt;}
.ws10{word-spacing:1.052058pt;}
.ws91{word-spacing:1.115811pt;}
.ws79{word-spacing:1.168945pt;}
.ws125{word-spacing:1.222079pt;}
.ws19{word-spacing:1.243341pt;}
.wsf3{word-spacing:1.267053pt;}
.wsf5{word-spacing:1.275213pt;}
.ws25{word-spacing:1.328347pt;}
.ws20{word-spacing:1.338982pt;}
.ws40{word-spacing:1.381481pt;}
.wscf{word-spacing:1.434614pt;}
.ws55{word-spacing:1.479088pt;}
.ws11e{word-spacing:1.482329pt;}
.ws7e{word-spacing:1.486107pt;}
.ws86{word-spacing:1.487318pt;}
.ws131{word-spacing:1.487748pt;}
.wsd3{word-spacing:1.493516pt;}
.ws104{word-spacing:1.503526pt;}
.ws77{word-spacing:1.510261pt;}
.wsc7{word-spacing:1.594016pt;}
.ws49{word-spacing:1.647150pt;}
.wsa3{word-spacing:1.700284pt;}
.ws17{word-spacing:1.721549pt;}
.ws1{word-spacing:1.742795pt;}
.ws30{word-spacing:1.753418pt;}
.ws31{word-spacing:1.806551pt;}
.ws45{word-spacing:1.859685pt;}
.ws3f{word-spacing:1.912819pt;}
.wsc{word-spacing:1.960653pt;}
.ws56{word-spacing:1.965953pt;}
.ws6f{word-spacing:2.019087pt;}
.ws8b{word-spacing:2.125355pt;}
.wsee{word-spacing:2.140133pt;}
.wsec{word-spacing:2.140400pt;}
.ws11b{word-spacing:2.145733pt;}
.ws155{word-spacing:2.178252pt;}
.ws15e{word-spacing:2.178363pt;}
.ws38{word-spacing:2.178489pt;}
.ws141{word-spacing:2.180644pt;}
.ws145{word-spacing:2.181867pt;}
.ws34{word-spacing:2.231622pt;}
.wsa9{word-spacing:2.284756pt;}
.wsf4{word-spacing:2.376481pt;}
.wsc4{word-spacing:2.379489pt;}
.ws6b{word-spacing:2.391024pt;}
.ws129{word-spacing:2.444158pt;}
.wsd6{word-spacing:2.550426pt;}
.ws2e{word-spacing:2.603559pt;}
.ws2{word-spacing:2.614204pt;}
.ws12{word-spacing:2.630144pt;}
.ws9d{word-spacing:2.656693pt;}
.wsa4{word-spacing:2.709827pt;}
.ws4c{word-spacing:2.762961pt;}
.ws4d{word-spacing:2.816095pt;}
.wse2{word-spacing:2.851164pt;}
.wse3{word-spacing:2.856498pt;}
.ws65{word-spacing:2.869229pt;}
.ws1f{word-spacing:2.869248pt;}
.ws11d{word-spacing:2.922363pt;}
.ws78{word-spacing:2.975497pt;}
.ws76{word-spacing:3.028630pt;}
.ws12f{word-spacing:3.081764pt;}
.wsae{word-spacing:3.134898pt;}
.wscb{word-spacing:3.188032pt;}
.wsb8{word-spacing:3.203994pt;}
.ws71{word-spacing:3.241166pt;}
.ws3b{word-spacing:3.294300pt;}
.wsa0{word-spacing:3.347434pt;}
.ws124{word-spacing:3.400567pt;}
.ws16{word-spacing:3.443098pt;}
.ws105{word-spacing:3.453701pt;}
.ws6d{word-spacing:3.506835pt;}
.wsd1{word-spacing:3.536086pt;}
.ws62{word-spacing:3.559969pt;}
.ws5a{word-spacing:3.613103pt;}
.wsaa{word-spacing:3.666237pt;}
.ws1c{word-spacing:3.682202pt;}
.ws29{word-spacing:3.719371pt;}
.ws14{word-spacing:3.730022pt;}
.ws4b{word-spacing:3.772505pt;}
.ws69{word-spacing:3.825638pt;}
.ws32{word-spacing:3.878772pt;}
.wsaf{word-spacing:3.931906pt;}
.ws63{word-spacing:3.985040pt;}
.wsd2{word-spacing:4.038174pt;}
.ws9c{word-spacing:4.091308pt;}
.ws80{word-spacing:4.144442pt;}
.ws54{word-spacing:4.197575pt;}
.ws44{word-spacing:4.250709pt;}
.ws15{word-spacing:4.256051pt;}
.wsef{word-spacing:4.298271pt;}
.ws37{word-spacing:4.303843pt;}
.ws42{word-spacing:4.356977pt;}
.ws9e{word-spacing:4.410111pt;}
.ws6e{word-spacing:4.463245pt;}
.ws33{word-spacing:4.516379pt;}
.ws94{word-spacing:4.569513pt;}
.ws127{word-spacing:4.622646pt;}
.ws7f{word-spacing:4.675780pt;}
.wsba{word-spacing:4.718299pt;}
.ws48{word-spacing:4.728914pt;}
.ws9b{word-spacing:4.782048pt;}
.ws18{word-spacing:4.829901pt;}
.ws73{word-spacing:4.835182pt;}
.wsb9{word-spacing:4.877722pt;}
.ws12d{word-spacing:4.888316pt;}
.wsa7{word-spacing:4.941450pt;}
.wsb3{word-spacing:4.994583pt;}
.ws87{word-spacing:5.047717pt;}
.ws43{word-spacing:5.100851pt;}
.wseb{word-spacing:5.115687pt;}
.ws8d{word-spacing:5.153985pt;}
.ws26{word-spacing:5.207119pt;}
.ws27{word-spacing:5.260253pt;}
.wse{word-spacing:5.308109pt;}
.ws2a{word-spacing:5.313387pt;}
.ws3a{word-spacing:5.366521pt;}
.ws5c{word-spacing:5.419654pt;}
.ws53{word-spacing:5.472788pt;}
.ws50{word-spacing:5.525922pt;}
.ws15f{word-spacing:5.579056pt;}
.ws36{word-spacing:5.632190pt;}
.ws35{word-spacing:5.685324pt;}
.wsb0{word-spacing:5.791591pt;}
.ws11c{word-spacing:5.886320pt;}
.wsed{word-spacing:5.891653pt;}
.ws46{word-spacing:5.897859pt;}
.wsce{word-spacing:5.978621pt;}
.wsac{word-spacing:6.004127pt;}
.wsc2{word-spacing:6.040326pt;}
.ws8a{word-spacing:6.057261pt;}
.ws103{word-spacing:6.110395pt;}
.ws98{word-spacing:6.163529pt;}
.ws58{word-spacing:6.216662pt;}
.ws1a{word-spacing:6.264525pt;}
.ws4f{word-spacing:6.269796pt;}
.ws4e{word-spacing:6.322930pt;}
.ws156{word-spacing:6.376064pt;}
.ws75{word-spacing:6.429198pt;}
.ws8f{word-spacing:6.482332pt;}
.wsd4{word-spacing:6.588599pt;}
.wsc5{word-spacing:6.616326pt;}
.wsab{word-spacing:6.641733pt;}
.ws7b{word-spacing:6.694867pt;}
.ws7a{word-spacing:6.748001pt;}
.ws2b{word-spacing:6.801135pt;}
.ws2c{word-spacing:6.854269pt;}
.ws13{word-spacing:6.886195pt;}
.wsd5{word-spacing:6.907403pt;}
.ws28{word-spacing:6.960537pt;}
.ws158{word-spacing:7.013670pt;}
.ws21{word-spacing:7.077478pt;}
.ws39{word-spacing:7.119938pt;}
.ws51{word-spacing:7.173072pt;}
.ws3e{word-spacing:7.279340pt;}
.ws99{word-spacing:7.332474pt;}
.ws2d{word-spacing:7.438741pt;}
.ws128{word-spacing:7.491875pt;}
.ws61{word-spacing:7.545009pt;}
.wsad{word-spacing:7.598143pt;}
.wsf1{word-spacing:7.651277pt;}
.ws11{word-spacing:7.651328pt;}
.ws12b{word-spacing:7.704411pt;}
.ws93{word-spacing:7.757545pt;}
.ws59{word-spacing:7.810678pt;}
.ws8e{word-spacing:7.863812pt;}
.wsb2{word-spacing:7.916946pt;}
.ws8c{word-spacing:7.970080pt;}
.ws157{word-spacing:8.023214pt;}
.ws57{word-spacing:8.076348pt;}
.ws96{word-spacing:8.129482pt;}
.ws41{word-spacing:8.182615pt;}
.ws133{word-spacing:8.235749pt;}
.wsca{word-spacing:8.288883pt;}
.wsa1{word-spacing:8.342017pt;}
.ws9a{word-spacing:8.395151pt;}
.wsa2{word-spacing:8.448285pt;}
.wsbe{word-spacing:8.488326pt;}
.ws7d{word-spacing:8.501419pt;}
.ws106{word-spacing:8.607686pt;}
.wsa5{word-spacing:8.660820pt;}
.ws88{word-spacing:8.713954pt;}
.wsf2{word-spacing:8.762096pt;}
.ws89{word-spacing:8.767088pt;}
.ws9f{word-spacing:8.820222pt;}
.ws102{word-spacing:8.873356pt;}
.ws6a{word-spacing:8.926490pt;}
.ws7c{word-spacing:8.979623pt;}
.ws60{word-spacing:9.032757pt;}
.ws6c{word-spacing:9.085891pt;}
.ws3c{word-spacing:9.139025pt;}
.ws85{word-spacing:9.245293pt;}
.ws52{word-spacing:9.298427pt;}
.ws70{word-spacing:9.351561pt;}
.ws72{word-spacing:9.404694pt;}
.ws161{word-spacing:9.457828pt;}
.ws5b{word-spacing:9.510962pt;}
.ws5e{word-spacing:9.617230pt;}
.ws5d{word-spacing:9.670364pt;}
.ws148{word-spacing:9.776631pt;}
.ws13e{word-spacing:9.936033pt;}
.ws24{word-spacing:10.042301pt;}
.ws23{word-spacing:10.095435pt;}
.ws162{word-spacing:10.201702pt;}
.ws160{word-spacing:10.361104pt;}
.ws5f{word-spacing:10.467372pt;}
.ws95{word-spacing:10.626773pt;}
.ws132{word-spacing:10.733041pt;}
.ws4a{word-spacing:10.945577pt;}
.wsd{word-spacing:10.949308pt;}
.wsf0{word-spacing:10.998710pt;}
.ws140{word-spacing:11.051844pt;}
.ws146{word-spacing:11.211246pt;}
.ws64{word-spacing:11.317514pt;}
.wsf{word-spacing:11.333530pt;}
.ws97{word-spacing:11.423781pt;}
.wsd7{word-spacing:12.582131pt;}
.ws130{word-spacing:13.602270pt;}
.ws74{word-spacing:13.814805pt;}
.ws136{word-spacing:14.346144pt;}
.ws13f{word-spacing:14.877483pt;}
.ws12e{word-spacing:15.028450pt;}
.ws81{word-spacing:15.408821pt;}
.ws135{word-spacing:15.674491pt;}
.ws154{word-spacing:15.727625pt;}
.wsb6{word-spacing:16.163430pt;}
.wse6{word-spacing:16.577808pt;}
.wsb7{word-spacing:17.024205pt;}
.ws153{word-spacing:17.055971pt;}
.wsb4{word-spacing:17.693578pt;}
.ws14f{word-spacing:18.065515pt;}
.ws13b{word-spacing:18.278050pt;}
.ws8{word-spacing:18.486895pt;}
.ws9{word-spacing:18.489609pt;}
.ws4{word-spacing:18.490564pt;}
.wsa{word-spacing:18.491093pt;}
.ws7{word-spacing:18.494089pt;}
.ws13a{word-spacing:19.606397pt;}
.ws151{word-spacing:21.094145pt;}
.ws14a{word-spacing:21.253547pt;}
.ws150{word-spacing:22.688161pt;}
.ws134{word-spacing:22.741295pt;}
.ws13d{word-spacing:23.538303pt;}
.ws144{word-spacing:24.919783pt;}
.ws13c{word-spacing:25.291721pt;}
.ws142{word-spacing:26.460666pt;}
.ws143{word-spacing:26.726335pt;}
.ws3d{word-spacing:26.832603pt;}
.ws152{word-spacing:28.160949pt;}
.wsea{word-spacing:30.690198pt;}
.wse8{word-spacing:31.203467pt;}
.wse9{word-spacing:31.208800pt;}
.ws6{word-spacing:31.816772pt;}
.ws14b{word-spacing:33.527470pt;}
.wsfc{word-spacing:35.921766pt;}
.wsfe{word-spacing:35.927099pt;}
.wsfb{word-spacing:37.831408pt;}
.ws149{word-spacing:40.062935pt;}
.wse4{word-spacing:41.280890pt;}
.ws15b{word-spacing:46.173330pt;}
.ws15a{word-spacing:48.989425pt;}
.wsbd{word-spacing:52.368870pt;}
.wsff{word-spacing:52.457067pt;}
.wsfd{word-spacing:52.462400pt;}
.ws159{word-spacing:52.549394pt;}
.ws112{word-spacing:54.527838pt;}
.ws15c{word-spacing:64.238845pt;}
.ws15d{word-spacing:67.958215pt;}
.ws10e{word-spacing:79.919616pt;}
.ws100{word-spacing:83.801978pt;}
.ws116{word-spacing:88.719710pt;}
.wsbb{word-spacing:94.876070pt;}
.ws10c{word-spacing:95.079876pt;}
.wsd8{word-spacing:96.127887pt;}
.wsfa{word-spacing:98.150319pt;}
.wse1{word-spacing:98.678319pt;}
.ws10a{word-spacing:99.909777pt;}
.ws115{word-spacing:112.314667pt;}
.wse5{word-spacing:113.452911pt;}
.ws110{word-spacing:119.037030pt;}
.wsb5{word-spacing:119.062605pt;}
.ws113{word-spacing:124.508971pt;}
.ws118{word-spacing:129.625796pt;}
.wsbc{word-spacing:137.383270pt;}
.ws109{word-spacing:161.931938pt;}
.ws117{word-spacing:170.976427pt;}
.ws114{word-spacing:171.573761pt;}
.wse7{word-spacing:174.171106pt;}
.ws119{word-spacing:193.742040pt;}
.ws10f{word-spacing:195.483094pt;}
.ws10b{word-spacing:234.816427pt;}
.ws111{word-spacing:245.882667pt;}
.wsda{word-spacing:306.778660pt;}
.wsf6{word-spacing:486.460944pt;}
.wsdb{word-spacing:486.994277pt;}
.ws2f{word-spacing:621.497333pt;}
.wsdc{word-spacing:736.709167pt;}
.wsdd{word-spacing:915.564554pt;}
.wsde{word-spacing:1157.222336pt;}
.wsf7{word-spacing:1157.755669pt;}
.wsdf{word-spacing:1361.327000pt;}
.wsf8{word-spacing:1361.855000pt;}
.wse0{word-spacing:1806.602606pt;}
.wsf9{word-spacing:1807.130606pt;}
._4{margin-left:-24.739294pt;}
._15{margin-left:-20.625940pt;}
._12{margin-left:-19.367420pt;}
._8{margin-left:-18.363187pt;}
._18{margin-left:-16.492794pt;}
._69{margin-left:-6.779918pt;}
._7{margin-left:-5.866018pt;}
._21{margin-left:-4.782048pt;}
._9{margin-left:-3.538739pt;}
._5{margin-left:-2.040350pt;}
._0{margin-left:-0.892651pt;}
._2{width:1.020173pt;}
._f{width:2.151936pt;}
._3{width:3.188050pt;}
._5a{width:4.356942pt;}
._5b{width:5.632172pt;}
._6{width:7.077487pt;}
._5c{width:10.715115pt;}
._5d{width:12.051811pt;}
._c{width:13.166664pt;}
._17{width:14.452462pt;}
._19{width:15.387611pt;}
._a{width:17.358947pt;}
._1b{width:18.490586pt;}
._1c{width:20.052731pt;}
._e{width:20.993331pt;}
._1d{width:21.891153pt;}
._b{width:22.905378pt;}
._24{width:24.122775pt;}
._10{width:25.871053pt;}
._1e{width:26.885737pt;}
._14{width:27.874082pt;}
._1a{width:28.766060pt;}
._11{width:30.445906pt;}
._d{width:32.087757pt;}
._26{width:33.070529pt;}
._16{width:33.973804pt;}
._68{width:34.866455pt;}
._22{width:36.046025pt;}
._6a{width:36.938662pt;}
._27{width:37.969483pt;}
._25{width:39.000258pt;}
._1f{width:40.392378pt;}
._13{width:42.730268pt;}
._66{width:44.579314pt;}
._65{width:45.695125pt;}
._23{width:46.980972pt;}
._6f{width:48.766256pt;}
._61{width:50.902433pt;}
._62{width:54.175524pt;}
._6d{width:57.777777pt;}
._60{width:59.212530pt;}
._6c{width:62.357111pt;}
._5f{width:63.548264pt;}
._29{width:65.885875pt;}
._6b{width:68.277019pt;}
._63{width:69.669301pt;}
._55{width:73.622470pt;}
._54{width:75.759789pt;}
._64{width:77.314202pt;}
._70{width:79.003460pt;}
._6e{width:80.763477pt;}
._2b{width:82.601788pt;}
._40{width:84.759357pt;}
._45{width:86.386589pt;}
._5e{width:92.985682pt;}
._72{width:96.924894pt;}
._30{width:101.512371pt;}
._2d{width:102.994816pt;}
._53{width:105.502870pt;}
._71{width:107.255485pt;}
._3e{width:114.013028pt;}
._34{width:119.971200pt;}
._58{width:125.991626pt;}
._4d{width:127.182808pt;}
._51{width:128.893789pt;}
._32{width:132.165504pt;}
._35{width:135.704243pt;}
._37{width:137.282330pt;}
._42{width:141.135862pt;}
._2c{width:142.064410pt;}
._41{width:145.459663pt;}
._2a{width:146.894310pt;}
._44{width:148.010070pt;}
._38{width:149.763558pt;}
._3a{width:166.979046pt;}
._47{width:169.263670pt;}
._2f{width:176.171149pt;}
._4b{width:182.027789pt;}
._43{width:187.371490pt;}
._49{width:201.144070pt;}
._48{width:203.281389pt;}
._67{width:215.384851pt;}
._4e{width:219.039354pt;}
._4c{width:220.357077pt;}
._3c{width:234.693299pt;}
._3f{width:246.137682pt;}
._4f{width:249.432002pt;}
._50{width:250.834740pt;}
._4a{width:255.085460pt;}
._46{width:259.378687pt;}
._52{width:261.929119pt;}
._2e{width:265.739515pt;}
._20{width:317.823733pt;}
._33{width:344.771346pt;}
._39{width:464.450876pt;}
._31{width:495.725679pt;}
._3d{width:506.820073pt;}
._56{width:511.366033pt;}
._36{width:570.166721pt;}
._3b{width:678.209852pt;}
._57{width:722.031711pt;}
._59{width:782.221906pt;}
._28{width:897.372546pt;}
._1{width:1005.665034pt;}
.fsa{font-size:33.219200pt;}
.fs9{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:38.755733pt;}
.fsb{font-size:40.381867pt;}
.fsd{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fse{font-size:44.292800pt;}
.fs8{font-size:47.820800pt;}
.fsf{font-size:49.829333pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y51{bottom:73.409333pt;}
.y4{bottom:86.333337pt;}
.y50{bottom:87.290667pt;}
.y80{bottom:109.606667pt;}
.y4f{bottom:113.464000pt;}
.y1f9{bottom:122.532000pt;}
.y22{bottom:123.790666pt;}
.y7f{bottom:127.140000pt;}
.y173{bottom:127.141333pt;}
.y11e{bottom:128.424000pt;}
.y19e{bottom:136.210667pt;}
.y1f8{bottom:140.066667pt;}
.y147{bottom:141.284000pt;}
.y4e{bottom:142.900000pt;}
.y7e{bottom:144.674667pt;}
.y11d{bottom:145.958667pt;}
.y19d{bottom:153.745333pt;}
.y1f7{bottom:157.601333pt;}
.y146{bottom:158.818667pt;}
.y4d{bottom:160.433333pt;}
.y7d{bottom:162.209333pt;}
.y11c{bottom:163.493333pt;}
.y19c{bottom:171.280000pt;}
.y19{bottom:175.052000pt;}
.y1f6{bottom:175.134667pt;}
.y145{bottom:176.353333pt;}
.ycf{bottom:177.769333pt;}
.y4c{bottom:177.968000pt;}
.y7c{bottom:179.744000pt;}
.ya6{bottom:180.512000pt;}
.y11b{bottom:181.028000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y19b{bottom:188.813333pt;}
.y1f5{bottom:192.669333pt;}
.y144{bottom:193.886667pt;}
.y4b{bottom:195.502667pt;}
.y7b{bottom:197.277333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.ya5{bottom:198.046667pt;}
.y172{bottom:200.493333pt;}
.y19a{bottom:206.348000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y1f4{bottom:210.204000pt;}
.y143{bottom:211.421333pt;}
.y4a{bottom:213.037333pt;}
.y7a{bottom:214.812000pt;}
.ya4{bottom:215.581333pt;}
.y11a{bottom:221.690667pt;}
.yce{bottom:223.644000pt;}
.y199{bottom:223.882667pt;}
.y171{bottom:224.854667pt;}
.y1f3{bottom:227.738667pt;}
.y142{bottom:228.956000pt;}
.y49{bottom:230.570667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1bc{bottom:231.320000pt;}
.y170{bottom:231.796000pt;}
.y79{bottom:232.346667pt;}
.ya3{bottom:233.116000pt;}
.y119{bottom:237.764000pt;}
.ycd{bottom:241.178667pt;}
.y198{bottom:241.417333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y1f2{bottom:245.273333pt;}
.y141{bottom:246.490667pt;}
.y48{bottom:248.105333pt;}
.y78{bottom:249.881333pt;}
.ya2{bottom:250.649333pt;}
.y16f{bottom:252.617333pt;}
.yf4{bottom:253.112000pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y118{bottom:253.837333pt;}
.ycc{bottom:258.713333pt;}
.y197{bottom:258.952000pt;}
.y16e{bottom:259.558667pt;}
.y1f1{bottom:262.806667pt;}
.y140{bottom:264.024000pt;}
.y47{bottom:265.640000pt;}
.y77{bottom:267.414667pt;}
.ya1{bottom:268.184000pt;}
.y117{bottom:269.910667pt;}
.yf3{bottom:270.646667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.ycb{bottom:276.246667pt;}
.y196{bottom:276.485333pt;}
.y1bb{bottom:279.980000pt;}
.y1f0{bottom:280.341333pt;}
.y16d{bottom:280.380000pt;}
.y13f{bottom:281.558667pt;}
.y46{bottom:283.174667pt;}
.y1d4{bottom:284.949333pt;}
.ya0{bottom:285.718667pt;}
.y116{bottom:285.984000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y16c{bottom:287.321333pt;}
.y76{bottom:287.534667pt;}
.yf2{bottom:288.181333pt;}
.yca{bottom:293.781333pt;}
.y195{bottom:294.020000pt;}
.y1ba{bottom:297.514667pt;}
.y1ef{bottom:297.876000pt;}
.y13e{bottom:299.093333pt;}
.y45{bottom:300.708000pt;}
.y115{bottom:302.057333pt;}
.y1d3{bottom:302.484000pt;}
.y9f{bottom:303.253333pt;}
.y75{bottom:305.069333pt;}
.yf1{bottom:305.716000pt;}
.y16b{bottom:308.142667pt;}
.y10{bottom:309.452000pt;}
.y194{bottom:311.554667pt;}
.yc9{bottom:311.950667pt;}
.y1b9{bottom:315.049333pt;}
.y16a{bottom:315.084000pt;}
.y1ee{bottom:315.410667pt;}
.y13d{bottom:316.628000pt;}
.y114{bottom:318.129333pt;}
.y1d2{bottom:320.018667pt;}
.y9e{bottom:320.786667pt;}
.y74{bottom:322.604000pt;}
.yf0{bottom:323.249333pt;}
.y21e{bottom:326.884000pt;}
.y193{bottom:329.089333pt;}
.yc8{bottom:329.485333pt;}
.y1b8{bottom:332.584000pt;}
.y1ed{bottom:332.944000pt;}
.y44{bottom:333.178667pt;}
.y13c{bottom:334.161333pt;}
.y113{bottom:334.202667pt;}
.y1d1{bottom:337.553333pt;}
.y9d{bottom:338.321333pt;}
.y73{bottom:340.137333pt;}
.yef{bottom:340.784000pt;}
.yf{bottom:343.809333pt;}
.y21d{bottom:344.418667pt;}
.y192{bottom:346.622667pt;}
.yc7{bottom:347.020000pt;}
.y168{bottom:349.786667pt;}
.y1b7{bottom:350.117333pt;}
.y112{bottom:350.276000pt;}
.y1ec{bottom:350.478667pt;}
.y13b{bottom:351.696000pt;}
.y1d0{bottom:355.086667pt;}
.y9c{bottom:355.856000pt;}
.y72{bottom:357.672000pt;}
.yee{bottom:358.318667pt;}
.y21c{bottom:361.953333pt;}
.ye{bottom:362.706666pt;}
.y169{bottom:363.668000pt;}
.y191{bottom:364.157333pt;}
.yc6{bottom:364.553333pt;}
.y111{bottom:366.349333pt;}
.y1b6{bottom:367.652000pt;}
.y1eb{bottom:368.013333pt;}
.y13a{bottom:369.230667pt;}
.y1cf{bottom:372.621333pt;}
.y9b{bottom:373.390667pt;}
.y202{bottom:375.104000pt;}
.y71{bottom:375.206667pt;}
.yed{bottom:375.853333pt;}
.y167{bottom:377.549333pt;}
.yc5{bottom:382.088000pt;}
.y110{bottom:382.422667pt;}
.y21b{bottom:383.472000pt;}
.y166{bottom:384.490667pt;}
.y1b5{bottom:385.186667pt;}
.y1ea{bottom:385.548000pt;}
.y139{bottom:386.765333pt;}
.y1ce{bottom:390.156000pt;}
.y9a{bottom:390.924000pt;}
.y201{bottom:391.177333pt;}
.y70{bottom:392.741333pt;}
.yec{bottom:393.386667pt;}
.y190{bottom:397.982667pt;}
.y10f{bottom:398.496000pt;}
.yc4{bottom:399.622667pt;}
.y21a{bottom:401.006667pt;}
.y1b4{bottom:402.721333pt;}
.y1e9{bottom:403.081333pt;}
.y138{bottom:404.298667pt;}
.y165{bottom:405.312000pt;}
.y200{bottom:407.250667pt;}
.y1cd{bottom:407.690667pt;}
.y99{bottom:408.458667pt;}
.yeb{bottom:410.921333pt;}
.y164{bottom:412.253333pt;}
.y6f{bottom:412.860000pt;}
.y10e{bottom:414.569333pt;}
.yc3{bottom:417.157333pt;}
.y219{bottom:418.541333pt;}
.y1b3{bottom:420.254667pt;}
.y1e8{bottom:420.616000pt;}
.y137{bottom:421.833333pt;}
.y18f{bottom:422.345333pt;}
.y1ff{bottom:423.322667pt;}
.y98{bottom:425.993333pt;}
.yea{bottom:428.456000pt;}
.y18e{bottom:429.285333pt;}
.y6e{bottom:430.394667pt;}
.y10d{bottom:430.641333pt;}
.yd{bottom:430.990669pt;}
.y163{bottom:433.074667pt;}
.yc2{bottom:434.690667pt;}
.y218{bottom:436.076000pt;}
.y1e7{bottom:438.150667pt;}
.y136{bottom:439.368000pt;}
.y1fe{bottom:439.396000pt;}
.y1cc{bottom:439.592000pt;}
.y162{bottom:440.016000pt;}
.y43{bottom:441.821333pt;}
.y97{bottom:443.528000pt;}
.ye9{bottom:445.990667pt;}
.y10c{bottom:446.714667pt;}
.yc{bottom:446.990669pt;}
.y6d{bottom:447.929333pt;}
.y18d{bottom:450.108000pt;}
.yc1{bottom:452.225333pt;}
.y217{bottom:453.609333pt;}
.y1e6{bottom:455.685333pt;}
.y135{bottom:456.902667pt;}
.y18c{bottom:457.048000pt;}
.y42{bottom:457.894667pt;}
.y1b2{bottom:458.016000pt;}
.y161{bottom:460.837333pt;}
.y96{bottom:461.061333pt;}
.y10b{bottom:462.788000pt;}
.yb{bottom:462.990669pt;}
.ye8{bottom:463.524000pt;}
.y6c{bottom:465.464000pt;}
.y160{bottom:467.778667pt;}
.yc0{bottom:469.760000pt;}
.y216{bottom:471.144000pt;}
.y1e5{bottom:473.218667pt;}
.y41{bottom:473.968000pt;}
.y134{bottom:474.436000pt;}
.y1b1{bottom:476.189333pt;}
.y18b{bottom:477.870667pt;}
.y95{bottom:478.596000pt;}
.y10a{bottom:478.861333pt;}
.ya{bottom:478.990666pt;}
.ye7{bottom:481.058667pt;}
.y1cb{bottom:482.084000pt;}
.y6b{bottom:482.997333pt;}
.y18a{bottom:484.810667pt;}
.ybf{bottom:487.294667pt;}
.y1fd{bottom:487.616000pt;}
.y15f{bottom:488.600000pt;}
.y215{bottom:488.678667pt;}
.y2f{bottom:490.041333pt;}
.y1e4{bottom:490.753333pt;}
.y133{bottom:491.970667pt;}
.y1b0{bottom:492.261333pt;}
.y40{bottom:493.821333pt;}
.y9{bottom:494.990666pt;}
.y15e{bottom:495.541333pt;}
.y94{bottom:496.130667pt;}
.ye6{bottom:498.593333pt;}
.y1ca{bottom:499.618667pt;}
.y6a{bottom:500.532000pt;}
.y109{bottom:502.772000pt;}
.y1fc{bottom:503.689333pt;}
.ybe{bottom:505.464000pt;}
.y189{bottom:505.633333pt;}
.y2e{bottom:506.114667pt;}
.y214{bottom:506.213333pt;}
.y1e3{bottom:508.288000pt;}
.y1af{bottom:508.334667pt;}
.y3f{bottom:509.893333pt;}
.y188{bottom:512.573333pt;}
.y93{bottom:513.665333pt;}
.ye5{bottom:516.128000pt;}
.y15d{bottom:516.362667pt;}
.y69{bottom:518.066667pt;}
.y132{bottom:521.453333pt;}
.y2d{bottom:522.186667pt;}
.ybd{bottom:522.998667pt;}
.y108{bottom:523.166667pt;}
.y15c{bottom:523.304000pt;}
.y213{bottom:523.746667pt;}
.y1ae{bottom:524.408000pt;}
.y1e2{bottom:525.822667pt;}
.y3e{bottom:525.966667pt;}
.y1c9{bottom:526.576000pt;}
.y92{bottom:531.198667pt;}
.ye4{bottom:533.662667pt;}
.y68{bottom:535.601333pt;}
.y2c{bottom:538.260000pt;}
.y1ad{bottom:540.481333pt;}
.ybc{bottom:540.532000pt;}
.y212{bottom:541.281333pt;}
.y3d{bottom:542.040000pt;}
.y131{bottom:542.973333pt;}
.y1e1{bottom:543.356000pt;}
.y15b{bottom:544.125333pt;}
.y186{bottom:547.277333pt;}
.y91{bottom:548.733333pt;}
.y15a{bottom:551.066667pt;}
.ye3{bottom:551.196000pt;}
.y2b{bottom:554.333333pt;}
.y67{bottom:555.720000pt;}
.y1ac{bottom:556.554667pt;}
.ybb{bottom:558.066667pt;}
.y3c{bottom:558.113333pt;}
.y107{bottom:558.324000pt;}
.y211{bottom:558.816000pt;}
.y1c8{bottom:560.809333pt;}
.y1e0{bottom:560.890667pt;}
.y187{bottom:561.158667pt;}
.y90{bottom:567.037333pt;}
.ye2{bottom:571.962667pt;}
.y1ab{bottom:572.628000pt;}
.y66{bottom:573.254667pt;}
.y130{bottom:573.618667pt;}
.y8{bottom:573.786667pt;}
.y3b{bottom:574.186667pt;}
.y185{bottom:575.040000pt;}
.yba{bottom:575.601333pt;}
.y159{bottom:575.608000pt;}
.y106{bottom:575.858667pt;}
.y210{bottom:576.350667pt;}
.y1c7{bottom:578.344000pt;}
.y1df{bottom:578.425333pt;}
.y184{bottom:581.980000pt;}
.y8f{bottom:584.570667pt;}
.y1aa{bottom:588.700000pt;}
.ye1{bottom:589.496000pt;}
.y3a{bottom:590.260000pt;}
.y65{bottom:590.789333pt;}
.y7{bottom:592.685334pt;}
.yb9{bottom:593.136000pt;}
.y105{bottom:593.392000pt;}
.y20f{bottom:593.884000pt;}
.y158{bottom:594.469333pt;}
.y1c6{bottom:595.878667pt;}
.y1de{bottom:595.960000pt;}
.y8e{bottom:602.105333pt;}
.y2a{bottom:602.553333pt;}
.y183{bottom:602.802667pt;}
.y1a9{bottom:604.773333pt;}
.y39{bottom:606.333333pt;}
.ye0{bottom:607.030667pt;}
.y64{bottom:608.324000pt;}
.y12f{bottom:609.132000pt;}
.y182{bottom:609.742667pt;}
.yb8{bottom:610.669333pt;}
.y104{bottom:610.926667pt;}
.y20e{bottom:611.418667pt;}
.y1c5{bottom:613.413333pt;}
.y1dd{bottom:613.494667pt;}
.y29{bottom:618.626667pt;}
.y38{bottom:622.405333pt;}
.y12e{bottom:623.013333pt;}
.ydf{bottom:624.565333pt;}
.y1a8{bottom:624.566667pt;}
.y63{bottom:625.857333pt;}
.yb7{bottom:628.204000pt;}
.y103{bottom:628.461333pt;}
.y20d{bottom:628.953333pt;}
.y157{bottom:629.601333pt;}
.y181{bottom:630.565333pt;}
.y1c4{bottom:630.946667pt;}
.y1dc{bottom:631.028000pt;}
.y8d{bottom:635.458667pt;}
.y12d{bottom:637.425333pt;}
.y180{bottom:637.505333pt;}
.y37{bottom:638.478667pt;}
.y1a7{bottom:640.640000pt;}
.yde{bottom:642.100000pt;}
.y62{bottom:643.392000pt;}
.y6{bottom:645.598667pt;}
.yb6{bottom:645.738667pt;}
.y102{bottom:645.996000pt;}
.y20c{bottom:646.488000pt;}
.y156{bottom:647.136000pt;}
.y1c3{bottom:648.481333pt;}
.y1db{bottom:648.562667pt;}
.y12c{bottom:651.838667pt;}
.y36{bottom:654.552000pt;}
.y17f{bottom:658.328000pt;}
.ydd{bottom:659.633333pt;}
.y61{bottom:660.926667pt;}
.yb5{bottom:663.273333pt;}
.y20b{bottom:664.021333pt;}
.y155{bottom:664.669333pt;}
.y101{bottom:664.813333pt;}
.y17e{bottom:665.268000pt;}
.y1a6{bottom:665.282667pt;}
.y12b{bottom:665.720000pt;}
.y1c2{bottom:666.016000pt;}
.y1da{bottom:666.097333pt;}
.y3{bottom:668.977329pt;}
.y35{bottom:670.625333pt;}
.ydc{bottom:677.168000pt;}
.y60{bottom:678.461333pt;}
.y12a{bottom:679.601333pt;}
.yb4{bottom:681.442667pt;}
.y20a{bottom:681.556000pt;}
.y8c{bottom:682.094667pt;}
.y154{bottom:682.204000pt;}
.y100{bottom:682.348000pt;}
.y1c1{bottom:683.550667pt;}
.y1d9{bottom:683.632000pt;}
.y17d{bottom:686.090667pt;}
.y34{bottom:686.698667pt;}
.y17c{bottom:693.030667pt;}
.y129{bottom:693.482667pt;}
.ydb{bottom:694.702667pt;}
.y5f{bottom:695.994667pt;}
.yb3{bottom:698.976000pt;}
.y209{bottom:699.090667pt;}
.y8b{bottom:699.628000pt;}
.y153{bottom:699.738667pt;}
.yff{bottom:699.882667pt;}
.y1a5{bottom:700.041333pt;}
.y1c0{bottom:701.084000pt;}
.y1d8{bottom:701.165333pt;}
.y33{bottom:702.772000pt;}
.y128{bottom:707.364000pt;}
.yda{bottom:712.237333pt;}
.y5e{bottom:713.529333pt;}
.y17b{bottom:713.853333pt;}
.yb2{bottom:716.510667pt;}
.y208{bottom:716.625333pt;}
.y8a{bottom:717.162667pt;}
.y152{bottom:717.273333pt;}
.yfe{bottom:717.416000pt;}
.y1a4{bottom:717.576000pt;}
.y1bf{bottom:718.660000pt;}
.y1d7{bottom:718.700000pt;}
.y32{bottom:718.845333pt;}
.y17a{bottom:720.793333pt;}
.y127{bottom:721.245333pt;}
.y5d{bottom:731.064000pt;}
.yd9{bottom:733.002667pt;}
.yb1{bottom:734.045333pt;}
.y207{bottom:734.160000pt;}
.y89{bottom:734.697333pt;}
.y151{bottom:734.806667pt;}
.y31{bottom:734.917333pt;}
.yfd{bottom:734.950667pt;}
.y1a3{bottom:735.109333pt;}
.y126{bottom:735.126667pt;}
.y1be{bottom:736.193333pt;}
.y1d6{bottom:736.234667pt;}
.y179{bottom:741.616000pt;}
.y178{bottom:748.556000pt;}
.y125{bottom:749.008000pt;}
.yd8{bottom:750.537333pt;}
.y5c{bottom:751.184000pt;}
.yb0{bottom:751.580000pt;}
.y206{bottom:751.693333pt;}
.y88{bottom:752.232000pt;}
.y150{bottom:752.341333pt;}
.yfc{bottom:752.485333pt;}
.y1a2{bottom:752.644000pt;}
.y30{bottom:753.648000pt;}
.y1bd{bottom:753.728000pt;}
.y1d5{bottom:753.769333pt;}
.y124{bottom:762.889333pt;}
.yd7{bottom:768.072000pt;}
.y5b{bottom:768.717333pt;}
.yaf{bottom:769.113333pt;}
.y205{bottom:769.228000pt;}
.y14f{bottom:769.876000pt;}
.yfb{bottom:770.020000pt;}
.y87{bottom:770.534667pt;}
.y1a1{bottom:771.302667pt;}
.y177{bottom:773.097333pt;}
.y123{bottom:776.770667pt;}
.y2{bottom:781.661334pt;}
.yd6{bottom:785.605333pt;}
.y5a{bottom:786.252000pt;}
.yae{bottom:786.648000pt;}
.y204{bottom:786.762667pt;}
.y14e{bottom:787.410667pt;}
.yfa{bottom:787.553333pt;}
.y28{bottom:787.778667pt;}
.y86{bottom:788.069333pt;}
.y1a0{bottom:788.837333pt;}
.y122{bottom:790.652000pt;}
.y176{bottom:791.958667pt;}
.yd5{bottom:803.140000pt;}
.y59{bottom:803.786667pt;}
.y203{bottom:804.297333pt;}
.yad{bottom:804.817333pt;}
.y14d{bottom:804.945333pt;}
.yf9{bottom:805.088000pt;}
.y85{bottom:805.602667pt;}
.y19f{bottom:806.372000pt;}
.y121{bottom:811.506667pt;}
.yd4{bottom:820.674667pt;}
.y27{bottom:820.822667pt;}
.y58{bottom:821.321333pt;}
.yac{bottom:822.352000pt;}
.y14c{bottom:822.478667pt;}
.yf8{bottom:822.622667pt;}
.y84{bottom:823.137333pt;}
.y175{bottom:823.906667pt;}
.y120{bottom:829.174667pt;}
.yd3{bottom:838.209333pt;}
.y57{bottom:838.856000pt;}
.y1fb{bottom:839.846667pt;}
.yab{bottom:839.886667pt;}
.yf7{bottom:840.157333pt;}
.y83{bottom:840.672000pt;}
.y14b{bottom:841.286667pt;}
.y174{bottom:841.440000pt;}
.y11f{bottom:848.036000pt;}
.yd2{bottom:855.744000pt;}
.y26{bottom:855.816000pt;}
.y56{bottom:856.389333pt;}
.yaa{bottom:857.421333pt;}
.yf6{bottom:857.690667pt;}
.y14a{bottom:858.821333pt;}
.y82{bottom:858.974667pt;}
.y1{bottom:859.312000pt;}
.y1fa{bottom:860.304000pt;}
.yd1{bottom:873.277333pt;}
.y55{bottom:873.924000pt;}
.ya9{bottom:874.954667pt;}
.yf5{bottom:875.225333pt;}
.y25{bottom:876.272000pt;}
.y149{bottom:876.356000pt;}
.y81{bottom:876.509333pt;}
.yd0{bottom:890.812000pt;}
.ya8{bottom:892.489333pt;}
.y54{bottom:894.044000pt;}
.ya7{bottom:910.024000pt;}
.y148{bottom:910.688000pt;}
.y53{bottom:911.577333pt;}
.y24{bottom:934.065333pt;}
.y52{bottom:941.102667pt;}
.y23{bottom:947.946667pt;}
.h17{height:23.167204pt;}
.h8{height:28.560000pt;}
.h10{height:33.771789pt;}
.h16{height:35.052646pt;}
.h9{height:35.242667pt;}
.hc{height:38.596538pt;}
.h22{height:38.947124pt;}
.h1c{height:41.524400pt;}
.h3{height:42.840000pt;}
.h12{height:43.421286pt;}
.h13{height:43.469107pt;}
.h14{height:43.757286pt;}
.hb{height:48.245551pt;}
.h1a{height:48.298685pt;}
.h19{height:48.613551pt;}
.h18{height:48.618884pt;}
.h7{height:50.346667pt;}
.h1b{height:50.477173pt;}
.h21{height:50.845791pt;}
.h6{height:52.864000pt;}
.h15{height:54.178441pt;}
.h11{height:54.898620pt;}
.he{height:57.895049pt;}
.hd{height:57.958810pt;}
.h2{height:60.416000pt;}
.h1e{height:66.356538pt;}
.h1f{height:66.361871pt;}
.hf{height:66.567953pt;}
.h20{height:72.241476pt;}
.h5{height:85.589333pt;}
.h1d{height:92.026884pt;}
.h4{height:105.826671pt;}
.ha{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:126.236000pt;}
.x5{left:129.172000pt;}
.x2f{left:134.206667pt;}
.x55{left:137.836000pt;}
.x53{left:139.516000pt;}
.x8{left:140.580000pt;}
.x15{left:152.797333pt;}
.x26{left:154.836000pt;}
.x6{left:162.384000pt;}
.xe{left:168.354667pt;}
.x22{left:171.725333pt;}
.x35{left:178.424000pt;}
.x4{left:180.874667pt;}
.x3b{left:198.748000pt;}
.x1c{left:205.806667pt;}
.x50{left:207.722667pt;}
.x30{left:213.514667pt;}
.x21{left:216.038667pt;}
.xf{left:224.985333pt;}
.x34{left:242.649333pt;}
.x4b{left:244.962667pt;}
.x9{left:251.014667pt;}
.x3c{left:252.484000pt;}
.x1e{left:255.814667pt;}
.x20{left:257.345333pt;}
.x39{left:262.573333pt;}
.x46{left:267.886667pt;}
.x45{left:269.820000pt;}
.x4f{left:272.178667pt;}
.x4e{left:273.264000pt;}
.x36{left:275.621333pt;}
.x24{left:280.977333pt;}
.x37{left:282.804000pt;}
.x1a{left:286.764000pt;}
.x2d{left:293.297333pt;}
.xa{left:296.284000pt;}
.x10{left:299.086667pt;}
.xc{left:302.022667pt;}
.x4c{left:304.318667pt;}
.x3d{left:306.220000pt;}
.x2c{left:307.549333pt;}
.x1d{left:318.554667pt;}
.x3a{left:321.928000pt;}
.x56{left:325.646667pt;}
.x11{left:328.005333pt;}
.x12{left:329.644000pt;}
.x4a{left:340.609333pt;}
.x4d{left:343.665333pt;}
.x2e{left:352.653333pt;}
.x7{left:355.221333pt;}
.x3e{left:359.956000pt;}
.x14{left:368.024000pt;}
.x33{left:377.024000pt;}
.x13{left:384.254667pt;}
.x49{left:388.720000pt;}
.x25{left:400.145333pt;}
.x3{left:404.408000pt;}
.x3f{left:413.692000pt;}
.x32{left:417.657333pt;}
.x52{left:423.640000pt;}
.x2a{left:428.501333pt;}
.x29{left:429.645333pt;}
.x44{left:449.206667pt;}
.x19{left:453.717333pt;}
.x16{left:455.468000pt;}
.x31{left:462.892000pt;}
.x40{left:467.428000pt;}
.x48{left:468.548000pt;}
.x38{left:477.030667pt;}
.x23{left:481.209333pt;}
.xb{left:484.926667pt;}
.x41{left:521.162667pt;}
.x27{left:553.180000pt;}
.x17{left:570.620000pt;}
.x42{left:574.898667pt;}
.x2b{left:579.637333pt;}
.x18{left:601.856000pt;}
.x28{left:610.148000pt;}
.x47{left:611.537333pt;}
.x51{left:613.174667pt;}
.x1b{left:619.661333pt;}
.x43{left:628.634667pt;}
.x54{left:629.621333pt;}
.x1f{left:647.022667pt;}
}




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