
    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_749d194dab9eefeb5c9c6ba5.woff2')format("woff");}.ff1{font-family:ff1;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: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_3c062807f3c5f76fea632ffd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_d40aac5936cf9d6679777f5c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_49574f5ad68dc34afad39bc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_becb2c81f1ff8cb5cf1482f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2102ebb348330b05da1ada7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b460d7c762b567793972d278.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.823730;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_353a045383ba50cc5f95cec2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_77849f6e7d88ba964ac8b276.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.681641;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_d5e882f1c7596c6ac49687ca.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4475bcfcc564dc09d9463fd3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c0fdad50dca76c51bcf3089c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_199837a60b6a274072b6cdc6.woff2')format("woff");}.fff{font-family:fff;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-28.080000px;}
.v4{vertical-align:-27.000000px;}
.va{vertical-align:-10.082124px;}
.vb{vertical-align:-2.878200px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.082160px;}
.v3{vertical-align:2.880000px;}
.v7{vertical-align:6.480936px;}
.v5{vertical-align:8.999964px;}
.v1{vertical-align:25.920000px;}
.v9{vertical-align:26.998812px;}
.v2{vertical-align:29.880000px;}
.vd{vertical-align:30.958200px;}
.v8{vertical-align:34.556976px;}
.ls53{letter-spacing:-0.721440px;}
.ls60{letter-spacing:-0.619236px;}
.ls5e{letter-spacing:-0.613224px;}
.ls5d{letter-spacing:-0.601200px;}
.ls5f{letter-spacing:-0.595188px;}
.ls4b{letter-spacing:-0.535068px;}
.ls5c{letter-spacing:-0.408816px;}
.ls7a{letter-spacing:-0.366732px;}
.ls5a{letter-spacing:-0.330660px;}
.ls3b{letter-spacing:-0.288576px;}
.ls52{letter-spacing:-0.252504px;}
.ls5b{letter-spacing:-0.234468px;}
.ls61{letter-spacing:-0.216432px;}
.ls78{letter-spacing:-0.210420px;}
.ls21{letter-spacing:-0.192384px;}
.ls51{letter-spacing:-0.186372px;}
.ls39{letter-spacing:-0.180360px;}
.ls77{letter-spacing:-0.174348px;}
.ls4c{letter-spacing:-0.168336px;}
.ls43{letter-spacing:-0.162324px;}
.ls3e{letter-spacing:-0.156312px;}
.ls44{letter-spacing:-0.150300px;}
.ls4f{letter-spacing:-0.144288px;}
.ls18{letter-spacing:-0.138276px;}
.ls27{letter-spacing:-0.132264px;}
.ls42{letter-spacing:-0.126252px;}
.ls3d{letter-spacing:-0.120240px;}
.ls25{letter-spacing:-0.114228px;}
.ls2a{letter-spacing:-0.108216px;}
.ls26{letter-spacing:-0.102204px;}
.ls20{letter-spacing:-0.096192px;}
.ls37{letter-spacing:-0.090180px;}
.ls3c{letter-spacing:-0.084168px;}
.ls36{letter-spacing:-0.078156px;}
.ls4a{letter-spacing:-0.072144px;}
.ls75{letter-spacing:-0.070200px;}
.ls28{letter-spacing:-0.066132px;}
.ls19{letter-spacing:-0.060120px;}
.ls16{letter-spacing:-0.057672px;}
.ls1e{letter-spacing:-0.054108px;}
.ls38{letter-spacing:-0.048096px;}
.ls70{letter-spacing:-0.043200px;}
.ls24{letter-spacing:-0.042084px;}
.ls22{letter-spacing:-0.036072px;}
.ls6f{letter-spacing:-0.032400px;}
.ls35{letter-spacing:-0.030060px;}
.ls71{letter-spacing:-0.027000px;}
.ls17{letter-spacing:-0.024048px;}
.ls6e{letter-spacing:-0.021600px;}
.ls29{letter-spacing:-0.018036px;}
.ls6b{letter-spacing:-0.016200px;}
.ls23{letter-spacing:-0.012024px;}
.ls6d{letter-spacing:-0.010800px;}
.ls1f{letter-spacing:-0.006012px;}
.ls63{letter-spacing:-0.005400px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.001296px;}
.ls56{letter-spacing:0.005400px;}
.ls12{letter-spacing:0.006012px;}
.ls15{letter-spacing:0.010800px;}
.ls1{letter-spacing:0.012024px;}
.ls69{letter-spacing:0.016200px;}
.ls34{letter-spacing:0.018036px;}
.ls57{letter-spacing:0.021600px;}
.lsf{letter-spacing:0.024048px;}
.ls67{letter-spacing:0.027000px;}
.ls14{letter-spacing:0.030060px;}
.ls6a{letter-spacing:0.032400px;}
.ls1b{letter-spacing:0.033552px;}
.ls11{letter-spacing:0.036072px;}
.ls55{letter-spacing:0.037800px;}
.ls1a{letter-spacing:0.041940px;}
.ls49{letter-spacing:0.042084px;}
.ls66{letter-spacing:0.043200px;}
.ls2{letter-spacing:0.046116px;}
.ls48{letter-spacing:0.048096px;}
.ls59{letter-spacing:0.048600px;}
.ls65{letter-spacing:0.054000px;}
.ls76{letter-spacing:0.054108px;}
.ls7{letter-spacing:0.059292px;}
.lsa{letter-spacing:0.060120px;}
.lsd{letter-spacing:0.066132px;}
.ls73{letter-spacing:0.070200px;}
.lsc{letter-spacing:0.072144px;}
.ls3{letter-spacing:0.072468px;}
.ls68{letter-spacing:0.075600px;}
.ls2f{letter-spacing:0.078156px;}
.ls62{letter-spacing:0.081000px;}
.ls8{letter-spacing:0.084168px;}
.ls58{letter-spacing:0.086400px;}
.lse{letter-spacing:0.090180px;}
.ls72{letter-spacing:0.091800px;}
.ls10{letter-spacing:0.096192px;}
.ls64{letter-spacing:0.097200px;}
.ls9{letter-spacing:0.102204px;}
.ls2b{letter-spacing:0.102600px;}
.ls2c{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.108216px;}
.ls13{letter-spacing:0.114228px;}
.ls3a{letter-spacing:0.120240px;}
.ls3f{letter-spacing:0.126252px;}
.ls2d{letter-spacing:0.132264px;}
.ls45{letter-spacing:0.138276px;}
.ls32{letter-spacing:0.144288px;}
.ls47{letter-spacing:0.150300px;}
.ls79{letter-spacing:0.156312px;}
.ls4e{letter-spacing:0.162324px;}
.ls50{letter-spacing:0.168336px;}
.ls41{letter-spacing:0.174348px;}
.ls6c{letter-spacing:0.178200px;}
.ls4{letter-spacing:0.180000px;}
.ls40{letter-spacing:0.180360px;}
.ls1c{letter-spacing:0.181116px;}
.ls5{letter-spacing:0.270000px;}
.ls1d{letter-spacing:0.361584px;}
.ls4d{letter-spacing:0.811620px;}
.ls30{letter-spacing:1.172340px;}
.ls31{letter-spacing:1.527048px;}
.ls33{letter-spacing:2.248488px;}
.ls54{letter-spacing:4.052088px;}
.ls2e{letter-spacing:7.200000px;}
.ls74{letter-spacing:8.729424px;}
.ls46{letter-spacing:13.767480px;}
.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;}
}
.ws1{word-spacing:-65.880000px;}
.ws1ad{word-spacing:-60.120000px;}
.ws182{word-spacing:-15.210360px;}
.ws36{word-spacing:-15.162264px;}
.wsa2{word-spacing:-15.156252px;}
.ws1ae{word-spacing:-15.102144px;}
.ws1af{word-spacing:-15.060060px;}
.ws1b0{word-spacing:-15.036012px;}
.ws1ac{word-spacing:-15.030000px;}
.ws1aa{word-spacing:-14.999940px;}
.ws1ab{word-spacing:-14.909760px;}
.ws1a9{word-spacing:-14.903748px;}
.ws148{word-spacing:-13.575600px;}
.ws15c{word-spacing:-13.570200px;}
.ws147{word-spacing:-13.543200px;}
.ws149{word-spacing:-13.510800px;}
.ws146{word-spacing:-13.483800px;}
.ws15b{word-spacing:-13.429800px;}
.ws2{word-spacing:-10.711116px;}
.ws4{word-spacing:-10.081584px;}
.ws3{word-spacing:-9.720000px;}
.ws9a{word-spacing:-0.444888px;}
.ws1f3{word-spacing:-0.420840px;}
.ws1c2{word-spacing:-0.408816px;}
.ws135{word-spacing:-0.402804px;}
.ws1b7{word-spacing:-0.390780px;}
.ws1c0{word-spacing:-0.378756px;}
.ws18f{word-spacing:-0.372744px;}
.ws1d2{word-spacing:-0.354708px;}
.ws169{word-spacing:-0.336672px;}
.wse6{word-spacing:-0.330660px;}
.ws1a2{word-spacing:-0.306612px;}
.ws15f{word-spacing:-0.300600px;}
.ws1fd{word-spacing:-0.294588px;}
.ws19e{word-spacing:-0.288576px;}
.ws141{word-spacing:-0.259200px;}
.ws152{word-spacing:-0.253800px;}
.ws5c{word-spacing:-0.252504px;}
.ws157{word-spacing:-0.205200px;}
.ws1cc{word-spacing:-0.198396px;}
.ws1f7{word-spacing:-0.180360px;}
.ws150{word-spacing:-0.178200px;}
.ws1a{word-spacing:-0.174348px;}
.ws5d{word-spacing:-0.162324px;}
.ws1e5{word-spacing:-0.150300px;}
.wsec{word-spacing:-0.144288px;}
.ws1b4{word-spacing:-0.132264px;}
.ws1d6{word-spacing:-0.120240px;}
.ws99{word-spacing:-0.108216px;}
.ws1d0{word-spacing:-0.084168px;}
.ws9f{word-spacing:-0.078156px;}
.wsce{word-spacing:-0.072144px;}
.ws8{word-spacing:-0.067104px;}
.wsb6{word-spacing:-0.060120px;}
.wsfd{word-spacing:-0.054108px;}
.ws9e{word-spacing:-0.048096px;}
.ws6{word-spacing:-0.042084px;}
.ws94{word-spacing:-0.030060px;}
.wsb5{word-spacing:-0.024048px;}
.ws1a8{word-spacing:-0.018036px;}
.wsa0{word-spacing:-0.012024px;}
.ws5{word-spacing:-0.006012px;}
.ws0{word-spacing:0.000000px;}
.ws31{word-spacing:0.006012px;}
.ws9{word-spacing:0.008388px;}
.ws1df{word-spacing:0.012024px;}
.ws13d{word-spacing:0.018036px;}
.wsb{word-spacing:0.019764px;}
.wsfe{word-spacing:0.024048px;}
.wsc{word-spacing:0.032940px;}
.wsba{word-spacing:0.042084px;}
.wsa{word-spacing:0.046116px;}
.ws1b{word-spacing:0.054108px;}
.wsb9{word-spacing:0.060120px;}
.ws155{word-spacing:0.070200px;}
.ws95{word-spacing:0.072144px;}
.ws35{word-spacing:0.075600px;}
.ws93{word-spacing:0.078156px;}
.ws14a{word-spacing:0.081000px;}
.ws42{word-spacing:0.084168px;}
.ws15d{word-spacing:0.086400px;}
.wsc1{word-spacing:0.090180px;}
.ws143{word-spacing:0.091800px;}
.ws8f{word-spacing:0.096192px;}
.ws41{word-spacing:0.102204px;}
.ws15e{word-spacing:0.108000px;}
.ws7{word-spacing:0.108216px;}
.wsfb{word-spacing:0.114228px;}
.ws9c{word-spacing:0.120240px;}
.ws14b{word-spacing:0.124200px;}
.wscc{word-spacing:0.126252px;}
.ws144{word-spacing:0.129600px;}
.ws4b{word-spacing:0.132264px;}
.ws14e{word-spacing:0.135000px;}
.ws156{word-spacing:0.140400px;}
.wsab{word-spacing:0.144288px;}
.ws158{word-spacing:0.145800px;}
.ws19{word-spacing:0.150300px;}
.ws14d{word-spacing:0.151200px;}
.ws91{word-spacing:0.156312px;}
.ws140{word-spacing:0.156600px;}
.ws154{word-spacing:0.162000px;}
.wsf9{word-spacing:0.162324px;}
.ws34{word-spacing:0.167400px;}
.ws6b{word-spacing:0.168336px;}
.ws13f{word-spacing:0.172800px;}
.ws6a{word-spacing:0.174348px;}
.ws145{word-spacing:0.178200px;}
.ws9d{word-spacing:0.180360px;}
.ws142{word-spacing:0.183600px;}
.ws134{word-spacing:0.186372px;}
.ws14c{word-spacing:0.189000px;}
.wseb{word-spacing:0.192384px;}
.ws14f{word-spacing:0.194400px;}
.ws198{word-spacing:0.198396px;}
.ws151{word-spacing:0.199800px;}
.ws105{word-spacing:0.204408px;}
.ws15a{word-spacing:0.205200px;}
.wscb{word-spacing:0.210420px;}
.ws153{word-spacing:0.210600px;}
.ws96{word-spacing:0.216432px;}
.ws159{word-spacing:0.221400px;}
.wsa1{word-spacing:0.228456px;}
.ws1d9{word-spacing:0.234468px;}
.ws9b{word-spacing:0.240480px;}
.ws1d1{word-spacing:0.246492px;}
.ws97{word-spacing:0.252504px;}
.wsdf{word-spacing:0.258516px;}
.ws1b8{word-spacing:0.264528px;}
.wsf8{word-spacing:0.270540px;}
.ws1c8{word-spacing:0.276552px;}
.ws1c{word-spacing:0.282564px;}
.ws1c1{word-spacing:0.300600px;}
.wsbf{word-spacing:0.306612px;}
.ws56{word-spacing:0.330660px;}
.ws4e{word-spacing:0.342684px;}
.ws193{word-spacing:0.450900px;}
.ws2e{word-spacing:0.456912px;}
.ws13c{word-spacing:0.571140px;}
.ws1d8{word-spacing:0.595188px;}
.wsbe{word-spacing:0.619236px;}
.ws16b{word-spacing:0.673344px;}
.wsef{word-spacing:0.685368px;}
.ws136{word-spacing:0.691380px;}
.ws2a{word-spacing:0.697392px;}
.wsf0{word-spacing:0.703404px;}
.ws64{word-spacing:0.709416px;}
.ws4a{word-spacing:0.733464px;}
.ws2c{word-spacing:0.781560px;}
.ws80{word-spacing:0.793584px;}
.ws2d{word-spacing:0.805608px;}
.ws27{word-spacing:0.817632px;}
.ws81{word-spacing:0.829656px;}
.ws7f{word-spacing:0.835668px;}
.ws112{word-spacing:0.871740px;}
.ws26{word-spacing:0.877752px;}
.ws101{word-spacing:0.889776px;}
.ws17a{word-spacing:0.895788px;}
.ws179{word-spacing:0.967932px;}
.ws3d{word-spacing:1.088172px;}
.ws1a3{word-spacing:1.094184px;}
.ws43{word-spacing:1.136268px;}
.ws24{word-spacing:1.148292px;}
.ws25{word-spacing:1.166328px;}
.ws51{word-spacing:1.178352px;}
.ws16e{word-spacing:1.196388px;}
.ws44{word-spacing:1.214424px;}
.ws16f{word-spacing:1.220436px;}
.ws123{word-spacing:1.244484px;}
.ws107{word-spacing:1.448892px;}
.ws52{word-spacing:1.527048px;}
.ws163{word-spacing:1.581156px;}
.ws164{word-spacing:1.611216px;}
.ws4f{word-spacing:1.617228px;}
.ws77{word-spacing:1.683360px;}
.ws50{word-spacing:1.707408px;}
.ws53{word-spacing:1.743480px;}
.ws191{word-spacing:1.791576px;}
.ws160{word-spacing:1.797588px;}
.ws12d{word-spacing:1.815624px;}
.ws1f4{word-spacing:1.839672px;}
.ws185{word-spacing:1.863720px;}
.ws106{word-spacing:1.911816px;}
.ws139{word-spacing:1.959912px;}
.ws1f9{word-spacing:2.008008px;}
.ws108{word-spacing:2.026044px;}
.ws1f8{word-spacing:2.038068px;}
.ws11a{word-spacing:2.122236px;}
.ws176{word-spacing:2.146284px;}
.wsaa{word-spacing:2.164320px;}
.wsf1{word-spacing:2.230452px;}
.ws63{word-spacing:2.236464px;}
.ws54{word-spacing:2.266524px;}
.ws55{word-spacing:2.284560px;}
.ws196{word-spacing:2.302596px;}
.ws11{word-spacing:2.500992px;}
.ws85{word-spacing:2.513016px;}
.ws10{word-spacing:2.549088px;}
.ws61{word-spacing:2.585160px;}
.ws74{word-spacing:2.591172px;}
.ws73{word-spacing:2.603196px;}
.ws60{word-spacing:2.609208px;}
.ws165{word-spacing:2.621232px;}
.ws75{word-spacing:2.639268px;}
.ws78{word-spacing:2.723436px;}
.wsf2{word-spacing:2.861712px;}
.ws1a0{word-spacing:2.867724px;}
.wsc2{word-spacing:2.879748px;}
.ws58{word-spacing:3.060108px;}
.wsb0{word-spacing:3.066120px;}
.ws57{word-spacing:3.072132px;}
.wsd9{word-spacing:3.240468px;}
.ws14{word-spacing:3.264516px;}
.ws166{word-spacing:3.294576px;}
.ws186{word-spacing:3.324636px;}
.ws13{word-spacing:3.336660px;}
.ws5e{word-spacing:3.360708px;}
.ws15{word-spacing:3.384756px;}
.ws37{word-spacing:3.408804px;}
.ws5f{word-spacing:3.414816px;}
.wsd8{word-spacing:3.595176px;}
.wsf3{word-spacing:3.601188px;}
.wsd7{word-spacing:3.607200px;}
.ws102{word-spacing:3.631248px;}
.wsd6{word-spacing:3.679344px;}
.ws116{word-spacing:3.787560px;}
.ws10f{word-spacing:3.793572px;}
.ws115{word-spacing:3.805596px;}
.ws6d{word-spacing:3.811608px;}
.wsf4{word-spacing:3.829644px;}
.wscf{word-spacing:3.955896px;}
.ws1c7{word-spacing:3.979944px;}
.ws1d3{word-spacing:3.985956px;}
.ws1bf{word-spacing:4.136256px;}
.ws189{word-spacing:4.166316px;}
.ws118{word-spacing:4.304592px;}
.wsb4{word-spacing:4.310604px;}
.wsdb{word-spacing:4.340664px;}
.ws119{word-spacing:4.382748px;}
.ws1a7{word-spacing:4.400784px;}
.ws1d7{word-spacing:4.430844px;}
.ws11d{word-spacing:4.521024px;}
.wsdc{word-spacing:4.533048px;}
.ws11c{word-spacing:4.545072px;}
.ws1ea{word-spacing:4.653288px;}
.ws16{word-spacing:4.677336px;}
.ws183{word-spacing:4.743468px;}
.ws184{word-spacing:4.803588px;}
.ws1b5{word-spacing:4.857696px;}
.wsf7{word-spacing:4.869720px;}
.ws1b6{word-spacing:4.893768px;}
.ws137{word-spacing:5.007996px;}
.ws30{word-spacing:5.026032px;}
.wsc7{word-spacing:5.044068px;}
.ws109{word-spacing:5.086152px;}
.ws1b1{word-spacing:5.116212px;}
.ws1b2{word-spacing:5.140260px;}
.ws1eb{word-spacing:5.284548px;}
.ws19f{word-spacing:5.374728px;}
.ws16c{word-spacing:5.404788px;}
.ws16d{word-spacing:5.410800px;}
.ws180{word-spacing:5.464908px;}
.ws10d{word-spacing:5.470920px;}
.ws10e{word-spacing:5.476932px;}
.ws1fa{word-spacing:5.488956px;}
.ws10a{word-spacing:5.519016px;}
.ws1f{word-spacing:5.531040px;}
.ws86{word-spacing:5.573124px;}
.ws20{word-spacing:5.603184px;}
.ws181{word-spacing:5.615208px;}
.ws71{word-spacing:5.621220px;}
.ws132{word-spacing:5.771520px;}
.ws129{word-spacing:5.801580px;}
.ws12a{word-spacing:5.807592px;}
.ws128{word-spacing:5.843664px;}
.ws1e{word-spacing:5.861700px;}
.ws1ce{word-spacing:5.867712px;}
.ws1d{word-spacing:5.885748px;}
.ws1cd{word-spacing:5.921820px;}
.wsa7{word-spacing:6.108192px;}
.ws192{word-spacing:6.126228px;}
.ws13a{word-spacing:6.132240px;}
.ws28{word-spacing:6.174324px;}
.ws162{word-spacing:6.186348px;}
.wsa8{word-spacing:6.192360px;}
.ws161{word-spacing:6.204384px;}
.ws194{word-spacing:6.222420px;}
.ws29{word-spacing:6.228432px;}
.ws21{word-spacing:6.312600px;}
.ws22{word-spacing:6.342660px;}
.ws19d{word-spacing:6.456888px;}
.wsd1{word-spacing:6.565104px;}
.wsd0{word-spacing:6.577128px;}
.wsa9{word-spacing:6.643260px;}
.wsd2{word-spacing:6.661296px;}
.ws62{word-spacing:6.673320px;}
.ws197{word-spacing:6.835644px;}
.ws19b{word-spacing:6.865704px;}
.ws19a{word-spacing:6.907788px;}
.ws104{word-spacing:7.009992px;}
.ws103{word-spacing:7.040052px;}
.ws138{word-spacing:7.052076px;}
.ws1da{word-spacing:7.214400px;}
.ws1db{word-spacing:7.238448px;}
.ws177{word-spacing:7.292556px;}
.ws32{word-spacing:7.304580px;}
.ws3a{word-spacing:7.316604px;}
.ws178{word-spacing:7.352676px;}
.ws2f{word-spacing:7.358688px;}
.ws1e4{word-spacing:7.376724px;}
.ws3b{word-spacing:7.382736px;}
.ws3c{word-spacing:7.406784px;}
.wsda{word-spacing:7.557084px;}
.wsc8{word-spacing:7.563096px;}
.ws126{word-spacing:7.647264px;}
.ws125{word-spacing:7.677324px;}
.ws65{word-spacing:7.713396px;}
.wsf{word-spacing:7.905780px;}
.wsff{word-spacing:7.917804px;}
.ws8a{word-spacing:8.007984px;}
.ws89{word-spacing:8.038044px;}
.ws17d{word-spacing:8.092152px;}
.ws6c{word-spacing:8.236440px;}
.ws8d{word-spacing:8.290548px;}
.ws1d5{word-spacing:8.422812px;}
.wsc5{word-spacing:8.434836px;}
.ws1d4{word-spacing:8.440848px;}
.ws111{word-spacing:8.663292px;}
.ws3f{word-spacing:8.669304px;}
.ws6f{word-spacing:8.747460px;}
.ws3e{word-spacing:8.759484px;}
.wsea{word-spacing:8.807580px;}
.wsf6{word-spacing:8.813592px;}
.ws66{word-spacing:8.867700px;}
.ws1ba{word-spacing:8.975916px;}
.ws195{word-spacing:8.981928px;}
.ws170{word-spacing:9.005976px;}
.ws16a{word-spacing:9.078120px;}
.ws6e{word-spacing:9.084132px;}
.ws70{word-spacing:9.120204px;}
.ws1b9{word-spacing:9.138240px;}
.wsb1{word-spacing:9.186336px;}
.wsb2{word-spacing:9.198360px;}
.ws69{word-spacing:9.210384px;}
.ws171{word-spacing:9.240444px;}
.ws100{word-spacing:9.336636px;}
.ws122{word-spacing:9.348660px;}
.ws1e0{word-spacing:9.354672px;}
.ws121{word-spacing:9.474912px;}
.ws1e1{word-spacing:9.480924px;}
.ws1a5{word-spacing:9.709380px;}
.wsac{word-spacing:9.715392px;}
.ws1a4{word-spacing:9.721404px;}
.ws17e{word-spacing:9.751464px;}
.ws17f{word-spacing:9.823608px;}
.ws120{word-spacing:10.058076px;}
.ws18d{word-spacing:10.082124px;}
.ws17{word-spacing:10.088136px;}
.ws84{word-spacing:10.094148px;}
.ws18{word-spacing:10.148256px;}
.ws83{word-spacing:10.184328px;}
.ws18e{word-spacing:10.190340px;}
.ws18c{word-spacing:10.196352px;}
.ws173{word-spacing:10.286532px;}
.wsc6{word-spacing:10.418796px;}
.wsbb{word-spacing:10.442844px;}
.wsbd{word-spacing:10.454868px;}
.ws8e{word-spacing:10.508976px;}
.wsdd{word-spacing:10.527012px;}
.ws87{word-spacing:10.617192px;}
.wsde{word-spacing:10.671300px;}
.ws1bd{word-spacing:10.791540px;}
.ws1bc{word-spacing:10.935828px;}
.ws1e2{word-spacing:10.947852px;}
.wsad{word-spacing:10.953864px;}
.ws1dc{word-spacing:10.995948px;}
.wse8{word-spacing:11.001960px;}
.wse9{word-spacing:11.038032px;}
.ws172{word-spacing:11.146248px;}
.ws1e3{word-spacing:11.344644px;}
.ws7a{word-spacing:11.482920px;}
.ws79{word-spacing:11.506968px;}
.wsa6{word-spacing:11.512980px;}
.ws12b{word-spacing:11.585124px;}
.ws12c{word-spacing:11.627208px;}
.ws1fb{word-spacing:11.675304px;}
.ws1fc{word-spacing:11.693340px;}
.ws168{word-spacing:11.729412px;}
.ws127{word-spacing:11.735424px;}
.ws90{word-spacing:11.741436px;}
.ws19c{word-spacing:11.771496px;}
.wse0{word-spacing:12.072096px;}
.ws39{word-spacing:12.234420px;}
.ws12{word-spacing:12.258468px;}
.ws8b{word-spacing:12.312576px;}
.ws38{word-spacing:12.324600px;}
.wsd4{word-spacing:12.336624px;}
.wsd5{word-spacing:12.348648px;}
.ws8c{word-spacing:12.360672px;}
.wse3{word-spacing:12.444840px;}
.ws124{word-spacing:12.595140px;}
.ws1f2{word-spacing:12.607164px;}
.ws11e{word-spacing:12.649248px;}
.ws11f{word-spacing:12.685320px;}
.ws1f1{word-spacing:12.691332px;}
.ws7c{word-spacing:12.697344px;}
.ws68{word-spacing:12.709368px;}
.ws67{word-spacing:12.733416px;}
.ws7b{word-spacing:12.781512px;}
.ws11b{word-spacing:13.100148px;}
.ws33{word-spacing:13.160268px;}
.wse1{word-spacing:13.286520px;}
.ws13b{word-spacing:13.328604px;}
.wse2{word-spacing:13.418784px;}
.wsae{word-spacing:13.569084px;}
.ws82{word-spacing:13.671288px;}
.wsaf{word-spacing:13.677300px;}
.ws1ef{word-spacing:13.683312px;}
.wse4{word-spacing:13.743432px;}
.ws1f0{word-spacing:13.761468px;}
.ws199{word-spacing:14.038020px;}
.ws46{word-spacing:14.260464px;}
.wse5{word-spacing:14.314572px;}
.wsc9{word-spacing:14.446836px;}
.ws167{word-spacing:14.771484px;}
.wsca{word-spacing:14.897736px;}
.ws190{word-spacing:14.939820px;}
.ws7d{word-spacing:15.102144px;}
.ws7e{word-spacing:15.240420px;}
.ws1a1{word-spacing:15.829596px;}
.ws114{word-spacing:15.841620px;}
.ws59{word-spacing:16.406748px;}
.wsc4{word-spacing:16.412760px;}
.wsc3{word-spacing:16.430796px;}
.ws5a{word-spacing:16.581096px;}
.ws76{word-spacing:16.911756px;}
.wsa5{word-spacing:17.278488px;}
.wsb3{word-spacing:17.284500px;}
.wsa4{word-spacing:17.482896px;}
.ws1be{word-spacing:17.639208px;}
.wsd{word-spacing:17.783496px;}
.ws4d{word-spacing:18.114156px;}
.ws4c{word-spacing:18.132192px;}
.ws113{word-spacing:18.378684px;}
.wsd3{word-spacing:18.727380px;}
.ws174{word-spacing:18.811548px;}
.ws175{word-spacing:18.853632px;}
.ws72{word-spacing:19.424772px;}
.ws12e{word-spacing:19.448820px;}
.ws18b{word-spacing:19.791504px;}
.ws18a{word-spacing:19.875672px;}
.ws1c9{word-spacing:20.230380px;}
.ws1cb{word-spacing:20.296512px;}
.ws1ca{word-spacing:20.410740px;}
.ws88{word-spacing:20.530980px;}
.ws117{word-spacing:20.711340px;}
.wse{word-spacing:20.885688px;}
.wse7{word-spacing:20.897712px;}
.wsbc{word-spacing:21.216348px;}
.ws23{word-spacing:21.264444px;}
.ws2b{word-spacing:21.583080px;}
.wsc0{word-spacing:21.973860px;}
.ws110{word-spacing:22.322556px;}
.ws10c{word-spacing:22.328568px;}
.ws10b{word-spacing:22.418748px;}
.ws133{word-spacing:22.671252px;}
.wsf5{word-spacing:22.857624px;}
.ws40{word-spacing:23.043996px;}
.ws1c6{word-spacing:23.224356px;}
.ws1b3{word-spacing:23.434776px;}
.ws188{word-spacing:23.843592px;}
.ws187{word-spacing:23.861628px;}
.ws1f6{word-spacing:24.829560px;}
.ws1f5{word-spacing:24.931764px;}
.ws1a6{word-spacing:25.058016px;}
.ws5b{word-spacing:25.070040px;}
.ws1cf{word-spacing:25.917732px;}
.ws1ec{word-spacing:27.721332px;}
.ws1c4{word-spacing:28.070028px;}
.ws1c3{word-spacing:28.082052px;}
.ws1c5{word-spacing:28.190268px;}
.ws47{word-spacing:28.448784px;}
.ws49{word-spacing:28.520928px;}
.ws1e9{word-spacing:28.538964px;}
.ws48{word-spacing:28.575036px;}
.ws1bb{word-spacing:29.500884px;}
.ws1ed{word-spacing:30.174228px;}
.ws1ee{word-spacing:30.252384px;}
.ws1e8{word-spacing:30.607092px;}
.ws1e7{word-spacing:31.148172px;}
.ws45{word-spacing:33.847560px;}
.wsb7{word-spacing:34.827516px;}
.wsb8{word-spacing:34.857576px;}
.wsa3{word-spacing:35.645148px;}
.ws12f{word-spacing:35.981820px;}
.ws130{word-spacing:36.084024px;}
.ws131{word-spacing:36.162180px;}
.ws1e6{word-spacing:37.815480px;}
.wsed{word-spacing:40.737312px;}
.wsee{word-spacing:40.761360px;}
.ws17b{word-spacing:45.450720px;}
.ws17c{word-spacing:45.546912px;}
.wscd{word-spacing:49.977756px;}
.ws1dd{word-spacing:61.779312px;}
.wsfa{word-spacing:90.053748px;}
.wsfc{word-spacing:181.893060px;}
.ws1de{word-spacing:196.195608px;}
.ws92{word-spacing:201.329856px;}
.ws98{word-spacing:346.952520px;}
.ws13e{word-spacing:696.740400px;}
._55{margin-left:-2001.207600px;}
._53{margin-left:-367.556400px;}
._7{margin-left:-201.564324px;}
._38{margin-left:-53.999784px;}
._27{margin-left:-51.102000px;}
._39{margin-left:-42.120072px;}
._78{margin-left:-30.883644px;}
._5{margin-left:-21.102120px;}
._2d{margin-left:-16.887708px;}
._2c{margin-left:-15.805548px;}
._6{margin-left:-10.028016px;}
._2b{margin-left:-7.815600px;}
._37{margin-left:-5.579136px;}
._1d{margin-left:-4.046076px;}
._1{margin-left:-1.016028px;}
._2{width:1.100196px;}
._25{width:3.667320px;}
._24{width:5.001984px;}
._29{width:9.751464px;}
._26{width:11.879712px;}
._28{width:20.993904px;}
._22{width:24.901704px;}
._1c{width:30.504888px;}
._35{width:34.088040px;}
._1a{width:36.631116px;}
._19{width:40.112064px;}
._2a{width:43.617060px;}
._1b{width:45.324468px;}
._17{width:47.091996px;}
._20{width:52.033860px;}
._21{width:54.673128px;}
._12{width:55.689156px;}
._36{width:58.424616px;}
._16{width:60.907572px;}
._10{width:62.266284px;}
._11{width:64.737216px;}
._32{width:69.408540px;}
._34{width:72.288288px;}
._1f{width:75.600900px;}
._51{width:77.735160px;}
._33{width:79.845372px;}
._15{width:82.376424px;}
._13{width:89.218080px;}
._14{width:92.879388px;}
._50{width:99.696996px;}
._52{width:105.817212px;}
._3d{width:113.073696px;}
._3e{width:117.793116px;}
._1e{width:121.153824px;}
._2f{width:125.278056px;}
._3c{width:133.989444px;}
._31{width:134.999460px;}
._23{width:138.732912px;}
._41{width:142.953336px;}
._30{width:146.879172px;}
._42{width:155.915208px;}
._4c{width:158.398164px;}
._4e{width:162.720792px;}
._40{width:164.915172px;}
._2e{width:167.921172px;}
._4d{width:171.035388px;}
._47{width:173.157624px;}
._5a{width:174.761028px;}
._49{width:177.840972px;}
._4b{width:179.674632px;}
._63{width:184.680000px;}
._48{width:186.119496px;}
._46{width:195.119460px;}
._60{width:202.679028px;}
._68{width:214.218000px;}
._e{width:232.526124px;}
._64{width:245.619000px;}
._a{width:261.576108px;}
._65{width:280.038600px;}
._9{width:291.960756px;}
._58{width:312.229656px;}
._67{width:314.290800px;}
._5b{width:326.527200px;}
._70{width:335.875428px;}
._61{width:337.721400px;}
._d{width:346.633884px;}
._62{width:356.087628px;}
._6a{width:391.068000px;}
._73{width:395.647200px;}
._71{width:404.930628px;}
._3b{width:407.168712px;}
._6c{width:413.656200px;}
._f{width:425.096496px;}
._72{width:427.307400px;}
._6b{width:428.776200px;}
._59{width:439.560000px;}
._b{width:454.922028px;}
._77{width:464.378400px;}
._c{width:483.599268px;}
._8{width:484.891848px;}
._5f{width:488.413800px;}
._6e{width:494.548200px;}
._3f{width:497.168352px;}
._5e{width:507.060000px;}
._4f{width:512.054064px;}
._18{width:527.955804px;}
._0{width:533.067696px;}
._6f{width:541.080000px;}
._66{width:546.226200px;}
._6d{width:550.076400px;}
._5d{width:557.533800px;}
._3a{width:560.961684px;}
._44{width:583.873416px;}
._45{width:598.957524px;}
._43{width:613.031616px;}
._5c{width:616.323600px;}
._57{width:625.320000px;}
._4a{width:627.021540px;}
._75{width:637.200000px;}
._54{width:643.323600px;}
._69{width:679.314600px;}
._74{width:682.203600px;}
._76{width:695.881800px;}
._56{width:821.102400px;}
._3{width:1439.134632px;}
._4{width:1475.326620px;}
.fc2{color:transparent;}
.fc1{color:rgb(237,31,36);}
.fc3{color:rgb(54,54,54);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:42.120000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.fs5{font-size:96.120000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:3.150450px;}
.y27{bottom:4.410450px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y20{bottom:139.264499px;}
.y17{bottom:196.933500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y26{bottom:274.170000px;}
.y57{bottom:275.430000px;}
.y24{bottom:278.490450px;}
.y25{bottom:278.580450px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y54{bottom:329.790450px;}
.y15c{bottom:332.310450px;}
.y1c4{bottom:332.313222px;}
.y85{bottom:335.641773px;}
.y197{bottom:335.730450px;}
.y215{bottom:336.184194px;}
.y53{bottom:340.950450px;}
.ye{bottom:348.133500px;}
.y15a{bottom:348.600450px;}
.y1c3{bottom:349.593213px;}
.ybb{bottom:350.850450px;}
.y196{bottom:352.020450px;}
.y84{bottom:352.921764px;}
.y214{bottom:357.964167px;}
.y52{bottom:361.021755px;}
.y159{bottom:364.800450px;}
.y1c2{bottom:366.873204px;}
.y195{bottom:368.310450px;}
.yba{bottom:368.851161px;}
.y83{bottom:370.201755px;}
.y213{bottom:375.153978px;}
.y12f{bottom:375.422538px;}
.y51{bottom:378.211566px;}
.ye0{bottom:378.391305px;}
.y158{bottom:381.090450px;}
.y15b{bottom:381.900000px;}
.y1c1{bottom:384.063015px;}
.y194{bottom:384.510450px;}
.yd{bottom:386.785499px;}
.y82{bottom:387.391566px;}
.yb7{bottom:391.170450px;}
.y212{bottom:392.433969px;}
.yb9{bottom:394.140639px;}
.ydf{bottom:395.671296px;}
.y1eb{bottom:397.203600px;}
.y157{bottom:397.380450px;}
.y193{bottom:400.800450px;}
.y12e{bottom:401.612313px;}
.y50{bottom:404.491521px;}
.y81{bottom:404.671557px;}
.yc{bottom:408.044999px;}
.y211{bottom:409.623780px;}
.y1c0{bottom:410.342970px;}
.yb8{bottom:411.330450px;}
.yde{bottom:412.861107px;}
.yb6{bottom:413.490450px;}
.y156{bottom:413.670150px;}
.y1ea{bottom:414.213051px;}
.y192{bottom:417.090900px;}
.y106{bottom:418.082187px;}
.y12d{bottom:418.892304px;}
.y4f{bottom:421.771512px;}
.y80{bottom:421.951548px;}
.y1bf{bottom:427.622961px;}
.y155{bottom:429.960600px;}
.ydd{bottom:430.141098px;}
.y210{bottom:431.403753px;}
.y1e9{bottom:431.493042px;}
.y191{bottom:433.380450px;}
.y105{bottom:435.271998px;}
.yb5{bottom:435.900450px;}
.y12c{bottom:436.172295px;}
.y4e{bottom:438.961323px;}
.y7f{bottom:439.141359px;}
.y1be{bottom:444.812772px;}
.y154{bottom:446.970150px;}
.ydc{bottom:447.421089px;}
.y20f{bottom:448.683744px;}
.y1e8{bottom:448.773033px;}
.y190{bottom:449.670450px;}
.y104{bottom:452.551989px;}
.y12b{bottom:453.362106px;}
.yb4{bottom:453.901068px;}
.y4d{bottom:456.241314px;}
.y7e{bottom:456.421350px;}
.y1bd{bottom:462.092763px;}
.y153{bottom:462.450600px;}
.ydb{bottom:464.610900px;}
.y18f{bottom:465.870000px;}
.y20e{bottom:465.873555px;}
.y1e7{bottom:465.962844px;}
.y103{bottom:469.831980px;}
.y12a{bottom:470.642097px;}
.y4c{bottom:473.521305px;}
.y7d{bottom:473.611161px;}
.yb1{bottom:476.220450px;}
.y152{bottom:478.470450px;}
.yb3{bottom:478.560789px;}
.y1bc{bottom:479.372754px;}
.yda{bottom:481.890891px;}
.y18e{bottom:482.160450px;}
.y1e6{bottom:483.423195px;}
.y102{bottom:487.021791px;}
.y20d{bottom:487.653528px;}
.y4b{bottom:490.711116px;}
.yb2{bottom:495.750600px;}
.y1bb{bottom:496.562565px;}
.y129{bottom:496.922052px;}
.y18d{bottom:498.450600px;}
.yb0{bottom:498.540600px;}
.yd9{bottom:499.170882px;}
.y151{bottom:499.532025px;}
.y7c{bottom:499.891116px;}
.y1e5{bottom:500.613006px;}
.y101{bottom:504.301782px;}
.y20c{bottom:504.933519px;}
.y4a{bottom:507.991107px;}
.y1ba{bottom:513.842556px;}
.y128{bottom:514.111863px;}
.y18c{bottom:514.740450px;}
.yd8{bottom:516.360693px;}
.y7b{bottom:517.171107px;}
.y1e4{bottom:517.892997px;}
.yaf{bottom:519.600450px;}
.yb{bottom:520.864502px;}
.y100{bottom:521.581773px;}
.y49{bottom:525.271098px;}
.y20b{bottom:526.623312px;}
.y18b{bottom:531.030450px;}
.y127{bottom:531.391854px;}
.y150{bottom:531.932196px;}
.y7a{bottom:534.360918px;}
.y1e3{bottom:535.172988px;}
.yae{bottom:537.601377px;}
.yff{bottom:538.771584px;}
.ya{bottom:538.864499px;}
.y1b9{bottom:540.122511px;}
.y48{bottom:542.460909px;}
.yd7{bottom:542.640648px;}
.y20a{bottom:543.903303px;}
.y18a{bottom:548.040000px;}
.y126{bottom:548.671845px;}
.y14f{bottom:549.212187px;}
.y79{bottom:551.640909px;}
.y1e2{bottom:552.362799px;}
.yad{bottom:554.520648px;}
.yfe{bottom:556.051575px;}
.y9{bottom:556.864499px;}
.y1b8{bottom:557.312322px;}
.y47{bottom:559.740900px;}
.yaa{bottom:559.920450px;}
.yd6{bottom:559.920639px;}
.y209{bottom:561.183294px;}
.y189{bottom:563.520450px;}
.y14e{bottom:566.401998px;}
.y78{bottom:568.920900px;}
.y1e1{bottom:569.642790px;}
.yac{bottom:571.800639px;}
.yfd{bottom:573.331566px;}
.y1b7{bottom:574.592313px;}
.y125{bottom:574.861620px;}
.y46{bottom:576.930711px;}
.yd5{bottom:577.110747px;}
.y208{bottom:578.373105px;}
.y188{bottom:579.810450px;}
.ya9{bottom:582.240450px;}
.y14d{bottom:583.681989px;}
.y77{bottom:586.110711px;}
.y1e0{bottom:586.922781px;}
.yab{bottom:588.990450px;}
.yfc{bottom:590.521377px;}
.y1b6{bottom:591.872304px;}
.y124{bottom:592.141611px;}
.y45{bottom:594.210702px;}
.yd4{bottom:594.390738px;}
.y186{bottom:596.100450px;}
.y207{bottom:600.153078px;}
.y14c{bottom:600.961980px;}
.y76{bottom:603.390702px;}
.y1df{bottom:604.112592px;}
.ya8{bottom:604.650450px;}
.yfb{bottom:607.801368px;}
.y1b5{bottom:609.062115px;}
.y123{bottom:609.421602px;}
.y44{bottom:611.490693px;}
.yd3{bottom:611.670729px;}
.y185{bottom:612.390450px;}
.y187{bottom:613.110900px;}
.y206{bottom:617.433069px;}
.y14b{bottom:618.151791px;}
.y75{bottom:620.670693px;}
.y1de{bottom:621.392583px;}
.ya7{bottom:623.100423px;}
.y1b4{bottom:626.342106px;}
.y122{bottom:626.611413px;}
.y184{bottom:628.680450px;}
.y43{bottom:628.680504px;}
.yd2{bottom:628.860540px;}
.yfa{bottom:633.900963px;}
.y205{bottom:634.622880px;}
.y14a{bottom:635.431782px;}
.y74{bottom:637.860504px;}
.y1dd{bottom:638.672574px;}
.ya6{bottom:642.000648px;}
.y1b3{bottom:643.531917px;}
.y121{bottom:643.891404px;}
.y183{bottom:644.879550px;}
.ya3{bottom:645.420450px;}
.y8{bottom:645.510000px;}
.yd1{bottom:646.140531px;}
.yf9{bottom:651.271134px;}
.y42{bottom:654.780099px;}
.y73{bottom:655.140495px;}
.y1dc{bottom:655.862385px;}
.y204{bottom:656.402853px;}
.ya5{bottom:659.280639px;}
.y1b2{bottom:660.811908px;}
.y181{bottom:661.170450px;}
.y149{bottom:661.711737px;}
.y7{bottom:666.771000px;}
.ya2{bottom:667.740450px;}
.y22e{bottom:667.921755px;}
.y120{bottom:670.171359px;}
.y41{bottom:672.240450px;}
.y1db{bottom:673.142376px;}
.y203{bottom:673.682844px;}
.ya4{bottom:676.470450px;}
.y180{bottom:677.460450px;}
.yf8{bottom:677.551089px;}
.y1b1{bottom:678.091899px;}
.y148{bottom:678.901548px;}
.y72{bottom:681.420450px;}
.y22d{bottom:685.111566px;}
.y11f{bottom:687.361170px;}
.ya1{bottom:690.150450px;}
.y1da{bottom:690.422367px;}
.y40{bottom:691.591692px;}
.y17f{bottom:693.750000px;}
.yf7{bottom:694.831080px;}
.y1b0{bottom:695.281710px;}
.y202{bottom:695.372637px;}
.y147{bottom:696.181539px;}
.y71{bottom:698.610450px;}
.yd0{bottom:699.420459px;}
.y11e{bottom:704.641161px;}
.y22c{bottom:706.891539px;}
.y1d9{bottom:707.612178px;}
.y3f{bottom:708.961863px;}
.y17e{bottom:709.230450px;}
.y182{bottom:710.040000px;}
.yf6{bottom:712.020891px;}
.y9d{bottom:712.471908px;}
.y1af{bottom:712.561701px;}
.y201{bottom:712.652628px;}
.y70{bottom:715.890450px;}
.ycf{bottom:716.700450px;}
.ya0{bottom:721.112655px;}
.y146{bottom:722.371314px;}
.y22b{bottom:724.171530px;}
.y1d8{bottom:724.892169px;}
.y17d{bottom:725.520450px;}
.y3e{bottom:726.241854px;}
.y6{bottom:726.298500px;}
.yf5{bottom:729.300882px;}
.y9c{bottom:729.751899px;}
.y11d{bottom:730.921116px;}
.y6f{bottom:733.170450px;}
.y200{bottom:734.432601px;}
.yce{bottom:734.700450px;}
.y99{bottom:738.391143px;}
.y9f{bottom:738.392646px;}
.y1ae{bottom:738.841656px;}
.y145{bottom:739.651305px;}
.y22a{bottom:741.361341px;}
.y17c{bottom:741.811050px;}
.y1d7{bottom:742.172160px;}
.y3d{bottom:743.431665px;}
.yf4{bottom:746.490693px;}
.y9b{bottom:747.031890px;}
.y11c{bottom:748.110927px;}
.y6e{bottom:750.360450px;}
.y1ff{bottom:751.622412px;}
.y3{bottom:752.599495px;}
.ycd{bottom:752.610459px;}
.y9e{bottom:755.582457px;}
.y1ad{bottom:756.031467px;}
.y144{bottom:756.931296px;}
.y17a{bottom:758.100450px;}
.y1d6{bottom:759.361971px;}
.y3c{bottom:760.711656px;}
.y229{bottom:763.141314px;}
.yf3{bottom:763.770684px;}
.y9a{bottom:764.221701px;}
.y11b{bottom:765.390918px;}
.y6d{bottom:767.640450px;}
.y1fe{bottom:768.902403px;}
.ycc{bottom:769.890450px;}
.y1ac{bottom:773.311458px;}
.y143{bottom:774.121107px;}
.y179{bottom:774.390450px;}
.y1d5{bottom:776.641962px;}
.y3b{bottom:777.991647px;}
.y228{bottom:780.421305px;}
.yf2{bottom:781.050675px;}
.y98{bottom:782.221629px;}
.y11a{bottom:782.580729px;}
.y6c{bottom:784.920450px;}
.ycb{bottom:787.890450px;}
.y1ab{bottom:790.591449px;}
.y1fd{bottom:790.592196px;}
.y178{bottom:790.680000px;}
.y142{bottom:791.401098px;}
.y1d4{bottom:793.921953px;}
.y3a{bottom:795.181458px;}
.y227{bottom:797.611116px;}
.y119{bottom:799.860720px;}
.y6b{bottom:802.110600px;}
.y177{bottom:806.160450px;}
.y17b{bottom:806.881050px;}
.yf1{bottom:807.241161px;}
.y1aa{bottom:807.781260px;}
.y1fc{bottom:807.872187px;}
.y141{bottom:808.590909px;}
.y97{bottom:808.591764px;}
.yca{bottom:810.930600px;}
.y1d3{bottom:811.111764px;}
.y39{bottom:812.461449px;}
.y118{bottom:817.140711px;}
.y226{bottom:819.391089px;}
.y176{bottom:822.450600px;}
.yf0{bottom:824.521152px;}
.y1a9{bottom:825.061251px;}
.y1fb{bottom:825.152178px;}
.y140{bottom:825.870900px;}
.y96{bottom:825.871755px;}
.y6a{bottom:828.211197px;}
.y1d2{bottom:828.391755px;}
.y38{bottom:829.741440px;}
.yc9{bottom:835.680672px;}
.y225{bottom:836.580900px;}
.y175{bottom:838.740450px;}
.yef{bottom:841.801143px;}
.y1a8{bottom:842.341242px;}
.y13f{bottom:843.150891px;}
.y69{bottom:845.401008px;}
.y1d1{bottom:845.581566px;}
.y1fa{bottom:846.841971px;}
.y37{bottom:846.931251px;}
.y95{bottom:852.151710px;}
.y117{bottom:852.330450px;}
.yc8{bottom:853.680600px;}
.y224{bottom:853.860891px;}
.y173{bottom:854.940450px;}
.yee{bottom:858.990954px;}
.y1a7{bottom:859.531053px;}
.y13e{bottom:860.340702px;}
.y68{bottom:862.861359px;}
.y1d0{bottom:862.861557px;}
.y1f9{bottom:864.121962px;}
.y36{bottom:864.211242px;}
.y94{bottom:869.341521px;}
.y172{bottom:871.230450px;}
.y116{bottom:871.500600px;}
.y223{bottom:875.640864px;}
.yed{bottom:876.270945px;}
.y1a6{bottom:876.811044px;}
.y13d{bottom:877.620693px;}
.y2{bottom:879.369000px;}
.y1cf{bottom:880.141548px;}
.y35{bottom:881.491233px;}
.y1f8{bottom:885.901935px;}
.y93{bottom:886.621512px;}
.y171{bottom:887.520450px;}
.y174{bottom:888.240900px;}
.y67{bottom:889.141314px;}
.yc7{bottom:889.141512px;}
.y115{bottom:891.750600px;}
.y222{bottom:892.830675px;}
.yec{bottom:893.550936px;}
.y13c{bottom:894.900684px;}
.y1ce{bottom:897.331359px;}
.y34{bottom:898.681044px;}
.y1a5{bottom:902.910639px;}
.y1f7{bottom:903.091746px;}
.y170{bottom:903.810450px;}
.y92{bottom:903.901503px;}
.y66{bottom:906.331125px;}
.yc6{bottom:906.331323px;}
.y221{bottom:910.110666px;}
.yeb{bottom:910.740747px;}
.y114{bottom:912.000450px;}
.y13b{bottom:912.090495px;}
.y1cd{bottom:914.611350px;}
.y33{bottom:915.961035px;}
.y16f{bottom:920.100450px;}
.y91{bottom:921.091314px;}
.y65{bottom:923.611116px;}
.yc5{bottom:923.611314px;}
.y1f6{bottom:924.871719px;}
.yea{bottom:928.020738px;}
.y220{bottom:931.890639px;}
.y1cc{bottom:931.891341px;}
.y113{bottom:932.250450px;}
.y16e{bottom:935.580900px;}
.y13a{bottom:938.370450px;}
.y90{bottom:938.371305px;}
.y64{bottom:940.891107px;}
.yc4{bottom:940.891305px;}
.y32{bottom:941.970450px;}
.y1f5{bottom:942.151710px;}
.y1a4{bottom:942.600000px;}
.ye9{bottom:945.300729px;}
.y21f{bottom:949.080450px;}
.y1cb{bottom:949.081152px;}
.y16d{bottom:951.150450px;}
.y112{bottom:952.500450px;}
.y139{bottom:955.650450px;}
.y8f{bottom:955.651296px;}
.y63{bottom:958.080918px;}
.yc3{bottom:958.081116px;}
.y1a3{bottom:958.890450px;}
.y1f4{bottom:959.341521px;}
.y31{bottom:959.430306px;}
.ye8{bottom:962.490540px;}
.y21e{bottom:966.360450px;}
.y1ca{bottom:966.361143px;}
.y1{bottom:966.726000px;}
.y16b{bottom:967.440450px;}
.y111{bottom:972.660450px;}
.y138{bottom:972.840450px;}
.y8e{bottom:972.841107px;}
.y1a2{bottom:975.180450px;}
.y62{bottom:975.360909px;}
.yc2{bottom:975.361107px;}
.y30{bottom:978.960288px;}
.ye7{bottom:979.770531px;}
.y1f3{bottom:981.121494px;}
.y16c{bottom:982.830450px;}
.y16a{bottom:982.920900px;}
.y1c9{bottom:983.641134px;}
.y21d{bottom:988.140639px;}
.y137{bottom:990.120450px;}
.y8d{bottom:990.121098px;}
.y1a1{bottom:991.470450px;}
.yc1{bottom:992.641098px;}
.y110{bottom:992.910450px;}
.y2f{bottom:996.150099px;}
.y1f2{bottom:998.401485px;}
.y169{bottom:998.490450px;}
.y1c8{bottom:1000.830945px;}
.y61{bottom:1001.640864px;}
.y21c{bottom:1005.330450px;}
.y136{bottom:1007.400450px;}
.y8c{bottom:1007.401089px;}
.y1a0{bottom:1007.760450px;}
.yc0{bottom:1009.830909px;}
.y10f{bottom:1013.160450px;}
.y167{bottom:1014.690900px;}
.ye6{bottom:1015.050450px;}
.y1f1{bottom:1015.591296px;}
.y1c7{bottom:1018.110936px;}
.y60{bottom:1018.830675px;}
.y2e{bottom:1020.360450px;}
.y21b{bottom:1022.610450px;}
.y19f{bottom:1023.960450px;}
.y135{bottom:1024.590450px;}
.y8b{bottom:1024.590900px;}
.y168{bottom:1029.901350px;}
.y166{bottom:1030.260450px;}
.y2d{bottom:1032.600450px;}
.y10e{bottom:1033.410450px;}
.y5f{bottom:1036.110666px;}
.ybf{bottom:1036.110864px;}
.y1f0{bottom:1037.371269px;}
.ye5{bottom:1037.550450px;}
.y19e{bottom:1040.250450px;}
.y134{bottom:1041.870450px;}
.y8a{bottom:1041.870891px;}
.y1c6{bottom:1044.210531px;}
.y21a{bottom:1044.390891px;}
.y165{bottom:1045.740900px;}
.y2c{bottom:1051.410639px;}
.y5e{bottom:1053.390657px;}
.ybe{bottom:1053.390855px;}
.y10d{bottom:1053.660450px;}
.y1ef{bottom:1054.651260px;}
.y19d{bottom:1056.540450px;}
.y133{bottom:1059.150450px;}
.y89{bottom:1059.150882px;}
.y164{bottom:1061.310450px;}
.y1c5{bottom:1061.400342px;}
.y219{bottom:1061.580702px;}
.ye4{bottom:1064.550450px;}
.y2b{bottom:1068.600450px;}
.y5d{bottom:1070.580468px;}
.ybd{bottom:1070.580666px;}
.y19c{bottom:1072.830450px;}
.y10c{bottom:1076.250648px;}
.y132{bottom:1076.340450px;}
.y1ee{bottom:1076.341053px;}
.y162{bottom:1077.600000px;}
.y218{bottom:1078.860693px;}
.y88{bottom:1085.340657px;}
.y2a{bottom:1086.869946px;}
.y5c{bottom:1087.860459px;}
.ybc{bottom:1087.860657px;}
.y19b{bottom:1089.120450px;}
.ye2{bottom:1091.371053px;}
.y163{bottom:1091.549550px;}
.ye3{bottom:1092.180450px;}
.y161{bottom:1093.080450px;}
.y10b{bottom:1093.530639px;}
.y131{bottom:1093.620450px;}
.y1ed{bottom:1093.621044px;}
.y109{bottom:1094.071377px;}
.y217{bottom:1100.640666px;}
.y87{bottom:1102.620648px;}
.y5b{bottom:1105.140648px;}
.y19a{bottom:1105.410450px;}
.y15f{bottom:1107.840450px;}
.y160{bottom:1108.650000px;}
.y10a{bottom:1110.720450px;}
.y130{bottom:1110.900450px;}
.y1ec{bottom:1110.901035px;}
.y108{bottom:1111.261188px;}
.y29{bottom:1112.520450px;}
.y216{bottom:1117.830477px;}
.y86{bottom:1119.900639px;}
.y199{bottom:1121.610450px;}
.y5a{bottom:1122.330459px;}
.y15e{bottom:1124.130450px;}
.y107{bottom:1130.430450px;}
.ye1{bottom:1136.910450px;}
.y28{bottom:1137.090450px;}
.y198{bottom:1137.630450px;}
.y59{bottom:1139.610450px;}
.y15d{bottom:1140.150450px;}
.y23{bottom:1155.000450px;}
.y56{bottom:1157.520450px;}
.y22{bottom:1176.240639px;}
.y55{bottom:1186.140450px;}
.y21{bottom:1186.950450px;}
.h15{height:17.010000px;}
.hb{height:21.240000px;}
.h12{height:27.907031px;}
.h10{height:30.953145px;}
.h7{height:32.130000px;}
.h1f{height:36.597656px;}
.h20{height:38.759766px;}
.h11{height:40.745391px;}
.h1a{height:41.743477px;}
.hd{height:43.152539px;}
.h9{height:43.769004px;}
.h14{height:44.129004px;}
.h18{height:44.234699px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h19{height:49.633475px;}
.h16{height:51.678896px;}
.ha{height:51.679688px;}
.h17{height:52.152503px;}
.h1d{height:54.904187px;}
.h1c{height:54.905843px;}
.h2{height:55.080000px;}
.hc{height:55.906348px;}
.hf{height:58.426172px;}
.h13{height:67.304355px;}
.he{height:67.701973px;}
.h8{height:69.689004px;}
.h21{height:69.717966px;}
.h1e{height:75.308379px;}
.h1b{height:77.709515px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:0.180000px;}
.w5{width:2.790000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w3{width:892.830000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:170.100000px;}
.x3a{left:182.520000px;}
.x8{left:190.620000px;}
.x19{left:191.970000px;}
.xd{left:194.580000px;}
.x4{left:203.484001px;}
.x1c{left:205.920000px;}
.x34{left:211.590000px;}
.x1d{left:213.209550px;}
.x1a{left:215.729424px;}
.x1e{left:220.320612px;}
.x10{left:222.118830px;}
.x1b{left:228.779973px;}
.xa{left:245.969208px;}
.x9{left:256.320000px;}
.x1f{left:267.120000px;}
.xf{left:280.889136px;}
.x39{left:285.300000px;}
.xc{left:287.460000px;}
.x2b{left:303.120000px;}
.x37{left:310.410000px;}
.x38{left:332.909469px;}
.x18{left:344.880000px;}
.x20{left:351.720000px;}
.x2a{left:354.960000px;}
.x36{left:370.350387px;}
.x35{left:374.489649px;}
.x21{left:390.599604px;}
.x2c{left:393.749397px;}
.x22{left:428.939631px;}
.x2d{left:438.929577px;}
.xb{left:446.400000px;}
.x3{left:454.959000px;}
.x23{left:465.479064px;}
.x2e{left:476.279127px;}
.x11{left:490.408839px;}
.x12{left:496.168335px;}
.x13{left:501.029037px;}
.x24{left:504.899748px;}
.x2f{left:516.329568px;}
.x14{left:518.038488px;}
.x25{left:545.040369px;}
.x30{left:558.989217px;}
.x6{left:576.540702px;}
.x26{left:582.750639px;}
.x7{left:599.220000px;}
.x15{left:603.178929px;}
.x16{left:609.748542px;}
.x17{left:617.667849px;}
.x31{left:637.018965px;}
.x27{left:652.590540px;}
.x32{left:675.808389px;}
.x28{left:686.789802px;}
.x33{left:714.418956px;}
.x29{left:717.299199px;}
.xe{left:722.700000px;}
@media print{
.vc{vertical-align:-24.960000pt;}
.v4{vertical-align:-24.000000pt;}
.va{vertical-align:-8.961888pt;}
.vb{vertical-align:-2.558400pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:0.961920pt;}
.v3{vertical-align:2.560000pt;}
.v7{vertical-align:5.760832pt;}
.v5{vertical-align:7.999968pt;}
.v1{vertical-align:23.040000pt;}
.v9{vertical-align:23.998944pt;}
.v2{vertical-align:26.560000pt;}
.vd{vertical-align:27.518400pt;}
.v8{vertical-align:30.717312pt;}
.ls53{letter-spacing:-0.641280pt;}
.ls60{letter-spacing:-0.550432pt;}
.ls5e{letter-spacing:-0.545088pt;}
.ls5d{letter-spacing:-0.534400pt;}
.ls5f{letter-spacing:-0.529056pt;}
.ls4b{letter-spacing:-0.475616pt;}
.ls5c{letter-spacing:-0.363392pt;}
.ls7a{letter-spacing:-0.325984pt;}
.ls5a{letter-spacing:-0.293920pt;}
.ls3b{letter-spacing:-0.256512pt;}
.ls52{letter-spacing:-0.224448pt;}
.ls5b{letter-spacing:-0.208416pt;}
.ls61{letter-spacing:-0.192384pt;}
.ls78{letter-spacing:-0.187040pt;}
.ls21{letter-spacing:-0.171008pt;}
.ls51{letter-spacing:-0.165664pt;}
.ls39{letter-spacing:-0.160320pt;}
.ls77{letter-spacing:-0.154976pt;}
.ls4c{letter-spacing:-0.149632pt;}
.ls43{letter-spacing:-0.144288pt;}
.ls3e{letter-spacing:-0.138944pt;}
.ls44{letter-spacing:-0.133600pt;}
.ls4f{letter-spacing:-0.128256pt;}
.ls18{letter-spacing:-0.122912pt;}
.ls27{letter-spacing:-0.117568pt;}
.ls42{letter-spacing:-0.112224pt;}
.ls3d{letter-spacing:-0.106880pt;}
.ls25{letter-spacing:-0.101536pt;}
.ls2a{letter-spacing:-0.096192pt;}
.ls26{letter-spacing:-0.090848pt;}
.ls20{letter-spacing:-0.085504pt;}
.ls37{letter-spacing:-0.080160pt;}
.ls3c{letter-spacing:-0.074816pt;}
.ls36{letter-spacing:-0.069472pt;}
.ls4a{letter-spacing:-0.064128pt;}
.ls75{letter-spacing:-0.062400pt;}
.ls28{letter-spacing:-0.058784pt;}
.ls19{letter-spacing:-0.053440pt;}
.ls16{letter-spacing:-0.051264pt;}
.ls1e{letter-spacing:-0.048096pt;}
.ls38{letter-spacing:-0.042752pt;}
.ls70{letter-spacing:-0.038400pt;}
.ls24{letter-spacing:-0.037408pt;}
.ls22{letter-spacing:-0.032064pt;}
.ls6f{letter-spacing:-0.028800pt;}
.ls35{letter-spacing:-0.026720pt;}
.ls71{letter-spacing:-0.024000pt;}
.ls17{letter-spacing:-0.021376pt;}
.ls6e{letter-spacing:-0.019200pt;}
.ls29{letter-spacing:-0.016032pt;}
.ls6b{letter-spacing:-0.014400pt;}
.ls23{letter-spacing:-0.010688pt;}
.ls6d{letter-spacing:-0.009600pt;}
.ls1f{letter-spacing:-0.005344pt;}
.ls63{letter-spacing:-0.004800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.001152pt;}
.ls56{letter-spacing:0.004800pt;}
.ls12{letter-spacing:0.005344pt;}
.ls15{letter-spacing:0.009600pt;}
.ls1{letter-spacing:0.010688pt;}
.ls69{letter-spacing:0.014400pt;}
.ls34{letter-spacing:0.016032pt;}
.ls57{letter-spacing:0.019200pt;}
.lsf{letter-spacing:0.021376pt;}
.ls67{letter-spacing:0.024000pt;}
.ls14{letter-spacing:0.026720pt;}
.ls6a{letter-spacing:0.028800pt;}
.ls1b{letter-spacing:0.029824pt;}
.ls11{letter-spacing:0.032064pt;}
.ls55{letter-spacing:0.033600pt;}
.ls1a{letter-spacing:0.037280pt;}
.ls49{letter-spacing:0.037408pt;}
.ls66{letter-spacing:0.038400pt;}
.ls2{letter-spacing:0.040992pt;}
.ls48{letter-spacing:0.042752pt;}
.ls59{letter-spacing:0.043200pt;}
.ls65{letter-spacing:0.048000pt;}
.ls76{letter-spacing:0.048096pt;}
.ls7{letter-spacing:0.052704pt;}
.lsa{letter-spacing:0.053440pt;}
.lsd{letter-spacing:0.058784pt;}
.ls73{letter-spacing:0.062400pt;}
.lsc{letter-spacing:0.064128pt;}
.ls3{letter-spacing:0.064416pt;}
.ls68{letter-spacing:0.067200pt;}
.ls2f{letter-spacing:0.069472pt;}
.ls62{letter-spacing:0.072000pt;}
.ls8{letter-spacing:0.074816pt;}
.ls58{letter-spacing:0.076800pt;}
.lse{letter-spacing:0.080160pt;}
.ls72{letter-spacing:0.081600pt;}
.ls10{letter-spacing:0.085504pt;}
.ls64{letter-spacing:0.086400pt;}
.ls9{letter-spacing:0.090848pt;}
.ls2b{letter-spacing:0.091200pt;}
.ls2c{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.096192pt;}
.ls13{letter-spacing:0.101536pt;}
.ls3a{letter-spacing:0.106880pt;}
.ls3f{letter-spacing:0.112224pt;}
.ls2d{letter-spacing:0.117568pt;}
.ls45{letter-spacing:0.122912pt;}
.ls32{letter-spacing:0.128256pt;}
.ls47{letter-spacing:0.133600pt;}
.ls79{letter-spacing:0.138944pt;}
.ls4e{letter-spacing:0.144288pt;}
.ls50{letter-spacing:0.149632pt;}
.ls41{letter-spacing:0.154976pt;}
.ls6c{letter-spacing:0.158400pt;}
.ls4{letter-spacing:0.160000pt;}
.ls40{letter-spacing:0.160320pt;}
.ls1c{letter-spacing:0.160992pt;}
.ls5{letter-spacing:0.240000pt;}
.ls1d{letter-spacing:0.321408pt;}
.ls4d{letter-spacing:0.721440pt;}
.ls30{letter-spacing:1.042080pt;}
.ls31{letter-spacing:1.357376pt;}
.ls33{letter-spacing:1.998656pt;}
.ls54{letter-spacing:3.601856pt;}
.ls2e{letter-spacing:6.400000pt;}
.ls74{letter-spacing:7.759488pt;}
.ls46{letter-spacing:12.237760pt;}
.ws1{word-spacing:-58.560000pt;}
.ws1ad{word-spacing:-53.440000pt;}
.ws182{word-spacing:-13.520320pt;}
.ws36{word-spacing:-13.477568pt;}
.wsa2{word-spacing:-13.472224pt;}
.ws1ae{word-spacing:-13.424128pt;}
.ws1af{word-spacing:-13.386720pt;}
.ws1b0{word-spacing:-13.365344pt;}
.ws1ac{word-spacing:-13.360000pt;}
.ws1aa{word-spacing:-13.333280pt;}
.ws1ab{word-spacing:-13.253120pt;}
.ws1a9{word-spacing:-13.247776pt;}
.ws148{word-spacing:-12.067200pt;}
.ws15c{word-spacing:-12.062400pt;}
.ws147{word-spacing:-12.038400pt;}
.ws149{word-spacing:-12.009600pt;}
.ws146{word-spacing:-11.985600pt;}
.ws15b{word-spacing:-11.937600pt;}
.ws2{word-spacing:-9.520992pt;}
.ws4{word-spacing:-8.961408pt;}
.ws3{word-spacing:-8.640000pt;}
.ws9a{word-spacing:-0.395456pt;}
.ws1f3{word-spacing:-0.374080pt;}
.ws1c2{word-spacing:-0.363392pt;}
.ws135{word-spacing:-0.358048pt;}
.ws1b7{word-spacing:-0.347360pt;}
.ws1c0{word-spacing:-0.336672pt;}
.ws18f{word-spacing:-0.331328pt;}
.ws1d2{word-spacing:-0.315296pt;}
.ws169{word-spacing:-0.299264pt;}
.wse6{word-spacing:-0.293920pt;}
.ws1a2{word-spacing:-0.272544pt;}
.ws15f{word-spacing:-0.267200pt;}
.ws1fd{word-spacing:-0.261856pt;}
.ws19e{word-spacing:-0.256512pt;}
.ws141{word-spacing:-0.230400pt;}
.ws152{word-spacing:-0.225600pt;}
.ws5c{word-spacing:-0.224448pt;}
.ws157{word-spacing:-0.182400pt;}
.ws1cc{word-spacing:-0.176352pt;}
.ws1f7{word-spacing:-0.160320pt;}
.ws150{word-spacing:-0.158400pt;}
.ws1a{word-spacing:-0.154976pt;}
.ws5d{word-spacing:-0.144288pt;}
.ws1e5{word-spacing:-0.133600pt;}
.wsec{word-spacing:-0.128256pt;}
.ws1b4{word-spacing:-0.117568pt;}
.ws1d6{word-spacing:-0.106880pt;}
.ws99{word-spacing:-0.096192pt;}
.ws1d0{word-spacing:-0.074816pt;}
.ws9f{word-spacing:-0.069472pt;}
.wsce{word-spacing:-0.064128pt;}
.ws8{word-spacing:-0.059648pt;}
.wsb6{word-spacing:-0.053440pt;}
.wsfd{word-spacing:-0.048096pt;}
.ws9e{word-spacing:-0.042752pt;}
.ws6{word-spacing:-0.037408pt;}
.ws94{word-spacing:-0.026720pt;}
.wsb5{word-spacing:-0.021376pt;}
.ws1a8{word-spacing:-0.016032pt;}
.wsa0{word-spacing:-0.010688pt;}
.ws5{word-spacing:-0.005344pt;}
.ws0{word-spacing:0.000000pt;}
.ws31{word-spacing:0.005344pt;}
.ws9{word-spacing:0.007456pt;}
.ws1df{word-spacing:0.010688pt;}
.ws13d{word-spacing:0.016032pt;}
.wsb{word-spacing:0.017568pt;}
.wsfe{word-spacing:0.021376pt;}
.wsc{word-spacing:0.029280pt;}
.wsba{word-spacing:0.037408pt;}
.wsa{word-spacing:0.040992pt;}
.ws1b{word-spacing:0.048096pt;}
.wsb9{word-spacing:0.053440pt;}
.ws155{word-spacing:0.062400pt;}
.ws95{word-spacing:0.064128pt;}
.ws35{word-spacing:0.067200pt;}
.ws93{word-spacing:0.069472pt;}
.ws14a{word-spacing:0.072000pt;}
.ws42{word-spacing:0.074816pt;}
.ws15d{word-spacing:0.076800pt;}
.wsc1{word-spacing:0.080160pt;}
.ws143{word-spacing:0.081600pt;}
.ws8f{word-spacing:0.085504pt;}
.ws41{word-spacing:0.090848pt;}
.ws15e{word-spacing:0.096000pt;}
.ws7{word-spacing:0.096192pt;}
.wsfb{word-spacing:0.101536pt;}
.ws9c{word-spacing:0.106880pt;}
.ws14b{word-spacing:0.110400pt;}
.wscc{word-spacing:0.112224pt;}
.ws144{word-spacing:0.115200pt;}
.ws4b{word-spacing:0.117568pt;}
.ws14e{word-spacing:0.120000pt;}
.ws156{word-spacing:0.124800pt;}
.wsab{word-spacing:0.128256pt;}
.ws158{word-spacing:0.129600pt;}
.ws19{word-spacing:0.133600pt;}
.ws14d{word-spacing:0.134400pt;}
.ws91{word-spacing:0.138944pt;}
.ws140{word-spacing:0.139200pt;}
.ws154{word-spacing:0.144000pt;}
.wsf9{word-spacing:0.144288pt;}
.ws34{word-spacing:0.148800pt;}
.ws6b{word-spacing:0.149632pt;}
.ws13f{word-spacing:0.153600pt;}
.ws6a{word-spacing:0.154976pt;}
.ws145{word-spacing:0.158400pt;}
.ws9d{word-spacing:0.160320pt;}
.ws142{word-spacing:0.163200pt;}
.ws134{word-spacing:0.165664pt;}
.ws14c{word-spacing:0.168000pt;}
.wseb{word-spacing:0.171008pt;}
.ws14f{word-spacing:0.172800pt;}
.ws198{word-spacing:0.176352pt;}
.ws151{word-spacing:0.177600pt;}
.ws105{word-spacing:0.181696pt;}
.ws15a{word-spacing:0.182400pt;}
.wscb{word-spacing:0.187040pt;}
.ws153{word-spacing:0.187200pt;}
.ws96{word-spacing:0.192384pt;}
.ws159{word-spacing:0.196800pt;}
.wsa1{word-spacing:0.203072pt;}
.ws1d9{word-spacing:0.208416pt;}
.ws9b{word-spacing:0.213760pt;}
.ws1d1{word-spacing:0.219104pt;}
.ws97{word-spacing:0.224448pt;}
.wsdf{word-spacing:0.229792pt;}
.ws1b8{word-spacing:0.235136pt;}
.wsf8{word-spacing:0.240480pt;}
.ws1c8{word-spacing:0.245824pt;}
.ws1c{word-spacing:0.251168pt;}
.ws1c1{word-spacing:0.267200pt;}
.wsbf{word-spacing:0.272544pt;}
.ws56{word-spacing:0.293920pt;}
.ws4e{word-spacing:0.304608pt;}
.ws193{word-spacing:0.400800pt;}
.ws2e{word-spacing:0.406144pt;}
.ws13c{word-spacing:0.507680pt;}
.ws1d8{word-spacing:0.529056pt;}
.wsbe{word-spacing:0.550432pt;}
.ws16b{word-spacing:0.598528pt;}
.wsef{word-spacing:0.609216pt;}
.ws136{word-spacing:0.614560pt;}
.ws2a{word-spacing:0.619904pt;}
.wsf0{word-spacing:0.625248pt;}
.ws64{word-spacing:0.630592pt;}
.ws4a{word-spacing:0.651968pt;}
.ws2c{word-spacing:0.694720pt;}
.ws80{word-spacing:0.705408pt;}
.ws2d{word-spacing:0.716096pt;}
.ws27{word-spacing:0.726784pt;}
.ws81{word-spacing:0.737472pt;}
.ws7f{word-spacing:0.742816pt;}
.ws112{word-spacing:0.774880pt;}
.ws26{word-spacing:0.780224pt;}
.ws101{word-spacing:0.790912pt;}
.ws17a{word-spacing:0.796256pt;}
.ws179{word-spacing:0.860384pt;}
.ws3d{word-spacing:0.967264pt;}
.ws1a3{word-spacing:0.972608pt;}
.ws43{word-spacing:1.010016pt;}
.ws24{word-spacing:1.020704pt;}
.ws25{word-spacing:1.036736pt;}
.ws51{word-spacing:1.047424pt;}
.ws16e{word-spacing:1.063456pt;}
.ws44{word-spacing:1.079488pt;}
.ws16f{word-spacing:1.084832pt;}
.ws123{word-spacing:1.106208pt;}
.ws107{word-spacing:1.287904pt;}
.ws52{word-spacing:1.357376pt;}
.ws163{word-spacing:1.405472pt;}
.ws164{word-spacing:1.432192pt;}
.ws4f{word-spacing:1.437536pt;}
.ws77{word-spacing:1.496320pt;}
.ws50{word-spacing:1.517696pt;}
.ws53{word-spacing:1.549760pt;}
.ws191{word-spacing:1.592512pt;}
.ws160{word-spacing:1.597856pt;}
.ws12d{word-spacing:1.613888pt;}
.ws1f4{word-spacing:1.635264pt;}
.ws185{word-spacing:1.656640pt;}
.ws106{word-spacing:1.699392pt;}
.ws139{word-spacing:1.742144pt;}
.ws1f9{word-spacing:1.784896pt;}
.ws108{word-spacing:1.800928pt;}
.ws1f8{word-spacing:1.811616pt;}
.ws11a{word-spacing:1.886432pt;}
.ws176{word-spacing:1.907808pt;}
.wsaa{word-spacing:1.923840pt;}
.wsf1{word-spacing:1.982624pt;}
.ws63{word-spacing:1.987968pt;}
.ws54{word-spacing:2.014688pt;}
.ws55{word-spacing:2.030720pt;}
.ws196{word-spacing:2.046752pt;}
.ws11{word-spacing:2.223104pt;}
.ws85{word-spacing:2.233792pt;}
.ws10{word-spacing:2.265856pt;}
.ws61{word-spacing:2.297920pt;}
.ws74{word-spacing:2.303264pt;}
.ws73{word-spacing:2.313952pt;}
.ws60{word-spacing:2.319296pt;}
.ws165{word-spacing:2.329984pt;}
.ws75{word-spacing:2.346016pt;}
.ws78{word-spacing:2.420832pt;}
.wsf2{word-spacing:2.543744pt;}
.ws1a0{word-spacing:2.549088pt;}
.wsc2{word-spacing:2.559776pt;}
.ws58{word-spacing:2.720096pt;}
.wsb0{word-spacing:2.725440pt;}
.ws57{word-spacing:2.730784pt;}
.wsd9{word-spacing:2.880416pt;}
.ws14{word-spacing:2.901792pt;}
.ws166{word-spacing:2.928512pt;}
.ws186{word-spacing:2.955232pt;}
.ws13{word-spacing:2.965920pt;}
.ws5e{word-spacing:2.987296pt;}
.ws15{word-spacing:3.008672pt;}
.ws37{word-spacing:3.030048pt;}
.ws5f{word-spacing:3.035392pt;}
.wsd8{word-spacing:3.195712pt;}
.wsf3{word-spacing:3.201056pt;}
.wsd7{word-spacing:3.206400pt;}
.ws102{word-spacing:3.227776pt;}
.wsd6{word-spacing:3.270528pt;}
.ws116{word-spacing:3.366720pt;}
.ws10f{word-spacing:3.372064pt;}
.ws115{word-spacing:3.382752pt;}
.ws6d{word-spacing:3.388096pt;}
.wsf4{word-spacing:3.404128pt;}
.wscf{word-spacing:3.516352pt;}
.ws1c7{word-spacing:3.537728pt;}
.ws1d3{word-spacing:3.543072pt;}
.ws1bf{word-spacing:3.676672pt;}
.ws189{word-spacing:3.703392pt;}
.ws118{word-spacing:3.826304pt;}
.wsb4{word-spacing:3.831648pt;}
.wsdb{word-spacing:3.858368pt;}
.ws119{word-spacing:3.895776pt;}
.ws1a7{word-spacing:3.911808pt;}
.ws1d7{word-spacing:3.938528pt;}
.ws11d{word-spacing:4.018688pt;}
.wsdc{word-spacing:4.029376pt;}
.ws11c{word-spacing:4.040064pt;}
.ws1ea{word-spacing:4.136256pt;}
.ws16{word-spacing:4.157632pt;}
.ws183{word-spacing:4.216416pt;}
.ws184{word-spacing:4.269856pt;}
.ws1b5{word-spacing:4.317952pt;}
.wsf7{word-spacing:4.328640pt;}
.ws1b6{word-spacing:4.350016pt;}
.ws137{word-spacing:4.451552pt;}
.ws30{word-spacing:4.467584pt;}
.wsc7{word-spacing:4.483616pt;}
.ws109{word-spacing:4.521024pt;}
.ws1b1{word-spacing:4.547744pt;}
.ws1b2{word-spacing:4.569120pt;}
.ws1eb{word-spacing:4.697376pt;}
.ws19f{word-spacing:4.777536pt;}
.ws16c{word-spacing:4.804256pt;}
.ws16d{word-spacing:4.809600pt;}
.ws180{word-spacing:4.857696pt;}
.ws10d{word-spacing:4.863040pt;}
.ws10e{word-spacing:4.868384pt;}
.ws1fa{word-spacing:4.879072pt;}
.ws10a{word-spacing:4.905792pt;}
.ws1f{word-spacing:4.916480pt;}
.ws86{word-spacing:4.953888pt;}
.ws20{word-spacing:4.980608pt;}
.ws181{word-spacing:4.991296pt;}
.ws71{word-spacing:4.996640pt;}
.ws132{word-spacing:5.130240pt;}
.ws129{word-spacing:5.156960pt;}
.ws12a{word-spacing:5.162304pt;}
.ws128{word-spacing:5.194368pt;}
.ws1e{word-spacing:5.210400pt;}
.ws1ce{word-spacing:5.215744pt;}
.ws1d{word-spacing:5.231776pt;}
.ws1cd{word-spacing:5.263840pt;}
.wsa7{word-spacing:5.429504pt;}
.ws192{word-spacing:5.445536pt;}
.ws13a{word-spacing:5.450880pt;}
.ws28{word-spacing:5.488288pt;}
.ws162{word-spacing:5.498976pt;}
.wsa8{word-spacing:5.504320pt;}
.ws161{word-spacing:5.515008pt;}
.ws194{word-spacing:5.531040pt;}
.ws29{word-spacing:5.536384pt;}
.ws21{word-spacing:5.611200pt;}
.ws22{word-spacing:5.637920pt;}
.ws19d{word-spacing:5.739456pt;}
.wsd1{word-spacing:5.835648pt;}
.wsd0{word-spacing:5.846336pt;}
.wsa9{word-spacing:5.905120pt;}
.wsd2{word-spacing:5.921152pt;}
.ws62{word-spacing:5.931840pt;}
.ws197{word-spacing:6.076128pt;}
.ws19b{word-spacing:6.102848pt;}
.ws19a{word-spacing:6.140256pt;}
.ws104{word-spacing:6.231104pt;}
.ws103{word-spacing:6.257824pt;}
.ws138{word-spacing:6.268512pt;}
.ws1da{word-spacing:6.412800pt;}
.ws1db{word-spacing:6.434176pt;}
.ws177{word-spacing:6.482272pt;}
.ws32{word-spacing:6.492960pt;}
.ws3a{word-spacing:6.503648pt;}
.ws178{word-spacing:6.535712pt;}
.ws2f{word-spacing:6.541056pt;}
.ws1e4{word-spacing:6.557088pt;}
.ws3b{word-spacing:6.562432pt;}
.ws3c{word-spacing:6.583808pt;}
.wsda{word-spacing:6.717408pt;}
.wsc8{word-spacing:6.722752pt;}
.ws126{word-spacing:6.797568pt;}
.ws125{word-spacing:6.824288pt;}
.ws65{word-spacing:6.856352pt;}
.wsf{word-spacing:7.027360pt;}
.wsff{word-spacing:7.038048pt;}
.ws8a{word-spacing:7.118208pt;}
.ws89{word-spacing:7.144928pt;}
.ws17d{word-spacing:7.193024pt;}
.ws6c{word-spacing:7.321280pt;}
.ws8d{word-spacing:7.369376pt;}
.ws1d5{word-spacing:7.486944pt;}
.wsc5{word-spacing:7.497632pt;}
.ws1d4{word-spacing:7.502976pt;}
.ws111{word-spacing:7.700704pt;}
.ws3f{word-spacing:7.706048pt;}
.ws6f{word-spacing:7.775520pt;}
.ws3e{word-spacing:7.786208pt;}
.wsea{word-spacing:7.828960pt;}
.wsf6{word-spacing:7.834304pt;}
.ws66{word-spacing:7.882400pt;}
.ws1ba{word-spacing:7.978592pt;}
.ws195{word-spacing:7.983936pt;}
.ws170{word-spacing:8.005312pt;}
.ws16a{word-spacing:8.069440pt;}
.ws6e{word-spacing:8.074784pt;}
.ws70{word-spacing:8.106848pt;}
.ws1b9{word-spacing:8.122880pt;}
.wsb1{word-spacing:8.165632pt;}
.wsb2{word-spacing:8.176320pt;}
.ws69{word-spacing:8.187008pt;}
.ws171{word-spacing:8.213728pt;}
.ws100{word-spacing:8.299232pt;}
.ws122{word-spacing:8.309920pt;}
.ws1e0{word-spacing:8.315264pt;}
.ws121{word-spacing:8.422144pt;}
.ws1e1{word-spacing:8.427488pt;}
.ws1a5{word-spacing:8.630560pt;}
.wsac{word-spacing:8.635904pt;}
.ws1a4{word-spacing:8.641248pt;}
.ws17e{word-spacing:8.667968pt;}
.ws17f{word-spacing:8.732096pt;}
.ws120{word-spacing:8.940512pt;}
.ws18d{word-spacing:8.961888pt;}
.ws17{word-spacing:8.967232pt;}
.ws84{word-spacing:8.972576pt;}
.ws18{word-spacing:9.020672pt;}
.ws83{word-spacing:9.052736pt;}
.ws18e{word-spacing:9.058080pt;}
.ws18c{word-spacing:9.063424pt;}
.ws173{word-spacing:9.143584pt;}
.wsc6{word-spacing:9.261152pt;}
.wsbb{word-spacing:9.282528pt;}
.wsbd{word-spacing:9.293216pt;}
.ws8e{word-spacing:9.341312pt;}
.wsdd{word-spacing:9.357344pt;}
.ws87{word-spacing:9.437504pt;}
.wsde{word-spacing:9.485600pt;}
.ws1bd{word-spacing:9.592480pt;}
.ws1bc{word-spacing:9.720736pt;}
.ws1e2{word-spacing:9.731424pt;}
.wsad{word-spacing:9.736768pt;}
.ws1dc{word-spacing:9.774176pt;}
.wse8{word-spacing:9.779520pt;}
.wse9{word-spacing:9.811584pt;}
.ws172{word-spacing:9.907776pt;}
.ws1e3{word-spacing:10.084128pt;}
.ws7a{word-spacing:10.207040pt;}
.ws79{word-spacing:10.228416pt;}
.wsa6{word-spacing:10.233760pt;}
.ws12b{word-spacing:10.297888pt;}
.ws12c{word-spacing:10.335296pt;}
.ws1fb{word-spacing:10.378048pt;}
.ws1fc{word-spacing:10.394080pt;}
.ws168{word-spacing:10.426144pt;}
.ws127{word-spacing:10.431488pt;}
.ws90{word-spacing:10.436832pt;}
.ws19c{word-spacing:10.463552pt;}
.wse0{word-spacing:10.730752pt;}
.ws39{word-spacing:10.875040pt;}
.ws12{word-spacing:10.896416pt;}
.ws8b{word-spacing:10.944512pt;}
.ws38{word-spacing:10.955200pt;}
.wsd4{word-spacing:10.965888pt;}
.wsd5{word-spacing:10.976576pt;}
.ws8c{word-spacing:10.987264pt;}
.wse3{word-spacing:11.062080pt;}
.ws124{word-spacing:11.195680pt;}
.ws1f2{word-spacing:11.206368pt;}
.ws11e{word-spacing:11.243776pt;}
.ws11f{word-spacing:11.275840pt;}
.ws1f1{word-spacing:11.281184pt;}
.ws7c{word-spacing:11.286528pt;}
.ws68{word-spacing:11.297216pt;}
.ws67{word-spacing:11.318592pt;}
.ws7b{word-spacing:11.361344pt;}
.ws11b{word-spacing:11.644576pt;}
.ws33{word-spacing:11.698016pt;}
.wse1{word-spacing:11.810240pt;}
.ws13b{word-spacing:11.847648pt;}
.wse2{word-spacing:11.927808pt;}
.wsae{word-spacing:12.061408pt;}
.ws82{word-spacing:12.152256pt;}
.wsaf{word-spacing:12.157600pt;}
.ws1ef{word-spacing:12.162944pt;}
.wse4{word-spacing:12.216384pt;}
.ws1f0{word-spacing:12.232416pt;}
.ws199{word-spacing:12.478240pt;}
.ws46{word-spacing:12.675968pt;}
.wse5{word-spacing:12.724064pt;}
.wsc9{word-spacing:12.841632pt;}
.ws167{word-spacing:13.130208pt;}
.wsca{word-spacing:13.242432pt;}
.ws190{word-spacing:13.279840pt;}
.ws7d{word-spacing:13.424128pt;}
.ws7e{word-spacing:13.547040pt;}
.ws1a1{word-spacing:14.070752pt;}
.ws114{word-spacing:14.081440pt;}
.ws59{word-spacing:14.583776pt;}
.wsc4{word-spacing:14.589120pt;}
.wsc3{word-spacing:14.605152pt;}
.ws5a{word-spacing:14.738752pt;}
.ws76{word-spacing:15.032672pt;}
.wsa5{word-spacing:15.358656pt;}
.wsb3{word-spacing:15.364000pt;}
.wsa4{word-spacing:15.540352pt;}
.ws1be{word-spacing:15.679296pt;}
.wsd{word-spacing:15.807552pt;}
.ws4d{word-spacing:16.101472pt;}
.ws4c{word-spacing:16.117504pt;}
.ws113{word-spacing:16.336608pt;}
.wsd3{word-spacing:16.646560pt;}
.ws174{word-spacing:16.721376pt;}
.ws175{word-spacing:16.758784pt;}
.ws72{word-spacing:17.266464pt;}
.ws12e{word-spacing:17.287840pt;}
.ws18b{word-spacing:17.592448pt;}
.ws18a{word-spacing:17.667264pt;}
.ws1c9{word-spacing:17.982560pt;}
.ws1cb{word-spacing:18.041344pt;}
.ws1ca{word-spacing:18.142880pt;}
.ws88{word-spacing:18.249760pt;}
.ws117{word-spacing:18.410080pt;}
.wse{word-spacing:18.565056pt;}
.wse7{word-spacing:18.575744pt;}
.wsbc{word-spacing:18.858976pt;}
.ws23{word-spacing:18.901728pt;}
.ws2b{word-spacing:19.184960pt;}
.wsc0{word-spacing:19.532320pt;}
.ws110{word-spacing:19.842272pt;}
.ws10c{word-spacing:19.847616pt;}
.ws10b{word-spacing:19.927776pt;}
.ws133{word-spacing:20.152224pt;}
.wsf5{word-spacing:20.317888pt;}
.ws40{word-spacing:20.483552pt;}
.ws1c6{word-spacing:20.643872pt;}
.ws1b3{word-spacing:20.830912pt;}
.ws188{word-spacing:21.194304pt;}
.ws187{word-spacing:21.210336pt;}
.ws1f6{word-spacing:22.070720pt;}
.ws1f5{word-spacing:22.161568pt;}
.ws1a6{word-spacing:22.273792pt;}
.ws5b{word-spacing:22.284480pt;}
.ws1cf{word-spacing:23.037984pt;}
.ws1ec{word-spacing:24.641184pt;}
.ws1c4{word-spacing:24.951136pt;}
.ws1c3{word-spacing:24.961824pt;}
.ws1c5{word-spacing:25.058016pt;}
.ws47{word-spacing:25.287808pt;}
.ws49{word-spacing:25.351936pt;}
.ws1e9{word-spacing:25.367968pt;}
.ws48{word-spacing:25.400032pt;}
.ws1bb{word-spacing:26.223008pt;}
.ws1ed{word-spacing:26.821536pt;}
.ws1ee{word-spacing:26.891008pt;}
.ws1e8{word-spacing:27.206304pt;}
.ws1e7{word-spacing:27.687264pt;}
.ws45{word-spacing:30.086720pt;}
.wsb7{word-spacing:30.957792pt;}
.wsb8{word-spacing:30.984512pt;}
.wsa3{word-spacing:31.684576pt;}
.ws12f{word-spacing:31.983840pt;}
.ws130{word-spacing:32.074688pt;}
.ws131{word-spacing:32.144160pt;}
.ws1e6{word-spacing:33.613760pt;}
.wsed{word-spacing:36.210944pt;}
.wsee{word-spacing:36.232320pt;}
.ws17b{word-spacing:40.400640pt;}
.ws17c{word-spacing:40.486144pt;}
.wscd{word-spacing:44.424672pt;}
.ws1dd{word-spacing:54.914944pt;}
.wsfa{word-spacing:80.047776pt;}
.wsfc{word-spacing:161.682720pt;}
.ws1de{word-spacing:174.396096pt;}
.ws92{word-spacing:178.959872pt;}
.ws98{word-spacing:308.402240pt;}
.ws13e{word-spacing:619.324800pt;}
._55{margin-left:-1778.851200pt;}
._53{margin-left:-326.716800pt;}
._7{margin-left:-179.168288pt;}
._38{margin-left:-47.999808pt;}
._27{margin-left:-45.424000pt;}
._39{margin-left:-37.440064pt;}
._78{margin-left:-27.452128pt;}
._5{margin-left:-18.757440pt;}
._2d{margin-left:-15.011296pt;}
._2c{margin-left:-14.049376pt;}
._6{margin-left:-8.913792pt;}
._2b{margin-left:-6.947200pt;}
._37{margin-left:-4.959232pt;}
._1d{margin-left:-3.596512pt;}
._1{margin-left:-0.903136pt;}
._2{width:0.977952pt;}
._25{width:3.259840pt;}
._24{width:4.446208pt;}
._29{width:8.667968pt;}
._26{width:10.559744pt;}
._28{width:18.661248pt;}
._22{width:22.134848pt;}
._1c{width:27.115456pt;}
._35{width:30.300480pt;}
._1a{width:32.560992pt;}
._19{width:35.655168pt;}
._2a{width:38.770720pt;}
._1b{width:40.288416pt;}
._17{width:41.859552pt;}
._20{width:46.252320pt;}
._21{width:48.598336pt;}
._12{width:49.501472pt;}
._36{width:51.932992pt;}
._16{width:54.140064pt;}
._10{width:55.347808pt;}
._11{width:57.544192pt;}
._32{width:61.696480pt;}
._34{width:64.256256pt;}
._1f{width:67.200800pt;}
._51{width:69.097920pt;}
._33{width:70.973664pt;}
._15{width:73.223488pt;}
._13{width:79.304960pt;}
._14{width:82.559456pt;}
._50{width:88.619552pt;}
._52{width:94.059744pt;}
._3d{width:100.509952pt;}
._3e{width:104.704992pt;}
._1e{width:107.692288pt;}
._2f{width:111.358272pt;}
._3c{width:119.101728pt;}
._31{width:119.999520pt;}
._23{width:123.318144pt;}
._41{width:127.069632pt;}
._30{width:130.559264pt;}
._42{width:138.591296pt;}
._4c{width:140.798368pt;}
._4e{width:144.640704pt;}
._40{width:146.591264pt;}
._2e{width:149.263264pt;}
._4d{width:152.031456pt;}
._47{width:153.917888pt;}
._5a{width:155.343136pt;}
._49{width:158.080864pt;}
._4b{width:159.710784pt;}
._63{width:164.160000pt;}
._48{width:165.439552pt;}
._46{width:173.439520pt;}
._60{width:180.159136pt;}
._68{width:190.416000pt;}
._e{width:206.689888pt;}
._64{width:218.328000pt;}
._a{width:232.512096pt;}
._65{width:248.923200pt;}
._9{width:259.520672pt;}
._58{width:277.537472pt;}
._67{width:279.369600pt;}
._5b{width:290.246400pt;}
._70{width:298.555936pt;}
._61{width:300.196800pt;}
._d{width:308.119008pt;}
._62{width:316.522336pt;}
._6a{width:347.616000pt;}
._73{width:351.686400pt;}
._71{width:359.938336pt;}
._3b{width:361.927744pt;}
._6c{width:367.694400pt;}
._f{width:377.863552pt;}
._72{width:379.828800pt;}
._6b{width:381.134400pt;}
._59{width:390.720000pt;}
._b{width:404.375136pt;}
._77{width:412.780800pt;}
._c{width:429.866016pt;}
._8{width:431.014976pt;}
._5f{width:434.145600pt;}
._6e{width:439.598400pt;}
._3f{width:441.927424pt;}
._5e{width:450.720000pt;}
._4f{width:455.159168pt;}
._18{width:469.294048pt;}
._0{width:473.837952pt;}
._6f{width:480.960000pt;}
._66{width:485.534400pt;}
._6d{width:488.956800pt;}
._5d{width:495.585600pt;}
._3a{width:498.632608pt;}
._44{width:518.998592pt;}
._45{width:532.406688pt;}
._43{width:544.916992pt;}
._5c{width:547.843200pt;}
._57{width:555.840000pt;}
._4a{width:557.352480pt;}
._75{width:566.400000pt;}
._54{width:571.843200pt;}
._69{width:603.835200pt;}
._74{width:606.403200pt;}
._76{width:618.561600pt;}
._56{width:729.868800pt;}
._3{width:1279.230784pt;}
._4{width:1311.401440pt;}
.fsa{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:37.440000pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.fs5{font-size:85.440000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:2.800400pt;}
.y27{bottom:3.920400pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y20{bottom:123.790666pt;}
.y17{bottom:175.052000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y26{bottom:243.706667pt;}
.y57{bottom:244.826667pt;}
.y24{bottom:247.547067pt;}
.y25{bottom:247.627067pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y54{bottom:293.147067pt;}
.y15c{bottom:295.387067pt;}
.y1c4{bottom:295.389531pt;}
.y85{bottom:298.348243pt;}
.y197{bottom:298.427067pt;}
.y215{bottom:298.830395pt;}
.y53{bottom:303.067067pt;}
.ye{bottom:309.452000pt;}
.y15a{bottom:309.867067pt;}
.y1c3{bottom:310.749523pt;}
.ybb{bottom:311.867067pt;}
.y196{bottom:312.907067pt;}
.y84{bottom:313.708235pt;}
.y214{bottom:318.190371pt;}
.y52{bottom:320.908227pt;}
.y159{bottom:324.267067pt;}
.y1c2{bottom:326.109515pt;}
.y195{bottom:327.387067pt;}
.yba{bottom:327.867699pt;}
.y83{bottom:329.068227pt;}
.y213{bottom:333.470203pt;}
.y12f{bottom:333.708923pt;}
.y51{bottom:336.188059pt;}
.ye0{bottom:336.347827pt;}
.y158{bottom:338.747067pt;}
.y15b{bottom:339.466667pt;}
.y1c1{bottom:341.389347pt;}
.y194{bottom:341.787067pt;}
.yd{bottom:343.809333pt;}
.y82{bottom:344.348059pt;}
.yb7{bottom:347.707067pt;}
.y212{bottom:348.830195pt;}
.yb9{bottom:350.347235pt;}
.ydf{bottom:351.707819pt;}
.y1eb{bottom:353.069867pt;}
.y157{bottom:353.227067pt;}
.y193{bottom:356.267067pt;}
.y12e{bottom:356.988723pt;}
.y50{bottom:359.548019pt;}
.y81{bottom:359.708051pt;}
.yc{bottom:362.706666pt;}
.y211{bottom:364.110027pt;}
.y1c0{bottom:364.749307pt;}
.yb8{bottom:365.627067pt;}
.yde{bottom:366.987651pt;}
.yb6{bottom:367.547067pt;}
.y156{bottom:367.706800pt;}
.y1ea{bottom:368.189379pt;}
.y192{bottom:370.747467pt;}
.y106{bottom:371.628611pt;}
.y12d{bottom:372.348715pt;}
.y4f{bottom:374.908011pt;}
.y80{bottom:375.068043pt;}
.y1bf{bottom:380.109299pt;}
.y155{bottom:382.187200pt;}
.ydd{bottom:382.347643pt;}
.y210{bottom:383.470003pt;}
.y1e9{bottom:383.549371pt;}
.y191{bottom:385.227067pt;}
.y105{bottom:386.908443pt;}
.yb5{bottom:387.467067pt;}
.y12c{bottom:387.708707pt;}
.y4e{bottom:390.187843pt;}
.y7f{bottom:390.347875pt;}
.y1be{bottom:395.389131pt;}
.y154{bottom:397.306800pt;}
.ydc{bottom:397.707635pt;}
.y20f{bottom:398.829995pt;}
.y1e8{bottom:398.909363pt;}
.y190{bottom:399.707067pt;}
.y104{bottom:402.268435pt;}
.y12b{bottom:402.988539pt;}
.yb4{bottom:403.467616pt;}
.y4d{bottom:405.547835pt;}
.y7e{bottom:405.707867pt;}
.y1bd{bottom:410.749123pt;}
.y153{bottom:411.067200pt;}
.ydb{bottom:412.987467pt;}
.y18f{bottom:414.106667pt;}
.y20e{bottom:414.109827pt;}
.y1e7{bottom:414.189195pt;}
.y103{bottom:417.628427pt;}
.y12a{bottom:418.348531pt;}
.y4c{bottom:420.907827pt;}
.y7d{bottom:420.987699pt;}
.yb1{bottom:423.307067pt;}
.y152{bottom:425.307067pt;}
.yb3{bottom:425.387368pt;}
.y1bc{bottom:426.109115pt;}
.yda{bottom:428.347459pt;}
.y18e{bottom:428.587067pt;}
.y1e6{bottom:429.709507pt;}
.y102{bottom:432.908259pt;}
.y20d{bottom:433.469803pt;}
.y4b{bottom:436.187659pt;}
.yb2{bottom:440.667200pt;}
.y1bb{bottom:441.388947pt;}
.y129{bottom:441.708491pt;}
.y18d{bottom:443.067200pt;}
.yb0{bottom:443.147200pt;}
.yd9{bottom:443.707451pt;}
.y151{bottom:444.028467pt;}
.y7c{bottom:444.347659pt;}
.y1e5{bottom:444.989339pt;}
.y101{bottom:448.268251pt;}
.y20c{bottom:448.829795pt;}
.y4a{bottom:451.547651pt;}
.y1ba{bottom:456.748939pt;}
.y128{bottom:456.988323pt;}
.y18c{bottom:457.547067pt;}
.yd8{bottom:458.987283pt;}
.y7b{bottom:459.707651pt;}
.y1e4{bottom:460.349331pt;}
.yaf{bottom:461.867067pt;}
.yb{bottom:462.990669pt;}
.y100{bottom:463.628243pt;}
.y49{bottom:466.907643pt;}
.y20b{bottom:468.109611pt;}
.y18b{bottom:472.027067pt;}
.y127{bottom:472.348315pt;}
.y150{bottom:472.828619pt;}
.y7a{bottom:474.987483pt;}
.y1e3{bottom:475.709323pt;}
.yae{bottom:477.867891pt;}
.yff{bottom:478.908075pt;}
.ya{bottom:478.990666pt;}
.y1b9{bottom:480.108899pt;}
.y48{bottom:482.187475pt;}
.yd7{bottom:482.347243pt;}
.y20a{bottom:483.469603pt;}
.y18a{bottom:487.146667pt;}
.y126{bottom:487.708307pt;}
.y14f{bottom:488.188611pt;}
.y79{bottom:490.347475pt;}
.y1e2{bottom:490.989155pt;}
.yad{bottom:492.907243pt;}
.yfe{bottom:494.268067pt;}
.y9{bottom:494.990666pt;}
.y1b8{bottom:495.388731pt;}
.y47{bottom:497.547467pt;}
.yaa{bottom:497.707067pt;}
.yd6{bottom:497.707235pt;}
.y209{bottom:498.829595pt;}
.y189{bottom:500.907067pt;}
.y14e{bottom:503.468443pt;}
.y78{bottom:505.707467pt;}
.y1e1{bottom:506.349147pt;}
.yac{bottom:508.267235pt;}
.yfd{bottom:509.628059pt;}
.y1b7{bottom:510.748723pt;}
.y125{bottom:510.988107pt;}
.y46{bottom:512.827299pt;}
.yd5{bottom:512.987331pt;}
.y208{bottom:514.109427pt;}
.y188{bottom:515.387067pt;}
.ya9{bottom:517.547067pt;}
.y14d{bottom:518.828435pt;}
.y77{bottom:520.987299pt;}
.y1e0{bottom:521.709139pt;}
.yab{bottom:523.547067pt;}
.yfc{bottom:524.907891pt;}
.y1b6{bottom:526.108715pt;}
.y124{bottom:526.348099pt;}
.y45{bottom:528.187291pt;}
.yd4{bottom:528.347323pt;}
.y186{bottom:529.867067pt;}
.y207{bottom:533.469403pt;}
.y14c{bottom:534.188427pt;}
.y76{bottom:536.347291pt;}
.y1df{bottom:536.988971pt;}
.ya8{bottom:537.467067pt;}
.yfb{bottom:540.267883pt;}
.y1b5{bottom:541.388547pt;}
.y123{bottom:541.708091pt;}
.y44{bottom:543.547283pt;}
.yd3{bottom:543.707315pt;}
.y185{bottom:544.347067pt;}
.y187{bottom:544.987467pt;}
.y206{bottom:548.829395pt;}
.y14b{bottom:549.468259pt;}
.y75{bottom:551.707283pt;}
.y1de{bottom:552.348963pt;}
.ya7{bottom:553.867043pt;}
.y1b4{bottom:556.748539pt;}
.y122{bottom:556.987923pt;}
.y184{bottom:558.827067pt;}
.y43{bottom:558.827115pt;}
.yd2{bottom:558.987147pt;}
.yfa{bottom:563.467523pt;}
.y205{bottom:564.109227pt;}
.y14a{bottom:564.828251pt;}
.y74{bottom:566.987115pt;}
.y1dd{bottom:567.708955pt;}
.ya6{bottom:570.667243pt;}
.y1b3{bottom:572.028371pt;}
.y121{bottom:572.347915pt;}
.y183{bottom:573.226267pt;}
.ya3{bottom:573.707067pt;}
.y8{bottom:573.786667pt;}
.yd1{bottom:574.347139pt;}
.yf9{bottom:578.907675pt;}
.y42{bottom:582.026755pt;}
.y73{bottom:582.347107pt;}
.y1dc{bottom:582.988787pt;}
.y204{bottom:583.469203pt;}
.ya5{bottom:586.027235pt;}
.y1b2{bottom:587.388363pt;}
.y181{bottom:587.707067pt;}
.y149{bottom:588.188211pt;}
.y7{bottom:592.685334pt;}
.ya2{bottom:593.547067pt;}
.y22e{bottom:593.708227pt;}
.y120{bottom:595.707875pt;}
.y41{bottom:597.547067pt;}
.y1db{bottom:598.348779pt;}
.y203{bottom:598.829195pt;}
.ya4{bottom:601.307067pt;}
.y180{bottom:602.187067pt;}
.yf8{bottom:602.267635pt;}
.y1b1{bottom:602.748355pt;}
.y148{bottom:603.468043pt;}
.y72{bottom:605.707067pt;}
.y22d{bottom:608.988059pt;}
.y11f{bottom:610.987707pt;}
.ya1{bottom:613.467067pt;}
.y1da{bottom:613.708771pt;}
.y40{bottom:614.748171pt;}
.y17f{bottom:616.666667pt;}
.yf7{bottom:617.627627pt;}
.y1b0{bottom:618.028187pt;}
.y202{bottom:618.109011pt;}
.y147{bottom:618.828035pt;}
.y71{bottom:620.987067pt;}
.yd0{bottom:621.707075pt;}
.y11e{bottom:626.347699pt;}
.y22c{bottom:628.348035pt;}
.y1d9{bottom:628.988603pt;}
.y3f{bottom:630.188323pt;}
.y17e{bottom:630.427067pt;}
.y182{bottom:631.146667pt;}
.yf6{bottom:632.907459pt;}
.y9d{bottom:633.308363pt;}
.y1af{bottom:633.388179pt;}
.y201{bottom:633.469003pt;}
.y70{bottom:636.347067pt;}
.ycf{bottom:637.067067pt;}
.ya0{bottom:640.989027pt;}
.y146{bottom:642.107835pt;}
.y22b{bottom:643.708027pt;}
.y1d8{bottom:644.348595pt;}
.y17d{bottom:644.907067pt;}
.y3e{bottom:645.548315pt;}
.y6{bottom:645.598667pt;}
.yf5{bottom:648.267451pt;}
.y9c{bottom:648.668355pt;}
.y11d{bottom:649.707659pt;}
.y6f{bottom:651.707067pt;}
.y200{bottom:652.828979pt;}
.yce{bottom:653.067067pt;}
.y99{bottom:656.347683pt;}
.y9f{bottom:656.349019pt;}
.y1ae{bottom:656.748139pt;}
.y145{bottom:657.467827pt;}
.y22a{bottom:658.987859pt;}
.y17c{bottom:659.387600pt;}
.y1d7{bottom:659.708587pt;}
.y3d{bottom:660.828147pt;}
.yf4{bottom:663.547283pt;}
.y9b{bottom:664.028347pt;}
.y11c{bottom:664.987491pt;}
.y6e{bottom:666.987067pt;}
.y1ff{bottom:668.108811pt;}
.y3{bottom:668.977329pt;}
.ycd{bottom:668.987075pt;}
.y9e{bottom:671.628851pt;}
.y1ad{bottom:672.027971pt;}
.y144{bottom:672.827819pt;}
.y17a{bottom:673.867067pt;}
.y1d6{bottom:674.988419pt;}
.y3c{bottom:676.188139pt;}
.y229{bottom:678.347835pt;}
.yf3{bottom:678.907275pt;}
.y9a{bottom:679.308179pt;}
.y11b{bottom:680.347483pt;}
.y6d{bottom:682.347067pt;}
.y1fe{bottom:683.468803pt;}
.ycc{bottom:684.347067pt;}
.y1ac{bottom:687.387963pt;}
.y143{bottom:688.107651pt;}
.y179{bottom:688.347067pt;}
.y1d5{bottom:690.348411pt;}
.y3b{bottom:691.548131pt;}
.y228{bottom:693.707827pt;}
.yf2{bottom:694.267267pt;}
.y98{bottom:695.308115pt;}
.y11a{bottom:695.627315pt;}
.y6c{bottom:697.707067pt;}
.ycb{bottom:700.347067pt;}
.y1ab{bottom:702.747955pt;}
.y1fd{bottom:702.748619pt;}
.y178{bottom:702.826667pt;}
.y142{bottom:703.467643pt;}
.y1d4{bottom:705.708403pt;}
.y3a{bottom:706.827963pt;}
.y227{bottom:708.987659pt;}
.y119{bottom:710.987307pt;}
.y6b{bottom:712.987200pt;}
.y177{bottom:716.587067pt;}
.y17b{bottom:717.227600pt;}
.yf1{bottom:717.547699pt;}
.y1aa{bottom:718.027787pt;}
.y1fc{bottom:718.108611pt;}
.y141{bottom:718.747475pt;}
.y97{bottom:718.748235pt;}
.yca{bottom:720.827200pt;}
.y1d3{bottom:720.988235pt;}
.y39{bottom:722.187955pt;}
.y118{bottom:726.347299pt;}
.y226{bottom:728.347635pt;}
.y176{bottom:731.067200pt;}
.yf0{bottom:732.907691pt;}
.y1a9{bottom:733.387779pt;}
.y1fb{bottom:733.468603pt;}
.y140{bottom:734.107467pt;}
.y96{bottom:734.108227pt;}
.y6a{bottom:736.187731pt;}
.y1d2{bottom:736.348227pt;}
.y38{bottom:737.547947pt;}
.yc9{bottom:742.827264pt;}
.y225{bottom:743.627467pt;}
.y175{bottom:745.547067pt;}
.yef{bottom:748.267683pt;}
.y1a8{bottom:748.747771pt;}
.y13f{bottom:749.467459pt;}
.y69{bottom:751.467563pt;}
.y1d1{bottom:751.628059pt;}
.y1fa{bottom:752.748419pt;}
.y37{bottom:752.827779pt;}
.y95{bottom:757.468187pt;}
.y117{bottom:757.627067pt;}
.yc8{bottom:758.827200pt;}
.y224{bottom:758.987459pt;}
.y173{bottom:759.947067pt;}
.yee{bottom:763.547515pt;}
.y1a7{bottom:764.027603pt;}
.y13e{bottom:764.747291pt;}
.y68{bottom:766.987875pt;}
.y1d0{bottom:766.988051pt;}
.y1f9{bottom:768.108411pt;}
.y36{bottom:768.187771pt;}
.y94{bottom:772.748019pt;}
.y172{bottom:774.427067pt;}
.y116{bottom:774.667200pt;}
.y223{bottom:778.347435pt;}
.yed{bottom:778.907507pt;}
.y1a6{bottom:779.387595pt;}
.y13d{bottom:780.107283pt;}
.y2{bottom:781.661334pt;}
.y1cf{bottom:782.348043pt;}
.y35{bottom:783.547763pt;}
.y1f8{bottom:787.468387pt;}
.y93{bottom:788.108011pt;}
.y171{bottom:788.907067pt;}
.y174{bottom:789.547467pt;}
.y67{bottom:790.347835pt;}
.yc7{bottom:790.348011pt;}
.y115{bottom:792.667200pt;}
.y222{bottom:793.627267pt;}
.yec{bottom:794.267499pt;}
.y13c{bottom:795.467275pt;}
.y1ce{bottom:797.627875pt;}
.y34{bottom:798.827595pt;}
.y1a5{bottom:802.587235pt;}
.y1f7{bottom:802.748219pt;}
.y170{bottom:803.387067pt;}
.y92{bottom:803.468003pt;}
.y66{bottom:805.627667pt;}
.yc6{bottom:805.627843pt;}
.y221{bottom:808.987259pt;}
.yeb{bottom:809.547331pt;}
.y114{bottom:810.667067pt;}
.y13b{bottom:810.747107pt;}
.y1cd{bottom:812.987867pt;}
.y33{bottom:814.187587pt;}
.y16f{bottom:817.867067pt;}
.y91{bottom:818.747835pt;}
.y65{bottom:820.987659pt;}
.yc5{bottom:820.987835pt;}
.y1f6{bottom:822.108195pt;}
.yea{bottom:824.907323pt;}
.y220{bottom:828.347235pt;}
.y1cc{bottom:828.347859pt;}
.y113{bottom:828.667067pt;}
.y16e{bottom:831.627467pt;}
.y13a{bottom:834.107067pt;}
.y90{bottom:834.107827pt;}
.y64{bottom:836.347651pt;}
.yc4{bottom:836.347827pt;}
.y32{bottom:837.307067pt;}
.y1f5{bottom:837.468187pt;}
.y1a4{bottom:837.866667pt;}
.ye9{bottom:840.267315pt;}
.y21f{bottom:843.627067pt;}
.y1cb{bottom:843.627691pt;}
.y16d{bottom:845.467067pt;}
.y112{bottom:846.667067pt;}
.y139{bottom:849.467067pt;}
.y8f{bottom:849.467819pt;}
.y63{bottom:851.627483pt;}
.yc3{bottom:851.627659pt;}
.y1a3{bottom:852.347067pt;}
.y1f4{bottom:852.748019pt;}
.y31{bottom:852.826939pt;}
.ye8{bottom:855.547147pt;}
.y21e{bottom:858.987067pt;}
.y1ca{bottom:858.987683pt;}
.y1{bottom:859.312000pt;}
.y16b{bottom:859.947067pt;}
.y111{bottom:864.587067pt;}
.y138{bottom:864.747067pt;}
.y8e{bottom:864.747651pt;}
.y1a2{bottom:866.827067pt;}
.y62{bottom:866.987475pt;}
.yc2{bottom:866.987651pt;}
.y30{bottom:870.186923pt;}
.ye7{bottom:870.907139pt;}
.y1f3{bottom:872.107995pt;}
.y16c{bottom:873.627067pt;}
.y16a{bottom:873.707467pt;}
.y1c9{bottom:874.347675pt;}
.y21d{bottom:878.347235pt;}
.y137{bottom:880.107067pt;}
.y8d{bottom:880.107643pt;}
.y1a1{bottom:881.307067pt;}
.yc1{bottom:882.347643pt;}
.y110{bottom:882.587067pt;}
.y2f{bottom:885.466755pt;}
.y1f2{bottom:887.467987pt;}
.y169{bottom:887.547067pt;}
.y1c8{bottom:889.627507pt;}
.y61{bottom:890.347435pt;}
.y21c{bottom:893.627067pt;}
.y136{bottom:895.467067pt;}
.y8c{bottom:895.467635pt;}
.y1a0{bottom:895.787067pt;}
.yc0{bottom:897.627475pt;}
.y10f{bottom:900.587067pt;}
.y167{bottom:901.947467pt;}
.ye6{bottom:902.267067pt;}
.y1f1{bottom:902.747819pt;}
.y1c7{bottom:904.987499pt;}
.y60{bottom:905.627267pt;}
.y2e{bottom:906.987067pt;}
.y21b{bottom:908.987067pt;}
.y19f{bottom:910.187067pt;}
.y135{bottom:910.747067pt;}
.y8b{bottom:910.747467pt;}
.y168{bottom:915.467867pt;}
.y166{bottom:915.787067pt;}
.y2d{bottom:917.867067pt;}
.y10e{bottom:918.587067pt;}
.y5f{bottom:920.987259pt;}
.ybf{bottom:920.987435pt;}
.y1f0{bottom:922.107795pt;}
.ye5{bottom:922.267067pt;}
.y19e{bottom:924.667067pt;}
.y134{bottom:926.107067pt;}
.y8a{bottom:926.107459pt;}
.y1c6{bottom:928.187139pt;}
.y21a{bottom:928.347459pt;}
.y165{bottom:929.547467pt;}
.y2c{bottom:934.587235pt;}
.y5e{bottom:936.347251pt;}
.ybe{bottom:936.347427pt;}
.y10d{bottom:936.587067pt;}
.y1ef{bottom:937.467787pt;}
.y19d{bottom:939.147067pt;}
.y133{bottom:941.467067pt;}
.y89{bottom:941.467451pt;}
.y164{bottom:943.387067pt;}
.y1c5{bottom:943.466971pt;}
.y219{bottom:943.627291pt;}
.ye4{bottom:946.267067pt;}
.y2b{bottom:949.867067pt;}
.y5d{bottom:951.627083pt;}
.ybd{bottom:951.627259pt;}
.y19c{bottom:953.627067pt;}
.y10c{bottom:956.667243pt;}
.y132{bottom:956.747067pt;}
.y1ee{bottom:956.747603pt;}
.y162{bottom:957.866667pt;}
.y218{bottom:958.987283pt;}
.y88{bottom:964.747251pt;}
.y2a{bottom:966.106619pt;}
.y5c{bottom:966.987075pt;}
.ybc{bottom:966.987251pt;}
.y19b{bottom:968.107067pt;}
.ye2{bottom:970.107603pt;}
.y163{bottom:970.266267pt;}
.ye3{bottom:970.827067pt;}
.y161{bottom:971.627067pt;}
.y10b{bottom:972.027235pt;}
.y131{bottom:972.107067pt;}
.y1ed{bottom:972.107595pt;}
.y109{bottom:972.507891pt;}
.y217{bottom:978.347259pt;}
.y87{bottom:980.107243pt;}
.y5b{bottom:982.347243pt;}
.y19a{bottom:982.587067pt;}
.y15f{bottom:984.747067pt;}
.y160{bottom:985.466667pt;}
.y10a{bottom:987.307067pt;}
.y130{bottom:987.467067pt;}
.y1ec{bottom:987.467587pt;}
.y108{bottom:987.787723pt;}
.y29{bottom:988.907067pt;}
.y216{bottom:993.627091pt;}
.y86{bottom:995.467235pt;}
.y199{bottom:996.987067pt;}
.y5a{bottom:997.627075pt;}
.y15e{bottom:999.227067pt;}
.y107{bottom:1004.827067pt;}
.ye1{bottom:1010.587067pt;}
.y28{bottom:1010.747067pt;}
.y198{bottom:1011.227067pt;}
.y59{bottom:1012.987067pt;}
.y15d{bottom:1013.467067pt;}
.y23{bottom:1026.667067pt;}
.y56{bottom:1028.907067pt;}
.y22{bottom:1045.547235pt;}
.y55{bottom:1054.347067pt;}
.y21{bottom:1055.067067pt;}
.h15{height:15.120000pt;}
.hb{height:18.880000pt;}
.h12{height:24.806250pt;}
.h10{height:27.513906pt;}
.h7{height:28.560000pt;}
.h1f{height:32.531250pt;}
.h20{height:34.453125pt;}
.h11{height:36.218125pt;}
.h1a{height:37.105312pt;}
.hd{height:38.357812pt;}
.h9{height:38.905781pt;}
.h14{height:39.225781pt;}
.h18{height:39.319732pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h19{height:44.118644pt;}
.h16{height:45.936796pt;}
.ha{height:45.937500pt;}
.h17{height:46.357781pt;}
.h1d{height:48.803722pt;}
.h1c{height:48.805194pt;}
.h2{height:48.960000pt;}
.hc{height:49.694531pt;}
.hf{height:51.934375pt;}
.h13{height:59.826094pt;}
.he{height:60.179531pt;}
.h8{height:61.945781pt;}
.h21{height:61.971525pt;}
.h1e{height:66.940781pt;}
.h1b{height:69.075124pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:0.160000pt;}
.w5{width:2.480000pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w3{width:793.626667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:151.200000pt;}
.x3a{left:162.240000pt;}
.x8{left:169.440000pt;}
.x19{left:170.640000pt;}
.xd{left:172.960000pt;}
.x4{left:180.874667pt;}
.x1c{left:183.040000pt;}
.x34{left:188.080000pt;}
.x1d{left:189.519600pt;}
.x1a{left:191.759488pt;}
.x1e{left:195.840544pt;}
.x10{left:197.438960pt;}
.x1b{left:203.359976pt;}
.xa{left:218.639296pt;}
.x9{left:227.840000pt;}
.x1f{left:237.440000pt;}
.xf{left:249.679232pt;}
.x39{left:253.600000pt;}
.xc{left:255.520000pt;}
.x2b{left:269.440000pt;}
.x37{left:275.920000pt;}
.x38{left:295.919528pt;}
.x18{left:306.560000pt;}
.x20{left:312.640000pt;}
.x2a{left:315.520000pt;}
.x36{left:329.200344pt;}
.x35{left:332.879688pt;}
.x21{left:347.199648pt;}
.x2c{left:349.999464pt;}
.x22{left:381.279672pt;}
.x2d{left:390.159624pt;}
.xb{left:396.800000pt;}
.x3{left:404.408000pt;}
.x23{left:413.759168pt;}
.x2e{left:423.359224pt;}
.x11{left:435.918968pt;}
.x12{left:441.038520pt;}
.x13{left:445.359144pt;}
.x24{left:448.799776pt;}
.x2f{left:458.959616pt;}
.x14{left:460.478656pt;}
.x25{left:484.480328pt;}
.x30{left:496.879304pt;}
.x6{left:512.480624pt;}
.x26{left:518.000568pt;}
.x7{left:532.640000pt;}
.x15{left:536.159048pt;}
.x16{left:541.998704pt;}
.x17{left:549.038088pt;}
.x31{left:566.239080pt;}
.x27{left:580.080480pt;}
.x32{left:600.718568pt;}
.x28{left:610.479824pt;}
.x33{left:635.039072pt;}
.x29{left:637.599288pt;}
.xe{left:642.400000pt;}
}




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