
    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_b6cacd91412f44bdbe05fd39.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.058000;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_d18e0a5f734e499041bdefe3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.058000;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_97b5ffee1fdd3ca1aee450b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064000;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_ffb3d1116130274c440508e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.888000;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_150063fc48f318a9a57c92f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.047000;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_192d2100df887e22ee62b5f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e53c5701255686b3d7de2b31.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.453000;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_f34514511bbeb5997de0ef93.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.039000;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_8a92e942ae9576582b5fc471.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_f82d6f6e48c5ee13e5904e0b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.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);}
.m6{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m3{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-28.296000px;}
.v3{vertical-align:-19.602000px;}
.v5{vertical-align:-14.148600px;}
.v6{vertical-align:-5.993400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.602600px;}
.v1{vertical-align:28.296000px;}
.ls3c{letter-spacing:-4.620000px;}
.ls39{letter-spacing:-3.876600px;}
.ls18{letter-spacing:-1.887600px;}
.ls5a{letter-spacing:-0.828000px;}
.ls4e{letter-spacing:-0.544500px;}
.ls2b{letter-spacing:-0.540000px;}
.ls3b{letter-spacing:-0.508200px;}
.ls48{letter-spacing:-0.414000px;}
.ls3f{letter-spacing:-0.025200px;}
.ls40{letter-spacing:-0.021000px;}
.ls28{letter-spacing:-0.018000px;}
.ls3d{letter-spacing:-0.016800px;}
.ls15{letter-spacing:-0.014400px;}
.ls27{letter-spacing:-0.013500px;}
.ls41{letter-spacing:-0.012600px;}
.ls2f{letter-spacing:-0.010800px;}
.ls30{letter-spacing:-0.010200px;}
.ls1a{letter-spacing:-0.009600px;}
.ls26{letter-spacing:-0.009000px;}
.ls3e{letter-spacing:-0.008400px;}
.ls17{letter-spacing:-0.007800px;}
.ls24{letter-spacing:-0.005100px;}
.ls19{letter-spacing:-0.004800px;}
.ls46{letter-spacing:-0.004755px;}
.ls25{letter-spacing:-0.004500px;}
.ls3a{letter-spacing:-0.004200px;}
.ls4d{letter-spacing:-0.003600px;}
.ls14{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.003600px;}
.ls51{letter-spacing:0.003898px;}
.ls0{letter-spacing:0.003900px;}
.ls31{letter-spacing:0.004200px;}
.ls34{letter-spacing:0.004389px;}
.ls1f{letter-spacing:0.004500px;}
.ls45{letter-spacing:0.004755px;}
.ls52{letter-spacing:0.004792px;}
.ls35{letter-spacing:0.005121px;}
.ls53{letter-spacing:0.005325px;}
.ls11{letter-spacing:0.006000px;}
.ls33{letter-spacing:0.006950px;}
.ls2c{letter-spacing:0.007200px;}
.ls3{letter-spacing:0.007800px;}
.ls32{letter-spacing:0.008616px;}
.ls44{letter-spacing:0.008779px;}
.ls22{letter-spacing:0.009000px;}
.ls42{letter-spacing:0.009510px;}
.ls2e{letter-spacing:0.010800px;}
.ls1{letter-spacing:0.011700px;}
.ls50{letter-spacing:0.013500px;}
.ls1d{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.019500px;}
.ls4{letter-spacing:2.959287px;}
.lsb{letter-spacing:2.960734px;}
.ls6{letter-spacing:2.977077px;}
.ls10{letter-spacing:3.002700px;}
.lse{letter-spacing:3.013200px;}
.lsd{letter-spacing:3.013887px;}
.ls7{letter-spacing:3.014734px;}
.lsa{letter-spacing:3.015334px;}
.ls9{letter-spacing:3.017214px;}
.ls5{letter-spacing:3.019347px;}
.ls8{letter-spacing:3.125214px;}
.ls37{letter-spacing:7.416000px;}
.ls55{letter-spacing:7.506000px;}
.ls2{letter-spacing:8.867376px;}
.lsf{letter-spacing:9.018000px;}
.ls56{letter-spacing:10.044000px;}
.ls13{letter-spacing:10.872000px;}
.ls4c{letter-spacing:11.700000px;}
.ls4b{letter-spacing:11.862000px;}
.ls38{letter-spacing:12.312000px;}
.ls1e{letter-spacing:12.492000px;}
.ls57{letter-spacing:13.203000px;}
.ls5b{letter-spacing:13.212000px;}
.ls21{letter-spacing:13.302000px;}
.ls29{letter-spacing:13.356000px;}
.ls49{letter-spacing:13.428000px;}
.ls2a{letter-spacing:15.147000px;}
.ls1c{letter-spacing:15.246000px;}
.ls20{letter-spacing:16.758000px;}
.ls4f{letter-spacing:17.838000px;}
.ls4a{letter-spacing:18.594000px;}
.ls23{letter-spacing:21.240000px;}
.ls16{letter-spacing:21.676200px;}
.ls58{letter-spacing:23.562000px;}
.lsc{letter-spacing:24.722734px;}
.ls1b{letter-spacing:92.659800px;}
.ls59{letter-spacing:133.217940px;}
.ls36{letter-spacing:235.562107px;}
.ls47{letter-spacing:260.669457px;}
.ls43{letter-spacing:295.738910px;}
.ls54{letter-spacing:1197.318000px;}
.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;}
}
.ws13b{word-spacing:-308.958310px;}
.ws13d{word-spacing:-248.781507px;}
.ws8{word-spacing:-60.676200px;}
.ws187{word-spacing:-40.338000px;}
.ws5c{word-spacing:-37.647000px;}
.ws4f{word-spacing:-35.856000px;}
.ws1ab{word-spacing:-35.712000px;}
.ws18{word-spacing:-30.006000px;}
.ws1f4{word-spacing:-30.000000px;}
.wsa{word-spacing:-27.299700px;}
.ws0{word-spacing:-25.488000px;}
.ws1af{word-spacing:-23.904000px;}
.ws1d3{word-spacing:-23.899500px;}
.wscd{word-spacing:-23.895000px;}
.ws183{word-spacing:-23.886000px;}
.wsdf{word-spacing:-23.877000px;}
.ws11c{word-spacing:-22.518000px;}
.ws34{word-spacing:-22.500000px;}
.ws1ee{word-spacing:-22.495500px;}
.ws22d{word-spacing:-22.491000px;}
.ws4b{word-spacing:-22.482000px;}
.ws1fc{word-spacing:-21.960000px;}
.ws124{word-spacing:-21.004200px;}
.ws12a{word-spacing:-21.000000px;}
.ws129{word-spacing:-20.995800px;}
.ws128{word-spacing:-20.991600px;}
.ws127{word-spacing:-20.983200px;}
.ws125{word-spacing:-20.491800px;}
.ws14{word-spacing:-19.511700px;}
.ws2e{word-spacing:-19.507800px;}
.ws19a{word-spacing:-18.000000px;}
.wse{word-spacing:-17.982000px;}
.ws142{word-spacing:-17.586000px;}
.ws7{word-spacing:-17.394000px;}
.wsb{word-spacing:-17.339400px;}
.ws9{word-spacing:-17.308200px;}
.ws126{word-spacing:-16.380000px;}
.wsa1{word-spacing:-15.219000px;}
.ws1f1{word-spacing:-15.048000px;}
.ws215{word-spacing:-14.751000px;}
.ws5{word-spacing:-14.127792px;}
.wsb0{word-spacing:-14.067000px;}
.ws1f5{word-spacing:-14.058000px;}
.ws93{word-spacing:-14.040000px;}
.wsb7{word-spacing:-14.022000px;}
.wsa9{word-spacing:-13.995000px;}
.ws92{word-spacing:-13.977000px;}
.ws168{word-spacing:-13.950000px;}
.ws169{word-spacing:-13.941000px;}
.ws21e{word-spacing:-13.932000px;}
.ws94{word-spacing:-13.923000px;}
.ws1a7{word-spacing:-13.914000px;}
.ws1ac{word-spacing:-13.905000px;}
.ws1be{word-spacing:-13.833000px;}
.wsa0{word-spacing:-13.806000px;}
.ws50{word-spacing:-13.752000px;}
.ws51{word-spacing:-13.725000px;}
.ws1f0{word-spacing:-13.707000px;}
.ws1f2{word-spacing:-13.662000px;}
.ws10c{word-spacing:-13.653000px;}
.ws1f3{word-spacing:-13.635000px;}
.ws11d{word-spacing:-13.617000px;}
.ws62{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.494000px;}
.ws16d{word-spacing:-13.491000px;}
.ws214{word-spacing:-13.464000px;}
.ws1b8{word-spacing:-13.455000px;}
.ws222{word-spacing:-13.365000px;}
.ws216{word-spacing:-13.356000px;}
.ws191{word-spacing:-13.327108px;}
.ws105{word-spacing:-13.320000px;}
.ws209{word-spacing:-13.293000px;}
.ws74{word-spacing:-13.221000px;}
.ws118{word-spacing:-13.194000px;}
.ws240{word-spacing:-13.122000px;}
.ws1df{word-spacing:-13.068000px;}
.ws20d{word-spacing:-12.978000px;}
.ws52{word-spacing:-12.960000px;}
.ws10d{word-spacing:-12.924000px;}
.ws18a{word-spacing:-12.906000px;}
.ws1e3{word-spacing:-12.897000px;}
.wse7{word-spacing:-12.888000px;}
.ws1fb{word-spacing:-12.816000px;}
.ws1cf{word-spacing:-12.762000px;}
.wsaf{word-spacing:-12.735000px;}
.ws56{word-spacing:-12.708000px;}
.ws103{word-spacing:-12.582000px;}
.ws84{word-spacing:-12.573000px;}
.ws46{word-spacing:-12.564000px;}
.ws18d{word-spacing:-12.474000px;}
.wsc6{word-spacing:-12.465000px;}
.ws1d2{word-spacing:-12.429000px;}
.ws1d5{word-spacing:-12.402000px;}
.ws228{word-spacing:-12.330000px;}
.ws36{word-spacing:-12.321000px;}
.ws1ec{word-spacing:-12.282000px;}
.wsc5{word-spacing:-12.276000px;}
.wsa3{word-spacing:-12.258000px;}
.ws121{word-spacing:-12.240000px;}
.ws81{word-spacing:-12.231000px;}
.ws31{word-spacing:-12.228000px;}
.ws13c{word-spacing:-12.206810px;}
.wsfc{word-spacing:-12.204000px;}
.ws13f{word-spacing:-12.202421px;}
.ws200{word-spacing:-12.198000px;}
.ws82{word-spacing:-12.195000px;}
.ws102{word-spacing:-12.177000px;}
.ws9b{word-spacing:-12.150000px;}
.ws1a4{word-spacing:-12.141000px;}
.ws201{word-spacing:-12.114000px;}
.ws1a5{word-spacing:-12.105000px;}
.wsef{word-spacing:-12.096000px;}
.ws5f{word-spacing:-12.078000px;}
.ws24{word-spacing:-12.062400px;}
.ws1f8{word-spacing:-12.051000px;}
.ws172{word-spacing:-12.042000px;}
.ws1ad{word-spacing:-12.033000px;}
.ws89{word-spacing:-11.997000px;}
.wsd{word-spacing:-11.988000px;}
.ws170{word-spacing:-11.979000px;}
.ws1ca{word-spacing:-11.970000px;}
.ws21a{word-spacing:-11.943000px;}
.ws17b{word-spacing:-11.916000px;}
.ws1c7{word-spacing:-11.907000px;}
.ws5b{word-spacing:-11.898000px;}
.ws58{word-spacing:-11.853000px;}
.ws57{word-spacing:-11.835000px;}
.wsd4{word-spacing:-11.817000px;}
.wsae{word-spacing:-11.808000px;}
.wsa6{word-spacing:-11.799000px;}
.ws1ce{word-spacing:-11.763000px;}
.wsa7{word-spacing:-11.745000px;}
.ws23d{word-spacing:-11.727000px;}
.ws9d{word-spacing:-11.700000px;}
.wsb8{word-spacing:-11.601000px;}
.ws220{word-spacing:-11.502000px;}
.ws7f{word-spacing:-11.493000px;}
.ws83{word-spacing:-11.475000px;}
.ws23e{word-spacing:-11.457000px;}
.ws1c9{word-spacing:-11.385000px;}
.ws244{word-spacing:-11.358000px;}
.wsac{word-spacing:-11.331000px;}
.ws104{word-spacing:-11.322000px;}
.ws8e{word-spacing:-11.295000px;}
.ws3e{word-spacing:-11.286000px;}
.ws76{word-spacing:-11.277000px;}
.ws21f{word-spacing:-11.241000px;}
.ws221{word-spacing:-11.223000px;}
.ws1f{word-spacing:-11.203200px;}
.ws69{word-spacing:-11.196000px;}
.ws1d{word-spacing:-11.193600px;}
.wsf1{word-spacing:-11.187000px;}
.ws1fa{word-spacing:-11.178000px;}
.wsf0{word-spacing:-11.133000px;}
.ws202{word-spacing:-11.106000px;}
.wsb3{word-spacing:-11.061000px;}
.ws7e{word-spacing:-11.007000px;}
.ws210{word-spacing:-10.998000px;}
.ws1e6{word-spacing:-10.908000px;}
.ws1d4{word-spacing:-10.827000px;}
.ws225{word-spacing:-10.809000px;}
.ws1f7{word-spacing:-10.764000px;}
.ws173{word-spacing:-10.755000px;}
.ws1f9{word-spacing:-10.683000px;}
.ws1a{word-spacing:-10.675200px;}
.ws1c{word-spacing:-10.665600px;}
.ws141{word-spacing:-10.663200px;}
.ws25{word-spacing:-10.660800px;}
.ws23{word-spacing:-10.656000px;}
.ws1b{word-spacing:-10.646400px;}
.ws159{word-spacing:-10.638000px;}
.ws26{word-spacing:-10.636800px;}
.ws9e{word-spacing:-10.629000px;}
.ws20{word-spacing:-10.612800px;}
.ws21{word-spacing:-10.588800px;}
.ws1{word-spacing:-10.584000px;}
.ws12b{word-spacing:-10.567200px;}
.wsd3{word-spacing:-10.566000px;}
.ws158{word-spacing:-10.557000px;}
.ws198{word-spacing:-10.544400px;}
.ws1c0{word-spacing:-10.539000px;}
.wsff{word-spacing:-10.530000px;}
.wsfb{word-spacing:-10.521000px;}
.ws8a{word-spacing:-10.512000px;}
.wsab{word-spacing:-10.503000px;}
.ws22e{word-spacing:-10.494000px;}
.wsee{word-spacing:-10.485000px;}
.wsc7{word-spacing:-10.476000px;}
.ws171{word-spacing:-10.467000px;}
.ws1dc{word-spacing:-10.431000px;}
.ws1e1{word-spacing:-10.413000px;}
.ws23c{word-spacing:-10.395000px;}
.wsb9{word-spacing:-10.394280px;}
.ws101{word-spacing:-10.386000px;}
.ws182{word-spacing:-10.359000px;}
.ws174{word-spacing:-10.260000px;}
.ws1bc{word-spacing:-10.242000px;}
.wsf8{word-spacing:-10.161000px;}
.ws1e7{word-spacing:-10.143000px;}
.ws249{word-spacing:-10.116000px;}
.wsec{word-spacing:-10.098000px;}
.ws109{word-spacing:-10.089000px;}
.ws23a{word-spacing:-10.062000px;}
.ws3d{word-spacing:-10.044000px;}
.ws77{word-spacing:-10.035000px;}
.ws204{word-spacing:-10.026000px;}
.ws166{word-spacing:-10.021500px;}
.ws223{word-spacing:-10.017000px;}
.ws1c8{word-spacing:-10.008000px;}
.ws3c{word-spacing:-9.999000px;}
.ws70{word-spacing:-9.990000px;}
.ws47{word-spacing:-9.981000px;}
.ws8f{word-spacing:-9.972000px;}
.ws20e{word-spacing:-9.963000px;}
.ws16a{word-spacing:-9.954000px;}
.ws16c{word-spacing:-9.945000px;}
.ws60{word-spacing:-9.936000px;}
.ws230{word-spacing:-9.927000px;}
.ws20c{word-spacing:-9.918000px;}
.ws111{word-spacing:-9.909000px;}
.ws1ed{word-spacing:-9.900000px;}
.ws16b{word-spacing:-9.891000px;}
.ws15e{word-spacing:-9.882000px;}
.ws1b5{word-spacing:-9.873000px;}
.wse9{word-spacing:-9.864000px;}
.ws18e{word-spacing:-9.846000px;}
.wsbb{word-spacing:-9.828000px;}
.wsfd{word-spacing:-9.819000px;}
.ws1c2{word-spacing:-9.801000px;}
.wsfe{word-spacing:-9.783000px;}
.wsf2{word-spacing:-9.747000px;}
.ws235{word-spacing:-9.711000px;}
.ws189{word-spacing:-9.693000px;}
.ws1d1{word-spacing:-9.684000px;}
.ws1d0{word-spacing:-9.675000px;}
.ws35{word-spacing:-9.621000px;}
.ws33{word-spacing:-9.603000px;}
.wscb{word-spacing:-9.558000px;}
.wsc1{word-spacing:-9.526500px;}
.wsed{word-spacing:-9.405000px;}
.wsaa{word-spacing:-9.369000px;}
.ws175{word-spacing:-9.360000px;}
.ws116{word-spacing:-9.351000px;}
.ws12f{word-spacing:-9.349200px;}
.ws133{word-spacing:-9.340800px;}
.ws123{word-spacing:-9.328200px;}
.ws1aa{word-spacing:-9.315000px;}
.ws130{word-spacing:-9.298800px;}
.ws61{word-spacing:-9.297000px;}
.ws138{word-spacing:-9.295200px;}
.ws7b{word-spacing:-9.288000px;}
.ws139{word-spacing:-9.284400px;}
.ws137{word-spacing:-9.269400px;}
.wsd1{word-spacing:-9.261000px;}
.ws134{word-spacing:-9.252600px;}
.ws239{word-spacing:-9.252000px;}
.ws53{word-spacing:-9.234000px;}
.ws224{word-spacing:-9.207000px;}
.ws15{word-spacing:-9.196200px;}
.wsd0{word-spacing:-9.189000px;}
.wsbd{word-spacing:-9.176400px;}
.ws4e{word-spacing:-9.171000px;}
.wsbe{word-spacing:-9.169200px;}
.ws48{word-spacing:-9.126000px;}
.ws16f{word-spacing:-9.117000px;}
.ws237{word-spacing:-9.072000px;}
.ws16e{word-spacing:-9.063000px;}
.ws161{word-spacing:-9.054000px;}
.ws160{word-spacing:-9.045000px;}
.wsa4{word-spacing:-9.036000px;}
.ws15f{word-spacing:-9.027000px;}
.ws236{word-spacing:-9.009000px;}
.ws10f{word-spacing:-9.000000px;}
.ws19b{word-spacing:-8.946000px;}
.ws119{word-spacing:-8.928000px;}
.ws98{word-spacing:-8.847000px;}
.ws227{word-spacing:-8.829000px;}
.ws11{word-spacing:-8.817900px;}
.ws2a{word-spacing:-8.790600px;}
.ws88{word-spacing:-8.784000px;}
.ws1fe{word-spacing:-8.775000px;}
.ws246{word-spacing:-8.766000px;}
.ws28{word-spacing:-8.759400px;}
.ws3{word-spacing:-8.755500px;}
.ws12{word-spacing:-8.751600px;}
.ws1ff{word-spacing:-8.748000px;}
.ws2d{word-spacing:-8.739900px;}
.ws16{word-spacing:-8.716500px;}
.ws10{word-spacing:-8.704800px;}
.ws2f{word-spacing:-8.700900px;}
.ws2c{word-spacing:-8.693100px;}
.ws4{word-spacing:-8.685300px;}
.ws165{word-spacing:-8.658000px;}
.ws167{word-spacing:-8.649000px;}
.ws1bb{word-spacing:-8.640000px;}
.ws226{word-spacing:-8.613000px;}
.ws72{word-spacing:-8.604000px;}
.ws40{word-spacing:-8.469000px;}
.ws9a{word-spacing:-8.424000px;}
.ws238{word-spacing:-8.388000px;}
.ws87{word-spacing:-8.325000px;}
.ws80{word-spacing:-8.253000px;}
.wsc2{word-spacing:-8.217000px;}
.ws155{word-spacing:-8.182800px;}
.ws154{word-spacing:-8.154000px;}
.ws11f{word-spacing:-8.145000px;}
.ws156{word-spacing:-8.121600px;}
.ws152{word-spacing:-8.107200px;}
.ws75{word-spacing:-8.091000px;}
.ws79{word-spacing:-8.055000px;}
.wsd7{word-spacing:-8.046000px;}
.wsc0{word-spacing:-8.037000px;}
.wsbf{word-spacing:-8.035200px;}
.wsa5{word-spacing:-8.028000px;}
.ws1a0{word-spacing:-8.017200px;}
.ws13a{word-spacing:-7.999200px;}
.ws6d{word-spacing:-7.992000px;}
.ws19f{word-spacing:-7.988400px;}
.ws1d8{word-spacing:-7.902000px;}
.wsbc{word-spacing:-7.898400px;}
.ws1bf{word-spacing:-7.875000px;}
.ws8c{word-spacing:-7.794000px;}
.ws19c{word-spacing:-7.783200px;}
.ws19e{word-spacing:-7.776000px;}
.ws6e{word-spacing:-7.767000px;}
.ws17c{word-spacing:-7.758000px;}
.ws110{word-spacing:-7.740000px;}
.wsd2{word-spacing:-7.731000px;}
.ws42{word-spacing:-7.713000px;}
.ws157{word-spacing:-7.704000px;}
.ws10e{word-spacing:-7.686000px;}
.ws22f{word-spacing:-7.677000px;}
.wse4{word-spacing:-7.663500px;}
.wsd8{word-spacing:-7.623000px;}
.ws11e{word-spacing:-7.551000px;}
.ws184{word-spacing:-7.542000px;}
.ws177{word-spacing:-7.461000px;}
.ws176{word-spacing:-7.425000px;}
.ws15c{word-spacing:-7.398000px;}
.ws1db{word-spacing:-7.389000px;}
.ws11b{word-spacing:-7.335000px;}
.ws39{word-spacing:-7.299000px;}
.ws5e{word-spacing:-7.272000px;}
.ws38{word-spacing:-7.254000px;}
.ws37{word-spacing:-7.245000px;}
.ws219{word-spacing:-7.218000px;}
.ws86{word-spacing:-7.191000px;}
.ws23b{word-spacing:-7.029000px;}
.ws65{word-spacing:-7.011000px;}
.ws73{word-spacing:-6.993000px;}
.ws18b{word-spacing:-6.957000px;}
.ws1b2{word-spacing:-6.921000px;}
.wsf4{word-spacing:-6.912000px;}
.ws1b1{word-spacing:-6.885000px;}
.ws99{word-spacing:-6.858000px;}
.wsa8{word-spacing:-6.795000px;}
.ws11a{word-spacing:-6.768000px;}
.ws1a2{word-spacing:-6.714000px;}
.ws22b{word-spacing:-6.705000px;}
.ws10b{word-spacing:-6.687000px;}
.ws1da{word-spacing:-6.660000px;}
.ws1a6{word-spacing:-6.588000px;}
.ws1a9{word-spacing:-6.570000px;}
.ws14f{word-spacing:-6.566400px;}
.wse1{word-spacing:-6.552000px;}
.wsfa{word-spacing:-6.543000px;}
.ws151{word-spacing:-6.541200px;}
.ws212{word-spacing:-6.462000px;}
.wsdd{word-spacing:-6.453000px;}
.ws213{word-spacing:-6.444000px;}
.ws1cc{word-spacing:-6.390000px;}
.ws1cb{word-spacing:-6.381000px;}
.ws10a{word-spacing:-6.327000px;}
.ws3a{word-spacing:-6.300000px;}
.ws117{word-spacing:-6.282000px;}
.wsf6{word-spacing:-6.273000px;}
.ws3b{word-spacing:-6.264000px;}
.ws185{word-spacing:-6.237000px;}
.ws211{word-spacing:-6.228000px;}
.wsf5{word-spacing:-6.219000px;}
.ws1e0{word-spacing:-6.183000px;}
.wsf7{word-spacing:-6.147000px;}
.ws7d{word-spacing:-6.102000px;}
.ws15a{word-spacing:-6.066000px;}
.ws100{word-spacing:-6.057000px;}
.ws14e{word-spacing:-6.001200px;}
.ws14c{word-spacing:-5.994000px;}
.ws64{word-spacing:-5.940000px;}
.wsa2{word-spacing:-5.895000px;}
.ws15d{word-spacing:-5.868000px;}
.ws205{word-spacing:-5.832000px;}
.ws55{word-spacing:-5.814000px;}
.ws54{word-spacing:-5.778000px;}
.ws32{word-spacing:-5.769000px;}
.ws1b0{word-spacing:-5.751000px;}
.ws1d9{word-spacing:-5.742000px;}
.ws4a{word-spacing:-5.733000px;}
.ws144{word-spacing:-5.724000px;}
.ws4c{word-spacing:-5.688000px;}
.ws197{word-spacing:-5.677200px;}
.ws143{word-spacing:-5.670000px;}
.ws145{word-spacing:-5.659200px;}
.ws195{word-spacing:-5.598000px;}
.ws91{word-spacing:-5.580000px;}
.ws7c{word-spacing:-5.553000px;}
.ws97{word-spacing:-5.517000px;}
.ws41{word-spacing:-5.445000px;}
.ws1bd{word-spacing:-5.418000px;}
.ws1c1{word-spacing:-5.391000px;}
.ws164{word-spacing:-5.310000px;}
.ws18c{word-spacing:-5.265000px;}
.ws163{word-spacing:-5.247000px;}
.ws63{word-spacing:-5.211000px;}
.ws49{word-spacing:-5.202000px;}
.ws179{word-spacing:-5.175000px;}
.ws120{word-spacing:-5.067000px;}
.ws203{word-spacing:-5.049000px;}
.ws178{word-spacing:-5.031000px;}
.wsdc{word-spacing:-5.013000px;}
.wsde{word-spacing:-4.941000px;}
.wsf9{word-spacing:-4.932000px;}
.wse2{word-spacing:-4.869000px;}
.wscf{word-spacing:-4.851000px;}
.wsc8{word-spacing:-4.842000px;}
.ws186{word-spacing:-4.761000px;}
.ws1b4{word-spacing:-4.752000px;}
.ws85{word-spacing:-4.716000px;}
.ws188{word-spacing:-4.707000px;}
.ws107{word-spacing:-4.644000px;}
.ws5d{word-spacing:-4.626000px;}
.ws20b{word-spacing:-4.608000px;}
.ws108{word-spacing:-4.599000px;}
.ws90{word-spacing:-4.581000px;}
.wse0{word-spacing:-4.554000px;}
.ws181{word-spacing:-4.527000px;}
.ws234{word-spacing:-4.491000px;}
.wsea{word-spacing:-4.365000px;}
.ws1b9{word-spacing:-4.293000px;}
.ws208{word-spacing:-4.239000px;}
.wscc{word-spacing:-4.221000px;}
.wsce{word-spacing:-4.185000px;}
.ws4d{word-spacing:-4.149000px;}
.ws247{word-spacing:-4.131000px;}
.wse5{word-spacing:-4.050000px;}
.wsad{word-spacing:-4.023000px;}
.ws1d6{word-spacing:-3.942000px;}
.ws8b{word-spacing:-3.906000px;}
.ws232{word-spacing:-3.573000px;}
.ws5a{word-spacing:-3.528000px;}
.ws9c{word-spacing:-3.483000px;}
.ws1b6{word-spacing:-3.447000px;}
.ws8d{word-spacing:-3.339000px;}
.ws113{word-spacing:-3.285000px;}
.ws43{word-spacing:-3.240000px;}
.ws44{word-spacing:-3.186000px;}
.ws1e5{word-spacing:-3.141000px;}
.ws9f{word-spacing:-3.024000px;}
.wsc3{word-spacing:-3.015000px;}
.ws1e4{word-spacing:-2.943000px;}
.ws106{word-spacing:-2.889000px;}
.ws245{word-spacing:-2.844000px;}
.ws59{word-spacing:-2.835000px;}
.ws162{word-spacing:-2.731500px;}
.wse3{word-spacing:-2.727000px;}
.ws1e8{word-spacing:-2.718000px;}
.ws1ae{word-spacing:-2.691000px;}
.wse6{word-spacing:-2.664000px;}
.ws6a{word-spacing:-2.637000px;}
.wsdb{word-spacing:-2.529000px;}
.ws96{word-spacing:-2.457000px;}
.ws71{word-spacing:-2.421000px;}
.ws180{word-spacing:-2.340000px;}
.ws17f{word-spacing:-2.268000px;}
.ws20a{word-spacing:-2.178000px;}
.ws1b3{word-spacing:-2.097000px;}
.ws1cd{word-spacing:-2.034000px;}
.ws6f{word-spacing:-1.953000px;}
.wseb{word-spacing:-1.854000px;}
.wsc9{word-spacing:-1.719000px;}
.ws1a8{word-spacing:-1.692000px;}
.ws114{word-spacing:-1.611000px;}
.ws1e2{word-spacing:-1.467000px;}
.ws1eb{word-spacing:-1.368000px;}
.ws23f{word-spacing:-1.305000px;}
.ws1ea{word-spacing:-1.296000px;}
.ws6b{word-spacing:-1.260000px;}
.ws1dd{word-spacing:-1.233000px;}
.ws6c{word-spacing:-1.224000px;}
.ws115{word-spacing:-1.089000px;}
.ws1d7{word-spacing:-1.026000px;}
.ws1de{word-spacing:-0.972000px;}
.ws1e9{word-spacing:-0.837000px;}
.wsd5{word-spacing:-0.747000px;}
.ws15b{word-spacing:-0.738000px;}
.ws68{word-spacing:-0.648000px;}
.ws67{word-spacing:-0.576000px;}
.wsd9{word-spacing:-0.423000px;}
.wsf3{word-spacing:-0.099000px;}
.wse8{word-spacing:-0.063000px;}
.ws45{word-spacing:-0.045000px;}
.ws20f{word-spacing:-0.031500px;}
.ws206{word-spacing:-0.027000px;}
.ws147{word-spacing:-0.020850px;}
.ws146{word-spacing:-0.017233px;}
.ws148{word-spacing:-0.015363px;}
.ws1c5{word-spacing:-0.014377px;}
.ws14a{word-spacing:-0.013900px;}
.ws1c3{word-spacing:-0.010649px;}
.ws149{word-spacing:-0.006950px;}
.ws1c4{word-spacing:-0.005325px;}
.ws1c6{word-spacing:-0.004792px;}
.ws30{word-spacing:0.000000px;}
.ws17e{word-spacing:0.270000px;}
.wsca{word-spacing:0.279000px;}
.ws17d{word-spacing:0.315000px;}
.ws66{word-spacing:0.369000px;}
.wsc4{word-spacing:0.477000px;}
.ws1a1{word-spacing:0.493200px;}
.ws1ba{word-spacing:0.657000px;}
.ws1f6{word-spacing:0.855000px;}
.wsda{word-spacing:0.918000px;}
.ws1b7{word-spacing:1.071000px;}
.ws21d{word-spacing:1.080000px;}
.ws243{word-spacing:1.287000px;}
.ws22c{word-spacing:1.503000px;}
.ws7a{word-spacing:1.566000px;}
.ws1a3{word-spacing:1.629000px;}
.ws95{word-spacing:1.710000px;}
.ws1fd{word-spacing:1.764000px;}
.ws231{word-spacing:2.502000px;}
.wsb1{word-spacing:2.961000px;}
.ws21b{word-spacing:4.203000px;}
.ws218{word-spacing:4.221000px;}
.ws233{word-spacing:4.248000px;}
.wsb6{word-spacing:4.356000px;}
.wsb2{word-spacing:4.455000px;}
.ws17a{word-spacing:4.464000px;}
.ws207{word-spacing:4.581000px;}
.wsb4{word-spacing:4.612500px;}
.ws78{word-spacing:5.625000px;}
.ws3f{word-spacing:5.832000px;}
.wsb5{word-spacing:5.967000px;}
.wsd6{word-spacing:6.003000px;}
.ws248{word-spacing:6.147000px;}
.ws1ef{word-spacing:6.723000px;}
.ws217{word-spacing:7.119000px;}
.ws140{word-spacing:7.326000px;}
.ws199{word-spacing:7.477200px;}
.wsba{word-spacing:8.136000px;}
.ws22a{word-spacing:9.252000px;}
.ws153{word-spacing:9.774000px;}
.ws19d{word-spacing:10.206000px;}
.ws29{word-spacing:10.713300px;}
.ws27{word-spacing:10.740600px;}
.ws21c{word-spacing:10.746000px;}
.wsf{word-spacing:10.756200px;}
.ws2b{word-spacing:10.783500px;}
.ws242{word-spacing:11.043000px;}
.ws150{word-spacing:11.448000px;}
.ws2{word-spacing:11.520600px;}
.ws14b{word-spacing:11.916000px;}
.ws14d{word-spacing:12.024000px;}
.ws194{word-spacing:12.348000px;}
.ws196{word-spacing:12.445200px;}
.ws1e{word-spacing:12.758400px;}
.ws229{word-spacing:12.897000px;}
.ws22{word-spacing:13.348800px;}
.ws19{word-spacing:13.363200px;}
.ws241{word-spacing:14.571000px;}
.ws112{word-spacing:15.085800px;}
.ws122{word-spacing:19.420800px;}
.ws17{word-spacing:29.215200px;}
.ws13{word-spacing:29.275200px;}
.ws6{word-spacing:31.860000px;}
.ws193{word-spacing:68.895038px;}
.ws190{word-spacing:73.365654px;}
.ws13e{word-spacing:74.166542px;}
.ws192{word-spacing:117.323464px;}
.ws135{word-spacing:120.372000px;}
.ws12c{word-spacing:120.397200px;}
.ws12d{word-spacing:134.551200px;}
.ws18f{word-spacing:150.340542px;}
.ws12e{word-spacing:307.763400px;}
.ws132{word-spacing:307.813800px;}
.ws131{word-spacing:313.794600px;}
.ws136{word-spacing:313.849200px;}
._22{margin-left:-295.058607px;}
._23{margin-left:-234.853273px;}
._3{margin-left:-23.540400px;}
._4{margin-left:-21.668400px;}
._29{margin-left:-18.751500px;}
._28{margin-left:-17.734500px;}
._14{margin-left:-16.650000px;}
._13{margin-left:-15.156000px;}
._10{margin-left:-13.942500px;}
._11{margin-left:-12.796500px;}
._7{margin-left:-9.968400px;}
._19{margin-left:-7.297500px;}
._5{margin-left:-6.058200px;}
._9{margin-left:-4.849800px;}
._c{margin-left:-3.747900px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.189500px;}
._6{width:1.903200px;}
._1a{width:3.108000px;}
._d{width:5.101200px;}
._b{width:7.012800px;}
._8{width:9.018000px;}
._27{width:10.396800px;}
._12{width:11.664000px;}
._26{width:13.571400px;}
._a{width:14.905500px;}
._16{width:16.330500px;}
._f{width:17.740500px;}
._18{width:18.983700px;}
._e{width:20.699700px;}
._31{width:22.477200px;}
._15{width:23.814000px;}
._33{width:25.589400px;}
._32{width:31.018500px;}
._2{width:85.032000px;}
._17{width:92.668560px;}
._20{width:94.189200px;}
._24{width:101.323375px;}
._25{width:115.160949px;}
._30{width:123.084205px;}
._2c{width:138.312363px;}
._1c{width:141.346800px;}
._2f{width:144.739604px;}
._1d{width:149.532600px;}
._2e{width:160.182133px;}
._2b{width:172.031019px;}
._1b{width:178.169100px;}
._2d{width:181.864816px;}
._2a{width:215.411975px;}
._1e{width:218.176200px;}
._1f{width:328.776000px;}
._21{width:430.022100px;}
.fc4{color:rgb(70,70,72);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(16,15,13);}
.fc1{color:rgb(115,199,114);}
.fc3{color:rgb(102,102,102);}
.fc0{color:rgb(35,31,32);}
.fs1a{font-size:25.200000px;}
.fs8{font-size:27.300000px;}
.fsa{font-size:28.500000px;}
.fsb{font-size:36.000000px;}
.fs6{font-size:37.800000px;}
.fs15{font-size:38.976600px;}
.fs1{font-size:39.000000px;}
.fsf{font-size:42.000000px;}
.fs13{font-size:43.893600px;}
.fse{font-size:45.000000px;}
.fsc{font-size:46.800000px;}
.fs10{font-size:47.551800px;}
.fs17{font-size:47.922000px;}
.fs0{font-size:48.000000px;}
.fs19{font-size:50.385000px;}
.fsd{font-size:51.000000px;}
.fs14{font-size:51.208800px;}
.fs16{font-size:53.246400px;}
.fs18{font-size:53.246838px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:54.599400px;}
.fs9{font-size:60.000000px;}
.fs2{font-size:63.840000px;}
.fs12{font-size:69.498600px;}
.fs4{font-size:78.000000px;}
.fs11{font-size:86.163000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:52.087650px;}
.y103{bottom:84.663000px;}
.yb0{bottom:84.663150px;}
.y32{bottom:84.663450px;}
.y74{bottom:89.671500px;}
.y31{bottom:98.865300px;}
.y169{bottom:99.445500px;}
.y102{bottom:100.363500px;}
.yaf{bottom:100.363650px;}
.y14f{bottom:104.764500px;}
.y73{bottom:105.358500px;}
.y19a{bottom:112.824000px;}
.y2f{bottom:114.336000px;}
.y30{bottom:114.565500px;}
.y168{bottom:115.132500px;}
.y101{bottom:116.050500px;}
.yae{bottom:116.050650px;}
.y14e{bottom:118.210500px;}
.y72{bottom:121.045500px;}
.y199{bottom:128.511000px;}
.y2e{bottom:130.725150px;}
.y167{bottom:130.819500px;}
.y14d{bottom:131.656500px;}
.y100{bottom:131.737500px;}
.yad{bottom:131.737650px;}
.y71{bottom:136.746000px;}
.y1d3{bottom:142.348650px;}
.y198{bottom:144.211500px;}
.y14c{bottom:145.116000px;}
.y166{bottom:146.520000px;}
.yff{bottom:147.438000px;}
.yac{bottom:147.438150px;}
.y70{bottom:152.433000px;}
.y1d2{bottom:158.035650px;}
.y197{bottom:159.898500px;}
.y165{bottom:162.207000px;}
.yfe{bottom:163.125000px;}
.yab{bottom:163.125150px;}
.y6f{bottom:168.120000px;}
.y1d1{bottom:173.722650px;}
.y196{bottom:175.585500px;}
.y164{bottom:177.894000px;}
.yfd{bottom:178.812000px;}
.yaa{bottom:178.812150px;}
.y139{bottom:182.364000px;}
.y6e{bottom:183.820500px;}
.y1d0{bottom:189.423150px;}
.y195{bottom:191.286000px;}
.y163{bottom:193.594500px;}
.yfc{bottom:194.512500px;}
.ya9{bottom:194.512650px;}
.y6d{bottom:199.507500px;}
.y1cf{bottom:205.110150px;}
.y194{bottom:206.973000px;}
.y2d{bottom:207.245550px;}
.y162{bottom:209.281500px;}
.yfb{bottom:210.199500px;}
.ya8{bottom:210.199650px;}
.y6c{bottom:215.194500px;}
.y1ce{bottom:220.797150px;}
.y193{bottom:222.660000px;}
.y2c{bottom:223.674750px;}
.y161{bottom:224.968500px;}
.yd8{bottom:225.859650px;}
.yfa{bottom:225.886500px;}
.ya7{bottom:225.886650px;}
.y12b{bottom:226.480500px;}
.y6b{bottom:230.881500px;}
.y1cd{bottom:236.497650px;}
.y192{bottom:238.347000px;}
.y160{bottom:240.655500px;}
.yd7{bottom:241.546650px;}
.yf9{bottom:241.573500px;}
.ya6{bottom:241.573650px;}
.y6a{bottom:246.582000px;}
.y128{bottom:247.989000px;}
.y2b{bottom:251.619150px;}
.y191{bottom:254.047500px;}
.y15f{bottom:256.356000px;}
.yd6{bottom:257.233650px;}
.yf8{bottom:257.274000px;}
.y1f9{bottom:257.274150px;}
.y1cc{bottom:260.406150px;}
.y69{bottom:262.269000px;}
.y2a{bottom:268.062750px;}
.y190{bottom:269.734500px;}
.y15e{bottom:272.043000px;}
.yd5{bottom:272.934150px;}
.yf7{bottom:272.961000px;}
.y1f8{bottom:272.961150px;}
.ya5{bottom:275.904150px;}
.y68{bottom:277.956000px;}
.y29{bottom:284.506350px;}
.y18f{bottom:285.421500px;}
.y15d{bottom:287.730000px;}
.yd4{bottom:288.621150px;}
.yf6{bottom:288.648000px;}
.y1f7{bottom:288.648150px;}
.ya4{bottom:291.591150px;}
.y67{bottom:293.656500px;}
.y28{bottom:300.935550px;}
.y18e{bottom:301.122000px;}
.y15c{bottom:303.430500px;}
.yd3{bottom:304.308150px;}
.yf5{bottom:304.348500px;}
.y1f6{bottom:304.348650px;}
.y1fb{bottom:304.497150px;}
.y225{bottom:306.535500px;}
.ya3{bottom:307.278150px;}
.y66{bottom:309.343500px;}
.y18d{bottom:316.809000px;}
.y27{bottom:317.379150px;}
.y15b{bottom:319.117500px;}
.yd2{bottom:320.008650px;}
.yf4{bottom:320.035500px;}
.y1f5{bottom:320.035650px;}
.y1fa{bottom:320.184150px;}
.y224{bottom:322.236000px;}
.ya2{bottom:322.978650px;}
.y65{bottom:325.030500px;}
.y18c{bottom:332.496000px;}
.y26{bottom:333.822750px;}
.y15a{bottom:334.804500px;}
.yd1{bottom:335.695650px;}
.yf3{bottom:335.722500px;}
.y1f4{bottom:335.722650px;}
.y1cb{bottom:335.871150px;}
.y223{bottom:337.923000px;}
.ya1{bottom:338.665650px;}
.y64{bottom:340.731000px;}
.y131{bottom:343.459500px;}
.y135{bottom:345.172500px;}
.y19b{bottom:345.442650px;}
.y18b{bottom:348.196500px;}
.y137{bottom:348.230572px;}
.y133{bottom:349.408180px;}
.y132{bottom:349.555224px;}
.y134{bottom:349.556321px;}
.y25{bottom:350.251950px;}
.y159{bottom:350.505000px;}
.yd0{bottom:351.382650px;}
.y1f3{bottom:351.423150px;}
.y1ca{bottom:351.571650px;}
.y13f{bottom:352.632000px;}
.y222{bottom:353.610000px;}
.ya0{bottom:354.352650px;}
.y141{bottom:355.048343px;}
.y140{bottom:355.677119px;}
.y63{bottom:356.418000px;}
.y129{bottom:359.801114px;}
.yf2{bottom:361.129500px;}
.y18a{bottom:363.883500px;}
.y158{bottom:366.192000px;}
.y24{bottom:366.694350px;}
.ycf{bottom:367.083150px;}
.y1c9{bottom:367.258650px;}
.y221{bottom:369.310500px;}
.y9f{bottom:370.053150px;}
.y142{bottom:371.689500px;}
.y62{bottom:372.105000px;}
.y1f2{bottom:375.331650px;}
.y189{bottom:379.570500px;}
.y157{bottom:381.879000px;}
.yce{bottom:382.770150px;}
.y1c8{bottom:382.945650px;}
.y23{bottom:383.136750px;}
.y220{bottom:384.997500px;}
.y9e{bottom:385.740150px;}
.y61{bottom:387.805500px;}
.y12d{bottom:389.068500px;}
.y188{bottom:395.271000px;}
.yf1{bottom:397.120650px;}
.y13a{bottom:397.467000px;}
.y156{bottom:397.579500px;}
.ycd{bottom:398.457150px;}
.y1c7{bottom:398.646150px;}
.y22{bottom:399.565950px;}
.y21f{bottom:400.684500px;}
.y9d{bottom:401.427150px;}
.y60{bottom:403.492500px;}
.y12e{bottom:405.638334px;}
.y13b{bottom:410.678974px;}
.y187{bottom:410.958000px;}
.yf0{bottom:412.807650px;}
.y155{bottom:413.266500px;}
.ycc{bottom:414.157650px;}
.y1c6{bottom:414.333150px;}
.y1f1{bottom:415.116000px;}
.y21{bottom:416.008350px;}
.y21e{bottom:416.385000px;}
.y9c{bottom:417.127650px;}
.y5f{bottom:419.179500px;}
.y12f{bottom:422.208168px;}
.y13c{bottom:423.904115px;}
.yef{bottom:428.494650px;}
.y154{bottom:428.953500px;}
.ycb{bottom:429.844650px;}
.y1c5{bottom:430.020150px;}
.y1f0{bottom:430.803000px;}
.y21d{bottom:432.072000px;}
.y20{bottom:432.451950px;}
.y9b{bottom:432.814650px;}
.y5e{bottom:434.866500px;}
.y13d{bottom:437.125965px;}
.y130{bottom:438.778002px;}
.y186{bottom:443.439000px;}
.yee{bottom:444.195150px;}
.yca{bottom:445.531500px;}
.y1c4{bottom:445.720650px;}
.y21c{bottom:447.759000px;}
.y138{bottom:448.472144px;}
.y9a{bottom:448.501650px;}
.y1f{bottom:448.881150px;}
.y13e{bottom:450.347815px;}
.y5d{bottom:450.567000px;}
.y1ef{bottom:454.711650px;}
.y185{bottom:456.885000px;}
.y118{bottom:457.830000px;}
.yed{bottom:459.882150px;}
.yc9{bottom:461.218500px;}
.y1c3{bottom:461.407650px;}
.y153{bottom:461.434500px;}
.y21b{bottom:463.446000px;}
.y99{bottom:464.188650px;}
.y1e{bottom:465.323550px;}
.y5c{bottom:466.254000px;}
.y184{bottom:470.331000px;}
.y12a{bottom:471.610850px;}
.y152{bottom:474.880500px;}
.yec{bottom:475.569150px;}
.yc8{bottom:476.919000px;}
.y1c2{bottom:477.094650px;}
.y21a{bottom:479.146500px;}
.y98{bottom:479.889150px;}
.y1d{bottom:481.765950px;}
.y5b{bottom:481.941000px;}
.y183{bottom:483.790500px;}
.y12c{bottom:485.502000px;}
.y151{bottom:488.340000px;}
.yeb{bottom:491.256150px;}
.yc7{bottom:492.606000px;}
.y1c1{bottom:492.781650px;}
.y1ee{bottom:494.496150px;}
.y219{bottom:494.833500px;}
.y97{bottom:495.576150px;}
.y5a{bottom:497.641500px;}
.y1c{bottom:498.195150px;}
.y150{bottom:501.786000px;}
.yea{bottom:506.956650px;}
.yc6{bottom:508.293000px;}
.y1c0{bottom:508.482150px;}
.y1ed{bottom:510.183150px;}
.y218{bottom:510.520500px;}
.y96{bottom:511.263150px;}
.y59{bottom:513.328500px;}
.y136{bottom:513.408000px;}
.y17d{bottom:517.588650px;}
.y1b{bottom:521.658000px;}
.ye9{bottom:522.643650px;}
.yc5{bottom:523.993500px;}
.y1bf{bottom:524.169150px;}
.y17e{bottom:525.594236px;}
.y1ec{bottom:525.870150px;}
.y217{bottom:526.221000px;}
.y95{bottom:526.963650px;}
.y58{bottom:529.015500px;}
.y117{bottom:531.235500px;}
.ye8{bottom:538.330650px;}
.yc4{bottom:539.680500px;}
.y1be{bottom:539.856150px;}
.y1eb{bottom:541.570650px;}
.y216{bottom:541.908000px;}
.y94{bottom:542.650650px;}
.y57{bottom:544.716000px;}
.y124{bottom:552.643500px;}
.y113{bottom:552.735000px;}
.ye7{bottom:554.031150px;}
.yc3{bottom:555.367500px;}
.y1bd{bottom:555.556650px;}
.y1ea{bottom:557.257650px;}
.y215{bottom:557.595000px;}
.y93{bottom:558.337650px;}
.y56{bottom:560.403000px;}
.ye6{bottom:569.718150px;}
.yc2{bottom:571.068000px;}
.y1bc{bottom:571.243650px;}
.y1a{bottom:571.567800px;}
.y214{bottom:573.295500px;}
.y92{bottom:574.038150px;}
.y55{bottom:576.090000px;}
.y1e9{bottom:581.166000px;}
.ye5{bottom:585.405150px;}
.y19{bottom:585.769650px;}
.yc1{bottom:586.755000px;}
.y1bb{bottom:586.930650px;}
.y180{bottom:587.596650px;}
.y17f{bottom:588.432150px;}
.y213{bottom:588.982500px;}
.y91{bottom:589.725150px;}
.y54{bottom:591.790500px;}
.y18{bottom:599.971500px;}
.ye4{bottom:601.105650px;}
.yc0{bottom:602.442000px;}
.y1ba{bottom:602.631150px;}
.y17{bottom:603.508650px;}
.y212{bottom:604.669500px;}
.y90{bottom:605.412150px;}
.y53{bottom:607.477500px;}
.y114{bottom:610.756518px;}
.ye3{bottom:616.792650px;}
.ybf{bottom:618.142500px;}
.y1b9{bottom:618.318150px;}
.y211{bottom:620.370000px;}
.y1e8{bottom:620.950500px;}
.y8f{bottom:621.112650px;}
.y16{bottom:623.124000px;}
.y52{bottom:623.164500px;}
.ye2{bottom:632.479650px;}
.ybe{bottom:633.829500px;}
.y1b8{bottom:634.005150px;}
.y210{bottom:636.057000px;}
.y1e7{bottom:636.637500px;}
.y8e{bottom:636.799650px;}
.y51{bottom:638.851500px;}
.y15{bottom:642.550650px;}
.y149{bottom:642.886500px;}
.y127{bottom:644.641500px;}
.y14b{bottom:645.023021px;}
.y14a{bottom:647.481063px;}
.ye1{bottom:648.180150px;}
.y181{bottom:648.997736px;}
.y11e{bottom:649.155000px;}
.ybd{bottom:649.516500px;}
.y1b7{bottom:649.705650px;}
.y125{bottom:651.506070px;}
.y20f{bottom:651.744000px;}
.y11f{bottom:652.199021px;}
.y1e6{bottom:652.338000px;}
.y8d{bottom:652.486650px;}
.y50{bottom:654.552000px;}
.y120{bottom:655.101485px;}
.y121{bottom:655.249626px;}
.y122{bottom:657.328500px;}
.y13{bottom:661.977000px;}
.y14{bottom:661.977150px;}
.ye0{bottom:663.867150px;}
.ybc{bottom:665.203500px;}
.y1b6{bottom:665.392650px;}
.y20e{bottom:667.431000px;}
.y1e5{bottom:668.025000px;}
.y8c{bottom:668.173650px;}
.y115{bottom:668.779224px;}
.y4f{bottom:670.239000px;}
.ydf{bottom:679.554150px;}
.ybb{bottom:680.904000px;}
.y1b5{bottom:681.079650px;}
.y12{bottom:681.403500px;}
.y20d{bottom:683.131500px;}
.y1e4{bottom:683.712000px;}
.y8b{bottom:683.874150px;}
.y4e{bottom:685.926000px;}
.y11{bottom:686.304150px;}
.y143{bottom:688.019550px;}
.y11a{bottom:694.032750px;}
.yde{bottom:695.241150px;}
.yba{bottom:696.591000px;}
.y1b4{bottom:696.766650px;}
.y20c{bottom:698.818500px;}
.y144{bottom:699.422010px;}
.y8a{bottom:699.561150px;}
.y10{bottom:700.843500px;}
.yf{bottom:700.843650px;}
.y4d{bottom:701.626500px;}
.y1e3{bottom:707.620500px;}
.y145{bottom:710.825567px;}
.y1b3{bottom:712.467150px;}
.y11b{bottom:714.040550px;}
.y20b{bottom:714.505500px;}
.y4c{bottom:717.313500px;}
.ye{bottom:720.270000px;}
.y146{bottom:722.228027px;}
.y116{bottom:726.810252px;}
.yb9{bottom:727.938000px;}
.ydd{bottom:727.938150px;}
.y1b2{bottom:728.154150px;}
.y20a{bottom:730.206000px;}
.y4b{bottom:733.000500px;}
.y147{bottom:733.631584px;}
.y89{bottom:733.878150px;}
.y11c{bottom:734.048350px;}
.yd{bottom:739.696500px;}
.yb8{bottom:743.638500px;}
.ydc{bottom:743.638650px;}
.y1b1{bottom:743.841150px;}
.yc{bottom:744.597000px;}
.y148{bottom:745.035142px;}
.y209{bottom:745.893000px;}
.y1e2{bottom:747.405150px;}
.y4a{bottom:748.701000px;}
.y88{bottom:749.578650px;}
.y182{bottom:750.294150px;}
.y126{bottom:750.375772px;}
.y11d{bottom:754.046275px;}
.yb7{bottom:759.325500px;}
.ydb{bottom:759.325650px;}
.y1b0{bottom:759.541650px;}
.y208{bottom:761.580000px;}
.y49{bottom:764.388000px;}
.y87{bottom:765.265650px;}
.y17b{bottom:768.714000px;}
.y1e1{bottom:771.313500px;}
.ya{bottom:771.340050px;}
.yb6{bottom:775.012500px;}
.yda{bottom:775.012650px;}
.y1af{bottom:775.228650px;}
.y207{bottom:777.280500px;}
.yb{bottom:778.428000px;}
.y48{bottom:780.075000px;}
.y86{bottom:780.952650px;}
.y119{bottom:790.246650px;}
.yb5{bottom:790.713000px;}
.yd9{bottom:790.713150px;}
.y1ae{bottom:790.915650px;}
.y206{bottom:792.967500px;}
.y47{bottom:795.775500px;}
.y8{bottom:798.246150px;}
.y9{bottom:805.320150px;}
.y85{bottom:806.359650px;}
.y1ad{bottom:806.616150px;}
.y205{bottom:808.654500px;}
.y1e0{bottom:811.098000px;}
.y46{bottom:811.462500px;}
.y123{bottom:813.757350px;}
.y16d{bottom:819.431565px;}
.y175{bottom:819.432315px;}
.y1ac{bottom:822.303150px;}
.yb4{bottom:823.248000px;}
.y204{bottom:824.355000px;}
.y1df{bottom:826.785000px;}
.y45{bottom:827.149500px;}
.yb3{bottom:836.694000px;}
.y7{bottom:837.099000px;}
.y1ab{bottom:837.990150px;}
.y203{bottom:840.042000px;}
.y1de{bottom:842.485500px;}
.y16a{bottom:842.815650px;}
.y172{bottom:842.817150px;}
.y44{bottom:842.836500px;}
.y84{bottom:843.970500px;}
.y112{bottom:848.817000px;}
.yb2{bottom:850.153500px;}
.y1aa{bottom:853.690650px;}
.y16e{bottom:854.914650px;}
.y202{bottom:855.729000px;}
.y1dd{bottom:858.172500px;}
.y43{bottom:858.537000px;}
.y83{bottom:859.657500px;}
.y111{bottom:862.263000px;}
.yb1{bottom:863.599500px;}
.y173{bottom:867.999150px;}
.y16b{bottom:868.000650px;}
.y201{bottom:869.377500px;}
.y1a9{bottom:869.377650px;}
.y1dc{bottom:873.859500px;}
.y42{bottom:874.224000px;}
.y82{bottom:875.358000px;}
.y6{bottom:877.450500px;}
.y200{bottom:885.064500px;}
.y1a8{bottom:885.064650px;}
.y110{bottom:888.735600px;}
.y1db{bottom:889.560000px;}
.y41{bottom:889.911000px;}
.y81{bottom:891.045000px;}
.y176{bottom:895.006650px;}
.y1ff{bottom:900.751500px;}
.y1a7{bottom:900.751650px;}
.y10f{bottom:903.680250px;}
.y40{bottom:905.611500px;}
.y80{bottom:906.732000px;}
.y1da{bottom:913.468650px;}
.y5{bottom:916.303500px;}
.y1fe{bottom:916.452000px;}
.y1a6{bottom:916.452150px;}
.y10e{bottom:918.624900px;}
.y3f{bottom:921.298500px;}
.y7f{bottom:922.432500px;}
.y1fd{bottom:932.139000px;}
.y1a5{bottom:932.139150px;}
.y10d{bottom:933.569550px;}
.y3e{bottom:936.985500px;}
.y7e{bottom:938.119500px;}
.y1fc{bottom:947.826000px;}
.y1a4{bottom:947.826150px;}
.y10c{bottom:948.514200px;}
.y3d{bottom:952.686000px;}
.y1d9{bottom:953.253150px;}
.y7d{bottom:953.806500px;}
.y10b{bottom:963.458850px;}
.y1a3{bottom:963.526650px;}
.y3c{bottom:968.373000px;}
.y7c{bottom:969.493500px;}
.y1d8{bottom:977.161500px;}
.y10a{bottom:978.403500px;}
.y1a2{bottom:979.213650px;}
.y34{bottom:981.045000px;}
.y3b{bottom:984.060000px;}
.y7b{bottom:985.194000px;}
.y17c{bottom:994.818900px;}
.y1a1{bottom:994.900650px;}
.y3a{bottom:999.760500px;}
.y7a{bottom:1000.881000px;}
.y179{bottom:1004.667900px;}
.y171{bottom:1004.669400px;}
.y109{bottom:1007.683950px;}
.y105{bottom:1007.685000px;}
.y1a0{bottom:1010.601150px;}
.y39{bottom:1015.447500px;}
.y79{bottom:1016.568000px;}
.y1d7{bottom:1016.946000px;}
.y178{bottom:1019.044500px;}
.y170{bottom:1019.046000px;}
.y108{bottom:1021.130250px;}
.y106{bottom:1021.131300px;}
.y19f{bottom:1026.288150px;}
.y4{bottom:1030.622100px;}
.y38{bottom:1031.134500px;}
.y78{bottom:1032.268500px;}
.y1d6{bottom:1032.633000px;}
.y177{bottom:1033.421100px;}
.y16f{bottom:1033.422600px;}
.y107{bottom:1034.590200px;}
.y19e{bottom:1041.975150px;}
.y3{bottom:1044.810300px;}
.y77{bottom:1047.955500px;}
.y1d5{bottom:1048.320000px;}
.y37{bottom:1056.541650px;}
.y19d{bottom:1057.675650px;}
.y2{bottom:1059.012150px;}
.y76{bottom:1063.642500px;}
.y16c{bottom:1066.470900px;}
.y174{bottom:1066.471650px;}
.y17a{bottom:1070.448000px;}
.y1d4{bottom:1072.228500px;}
.y19c{bottom:1073.362650px;}
.y104{bottom:1075.833000px;}
.y36{bottom:1078.209000px;}
.y75{bottom:1079.343000px;}
.y1{bottom:1092.654000px;}
.y35{bottom:1120.882500px;}
.h10{height:18.536700px;}
.h14{height:22.458000px;}
.h15{height:24.738600px;}
.h1d{height:28.368000px;}
.h2c{height:28.368600px;}
.h27{height:28.374965px;}
.h1c{height:28.476000px;}
.ha{height:29.786400px;}
.h4{height:30.732000px;}
.h3{height:30.849000px;}
.h11{height:31.324800px;}
.h24{height:31.954541px;}
.h20{height:33.096000px;}
.h1f{height:33.222000px;}
.h21{height:34.617710px;}
.h29{height:34.887216px;}
.h17{height:34.945312px;}
.h1b{height:35.145000px;}
.h1a{height:35.460000px;}
.h1e{height:35.460600px;}
.h2d{height:35.595000px;}
.h2f{height:36.161400px;}
.h2e{height:36.162000px;}
.h2b{height:36.680280px;}
.h16{height:36.691200px;}
.h18{height:36.878400px;}
.h25{height:37.280006px;}
.h2{height:37.824000px;}
.h13{height:37.968000px;}
.h28{height:38.816626px;}
.h2a{height:38.816945px;}
.h19{height:40.341000px;}
.hb{height:42.552000px;}
.h8{height:43.024327px;}
.hf{height:43.416000px;}
.h26{height:43.740000px;}
.h12{height:47.040000px;}
.he{height:49.387800px;}
.hd{height:49.388400px;}
.hc{height:49.389000px;}
.h5{height:50.305920px;}
.h23{height:50.594981px;}
.h22{height:62.726664px;}
.h7{height:71.320327px;}
.h9{height:71.376127px;}
.h6{height:85.428000px;}
.h0{height:1173.429000px;}
.h1{height:1173.750000px;}
.w0{width:892.911000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:81.756000px;}
.x10{left:83.821500px;}
.x14{left:85.090500px;}
.x8{left:96.255000px;}
.x52{left:99.697500px;}
.x13{left:103.018500px;}
.x53{left:137.227500px;}
.x4f{left:150.471750px;}
.xf{left:153.804525px;}
.x1f{left:157.711050px;}
.x9{left:169.695000px;}
.x30{left:172.658706px;}
.x17{left:173.758800px;}
.x2f{left:179.270700px;}
.x1e{left:181.274856px;}
.x1d{left:187.886850px;}
.x4c{left:193.025400px;}
.x31{left:198.227250px;}
.x20{left:201.054300px;}
.x32{left:202.350750px;}
.x51{left:203.888520px;}
.x4b{left:212.492550px;}
.x4d{left:214.597500px;}
.xc{left:220.482000px;}
.x4e{left:224.597250px;}
.x38{left:225.785250px;}
.x28{left:232.454700px;}
.x7{left:235.791000px;}
.x23{left:239.014161px;}
.x22{left:245.112079px;}
.xd{left:249.736500px;}
.x33{left:256.861950px;}
.x21{left:263.420100px;}
.x5{left:274.225500px;}
.x34{left:288.247650px;}
.x24{left:294.817500px;}
.x35{left:301.415730px;}
.x3{left:304.735500px;}
.x25{left:307.985580px;}
.x50{left:311.121000px;}
.x36{left:328.083287px;}
.x26{left:334.785915px;}
.x18{left:337.149300px;}
.x37{left:341.251367px;}
.x27{left:347.952897px;}
.x6{left:364.554000px;}
.xe{left:376.150350px;}
.x3b{left:405.954000px;}
.x19{left:410.872950px;}
.x1{left:458.352000px;}
.x15{left:461.673000px;}
.x46{left:476.280000px;}
.x54{left:478.804500px;}
.x2e{left:480.772500px;}
.x2a{left:483.199705px;}
.x1a{left:484.596600px;}
.xb{left:488.646000px;}
.x29{left:489.801000px;}
.x39{left:490.878000px;}
.x2c{left:502.977000px;}
.x3c{left:504.054000px;}
.x48{left:507.871500px;}
.x49{left:522.016135px;}
.x47{left:527.302500px;}
.x2d{left:534.484500px;}
.x43{left:535.686000px;}
.x4a{left:539.440500px;}
.x3f{left:541.304898px;}
.x45{left:542.993677px;}
.x3e{left:547.414887px;}
.x2b{left:549.349500px;}
.x3d{left:553.515000px;}
.x44{left:555.195000px;}
.x3a{left:558.714000px;}
.x55{left:578.043000px;}
.x40{left:590.844000px;}
.x4{left:595.282500px;}
.x1b{left:603.140550px;}
.x41{left:635.662658px;}
.x42{left:648.829640px;}
.xa{left:681.142500px;}
.x16{left:691.740000px;}
.x1c{left:721.697100px;}
.x11{left:783.175500px;}
.x12{left:859.650000px;}
@media print{
.v2{vertical-align:-25.152000pt;}
.v3{vertical-align:-17.424000pt;}
.v5{vertical-align:-12.576533pt;}
.v6{vertical-align:-5.327467pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.424533pt;}
.v1{vertical-align:25.152000pt;}
.ls3c{letter-spacing:-4.106667pt;}
.ls39{letter-spacing:-3.445867pt;}
.ls18{letter-spacing:-1.677867pt;}
.ls5a{letter-spacing:-0.736000pt;}
.ls4e{letter-spacing:-0.484000pt;}
.ls2b{letter-spacing:-0.480000pt;}
.ls3b{letter-spacing:-0.451733pt;}
.ls48{letter-spacing:-0.368000pt;}
.ls3f{letter-spacing:-0.022400pt;}
.ls40{letter-spacing:-0.018667pt;}
.ls28{letter-spacing:-0.016000pt;}
.ls3d{letter-spacing:-0.014933pt;}
.ls15{letter-spacing:-0.012800pt;}
.ls27{letter-spacing:-0.012000pt;}
.ls41{letter-spacing:-0.011200pt;}
.ls2f{letter-spacing:-0.009600pt;}
.ls30{letter-spacing:-0.009067pt;}
.ls1a{letter-spacing:-0.008533pt;}
.ls26{letter-spacing:-0.008000pt;}
.ls3e{letter-spacing:-0.007467pt;}
.ls17{letter-spacing:-0.006933pt;}
.ls24{letter-spacing:-0.004533pt;}
.ls19{letter-spacing:-0.004267pt;}
.ls46{letter-spacing:-0.004227pt;}
.ls25{letter-spacing:-0.004000pt;}
.ls3a{letter-spacing:-0.003733pt;}
.ls4d{letter-spacing:-0.003200pt;}
.ls14{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.003200pt;}
.ls51{letter-spacing:0.003465pt;}
.ls0{letter-spacing:0.003467pt;}
.ls31{letter-spacing:0.003733pt;}
.ls34{letter-spacing:0.003902pt;}
.ls1f{letter-spacing:0.004000pt;}
.ls45{letter-spacing:0.004227pt;}
.ls52{letter-spacing:0.004260pt;}
.ls35{letter-spacing:0.004552pt;}
.ls53{letter-spacing:0.004733pt;}
.ls11{letter-spacing:0.005333pt;}
.ls33{letter-spacing:0.006178pt;}
.ls2c{letter-spacing:0.006400pt;}
.ls3{letter-spacing:0.006933pt;}
.ls32{letter-spacing:0.007659pt;}
.ls44{letter-spacing:0.007803pt;}
.ls22{letter-spacing:0.008000pt;}
.ls42{letter-spacing:0.008454pt;}
.ls2e{letter-spacing:0.009600pt;}
.ls1{letter-spacing:0.010400pt;}
.ls50{letter-spacing:0.012000pt;}
.ls1d{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.017333pt;}
.ls4{letter-spacing:2.630478pt;}
.lsb{letter-spacing:2.631763pt;}
.ls6{letter-spacing:2.646290pt;}
.ls10{letter-spacing:2.669067pt;}
.lse{letter-spacing:2.678400pt;}
.lsd{letter-spacing:2.679011pt;}
.ls7{letter-spacing:2.679763pt;}
.lsa{letter-spacing:2.680297pt;}
.ls9{letter-spacing:2.681968pt;}
.ls5{letter-spacing:2.683864pt;}
.ls8{letter-spacing:2.777968pt;}
.ls37{letter-spacing:6.592000pt;}
.ls55{letter-spacing:6.672000pt;}
.ls2{letter-spacing:7.882112pt;}
.lsf{letter-spacing:8.016000pt;}
.ls56{letter-spacing:8.928000pt;}
.ls13{letter-spacing:9.664000pt;}
.ls4c{letter-spacing:10.400000pt;}
.ls4b{letter-spacing:10.544000pt;}
.ls38{letter-spacing:10.944000pt;}
.ls1e{letter-spacing:11.104000pt;}
.ls57{letter-spacing:11.736000pt;}
.ls5b{letter-spacing:11.744000pt;}
.ls21{letter-spacing:11.824000pt;}
.ls29{letter-spacing:11.872000pt;}
.ls49{letter-spacing:11.936000pt;}
.ls2a{letter-spacing:13.464000pt;}
.ls1c{letter-spacing:13.552000pt;}
.ls20{letter-spacing:14.896000pt;}
.ls4f{letter-spacing:15.856000pt;}
.ls4a{letter-spacing:16.528000pt;}
.ls23{letter-spacing:18.880000pt;}
.ls16{letter-spacing:19.267733pt;}
.ls58{letter-spacing:20.944000pt;}
.lsc{letter-spacing:21.975763pt;}
.ls1b{letter-spacing:82.364267pt;}
.ls59{letter-spacing:118.415947pt;}
.ls36{letter-spacing:209.388539pt;}
.ls47{letter-spacing:231.706184pt;}
.ls43{letter-spacing:262.879031pt;}
.ls54{letter-spacing:1064.282667pt;}
.ws13b{word-spacing:-274.629609pt;}
.ws13d{word-spacing:-221.139118pt;}
.ws8{word-spacing:-53.934400pt;}
.ws187{word-spacing:-35.856000pt;}
.ws5c{word-spacing:-33.464000pt;}
.ws4f{word-spacing:-31.872000pt;}
.ws1ab{word-spacing:-31.744000pt;}
.ws18{word-spacing:-26.672000pt;}
.ws1f4{word-spacing:-26.666667pt;}
.wsa{word-spacing:-24.266400pt;}
.ws0{word-spacing:-22.656000pt;}
.ws1af{word-spacing:-21.248000pt;}
.ws1d3{word-spacing:-21.244000pt;}
.wscd{word-spacing:-21.240000pt;}
.ws183{word-spacing:-21.232000pt;}
.wsdf{word-spacing:-21.224000pt;}
.ws11c{word-spacing:-20.016000pt;}
.ws34{word-spacing:-20.000000pt;}
.ws1ee{word-spacing:-19.996000pt;}
.ws22d{word-spacing:-19.992000pt;}
.ws4b{word-spacing:-19.984000pt;}
.ws1fc{word-spacing:-19.520000pt;}
.ws124{word-spacing:-18.670400pt;}
.ws12a{word-spacing:-18.666667pt;}
.ws129{word-spacing:-18.662933pt;}
.ws128{word-spacing:-18.659200pt;}
.ws127{word-spacing:-18.651733pt;}
.ws125{word-spacing:-18.214933pt;}
.ws14{word-spacing:-17.343733pt;}
.ws2e{word-spacing:-17.340267pt;}
.ws19a{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.984000pt;}
.ws142{word-spacing:-15.632000pt;}
.ws7{word-spacing:-15.461333pt;}
.wsb{word-spacing:-15.412800pt;}
.ws9{word-spacing:-15.385067pt;}
.ws126{word-spacing:-14.560000pt;}
.wsa1{word-spacing:-13.528000pt;}
.ws1f1{word-spacing:-13.376000pt;}
.ws215{word-spacing:-13.112000pt;}
.ws5{word-spacing:-12.558037pt;}
.wsb0{word-spacing:-12.504000pt;}
.ws1f5{word-spacing:-12.496000pt;}
.ws93{word-spacing:-12.480000pt;}
.wsb7{word-spacing:-12.464000pt;}
.wsa9{word-spacing:-12.440000pt;}
.ws92{word-spacing:-12.424000pt;}
.ws168{word-spacing:-12.400000pt;}
.ws169{word-spacing:-12.392000pt;}
.ws21e{word-spacing:-12.384000pt;}
.ws94{word-spacing:-12.376000pt;}
.ws1a7{word-spacing:-12.368000pt;}
.ws1ac{word-spacing:-12.360000pt;}
.ws1be{word-spacing:-12.296000pt;}
.wsa0{word-spacing:-12.272000pt;}
.ws50{word-spacing:-12.224000pt;}
.ws51{word-spacing:-12.200000pt;}
.ws1f0{word-spacing:-12.184000pt;}
.ws1f2{word-spacing:-12.144000pt;}
.ws10c{word-spacing:-12.136000pt;}
.ws1f3{word-spacing:-12.120000pt;}
.ws11d{word-spacing:-12.104000pt;}
.ws62{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.994667pt;}
.ws16d{word-spacing:-11.992000pt;}
.ws214{word-spacing:-11.968000pt;}
.ws1b8{word-spacing:-11.960000pt;}
.ws222{word-spacing:-11.880000pt;}
.ws216{word-spacing:-11.872000pt;}
.ws191{word-spacing:-11.846318pt;}
.ws105{word-spacing:-11.840000pt;}
.ws209{word-spacing:-11.816000pt;}
.ws74{word-spacing:-11.752000pt;}
.ws118{word-spacing:-11.728000pt;}
.ws240{word-spacing:-11.664000pt;}
.ws1df{word-spacing:-11.616000pt;}
.ws20d{word-spacing:-11.536000pt;}
.ws52{word-spacing:-11.520000pt;}
.ws10d{word-spacing:-11.488000pt;}
.ws18a{word-spacing:-11.472000pt;}
.ws1e3{word-spacing:-11.464000pt;}
.wse7{word-spacing:-11.456000pt;}
.ws1fb{word-spacing:-11.392000pt;}
.ws1cf{word-spacing:-11.344000pt;}
.wsaf{word-spacing:-11.320000pt;}
.ws56{word-spacing:-11.296000pt;}
.ws103{word-spacing:-11.184000pt;}
.ws84{word-spacing:-11.176000pt;}
.ws46{word-spacing:-11.168000pt;}
.ws18d{word-spacing:-11.088000pt;}
.wsc6{word-spacing:-11.080000pt;}
.ws1d2{word-spacing:-11.048000pt;}
.ws1d5{word-spacing:-11.024000pt;}
.ws228{word-spacing:-10.960000pt;}
.ws36{word-spacing:-10.952000pt;}
.ws1ec{word-spacing:-10.917333pt;}
.wsc5{word-spacing:-10.912000pt;}
.wsa3{word-spacing:-10.896000pt;}
.ws121{word-spacing:-10.880000pt;}
.ws81{word-spacing:-10.872000pt;}
.ws31{word-spacing:-10.869333pt;}
.ws13c{word-spacing:-10.850498pt;}
.wsfc{word-spacing:-10.848000pt;}
.ws13f{word-spacing:-10.846596pt;}
.ws200{word-spacing:-10.842667pt;}
.ws82{word-spacing:-10.840000pt;}
.ws102{word-spacing:-10.824000pt;}
.ws9b{word-spacing:-10.800000pt;}
.ws1a4{word-spacing:-10.792000pt;}
.ws201{word-spacing:-10.768000pt;}
.ws1a5{word-spacing:-10.760000pt;}
.wsef{word-spacing:-10.752000pt;}
.ws5f{word-spacing:-10.736000pt;}
.ws24{word-spacing:-10.722133pt;}
.ws1f8{word-spacing:-10.712000pt;}
.ws172{word-spacing:-10.704000pt;}
.ws1ad{word-spacing:-10.696000pt;}
.ws89{word-spacing:-10.664000pt;}
.wsd{word-spacing:-10.656000pt;}
.ws170{word-spacing:-10.648000pt;}
.ws1ca{word-spacing:-10.640000pt;}
.ws21a{word-spacing:-10.616000pt;}
.ws17b{word-spacing:-10.592000pt;}
.ws1c7{word-spacing:-10.584000pt;}
.ws5b{word-spacing:-10.576000pt;}
.ws58{word-spacing:-10.536000pt;}
.ws57{word-spacing:-10.520000pt;}
.wsd4{word-spacing:-10.504000pt;}
.wsae{word-spacing:-10.496000pt;}
.wsa6{word-spacing:-10.488000pt;}
.ws1ce{word-spacing:-10.456000pt;}
.wsa7{word-spacing:-10.440000pt;}
.ws23d{word-spacing:-10.424000pt;}
.ws9d{word-spacing:-10.400000pt;}
.wsb8{word-spacing:-10.312000pt;}
.ws220{word-spacing:-10.224000pt;}
.ws7f{word-spacing:-10.216000pt;}
.ws83{word-spacing:-10.200000pt;}
.ws23e{word-spacing:-10.184000pt;}
.ws1c9{word-spacing:-10.120000pt;}
.ws244{word-spacing:-10.096000pt;}
.wsac{word-spacing:-10.072000pt;}
.ws104{word-spacing:-10.064000pt;}
.ws8e{word-spacing:-10.040000pt;}
.ws3e{word-spacing:-10.032000pt;}
.ws76{word-spacing:-10.024000pt;}
.ws21f{word-spacing:-9.992000pt;}
.ws221{word-spacing:-9.976000pt;}
.ws1f{word-spacing:-9.958400pt;}
.ws69{word-spacing:-9.952000pt;}
.ws1d{word-spacing:-9.949867pt;}
.wsf1{word-spacing:-9.944000pt;}
.ws1fa{word-spacing:-9.936000pt;}
.wsf0{word-spacing:-9.896000pt;}
.ws202{word-spacing:-9.872000pt;}
.wsb3{word-spacing:-9.832000pt;}
.ws7e{word-spacing:-9.784000pt;}
.ws210{word-spacing:-9.776000pt;}
.ws1e6{word-spacing:-9.696000pt;}
.ws1d4{word-spacing:-9.624000pt;}
.ws225{word-spacing:-9.608000pt;}
.ws1f7{word-spacing:-9.568000pt;}
.ws173{word-spacing:-9.560000pt;}
.ws1f9{word-spacing:-9.496000pt;}
.ws1a{word-spacing:-9.489067pt;}
.ws1c{word-spacing:-9.480533pt;}
.ws141{word-spacing:-9.478400pt;}
.ws25{word-spacing:-9.476267pt;}
.ws23{word-spacing:-9.472000pt;}
.ws1b{word-spacing:-9.463467pt;}
.ws159{word-spacing:-9.456000pt;}
.ws26{word-spacing:-9.454933pt;}
.ws9e{word-spacing:-9.448000pt;}
.ws20{word-spacing:-9.433600pt;}
.ws21{word-spacing:-9.412267pt;}
.ws1{word-spacing:-9.408000pt;}
.ws12b{word-spacing:-9.393067pt;}
.wsd3{word-spacing:-9.392000pt;}
.ws158{word-spacing:-9.384000pt;}
.ws198{word-spacing:-9.372800pt;}
.ws1c0{word-spacing:-9.368000pt;}
.wsff{word-spacing:-9.360000pt;}
.wsfb{word-spacing:-9.352000pt;}
.ws8a{word-spacing:-9.344000pt;}
.wsab{word-spacing:-9.336000pt;}
.ws22e{word-spacing:-9.328000pt;}
.wsee{word-spacing:-9.320000pt;}
.wsc7{word-spacing:-9.312000pt;}
.ws171{word-spacing:-9.304000pt;}
.ws1dc{word-spacing:-9.272000pt;}
.ws1e1{word-spacing:-9.256000pt;}
.ws23c{word-spacing:-9.240000pt;}
.wsb9{word-spacing:-9.239360pt;}
.ws101{word-spacing:-9.232000pt;}
.ws182{word-spacing:-9.208000pt;}
.ws174{word-spacing:-9.120000pt;}
.ws1bc{word-spacing:-9.104000pt;}
.wsf8{word-spacing:-9.032000pt;}
.ws1e7{word-spacing:-9.016000pt;}
.ws249{word-spacing:-8.992000pt;}
.wsec{word-spacing:-8.976000pt;}
.ws109{word-spacing:-8.968000pt;}
.ws23a{word-spacing:-8.944000pt;}
.ws3d{word-spacing:-8.928000pt;}
.ws77{word-spacing:-8.920000pt;}
.ws204{word-spacing:-8.912000pt;}
.ws166{word-spacing:-8.908000pt;}
.ws223{word-spacing:-8.904000pt;}
.ws1c8{word-spacing:-8.896000pt;}
.ws3c{word-spacing:-8.888000pt;}
.ws70{word-spacing:-8.880000pt;}
.ws47{word-spacing:-8.872000pt;}
.ws8f{word-spacing:-8.864000pt;}
.ws20e{word-spacing:-8.856000pt;}
.ws16a{word-spacing:-8.848000pt;}
.ws16c{word-spacing:-8.840000pt;}
.ws60{word-spacing:-8.832000pt;}
.ws230{word-spacing:-8.824000pt;}
.ws20c{word-spacing:-8.816000pt;}
.ws111{word-spacing:-8.808000pt;}
.ws1ed{word-spacing:-8.800000pt;}
.ws16b{word-spacing:-8.792000pt;}
.ws15e{word-spacing:-8.784000pt;}
.ws1b5{word-spacing:-8.776000pt;}
.wse9{word-spacing:-8.768000pt;}
.ws18e{word-spacing:-8.752000pt;}
.wsbb{word-spacing:-8.736000pt;}
.wsfd{word-spacing:-8.728000pt;}
.ws1c2{word-spacing:-8.712000pt;}
.wsfe{word-spacing:-8.696000pt;}
.wsf2{word-spacing:-8.664000pt;}
.ws235{word-spacing:-8.632000pt;}
.ws189{word-spacing:-8.616000pt;}
.ws1d1{word-spacing:-8.608000pt;}
.ws1d0{word-spacing:-8.600000pt;}
.ws35{word-spacing:-8.552000pt;}
.ws33{word-spacing:-8.536000pt;}
.wscb{word-spacing:-8.496000pt;}
.wsc1{word-spacing:-8.468000pt;}
.wsed{word-spacing:-8.360000pt;}
.wsaa{word-spacing:-8.328000pt;}
.ws175{word-spacing:-8.320000pt;}
.ws116{word-spacing:-8.312000pt;}
.ws12f{word-spacing:-8.310400pt;}
.ws133{word-spacing:-8.302933pt;}
.ws123{word-spacing:-8.291733pt;}
.ws1aa{word-spacing:-8.280000pt;}
.ws130{word-spacing:-8.265600pt;}
.ws61{word-spacing:-8.264000pt;}
.ws138{word-spacing:-8.262400pt;}
.ws7b{word-spacing:-8.256000pt;}
.ws139{word-spacing:-8.252800pt;}
.ws137{word-spacing:-8.239467pt;}
.wsd1{word-spacing:-8.232000pt;}
.ws134{word-spacing:-8.224533pt;}
.ws239{word-spacing:-8.224000pt;}
.ws53{word-spacing:-8.208000pt;}
.ws224{word-spacing:-8.184000pt;}
.ws15{word-spacing:-8.174400pt;}
.wsd0{word-spacing:-8.168000pt;}
.wsbd{word-spacing:-8.156800pt;}
.ws4e{word-spacing:-8.152000pt;}
.wsbe{word-spacing:-8.150400pt;}
.ws48{word-spacing:-8.112000pt;}
.ws16f{word-spacing:-8.104000pt;}
.ws237{word-spacing:-8.064000pt;}
.ws16e{word-spacing:-8.056000pt;}
.ws161{word-spacing:-8.048000pt;}
.ws160{word-spacing:-8.040000pt;}
.wsa4{word-spacing:-8.032000pt;}
.ws15f{word-spacing:-8.024000pt;}
.ws236{word-spacing:-8.008000pt;}
.ws10f{word-spacing:-8.000000pt;}
.ws19b{word-spacing:-7.952000pt;}
.ws119{word-spacing:-7.936000pt;}
.ws98{word-spacing:-7.864000pt;}
.ws227{word-spacing:-7.848000pt;}
.ws11{word-spacing:-7.838133pt;}
.ws2a{word-spacing:-7.813867pt;}
.ws88{word-spacing:-7.808000pt;}
.ws1fe{word-spacing:-7.800000pt;}
.ws246{word-spacing:-7.792000pt;}
.ws28{word-spacing:-7.786133pt;}
.ws3{word-spacing:-7.782667pt;}
.ws12{word-spacing:-7.779200pt;}
.ws1ff{word-spacing:-7.776000pt;}
.ws2d{word-spacing:-7.768800pt;}
.ws16{word-spacing:-7.748000pt;}
.ws10{word-spacing:-7.737600pt;}
.ws2f{word-spacing:-7.734133pt;}
.ws2c{word-spacing:-7.727200pt;}
.ws4{word-spacing:-7.720267pt;}
.ws165{word-spacing:-7.696000pt;}
.ws167{word-spacing:-7.688000pt;}
.ws1bb{word-spacing:-7.680000pt;}
.ws226{word-spacing:-7.656000pt;}
.ws72{word-spacing:-7.648000pt;}
.ws40{word-spacing:-7.528000pt;}
.ws9a{word-spacing:-7.488000pt;}
.ws238{word-spacing:-7.456000pt;}
.ws87{word-spacing:-7.400000pt;}
.ws80{word-spacing:-7.336000pt;}
.wsc2{word-spacing:-7.304000pt;}
.ws155{word-spacing:-7.273600pt;}
.ws154{word-spacing:-7.248000pt;}
.ws11f{word-spacing:-7.240000pt;}
.ws156{word-spacing:-7.219200pt;}
.ws152{word-spacing:-7.206400pt;}
.ws75{word-spacing:-7.192000pt;}
.ws79{word-spacing:-7.160000pt;}
.wsd7{word-spacing:-7.152000pt;}
.wsc0{word-spacing:-7.144000pt;}
.wsbf{word-spacing:-7.142400pt;}
.wsa5{word-spacing:-7.136000pt;}
.ws1a0{word-spacing:-7.126400pt;}
.ws13a{word-spacing:-7.110400pt;}
.ws6d{word-spacing:-7.104000pt;}
.ws19f{word-spacing:-7.100800pt;}
.ws1d8{word-spacing:-7.024000pt;}
.wsbc{word-spacing:-7.020800pt;}
.ws1bf{word-spacing:-7.000000pt;}
.ws8c{word-spacing:-6.928000pt;}
.ws19c{word-spacing:-6.918400pt;}
.ws19e{word-spacing:-6.912000pt;}
.ws6e{word-spacing:-6.904000pt;}
.ws17c{word-spacing:-6.896000pt;}
.ws110{word-spacing:-6.880000pt;}
.wsd2{word-spacing:-6.872000pt;}
.ws42{word-spacing:-6.856000pt;}
.ws157{word-spacing:-6.848000pt;}
.ws10e{word-spacing:-6.832000pt;}
.ws22f{word-spacing:-6.824000pt;}
.wse4{word-spacing:-6.812000pt;}
.wsd8{word-spacing:-6.776000pt;}
.ws11e{word-spacing:-6.712000pt;}
.ws184{word-spacing:-6.704000pt;}
.ws177{word-spacing:-6.632000pt;}
.ws176{word-spacing:-6.600000pt;}
.ws15c{word-spacing:-6.576000pt;}
.ws1db{word-spacing:-6.568000pt;}
.ws11b{word-spacing:-6.520000pt;}
.ws39{word-spacing:-6.488000pt;}
.ws5e{word-spacing:-6.464000pt;}
.ws38{word-spacing:-6.448000pt;}
.ws37{word-spacing:-6.440000pt;}
.ws219{word-spacing:-6.416000pt;}
.ws86{word-spacing:-6.392000pt;}
.ws23b{word-spacing:-6.248000pt;}
.ws65{word-spacing:-6.232000pt;}
.ws73{word-spacing:-6.216000pt;}
.ws18b{word-spacing:-6.184000pt;}
.ws1b2{word-spacing:-6.152000pt;}
.wsf4{word-spacing:-6.144000pt;}
.ws1b1{word-spacing:-6.120000pt;}
.ws99{word-spacing:-6.096000pt;}
.wsa8{word-spacing:-6.040000pt;}
.ws11a{word-spacing:-6.016000pt;}
.ws1a2{word-spacing:-5.968000pt;}
.ws22b{word-spacing:-5.960000pt;}
.ws10b{word-spacing:-5.944000pt;}
.ws1da{word-spacing:-5.920000pt;}
.ws1a6{word-spacing:-5.856000pt;}
.ws1a9{word-spacing:-5.840000pt;}
.ws14f{word-spacing:-5.836800pt;}
.wse1{word-spacing:-5.824000pt;}
.wsfa{word-spacing:-5.816000pt;}
.ws151{word-spacing:-5.814400pt;}
.ws212{word-spacing:-5.744000pt;}
.wsdd{word-spacing:-5.736000pt;}
.ws213{word-spacing:-5.728000pt;}
.ws1cc{word-spacing:-5.680000pt;}
.ws1cb{word-spacing:-5.672000pt;}
.ws10a{word-spacing:-5.624000pt;}
.ws3a{word-spacing:-5.600000pt;}
.ws117{word-spacing:-5.584000pt;}
.wsf6{word-spacing:-5.576000pt;}
.ws3b{word-spacing:-5.568000pt;}
.ws185{word-spacing:-5.544000pt;}
.ws211{word-spacing:-5.536000pt;}
.wsf5{word-spacing:-5.528000pt;}
.ws1e0{word-spacing:-5.496000pt;}
.wsf7{word-spacing:-5.464000pt;}
.ws7d{word-spacing:-5.424000pt;}
.ws15a{word-spacing:-5.392000pt;}
.ws100{word-spacing:-5.384000pt;}
.ws14e{word-spacing:-5.334400pt;}
.ws14c{word-spacing:-5.328000pt;}
.ws64{word-spacing:-5.280000pt;}
.wsa2{word-spacing:-5.240000pt;}
.ws15d{word-spacing:-5.216000pt;}
.ws205{word-spacing:-5.184000pt;}
.ws55{word-spacing:-5.168000pt;}
.ws54{word-spacing:-5.136000pt;}
.ws32{word-spacing:-5.128000pt;}
.ws1b0{word-spacing:-5.112000pt;}
.ws1d9{word-spacing:-5.104000pt;}
.ws4a{word-spacing:-5.096000pt;}
.ws144{word-spacing:-5.088000pt;}
.ws4c{word-spacing:-5.056000pt;}
.ws197{word-spacing:-5.046400pt;}
.ws143{word-spacing:-5.040000pt;}
.ws145{word-spacing:-5.030400pt;}
.ws195{word-spacing:-4.976000pt;}
.ws91{word-spacing:-4.960000pt;}
.ws7c{word-spacing:-4.936000pt;}
.ws97{word-spacing:-4.904000pt;}
.ws41{word-spacing:-4.840000pt;}
.ws1bd{word-spacing:-4.816000pt;}
.ws1c1{word-spacing:-4.792000pt;}
.ws164{word-spacing:-4.720000pt;}
.ws18c{word-spacing:-4.680000pt;}
.ws163{word-spacing:-4.664000pt;}
.ws63{word-spacing:-4.632000pt;}
.ws49{word-spacing:-4.624000pt;}
.ws179{word-spacing:-4.600000pt;}
.ws120{word-spacing:-4.504000pt;}
.ws203{word-spacing:-4.488000pt;}
.ws178{word-spacing:-4.472000pt;}
.wsdc{word-spacing:-4.456000pt;}
.wsde{word-spacing:-4.392000pt;}
.wsf9{word-spacing:-4.384000pt;}
.wse2{word-spacing:-4.328000pt;}
.wscf{word-spacing:-4.312000pt;}
.wsc8{word-spacing:-4.304000pt;}
.ws186{word-spacing:-4.232000pt;}
.ws1b4{word-spacing:-4.224000pt;}
.ws85{word-spacing:-4.192000pt;}
.ws188{word-spacing:-4.184000pt;}
.ws107{word-spacing:-4.128000pt;}
.ws5d{word-spacing:-4.112000pt;}
.ws20b{word-spacing:-4.096000pt;}
.ws108{word-spacing:-4.088000pt;}
.ws90{word-spacing:-4.072000pt;}
.wse0{word-spacing:-4.048000pt;}
.ws181{word-spacing:-4.024000pt;}
.ws234{word-spacing:-3.992000pt;}
.wsea{word-spacing:-3.880000pt;}
.ws1b9{word-spacing:-3.816000pt;}
.ws208{word-spacing:-3.768000pt;}
.wscc{word-spacing:-3.752000pt;}
.wsce{word-spacing:-3.720000pt;}
.ws4d{word-spacing:-3.688000pt;}
.ws247{word-spacing:-3.672000pt;}
.wse5{word-spacing:-3.600000pt;}
.wsad{word-spacing:-3.576000pt;}
.ws1d6{word-spacing:-3.504000pt;}
.ws8b{word-spacing:-3.472000pt;}
.ws232{word-spacing:-3.176000pt;}
.ws5a{word-spacing:-3.136000pt;}
.ws9c{word-spacing:-3.096000pt;}
.ws1b6{word-spacing:-3.064000pt;}
.ws8d{word-spacing:-2.968000pt;}
.ws113{word-spacing:-2.920000pt;}
.ws43{word-spacing:-2.880000pt;}
.ws44{word-spacing:-2.832000pt;}
.ws1e5{word-spacing:-2.792000pt;}
.ws9f{word-spacing:-2.688000pt;}
.wsc3{word-spacing:-2.680000pt;}
.ws1e4{word-spacing:-2.616000pt;}
.ws106{word-spacing:-2.568000pt;}
.ws245{word-spacing:-2.528000pt;}
.ws59{word-spacing:-2.520000pt;}
.ws162{word-spacing:-2.428000pt;}
.wse3{word-spacing:-2.424000pt;}
.ws1e8{word-spacing:-2.416000pt;}
.ws1ae{word-spacing:-2.392000pt;}
.wse6{word-spacing:-2.368000pt;}
.ws6a{word-spacing:-2.344000pt;}
.wsdb{word-spacing:-2.248000pt;}
.ws96{word-spacing:-2.184000pt;}
.ws71{word-spacing:-2.152000pt;}
.ws180{word-spacing:-2.080000pt;}
.ws17f{word-spacing:-2.016000pt;}
.ws20a{word-spacing:-1.936000pt;}
.ws1b3{word-spacing:-1.864000pt;}
.ws1cd{word-spacing:-1.808000pt;}
.ws6f{word-spacing:-1.736000pt;}
.wseb{word-spacing:-1.648000pt;}
.wsc9{word-spacing:-1.528000pt;}
.ws1a8{word-spacing:-1.504000pt;}
.ws114{word-spacing:-1.432000pt;}
.ws1e2{word-spacing:-1.304000pt;}
.ws1eb{word-spacing:-1.216000pt;}
.ws23f{word-spacing:-1.160000pt;}
.ws1ea{word-spacing:-1.152000pt;}
.ws6b{word-spacing:-1.120000pt;}
.ws1dd{word-spacing:-1.096000pt;}
.ws6c{word-spacing:-1.088000pt;}
.ws115{word-spacing:-0.968000pt;}
.ws1d7{word-spacing:-0.912000pt;}
.ws1de{word-spacing:-0.864000pt;}
.ws1e9{word-spacing:-0.744000pt;}
.wsd5{word-spacing:-0.664000pt;}
.ws15b{word-spacing:-0.656000pt;}
.ws68{word-spacing:-0.576000pt;}
.ws67{word-spacing:-0.512000pt;}
.wsd9{word-spacing:-0.376000pt;}
.wsf3{word-spacing:-0.088000pt;}
.wse8{word-spacing:-0.056000pt;}
.ws45{word-spacing:-0.040000pt;}
.ws20f{word-spacing:-0.028000pt;}
.ws206{word-spacing:-0.024000pt;}
.ws147{word-spacing:-0.018533pt;}
.ws146{word-spacing:-0.015318pt;}
.ws148{word-spacing:-0.013656pt;}
.ws1c5{word-spacing:-0.012779pt;}
.ws14a{word-spacing:-0.012355pt;}
.ws1c3{word-spacing:-0.009466pt;}
.ws149{word-spacing:-0.006178pt;}
.ws1c4{word-spacing:-0.004733pt;}
.ws1c6{word-spacing:-0.004260pt;}
.ws30{word-spacing:0.000000pt;}
.ws17e{word-spacing:0.240000pt;}
.wsca{word-spacing:0.248000pt;}
.ws17d{word-spacing:0.280000pt;}
.ws66{word-spacing:0.328000pt;}
.wsc4{word-spacing:0.424000pt;}
.ws1a1{word-spacing:0.438400pt;}
.ws1ba{word-spacing:0.584000pt;}
.ws1f6{word-spacing:0.760000pt;}
.wsda{word-spacing:0.816000pt;}
.ws1b7{word-spacing:0.952000pt;}
.ws21d{word-spacing:0.960000pt;}
.ws243{word-spacing:1.144000pt;}
.ws22c{word-spacing:1.336000pt;}
.ws7a{word-spacing:1.392000pt;}
.ws1a3{word-spacing:1.448000pt;}
.ws95{word-spacing:1.520000pt;}
.ws1fd{word-spacing:1.568000pt;}
.ws231{word-spacing:2.224000pt;}
.wsb1{word-spacing:2.632000pt;}
.ws21b{word-spacing:3.736000pt;}
.ws218{word-spacing:3.752000pt;}
.ws233{word-spacing:3.776000pt;}
.wsb6{word-spacing:3.872000pt;}
.wsb2{word-spacing:3.960000pt;}
.ws17a{word-spacing:3.968000pt;}
.ws207{word-spacing:4.072000pt;}
.wsb4{word-spacing:4.100000pt;}
.ws78{word-spacing:5.000000pt;}
.ws3f{word-spacing:5.184000pt;}
.wsb5{word-spacing:5.304000pt;}
.wsd6{word-spacing:5.336000pt;}
.ws248{word-spacing:5.464000pt;}
.ws1ef{word-spacing:5.976000pt;}
.ws217{word-spacing:6.328000pt;}
.ws140{word-spacing:6.512000pt;}
.ws199{word-spacing:6.646400pt;}
.wsba{word-spacing:7.232000pt;}
.ws22a{word-spacing:8.224000pt;}
.ws153{word-spacing:8.688000pt;}
.ws19d{word-spacing:9.072000pt;}
.ws29{word-spacing:9.522933pt;}
.ws27{word-spacing:9.547200pt;}
.ws21c{word-spacing:9.552000pt;}
.wsf{word-spacing:9.561067pt;}
.ws2b{word-spacing:9.585333pt;}
.ws242{word-spacing:9.816000pt;}
.ws150{word-spacing:10.176000pt;}
.ws2{word-spacing:10.240533pt;}
.ws14b{word-spacing:10.592000pt;}
.ws14d{word-spacing:10.688000pt;}
.ws194{word-spacing:10.976000pt;}
.ws196{word-spacing:11.062400pt;}
.ws1e{word-spacing:11.340800pt;}
.ws229{word-spacing:11.464000pt;}
.ws22{word-spacing:11.865600pt;}
.ws19{word-spacing:11.878400pt;}
.ws241{word-spacing:12.952000pt;}
.ws112{word-spacing:13.409600pt;}
.ws122{word-spacing:17.262933pt;}
.ws17{word-spacing:25.969067pt;}
.ws13{word-spacing:26.022400pt;}
.ws6{word-spacing:28.320000pt;}
.ws193{word-spacing:61.240034pt;}
.ws190{word-spacing:65.213915pt;}
.ws13e{word-spacing:65.925816pt;}
.ws192{word-spacing:104.287523pt;}
.ws135{word-spacing:106.997333pt;}
.ws12c{word-spacing:107.019733pt;}
.ws12d{word-spacing:119.601067pt;}
.ws18f{word-spacing:133.636037pt;}
.ws12e{word-spacing:273.567467pt;}
.ws132{word-spacing:273.612267pt;}
.ws131{word-spacing:278.928533pt;}
.ws136{word-spacing:278.977067pt;}
._22{margin-left:-262.274317pt;}
._23{margin-left:-208.758465pt;}
._3{margin-left:-20.924800pt;}
._4{margin-left:-19.260800pt;}
._29{margin-left:-16.668000pt;}
._28{margin-left:-15.764000pt;}
._14{margin-left:-14.800000pt;}
._13{margin-left:-13.472000pt;}
._10{margin-left:-12.393333pt;}
._11{margin-left:-11.374667pt;}
._7{margin-left:-8.860800pt;}
._19{margin-left:-6.486667pt;}
._5{margin-left:-5.385067pt;}
._9{margin-left:-4.310933pt;}
._c{margin-left:-3.331467pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.057333pt;}
._6{width:1.691733pt;}
._1a{width:2.762667pt;}
._d{width:4.534400pt;}
._b{width:6.233600pt;}
._8{width:8.016000pt;}
._27{width:9.241600pt;}
._12{width:10.368000pt;}
._26{width:12.063467pt;}
._a{width:13.249333pt;}
._16{width:14.516000pt;}
._f{width:15.769333pt;}
._18{width:16.874400pt;}
._e{width:18.399733pt;}
._31{width:19.979733pt;}
._15{width:21.168000pt;}
._33{width:22.746133pt;}
._32{width:27.572000pt;}
._2{width:75.584000pt;}
._17{width:82.372053pt;}
._20{width:83.723733pt;}
._24{width:90.065223pt;}
._25{width:102.365288pt;}
._30{width:109.408182pt;}
._2c{width:122.944322pt;}
._1c{width:125.641600pt;}
._2f{width:128.657426pt;}
._1d{width:132.917867pt;}
._2e{width:142.384118pt;}
._2b{width:152.916462pt;}
._1b{width:158.372533pt;}
._2d{width:161.657614pt;}
._2a{width:191.477311pt;}
._1e{width:193.934400pt;}
._1f{width:292.245333pt;}
._21{width:382.241867pt;}
.fs1a{font-size:22.400000pt;}
.fs8{font-size:24.266667pt;}
.fsa{font-size:25.333333pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:33.600000pt;}
.fs15{font-size:34.645867pt;}
.fs1{font-size:34.666667pt;}
.fsf{font-size:37.333333pt;}
.fs13{font-size:39.016533pt;}
.fse{font-size:40.000000pt;}
.fsc{font-size:41.600000pt;}
.fs10{font-size:42.268267pt;}
.fs17{font-size:42.597333pt;}
.fs0{font-size:42.666667pt;}
.fs19{font-size:44.786667pt;}
.fsd{font-size:45.333333pt;}
.fs14{font-size:45.518933pt;}
.fs16{font-size:47.330133pt;}
.fs18{font-size:47.330522pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:48.532800pt;}
.fs9{font-size:53.333333pt;}
.fs2{font-size:56.746667pt;}
.fs12{font-size:61.776533pt;}
.fs4{font-size:69.333333pt;}
.fs11{font-size:76.589333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:46.300133pt;}
.y103{bottom:75.256000pt;}
.yb0{bottom:75.256133pt;}
.y32{bottom:75.256400pt;}
.y74{bottom:79.708000pt;}
.y31{bottom:87.880267pt;}
.y169{bottom:88.396000pt;}
.y102{bottom:89.212000pt;}
.yaf{bottom:89.212133pt;}
.y14f{bottom:93.124000pt;}
.y73{bottom:93.652000pt;}
.y19a{bottom:100.288000pt;}
.y2f{bottom:101.632000pt;}
.y30{bottom:101.836000pt;}
.y168{bottom:102.340000pt;}
.y101{bottom:103.156000pt;}
.yae{bottom:103.156133pt;}
.y14e{bottom:105.076000pt;}
.y72{bottom:107.596000pt;}
.y199{bottom:114.232000pt;}
.y2e{bottom:116.200133pt;}
.y167{bottom:116.284000pt;}
.y14d{bottom:117.028000pt;}
.y100{bottom:117.100000pt;}
.yad{bottom:117.100133pt;}
.y71{bottom:121.552000pt;}
.y1d3{bottom:126.532133pt;}
.y198{bottom:128.188000pt;}
.y14c{bottom:128.992000pt;}
.y166{bottom:130.240000pt;}
.yff{bottom:131.056000pt;}
.yac{bottom:131.056133pt;}
.y70{bottom:135.496000pt;}
.y1d2{bottom:140.476133pt;}
.y197{bottom:142.132000pt;}
.y165{bottom:144.184000pt;}
.yfe{bottom:145.000000pt;}
.yab{bottom:145.000133pt;}
.y6f{bottom:149.440000pt;}
.y1d1{bottom:154.420133pt;}
.y196{bottom:156.076000pt;}
.y164{bottom:158.128000pt;}
.yfd{bottom:158.944000pt;}
.yaa{bottom:158.944133pt;}
.y139{bottom:162.101333pt;}
.y6e{bottom:163.396000pt;}
.y1d0{bottom:168.376133pt;}
.y195{bottom:170.032000pt;}
.y163{bottom:172.084000pt;}
.yfc{bottom:172.900000pt;}
.ya9{bottom:172.900133pt;}
.y6d{bottom:177.340000pt;}
.y1cf{bottom:182.320133pt;}
.y194{bottom:183.976000pt;}
.y2d{bottom:184.218267pt;}
.y162{bottom:186.028000pt;}
.yfb{bottom:186.844000pt;}
.ya8{bottom:186.844133pt;}
.y6c{bottom:191.284000pt;}
.y1ce{bottom:196.264133pt;}
.y193{bottom:197.920000pt;}
.y2c{bottom:198.822000pt;}
.y161{bottom:199.972000pt;}
.yd8{bottom:200.764133pt;}
.yfa{bottom:200.788000pt;}
.ya7{bottom:200.788133pt;}
.y12b{bottom:201.316000pt;}
.y6b{bottom:205.228000pt;}
.y1cd{bottom:210.220133pt;}
.y192{bottom:211.864000pt;}
.y160{bottom:213.916000pt;}
.yd7{bottom:214.708133pt;}
.yf9{bottom:214.732000pt;}
.ya6{bottom:214.732133pt;}
.y6a{bottom:219.184000pt;}
.y128{bottom:220.434667pt;}
.y2b{bottom:223.661467pt;}
.y191{bottom:225.820000pt;}
.y15f{bottom:227.872000pt;}
.yd6{bottom:228.652133pt;}
.yf8{bottom:228.688000pt;}
.y1f9{bottom:228.688133pt;}
.y1cc{bottom:231.472133pt;}
.y69{bottom:233.128000pt;}
.y2a{bottom:238.278000pt;}
.y190{bottom:239.764000pt;}
.y15e{bottom:241.816000pt;}
.yd5{bottom:242.608133pt;}
.yf7{bottom:242.632000pt;}
.y1f8{bottom:242.632133pt;}
.ya5{bottom:245.248133pt;}
.y68{bottom:247.072000pt;}
.y29{bottom:252.894533pt;}
.y18f{bottom:253.708000pt;}
.y15d{bottom:255.760000pt;}
.yd4{bottom:256.552133pt;}
.yf6{bottom:256.576000pt;}
.y1f7{bottom:256.576133pt;}
.ya4{bottom:259.192133pt;}
.y67{bottom:261.028000pt;}
.y28{bottom:267.498267pt;}
.y18e{bottom:267.664000pt;}
.y15c{bottom:269.716000pt;}
.yd3{bottom:270.496133pt;}
.yf5{bottom:270.532000pt;}
.y1f6{bottom:270.532133pt;}
.y1fb{bottom:270.664133pt;}
.y225{bottom:272.476000pt;}
.ya3{bottom:273.136133pt;}
.y66{bottom:274.972000pt;}
.y18d{bottom:281.608000pt;}
.y27{bottom:282.114800pt;}
.y15b{bottom:283.660000pt;}
.yd2{bottom:284.452133pt;}
.yf4{bottom:284.476000pt;}
.y1f5{bottom:284.476133pt;}
.y1fa{bottom:284.608133pt;}
.y224{bottom:286.432000pt;}
.ya2{bottom:287.092133pt;}
.y65{bottom:288.916000pt;}
.y18c{bottom:295.552000pt;}
.y26{bottom:296.731333pt;}
.y15a{bottom:297.604000pt;}
.yd1{bottom:298.396133pt;}
.yf3{bottom:298.420000pt;}
.y1f4{bottom:298.420133pt;}
.y1cb{bottom:298.552133pt;}
.y223{bottom:300.376000pt;}
.ya1{bottom:301.036133pt;}
.y64{bottom:302.872000pt;}
.y131{bottom:305.297333pt;}
.y135{bottom:306.820000pt;}
.y19b{bottom:307.060133pt;}
.y18b{bottom:309.508000pt;}
.y137{bottom:309.538286pt;}
.y133{bottom:310.585049pt;}
.y132{bottom:310.715754pt;}
.y134{bottom:310.716730pt;}
.y25{bottom:311.335067pt;}
.y159{bottom:311.560000pt;}
.yd0{bottom:312.340133pt;}
.y1f3{bottom:312.376133pt;}
.y1ca{bottom:312.508133pt;}
.y13f{bottom:313.450667pt;}
.y222{bottom:314.320000pt;}
.ya0{bottom:314.980133pt;}
.y141{bottom:315.598527pt;}
.y140{bottom:316.157439pt;}
.y63{bottom:316.816000pt;}
.y129{bottom:319.823212pt;}
.yf2{bottom:321.004000pt;}
.y18a{bottom:323.452000pt;}
.y158{bottom:325.504000pt;}
.y24{bottom:325.950533pt;}
.ycf{bottom:326.296133pt;}
.y1c9{bottom:326.452133pt;}
.y221{bottom:328.276000pt;}
.y9f{bottom:328.936133pt;}
.y142{bottom:330.390667pt;}
.y62{bottom:330.760000pt;}
.y1f2{bottom:333.628133pt;}
.y189{bottom:337.396000pt;}
.y157{bottom:339.448000pt;}
.yce{bottom:340.240133pt;}
.y1c8{bottom:340.396133pt;}
.y23{bottom:340.566000pt;}
.y220{bottom:342.220000pt;}
.y9e{bottom:342.880133pt;}
.y61{bottom:344.716000pt;}
.y12d{bottom:345.838667pt;}
.y188{bottom:351.352000pt;}
.yf1{bottom:352.996133pt;}
.y13a{bottom:353.304000pt;}
.y156{bottom:353.404000pt;}
.ycd{bottom:354.184133pt;}
.y1c7{bottom:354.352133pt;}
.y22{bottom:355.169733pt;}
.y21f{bottom:356.164000pt;}
.y9d{bottom:356.824133pt;}
.y60{bottom:358.660000pt;}
.y12e{bottom:360.567408pt;}
.y13b{bottom:365.047977pt;}
.y187{bottom:365.296000pt;}
.yf0{bottom:366.940133pt;}
.y155{bottom:367.348000pt;}
.ycc{bottom:368.140133pt;}
.y1c6{bottom:368.296133pt;}
.y1f1{bottom:368.992000pt;}
.y21{bottom:369.785200pt;}
.y21e{bottom:370.120000pt;}
.y9c{bottom:370.780133pt;}
.y5f{bottom:372.604000pt;}
.y12f{bottom:375.296149pt;}
.y13c{bottom:376.803658pt;}
.yef{bottom:380.884133pt;}
.y154{bottom:381.292000pt;}
.ycb{bottom:382.084133pt;}
.y1c5{bottom:382.240133pt;}
.y1f0{bottom:382.936000pt;}
.y21d{bottom:384.064000pt;}
.y20{bottom:384.401733pt;}
.y9b{bottom:384.724133pt;}
.y5e{bottom:386.548000pt;}
.y13d{bottom:388.556413pt;}
.y130{bottom:390.024891pt;}
.y186{bottom:394.168000pt;}
.yee{bottom:394.840133pt;}
.yca{bottom:396.028000pt;}
.y1c4{bottom:396.196133pt;}
.y21c{bottom:398.008000pt;}
.y138{bottom:398.641906pt;}
.y9a{bottom:398.668133pt;}
.y1f{bottom:399.005467pt;}
.y13e{bottom:400.309169pt;}
.y5d{bottom:400.504000pt;}
.y1ef{bottom:404.188133pt;}
.y185{bottom:406.120000pt;}
.y118{bottom:406.960000pt;}
.yed{bottom:408.784133pt;}
.yc9{bottom:409.972000pt;}
.y1c3{bottom:410.140133pt;}
.y153{bottom:410.164000pt;}
.y21b{bottom:411.952000pt;}
.y99{bottom:412.612133pt;}
.y1e{bottom:413.620933pt;}
.y5c{bottom:414.448000pt;}
.y184{bottom:418.072000pt;}
.y12a{bottom:419.209644pt;}
.y152{bottom:422.116000pt;}
.yec{bottom:422.728133pt;}
.yc8{bottom:423.928000pt;}
.y1c2{bottom:424.084133pt;}
.y21a{bottom:425.908000pt;}
.y98{bottom:426.568133pt;}
.y1d{bottom:428.236400pt;}
.y5b{bottom:428.392000pt;}
.y183{bottom:430.036000pt;}
.y12c{bottom:431.557333pt;}
.y151{bottom:434.080000pt;}
.yeb{bottom:436.672133pt;}
.yc7{bottom:437.872000pt;}
.y1c1{bottom:438.028133pt;}
.y1ee{bottom:439.552133pt;}
.y219{bottom:439.852000pt;}
.y97{bottom:440.512133pt;}
.y5a{bottom:442.348000pt;}
.y1c{bottom:442.840133pt;}
.y150{bottom:446.032000pt;}
.yea{bottom:450.628133pt;}
.yc6{bottom:451.816000pt;}
.y1c0{bottom:451.984133pt;}
.y1ed{bottom:453.496133pt;}
.y218{bottom:453.796000pt;}
.y96{bottom:454.456133pt;}
.y59{bottom:456.292000pt;}
.y136{bottom:456.362667pt;}
.y17d{bottom:460.078800pt;}
.y1b{bottom:463.696000pt;}
.ye9{bottom:464.572133pt;}
.yc5{bottom:465.772000pt;}
.y1bf{bottom:465.928133pt;}
.y17e{bottom:467.194877pt;}
.y1ec{bottom:467.440133pt;}
.y217{bottom:467.752000pt;}
.y95{bottom:468.412133pt;}
.y58{bottom:470.236000pt;}
.y117{bottom:472.209333pt;}
.ye8{bottom:478.516133pt;}
.yc4{bottom:479.716000pt;}
.y1be{bottom:479.872133pt;}
.y1eb{bottom:481.396133pt;}
.y216{bottom:481.696000pt;}
.y94{bottom:482.356133pt;}
.y57{bottom:484.192000pt;}
.y124{bottom:491.238667pt;}
.y113{bottom:491.320000pt;}
.ye7{bottom:492.472133pt;}
.yc3{bottom:493.660000pt;}
.y1bd{bottom:493.828133pt;}
.y1ea{bottom:495.340133pt;}
.y215{bottom:495.640000pt;}
.y93{bottom:496.300133pt;}
.y56{bottom:498.136000pt;}
.ye6{bottom:506.416133pt;}
.yc2{bottom:507.616000pt;}
.y1bc{bottom:507.772133pt;}
.y1a{bottom:508.060267pt;}
.y214{bottom:509.596000pt;}
.y92{bottom:510.256133pt;}
.y55{bottom:512.080000pt;}
.y1e9{bottom:516.592000pt;}
.ye5{bottom:520.360133pt;}
.y19{bottom:520.684133pt;}
.yc1{bottom:521.560000pt;}
.y1bb{bottom:521.716133pt;}
.y180{bottom:522.308133pt;}
.y17f{bottom:523.050800pt;}
.y213{bottom:523.540000pt;}
.y91{bottom:524.200133pt;}
.y54{bottom:526.036000pt;}
.y18{bottom:533.308000pt;}
.ye4{bottom:534.316133pt;}
.yc0{bottom:535.504000pt;}
.y1ba{bottom:535.672133pt;}
.y17{bottom:536.452133pt;}
.y212{bottom:537.484000pt;}
.y90{bottom:538.144133pt;}
.y53{bottom:539.980000pt;}
.y114{bottom:542.894682pt;}
.ye3{bottom:548.260133pt;}
.ybf{bottom:549.460000pt;}
.y1b9{bottom:549.616133pt;}
.y211{bottom:551.440000pt;}
.y1e8{bottom:551.956000pt;}
.y8f{bottom:552.100133pt;}
.y16{bottom:553.888000pt;}
.y52{bottom:553.924000pt;}
.ye2{bottom:562.204133pt;}
.ybe{bottom:563.404000pt;}
.y1b8{bottom:563.560133pt;}
.y210{bottom:565.384000pt;}
.y1e7{bottom:565.900000pt;}
.y8e{bottom:566.044133pt;}
.y51{bottom:567.868000pt;}
.y15{bottom:571.156133pt;}
.y149{bottom:571.454667pt;}
.y127{bottom:573.014667pt;}
.y14b{bottom:573.353796pt;}
.y14a{bottom:575.538722pt;}
.ye1{bottom:576.160133pt;}
.y181{bottom:576.886877pt;}
.y11e{bottom:577.026667pt;}
.ybd{bottom:577.348000pt;}
.y1b7{bottom:577.516133pt;}
.y125{bottom:579.116506pt;}
.y20f{bottom:579.328000pt;}
.y11f{bottom:579.732463pt;}
.y1e6{bottom:579.856000pt;}
.y8d{bottom:579.988133pt;}
.y50{bottom:581.824000pt;}
.y120{bottom:582.312432pt;}
.y121{bottom:582.444112pt;}
.y122{bottom:584.292000pt;}
.y13{bottom:588.424000pt;}
.y14{bottom:588.424133pt;}
.ye0{bottom:590.104133pt;}
.ybc{bottom:591.292000pt;}
.y1b6{bottom:591.460133pt;}
.y20e{bottom:593.272000pt;}
.y1e5{bottom:593.800000pt;}
.y8c{bottom:593.932133pt;}
.y115{bottom:594.470421pt;}
.y4f{bottom:595.768000pt;}
.ydf{bottom:604.048133pt;}
.ybb{bottom:605.248000pt;}
.y1b5{bottom:605.404133pt;}
.y12{bottom:605.692000pt;}
.y20d{bottom:607.228000pt;}
.y1e4{bottom:607.744000pt;}
.y8b{bottom:607.888133pt;}
.y4e{bottom:609.712000pt;}
.y11{bottom:610.048133pt;}
.y143{bottom:611.572933pt;}
.y11a{bottom:616.918000pt;}
.yde{bottom:617.992133pt;}
.yba{bottom:619.192000pt;}
.y1b4{bottom:619.348133pt;}
.y20c{bottom:621.172000pt;}
.y144{bottom:621.708453pt;}
.y8a{bottom:621.832133pt;}
.y10{bottom:622.972000pt;}
.yf{bottom:622.972133pt;}
.y4d{bottom:623.668000pt;}
.y1e3{bottom:628.996000pt;}
.y145{bottom:631.844949pt;}
.y1b3{bottom:633.304133pt;}
.y11b{bottom:634.702711pt;}
.y20b{bottom:635.116000pt;}
.y4c{bottom:637.612000pt;}
.ye{bottom:640.240000pt;}
.y146{bottom:641.980469pt;}
.y116{bottom:646.053557pt;}
.yb9{bottom:647.056000pt;}
.ydd{bottom:647.056133pt;}
.y1b2{bottom:647.248133pt;}
.y20a{bottom:649.072000pt;}
.y4b{bottom:651.556000pt;}
.y147{bottom:652.116964pt;}
.y89{bottom:652.336133pt;}
.y11c{bottom:652.487423pt;}
.yd{bottom:657.508000pt;}
.yb8{bottom:661.012000pt;}
.ydc{bottom:661.012133pt;}
.y1b1{bottom:661.192133pt;}
.yc{bottom:661.864000pt;}
.y148{bottom:662.253459pt;}
.y209{bottom:663.016000pt;}
.y1e2{bottom:664.360133pt;}
.y4a{bottom:665.512000pt;}
.y88{bottom:666.292133pt;}
.y182{bottom:666.928133pt;}
.y126{bottom:667.000687pt;}
.y11d{bottom:670.263355pt;}
.yb7{bottom:674.956000pt;}
.ydb{bottom:674.956133pt;}
.y1b0{bottom:675.148133pt;}
.y208{bottom:676.960000pt;}
.y49{bottom:679.456000pt;}
.y87{bottom:680.236133pt;}
.y17b{bottom:683.301333pt;}
.y1e1{bottom:685.612000pt;}
.ya{bottom:685.635600pt;}
.yb6{bottom:688.900000pt;}
.yda{bottom:688.900133pt;}
.y1af{bottom:689.092133pt;}
.y207{bottom:690.916000pt;}
.yb{bottom:691.936000pt;}
.y48{bottom:693.400000pt;}
.y86{bottom:694.180133pt;}
.y119{bottom:702.441467pt;}
.yb5{bottom:702.856000pt;}
.yd9{bottom:702.856133pt;}
.y1ae{bottom:703.036133pt;}
.y206{bottom:704.860000pt;}
.y47{bottom:707.356000pt;}
.y8{bottom:709.552133pt;}
.y9{bottom:715.840133pt;}
.y85{bottom:716.764133pt;}
.y1ad{bottom:716.992133pt;}
.y205{bottom:718.804000pt;}
.y1e0{bottom:720.976000pt;}
.y46{bottom:721.300000pt;}
.y123{bottom:723.339867pt;}
.y16d{bottom:728.383613pt;}
.y175{bottom:728.384280pt;}
.y1ac{bottom:730.936133pt;}
.yb4{bottom:731.776000pt;}
.y204{bottom:732.760000pt;}
.y1df{bottom:734.920000pt;}
.y45{bottom:735.244000pt;}
.yb3{bottom:743.728000pt;}
.y7{bottom:744.088000pt;}
.y1ab{bottom:744.880133pt;}
.y203{bottom:746.704000pt;}
.y1de{bottom:748.876000pt;}
.y16a{bottom:749.169467pt;}
.y172{bottom:749.170800pt;}
.y44{bottom:749.188000pt;}
.y84{bottom:750.196000pt;}
.y112{bottom:754.504000pt;}
.yb2{bottom:755.692000pt;}
.y1aa{bottom:758.836133pt;}
.y16e{bottom:759.924133pt;}
.y202{bottom:760.648000pt;}
.y1dd{bottom:762.820000pt;}
.y43{bottom:763.144000pt;}
.y83{bottom:764.140000pt;}
.y111{bottom:766.456000pt;}
.yb1{bottom:767.644000pt;}
.y173{bottom:771.554800pt;}
.y16b{bottom:771.556133pt;}
.y201{bottom:772.780000pt;}
.y1a9{bottom:772.780133pt;}
.y1dc{bottom:776.764000pt;}
.y42{bottom:777.088000pt;}
.y82{bottom:778.096000pt;}
.y6{bottom:779.956000pt;}
.y200{bottom:786.724000pt;}
.y1a8{bottom:786.724133pt;}
.y110{bottom:789.987200pt;}
.y1db{bottom:790.720000pt;}
.y41{bottom:791.032000pt;}
.y81{bottom:792.040000pt;}
.y176{bottom:795.561467pt;}
.y1ff{bottom:800.668000pt;}
.y1a7{bottom:800.668133pt;}
.y10f{bottom:803.271333pt;}
.y40{bottom:804.988000pt;}
.y80{bottom:805.984000pt;}
.y1da{bottom:811.972133pt;}
.y5{bottom:814.492000pt;}
.y1fe{bottom:814.624000pt;}
.y1a6{bottom:814.624133pt;}
.y10e{bottom:816.555467pt;}
.y3f{bottom:818.932000pt;}
.y7f{bottom:819.940000pt;}
.y1fd{bottom:828.568000pt;}
.y1a5{bottom:828.568133pt;}
.y10d{bottom:829.839600pt;}
.y3e{bottom:832.876000pt;}
.y7e{bottom:833.884000pt;}
.y1fc{bottom:842.512000pt;}
.y1a4{bottom:842.512133pt;}
.y10c{bottom:843.123733pt;}
.y3d{bottom:846.832000pt;}
.y1d9{bottom:847.336133pt;}
.y7d{bottom:847.828000pt;}
.y10b{bottom:856.407867pt;}
.y1a3{bottom:856.468133pt;}
.y3c{bottom:860.776000pt;}
.y7c{bottom:861.772000pt;}
.y1d8{bottom:868.588000pt;}
.y10a{bottom:869.692000pt;}
.y1a2{bottom:870.412133pt;}
.y34{bottom:872.040000pt;}
.y3b{bottom:874.720000pt;}
.y7b{bottom:875.728000pt;}
.y17c{bottom:884.283467pt;}
.y1a1{bottom:884.356133pt;}
.y3a{bottom:888.676000pt;}
.y7a{bottom:889.672000pt;}
.y179{bottom:893.038133pt;}
.y171{bottom:893.039467pt;}
.y109{bottom:895.719067pt;}
.y105{bottom:895.720000pt;}
.y1a0{bottom:898.312133pt;}
.y39{bottom:902.620000pt;}
.y79{bottom:903.616000pt;}
.y1d7{bottom:903.952000pt;}
.y178{bottom:905.817333pt;}
.y170{bottom:905.818667pt;}
.y108{bottom:907.671333pt;}
.y106{bottom:907.672267pt;}
.y19f{bottom:912.256133pt;}
.y4{bottom:916.108533pt;}
.y38{bottom:916.564000pt;}
.y78{bottom:917.572000pt;}
.y1d6{bottom:917.896000pt;}
.y177{bottom:918.596533pt;}
.y16f{bottom:918.597867pt;}
.y107{bottom:919.635733pt;}
.y19e{bottom:926.200133pt;}
.y3{bottom:928.720267pt;}
.y77{bottom:931.516000pt;}
.y1d5{bottom:931.840000pt;}
.y37{bottom:939.148133pt;}
.y19d{bottom:940.156133pt;}
.y2{bottom:941.344133pt;}
.y76{bottom:945.460000pt;}
.y16c{bottom:947.974133pt;}
.y174{bottom:947.974800pt;}
.y17a{bottom:951.509333pt;}
.y1d4{bottom:953.092000pt;}
.y19c{bottom:954.100133pt;}
.y104{bottom:956.296000pt;}
.y36{bottom:958.408000pt;}
.y75{bottom:959.416000pt;}
.y1{bottom:971.248000pt;}
.y35{bottom:996.340000pt;}
.h10{height:16.477067pt;}
.h14{height:19.962667pt;}
.h15{height:21.989867pt;}
.h1d{height:25.216000pt;}
.h2c{height:25.216533pt;}
.h27{height:25.222191pt;}
.h1c{height:25.312000pt;}
.ha{height:26.476800pt;}
.h4{height:27.317333pt;}
.h3{height:27.421333pt;}
.h11{height:27.844267pt;}
.h24{height:28.404036pt;}
.h20{height:29.418667pt;}
.h1f{height:29.530667pt;}
.h21{height:30.771298pt;}
.h29{height:31.010859pt;}
.h17{height:31.062500pt;}
.h1b{height:31.240000pt;}
.h1a{height:31.520000pt;}
.h1e{height:31.520533pt;}
.h2d{height:31.640000pt;}
.h2f{height:32.143467pt;}
.h2e{height:32.144000pt;}
.h2b{height:32.604693pt;}
.h16{height:32.614400pt;}
.h18{height:32.780800pt;}
.h25{height:33.137783pt;}
.h2{height:33.621333pt;}
.h13{height:33.749333pt;}
.h28{height:34.503667pt;}
.h2a{height:34.503951pt;}
.h19{height:35.858667pt;}
.hb{height:37.824000pt;}
.h8{height:38.243846pt;}
.hf{height:38.592000pt;}
.h26{height:38.880000pt;}
.h12{height:41.813333pt;}
.he{height:43.900267pt;}
.hd{height:43.900800pt;}
.hc{height:43.901333pt;}
.h5{height:44.716373pt;}
.h23{height:44.973316pt;}
.h22{height:55.757035pt;}
.h7{height:63.395846pt;}
.h9{height:63.445446pt;}
.h6{height:75.936000pt;}
.h0{height:1043.048000pt;}
.h1{height:1043.333333pt;}
.w0{width:793.698667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.672000pt;}
.x10{left:74.508000pt;}
.x14{left:75.636000pt;}
.x8{left:85.560000pt;}
.x52{left:88.620000pt;}
.x13{left:91.572000pt;}
.x53{left:121.980000pt;}
.x4f{left:133.752667pt;}
.xf{left:136.715133pt;}
.x1f{left:140.187600pt;}
.x9{left:150.840000pt;}
.x30{left:153.474405pt;}
.x17{left:154.452267pt;}
.x2f{left:159.351733pt;}
.x1e{left:161.133205pt;}
.x1d{left:167.010533pt;}
.x4c{left:171.578133pt;}
.x31{left:176.202000pt;}
.x20{left:178.714933pt;}
.x32{left:179.867333pt;}
.x51{left:181.234240pt;}
.x4b{left:188.882267pt;}
.x4d{left:190.753333pt;}
.xc{left:195.984000pt;}
.x4e{left:199.642000pt;}
.x38{left:200.698000pt;}
.x28{left:206.626400pt;}
.x7{left:209.592000pt;}
.x23{left:212.457032pt;}
.x22{left:217.877404pt;}
.xd{left:221.988000pt;}
.x33{left:228.321733pt;}
.x21{left:234.151200pt;}
.x5{left:243.756000pt;}
.x34{left:256.220133pt;}
.x24{left:262.060000pt;}
.x35{left:267.925093pt;}
.x3{left:270.876000pt;}
.x25{left:273.764960pt;}
.x50{left:276.552000pt;}
.x36{left:291.629588pt;}
.x26{left:297.587480pt;}
.x18{left:299.688267pt;}
.x37{left:303.334548pt;}
.x27{left:309.291464pt;}
.x6{left:324.048000pt;}
.xe{left:334.355867pt;}
.x3b{left:360.848000pt;}
.x19{left:365.220400pt;}
.x1{left:407.424000pt;}
.x15{left:410.376000pt;}
.x46{left:423.360000pt;}
.x54{left:425.604000pt;}
.x2e{left:427.353333pt;}
.x2a{left:429.510849pt;}
.x1a{left:430.752533pt;}
.xb{left:434.352000pt;}
.x29{left:435.378667pt;}
.x39{left:436.336000pt;}
.x2c{left:447.090667pt;}
.x3c{left:448.048000pt;}
.x48{left:451.441333pt;}
.x49{left:464.014342pt;}
.x47{left:468.713333pt;}
.x2d{left:475.097333pt;}
.x43{left:476.165333pt;}
.x4a{left:479.502667pt;}
.x3f{left:481.159909pt;}
.x45{left:482.661046pt;}
.x3e{left:486.591011pt;}
.x2b{left:488.310667pt;}
.x3d{left:492.013333pt;}
.x44{left:493.506667pt;}
.x3a{left:496.634667pt;}
.x55{left:513.816000pt;}
.x40{left:525.194667pt;}
.x4{left:529.140000pt;}
.x1b{left:536.124933pt;}
.x41{left:565.033473pt;}
.x42{left:576.737458pt;}
.xa{left:605.460000pt;}
.x16{left:614.880000pt;}
.x1c{left:641.508533pt;}
.x11{left:696.156000pt;}
.x12{left:764.133333pt;}
}




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