
    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_8abd8a40c372e74a3807402a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4a8db920104f29495b55412b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.929000;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_e1ebc1b8c180610137670bca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_ccf808e019adafb6516cf8af.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.649000;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_57aadc71f4b92ddf406e01c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ce8550266cfc4a6549dc52df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953000;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_fb532d63903fbb29013ee04c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026000;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_0040cc5f9cfaadd396f6b4bc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.012000;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_8d8979fce3b92644da47904b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.495667;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_20b6e0b55a59cba37532f89e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_91804ad168503d257cf363e1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3da622cfc6e5b36853dc3232.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.643000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_947f6d90aa525d7d4a0ecc38.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fedb57347dbe1a0db9e319bd.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d8855ac96a034656fc034606.woff2')format("woff");}.fff{font-family:fff;line-height:0.917000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b001b22cebd4075fb73e6136.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_96f90b2be5ce68b3905e89c8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7d70dab9ca0f6b3b1c2398b7.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-60.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.740845px;}
.v1{vertical-align:5.101745px;}
.v4{vertical-align:60.000600px;}
.ls12{letter-spacing:-1.431024px;}
.ls2f{letter-spacing:-1.213860px;}
.ls2e{letter-spacing:-1.184570px;}
.ls11{letter-spacing:-1.174318px;}
.ls14{letter-spacing:-1.160510px;}
.ls13{letter-spacing:-1.154861px;}
.lsf{letter-spacing:-1.148585px;}
.lse{letter-spacing:-1.136032px;}
.ls2c{letter-spacing:-1.129337px;}
.ls10{letter-spacing:-1.123479px;}
.ls2b{letter-spacing:-1.096281px;}
.ls2d{letter-spacing:-1.087913px;}
.ls1e{letter-spacing:-0.734341px;}
.ls21{letter-spacing:-0.728065px;}
.ls3{letter-spacing:-0.279752px;}
.ls15{letter-spacing:-0.006904px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003945px;}
.ls0{letter-spacing:0.004603px;}
.ls1{letter-spacing:0.004931px;}
.ls20{letter-spacing:0.006904px;}
.ls23{letter-spacing:0.025106px;}
.ls1c{letter-spacing:0.037659px;}
.ls9{letter-spacing:0.041837px;}
.ls6{letter-spacing:0.071124px;}
.ls22{letter-spacing:0.167371px;}
.ls7{letter-spacing:0.207122px;}
.ls1b{letter-spacing:0.219675px;}
.ls1f{letter-spacing:0.242657px;}
.ls5{letter-spacing:0.251057px;}
.ls2a{letter-spacing:0.380769px;}
.ls28{letter-spacing:1.113018px;}
.ls29{letter-spacing:1.166996px;}
.ls24{letter-spacing:1.230178px;}
.ls26{letter-spacing:1.284574px;}
.ls25{letter-spacing:1.297545px;}
.ls27{letter-spacing:1.389181px;}
.ls18{letter-spacing:11.431453px;}
.ls1d{letter-spacing:12.628157px;}
.ls16{letter-spacing:19.469455px;}
.lsc{letter-spacing:19.606908px;}
.lsb{letter-spacing:22.531720px;}
.ls1a{letter-spacing:23.693486px;}
.lsa{letter-spacing:23.699762px;}
.ls8{letter-spacing:29.423857px;}
.ls19{letter-spacing:29.812995px;}
.lsd{letter-spacing:71.430526px;}
.ls17{letter-spacing:239.162815px;}
.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;}
}
.wseb{word-spacing:-198.076583px;}
.wsb6{word-spacing:-22.594484px;}
.wsb9{word-spacing:-19.669673px;}
.wsb7{word-spacing:-19.532219px;}
.ws131{word-spacing:-12.690921px;}
.ws1ba{word-spacing:-1.208838px;}
.ws1b9{word-spacing:-1.154861px;}
.ws12{word-spacing:-0.062764px;}
.wsc5{word-spacing:-0.053798px;}
.ws6{word-spacing:-0.049762px;}
.wsce{word-spacing:-0.046446px;}
.wsf6{word-spacing:-0.041843px;}
.ws4f{word-spacing:-0.041837px;}
.wsf{word-spacing:-0.039811px;}
.ws3f{word-spacing:0.000000px;}
.ws135{word-spacing:0.671577px;}
.ws36{word-spacing:7.219507px;}
.ws13f{word-spacing:7.326256px;}
.ws38{word-spacing:7.664607px;}
.ws3c{word-spacing:7.757500px;}
.ws37{word-spacing:8.051603px;}
.ws1a6{word-spacing:8.063108px;}
.ws145{word-spacing:8.476933px;}
.wsf9{word-spacing:8.481117px;}
.ws141{word-spacing:8.627567px;}
.wsfa{word-spacing:8.937204px;}
.ws31{word-spacing:9.177802px;}
.ws1ac{word-spacing:9.213785px;}
.ws33{word-spacing:9.288987px;}
.ws2f{word-spacing:9.324853px;}
.ws1ad{word-spacing:9.326760px;}
.ws3b{word-spacing:9.339200px;}
.ws1b3{word-spacing:9.364419px;}
.ws8{word-spacing:9.436435px;}
.wse{word-spacing:9.500598px;}
.ws35{word-spacing:9.518531px;}
.ws107{word-spacing:9.585767px;}
.ws105{word-spacing:9.621752px;}
.ws106{word-spacing:9.634723px;}
.ws3d{word-spacing:9.694275px;}
.ws104{word-spacing:9.769875px;}
.ws1c4{word-spacing:9.849795px;}
.ws39{word-spacing:9.859260px;}
.ws1b8{word-spacing:9.882851px;}
.ws179{word-spacing:10.054825px;}
.ws175{word-spacing:10.123865px;}
.ws1a2{word-spacing:10.297513px;}
.ws144{word-spacing:10.414673px;}
.ws178{word-spacing:10.437686px;}
.ws1bb{word-spacing:10.439779px;}
.ws96{word-spacing:10.462792px;}
.ws177{word-spacing:10.475345px;}
.ws1a8{word-spacing:10.573676px;}
.ws13d{word-spacing:10.610916px;}
.ws10e{word-spacing:10.764688px;}
.ws88{word-spacing:10.833101px;}
.wsfc{word-spacing:11.000054px;}
.ws15f{word-spacing:11.002564px;}
.ws15a{word-spacing:11.033946px;}
.wsd0{word-spacing:11.037712px;}
.ws159{word-spacing:11.040223px;}
.ws4c{word-spacing:11.046499px;}
.wscf{word-spacing:11.105079px;}
.ws1a1{word-spacing:11.108845px;}
.ws197{word-spacing:11.113448px;}
.ws1cd{word-spacing:11.117632px;}
.ws10d{word-spacing:11.121816px;}
.wsf2{word-spacing:11.123908px;}
.wsf7{word-spacing:11.129766px;}
.ws1d4{word-spacing:11.151106px;}
.wsff{word-spacing:11.154872px;}
.ws3a{word-spacing:11.157616px;}
.ws149{word-spacing:11.163241px;}
.ws1c5{word-spacing:11.163659px;}
.ws191{word-spacing:11.171609px;}
.ws1c9{word-spacing:11.175793px;}
.ws193{word-spacing:11.180396px;}
.wsd4{word-spacing:11.184162px;}
.wsef{word-spacing:11.188765px;}
.ws1c6{word-spacing:11.192949px;}
.wsd1{word-spacing:11.205083px;}
.ws1c0{word-spacing:11.205502px;}
.wscc{word-spacing:11.209268px;}
.ws1d9{word-spacing:11.213870px;}
.ws1ce{word-spacing:11.221821px;}
.wse0{word-spacing:11.226005px;}
.ws19e{word-spacing:11.230189px;}
.ws1d2{word-spacing:11.242742px;}
.ws14e{word-spacing:11.255295px;}
.wsd3{word-spacing:11.259479px;}
.ws1db{word-spacing:11.276216px;}
.ws1bd{word-spacing:11.276635px;}
.ws1e0{word-spacing:11.280819px;}
.ws1de{word-spacing:11.284585px;}
.ws194{word-spacing:11.292953px;}
.ws19b{word-spacing:11.301740px;}
.ws1d8{word-spacing:11.305506px;}
.wsf8{word-spacing:11.318059px;}
.ws1a0{word-spacing:11.318477px;}
.wsf3{word-spacing:11.320570px;}
.ws1cf{word-spacing:11.322243px;}
.ws1d7{word-spacing:11.326428px;}
.ws102{word-spacing:11.333122px;}
.ws1c7{word-spacing:11.334796px;}
.wsd5{word-spacing:11.338980px;}
.ws1dc{word-spacing:11.347349px;}
.wsc8{word-spacing:11.351533px;}
.ws1d5{word-spacing:11.359902px;}
.ws103{word-spacing:11.372455px;}
.wsfb{word-spacing:11.376639px;}
.ws19f{word-spacing:11.385007px;}
.ws192{word-spacing:11.385426px;}
.ws1da{word-spacing:11.389192px;}
.ws1a7{word-spacing:11.389610px;}
.ws19d{word-spacing:11.401745px;}
.ws101{word-spacing:11.408858px;}
.ws19a{word-spacing:11.410113px;}
.wsf5{word-spacing:11.412624px;}
.ws1c8{word-spacing:11.414716px;}
.wsd7{word-spacing:11.418482px;}
.wscd{word-spacing:11.422666px;}
.wsda{word-spacing:11.426850px;}
.ws1a3{word-spacing:11.435637px;}
.ws1cb{word-spacing:11.456140px;}
.wsec{word-spacing:11.456559px;}
.wsf4{word-spacing:11.462835px;}
.wsdb{word-spacing:11.464509px;}
.ws100{word-spacing:11.475388px;}
.wsdd{word-spacing:11.485430px;}
.ws190{word-spacing:11.485849px;}
.wsd6{word-spacing:11.497983px;}
.wsde{word-spacing:11.510536px;}
.ws0{word-spacing:11.518904px;}
.wsdf{word-spacing:11.523089px;}
.ws198{word-spacing:11.536060px;}
.ws1cc{word-spacing:11.548194px;}
.ws1b6{word-spacing:11.548613px;}
.ws30{word-spacing:11.559318px;}
.ws199{word-spacing:11.560747px;}
.ws1d6{word-spacing:11.564931px;}
.ws1ca{word-spacing:11.569116px;}
.wsd2{word-spacing:11.573300px;}
.wsdc{word-spacing:11.577903px;}
.ws195{word-spacing:11.585853px;}
.ws18f{word-spacing:11.594640px;}
.ws1dd{word-spacing:11.598406px;}
.ws1d1{word-spacing:11.615143px;}
.ws1b7{word-spacing:11.615561px;}
.ws1e1{word-spacing:11.617967px;}
.wse8{word-spacing:11.636064px;}
.ws19c{word-spacing:11.644433px;}
.ws1df{word-spacing:11.648617px;}
.wsf1{word-spacing:11.661170px;}
.wsd8{word-spacing:11.677907px;}
.ws130{word-spacing:11.686694px;}
.ws1c3{word-spacing:11.690460px;}
.wsca{word-spacing:11.703013px;}
.ws182{word-spacing:11.705523px;}
.wse5{word-spacing:11.707197px;}
.ws1d3{word-spacing:11.732303px;}
.ws196{word-spacing:11.799251px;}
.ws5{word-spacing:11.969375px;}
.ws7{word-spacing:12.032587px;}
.wsfd{word-spacing:12.058677px;}
.ws188{word-spacing:12.099125px;}
.ws18a{word-spacing:12.109885px;}
.ws1b0{word-spacing:12.121859px;}
.wsa{word-spacing:12.157665px;}
.wsb{word-spacing:12.202495px;}
.ws9{word-spacing:12.220428px;}
.ws143{word-spacing:12.259522px;}
.ws18b{word-spacing:12.271278px;}
.ws1ab{word-spacing:12.323123px;}
.ws1af{word-spacing:12.372916px;}
.ws94{word-spacing:12.395929px;}
.ws1a5{word-spacing:12.477523px;}
.ws189{word-spacing:12.481090px;}
.ws15c{word-spacing:12.640710px;}
.ws3e{word-spacing:12.921288px;}
.ws12f{word-spacing:12.948254px;}
.ws32{word-spacing:13.101564px;}
.ws52{word-spacing:13.205588px;}
.ws54{word-spacing:13.268352px;}
.ws53{word-spacing:13.362498px;}
.ws9a{word-spacing:13.412710px;}
.ws51{word-spacing:13.469197px;}
.ws9b{word-spacing:13.475474px;}
.ws128{word-spacing:13.488027px;}
.ws1a4{word-spacing:13.506856px;}
.ws14f{word-spacing:13.663766px;}
.ws4e{word-spacing:13.707701px;}
.ws99{word-spacing:13.720254px;}
.ws123{word-spacing:13.757913px;}
.ws13e{word-spacing:13.761678px;}
.ws124{word-spacing:13.814400px;}
.ws108{word-spacing:13.877165px;}
.ws14d{word-spacing:13.924865px;}
.ws187{word-spacing:14.008969px;}
.ws20{word-spacing:14.046628px;}
.ws148{word-spacing:14.050812px;}
.ws16c{word-spacing:14.103116px;}
.ws13a{word-spacing:14.153327px;}
.ws23{word-spacing:14.209815px;}
.ws122{word-spacing:14.241197px;}
.ws21{word-spacing:14.253750px;}
.ws1ae{word-spacing:14.326975px;}
.ws176{word-spacing:14.329067px;}
.ws13c{word-spacing:14.331734px;}
.wsc4{word-spacing:14.369392px;}
.ws65{word-spacing:14.379278px;}
.ws1aa{word-spacing:14.385555px;}
.ws16b{word-spacing:14.404384px;}
.ws1a9{word-spacing:14.406058px;}
.ws22{word-spacing:14.435766px;}
.ws66{word-spacing:14.448319px;}
.ws1be{word-spacing:14.465056px;}
.ws18c{word-spacing:14.493127px;}
.wsfe{word-spacing:14.539955px;}
.ws67{word-spacing:14.573847px;}
.wsc{word-spacing:14.589963px;}
.ws13b{word-spacing:14.622242px;}
.ws136{word-spacing:14.655441px;}
.ws34{word-spacing:14.690437px;}
.ws64{word-spacing:14.699376px;}
.wsd{word-spacing:14.794395px;}
.ws12b{word-spacing:14.837457px;}
.ws5d{word-spacing:14.925327px;}
.ws19{word-spacing:14.931603px;}
.ws1a{word-spacing:15.063408px;}
.ws1b{word-spacing:15.094790px;}
.ws95{word-spacing:15.126172px;}
.ws12c{word-spacing:15.327018px;}
.ws1b4{word-spacing:15.448362px;}
.ws9d{word-spacing:15.515310px;}
.ws17e{word-spacing:15.527863px;}
.ws171{word-spacing:15.540416px;}
.ws1bc{word-spacing:15.565522px;}
.ws1b5{word-spacing:15.673894px;}
.ws9e{word-spacing:15.816578px;}
.ws9c{word-spacing:15.891895px;}
.ws12d{word-spacing:16.067635px;}
.ws1e{word-spacing:16.130399px;}
.ws1b2{word-spacing:16.134584px;}
.ws181{word-spacing:16.350074px;}
.wsba{word-spacing:16.394009px;}
.ws9f{word-spacing:16.444220px;}
.ws10{word-spacing:16.469326px;}
.ws58{word-spacing:16.488155px;}
.ws7a{word-spacing:16.500708px;}
.ws16a{word-spacing:16.632513px;}
.ws24{word-spacing:16.663895px;}
.ws14{word-spacing:16.676448px;}
.ws1d{word-spacing:16.695277px;}
.ws125{word-spacing:16.714106px;}
.ws2c{word-spacing:16.720383px;}
.ws180{word-spacing:16.726659px;}
.ws110{word-spacing:16.732936px;}
.ws12a{word-spacing:16.745489px;}
.ws25{word-spacing:16.764318px;}
.ws18{word-spacing:16.770594px;}
.ws111{word-spacing:16.789423px;}
.ws80{word-spacing:16.814529px;}
.ws26{word-spacing:16.820806px;}
.ws50{word-spacing:16.827082px;}
.ws97{word-spacing:16.839635px;}
.ws83{word-spacing:16.845911px;}
.ws2e{word-spacing:16.858464px;}
.ws49{word-spacing:16.877293px;}
.ws10f{word-spacing:16.921228px;}
.ws57{word-spacing:16.952610px;}
.ws119{word-spacing:16.958887px;}
.ws92{word-spacing:16.971440px;}
.wsc1{word-spacing:17.053033px;}
.ws79{word-spacing:17.065586px;}
.ws2d{word-spacing:17.103245px;}
.ws116{word-spacing:17.134627px;}
.ws11{word-spacing:17.140903px;}
.ws42{word-spacing:17.159732px;}
.ws118{word-spacing:17.166009px;}
.ws14c{word-spacing:17.184420px;}
.ws7f{word-spacing:17.222496px;}
.ws13{word-spacing:17.228773px;}
.ws82{word-spacing:17.260155px;}
.wsa3{word-spacing:17.379407px;}
.wsb2{word-spacing:17.517488px;}
.ws45{word-spacing:17.636740px;}
.ws47{word-spacing:17.781098px;}
.ws76{word-spacing:17.786747px;}
.ws1c{word-spacing:17.837586px;}
.ws7b{word-spacing:17.850138px;}
.ws75{word-spacing:17.894073px;}
.ws48{word-spacing:17.938008px;}
.wsbd{word-spacing:18.025878px;}
.ws46{word-spacing:18.032155px;}
.ws150{word-spacing:18.038431px;}
.ws8a{word-spacing:18.101195px;}
.ws8f{word-spacing:18.120025px;}
.ws1bf{word-spacing:18.126301px;}
.wsbf{word-spacing:18.157683px;}
.wsbb{word-spacing:18.176512px;}
.wsc0{word-spacing:18.233000px;}
.wsbe{word-spacing:18.258106px;}
.wsa8{word-spacing:18.276935px;}
.ws158{word-spacing:18.345976px;}
.wsbc{word-spacing:18.452675px;}
.ws77{word-spacing:18.509163px;}
.ws1f{word-spacing:18.578203px;}
.ws6c{word-spacing:18.659797px;}
.ws8e{word-spacing:18.722561px;}
.ws140{word-spacing:18.740972px;}
.ws69{word-spacing:18.753943px;}
.ws87{word-spacing:18.810431px;}
.ws60{word-spacing:18.866919px;}
.ws55{word-spacing:18.979894px;}
.ws17d{word-spacing:18.992447px;}
.wsb8{word-spacing:19.199569px;}
.ws142{word-spacing:19.201242px;}
.ws5f{word-spacing:19.224674px;}
.ws173{word-spacing:19.256057px;}
.ws29{word-spacing:19.268609px;}
.ws166{word-spacing:19.274886px;}
.ws1b1{word-spacing:19.348111px;}
.ws174{word-spacing:19.406691px;}
.ws27{word-spacing:19.431796px;}
.ws28{word-spacing:19.482008px;}
.ws147{word-spacing:19.494142px;}
.wsa2{word-spacing:19.733692px;}
.ws152{word-spacing:19.827211px;}
.ws186{word-spacing:19.946463px;}
.ws17{word-spacing:19.959016px;}
.ws153{word-spacing:20.065715px;}
.ws93{word-spacing:20.115926px;}
.ws12e{word-spacing:20.159861px;}
.ws98{word-spacing:20.279113px;}
.ws74{word-spacing:20.348154px;}
.ws72{word-spacing:20.392716px;}
.ws6b{word-spacing:20.618040px;}
.ws11e{word-spacing:20.699633px;}
.ws115{word-spacing:20.768674px;}
.ws113{word-spacing:20.812609px;}
.ws112{word-spacing:20.825162px;}
.ws114{word-spacing:20.837714px;}
.ws8c{word-spacing:20.843991px;}
.ws7d{word-spacing:20.913031px;}
.ws6a{word-spacing:20.925584px;}
.ws16d{word-spacing:21.032283px;}
.ws73{word-spacing:21.044836px;}
.ws8d{word-spacing:21.120153px;}
.ws121{word-spacing:21.245682px;}
.ws89{word-spacing:21.440251px;}
.ws17c{word-spacing:21.446527px;}
.ws154{word-spacing:21.578332px;}
.ws71{word-spacing:21.772901px;}
.ws70{word-spacing:21.841942px;}
.wsa0{word-spacing:21.998852px;}
.wsb5{word-spacing:22.099275px;}
.ws81{word-spacing:22.205974px;}
.ws18d{word-spacing:22.266909px;}
.wsc3{word-spacing:22.374505px;}
.ws56{word-spacing:22.507242px;}
.wsb3{word-spacing:22.613941px;}
.ws161{word-spacing:22.833616px;}
.wsa1{word-spacing:22.921486px;}
.ws17b{word-spacing:22.959144px;}
.ws5b{word-spacing:23.141161px;}
.ws5a{word-spacing:23.222754px;}
.ws59{word-spacing:23.279242px;}
.ws68{word-spacing:23.291795px;}
.ws40{word-spacing:23.348282px;}
.ws117{word-spacing:23.398494px;}
.ws120{word-spacing:23.404770px;}
.ws41{word-spacing:23.448705px;}
.ws86{word-spacing:23.480087px;}
.ws85{word-spacing:23.567957px;}
.wsa7{word-spacing:23.624445px;}
.ws5e{word-spacing:23.630721px;}
.ws7c{word-spacing:23.687209px;}
.ws84{word-spacing:23.693485px;}
.ws138{word-spacing:23.718591px;}
.ws17a{word-spacing:23.831567px;}
.wsa6{word-spacing:23.894331px;}
.wsa4{word-spacing:23.938266px;}
.wsa5{word-spacing:24.032412px;}
.ws15e{word-spacing:24.126558px;}
.ws15d{word-spacing:24.245810px;}
.ws164{word-spacing:24.521973px;}
.ws185{word-spacing:24.565908px;}
.ws2a{word-spacing:24.634949px;}
.ws165{word-spacing:24.641225px;}
.ws17f{word-spacing:24.722818px;}
.ws15b{word-spacing:24.842070px;}
.ws151{word-spacing:24.923664px;}
.wsb4{word-spacing:24.936217px;}
.ws15{word-spacing:25.111956px;}
.ws170{word-spacing:25.137062px;}
.wsa9{word-spacing:25.149615px;}
.ws169{word-spacing:25.180369px;}
.wsab{word-spacing:25.187273px;}
.ws6e{word-spacing:25.199826px;}
.ws6d{word-spacing:25.237485px;}
.ws16{word-spacing:25.262591px;}
.wsaa{word-spacing:25.475989px;}
.ws62{word-spacing:25.507371px;}
.ws14a{word-spacing:25.758009px;}
.ws129{word-spacing:26.072249px;}
.ws63{word-spacing:26.329582px;}
.ws146{word-spacing:26.386070px;}
.ws11a{word-spacing:26.812866px;}
.ws11d{word-spacing:26.825419px;}
.ws183{word-spacing:27.095305px;}
.ws137{word-spacing:27.183175px;}
.ws4d{word-spacing:27.289874px;}
.ws44{word-spacing:27.779435px;}
.ws43{word-spacing:27.942622px;}
.ws7e{word-spacing:28.300378px;}
.ws14b{word-spacing:28.569845px;}
.ws11f{word-spacing:28.733451px;}
.ws90{word-spacing:28.990784px;}
.ws3{word-spacing:29.029617px;}
.ws2{word-spacing:29.051136px;}
.ws2b{word-spacing:29.223012px;}
.ws91{word-spacing:29.248117px;}
.ws8b{word-spacing:29.417581px;}
.ws4{word-spacing:29.503043px;}
.ws10a{word-spacing:29.687467px;}
.ws11b{word-spacing:29.743954px;}
.ws10c{word-spacing:29.750231px;}
.ws11c{word-spacing:29.756507px;}
.ws10b{word-spacing:29.913418px;}
.wsae{word-spacing:29.951076px;}
.ws155{word-spacing:29.969906px;}
.ws109{word-spacing:30.038946px;}
.ws157{word-spacing:30.089157px;}
.wsad{word-spacing:30.195857px;}
.wsac{word-spacing:30.252344px;}
.ws156{word-spacing:30.340214px;}
.ws172{word-spacing:30.559889px;}
.ws61{word-spacing:30.697970px;}
.ws16f{word-spacing:30.961580px;}
.ws126{word-spacing:31.099661px;}
.ws127{word-spacing:31.105938px;}
.wsb0{word-spacing:32.066230px;}
.wsb1{word-spacing:32.147823px;}
.ws5c{word-spacing:32.361222px;}
.wsaf{word-spacing:32.386327px;}
.ws163{word-spacing:32.536961px;}
.ws167{word-spacing:32.624831px;}
.ws162{word-spacing:32.643660px;}
.ws4b{word-spacing:32.662490px;}
.ws160{word-spacing:32.800571px;}
.ws4a{word-spacing:33.089286px;}
.ws16e{word-spacing:33.133221px;}
.ws133{word-spacing:34.539139px;}
.ws134{word-spacing:34.576798px;}
.ws132{word-spacing:35.053806px;}
.wsc2{word-spacing:36.468447px;}
.ws139{word-spacing:36.886520px;}
.ws1c1{word-spacing:36.895087px;}
.ws78{word-spacing:38.091593px;}
.ws184{word-spacing:39.503787px;}
.ws1{word-spacing:40.175553px;}
.ws6f{word-spacing:40.558226px;}
.ws168{word-spacing:66.825044px;}
.ws1d0{word-spacing:71.759984px;}
.ws18e{word-spacing:114.548431px;}
.ws1c2{word-spacing:114.887358px;}
.wsc7{word-spacing:136.511717px;}
.wsee{word-spacing:140.817341px;}
.wse6{word-spacing:167.174120px;}
.wsed{word-spacing:186.121796px;}
.wsd9{word-spacing:220.582270px;}
.wse2{word-spacing:230.163853px;}
.wse4{word-spacing:230.164272px;}
.wsc6{word-spacing:236.691748px;}
.wsc9{word-spacing:239.327845px;}
.wse1{word-spacing:239.369269px;}
.wse3{word-spacing:239.369688px;}
.wsf0{word-spacing:250.692349px;}
.wscb{word-spacing:273.392068px;}
.wsea{word-spacing:297.535782px;}
.wse9{word-spacing:308.070962px;}
.wse7{word-spacing:583.362694px;}
.ws1e3{word-spacing:1904.039280px;}
.ws1e2{word-spacing:2069.157420px;}
._56{margin-left:-2611.321200px;}
._4f{margin-left:-1698.239400px;}
._53{margin-left:-1488.298800px;}
._4e{margin-left:-1484.997600px;}
._54{margin-left:-1323.420600px;}
._55{margin-left:-1263.359400px;}
._51{margin-left:-1234.980000px;}
._4d{margin-left:-1215.058800px;}
._4b{margin-left:-645.984720px;}
._45{margin-left:-24.961013px;}
._17{margin-left:-22.852445px;}
._18{margin-left:-19.450626px;}
._44{margin-left:-14.228255px;}
._43{margin-left:-2.329313px;}
._1{margin-left:-1.119010px;}
._4{width:1.308163px;}
._e{width:6.692633px;}
._40{width:7.916658px;}
._d{width:9.113103px;}
._5{width:10.557653px;}
._f{width:11.960082px;}
._3{width:13.095077px;}
._c{width:14.370134px;}
._7{width:16.199440px;}
._6{width:17.724610px;}
._9{width:18.948512px;}
._a{width:19.971568px;}
._16{width:22.243632px;}
._13{width:23.787632px;}
._15{width:24.886005px;}
._8{width:26.222883px;}
._42{width:27.911240px;}
._11{width:28.965678px;}
._b{width:30.428084px;}
._14{width:31.815173px;}
._12{width:33.855009px;}
._2{width:38.901125px;}
._46{width:40.846941px;}
._4a{width:58.718001px;}
._30{width:71.480055px;}
._2c{width:78.655677px;}
._49{width:79.664507px;}
._0{width:86.939780px;}
._37{width:111.038238px;}
._2f{width:115.695342px;}
._31{width:117.741455px;}
._21{width:147.102548px;}
._2e{width:150.558763px;}
._2d{width:163.320817px;}
._32{width:181.346695px;}
._24{width:182.819562px;}
._3f{width:185.942290px;}
._3c{width:214.840601px;}
._22{width:217.854538px;}
._3d{width:222.163091px;}
._23{width:229.570522px;}
._3e{width:232.708732px;}
._47{width:234.022178px;}
._33{width:239.416133px;}
._1b{width:247.282579px;}
._27{width:249.918676px;}
._35{width:263.885802px;}
._3a{width:274.429770px;}
._3b{width:276.095113px;}
._20{width:277.191813px;}
._1d{width:280.957665px;}
._1e{width:282.999594px;}
._29{width:286.229858px;}
._48{width:288.011106px;}
._25{width:295.221875px;}
._34{width:312.469478px;}
._1c{width:318.034570px;}
._28{width:320.670666px;}
._39{width:322.051060px;}
._1a{width:328.583140px;}
._36{width:329.779844px;}
._26{width:331.219236px;}
._38{width:339.361427px;}
._2b{width:344.190504px;}
._1f{width:346.609018px;}
._2a{width:349.245114px;}
._10{width:413.595995px;}
._50{width:470.100000px;}
._52{width:1161.658800px;}
._41{width:1296.251011px;}
._19{width:1297.467188px;}
._4c{width:1480.738800px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,109,72);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:24.465600px;}
.fsa{font-size:27.891000px;}
.fs5{font-size:35.866200px;}
.fs9{font-size:41.837400px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:44.830800px;}
.fs8{font-size:47.821200px;}
.fs4{font-size:53.797800px;}
.fsd{font-size:60.000000px;}
.fs7{font-size:62.764200px;}
.fsc{font-size:72.000000px;}
.fs6{font-size:95.641800px;}
.fs2{font-size:107.596800px;}
.fs1{font-size:155.418000px;}
.y0{bottom:0.000000px;}
.y32{bottom:31.294500px;}
.y1af{bottom:52.892402px;}
.y31{bottom:64.712368px;}
.y16c{bottom:67.355170px;}
.y63{bottom:72.540202px;}
.y94{bottom:72.541788px;}
.y30{bottom:76.703335px;}
.y1ae{bottom:78.999171px;}
.y12c{bottom:83.425564px;}
.y16b{bottom:86.063609px;}
.y62{bottom:91.248641px;}
.y93{bottom:91.250227px;}
.y1ad{bottom:91.754949px;}
.y2f{bottom:94.562013px;}
.y12b{bottom:95.330886px;}
.y1ac{bottom:104.425995px;}
.y16a{bottom:104.687317px;}
.y12a{bottom:107.321987px;}
.y61{bottom:109.872348px;}
.y92{bottom:109.873934px;}
.y2e{bottom:112.504976px;}
.y1ab{bottom:117.097041px;}
.y129{bottom:119.313087px;}
.y169{bottom:123.395755px;}
.y2d{bottom:124.495943px;}
.y60{bottom:128.580787px;}
.y91{bottom:128.582373px;}
.y1aa{bottom:129.852818px;}
.yef{bottom:130.280427px;}
.y128{bottom:131.218410px;}
.y211{bottom:134.786689px;}
.y168{bottom:142.104194px;}
.yee{bottom:142.185750px;}
.y2c{bottom:142.438907px;}
.y1a9{bottom:142.523864px;}
.y127{bottom:143.209510px;}
.yed{bottom:146.352750px;}
.y90{bottom:147.290812px;}
.y210{bottom:147.457735px;}
.yec{bottom:154.176300px;}
.y2b{bottom:154.344692px;}
.y126{bottom:155.114833px;}
.y1a8{bottom:155.194910px;}
.yeb{bottom:158.258250px;}
.y20f{bottom:160.128781px;}
.y167{bottom:160.727902px;}
.y5f{bottom:162.936341px;}
.y8f{bottom:165.914519px;}
.yea{bottom:166.167000px;}
.y2a{bottom:166.335659px;}
.y125{bottom:167.105933px;}
.y1a7{bottom:167.950688px;}
.ye9{bottom:170.248650px;}
.y20e{bottom:172.884558px;}
.ye8{bottom:178.071577px;}
.y29{bottom:178.325730px;}
.y124{bottom:179.011256px;}
.y1a6{bottom:180.621734px;}
.y5e{bottom:181.644780px;}
.y8e{bottom:184.622958px;}
.y20d{bottom:185.555581px;}
.ye7{bottom:190.062677px;}
.y28{bottom:190.231515px;}
.y123{bottom:191.001310px;}
.y1a5{bottom:193.377511px;}
.y166{bottom:198.144779px;}
.y20c{bottom:198.226627px;}
.y5d{bottom:200.353219px;}
.ye6{bottom:201.968000px;}
.y27{bottom:202.222482px;}
.y122{bottom:202.991365px;}
.y8d{bottom:203.331397px;}
.y1a4{bottom:206.048557px;}
.y20b{bottom:210.980940px;}
.ye5{bottom:213.959100px;}
.y26{bottom:214.128267px;}
.y121{bottom:214.896687px;}
.y165{bottom:216.768487px;}
.ye4{bottom:218.040900px;}
.y8c{bottom:221.955104px;}
.y20a{bottom:223.651986px;}
.ye3{bottom:225.950173px;}
.y25{bottom:226.119234px;}
.y120{bottom:226.886742px;}
.y1a3{bottom:231.815353px;}
.y164{bottom:235.476926px;}
.y209{bottom:236.407763px;}
.y5c{bottom:237.685365px;}
.ye2{bottom:237.855496px;}
.y24{bottom:238.025019px;}
.y11f{bottom:238.792064px;}
.y8b{bottom:240.663543px;}
.y1a2{bottom:244.486399px;}
.ye1{bottom:249.845550px;}
.y23{bottom:250.015987px;}
.y11e{bottom:250.782119px;}
.ye0{bottom:253.927500px;}
.y5b{bottom:256.393804px;}
.y1a1{bottom:257.242177px;}
.y8a{bottom:259.371982px;}
.ydf{bottom:261.751200px;}
.y208{bottom:262.174560px;}
.y11d{bottom:262.772173px;}
.yde{bottom:265.918050px;}
.y22{bottom:267.958950px;}
.y1a0{bottom:269.913223px;}
.y229{bottom:271.499865px;}
.ydd{bottom:273.741600px;}
.y163{bottom:273.744258px;}
.y11c{bottom:274.677496px;}
.y207{bottom:274.845606px;}
.y5a{bottom:275.017511px;}
.ydc{bottom:277.823550px;}
.y89{bottom:277.995690px;}
.y19f{bottom:282.669000px;}
.ydb{bottom:285.647250px;}
.y22a{bottom:286.499865px;}
.y11b{bottom:286.667550px;}
.y206{bottom:287.516651px;}
.y162{bottom:292.367966px;}
.y59{bottom:293.725950px;}
.y19e{bottom:295.340046px;}
.y88{bottom:296.704128px;}
.y205{bottom:300.272429px;}
.y22b{bottom:301.500015px;}
.y19d{bottom:308.011092px;}
.y161{bottom:311.076404px;}
.y204{bottom:312.943475px;}
.y87{bottom:315.412567px;}
.yd8{bottom:315.920857px;}
.y22c{bottom:316.500015px;}
.yd9{bottom:320.598300px;}
.y19c{bottom:320.766870px;}
.y203{bottom:325.699253px;}
.yd7{bottom:328.676635px;}
.yd0{bottom:328.676875px;}
.y160{bottom:329.784843px;}
.y57{bottom:331.060136px;}
.y19b{bottom:333.437916px;}
.y86{bottom:334.036275px;}
.y58{bottom:338.031450px;}
.y202{bottom:338.370298px;}
.yd6{bottom:341.347681px;}
.ycf{bottom:341.347921px;}
.y19a{bottom:346.108961px;}
.y15f{bottom:348.408551px;}
.y56{bottom:349.768575px;}
.y201{bottom:351.041344px;}
.y85{bottom:352.744714px;}
.yd4{bottom:354.018727px;}
.yce{bottom:354.018967px;}
.yda{bottom:358.696050px;}
.y199{bottom:358.864739px;}
.yd3{bottom:366.774504px;}
.ycd{bottom:366.774745px;}
.y15e{bottom:367.116990px;}
.y55{bottom:368.477014px;}
.yd5{bottom:371.366850px;}
.y84{bottom:371.453152px;}
.y200{bottom:376.808141px;}
.yd2{bottom:379.445550px;}
.ycc{bottom:379.445791px;}
.yd1{bottom:384.122700px;}
.y198{bottom:384.631535px;}
.y15d{bottom:385.825428px;}
.y54{bottom:387.100721px;}
.y1ff{bottom:389.563918px;}
.y83{bottom:390.076860px;}
.y197{bottom:397.302581px;}
.y1fe{bottom:402.234964px;}
.y15c{bottom:404.449136px;}
.ycb{bottom:405.212587px;}
.y53{bottom:405.809160px;}
.y82{bottom:408.785299px;}
.y196{bottom:410.058359px;}
.y21{bottom:412.103208px;}
.y1fd{bottom:414.990742px;}
.y227{bottom:415.499955px;}
.yca{bottom:417.968365px;}
.y195{bottom:422.729405px;}
.y15b{bottom:423.157575px;}
.y52{bottom:424.517599px;}
.y81{bottom:427.493738px;}
.y1fc{bottom:427.661788px;}
.y228{bottom:430.499955px;}
.yc9{bottom:430.639411px;}
.y20{bottom:430.811647px;}
.y194{bottom:435.400451px;}
.y1fb{bottom:440.332833px;}
.y15a{bottom:441.866014px;}
.y51{bottom:443.141306px;}
.y80{bottom:446.117445px;}
.y193{bottom:448.156228px;}
.y1f{bottom:449.520086px;}
.y1fa{bottom:453.088611px;}
.yc8{bottom:456.406207px;}
.y224{bottom:457.499910px;}
.y159{bottom:460.489721px;}
.y192{bottom:460.827274px;}
.y50{bottom:461.849745px;}
.y1e{bottom:468.143793px;}
.yc7{bottom:469.161984px;}
.y225{bottom:472.499910px;}
.y222{bottom:472.499955px;}
.y1f9{bottom:478.855407px;}
.y158{bottom:479.198160px;}
.y4f{bottom:480.558184px;}
.yc6{bottom:481.833030px;}
.y7f{bottom:483.534323px;}
.y191{bottom:486.594070px;}
.y1d{bottom:486.852232px;}
.y223{bottom:487.499955px;}
.y226{bottom:487.500060px;}
.y1f8{bottom:491.526453px;}
.y157{bottom:497.906599px;}
.y4e{bottom:499.181891px;}
.y190{bottom:499.349848px;}
.y7e{bottom:502.158030px;}
.y1f7{bottom:504.282231px;}
.yc3{bottom:507.599815px;}
.y18f{bottom:512.020894px;}
.y21c{bottom:514.499685px;}
.y156{bottom:516.530306px;}
.y1f6{bottom:516.953277px;}
.y4d{bottom:517.890330px;}
.yc2{bottom:520.270861px;}
.y7d{bottom:520.866469px;}
.y1c{bottom:524.184378px;}
.y18e{bottom:524.691940px;}
.y21d{bottom:529.499685px;}
.y1f5{bottom:529.624323px;}
.yc1{bottom:533.026638px;}
.yc5{bottom:533.026650px;}
.y155{bottom:535.238745px;}
.y4c{bottom:536.514037px;}
.y18d{bottom:537.447717px;}
.yc4{bottom:537.618750px;}
.y7c{bottom:539.574908px;}
.y1f4{bottom:542.380100px;}
.y1b{bottom:542.892817px;}
.y18c{bottom:550.118763px;}
.y154{bottom:553.947184px;}
.y1f3{bottom:555.051146px;}
.y4b{bottom:555.222476px;}
.y7b{bottom:558.198615px;}
.yc0{bottom:558.793434px;}
.y21e{bottom:559.499835px;}
.y1a{bottom:561.516525px;}
.y18b{bottom:562.789809px;}
.ybf{bottom:571.464480px;}
.y153{bottom:572.570891px;}
.y4a{bottom:573.930915px;}
.y18a{bottom:575.545587px;}
.y19{bottom:580.224964px;}
.y1f2{bottom:580.817942px;}
.y21f{bottom:589.499985px;}
.y152{bottom:591.279330px;}
.y49{bottom:592.554622px;}
.y1f1{bottom:593.573720px;}
.y7a{bottom:595.615493px;}
.ybc{bottom:597.231553px;}
.y18{bottom:598.933402px;}
.y189{bottom:601.312383px;}
.y220{bottom:604.499985px;}
.y1f0{bottom:606.244766px;}
.ybb{bottom:609.987330px;}
.y151{bottom:609.987769px;}
.y48{bottom:611.263061px;}
.y188{bottom:613.983429px;}
.y79{bottom:614.239200px;}
.y77{bottom:614.239987px;}
.y17{bottom:617.557110px;}
.y1ef{bottom:618.915812px;}
.y221{bottom:619.499985px;}
.y21b{bottom:619.500000px;}
.y78{bottom:621.212400px;}
.ybe{bottom:622.658100px;}
.yba{bottom:622.658376px;}
.y187{bottom:626.739206px;}
.ybd{bottom:627.335250px;}
.y47{bottom:629.971500px;}
.y1ee{bottom:631.671589px;}
.y76{bottom:632.948426px;}
.y16{bottom:636.265549px;}
.y186{bottom:639.410252px;}
.y150{bottom:647.319915px;}
.y11a{bottom:647.744700px;}
.yb7{bottom:648.425203px;}
.y75{bottom:651.656865px;}
.y185{bottom:652.081298px;}
.y15{bottom:654.973988px;}
.y1ed{bottom:657.438386px;}
.y46{bottom:659.055000px;}
.yb9{bottom:661.180950px;}
.yb6{bottom:661.180980px;}
.y21a{bottom:661.499955px;}
.y219{bottom:661.500000px;}
.y184{bottom:664.837076px;}
.yb8{bottom:665.773050px;}
.y14f{bottom:666.028354px;}
.y1ec{bottom:670.109431px;}
.y74{bottom:670.280572px;}
.y183{bottom:677.508122px;}
.y1eb{bottom:682.780477px;}
.y14e{bottom:684.652061px;}
.yb3{bottom:686.947706px;}
.y73{bottom:688.989011px;}
.y182{bottom:690.263899px;}
.y14{bottom:692.306134px;}
.y1ea{bottom:695.536255px;}
.y217{bottom:695.999955px;}
.yb2{bottom:699.618752px;}
.y1d0{bottom:702.932928px;}
.y181{bottom:702.934945px;}
.y14d{bottom:703.360500px;}
.y14b{bottom:703.360504px;}
.y72{bottom:707.697450px;}
.y70{bottom:707.697919px;}
.y1e9{bottom:708.207301px;}
.y14c{bottom:710.333700px;}
.y218{bottom:710.999955px;}
.y13{bottom:711.014573px;}
.yb1{bottom:712.374529px;}
.yb5{bottom:712.374600px;}
.y71{bottom:714.670650px;}
.y45{bottom:715.096530px;}
.y1cf{bottom:715.603974px;}
.y104{bottom:716.459036px;}
.yb4{bottom:716.966700px;}
.y119{bottom:717.137423px;}
.y14a{bottom:722.068943px;}
.y6f{bottom:726.321626px;}
.y1ce{bottom:728.275020px;}
.y180{bottom:728.701741px;}
.y12{bottom:729.638280px;}
.y44{bottom:733.804969px;}
.y1e8{bottom:733.974097px;}
.y103{bottom:735.082743px;}
.y118{bottom:735.761130px;}
.yb0{bottom:738.141325px;}
.y149{bottom:740.692650px;}
.y147{bottom:740.693122px;}
.y1cd{bottom:741.030798px;}
.y17f{bottom:741.372787px;}
.y6e{bottom:745.030065px;}
.y1e7{bottom:746.729875px;}
.y148{bottom:747.666000px;}
.y11{bottom:748.346719px;}
.yaf{bottom:750.812371px;}
.y216{bottom:751.500000px;}
.y43{bottom:752.513408px;}
.y1cc{bottom:753.701844px;}
.y102{bottom:753.791182px;}
.y17e{bottom:754.128565px;}
.y117{bottom:754.469569px;}
.y1e6{bottom:759.400921px;}
.y146{bottom:759.401561px;}
.yae{bottom:763.483417px;}
.y6d{bottom:763.738504px;}
.y1cb{bottom:766.457621px;}
.y17d{bottom:766.799611px;}
.y42{bottom:771.137115px;}
.y1e5{bottom:772.071966px;}
.y101{bottom:772.499621px;}
.y116{bottom:773.178008px;}
.yad{bottom:776.239195px;}
.y143{bottom:778.109993px;}
.y145{bottom:778.110000px;}
.y1ca{bottom:779.128667px;}
.y17c{bottom:779.555388px;}
.y6c{bottom:782.362211px;}
.y1e4{bottom:784.827744px;}
.y144{bottom:785.083350px;}
.y10{bottom:785.678865px;}
.yac{bottom:788.910241px;}
.y100{bottom:791.123328px;}
.y1c9{bottom:791.799713px;}
.y115{bottom:791.801715px;}
.y212{bottom:791.999865px;}
.y17b{bottom:792.226434px;}
.y142{bottom:796.733700px;}
.y140{bottom:796.734176px;}
.y1e3{bottom:797.498790px;}
.y6b{bottom:801.070650px;}
.y141{bottom:803.706900px;}
.yf{bottom:804.387304px;}
.y1c8{bottom:804.555491px;}
.y17a{bottom:804.897480px;}
.y41{bottom:808.553993px;}
.yff{bottom:809.831767px;}
.y213{bottom:809.999865px;}
.yab{bottom:814.677037px;}
.y13f{bottom:815.442615px;}
.y1c7{bottom:817.226537px;}
.y179{bottom:817.653258px;}
.ye{bottom:823.095743px;}
.y1e2{bottom:823.265586px;}
.y40{bottom:827.177700px;}
.y3e{bottom:827.178015px;}
.yaa{bottom:827.432815px;}
.y214{bottom:828.000045px;}
.yfe{bottom:828.540206px;}
.y114{bottom:829.218593px;}
.y1c6{bottom:829.897583px;}
.y6a{bottom:830.239200px;}
.y178{bottom:830.324304px;}
.y3f{bottom:834.150900px;}
.y13e{bottom:834.151054px;}
.y1e1{bottom:836.021364px;}
.yd{bottom:841.719450px;}
.y1c5{bottom:842.653360px;}
.y3d{bottom:845.886454px;}
.y215{bottom:846.000045px;}
.yfd{bottom:847.163913px;}
.y113{bottom:847.842300px;}
.y111{bottom:847.846474px;}
.y1e0{bottom:848.692410px;}
.y13d{bottom:852.774761px;}
.ya9{bottom:853.199611px;}
.y112{bottom:854.815500px;}
.y1c4{bottom:855.324406px;}
.y177{bottom:856.091100px;}
.y1df{bottom:861.363456px;}
.y3c{bottom:864.594893px;}
.ya8{bottom:865.870657px;}
.yfc{bottom:865.872352px;}
.y110{bottom:866.554913px;}
.y1c3{bottom:867.995452px;}
.y13c{bottom:871.483200px;}
.y13a{bottom:871.484134px;}
.yc{bottom:871.653300px;}
.y1de{bottom:874.119233px;}
.y13b{bottom:878.456400px;}
.ya7{bottom:878.626434px;}
.y1c2{bottom:880.751230px;}
.y176{bottom:882.283200px;}
.y3b{bottom:883.218600px;}
.yfb{bottom:884.580791px;}
.y10f{bottom:885.263351px;}
.y69{bottom:886.282762px;}
.y1dd{bottom:886.790279px;}
.y139{bottom:890.192573px;}
.ya6{bottom:891.297480px;}
.y1c1{bottom:893.422275px;}
.y1dc{bottom:899.546057px;}
.yfa{bottom:903.204498px;}
.y10e{bottom:903.887059px;}
.ya5{bottom:903.968526px;}
.y68{bottom:904.906469px;}
.y1c0{bottom:906.178053px;}
.y138{bottom:908.816280px;}
.y8{bottom:914.938350px;}
.ya4{bottom:916.724304px;}
.y1bf{bottom:918.849099px;}
.y39{bottom:920.635943px;}
.yf9{bottom:921.912937px;}
.y10d{bottom:922.595498px;}
.y67{bottom:923.614908px;}
.y1db{bottom:925.312853px;}
.y175{bottom:926.079055px;}
.y3a{bottom:927.609150px;}
.y1be{bottom:931.520145px;}
.y1da{bottom:937.983899px;}
.y38{bottom:939.259650px;}
.y36{bottom:939.259965px;}
.yf8{bottom:940.621376px;}
.y10c{bottom:941.303937px;}
.y7{bottom:941.470504px;}
.ya1{bottom:942.491058px;}
.ya3{bottom:942.491100px;}
.y174{bottom:942.576150px;}
.y1bd{bottom:944.275922px;}
.y37{bottom:946.232850px;}
.y137{bottom:946.233158px;}
.ya2{bottom:947.083200px;}
.y1d9{bottom:950.654945px;}
.y1bc{bottom:956.946968px;}
.y6{bottom:957.968238px;}
.y35{bottom:957.968404px;}
.y66{bottom:957.970462px;}
.yf7{bottom:959.245083px;}
.y173{bottom:961.545744px;}
.y1d8{bottom:963.410722px;}
.y136{bottom:964.856865px;}
.yb{bottom:966.897050px;}
.y9e{bottom:968.258184px;}
.y1bb{bottom:969.618014px;}
.y5{bottom:974.380794px;}
.y1d7{bottom:976.081768px;}
.y34{bottom:976.676843px;}
.y65{bottom:976.678901px;}
.yf6{bottom:977.953522px;}
.y10b{bottom:978.636083px;}
.ya{bottom:980.333425px;}
.ya0{bottom:980.928900px;}
.y9d{bottom:980.929230px;}
.y1ba{bottom:982.373792px;}
.y135{bottom:983.565304px;}
.y9f{bottom:985.606050px;}
.y1d6{bottom:988.837546px;}
.y4{bottom:990.793350px;}
.y9{bottom:993.769800px;}
.y1b9{bottom:995.044838px;}
.y33{bottom:995.300550px;}
.y64{bottom:995.302608px;}
.y10a{bottom:997.344522px;}
.y172{bottom:998.877890px;}
.y1d5{bottom:1001.508592px;}
.y134{bottom:1002.273743px;}
.y9c{bottom:1006.696026px;}
.y1b8{bottom:1007.800615px;}
.y1d4{bottom:1014.179638px;}
.yf5{bottom:1017.581269px;}
.y171{bottom:1017.586329px;}
.y9b{bottom:1019.451804px;}
.y1b7{bottom:1020.471661px;}
.y133{bottom:1020.897450px;}
.y131{bottom:1020.897765px;}
.y1d3{bottom:1026.935415px;}
.y132{bottom:1027.870650px;}
.y3{bottom:1032.632850px;}
.y1b6{bottom:1033.142707px;}
.y109{bottom:1034.676668px;}
.yf4{bottom:1036.204976px;}
.y130{bottom:1039.606204px;}
.y1d2{bottom:1039.606461px;}
.y99{bottom:1045.218600px;}
.y1b5{bottom:1045.898485px;}
.y108{bottom:1053.385107px;}
.yf3{bottom:1054.913415px;}
.y170{bottom:1054.918475px;}
.y97{bottom:1057.294511px;}
.y12f{bottom:1058.314643px;}
.y1b4{bottom:1058.569531px;}
.y9a{bottom:1067.669354px;}
.y1d1{bottom:1067.669381px;}
.y1b3{bottom:1071.240577px;}
.y2{bottom:1071.495900px;}
.y107{bottom:1072.008814px;}
.yf2{bottom:1073.621854px;}
.y16f{bottom:1073.626914px;}
.y96{bottom:1076.002950px;}
.y12e{bottom:1076.938350px;}
.y1b2{bottom:1083.996354px;}
.y106{bottom:1090.717253px;}
.yf1{bottom:1092.245561px;}
.y16e{bottom:1092.250621px;}
.y98{bottom:1093.776150px;}
.y1b1{bottom:1096.667400px;}
.y95{bottom:1105.851750px;}
.y12d{bottom:1106.106750px;}
.y1b0{bottom:1109.423400px;}
.y105{bottom:1109.425692px;}
.yf0{bottom:1110.954000px;}
.y16d{bottom:1110.959060px;}
.y1{bottom:1122.349350px;}
.h13{height:18.716184px;}
.h11{height:21.336615px;}
.h9{height:27.437643px;}
.hd{height:31.178488px;}
.hf{height:31.712749px;}
.h15{height:31.716842px;}
.h12{height:31.758685px;}
.h2{height:32.009742px;}
.h16{height:32.009835px;}
.h6{height:34.295562px;}
.he{height:36.583218px;}
.h14{height:37.110379px;}
.h7{height:39.056593px;}
.h5{height:39.397307px;}
.h8{height:40.778732px;}
.h10{height:41.155317px;}
.hc{height:47.575264px;}
.hb{height:48.014613px;}
.h1b{height:58.886719px;}
.h1a{height:60.468750px;}
.ha{height:63.984364px;}
.h18{height:70.664062px;}
.h19{height:72.562500px;}
.h4{height:74.026598px;}
.h3{height:103.974642px;}
.h1d{height:118.886719px;}
.h1c{height:118.887319px;}
.h17{height:1173.000000px;}
.h0{height:1174.479000px;}
.h1{height:1174.500000px;}
.w2{width:889.500000px;}
.w0{width:890.958000px;}
.w1{width:891.000000px;}
.x0{left:0.000000px;}
.x17{left:46.006350px;}
.x9{left:70.582650px;}
.x44{left:77.131521px;}
.x2{left:80.702250px;}
.x2c{left:85.209450px;}
.x2b{left:86.740200px;}
.x1{left:90.396750px;}
.x45{left:96.350965px;}
.x4f{left:115.500000px;}
.x4b{left:123.000000px;}
.x33{left:131.470800px;}
.xd{left:138.018900px;}
.x34{left:142.696050px;}
.x49{left:145.482105px;}
.xe{left:147.033000px;}
.x39{left:151.200000px;}
.x42{left:160.129853px;}
.x18{left:164.806278px;}
.x24{left:181.303800px;}
.x50{left:200.490300px;}
.x37{left:217.275600px;}
.xa{left:218.296050px;}
.xb{left:228.245550px;}
.x38{left:234.538500px;}
.x48{left:240.045285px;}
.x21{left:259.369712px;}
.x4a{left:263.499120px;}
.x43{left:276.889048px;}
.x27{left:282.160500px;}
.x1f{left:283.351050px;}
.x46{left:301.011105px;}
.xc{left:328.251900px;}
.x35{left:329.272350px;}
.x20{left:333.609300px;}
.x3{left:340.836329px;}
.x36{left:342.878700px;}
.x4c{left:346.500000px;}
.x26{left:350.107050px;}
.x11{left:353.338500px;}
.x4{left:360.140472px;}
.x30{left:371.622000px;}
.xf{left:384.718050px;}
.x10{left:405.127500px;}
.x31{left:406.488150px;}
.x32{left:415.162050px;}
.x22{left:425.536886px;}
.x25{left:441.949500px;}
.x12{left:451.644507px;}
.x3a{left:461.766676px;}
.x47{left:468.240105px;}
.x3e{left:471.628040px;}
.x13{left:477.325800px;}
.x41{left:478.516492px;}
.x14{left:487.360500px;}
.x3f{left:491.356920px;}
.x5{left:499.008358px;}
.x23{left:508.195245px;}
.x6{left:518.056965px;}
.x19{left:519.930600px;}
.x3b{left:551.310330px;}
.x2f{left:557.943150px;}
.x1a{left:579.798300px;}
.x1b{left:585.666000px;}
.x2d{left:596.380950px;}
.x2e{left:610.667550px;}
.x28{left:612.708450px;}
.x1c{left:662.966700px;}
.x7{left:665.773050px;}
.x3c{left:668.069525px;}
.x4e{left:673.605150px;}
.x1d{left:674.702250px;}
.x3d{left:719.263145px;}
.x29{left:732.018750px;}
.x1e{left:762.037650px;}
.x4d{left:767.309835px;}
.x40{left:770.286255px;}
.x15{left:795.373050px;}
.x2a{left:796.988850px;}
.x8{left:798.519410px;}
.x16{left:807.193500px;}
@media print{
.v3{vertical-align:-53.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.325195pt;}
.v1{vertical-align:4.534884pt;}
.v4{vertical-align:53.333867pt;}
.ls12{letter-spacing:-1.272021pt;}
.ls2f{letter-spacing:-1.078986pt;}
.ls2e{letter-spacing:-1.052951pt;}
.ls11{letter-spacing:-1.043838pt;}
.ls14{letter-spacing:-1.031564pt;}
.ls13{letter-spacing:-1.026543pt;}
.lsf{letter-spacing:-1.020964pt;}
.lse{letter-spacing:-1.009806pt;}
.ls2c{letter-spacing:-1.003855pt;}
.ls10{letter-spacing:-0.998648pt;}
.ls2b{letter-spacing:-0.974472pt;}
.ls2d{letter-spacing:-0.967034pt;}
.ls1e{letter-spacing:-0.652748pt;}
.ls21{letter-spacing:-0.647169pt;}
.ls3{letter-spacing:-0.248669pt;}
.ls15{letter-spacing:-0.006137pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003507pt;}
.ls0{letter-spacing:0.004091pt;}
.ls1{letter-spacing:0.004383pt;}
.ls20{letter-spacing:0.006137pt;}
.ls23{letter-spacing:0.022316pt;}
.ls1c{letter-spacing:0.033474pt;}
.ls9{letter-spacing:0.037189pt;}
.ls6{letter-spacing:0.063221pt;}
.ls22{letter-spacing:0.148774pt;}
.ls7{letter-spacing:0.184108pt;}
.ls1b{letter-spacing:0.195266pt;}
.ls1f{letter-spacing:0.215695pt;}
.ls5{letter-spacing:0.223162pt;}
.ls2a{letter-spacing:0.338462pt;}
.ls28{letter-spacing:0.989350pt;}
.ls29{letter-spacing:1.037330pt;}
.ls24{letter-spacing:1.093492pt;}
.ls26{letter-spacing:1.141844pt;}
.ls25{letter-spacing:1.153374pt;}
.ls27{letter-spacing:1.234828pt;}
.ls18{letter-spacing:10.161292pt;}
.ls1d{letter-spacing:11.225028pt;}
.ls16{letter-spacing:17.306182pt;}
.lsc{letter-spacing:17.428363pt;}
.lsb{letter-spacing:20.028196pt;}
.ls1a{letter-spacing:21.060876pt;}
.lsa{letter-spacing:21.066455pt;}
.ls8{letter-spacing:26.154540pt;}
.ls19{letter-spacing:26.500440pt;}
.lsd{letter-spacing:63.493801pt;}
.ls17{letter-spacing:212.589169pt;}
.wseb{word-spacing:-176.068074pt;}
.wsb6{word-spacing:-20.083986pt;}
.wsb9{word-spacing:-17.484153pt;}
.wsb7{word-spacing:-17.361972pt;}
.ws131{word-spacing:-11.280819pt;}
.ws1ba{word-spacing:-1.074523pt;}
.ws1b9{word-spacing:-1.026543pt;}
.ws12{word-spacing:-0.055790pt;}
.wsc5{word-spacing:-0.047820pt;}
.ws6{word-spacing:-0.044233pt;}
.wsce{word-spacing:-0.041285pt;}
.wsf6{word-spacing:-0.037194pt;}
.ws4f{word-spacing:-0.037189pt;}
.wsf{word-spacing:-0.035388pt;}
.ws3f{word-spacing:0.000000pt;}
.ws135{word-spacing:0.596957pt;}
.ws36{word-spacing:6.417340pt;}
.ws13f{word-spacing:6.512227pt;}
.ws38{word-spacing:6.812984pt;}
.ws3c{word-spacing:6.895556pt;}
.ws37{word-spacing:7.156981pt;}
.ws1a6{word-spacing:7.167207pt;}
.ws145{word-spacing:7.535051pt;}
.wsf9{word-spacing:7.538771pt;}
.ws141{word-spacing:7.668948pt;}
.wsfa{word-spacing:7.944181pt;}
.ws31{word-spacing:8.158046pt;}
.ws1ac{word-spacing:8.190031pt;}
.ws33{word-spacing:8.256877pt;}
.ws2f{word-spacing:8.288759pt;}
.ws1ad{word-spacing:8.290453pt;}
.ws3b{word-spacing:8.301511pt;}
.ws1b3{word-spacing:8.323928pt;}
.ws8{word-spacing:8.387942pt;}
.wse{word-spacing:8.444976pt;}
.ws35{word-spacing:8.460916pt;}
.ws107{word-spacing:8.520682pt;}
.ws105{word-spacing:8.552668pt;}
.ws106{word-spacing:8.564198pt;}
.ws3d{word-spacing:8.617134pt;}
.ws104{word-spacing:8.684334pt;}
.ws1c4{word-spacing:8.755373pt;}
.ws39{word-spacing:8.763786pt;}
.ws1b8{word-spacing:8.784756pt;}
.ws179{word-spacing:8.937622pt;}
.ws175{word-spacing:8.998992pt;}
.ws1a2{word-spacing:9.153345pt;}
.ws144{word-spacing:9.257487pt;}
.ws178{word-spacing:9.277944pt;}
.ws1bb{word-spacing:9.279803pt;}
.ws96{word-spacing:9.300260pt;}
.ws177{word-spacing:9.311418pt;}
.ws1a8{word-spacing:9.398823pt;}
.ws13d{word-spacing:9.431925pt;}
.ws10e{word-spacing:9.568612pt;}
.ws88{word-spacing:9.629423pt;}
.wsfc{word-spacing:9.777826pt;}
.ws15f{word-spacing:9.780057pt;}
.ws15a{word-spacing:9.807952pt;}
.wsd0{word-spacing:9.811300pt;}
.ws159{word-spacing:9.813531pt;}
.ws4c{word-spacing:9.819110pt;}
.wscf{word-spacing:9.871181pt;}
.ws1a1{word-spacing:9.874529pt;}
.ws197{word-spacing:9.878620pt;}
.ws1cd{word-spacing:9.882340pt;}
.ws10d{word-spacing:9.886059pt;}
.wsf2{word-spacing:9.887919pt;}
.wsf7{word-spacing:9.893126pt;}
.ws1d4{word-spacing:9.912094pt;}
.wsff{word-spacing:9.915442pt;}
.ws3a{word-spacing:9.917881pt;}
.ws149{word-spacing:9.922881pt;}
.ws1c5{word-spacing:9.923252pt;}
.ws191{word-spacing:9.930319pt;}
.ws1c9{word-spacing:9.934039pt;}
.ws193{word-spacing:9.938130pt;}
.wsd4{word-spacing:9.941477pt;}
.wsef{word-spacing:9.945569pt;}
.ws1c6{word-spacing:9.949288pt;}
.wsd1{word-spacing:9.960074pt;}
.ws1c0{word-spacing:9.960446pt;}
.wscc{word-spacing:9.963794pt;}
.ws1d9{word-spacing:9.967885pt;}
.ws1ce{word-spacing:9.974952pt;}
.wse0{word-spacing:9.978671pt;}
.ws19e{word-spacing:9.982390pt;}
.ws1d2{word-spacing:9.993548pt;}
.ws14e{word-spacing:10.004706pt;}
.wsd3{word-spacing:10.008426pt;}
.ws1db{word-spacing:10.023303pt;}
.ws1bd{word-spacing:10.023675pt;}
.ws1e0{word-spacing:10.027395pt;}
.ws1de{word-spacing:10.030742pt;}
.ws194{word-spacing:10.038181pt;}
.ws19b{word-spacing:10.045991pt;}
.ws1d8{word-spacing:10.049339pt;}
.wsf8{word-spacing:10.060497pt;}
.ws1a0{word-spacing:10.060869pt;}
.wsf3{word-spacing:10.062728pt;}
.ws1cf{word-spacing:10.064216pt;}
.ws1d7{word-spacing:10.067936pt;}
.ws102{word-spacing:10.073887pt;}
.ws1c7{word-spacing:10.075374pt;}
.wsd5{word-spacing:10.079094pt;}
.ws1dc{word-spacing:10.086532pt;}
.wsc8{word-spacing:10.090252pt;}
.ws1d5{word-spacing:10.097690pt;}
.ws103{word-spacing:10.108849pt;}
.wsfb{word-spacing:10.112568pt;}
.ws19f{word-spacing:10.120007pt;}
.ws192{word-spacing:10.120379pt;}
.ws1da{word-spacing:10.123726pt;}
.ws1a7{word-spacing:10.124098pt;}
.ws19d{word-spacing:10.134884pt;}
.ws101{word-spacing:10.141207pt;}
.ws19a{word-spacing:10.142323pt;}
.wsf5{word-spacing:10.144554pt;}
.ws1c8{word-spacing:10.146414pt;}
.wsd7{word-spacing:10.149762pt;}
.wscd{word-spacing:10.153481pt;}
.wsda{word-spacing:10.157200pt;}
.ws1a3{word-spacing:10.165011pt;}
.ws1cb{word-spacing:10.183236pt;}
.wsec{word-spacing:10.183608pt;}
.wsf4{word-spacing:10.189187pt;}
.wsdb{word-spacing:10.190674pt;}
.ws100{word-spacing:10.200345pt;}
.wsdd{word-spacing:10.209271pt;}
.ws190{word-spacing:10.209643pt;}
.wsd6{word-spacing:10.220429pt;}
.wsde{word-spacing:10.231587pt;}
.ws0{word-spacing:10.239026pt;}
.wsdf{word-spacing:10.242746pt;}
.ws198{word-spacing:10.254276pt;}
.ws1cc{word-spacing:10.265062pt;}
.ws1b6{word-spacing:10.265434pt;}
.ws30{word-spacing:10.274949pt;}
.ws199{word-spacing:10.276220pt;}
.ws1d6{word-spacing:10.279939pt;}
.ws1ca{word-spacing:10.283658pt;}
.wsd2{word-spacing:10.287378pt;}
.wsdc{word-spacing:10.291469pt;}
.ws195{word-spacing:10.298536pt;}
.ws18f{word-spacing:10.306347pt;}
.ws1dd{word-spacing:10.309694pt;}
.ws1d1{word-spacing:10.324571pt;}
.ws1b7{word-spacing:10.324943pt;}
.ws1e1{word-spacing:10.327082pt;}
.wse8{word-spacing:10.343168pt;}
.ws19c{word-spacing:10.350607pt;}
.ws1df{word-spacing:10.354326pt;}
.wsf1{word-spacing:10.365484pt;}
.wsd8{word-spacing:10.380362pt;}
.ws130{word-spacing:10.388172pt;}
.ws1c3{word-spacing:10.391520pt;}
.wsca{word-spacing:10.402678pt;}
.ws182{word-spacing:10.404910pt;}
.wse5{word-spacing:10.406397pt;}
.ws1d3{word-spacing:10.428714pt;}
.ws196{word-spacing:10.488223pt;}
.ws5{word-spacing:10.639445pt;}
.ws7{word-spacing:10.695633pt;}
.wsfd{word-spacing:10.718824pt;}
.ws188{word-spacing:10.754778pt;}
.ws18a{word-spacing:10.764342pt;}
.ws1b0{word-spacing:10.774986pt;}
.wsa{word-spacing:10.806813pt;}
.wsb{word-spacing:10.846663pt;}
.ws9{word-spacing:10.862602pt;}
.ws143{word-spacing:10.897353pt;}
.ws18b{word-spacing:10.907803pt;}
.ws1ab{word-spacing:10.953887pt;}
.ws1af{word-spacing:10.998148pt;}
.ws94{word-spacing:11.018604pt;}
.ws1a5{word-spacing:11.091132pt;}
.ws189{word-spacing:11.094302pt;}
.ws15c{word-spacing:11.236187pt;}
.ws3e{word-spacing:11.485590pt;}
.ws12f{word-spacing:11.509560pt;}
.ws32{word-spacing:11.645835pt;}
.ws52{word-spacing:11.738300pt;}
.ws54{word-spacing:11.794091pt;}
.ws53{word-spacing:11.877776pt;}
.ws9a{word-spacing:11.922408pt;}
.ws51{word-spacing:11.972620pt;}
.ws9b{word-spacing:11.978199pt;}
.ws128{word-spacing:11.989357pt;}
.ws1a4{word-spacing:12.006094pt;}
.ws14f{word-spacing:12.145570pt;}
.ws4e{word-spacing:12.184623pt;}
.ws99{word-spacing:12.195781pt;}
.ws123{word-spacing:12.229256pt;}
.ws13e{word-spacing:12.232603pt;}
.ws124{word-spacing:12.279467pt;}
.ws108{word-spacing:12.335257pt;}
.ws14d{word-spacing:12.377658pt;}
.ws187{word-spacing:12.452417pt;}
.ws20{word-spacing:12.485892pt;}
.ws148{word-spacing:12.489611pt;}
.ws16c{word-spacing:12.536103pt;}
.ws13a{word-spacing:12.580735pt;}
.ws23{word-spacing:12.630947pt;}
.ws122{word-spacing:12.658842pt;}
.ws21{word-spacing:12.670000pt;}
.ws1ae{word-spacing:12.735089pt;}
.ws176{word-spacing:12.736948pt;}
.ws13c{word-spacing:12.739319pt;}
.wsc4{word-spacing:12.772793pt;}
.ws65{word-spacing:12.781581pt;}
.ws1aa{word-spacing:12.787160pt;}
.ws16b{word-spacing:12.803897pt;}
.ws1a9{word-spacing:12.805385pt;}
.ws22{word-spacing:12.831792pt;}
.ws66{word-spacing:12.842950pt;}
.ws1be{word-spacing:12.857828pt;}
.ws18c{word-spacing:12.882780pt;}
.wsfe{word-spacing:12.924404pt;}
.ws67{word-spacing:12.954531pt;}
.wsc{word-spacing:12.968856pt;}
.ws13b{word-spacing:12.997548pt;}
.ws136{word-spacing:13.027058pt;}
.ws34{word-spacing:13.058166pt;}
.ws64{word-spacing:13.066112pt;}
.wsd{word-spacing:13.150573pt;}
.ws12b{word-spacing:13.188851pt;}
.ws5d{word-spacing:13.266957pt;}
.ws19{word-spacing:13.272536pt;}
.ws1a{word-spacing:13.389696pt;}
.ws1b{word-spacing:13.417591pt;}
.ws95{word-spacing:13.445486pt;}
.ws12c{word-spacing:13.624016pt;}
.ws1b4{word-spacing:13.731877pt;}
.ws9d{word-spacing:13.791387pt;}
.ws17e{word-spacing:13.802545pt;}
.ws171{word-spacing:13.813703pt;}
.ws1bc{word-spacing:13.836019pt;}
.ws1b5{word-spacing:13.932351pt;}
.ws9e{word-spacing:14.059181pt;}
.ws9c{word-spacing:14.126129pt;}
.ws12d{word-spacing:14.282342pt;}
.ws1e{word-spacing:14.338133pt;}
.ws1b2{word-spacing:14.341852pt;}
.ws181{word-spacing:14.533399pt;}
.wsba{word-spacing:14.572452pt;}
.ws9f{word-spacing:14.617085pt;}
.ws10{word-spacing:14.639401pt;}
.ws58{word-spacing:14.656138pt;}
.ws7a{word-spacing:14.667296pt;}
.ws16a{word-spacing:14.784456pt;}
.ws24{word-spacing:14.812351pt;}
.ws14{word-spacing:14.823509pt;}
.ws1d{word-spacing:14.840246pt;}
.ws125{word-spacing:14.856984pt;}
.ws2c{word-spacing:14.862563pt;}
.ws180{word-spacing:14.868142pt;}
.ws110{word-spacing:14.873721pt;}
.ws12a{word-spacing:14.884879pt;}
.ws25{word-spacing:14.901616pt;}
.ws18{word-spacing:14.907195pt;}
.ws111{word-spacing:14.923932pt;}
.ws80{word-spacing:14.946248pt;}
.ws26{word-spacing:14.951827pt;}
.ws50{word-spacing:14.957406pt;}
.ws97{word-spacing:14.968564pt;}
.ws83{word-spacing:14.974143pt;}
.ws2e{word-spacing:14.985301pt;}
.ws49{word-spacing:15.002039pt;}
.ws10f{word-spacing:15.041092pt;}
.ws57{word-spacing:15.068987pt;}
.ws119{word-spacing:15.074566pt;}
.ws92{word-spacing:15.085724pt;}
.wsc1{word-spacing:15.158252pt;}
.ws79{word-spacing:15.169410pt;}
.ws2d{word-spacing:15.202884pt;}
.ws116{word-spacing:15.230779pt;}
.ws11{word-spacing:15.236358pt;}
.ws42{word-spacing:15.253095pt;}
.ws118{word-spacing:15.258674pt;}
.ws14c{word-spacing:15.275040pt;}
.ws7f{word-spacing:15.308886pt;}
.ws13{word-spacing:15.314465pt;}
.ws82{word-spacing:15.342360pt;}
.wsa3{word-spacing:15.448362pt;}
.wsb2{word-spacing:15.571101pt;}
.ws45{word-spacing:15.677102pt;}
.ws47{word-spacing:15.805420pt;}
.ws76{word-spacing:15.810441pt;}
.ws1c{word-spacing:15.855632pt;}
.ws7b{word-spacing:15.866790pt;}
.ws75{word-spacing:15.905843pt;}
.ws48{word-spacing:15.944896pt;}
.wsbd{word-spacing:16.023003pt;}
.ws46{word-spacing:16.028582pt;}
.ws150{word-spacing:16.034161pt;}
.ws8a{word-spacing:16.089951pt;}
.ws8f{word-spacing:16.106688pt;}
.ws1bf{word-spacing:16.112268pt;}
.wsbf{word-spacing:16.140163pt;}
.wsbb{word-spacing:16.156900pt;}
.wsc0{word-spacing:16.207111pt;}
.wsbe{word-spacing:16.229427pt;}
.wsa8{word-spacing:16.246164pt;}
.ws158{word-spacing:16.307534pt;}
.wsbc{word-spacing:16.402378pt;}
.ws77{word-spacing:16.452589pt;}
.ws1f{word-spacing:16.513958pt;}
.ws6c{word-spacing:16.586486pt;}
.ws8e{word-spacing:16.642276pt;}
.ws140{word-spacing:16.658642pt;}
.ws69{word-spacing:16.670172pt;}
.ws87{word-spacing:16.720383pt;}
.ws60{word-spacing:16.770594pt;}
.ws55{word-spacing:16.871017pt;}
.ws17d{word-spacing:16.882175pt;}
.wsb8{word-spacing:17.066283pt;}
.ws142{word-spacing:17.067771pt;}
.ws5f{word-spacing:17.088600pt;}
.ws173{word-spacing:17.116495pt;}
.ws29{word-spacing:17.127653pt;}
.ws166{word-spacing:17.133232pt;}
.ws1b1{word-spacing:17.198321pt;}
.ws174{word-spacing:17.250392pt;}
.ws27{word-spacing:17.272708pt;}
.ws28{word-spacing:17.317340pt;}
.ws147{word-spacing:17.328126pt;}
.wsa2{word-spacing:17.541060pt;}
.ws152{word-spacing:17.624187pt;}
.ws186{word-spacing:17.730189pt;}
.ws17{word-spacing:17.741347pt;}
.ws153{word-spacing:17.836191pt;}
.ws93{word-spacing:17.880823pt;}
.ws12e{word-spacing:17.919876pt;}
.ws98{word-spacing:18.025878pt;}
.ws74{word-spacing:18.087248pt;}
.ws72{word-spacing:18.126859pt;}
.ws6b{word-spacing:18.327146pt;}
.ws11e{word-spacing:18.399674pt;}
.ws115{word-spacing:18.461043pt;}
.ws113{word-spacing:18.500097pt;}
.ws112{word-spacing:18.511255pt;}
.ws114{word-spacing:18.522413pt;}
.ws8c{word-spacing:18.527992pt;}
.ws7d{word-spacing:18.589361pt;}
.ws6a{word-spacing:18.600519pt;}
.ws16d{word-spacing:18.695363pt;}
.ws73{word-spacing:18.706521pt;}
.ws8d{word-spacing:18.773470pt;}
.ws121{word-spacing:18.885050pt;}
.ws89{word-spacing:19.058001pt;}
.ws17c{word-spacing:19.063580pt;}
.ws154{word-spacing:19.180740pt;}
.ws71{word-spacing:19.353690pt;}
.ws70{word-spacing:19.415059pt;}
.wsa0{word-spacing:19.554535pt;}
.wsb5{word-spacing:19.643800pt;}
.ws81{word-spacing:19.738644pt;}
.ws18d{word-spacing:19.792808pt;}
.wsc3{word-spacing:19.888449pt;}
.ws56{word-spacing:20.006437pt;}
.wsb3{word-spacing:20.101281pt;}
.ws161{word-spacing:20.296548pt;}
.wsa1{word-spacing:20.374654pt;}
.ws17b{word-spacing:20.408128pt;}
.ws5b{word-spacing:20.569920pt;}
.ws5a{word-spacing:20.642448pt;}
.ws59{word-spacing:20.692659pt;}
.ws68{word-spacing:20.703817pt;}
.ws40{word-spacing:20.754029pt;}
.ws117{word-spacing:20.798661pt;}
.ws120{word-spacing:20.804240pt;}
.ws41{word-spacing:20.843293pt;}
.ws86{word-spacing:20.871189pt;}
.ws85{word-spacing:20.949295pt;}
.wsa7{word-spacing:20.999507pt;}
.ws5e{word-spacing:21.005086pt;}
.ws7c{word-spacing:21.055297pt;}
.ws84{word-spacing:21.060876pt;}
.ws138{word-spacing:21.083192pt;}
.ws17a{word-spacing:21.183615pt;}
.wsa6{word-spacing:21.239405pt;}
.wsa4{word-spacing:21.278459pt;}
.wsa5{word-spacing:21.362144pt;}
.ws15e{word-spacing:21.445830pt;}
.ws15d{word-spacing:21.551832pt;}
.ws164{word-spacing:21.797309pt;}
.ws185{word-spacing:21.836363pt;}
.ws2a{word-spacing:21.897732pt;}
.ws165{word-spacing:21.903311pt;}
.ws17f{word-spacing:21.975839pt;}
.ws15b{word-spacing:22.081840pt;}
.ws151{word-spacing:22.154368pt;}
.wsb4{word-spacing:22.165526pt;}
.ws15{word-spacing:22.321739pt;}
.ws170{word-spacing:22.344055pt;}
.wsa9{word-spacing:22.355213pt;}
.ws169{word-spacing:22.382551pt;}
.wsab{word-spacing:22.388688pt;}
.ws6e{word-spacing:22.399846pt;}
.ws6d{word-spacing:22.433320pt;}
.ws16{word-spacing:22.455636pt;}
.wsaa{word-spacing:22.645323pt;}
.ws62{word-spacing:22.673219pt;}
.ws14a{word-spacing:22.896008pt;}
.ws129{word-spacing:23.175332pt;}
.ws63{word-spacing:23.404073pt;}
.ws146{word-spacing:23.454284pt;}
.ws11a{word-spacing:23.833659pt;}
.ws11d{word-spacing:23.844817pt;}
.ws183{word-spacing:24.084716pt;}
.ws137{word-spacing:24.162822pt;}
.ws4d{word-spacing:24.257666pt;}
.ws44{word-spacing:24.692831pt;}
.ws43{word-spacing:24.837886pt;}
.ws7e{word-spacing:25.155891pt;}
.ws14b{word-spacing:25.395418pt;}
.ws11f{word-spacing:25.540845pt;}
.ws90{word-spacing:25.769586pt;}
.ws3{word-spacing:25.804104pt;}
.ws2{word-spacing:25.823232pt;}
.ws2b{word-spacing:25.976010pt;}
.ws91{word-spacing:25.998326pt;}
.ws8b{word-spacing:26.148960pt;}
.ws4{word-spacing:26.224927pt;}
.ws10a{word-spacing:26.388859pt;}
.ws11b{word-spacing:26.439071pt;}
.ws10c{word-spacing:26.444650pt;}
.ws11c{word-spacing:26.450229pt;}
.ws10b{word-spacing:26.589705pt;}
.wsae{word-spacing:26.623179pt;}
.ws155{word-spacing:26.639916pt;}
.ws109{word-spacing:26.701285pt;}
.ws157{word-spacing:26.745918pt;}
.wsad{word-spacing:26.840761pt;}
.wsac{word-spacing:26.890973pt;}
.ws156{word-spacing:26.969079pt;}
.ws172{word-spacing:27.164346pt;}
.ws61{word-spacing:27.287085pt;}
.ws16f{word-spacing:27.521404pt;}
.ws126{word-spacing:27.644143pt;}
.ws127{word-spacing:27.649722pt;}
.wsb0{word-spacing:28.503315pt;}
.wsb1{word-spacing:28.575843pt;}
.ws5c{word-spacing:28.765530pt;}
.wsaf{word-spacing:28.787846pt;}
.ws163{word-spacing:28.921743pt;}
.ws167{word-spacing:28.999850pt;}
.ws162{word-spacing:29.016587pt;}
.ws4b{word-spacing:29.033324pt;}
.ws160{word-spacing:29.156063pt;}
.ws4a{word-spacing:29.412699pt;}
.ws16e{word-spacing:29.451752pt;}
.ws133{word-spacing:30.701457pt;}
.ws134{word-spacing:30.734931pt;}
.ws132{word-spacing:31.158938pt;}
.wsc2{word-spacing:32.416397pt;}
.ws139{word-spacing:32.788018pt;}
.ws1c1{word-spacing:32.795633pt;}
.ws78{word-spacing:33.859194pt;}
.ws184{word-spacing:35.114478pt;}
.ws1{word-spacing:35.711603pt;}
.ws6f{word-spacing:36.051756pt;}
.ws168{word-spacing:59.400039pt;}
.ws1d0{word-spacing:63.786652pt;}
.ws18e{word-spacing:101.820827pt;}
.ws1c2{word-spacing:102.122096pt;}
.wsc7{word-spacing:121.343748pt;}
.wsee{word-spacing:125.170970pt;}
.wse6{word-spacing:148.599218pt;}
.wsed{word-spacing:165.441596pt;}
.wsd9{word-spacing:196.073129pt;}
.wse2{word-spacing:204.590092pt;}
.wse4{word-spacing:204.590464pt;}
.wsc6{word-spacing:210.392665pt;}
.wsc9{word-spacing:212.735862pt;}
.wse1{word-spacing:212.772684pt;}
.wse3{word-spacing:212.773056pt;}
.wsf0{word-spacing:222.837644pt;}
.wscb{word-spacing:243.015172pt;}
.wsea{word-spacing:264.476251pt;}
.wse9{word-spacing:273.840855pt;}
.wse7{word-spacing:518.544617pt;}
.ws1e3{word-spacing:1692.479360pt;}
.ws1e2{word-spacing:1839.251040pt;}
._56{margin-left:-2321.174400pt;}
._4f{margin-left:-1509.546133pt;}
._53{margin-left:-1322.932267pt;}
._4e{margin-left:-1319.997867pt;}
._54{margin-left:-1176.373867pt;}
._55{margin-left:-1122.986133pt;}
._51{margin-left:-1097.760000pt;}
._4d{margin-left:-1080.052267pt;}
._4b{margin-left:-574.208640pt;}
._45{margin-left:-22.187567pt;}
._17{margin-left:-20.313285pt;}
._18{margin-left:-17.289445pt;}
._44{margin-left:-12.647338pt;}
._43{margin-left:-2.070500pt;}
._1{margin-left:-0.994675pt;}
._4{width:1.162811pt;}
._e{width:5.949007pt;}
._40{width:7.037029pt;}
._d{width:8.100536pt;}
._5{width:9.384581pt;}
._f{width:10.631184pt;}
._3{width:11.640068pt;}
._c{width:12.773453pt;}
._7{width:14.399502pt;}
._6{width:15.755209pt;}
._9{width:16.843122pt;}
._a{width:17.752505pt;}
._16{width:19.772118pt;}
._13{width:21.144562pt;}
._15{width:22.120894pt;}
._8{width:23.309229pt;}
._42{width:24.809991pt;}
._11{width:25.747270pt;}
._b{width:27.047186pt;}
._14{width:28.280154pt;}
._12{width:30.093342pt;}
._2{width:34.578778pt;}
._46{width:36.308392pt;}
._4a{width:52.193779pt;}
._30{width:63.537827pt;}
._2c{width:69.916157pt;}
._49{width:70.812895pt;}
._0{width:77.279805pt;}
._37{width:98.700656pt;}
._2f{width:102.840304pt;}
._31{width:104.659071pt;}
._21{width:130.757820pt;}
._2e{width:133.830012pt;}
._2d{width:145.174060pt;}
._32{width:161.197062pt;}
._24{width:162.506277pt;}
._3f{width:165.282035pt;}
._3c{width:190.969423pt;}
._22{width:193.648478pt;}
._3d{width:197.478303pt;}
._23{width:204.062686pt;}
._3e{width:206.852206pt;}
._47{width:208.019714pt;}
._33{width:212.814340pt;}
._1b{width:219.806737pt;}
._27{width:222.149934pt;}
._35{width:234.565158pt;}
._3a{width:243.937573pt;}
._3b{width:245.417878pt;}
._20{width:246.392723pt;}
._1d{width:249.740147pt;}
._1e{width:251.555194pt;}
._29{width:254.426540pt;}
._48{width:256.009872pt;}
._25{width:262.419445pt;}
._34{width:277.750647pt;}
._1c{width:282.697396pt;}
._28{width:285.040592pt;}
._39{width:286.267609pt;}
._1a{width:292.073902pt;}
._36{width:293.137639pt;}
._26{width:294.417099pt;}
._38{width:301.654602pt;}
._2b{width:305.947115pt;}
._1f{width:308.096905pt;}
._2a{width:310.440102pt;}
._10{width:367.640884pt;}
._50{width:417.866667pt;}
._52{width:1032.585600pt;}
._41{width:1152.223121pt;}
._19{width:1153.304167pt;}
._4c{width:1316.212267pt;}
.fsb{font-size:21.747200pt;}
.fsa{font-size:24.792000pt;}
.fs5{font-size:31.881067pt;}
.fs9{font-size:37.188800pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:39.849600pt;}
.fs8{font-size:42.507733pt;}
.fs4{font-size:47.820267pt;}
.fsd{font-size:53.333333pt;}
.fs7{font-size:55.790400pt;}
.fsc{font-size:64.000000pt;}
.fs6{font-size:85.014933pt;}
.fs2{font-size:95.641600pt;}
.fs1{font-size:138.149333pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:27.817333pt;}
.y1af{bottom:47.015469pt;}
.y31{bottom:57.522105pt;}
.y16c{bottom:59.871263pt;}
.y63{bottom:64.480179pt;}
.y94{bottom:64.481589pt;}
.y30{bottom:68.180742pt;}
.y1ae{bottom:70.221486pt;}
.y12c{bottom:74.156057pt;}
.y16b{bottom:76.500986pt;}
.y62{bottom:81.109903pt;}
.y93{bottom:81.111313pt;}
.y1ad{bottom:81.559955pt;}
.y2f{bottom:84.055122pt;}
.y12b{bottom:84.738566pt;}
.y1ac{bottom:92.823106pt;}
.y16a{bottom:93.055392pt;}
.y12a{bottom:95.397322pt;}
.y61{bottom:97.664309pt;}
.y92{bottom:97.665719pt;}
.y2e{bottom:100.004423pt;}
.y1ab{bottom:104.086258pt;}
.y129{bottom:106.056077pt;}
.y169{bottom:109.685116pt;}
.y2d{bottom:110.663061pt;}
.y60{bottom:114.294033pt;}
.y91{bottom:114.295443pt;}
.y1aa{bottom:115.424727pt;}
.yef{bottom:115.804824pt;}
.y128{bottom:116.638586pt;}
.y211{bottom:119.810390pt;}
.y168{bottom:126.314839pt;}
.yee{bottom:126.387333pt;}
.y2c{bottom:126.612361pt;}
.y1a9{bottom:126.687879pt;}
.y127{bottom:127.297342pt;}
.yed{bottom:130.091333pt;}
.y90{bottom:130.925166pt;}
.y210{bottom:131.073542pt;}
.yec{bottom:137.045600pt;}
.y2b{bottom:137.195281pt;}
.y126{bottom:137.879851pt;}
.y1a8{bottom:137.951031pt;}
.yeb{bottom:140.674000pt;}
.y20f{bottom:142.336694pt;}
.y167{bottom:142.869246pt;}
.y5f{bottom:144.832303pt;}
.y8f{bottom:147.479573pt;}
.yea{bottom:147.704000pt;}
.y2a{bottom:147.853919pt;}
.y125{bottom:148.538607pt;}
.y1a7{bottom:149.289500pt;}
.ye9{bottom:151.332133pt;}
.y20e{bottom:153.675163pt;}
.ye8{bottom:158.285846pt;}
.y29{bottom:158.511760pt;}
.y124{bottom:159.121116pt;}
.y1a6{bottom:160.552652pt;}
.y5e{bottom:161.462027pt;}
.y8e{bottom:164.109296pt;}
.y20d{bottom:164.938294pt;}
.ye7{bottom:168.944602pt;}
.y28{bottom:169.094680pt;}
.y123{bottom:169.778942pt;}
.y1a5{bottom:171.891121pt;}
.y166{bottom:176.128693pt;}
.y20c{bottom:176.201446pt;}
.y5d{bottom:178.091750pt;}
.ye6{bottom:179.527111pt;}
.y27{bottom:179.753317pt;}
.y122{bottom:180.436769pt;}
.y8d{bottom:180.739020pt;}
.y1a4{bottom:183.154273pt;}
.y20b{bottom:187.538613pt;}
.ye5{bottom:190.185867pt;}
.y26{bottom:190.336237pt;}
.y121{bottom:191.019278pt;}
.y165{bottom:192.683099pt;}
.ye4{bottom:193.814133pt;}
.y8c{bottom:197.293426pt;}
.y20a{bottom:198.801765pt;}
.ye3{bottom:200.844598pt;}
.y25{bottom:200.994875pt;}
.y120{bottom:201.677104pt;}
.y1a3{bottom:206.058092pt;}
.y164{bottom:209.312823pt;}
.y209{bottom:210.140234pt;}
.y5c{bottom:211.275880pt;}
.ye2{bottom:211.427107pt;}
.y24{bottom:211.577795pt;}
.y11f{bottom:212.259613pt;}
.y8b{bottom:213.923150pt;}
.y1a2{bottom:217.321244pt;}
.ye1{bottom:222.084933pt;}
.y23{bottom:222.236433pt;}
.y11e{bottom:222.917439pt;}
.ye0{bottom:225.713333pt;}
.y5b{bottom:227.905603pt;}
.y1a1{bottom:228.659713pt;}
.y8a{bottom:230.552873pt;}
.ydf{bottom:232.667733pt;}
.y208{bottom:233.044053pt;}
.y11d{bottom:233.575265pt;}
.yde{bottom:236.371600pt;}
.y22{bottom:238.185733pt;}
.y1a0{bottom:239.922865pt;}
.y229{bottom:241.333213pt;}
.ydd{bottom:243.325867pt;}
.y163{bottom:243.328230pt;}
.y11c{bottom:244.157774pt;}
.y207{bottom:244.307205pt;}
.y5a{bottom:244.460010pt;}
.ydc{bottom:246.954267pt;}
.y89{bottom:247.107280pt;}
.y19f{bottom:251.261334pt;}
.ydb{bottom:253.908667pt;}
.y22a{bottom:254.666547pt;}
.y11b{bottom:254.815600pt;}
.y206{bottom:255.570357pt;}
.y162{bottom:259.882636pt;}
.y59{bottom:261.089733pt;}
.y19e{bottom:262.524485pt;}
.y88{bottom:263.737003pt;}
.y205{bottom:266.908826pt;}
.y22b{bottom:268.000013pt;}
.y19d{bottom:273.787637pt;}
.y161{bottom:276.512360pt;}
.y204{bottom:278.171978pt;}
.y87{bottom:280.366727pt;}
.yd8{bottom:280.818540pt;}
.y22c{bottom:281.333347pt;}
.yd9{bottom:284.976267pt;}
.y19c{bottom:285.126106pt;}
.y203{bottom:289.510447pt;}
.yd7{bottom:292.157009pt;}
.yd0{bottom:292.157223pt;}
.y160{bottom:293.142083pt;}
.y57{bottom:294.275676pt;}
.y19b{bottom:296.389258pt;}
.y86{bottom:296.921133pt;}
.y58{bottom:300.472400pt;}
.y202{bottom:300.773599pt;}
.yd6{bottom:303.420161pt;}
.ycf{bottom:303.420375pt;}
.y19a{bottom:307.652410pt;}
.y15f{bottom:309.696489pt;}
.y56{bottom:310.905400pt;}
.y201{bottom:312.036751pt;}
.y85{bottom:313.550856pt;}
.yd4{bottom:314.683312pt;}
.yce{bottom:314.683527pt;}
.yda{bottom:318.840933pt;}
.y199{bottom:318.990879pt;}
.yd3{bottom:326.021781pt;}
.ycd{bottom:326.021995pt;}
.y15e{bottom:326.326213pt;}
.y55{bottom:327.535123pt;}
.yd5{bottom:330.103867pt;}
.y84{bottom:330.180580pt;}
.y200{bottom:334.940569pt;}
.yd2{bottom:337.284933pt;}
.ycc{bottom:337.285147pt;}
.yd1{bottom:341.442400pt;}
.y198{bottom:341.894698pt;}
.y15d{bottom:342.955936pt;}
.y54{bottom:344.089530pt;}
.y1ff{bottom:346.279038pt;}
.y83{bottom:346.734986pt;}
.y197{bottom:353.157850pt;}
.y1fe{bottom:357.542190pt;}
.y15c{bottom:359.510343pt;}
.ycb{bottom:360.188966pt;}
.y53{bottom:360.719253pt;}
.y82{bottom:363.364710pt;}
.y196{bottom:364.496319pt;}
.y21{bottom:366.313963pt;}
.y1fd{bottom:368.880659pt;}
.y227{bottom:369.333293pt;}
.yca{bottom:371.527435pt;}
.y195{bottom:375.759471pt;}
.y15b{bottom:376.140066pt;}
.y52{bottom:377.348977pt;}
.y81{bottom:379.994433pt;}
.y1fc{bottom:380.143811pt;}
.y228{bottom:382.666627pt;}
.yc9{bottom:382.790587pt;}
.y20{bottom:382.943686pt;}
.y194{bottom:387.022623pt;}
.y1fb{bottom:391.406963pt;}
.y15a{bottom:392.769790pt;}
.y51{bottom:393.903383pt;}
.y80{bottom:396.548840pt;}
.y193{bottom:398.361092pt;}
.y1f{bottom:399.573410pt;}
.y1fa{bottom:402.745432pt;}
.yc8{bottom:405.694406pt;}
.y224{bottom:406.666587pt;}
.y159{bottom:409.324196pt;}
.y192{bottom:409.624244pt;}
.y50{bottom:410.533106pt;}
.y1e{bottom:416.127816pt;}
.yc7{bottom:417.032875pt;}
.y225{bottom:419.999920pt;}
.y222{bottom:419.999960pt;}
.y1f9{bottom:425.649251pt;}
.y158{bottom:425.953920pt;}
.y4f{bottom:427.162830pt;}
.yc6{bottom:428.296027pt;}
.y7f{bottom:429.808287pt;}
.y191{bottom:432.528063pt;}
.y1d{bottom:432.757540pt;}
.y223{bottom:433.333293pt;}
.y226{bottom:433.333387pt;}
.y1f8{bottom:436.912403pt;}
.y157{bottom:442.583643pt;}
.y4e{bottom:443.717236pt;}
.y190{bottom:443.866531pt;}
.y7e{bottom:446.362693pt;}
.y1f7{bottom:448.250872pt;}
.yc3{bottom:451.199835pt;}
.y18f{bottom:455.129683pt;}
.y21c{bottom:457.333053pt;}
.y156{bottom:459.138050pt;}
.y1f6{bottom:459.514024pt;}
.y4d{bottom:460.346960pt;}
.yc2{bottom:462.462987pt;}
.y7d{bottom:462.992417pt;}
.y1c{bottom:465.941670pt;}
.y18e{bottom:466.392835pt;}
.y21d{bottom:470.666387pt;}
.y1f5{bottom:470.777176pt;}
.yc1{bottom:473.801456pt;}
.yc5{bottom:473.801467pt;}
.y155{bottom:475.767773pt;}
.y4c{bottom:476.901366pt;}
.y18d{bottom:477.731304pt;}
.yc4{bottom:477.883333pt;}
.y7c{bottom:479.622140pt;}
.y1f4{bottom:482.115645pt;}
.y1b{bottom:482.571393pt;}
.y18c{bottom:488.994456pt;}
.y154{bottom:492.397497pt;}
.y1f3{bottom:493.378797pt;}
.y4b{bottom:493.531090pt;}
.y7b{bottom:496.176547pt;}
.yc0{bottom:496.705275pt;}
.y21e{bottom:497.333187pt;}
.y1a{bottom:499.125800pt;}
.y18b{bottom:500.257608pt;}
.ybf{bottom:507.968427pt;}
.y153{bottom:508.951903pt;}
.y4a{bottom:510.160813pt;}
.y18a{bottom:511.596077pt;}
.y19{bottom:515.755523pt;}
.y1f2{bottom:516.282615pt;}
.y21f{bottom:523.999987pt;}
.y152{bottom:525.581627pt;}
.y49{bottom:526.715220pt;}
.y1f1{bottom:527.621084pt;}
.y7a{bottom:529.435994pt;}
.ybc{bottom:530.872491pt;}
.y18{bottom:532.385247pt;}
.y189{bottom:534.499896pt;}
.y220{bottom:537.333320pt;}
.y1f0{bottom:538.884236pt;}
.ybb{bottom:542.210960pt;}
.y151{bottom:542.211350pt;}
.y48{bottom:543.344943pt;}
.y188{bottom:545.763048pt;}
.y79{bottom:545.990400pt;}
.y77{bottom:545.991100pt;}
.y17{bottom:548.939653pt;}
.y1ef{bottom:550.147388pt;}
.y221{bottom:550.666653pt;}
.y21b{bottom:550.666667pt;}
.y78{bottom:552.188800pt;}
.ybe{bottom:553.473867pt;}
.yba{bottom:553.474112pt;}
.y187{bottom:557.101517pt;}
.ybd{bottom:557.631333pt;}
.y47{bottom:559.974667pt;}
.y1ee{bottom:561.485857pt;}
.y76{bottom:562.620823pt;}
.y16{bottom:565.569377pt;}
.y186{bottom:568.364669pt;}
.y150{bottom:575.395480pt;}
.y11a{bottom:575.773067pt;}
.yb7{bottom:576.377958pt;}
.y75{bottom:579.250547pt;}
.y185{bottom:579.627821pt;}
.y15{bottom:582.199100pt;}
.y1ed{bottom:584.389676pt;}
.y46{bottom:585.826667pt;}
.yb9{bottom:587.716400pt;}
.yb6{bottom:587.716427pt;}
.y21a{bottom:587.999960pt;}
.y219{bottom:588.000000pt;}
.y184{bottom:590.966290pt;}
.yb8{bottom:591.798267pt;}
.y14f{bottom:592.025203pt;}
.y1ec{bottom:595.652828pt;}
.y74{bottom:595.804953pt;}
.y183{bottom:602.229442pt;}
.y1eb{bottom:606.915980pt;}
.y14e{bottom:608.579610pt;}
.yb3{bottom:610.620183pt;}
.y73{bottom:612.434677pt;}
.y182{bottom:613.567911pt;}
.y14{bottom:615.383230pt;}
.y1ea{bottom:618.254449pt;}
.y217{bottom:618.666627pt;}
.yb2{bottom:621.883335pt;}
.y1d0{bottom:624.829270pt;}
.y181{bottom:624.831062pt;}
.y14d{bottom:625.209333pt;}
.y14b{bottom:625.209337pt;}
.y72{bottom:629.064400pt;}
.y70{bottom:629.064817pt;}
.y1e9{bottom:629.517601pt;}
.y14c{bottom:631.407733pt;}
.y218{bottom:631.999960pt;}
.y13{bottom:632.012953pt;}
.yb1{bottom:633.221804pt;}
.yb5{bottom:633.221867pt;}
.y71{bottom:635.262800pt;}
.y45{bottom:635.641360pt;}
.y1cf{bottom:636.092422pt;}
.y104{bottom:636.852476pt;}
.yb4{bottom:637.303733pt;}
.y119{bottom:637.455487pt;}
.y14a{bottom:641.839060pt;}
.y6f{bottom:645.619223pt;}
.y1ce{bottom:647.355574pt;}
.y180{bottom:647.734881pt;}
.y12{bottom:648.567360pt;}
.y44{bottom:652.271083pt;}
.y1e8{bottom:652.421420pt;}
.y103{bottom:653.406882pt;}
.y118{bottom:654.009893pt;}
.yb0{bottom:656.125623pt;}
.y149{bottom:658.393467pt;}
.y147{bottom:658.393886pt;}
.y1cd{bottom:658.694043pt;}
.y17f{bottom:658.998033pt;}
.y6e{bottom:662.248947pt;}
.y1e7{bottom:663.759889pt;}
.y148{bottom:664.592000pt;}
.y11{bottom:665.197083pt;}
.yaf{bottom:667.388775pt;}
.y216{bottom:668.000000pt;}
.y43{bottom:668.900807pt;}
.y1cc{bottom:669.957194pt;}
.y102{bottom:670.036606pt;}
.y17e{bottom:670.336502pt;}
.y117{bottom:670.639617pt;}
.y1e6{bottom:675.023041pt;}
.y146{bottom:675.023610pt;}
.yae{bottom:678.651927pt;}
.y6d{bottom:678.878670pt;}
.y1cb{bottom:681.295663pt;}
.y17d{bottom:681.599654pt;}
.y42{bottom:685.455213pt;}
.y1e5{bottom:686.286192pt;}
.y101{bottom:686.666329pt;}
.y116{bottom:687.269340pt;}
.yad{bottom:689.990395pt;}
.y143{bottom:691.653327pt;}
.y145{bottom:691.653333pt;}
.y1ca{bottom:692.558815pt;}
.y17c{bottom:692.938123pt;}
.y6c{bottom:695.433077pt;}
.y1e4{bottom:697.624661pt;}
.y144{bottom:697.851867pt;}
.y10{bottom:698.381213pt;}
.yac{bottom:701.253547pt;}
.y100{bottom:703.220736pt;}
.y1c9{bottom:703.821967pt;}
.y115{bottom:703.823747pt;}
.y212{bottom:703.999880pt;}
.y17b{bottom:704.201275pt;}
.y142{bottom:708.207733pt;}
.y140{bottom:708.208156pt;}
.y1e3{bottom:708.887813pt;}
.y6b{bottom:712.062800pt;}
.y141{bottom:714.406133pt;}
.yf{bottom:715.010937pt;}
.y1c8{bottom:715.160436pt;}
.y17a{bottom:715.464427pt;}
.y41{bottom:718.714660pt;}
.yff{bottom:719.850459pt;}
.y213{bottom:719.999880pt;}
.yab{bottom:724.157366pt;}
.y13f{bottom:724.837880pt;}
.y1c7{bottom:726.423588pt;}
.y179{bottom:726.802896pt;}
.ye{bottom:731.640660pt;}
.y1e2{bottom:731.791632pt;}
.y40{bottom:735.269067pt;}
.y3e{bottom:735.269347pt;}
.yaa{bottom:735.495835pt;}
.y214{bottom:736.000040pt;}
.yfe{bottom:736.480183pt;}
.y114{bottom:737.083194pt;}
.y1c6{bottom:737.686740pt;}
.y6a{bottom:737.990400pt;}
.y178{bottom:738.066048pt;}
.y3f{bottom:741.467467pt;}
.y13e{bottom:741.467603pt;}
.y1e1{bottom:743.130101pt;}
.yd{bottom:748.195067pt;}
.y1c5{bottom:749.025209pt;}
.y3d{bottom:751.899070pt;}
.y215{bottom:752.000040pt;}
.yfd{bottom:753.034589pt;}
.y113{bottom:753.637600pt;}
.y111{bottom:753.641310pt;}
.y1e0{bottom:754.393253pt;}
.y13d{bottom:758.022010pt;}
.ya9{bottom:758.399654pt;}
.y112{bottom:759.836000pt;}
.y1c4{bottom:760.288361pt;}
.y177{bottom:760.969867pt;}
.y1df{bottom:765.656405pt;}
.y3c{bottom:768.528794pt;}
.ya8{bottom:769.662806pt;}
.yfc{bottom:769.664313pt;}
.y110{bottom:770.271033pt;}
.y1c3{bottom:771.551513pt;}
.y13c{bottom:774.651733pt;}
.y13a{bottom:774.652563pt;}
.yc{bottom:774.802933pt;}
.y1de{bottom:776.994874pt;}
.y13b{bottom:780.850133pt;}
.ya7{bottom:781.001275pt;}
.y1c2{bottom:782.889982pt;}
.y176{bottom:784.251733pt;}
.y3b{bottom:785.083200pt;}
.yfb{bottom:786.294036pt;}
.y10f{bottom:786.900757pt;}
.y69{bottom:787.806900pt;}
.y1dd{bottom:788.258026pt;}
.y139{bottom:791.282287pt;}
.ya6{bottom:792.264427pt;}
.y1c1{bottom:794.153134pt;}
.y1dc{bottom:799.596495pt;}
.yfa{bottom:802.848443pt;}
.y10e{bottom:803.455163pt;}
.ya5{bottom:803.527579pt;}
.y68{bottom:804.361306pt;}
.y1c0{bottom:805.491603pt;}
.y138{bottom:807.836693pt;}
.y8{bottom:813.278533pt;}
.ya4{bottom:814.866048pt;}
.y1bf{bottom:816.754755pt;}
.y39{bottom:818.343060pt;}
.yf9{bottom:819.478166pt;}
.y10d{bottom:820.084887pt;}
.y67{bottom:820.991030pt;}
.y1db{bottom:822.500314pt;}
.y175{bottom:823.181382pt;}
.y3a{bottom:824.541467pt;}
.y1be{bottom:828.017907pt;}
.y1da{bottom:833.763466pt;}
.y38{bottom:834.897467pt;}
.y36{bottom:834.897747pt;}
.yf8{bottom:836.107890pt;}
.y10c{bottom:836.714610pt;}
.y7{bottom:836.862670pt;}
.ya1{bottom:837.769829pt;}
.ya3{bottom:837.769867pt;}
.y174{bottom:837.845467pt;}
.y1bd{bottom:839.356375pt;}
.y37{bottom:841.095867pt;}
.y137{bottom:841.096140pt;}
.ya2{bottom:841.851733pt;}
.y1d9{bottom:845.026618pt;}
.y1bc{bottom:850.619527pt;}
.y6{bottom:851.527323pt;}
.y35{bottom:851.527470pt;}
.y66{bottom:851.529300pt;}
.yf7{bottom:852.662296pt;}
.y173{bottom:854.707328pt;}
.y1d8{bottom:856.365087pt;}
.y136{bottom:857.650547pt;}
.yb{bottom:859.464044pt;}
.y9e{bottom:860.673941pt;}
.y1bb{bottom:861.882679pt;}
.y5{bottom:866.116261pt;}
.y1d7{bottom:867.628238pt;}
.y34{bottom:868.157194pt;}
.y65{bottom:868.159023pt;}
.yf6{bottom:869.292020pt;}
.y10b{bottom:869.898740pt;}
.ya{bottom:871.407489pt;}
.ya0{bottom:871.936800pt;}
.y9d{bottom:871.937093pt;}
.y1ba{bottom:873.221148pt;}
.y135{bottom:874.280270pt;}
.y9f{bottom:876.094267pt;}
.y1d6{bottom:878.966707pt;}
.y4{bottom:880.705200pt;}
.y9{bottom:883.350933pt;}
.y1b9{bottom:884.484300pt;}
.y33{bottom:884.711600pt;}
.y64{bottom:884.713430pt;}
.y10a{bottom:886.528464pt;}
.y172{bottom:887.891458pt;}
.y1d5{bottom:890.229859pt;}
.y134{bottom:890.909994pt;}
.y9c{bottom:894.840912pt;}
.y1b8{bottom:895.822769pt;}
.y1d4{bottom:901.493011pt;}
.yf5{bottom:904.516683pt;}
.y171{bottom:904.521181pt;}
.y9b{bottom:906.179381pt;}
.y1b7{bottom:907.085921pt;}
.y133{bottom:907.464400pt;}
.y131{bottom:907.464680pt;}
.y1d3{bottom:912.831480pt;}
.y132{bottom:913.662800pt;}
.y3{bottom:917.895867pt;}
.y1b6{bottom:918.349073pt;}
.y109{bottom:919.712594pt;}
.yf4{bottom:921.071090pt;}
.y130{bottom:924.094403pt;}
.y1d2{bottom:924.094632pt;}
.y99{bottom:929.083200pt;}
.y1b5{bottom:929.687542pt;}
.y108{bottom:936.342317pt;}
.yf3{bottom:937.700813pt;}
.y170{bottom:937.705311pt;}
.y97{bottom:939.817343pt;}
.y12f{bottom:940.724127pt;}
.y1b4{bottom:940.950694pt;}
.y9a{bottom:949.039426pt;}
.y1d1{bottom:949.039450pt;}
.y1b3{bottom:952.213846pt;}
.y2{bottom:952.440800pt;}
.y107{bottom:952.896723pt;}
.yf2{bottom:954.330537pt;}
.y16f{bottom:954.335035pt;}
.y96{bottom:956.447067pt;}
.y12e{bottom:957.278533pt;}
.y1b2{bottom:963.552315pt;}
.y106{bottom:969.526447pt;}
.yf1{bottom:970.884943pt;}
.y16e{bottom:970.889441pt;}
.y98{bottom:972.245467pt;}
.y1b1{bottom:974.815467pt;}
.y95{bottom:982.979333pt;}
.y12d{bottom:983.206000pt;}
.y1b0{bottom:986.154133pt;}
.y105{bottom:986.156170pt;}
.yf0{bottom:987.514667pt;}
.y16d{bottom:987.519165pt;}
.y1{bottom:997.643867pt;}
.h13{height:16.636608pt;}
.h11{height:18.965880pt;}
.h9{height:24.389016pt;}
.hd{height:27.714211pt;}
.hf{height:28.189110pt;}
.h15{height:28.192749pt;}
.h12{height:28.229942pt;}
.h2{height:28.453104pt;}
.h16{height:28.453186pt;}
.h6{height:30.484944pt;}
.he{height:32.518416pt;}
.h14{height:32.987004pt;}
.h7{height:34.716972pt;}
.h5{height:35.019828pt;}
.h8{height:36.247762pt;}
.h10{height:36.582504pt;}
.hc{height:42.289123pt;}
.hb{height:42.679656pt;}
.h1b{height:52.343750pt;}
.h1a{height:53.750000pt;}
.ha{height:56.874990pt;}
.h18{height:62.812500pt;}
.h19{height:64.500000pt;}
.h4{height:65.801421pt;}
.h3{height:92.421904pt;}
.h1d{height:105.677083pt;}
.h1c{height:105.677617pt;}
.h17{height:1042.666667pt;}
.h0{height:1043.981333pt;}
.h1{height:1044.000000pt;}
.w2{width:790.666667pt;}
.w0{width:791.962667pt;}
.w1{width:792.000000pt;}
.x0{left:0.000000pt;}
.x17{left:40.894533pt;}
.x9{left:62.740133pt;}
.x44{left:68.561352pt;}
.x2{left:71.735333pt;}
.x2c{left:75.741733pt;}
.x2b{left:77.102400pt;}
.x1{left:80.352667pt;}
.x45{left:85.645302pt;}
.x4f{left:102.666667pt;}
.x4b{left:109.333333pt;}
.x33{left:116.862933pt;}
.xd{left:122.683467pt;}
.x34{left:126.840933pt;}
.x49{left:129.317427pt;}
.xe{left:130.696000pt;}
.x39{left:134.400000pt;}
.x42{left:142.337647pt;}
.x18{left:146.494469pt;}
.x24{left:161.158933pt;}
.x50{left:178.213600pt;}
.x37{left:193.133867pt;}
.xa{left:194.040933pt;}
.xb{left:202.884933pt;}
.x38{left:208.478667pt;}
.x48{left:213.373587pt;}
.x21{left:230.550855pt;}
.x4a{left:234.221440pt;}
.x43{left:246.123598pt;}
.x27{left:250.809333pt;}
.x1f{left:251.867600pt;}
.x46{left:267.565427pt;}
.xc{left:291.779467pt;}
.x35{left:292.686533pt;}
.x20{left:296.541600pt;}
.x3{left:302.965626pt;}
.x36{left:304.781067pt;}
.x4c{left:308.000000pt;}
.x26{left:311.206267pt;}
.x11{left:314.078667pt;}
.x4{left:320.124864pt;}
.x30{left:330.330667pt;}
.xf{left:341.971600pt;}
.x10{left:360.113333pt;}
.x31{left:361.322800pt;}
.x32{left:369.032933pt;}
.x22{left:378.255009pt;}
.x25{left:392.844000pt;}
.x12{left:401.461784pt;}
.x3a{left:410.459268pt;}
.x47{left:416.213427pt;}
.x3e{left:419.224925pt;}
.x13{left:424.289600pt;}
.x41{left:425.347993pt;}
.x14{left:433.209333pt;}
.x3f{left:436.761707pt;}
.x5{left:443.562985pt;}
.x23{left:451.729106pt;}
.x6{left:460.495080pt;}
.x19{left:462.160533pt;}
.x3b{left:490.053627pt;}
.x2f{left:495.949467pt;}
.x1a{left:515.376267pt;}
.x1b{left:520.592000pt;}
.x2d{left:530.116400pt;}
.x2e{left:542.815600pt;}
.x28{left:544.629733pt;}
.x1c{left:589.303733pt;}
.x7{left:591.798267pt;}
.x3c{left:593.839578pt;}
.x4e{left:598.760133pt;}
.x1d{left:599.735333pt;}
.x3d{left:639.345018pt;}
.x29{left:650.683333pt;}
.x1e{left:677.366800pt;}
.x4d{left:682.053187pt;}
.x40{left:684.698894pt;}
.x15{left:706.998267pt;}
.x2a{left:708.434533pt;}
.x8{left:709.795031pt;}
.x16{left:717.505333pt;}
}




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