
    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_70e4249d7a4644a337868d9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_efa5ffb877e7c8894b33a208.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010254;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_701ecae1de824b52e3829892.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_c94b8d45a0f864a4d4cb2baa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704102;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_cb2686c242aecd56ac3c2c64.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.183105;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_5d233ff5e46febd7a9feb01f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_45ff5cde7749d2a169f8184f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d439ed1d6fe2698e93eb0a87.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4d12b6d479692ae50521c302.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8b5434c5717abac2b72b45b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.960589;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_554fa6aca0c50071f310dc1b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.959180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v2{vertical-align:-15.119520px;}
.v4{vertical-align:-11.880480px;}
.v5{vertical-align:-6.138300px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.875800px;}
.v1{vertical-align:15.119520px;}
.ls20{letter-spacing:-0.707400px;}
.ls26{letter-spacing:-0.685800px;}
.ls40{letter-spacing:-0.680400px;}
.ls3c{letter-spacing:-0.675000px;}
.ls22{letter-spacing:-0.669600px;}
.ls1d{letter-spacing:-0.664200px;}
.ls1f{letter-spacing:-0.658800px;}
.ls25{letter-spacing:-0.653400px;}
.ls1e{letter-spacing:-0.642600px;}
.ls28{letter-spacing:-0.637200px;}
.ls27{letter-spacing:-0.631800px;}
.ls3e{letter-spacing:-0.626400px;}
.ls3d{letter-spacing:-0.621000px;}
.ls29{letter-spacing:-0.615600px;}
.ls41{letter-spacing:-0.604800px;}
.ls23{letter-spacing:-0.594000px;}
.ls24{letter-spacing:-0.583200px;}
.ls42{letter-spacing:-0.577800px;}
.ls3f{letter-spacing:-0.437400px;}
.ls21{letter-spacing:-0.367200px;}
.ls53{letter-spacing:-0.280800px;}
.ls4e{letter-spacing:-0.232200px;}
.ls71{letter-spacing:-0.178200px;}
.ls35{letter-spacing:-0.151200px;}
.ls56{letter-spacing:-0.145800px;}
.ls43{letter-spacing:-0.135000px;}
.ls82{letter-spacing:-0.124200px;}
.ls19{letter-spacing:-0.120240px;}
.ls4c{letter-spacing:-0.118800px;}
.ls52{letter-spacing:-0.108000px;}
.ls54{letter-spacing:-0.102600px;}
.ls72{letter-spacing:-0.097200px;}
.ls4d{letter-spacing:-0.091800px;}
.ls3a{letter-spacing:-0.086400px;}
.ls4a{letter-spacing:-0.081000px;}
.ls58{letter-spacing:-0.075600px;}
.ls44{letter-spacing:-0.070200px;}
.lse{letter-spacing:-0.067284px;}
.ls46{letter-spacing:-0.064800px;}
.ls37{letter-spacing:-0.059400px;}
.ls4f{letter-spacing:-0.054000px;}
.ls39{letter-spacing:-0.048600px;}
.ls18{letter-spacing:-0.048096px;}
.ls59{letter-spacing:-0.043200px;}
.ls17{letter-spacing:-0.042084px;}
.ls45{letter-spacing:-0.037800px;}
.ls62{letter-spacing:-0.036072px;}
.ls4b{letter-spacing:-0.032400px;}
.ls15{letter-spacing:-0.030060px;}
.ls49{letter-spacing:-0.027000px;}
.ls2c{letter-spacing:-0.021600px;}
.ls1a{letter-spacing:-0.018036px;}
.ls2d{letter-spacing:-0.016200px;}
.ls16{letter-spacing:-0.012024px;}
.ls1b{letter-spacing:-0.010800px;}
.ls14{letter-spacing:-0.006012px;}
.ls38{letter-spacing:-0.005400px;}
.ls12{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.005400px;}
.ls11{letter-spacing:0.006588px;}
.ls2b{letter-spacing:0.010800px;}
.ls6{letter-spacing:0.016200px;}
.ls34{letter-spacing:0.019152px;}
.ls2e{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.026352px;}
.lsc{letter-spacing:0.027000px;}
.ls7b{letter-spacing:0.028800px;}
.ls13{letter-spacing:0.030060px;}
.ls7{letter-spacing:0.032400px;}
.ls9{letter-spacing:0.037800px;}
.ls32{letter-spacing:0.037860px;}
.ls3b{letter-spacing:0.038304px;}
.ls2a{letter-spacing:0.043200px;}
.ls2{letter-spacing:0.046116px;}
.ls33{letter-spacing:0.047880px;}
.ls5{letter-spacing:0.048600px;}
.lsd{letter-spacing:0.054000px;}
.lsb{letter-spacing:0.059400px;}
.lsa{letter-spacing:0.064800px;}
.ls31{letter-spacing:0.070200px;}
.ls30{letter-spacing:0.075600px;}
.ls47{letter-spacing:0.081000px;}
.ls36{letter-spacing:0.086400px;}
.ls1c{letter-spacing:0.091800px;}
.ls51{letter-spacing:0.111600px;}
.ls70{letter-spacing:0.113400px;}
.ls4{letter-spacing:0.123960px;}
.lsf{letter-spacing:0.125172px;}
.ls78{letter-spacing:0.135000px;}
.ls3{letter-spacing:0.144936px;}
.ls2f{letter-spacing:0.145860px;}
.ls48{letter-spacing:0.178200px;}
.ls10{letter-spacing:0.181116px;}
.ls1{letter-spacing:0.181380px;}
.ls7c{letter-spacing:0.329400px;}
.ls69{letter-spacing:0.448200px;}
.ls7d{letter-spacing:0.464400px;}
.ls61{letter-spacing:0.475200px;}
.ls50{letter-spacing:0.540000px;}
.ls5a{letter-spacing:0.576000px;}
.ls6c{letter-spacing:0.577800px;}
.ls68{letter-spacing:0.599400px;}
.ls75{letter-spacing:0.608700px;}
.ls5e{letter-spacing:0.615600px;}
.ls7a{letter-spacing:0.626400px;}
.ls5f{letter-spacing:0.631800px;}
.ls76{letter-spacing:0.637200px;}
.ls81{letter-spacing:0.642600px;}
.ls7e{letter-spacing:0.653400px;}
.ls63{letter-spacing:0.680400px;}
.ls6a{letter-spacing:0.685800px;}
.ls7f{letter-spacing:0.691200px;}
.ls6b{letter-spacing:0.696600px;}
.ls6e{letter-spacing:0.707400px;}
.ls5d{letter-spacing:0.712800px;}
.ls86{letter-spacing:0.715867px;}
.ls85{letter-spacing:0.715942px;}
.ls77{letter-spacing:0.718200px;}
.ls6d{letter-spacing:0.723600px;}
.ls6f{letter-spacing:0.729000px;}
.ls80{letter-spacing:0.734400px;}
.ls60{letter-spacing:0.739800px;}
.ls5c{letter-spacing:0.745200px;}
.ls84{letter-spacing:0.750600px;}
.ls5b{letter-spacing:0.752700px;}
.ls65{letter-spacing:0.756000px;}
.ls79{letter-spacing:0.766800px;}
.ls67{letter-spacing:0.777600px;}
.ls73{letter-spacing:0.783000px;}
.ls64{letter-spacing:0.793800px;}
.ls74{letter-spacing:0.865380px;}
.ls55{letter-spacing:1.981800px;}
.ls57{letter-spacing:4.498200px;}
.ls83{letter-spacing:9.897660px;}
.ls66{letter-spacing:13.138200px;}
.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;}
}
.ws0{word-spacing:-26.147772px;}
.ws48{word-spacing:-21.384000px;}
.ws46{word-spacing:-21.330000px;}
.ws4{word-spacing:-20.665800px;}
.ws1{word-spacing:-16.614936px;}
.ws22a{word-spacing:-14.131800px;}
.ws255{word-spacing:-13.748927px;}
.ws22b{word-spacing:-13.635000px;}
.ws24a{word-spacing:-13.505400px;}
.wsf4{word-spacing:-13.500000px;}
.ws47{word-spacing:-13.483800px;}
.ws17a{word-spacing:-13.397400px;}
.ws254{word-spacing:-13.032985px;}
.ws2{word-spacing:-10.711116px;}
.ws3{word-spacing:-9.720000px;}
.ws14c{word-spacing:-9.111600px;}
.ws229{word-spacing:-9.028800px;}
.wsba{word-spacing:-9.000000px;}
.ws179{word-spacing:-8.892000px;}
.ws1f6{word-spacing:-1.184364px;}
.ws9{word-spacing:-0.276696px;}
.ws203{word-spacing:-0.253800px;}
.ws1ba{word-spacing:-0.243000px;}
.ws6d{word-spacing:-0.237600px;}
.ws132{word-spacing:-0.232200px;}
.ws16a{word-spacing:-0.194400px;}
.wsc7{word-spacing:-0.189000px;}
.ws88{word-spacing:-0.183600px;}
.ws1d2{word-spacing:-0.167400px;}
.wsfb{word-spacing:-0.156600px;}
.ws1b1{word-spacing:-0.144288px;}
.ws140{word-spacing:-0.138276px;}
.ws1ea{word-spacing:-0.132264px;}
.ws12{word-spacing:-0.126252px;}
.ws36{word-spacing:-0.114228px;}
.ws89{word-spacing:-0.096192px;}
.ws222{word-spacing:-0.081000px;}
.ws1f0{word-spacing:-0.070200px;}
.ws8{word-spacing:-0.052704px;}
.ws49{word-spacing:-0.028728px;}
.ws85{word-spacing:-0.019152px;}
.ws5{word-spacing:0.000000px;}
.ws15c{word-spacing:0.027000px;}
.ws7{word-spacing:0.046116px;}
.wsa{word-spacing:0.060120px;}
.ws6{word-spacing:0.065880px;}
.ws35{word-spacing:0.075600px;}
.ws8d{word-spacing:0.081000px;}
.ws1c{word-spacing:0.086400px;}
.wsf{word-spacing:0.090180px;}
.ws194{word-spacing:0.091800px;}
.wsb{word-spacing:0.096192px;}
.ws34{word-spacing:0.097200px;}
.wsd{word-spacing:0.102204px;}
.ws5b{word-spacing:0.102600px;}
.ws4a{word-spacing:0.108000px;}
.ws5a{word-spacing:0.113400px;}
.wsc3{word-spacing:0.118800px;}
.wsc{word-spacing:0.120240px;}
.ws8c{word-spacing:0.124200px;}
.wscf{word-spacing:0.129600px;}
.wse{word-spacing:0.132264px;}
.ws9f{word-spacing:0.135000px;}
.ws10{word-spacing:0.138276px;}
.wsdf{word-spacing:0.140400px;}
.ws56{word-spacing:0.145800px;}
.ws45{word-spacing:0.151200px;}
.ws6c{word-spacing:0.156600px;}
.ws81{word-spacing:0.162000px;}
.ws62{word-spacing:0.167400px;}
.wsa0{word-spacing:0.172800px;}
.ws58{word-spacing:0.178200px;}
.wse2{word-spacing:0.183600px;}
.ws1b{word-spacing:0.189000px;}
.ws57{word-spacing:0.194400px;}
.ws189{word-spacing:0.199800px;}
.ws72{word-spacing:0.205200px;}
.ws11{word-spacing:0.210420px;}
.ws141{word-spacing:0.210600px;}
.ws1d4{word-spacing:0.216000px;}
.ws1e9{word-spacing:0.221400px;}
.ws1e8{word-spacing:0.237600px;}
.ws120{word-spacing:0.243000px;}
.ws1d5{word-spacing:0.253800px;}
.ws1d3{word-spacing:0.259200px;}
.ws1ef{word-spacing:0.270000px;}
.ws224{word-spacing:0.275400px;}
.ws1b0{word-spacing:0.324000px;}
.ws166{word-spacing:0.410400px;}
.ws25{word-spacing:0.415800px;}
.ws1a9{word-spacing:0.459000px;}
.ws19d{word-spacing:0.469800px;}
.ws24{word-spacing:0.486000px;}
.ws131{word-spacing:0.491400px;}
.wsb3{word-spacing:0.496800px;}
.ws14e{word-spacing:0.507600px;}
.ws128{word-spacing:0.513000px;}
.ws130{word-spacing:0.518400px;}
.wsb4{word-spacing:0.523800px;}
.ws12f{word-spacing:0.529200px;}
.ws14f{word-spacing:0.534600px;}
.ws129{word-spacing:0.540000px;}
.ws1a8{word-spacing:0.545400px;}
.wsd5{word-spacing:0.723600px;}
.ws78{word-spacing:0.826200px;}
.ws7a{word-spacing:0.831600px;}
.wsd4{word-spacing:0.837000px;}
.ws23{word-spacing:0.847800px;}
.ws1b5{word-spacing:0.853200px;}
.wsd6{word-spacing:0.858600px;}
.ws15d{word-spacing:0.864000px;}
.ws64{word-spacing:0.869400px;}
.wsa6{word-spacing:0.874800px;}
.ws67{word-spacing:0.880200px;}
.ws79{word-spacing:0.885600px;}
.ws15e{word-spacing:0.896400px;}
.ws63{word-spacing:0.907200px;}
.wsa7{word-spacing:0.923400px;}
.ws158{word-spacing:1.177200px;}
.ws23b{word-spacing:1.204200px;}
.ws1d6{word-spacing:1.209600px;}
.ws165{word-spacing:1.220400px;}
.ws101{word-spacing:1.225800px;}
.ws157{word-spacing:1.242000px;}
.ws14a{word-spacing:1.247400px;}
.ws102{word-spacing:1.252800px;}
.ws1d7{word-spacing:1.263600px;}
.ws14b{word-spacing:1.274400px;}
.ws23c{word-spacing:1.323000px;}
.ws8b{word-spacing:1.539000px;}
.ws23d{word-spacing:1.560600px;}
.ws1d9{word-spacing:1.566000px;}
.ws8a{word-spacing:1.576800px;}
.wsaa{word-spacing:1.582200px;}
.wsa8{word-spacing:1.587600px;}
.wsd9{word-spacing:1.593000px;}
.ws14d{word-spacing:1.603800px;}
.wsda{word-spacing:1.620000px;}
.wsa9{word-spacing:1.755000px;}
.ws207{word-spacing:1.895400px;}
.ws242{word-spacing:1.911600px;}
.ws3d{word-spacing:1.917000px;}
.wsf7{word-spacing:1.922400px;}
.wsa5{word-spacing:1.933200px;}
.wsbf{word-spacing:1.938600px;}
.ws3c{word-spacing:1.944000px;}
.wsa4{word-spacing:1.949400px;}
.wsef{word-spacing:1.954800px;}
.wsee{word-spacing:1.965600px;}
.wsbb{word-spacing:1.976400px;}
.wsbe{word-spacing:1.992600px;}
.ws206{word-spacing:1.998000px;}
.ws1d8{word-spacing:2.046600px;}
.ws9c{word-spacing:2.197800px;}
.ws9e{word-spacing:2.251800px;}
.ws9d{word-spacing:2.262600px;}
.ws42{word-spacing:2.278800px;}
.ws210{word-spacing:2.284200px;}
.ws211{word-spacing:2.322000px;}
.ws112{word-spacing:2.327400px;}
.ws111{word-spacing:2.338200px;}
.ws24f{word-spacing:2.635200px;}
.ws1ec{word-spacing:2.651400px;}
.wsf0{word-spacing:2.656800px;}
.ws1b4{word-spacing:2.667600px;}
.wsdb{word-spacing:2.673000px;}
.wsdc{word-spacing:2.683800px;}
.wsf1{word-spacing:2.694600px;}
.ws22{word-spacing:2.705400px;}
.ws202{word-spacing:2.710800px;}
.ws29{word-spacing:2.991600px;}
.ws20{word-spacing:2.997000px;}
.ws28{word-spacing:3.007800px;}
.wsce{word-spacing:3.013200px;}
.ws1a5{word-spacing:3.018600px;}
.ws1a4{word-spacing:3.024000px;}
.ws80{word-spacing:3.029400px;}
.ws182{word-spacing:3.034800px;}
.wscd{word-spacing:3.040200px;}
.ws21{word-spacing:3.045600px;}
.ws135{word-spacing:3.051000px;}
.ws17f{word-spacing:3.056400px;}
.ws181{word-spacing:3.061800px;}
.ws17d{word-spacing:3.067200px;}
.ws17e{word-spacing:3.115800px;}
.ws22f{word-spacing:3.153600px;}
.ws191{word-spacing:3.164400px;}
.ws249{word-spacing:3.186000px;}
.ws1b3{word-spacing:3.364200px;}
.ws3b{word-spacing:3.380400px;}
.ws20b{word-spacing:3.391200px;}
.ws1b2{word-spacing:3.423600px;}
.ws22e{word-spacing:3.445200px;}
.ws22d{word-spacing:3.461400px;}
.ws91{word-spacing:3.677400px;}
.ws97{word-spacing:3.693600px;}
.ws90{word-spacing:3.699000px;}
.wsac{word-spacing:3.715200px;}
.ws96{word-spacing:3.731400px;}
.ws186{word-spacing:3.742200px;}
.ws10c{word-spacing:3.753000px;}
.ws126{word-spacing:3.758400px;}
.ws127{word-spacing:3.763800px;}
.ws19c{word-spacing:3.769200px;}
.wsab{word-spacing:3.780000px;}
.wsca{word-spacing:3.790800px;}
.wscb{word-spacing:3.801600px;}
.ws150{word-spacing:3.828600px;}
.ws212{word-spacing:3.839400px;}
.ws233{word-spacing:4.087800px;}
.ws3e{word-spacing:4.098600px;}
.ws1f7{word-spacing:4.104000px;}
.ws59{word-spacing:4.114800px;}
.ws71{word-spacing:4.120200px;}
.ws187{word-spacing:4.125600px;}
.wsc1{word-spacing:4.131000px;}
.ws16f{word-spacing:4.136400px;}
.wsc0{word-spacing:4.158000px;}
.ws3f{word-spacing:4.163400px;}
.ws234{word-spacing:4.185000px;}
.ws1f4{word-spacing:4.228200px;}
.ws1f3{word-spacing:4.244400px;}
.ws82{word-spacing:4.438800px;}
.ws51{word-spacing:4.444200px;}
.ws199{word-spacing:4.449600px;}
.ws1c1{word-spacing:4.465800px;}
.ws148{word-spacing:4.471200px;}
.ws18f{word-spacing:4.476600px;}
.ws149{word-spacing:4.482000px;}
.ws167{word-spacing:4.487400px;}
.ws43{word-spacing:4.492800px;}
.ws190{word-spacing:4.498200px;}
.ws44{word-spacing:4.514400px;}
.ws1ff{word-spacing:4.536000px;}
.ws168{word-spacing:4.552200px;}
.ws1de{word-spacing:4.795200px;}
.ws2a{word-spacing:4.800600px;}
.ws2b{word-spacing:4.811400px;}
.ws12c{word-spacing:4.816800px;}
.ws145{word-spacing:4.822200px;}
.ws118{word-spacing:4.827600px;}
.wse1{word-spacing:4.833000px;}
.ws12b{word-spacing:4.843800px;}
.ws20d{word-spacing:4.849200px;}
.wse0{word-spacing:4.854600px;}
.ws19f{word-spacing:4.865400px;}
.ws20c{word-spacing:4.870800px;}
.ws19e{word-spacing:4.881600px;}
.ws119{word-spacing:4.978800px;}
.ws124{word-spacing:5.146200px;}
.ws24b{word-spacing:5.157000px;}
.ws73{word-spacing:5.173200px;}
.wsd1{word-spacing:5.178600px;}
.ws139{word-spacing:5.184000px;}
.ws6f{word-spacing:5.189400px;}
.ws103{word-spacing:5.194800px;}
.ws123{word-spacing:5.200200px;}
.ws13a{word-spacing:5.211000px;}
.ws183{word-spacing:5.221800px;}
.ws6e{word-spacing:5.227200px;}
.ws1c4{word-spacing:5.232600px;}
.ws12d{word-spacing:5.238000px;}
.ws1c5{word-spacing:5.243400px;}
.ws238{word-spacing:5.248800px;}
.ws24d{word-spacing:5.513400px;}
.wsc8{word-spacing:5.518800px;}
.ws1a{word-spacing:5.529600px;}
.ws1c7{word-spacing:5.545800px;}
.ws24e{word-spacing:5.567400px;}
.wsc9{word-spacing:5.626800px;}
.ws237{word-spacing:5.648400px;}
.ws239{word-spacing:5.664600px;}
.ws74{word-spacing:5.875200px;}
.wsb1{word-spacing:5.880600px;}
.ws1dc{word-spacing:5.891400px;}
.ws208{word-spacing:5.896800px;}
.wsf8{word-spacing:5.902200px;}
.ws41{word-spacing:5.907600px;}
.ws40{word-spacing:5.913000px;}
.wsde{word-spacing:5.918400px;}
.ws75{word-spacing:5.923800px;}
.wsdd{word-spacing:5.929200px;}
.wsfa{word-spacing:5.934600px;}
.ws223{word-spacing:5.940000px;}
.ws1ac{word-spacing:5.945400px;}
.ws152{word-spacing:5.961600px;}
.wsb2{word-spacing:6.010200px;}
.wsf9{word-spacing:6.021000px;}
.ws12a{word-spacing:6.242400px;}
.ws146{word-spacing:6.247800px;}
.ws14{word-spacing:6.253200px;}
.ws5e{word-spacing:6.258600px;}
.ws70{word-spacing:6.264000px;}
.wsd2{word-spacing:6.274800px;}
.ws133{word-spacing:6.280200px;}
.wsd3{word-spacing:6.285600px;}
.ws147{word-spacing:6.291000px;}
.ws13{word-spacing:6.301800px;}
.ws1fd{word-spacing:6.420600px;}
.ws26{word-spacing:6.523200px;}
.ws1fe{word-spacing:6.571800px;}
.ws27{word-spacing:6.582600px;}
.ws1f9{word-spacing:6.604200px;}
.wsbd{word-spacing:6.609600px;}
.ws1f8{word-spacing:6.625800px;}
.ws55{word-spacing:6.631200px;}
.wscc{word-spacing:6.636600px;}
.wsbc{word-spacing:6.642000px;}
.ws1a6{word-spacing:6.647400px;}
.ws1a7{word-spacing:6.652800px;}
.ws54{word-spacing:6.658200px;}
.ws20e{word-spacing:6.663600px;}
.ws1be{word-spacing:6.674400px;}
.ws251{word-spacing:6.944400px;}
.ws2e{word-spacing:6.949800px;}
.ws2f{word-spacing:6.955200px;}
.ws209{word-spacing:6.966000px;}
.ws220{word-spacing:6.971400px;}
.ws16d{word-spacing:6.976800px;}
.ws65{word-spacing:6.982200px;}
.ws1af{word-spacing:6.993000px;}
.ws83{word-spacing:6.998400px;}
.ws66{word-spacing:7.009200px;}
.ws1ad{word-spacing:7.025400px;}
.ws16e{word-spacing:7.036200px;}
.ws1ae{word-spacing:7.041600px;}
.ws221{word-spacing:7.068600px;}
.ws52{word-spacing:7.295400px;}
.ws20a{word-spacing:7.300800px;}
.ws193{word-spacing:7.333200px;}
.ws11b{word-spacing:7.338600px;}
.ws77{word-spacing:7.344000px;}
.ws11a{word-spacing:7.349400px;}
.ws53{word-spacing:7.354800px;}
.ws192{word-spacing:7.360200px;}
.ws12e{word-spacing:7.365600px;}
.ws18e{word-spacing:7.408800px;}
.ws250{word-spacing:7.414200px;}
.ws18b{word-spacing:7.662600px;}
.wsfe{word-spacing:7.684200px;}
.ws1a1{word-spacing:7.689600px;}
.ws76{word-spacing:7.700400px;}
.ws18a{word-spacing:7.705800px;}
.ws23f{word-spacing:7.711200px;}
.ws240{word-spacing:7.716600px;}
.ws1df{word-spacing:7.722000px;}
.ws3a{word-spacing:7.727400px;}
.ws39{word-spacing:7.732800px;}
.wseb{word-spacing:7.738200px;}
.wsea{word-spacing:7.743600px;}
.ws15f{word-spacing:7.749000px;}
.ws241{word-spacing:7.781400px;}
.ws11c{word-spacing:7.786800px;}
.ws94{word-spacing:7.975800px;}
.ws92{word-spacing:8.008200px;}
.ws95{word-spacing:8.046000px;}
.ws10b{word-spacing:8.051400px;}
.ws188{word-spacing:8.056800px;}
.wsf2{word-spacing:8.062200px;}
.ws1bd{word-spacing:8.073000px;}
.ws10e{word-spacing:8.078400px;}
.ws10d{word-spacing:8.083800px;}
.ws218{word-spacing:8.089200px;}
.wsf3{word-spacing:8.094600px;}
.ws10f{word-spacing:8.100000px;}
.ws185{word-spacing:8.116200px;}
.ws1d1{word-spacing:8.154000px;}
.ws184{word-spacing:8.170200px;}
.ws93{word-spacing:8.175600px;}
.ws9a{word-spacing:8.397000px;}
.ws9b{word-spacing:8.418600px;}
.wsfd{word-spacing:8.424000px;}
.ws161{word-spacing:8.434800px;}
.wsfc{word-spacing:8.440200px;}
.ws160{word-spacing:8.445600px;}
.ws169{word-spacing:8.451000px;}
.ws11e{word-spacing:8.748000px;}
.ws11d{word-spacing:8.758800px;}
.ws1fb{word-spacing:8.764200px;}
.ws151{word-spacing:8.769600px;}
.ws1b9{word-spacing:8.785800px;}
.ws1cc{word-spacing:8.791200px;}
.ws1a3{word-spacing:8.796600px;}
.ws159{word-spacing:8.802000px;}
.ws1cd{word-spacing:8.812800px;}
.ws15a{word-spacing:8.818200px;}
.ws174{word-spacing:8.856000px;}
.ws1fa{word-spacing:8.861400px;}
.ws1a2{word-spacing:8.866800px;}
.ws50{word-spacing:9.126000px;}
.ws5c{word-spacing:9.131400px;}
.ws10a{word-spacing:9.136800px;}
.ws1bf{word-spacing:9.142200px;}
.ws1c0{word-spacing:9.147600px;}
.ws4f{word-spacing:9.158400px;}
.ws5d{word-spacing:9.174600px;}
.ws162{word-spacing:9.185400px;}
.ws178{word-spacing:9.190800px;}
.ws1e6{word-spacing:9.196200px;}
.ws177{word-spacing:9.228600px;}
.ws13e{word-spacing:9.487800px;}
.ws113{word-spacing:9.498600px;}
.ws173{word-spacing:9.504000px;}
.ws172{word-spacing:9.514800px;}
.ws1bc{word-spacing:9.531000px;}
.ws13d{word-spacing:9.536400px;}
.ws1bb{word-spacing:9.541800px;}
.ws115{word-spacing:9.558000px;}
.ws1c6{word-spacing:9.563400px;}
.wsa2{word-spacing:9.833400px;}
.ws5f{word-spacing:9.844200px;}
.ws60{word-spacing:9.855000px;}
.wsff{word-spacing:9.860400px;}
.ws117{word-spacing:9.871200px;}
.ws100{word-spacing:9.876600px;}
.ws116{word-spacing:9.882000px;}
.wsa1{word-spacing:9.887400px;}
.ws24c{word-spacing:9.892800px;}
.ws84{word-spacing:9.898200px;}
.wsd0{word-spacing:10.189800px;}
.ws69{word-spacing:10.200600px;}
.wsc6{word-spacing:10.222200px;}
.ws87{word-spacing:10.233000px;}
.ws86{word-spacing:10.243800px;}
.ws68{word-spacing:10.254600px;}
.ws1a0{word-spacing:10.265400px;}
.ws99{word-spacing:10.503000px;}
.ws137{word-spacing:10.551600px;}
.wsc2{word-spacing:10.567800px;}
.ws98{word-spacing:10.578600px;}
.wsae{word-spacing:10.584000px;}
.ws136{word-spacing:10.600200px;}
.wsad{word-spacing:10.605600px;}
.ws156{word-spacing:10.611000px;}
.ws138{word-spacing:10.621800px;}
.ws155{word-spacing:10.627200px;}
.ws214{word-spacing:10.692000px;}
.ws4c{word-spacing:10.918800px;}
.ws219{word-spacing:10.924200px;}
.ws21a{word-spacing:10.929600px;}
.ws4b{word-spacing:10.935000px;}
.ws1b6{word-spacing:10.962000px;}
.ws21b{word-spacing:10.978200px;}
.ws7c{word-spacing:11.275200px;}
.ws7e{word-spacing:11.302200px;}
.wsb9{word-spacing:11.323800px;}
.ws7d{word-spacing:11.329200px;}
.ws7f{word-spacing:11.340000px;}
.wsb8{word-spacing:11.404800px;}
.ws2d{word-spacing:11.631600px;}
.ws16b{word-spacing:11.642400px;}
.ws11f{word-spacing:11.653200px;}
.ws38{word-spacing:11.658600px;}
.ws2c{word-spacing:11.664000px;}
.ws37{word-spacing:11.669400px;}
.ws16c{word-spacing:11.755800px;}
.ws1e{word-spacing:11.982600px;}
.ws1d{word-spacing:12.004200px;}
.ws217{word-spacing:12.025800px;}
.ws1c8{word-spacing:12.036600px;}
.wse7{word-spacing:12.063600px;}
.wse8{word-spacing:12.069000px;}
.wse9{word-spacing:12.085200px;}
.ws134{word-spacing:12.371400px;}
.wsed{word-spacing:12.382200px;}
.wsec{word-spacing:12.425400px;}
.ws1f{word-spacing:12.717000px;}
.ws106{word-spacing:12.754800px;}
.ws107{word-spacing:12.760200px;}
.ws4d{word-spacing:13.116600px;}
.ws144{word-spacing:13.122000px;}
.ws4e{word-spacing:13.132800px;}
.ws235{word-spacing:13.170600px;}
.ws236{word-spacing:13.397400px;}
.ws19b{word-spacing:13.424400px;}
.ws21d{word-spacing:13.440600px;}
.ws1eb{word-spacing:13.451400px;}
.wse3{word-spacing:13.462200px;}
.ws21c{word-spacing:13.467600px;}
.ws1ca{word-spacing:13.478400px;}
.ws143{word-spacing:13.489200px;}
.ws1cb{word-spacing:13.494600px;}
.ws142{word-spacing:13.500000px;}
.ws122{word-spacing:13.770000px;}
.ws121{word-spacing:13.813200px;}
.ws230{word-spacing:13.834800px;}
.ws1e4{word-spacing:13.845600px;}
.ws19a{word-spacing:13.851000px;}
.ws1e5{word-spacing:13.861800px;}
.ws231{word-spacing:13.872600px;}
.ws232{word-spacing:13.888800px;}
.ws30{word-spacing:14.131800px;}
.ws227{word-spacing:14.158800px;}
.ws31{word-spacing:14.185800px;}
.ws163{word-spacing:14.202000px;}
.wsd7{word-spacing:14.212800px;}
.ws164{word-spacing:14.229000px;}
.wsd8{word-spacing:14.234400px;}
.ws228{word-spacing:14.261400px;}
.ws13f{word-spacing:14.531400px;}
.ws1b7{word-spacing:14.536800px;}
.wsaf{word-spacing:14.563800px;}
.wsb0{word-spacing:14.596200px;}
.ws195{word-spacing:14.931000px;}
.ws1ab{word-spacing:14.947200px;}
.ws196{word-spacing:14.974200px;}
.ws105{word-spacing:15.249600px;}
.ws1c2{word-spacing:15.255000px;}
.ws15b{word-spacing:15.622200px;}
.ws154{word-spacing:15.633000px;}
.ws153{word-spacing:15.643800px;}
.ws1f5{word-spacing:15.903000px;}
.ws1e0{word-spacing:15.946200px;}
.ws1e1{word-spacing:15.989400px;}
.ws15{word-spacing:16.005600px;}
.ws16{word-spacing:16.032600px;}
.ws213{word-spacing:16.345800px;}
.ws247{word-spacing:16.680600px;}
.wse5{word-spacing:16.691400px;}
.wsf6{word-spacing:16.696800px;}
.wse4{word-spacing:16.702200px;}
.wsf5{word-spacing:16.713000px;}
.ws198{word-spacing:16.723800px;}
.ws1b8{word-spacing:16.740000px;}
.wse6{word-spacing:16.750800px;}
.ws197{word-spacing:16.756200px;}
.ws104{word-spacing:16.777800px;}
.ws248{word-spacing:16.804800px;}
.ws23a{word-spacing:16.815600px;}
.ws6b{word-spacing:17.047800px;}
.ws245{word-spacing:17.053200px;}
.ws7b{word-spacing:17.064000px;}
.ws6a{word-spacing:17.074800px;}
.ws246{word-spacing:17.085600px;}
.ws201{word-spacing:17.096400px;}
.ws200{word-spacing:17.242200px;}
.ws32{word-spacing:17.404200px;}
.ws110{word-spacing:17.469000px;}
.ws33{word-spacing:17.771400px;}
.ws180{word-spacing:17.782200px;}
.ws215{word-spacing:17.809200px;}
.ws216{word-spacing:17.863200px;}
.ws1f1{word-spacing:18.154800px;}
.ws1f2{word-spacing:18.187200px;}
.ws8e{word-spacing:18.441000px;}
.ws8f{word-spacing:18.451800px;}
.ws17c{word-spacing:18.500400px;}
.ws243{word-spacing:18.511200px;}
.ws1db{word-spacing:18.522000px;}
.ws17b{word-spacing:18.527400px;}
.ws244{word-spacing:18.543600px;}
.ws1da{word-spacing:18.559800px;}
.wsb6{word-spacing:18.878400px;}
.wsb5{word-spacing:18.889200px;}
.wsb7{word-spacing:18.937800px;}
.ws18{word-spacing:19.207800px;}
.ws176{word-spacing:19.213200px;}
.ws17{word-spacing:19.224000px;}
.ws61{word-spacing:19.234800px;}
.ws1aa{word-spacing:19.310400px;}
.ws175{word-spacing:19.326600px;}
.ws1dd{word-spacing:19.542600px;}
.ws22c{word-spacing:19.931400px;}
.ws1cf{word-spacing:19.936800px;}
.ws1ce{word-spacing:20.028600px;}
.ws1e3{word-spacing:20.309400px;}
.ws1e2{word-spacing:20.341800px;}
.ws226{word-spacing:20.692800px;}
.ws225{word-spacing:21.049200px;}
.ws1ee{word-spacing:21.697200px;}
.ws1ed{word-spacing:21.729600px;}
.ws125{word-spacing:22.102200px;}
.ws19{word-spacing:22.140000px;}
.ws205{word-spacing:22.431600px;}
.ws204{word-spacing:22.474800px;}
.ws109{word-spacing:22.777200px;}
.ws108{word-spacing:22.890600px;}
.wsa3{word-spacing:23.160600px;}
.ws13b{word-spacing:24.613200px;}
.ws13c{word-spacing:24.629400px;}
.ws114{word-spacing:25.007400px;}
.ws1c3{word-spacing:25.331400px;}
.ws1d0{word-spacing:26.060400px;}
.ws18d{word-spacing:26.411400px;}
.ws18c{word-spacing:26.443800px;}
.ws252{word-spacing:26.789400px;}
.ws1fc{word-spacing:26.827200px;}
.ws253{word-spacing:27.000000px;}
.ws1c9{word-spacing:27.118800px;}
.wsc4{word-spacing:27.151200px;}
.wsc5{word-spacing:27.189000px;}
.ws171{word-spacing:29.997000px;}
.ws170{word-spacing:30.029400px;}
.ws20f{word-spacing:31.492800px;}
.ws1e7{word-spacing:34.695000px;}
.ws21e{word-spacing:35.418600px;}
.ws21f{word-spacing:55.944000px;}
.ws23e{word-spacing:199.260000px;}
._9{margin-left:-13.427316px;}
._8{margin-left:-12.408714px;}
._3{margin-left:-10.801445px;}
._7{margin-left:-8.188402px;}
._4{margin-left:-6.970113px;}
._6{margin-left:-4.574194px;}
._2{margin-left:-2.635030px;}
._0{margin-left:-1.100428px;}
._1{width:1.330367px;}
._a{width:2.400790px;}
._5{width:19.267800px;}
.fc2{color:transparent;}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(68,68,68);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:42.120000px;}
.fsb{font-size:46.881240px;}
.fs8{font-size:47.880000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs9{font-size:72.000000px;}
.fs1{font-size:96.120000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y209{bottom:4.185750px;}
.y208{bottom:21.766200px;}
.y20e{bottom:23.440050px;}
.y207{bottom:39.346650px;}
.y20d{bottom:41.020500px;}
.y27{bottom:46.500000px;}
.y206{bottom:56.927100px;}
.y2a{bottom:67.822200px;}
.y205{bottom:74.507550px;}
.y20c{bottom:74.507700px;}
.y204{bottom:92.088000px;}
.y20b{bottom:92.088150px;}
.y203{bottom:110.505750px;}
.y20a{bottom:110.505900px;}
.y26{bottom:131.275500px;}
.y119{bottom:131.631900px;}
.y101{bottom:131.634000px;}
.y9d{bottom:131.810430px;}
.y74{bottom:131.815650px;}
.y163{bottom:131.903850px;}
.yc6{bottom:131.992950px;}
.y53{bottom:132.091050px;}
.y17a{bottom:132.352350px;}
.y159{bottom:132.355200px;}
.y12d{bottom:132.443400px;}
.y13d{bottom:132.530550px;}
.y193{bottom:132.533130px;}
.y1af{bottom:132.980610px;}
.ydb{bottom:133.432350px;}
.y1ce{bottom:139.364400px;}
.y1f2{bottom:146.830125px;}
.y25{bottom:147.745050px;}
.y118{bottom:148.372200px;}
.y162{bottom:148.823400px;}
.y73{bottom:149.005350px;}
.y179{bottom:149.092050px;}
.y100{bottom:149.093700px;}
.y158{bottom:149.185650px;}
.y52{bottom:149.191650px;}
.y9c{bottom:149.270130px;}
.yc5{bottom:149.272800px;}
.y13c{bottom:149.720250px;}
.y12c{bottom:149.723250px;}
.y192{bottom:150.172845px;}
.yda{bottom:150.532950px;}
.y1ae{bottom:150.621360px;}
.y1cd{bottom:157.004700px;}
.y24{bottom:164.124300px;}
.y1f1{bottom:164.470425px;}
.y161{bottom:165.742950px;}
.y157{bottom:166.105200px;}
.y72{bottom:166.285200px;}
.y51{bottom:166.292250px;}
.yc4{bottom:166.552650px;}
.yff{bottom:166.552950px;}
.y9b{bottom:166.729380px;}
.y13b{bottom:166.820850px;}
.y12b{bottom:167.003100px;}
.y117{bottom:167.362500px;}
.y191{bottom:167.813145px;}
.y1ad{bottom:168.171360px;}
.y178{bottom:172.762200px;}
.y1cc{bottom:174.645000px;}
.yd9{bottom:176.632350px;}
.y23{bottom:180.594450px;}
.y1f0{bottom:182.110725px;}
.y160{bottom:182.662500px;}
.y156{bottom:183.024750px;}
.y71{bottom:183.565650px;}
.yc3{bottom:183.742350px;}
.y13a{bottom:183.921450px;}
.y9a{bottom:184.279380px;}
.y190{bottom:185.452140px;}
.y1ac{bottom:185.811660px;}
.y1fb{bottom:188.073000px;}
.y177{bottom:188.602500px;}
.y1cb{bottom:191.745600px;}
.y12a{bottom:192.113400px;}
.y50{bottom:192.572700px;}
.yfe{bottom:193.013250px;}
.yd8{bottom:193.732950px;}
.y22{bottom:196.973700px;}
.y1ef{bottom:199.660725px;}
.y155{bottom:199.944300px;}
.y70{bottom:200.845500px;}
.yc2{bottom:201.022200px;}
.y139{bottom:201.111150px;}
.y1ca{bottom:209.295600px;}
.y4f{bottom:209.852550px;}
.yfd{bottom:210.472500px;}
.y99{bottom:210.829980px;}
.yd7{bottom:210.922050px;}
.y1ab{bottom:211.101960px;}
.y15f{bottom:212.811900px;}
.y21{bottom:213.443850px;}
.y21d{bottom:213.476250px;}
.y18f{bottom:215.692440px;}
.y154{bottom:216.863850px;}
.y1ee{bottom:217.301475px;}
.y6f{bottom:218.125350px;}
.y138{bottom:218.211150px;}
.yc1{bottom:218.302650px;}
.y1c9{bottom:226.936350px;}
.y4e{bottom:227.132400px;}
.yfc{bottom:227.932500px;}
.yd6{bottom:228.022650px;}
.y98{bottom:228.470730px;}
.y129{bottom:229.282950px;}
.y15e{bottom:229.552200px;}
.y20{bottom:229.823100px;}
.y21c{bottom:231.056700px;}
.y18e{bottom:232.432140px;}
.y153{bottom:233.783400px;}
.y1ed{bottom:234.941775px;}
.y137{bottom:235.311750px;}
.y6e{bottom:235.405200px;}
.yc0{bottom:235.582500px;}
.y4d{bottom:244.412250px;}
.y1c8{bottom:244.576650px;}
.yfb{bottom:245.487900px;}
.y128{bottom:246.022650px;}
.y97{bottom:246.111030px;}
.y1f{bottom:246.293250px;}
.y15d{bottom:248.542500px;}
.y21b{bottom:248.637150px;}
.y1aa{bottom:249.801960px;}
.y152{bottom:250.702950px;}
.y136{bottom:252.412350px;}
.y1ec{bottom:252.582525px;}
.ybf{bottom:252.862350px;}
.yd5{bottom:253.042200px;}
.y18d{bottom:255.202890px;}
.y6d{bottom:260.424750px;}
.y4c{bottom:261.692100px;}
.y1c7{bottom:262.126650px;}
.y1e{bottom:262.672500px;}
.yfa{bottom:262.947150px;}
.y96{bottom:263.751330px;}
.y127{bottom:265.102500px;}
.y21a{bottom:266.217600px;}
.y1a9{bottom:266.541660px;}
.y151{bottom:267.622500px;}
.y1eb{bottom:270.222825px;}
.y18c{bottom:272.033340px;}
.y135{bottom:277.702650px;}
.yd4{bottom:277.792200px;}
.ybe{bottom:278.152650px;}
.y4b{bottom:278.881800px;}
.y1c6{bottom:279.766950px;}
.yf9{bottom:280.406850px;}
.y95{bottom:281.301330px;}
.y150{bottom:284.542050px;}
.y18b{bottom:285.083925px;}
.y1ea{bottom:287.232525px;}
.y1d{bottom:287.512800px;}
.y1a8{bottom:289.852560px;}
.y197{bottom:294.532500px;}
.y4a{bottom:296.161650px;}
.y1c5{bottom:297.407700px;}
.yf8{bottom:297.866100px;}
.y6c{bottom:298.404600px;}
.y94{bottom:298.942080px;}
.y219{bottom:301.378500px;}
.y14f{bottom:301.461600px;}
.y1e9{bottom:304.873275px;}
.y1a7{bottom:308.482410px;}
.y49{bottom:313.442100px;}
.y1c4{bottom:315.048000px;}
.y6b{bottom:315.863850px;}
.y134{bottom:316.402650px;}
.yd3{bottom:316.941000px;}
.ybd{bottom:317.217150px;}
.y218{bottom:319.796250px;}
.y1e8{bottom:321.973275px;}
.yf7{bottom:324.326400px;}
.y1c{bottom:325.492650px;}
.y93{bottom:325.581780px;}
.y1a6{bottom:327.112260px;}
.y14e{bottom:327.381750px;}
.y48{bottom:330.721950px;}
.y1c3{bottom:332.598000px;}
.y6a{bottom:333.323550px;}
.yd2{bottom:334.041600px;}
.ybc{bottom:334.317150px;}
.y133{bottom:335.482500px;}
.y1e7{bottom:339.614025px;}
.y1a5{bottom:341.602500px;}
.yf6{bottom:341.785650px;}
.y1b{bottom:341.962200px;}
.y92{bottom:343.131780px;}
.y14d{bottom:344.301300px;}
.y1c2{bottom:350.238300px;}
.y69{bottom:350.783250px;}
.yd1{bottom:351.142200px;}
.ybb{bottom:351.506850px;}
.y47{bottom:355.831650px;}
.y1e6{bottom:357.164025px;}
.y1a{bottom:358.342050px;}
.yf5{bottom:359.335650px;}
.y91{bottom:360.772080px;}
.y14c{bottom:361.220850px;}
.y1c1{bottom:367.879050px;}
.y68{bottom:368.242500px;}
.yd0{bottom:368.331300px;}
.yba{bottom:368.607450px;}
.y1e5{bottom:374.264625px;}
.y19{bottom:374.812200px;}
.y217{bottom:377.560950px;}
.y14b{bottom:378.140400px;}
.y90{bottom:378.412380px;}
.ycf{bottom:385.431900px;}
.y1c0{bottom:385.519350px;}
.y67{bottom:385.702200px;}
.yb9{bottom:385.708050px;}
.yf4{bottom:385.795950px;}
.y18{bottom:391.191450px;}
.y1e4{bottom:391.904925px;}
.y46{bottom:393.722400px;}
.y14a{bottom:395.059950px;}
.y216{bottom:395.141400px;}
.y8f{bottom:396.053130px;}
.y1bf{bottom:403.069350px;}
.y66{bottom:403.252200px;}
.yf3{bottom:403.255200px;}
.y17{bottom:407.661600px;}
.y1e3{bottom:409.545225px;}
.y196{bottom:411.172500px;}
.y45{bottom:411.181650px;}
.yce{bottom:411.531300px;}
.yb8{bottom:411.807450px;}
.y149{bottom:411.979500px;}
.y215{bottom:412.721850px;}
.y1be{bottom:420.710100px;}
.yf2{bottom:420.714450px;}
.y8e{bottom:421.342830px;}
.y16{bottom:424.040850px;}
.y1e2{bottom:427.095225px;}
.ycd{bottom:428.631900px;}
.y44{bottom:428.641350px;}
.yb7{bottom:428.997150px;}
.y214{bottom:430.302300px;}
.y65{bottom:433.491900px;}
.y1bd{bottom:437.810100px;}
.y148{bottom:437.989800px;}
.yf1{bottom:438.174150px;}
.y15{bottom:440.511000px;}
.y1e1{bottom:444.735975px;}
.ycc{bottom:445.821600px;}
.yb6{bottom:446.097150px;}
.y43{bottom:446.101050px;}
.y213{bottom:447.882750px;}
.y64{bottom:450.232200px;}
.y147{bottom:455.090400px;}
.y1bc{bottom:455.450850px;}
.yf0{bottom:455.633400px;}
.y14{bottom:456.981150px;}
.y8d{bottom:460.492830px;}
.y1e0{bottom:461.836575px;}
.ycb{bottom:462.922200px;}
.yb5{bottom:463.197750px;}
.y212{bottom:465.463200px;}
.y63{bottom:469.222500px;}
.y146{bottom:472.280100px;}
.y1bb{bottom:472.460550px;}
.y42{bottom:472.651050px;}
.y13{bottom:473.360400px;}
.y8c{bottom:477.773280px;}
.y116{bottom:478.041885px;}
.y1df{bottom:479.476875px;}
.yca{bottom:480.022200px;}
.yb4{bottom:480.387450px;}
.y195{bottom:481.732500px;}
.yef{bottom:482.184000px;}
.y211{bottom:483.043650px;}
.y145{bottom:489.380700px;}
.y12{bottom:489.830550px;}
.y1ba{bottom:490.100850px;}
.y41{bottom:490.110750px;}
.y8b{bottom:495.053130px;}
.y115{bottom:495.321735px;}
.y1de{bottom:497.026875px;}
.yc9{bottom:497.211900px;}
.yb3{bottom:497.488050px;}
.yee{bottom:499.643700px;}
.y210{bottom:500.624100px;}
.y176{bottom:504.857850px;}
.y11{bottom:506.210400px;}
.y144{bottom:506.480700px;}
.y1b9{bottom:507.201450px;}
.y40{bottom:507.570450px;}
.y8a{bottom:512.332980px;}
.yb2{bottom:514.588650px;}
.y1dd{bottom:514.667175px;}
.yed{bottom:517.103400px;}
.y20f{bottom:518.204550px;}
.y175{bottom:521.598150px;}
.y114{bottom:521.602185px;}
.y143{bottom:523.581300px;}
.y1b8{bottom:524.842200px;}
.y3f{bottom:525.029700px;}
.yc8{bottom:527.452200px;}
.y89{bottom:529.612830px;}
.y10{bottom:531.680550px;}
.y1dc{bottom:532.307925px;}
.yec{bottom:534.562650px;}
.y174{bottom:538.338450px;}
.y113{bottom:538.882035px;}
.y194{bottom:538.972500px;}
.yb1{bottom:540.598950px;}
.y142{bottom:540.771000px;}
.y1b7{bottom:542.482500px;}
.y3e{bottom:542.489400px;}
.yc7{bottom:546.442500px;}
.y88{bottom:546.893850px;}
.yf{bottom:547.971300px;}
.y1db{bottom:549.407925px;}
.yeb{bottom:552.022350px;}
.y112{bottom:556.161885px;}
.yb0{bottom:557.518500px;}
.y141{bottom:557.871600px;}
.y202{bottom:558.389250px;}
.y3d{bottom:559.949100px;}
.y87{bottom:564.083550px;}
.ye{bottom:564.262050px;}
.y173{bottom:564.528150px;}
.y1da{bottom:566.957925px;}
.y1b6{bottom:567.682500px;}
.y111{bottom:573.351585px;}
.yaf{bottom:574.438050px;}
.yea{bottom:577.132050px;}
.y201{bottom:578.481600px;}
.y15c{bottom:580.191900px;}
.yd{bottom:580.552350px;}
.y86{bottom:581.363400px;}
.y172{bottom:581.628750px;}
.y126{bottom:582.890550px;}
.y1d9{bottom:584.598675px;}
.y3c{bottom:586.499100px;}
.y140{bottom:588.111300px;}
.y110{bottom:590.631435px;}
.yae{bottom:591.357600px;}
.yc{bottom:596.843100px;}
.y15b{bottom:596.932200px;}
.y200{bottom:598.573350px;}
.y85{bottom:598.643250px;}
.y171{bottom:598.729350px;}
.y125{bottom:600.080250px;}
.y1d8{bottom:602.238975px;}
.y3b{bottom:603.958350px;}
.y13f{bottom:604.941750px;}
.y1b5{bottom:607.281300px;}
.yad{bottom:608.277150px;}
.yb{bottom:613.133400px;}
.ye9{bottom:615.022800px;}
.y10f{bottom:615.741735px;}
.y18a{bottom:615.833925px;}
.y170{bottom:615.919050px;}
.y15a{bottom:615.922500px;}
.y84{bottom:615.923700px;}
.y124{bottom:617.180250px;}
.y1ff{bottom:618.665700px;}
.y1d7{bottom:619.879725px;}
.y3a{bottom:621.418050px;}
.y62{bottom:622.493850px;}
.y13e{bottom:623.932500px;}
.y1b4{bottom:624.922050px;}
.yac{bottom:625.196700px;}
.y10e{bottom:631.311285px;}
.ye8{bottom:632.482050px;}
.y16f{bottom:633.019050px;}
.y83{bottom:633.203550px;}
.y123{bottom:634.280850px;}
.y189{bottom:634.463175px;}
.y1d6{bottom:637.429725px;}
.ya{bottom:637.974150px;}
.y1fe{bottom:638.758050px;}
.y39{bottom:638.877300px;}
.y61{bottom:639.773700px;}
.yab{bottom:642.116250px;}
.y1b3{bottom:642.562350px;}
.y16e{bottom:650.119650px;}
.y82{bottom:650.483400px;}
.y122{bottom:651.381450px;}
.y188{bottom:653.092425px;}
.y1d5{bottom:655.070025px;}
.y38{bottom:656.337000px;}
.y60{bottom:657.053550px;}
.y1a4{bottom:658.672950px;}
.ye7{bottom:659.032650px;}
.yaa{bottom:659.035800px;}
.y1b2{bottom:660.112350px;}
.y16d{bottom:667.220250px;}
.y81{bottom:667.673100px;}
.y121{bottom:668.571150px;}
.y10d{bottom:668.841135px;}
.y1d4{bottom:672.170625px;}
.y37{bottom:673.887000px;}
.y5f{bottom:674.243250px;}
.ya9{bottom:675.955350px;}
.ye6{bottom:676.492350px;}
.y1a3{bottom:677.302800px;}
.y187{bottom:681.171075px;}
.y16c{bottom:684.409950px;}
.y80{bottom:684.952950px;}
.y1b1{bottom:685.402650px;}
.y120{bottom:685.671750px;}
.y10c{bottom:685.941735px;}
.y9{bottom:685.943700px;}
.y1d3{bottom:689.810925px;}
.y1fa{bottom:690.798150px;}
.y36{bottom:691.346700px;}
.y5e{bottom:691.523100px;}
.ya8{bottom:692.874900px;}
.ye5{bottom:693.951600px;}
.y1a2{bottom:695.932650px;}
.y186{bottom:698.721075px;}
.y16b{bottom:701.509950px;}
.y7f{bottom:702.232800px;}
.y11f{bottom:702.771750px;}
.y10b{bottom:703.042335px;}
.y8{bottom:703.223550px;}
.y1d2{bottom:707.360925px;}
.y1f9{bottom:708.438900px;}
.y5d{bottom:708.802950px;}
.ya7{bottom:709.794450px;}
.y1a1{bottom:714.562500px;}
.y185{bottom:716.361375px;}
.y35{bottom:716.366250px;}
.y16a{bottom:718.610550px;}
.y7e{bottom:719.512650px;}
.y11e{bottom:719.961450px;}
.y10a{bottom:720.231435px;}
.ye4{bottom:720.232050px;}
.y7{bottom:724.103415px;}
.y1b0{bottom:724.999200px;}
.y1d1{bottom:725.001675px;}
.y1f8{bottom:726.079200px;}
.y5c{bottom:726.082800px;}
.y1fd{bottom:727.497150px;}
.y184{bottom:734.002125px;}
.y169{bottom:735.800250px;}
.ya6{bottom:735.893850px;}
.y7d{bottom:736.792500px;}
.y11d{bottom:737.062050px;}
.y109{bottom:737.332035px;}
.ye3{bottom:737.511900px;}
.y6{bottom:741.293055px;}
.y1a0{bottom:742.639500px;}
.y1d0{bottom:742.641975px;}
.y1f7{bottom:743.179800px;}
.y5b{bottom:743.363250px;}
.y1fc{bottom:747.589500px;}
.y183{bottom:751.642425px;}
.y168{bottom:752.900850px;}
.ya5{bottom:753.173700px;}
.y132{bottom:754.072350px;}
.y7c{bottom:754.072950px;}
.y11c{bottom:754.162650px;}
.y34{bottom:754.345500px;}
.y108{bottom:754.431465px;}
.ye2{bottom:754.701600px;}
.y5{bottom:754.793055px;}
.y19f{bottom:760.279800px;}
.y1cf{bottom:760.282725px;}
.y5a{bottom:760.643100px;}
.y1f6{bottom:760.729800px;}
.y182{bottom:769.191840px;}
.y167{bottom:770.001450px;}
.ya4{bottom:770.453550px;}
.y11b{bottom:771.262650px;}
.y107{bottom:771.621165px;}
.y33{bottom:771.805200px;}
.ye1{bottom:771.981450px;}
.y4{bottom:775.672335px;}
.y19e{bottom:777.829800px;}
.y59{bottom:777.832800px;}
.y1f5{bottom:778.370100px;}
.y131{bottom:780.262050px;}
.y7b{bottom:780.262650px;}
.y181{bottom:786.830250px;}
.y166{bottom:787.101450px;}
.ya3{bottom:787.734000px;}
.y106{bottom:788.721165px;}
.ye0{bottom:789.261900px;}
.y32{bottom:789.264450px;}
.y3{bottom:789.352800px;}
.y58{bottom:795.112650px;}
.y19d{bottom:795.470550px;}
.y1f4{bottom:796.010400px;}
.y130{bottom:797.541900px;}
.y7a{bottom:797.542500px;}
.y11a{bottom:797.543100px;}
.y165{bottom:804.291150px;}
.y180{bottom:804.471000px;}
.ya2{bottom:805.013850px;}
.y105{bottom:805.821765px;}
.ydf{bottom:806.541750px;}
.y31{bottom:806.724150px;}
.y19c{bottom:813.110850px;}
.y1f3{bottom:813.651150px;}
.y12f{bottom:814.822350px;}
.y79{bottom:814.822950px;}
.y57{bottom:820.222350px;}
.y17f{bottom:822.111300px;}
.ya1{bottom:822.293700px;}
.y104{bottom:822.922365px;}
.y30{bottom:824.183850px;}
.y2{bottom:827.692500px;}
.y164{bottom:829.310700px;}
.y19b{bottom:830.660850px;}
.y12e{bottom:832.102200px;}
.y78{bottom:832.102800px;}
.yde{bottom:832.641150px;}
.y17e{bottom:839.661300px;}
.y103{bottom:840.112065px;}
.y2f{bottom:841.733850px;}
.y56{bottom:844.972350px;}
.y19a{bottom:848.301600px;}
.ya0{bottom:848.754000px;}
.y77{bottom:849.382650px;}
.ydd{bottom:849.741750px;}
.y102{bottom:857.212665px;}
.y17d{bottom:857.302050px;}
.y2e{bottom:859.193100px;}
.y199{bottom:865.941900px;}
.y9f{bottom:866.213250px;}
.y76{bottom:866.662500px;}
.ydc{bottom:866.931450px;}
.y17c{bottom:874.942350px;}
.y2d{bottom:876.652800px;}
.y198{bottom:883.582650px;}
.y9e{bottom:883.672950px;}
.y75{bottom:883.852200px;}
.y55{bottom:884.032050px;}
.y1{bottom:888.892500px;}
.y17b{bottom:900.232650px;}
.y54{bottom:901.132650px;}
.y2c{bottom:901.763100px;}
.y29{bottom:934.883085px;}
.y2b{bottom:935.152200px;}
.y28{bottom:947.032500px;}
.h13{height:34.748888px;}
.ha{height:34.857949px;}
.h6{height:39.185757px;}
.h4{height:39.188097px;}
.h8{height:39.313477px;}
.hf{height:39.315817px;}
.hd{height:39.318157px;}
.h10{height:39.320497px;}
.he{height:39.322837px;}
.h7{height:43.769004px;}
.h3{height:47.962441px;}
.hb{height:47.988281px;}
.hc{height:48.779297px;}
.h11{height:48.790997px;}
.h9{height:50.062500px;}
.h5{height:54.307617px;}
.h2{height:69.977988px;}
.h1{height:78.626953px;}
.h12{height:789.447000px;}
.h0{height:1020.000000px;}
.w1{width:637.920150px;}
.w0{width:723.000000px;}
.x0{left:0.000000px;}
.x1a{left:42.479850px;}
.x9{left:85.049757px;}
.xa{left:87.000000px;}
.x6{left:106.738887px;}
.xd{left:112.050000px;}
.x16{left:115.290300px;}
.x19{left:138.240750px;}
.x7{left:140.040147px;}
.x2{left:200.520000px;}
.x3{left:201.690117px;}
.x1b{left:236.917650px;}
.x4{left:266.490027px;}
.x1c{left:267.892350px;}
.xc{left:397.170000px;}
.x5{left:412.558887px;}
.x15{left:423.540000px;}
.x17{left:443.430000px;}
.xf{left:511.380000px;}
.x8{left:544.950207px;}
.x10{left:584.550000px;}
.x18{left:587.880000px;}
.x13{left:600.930000px;}
.x11{left:605.790000px;}
.xe{left:615.330000px;}
.x1{left:622.890000px;}
.x14{left:628.558590px;}
.x12{left:637.830000px;}
.xb{left:641.250000px;}
@media print{
.v2{vertical-align:-13.439573pt;}
.v4{vertical-align:-10.560427pt;}
.v5{vertical-align:-5.456267pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.556267pt;}
.v1{vertical-align:13.439573pt;}
.ls20{letter-spacing:-0.628800pt;}
.ls26{letter-spacing:-0.609600pt;}
.ls40{letter-spacing:-0.604800pt;}
.ls3c{letter-spacing:-0.600000pt;}
.ls22{letter-spacing:-0.595200pt;}
.ls1d{letter-spacing:-0.590400pt;}
.ls1f{letter-spacing:-0.585600pt;}
.ls25{letter-spacing:-0.580800pt;}
.ls1e{letter-spacing:-0.571200pt;}
.ls28{letter-spacing:-0.566400pt;}
.ls27{letter-spacing:-0.561600pt;}
.ls3e{letter-spacing:-0.556800pt;}
.ls3d{letter-spacing:-0.552000pt;}
.ls29{letter-spacing:-0.547200pt;}
.ls41{letter-spacing:-0.537600pt;}
.ls23{letter-spacing:-0.528000pt;}
.ls24{letter-spacing:-0.518400pt;}
.ls42{letter-spacing:-0.513600pt;}
.ls3f{letter-spacing:-0.388800pt;}
.ls21{letter-spacing:-0.326400pt;}
.ls53{letter-spacing:-0.249600pt;}
.ls4e{letter-spacing:-0.206400pt;}
.ls71{letter-spacing:-0.158400pt;}
.ls35{letter-spacing:-0.134400pt;}
.ls56{letter-spacing:-0.129600pt;}
.ls43{letter-spacing:-0.120000pt;}
.ls82{letter-spacing:-0.110400pt;}
.ls19{letter-spacing:-0.106880pt;}
.ls4c{letter-spacing:-0.105600pt;}
.ls52{letter-spacing:-0.096000pt;}
.ls54{letter-spacing:-0.091200pt;}
.ls72{letter-spacing:-0.086400pt;}
.ls4d{letter-spacing:-0.081600pt;}
.ls3a{letter-spacing:-0.076800pt;}
.ls4a{letter-spacing:-0.072000pt;}
.ls58{letter-spacing:-0.067200pt;}
.ls44{letter-spacing:-0.062400pt;}
.lse{letter-spacing:-0.059808pt;}
.ls46{letter-spacing:-0.057600pt;}
.ls37{letter-spacing:-0.052800pt;}
.ls4f{letter-spacing:-0.048000pt;}
.ls39{letter-spacing:-0.043200pt;}
.ls18{letter-spacing:-0.042752pt;}
.ls59{letter-spacing:-0.038400pt;}
.ls17{letter-spacing:-0.037408pt;}
.ls45{letter-spacing:-0.033600pt;}
.ls62{letter-spacing:-0.032064pt;}
.ls4b{letter-spacing:-0.028800pt;}
.ls15{letter-spacing:-0.026720pt;}
.ls49{letter-spacing:-0.024000pt;}
.ls2c{letter-spacing:-0.019200pt;}
.ls1a{letter-spacing:-0.016032pt;}
.ls2d{letter-spacing:-0.014400pt;}
.ls16{letter-spacing:-0.010688pt;}
.ls1b{letter-spacing:-0.009600pt;}
.ls14{letter-spacing:-0.005344pt;}
.ls38{letter-spacing:-0.004800pt;}
.ls12{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.004800pt;}
.ls11{letter-spacing:0.005856pt;}
.ls2b{letter-spacing:0.009600pt;}
.ls6{letter-spacing:0.014400pt;}
.ls34{letter-spacing:0.017024pt;}
.ls2e{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.023424pt;}
.lsc{letter-spacing:0.024000pt;}
.ls7b{letter-spacing:0.025600pt;}
.ls13{letter-spacing:0.026720pt;}
.ls7{letter-spacing:0.028800pt;}
.ls9{letter-spacing:0.033600pt;}
.ls32{letter-spacing:0.033653pt;}
.ls3b{letter-spacing:0.034048pt;}
.ls2a{letter-spacing:0.038400pt;}
.ls2{letter-spacing:0.040992pt;}
.ls33{letter-spacing:0.042560pt;}
.ls5{letter-spacing:0.043200pt;}
.lsd{letter-spacing:0.048000pt;}
.lsb{letter-spacing:0.052800pt;}
.lsa{letter-spacing:0.057600pt;}
.ls31{letter-spacing:0.062400pt;}
.ls30{letter-spacing:0.067200pt;}
.ls47{letter-spacing:0.072000pt;}
.ls36{letter-spacing:0.076800pt;}
.ls1c{letter-spacing:0.081600pt;}
.ls51{letter-spacing:0.099200pt;}
.ls70{letter-spacing:0.100800pt;}
.ls4{letter-spacing:0.110187pt;}
.lsf{letter-spacing:0.111264pt;}
.ls78{letter-spacing:0.120000pt;}
.ls3{letter-spacing:0.128832pt;}
.ls2f{letter-spacing:0.129653pt;}
.ls48{letter-spacing:0.158400pt;}
.ls10{letter-spacing:0.160992pt;}
.ls1{letter-spacing:0.161227pt;}
.ls7c{letter-spacing:0.292800pt;}
.ls69{letter-spacing:0.398400pt;}
.ls7d{letter-spacing:0.412800pt;}
.ls61{letter-spacing:0.422400pt;}
.ls50{letter-spacing:0.480000pt;}
.ls5a{letter-spacing:0.512000pt;}
.ls6c{letter-spacing:0.513600pt;}
.ls68{letter-spacing:0.532800pt;}
.ls75{letter-spacing:0.541067pt;}
.ls5e{letter-spacing:0.547200pt;}
.ls7a{letter-spacing:0.556800pt;}
.ls5f{letter-spacing:0.561600pt;}
.ls76{letter-spacing:0.566400pt;}
.ls81{letter-spacing:0.571200pt;}
.ls7e{letter-spacing:0.580800pt;}
.ls63{letter-spacing:0.604800pt;}
.ls6a{letter-spacing:0.609600pt;}
.ls7f{letter-spacing:0.614400pt;}
.ls6b{letter-spacing:0.619200pt;}
.ls6e{letter-spacing:0.628800pt;}
.ls5d{letter-spacing:0.633600pt;}
.ls86{letter-spacing:0.636326pt;}
.ls85{letter-spacing:0.636393pt;}
.ls77{letter-spacing:0.638400pt;}
.ls6d{letter-spacing:0.643200pt;}
.ls6f{letter-spacing:0.648000pt;}
.ls80{letter-spacing:0.652800pt;}
.ls60{letter-spacing:0.657600pt;}
.ls5c{letter-spacing:0.662400pt;}
.ls84{letter-spacing:0.667200pt;}
.ls5b{letter-spacing:0.669067pt;}
.ls65{letter-spacing:0.672000pt;}
.ls79{letter-spacing:0.681600pt;}
.ls67{letter-spacing:0.691200pt;}
.ls73{letter-spacing:0.696000pt;}
.ls64{letter-spacing:0.705600pt;}
.ls74{letter-spacing:0.769227pt;}
.ls55{letter-spacing:1.761600pt;}
.ls57{letter-spacing:3.998400pt;}
.ls83{letter-spacing:8.797920pt;}
.ls66{letter-spacing:11.678400pt;}
.ws0{word-spacing:-23.242464pt;}
.ws48{word-spacing:-19.008000pt;}
.ws46{word-spacing:-18.960000pt;}
.ws4{word-spacing:-18.369600pt;}
.ws1{word-spacing:-14.768832pt;}
.ws22a{word-spacing:-12.561600pt;}
.ws255{word-spacing:-12.221268pt;}
.ws22b{word-spacing:-12.120000pt;}
.ws24a{word-spacing:-12.004800pt;}
.wsf4{word-spacing:-12.000000pt;}
.ws47{word-spacing:-11.985600pt;}
.ws17a{word-spacing:-11.908800pt;}
.ws254{word-spacing:-11.584875pt;}
.ws2{word-spacing:-9.520992pt;}
.ws3{word-spacing:-8.640000pt;}
.ws14c{word-spacing:-8.099200pt;}
.ws229{word-spacing:-8.025600pt;}
.wsba{word-spacing:-8.000000pt;}
.ws179{word-spacing:-7.904000pt;}
.ws1f6{word-spacing:-1.052768pt;}
.ws9{word-spacing:-0.245952pt;}
.ws203{word-spacing:-0.225600pt;}
.ws1ba{word-spacing:-0.216000pt;}
.ws6d{word-spacing:-0.211200pt;}
.ws132{word-spacing:-0.206400pt;}
.ws16a{word-spacing:-0.172800pt;}
.wsc7{word-spacing:-0.168000pt;}
.ws88{word-spacing:-0.163200pt;}
.ws1d2{word-spacing:-0.148800pt;}
.wsfb{word-spacing:-0.139200pt;}
.ws1b1{word-spacing:-0.128256pt;}
.ws140{word-spacing:-0.122912pt;}
.ws1ea{word-spacing:-0.117568pt;}
.ws12{word-spacing:-0.112224pt;}
.ws36{word-spacing:-0.101536pt;}
.ws89{word-spacing:-0.085504pt;}
.ws222{word-spacing:-0.072000pt;}
.ws1f0{word-spacing:-0.062400pt;}
.ws8{word-spacing:-0.046848pt;}
.ws49{word-spacing:-0.025536pt;}
.ws85{word-spacing:-0.017024pt;}
.ws5{word-spacing:0.000000pt;}
.ws15c{word-spacing:0.024000pt;}
.ws7{word-spacing:0.040992pt;}
.wsa{word-spacing:0.053440pt;}
.ws6{word-spacing:0.058560pt;}
.ws35{word-spacing:0.067200pt;}
.ws8d{word-spacing:0.072000pt;}
.ws1c{word-spacing:0.076800pt;}
.wsf{word-spacing:0.080160pt;}
.ws194{word-spacing:0.081600pt;}
.wsb{word-spacing:0.085504pt;}
.ws34{word-spacing:0.086400pt;}
.wsd{word-spacing:0.090848pt;}
.ws5b{word-spacing:0.091200pt;}
.ws4a{word-spacing:0.096000pt;}
.ws5a{word-spacing:0.100800pt;}
.wsc3{word-spacing:0.105600pt;}
.wsc{word-spacing:0.106880pt;}
.ws8c{word-spacing:0.110400pt;}
.wscf{word-spacing:0.115200pt;}
.wse{word-spacing:0.117568pt;}
.ws9f{word-spacing:0.120000pt;}
.ws10{word-spacing:0.122912pt;}
.wsdf{word-spacing:0.124800pt;}
.ws56{word-spacing:0.129600pt;}
.ws45{word-spacing:0.134400pt;}
.ws6c{word-spacing:0.139200pt;}
.ws81{word-spacing:0.144000pt;}
.ws62{word-spacing:0.148800pt;}
.wsa0{word-spacing:0.153600pt;}
.ws58{word-spacing:0.158400pt;}
.wse2{word-spacing:0.163200pt;}
.ws1b{word-spacing:0.168000pt;}
.ws57{word-spacing:0.172800pt;}
.ws189{word-spacing:0.177600pt;}
.ws72{word-spacing:0.182400pt;}
.ws11{word-spacing:0.187040pt;}
.ws141{word-spacing:0.187200pt;}
.ws1d4{word-spacing:0.192000pt;}
.ws1e9{word-spacing:0.196800pt;}
.ws1e8{word-spacing:0.211200pt;}
.ws120{word-spacing:0.216000pt;}
.ws1d5{word-spacing:0.225600pt;}
.ws1d3{word-spacing:0.230400pt;}
.ws1ef{word-spacing:0.240000pt;}
.ws224{word-spacing:0.244800pt;}
.ws1b0{word-spacing:0.288000pt;}
.ws166{word-spacing:0.364800pt;}
.ws25{word-spacing:0.369600pt;}
.ws1a9{word-spacing:0.408000pt;}
.ws19d{word-spacing:0.417600pt;}
.ws24{word-spacing:0.432000pt;}
.ws131{word-spacing:0.436800pt;}
.wsb3{word-spacing:0.441600pt;}
.ws14e{word-spacing:0.451200pt;}
.ws128{word-spacing:0.456000pt;}
.ws130{word-spacing:0.460800pt;}
.wsb4{word-spacing:0.465600pt;}
.ws12f{word-spacing:0.470400pt;}
.ws14f{word-spacing:0.475200pt;}
.ws129{word-spacing:0.480000pt;}
.ws1a8{word-spacing:0.484800pt;}
.wsd5{word-spacing:0.643200pt;}
.ws78{word-spacing:0.734400pt;}
.ws7a{word-spacing:0.739200pt;}
.wsd4{word-spacing:0.744000pt;}
.ws23{word-spacing:0.753600pt;}
.ws1b5{word-spacing:0.758400pt;}
.wsd6{word-spacing:0.763200pt;}
.ws15d{word-spacing:0.768000pt;}
.ws64{word-spacing:0.772800pt;}
.wsa6{word-spacing:0.777600pt;}
.ws67{word-spacing:0.782400pt;}
.ws79{word-spacing:0.787200pt;}
.ws15e{word-spacing:0.796800pt;}
.ws63{word-spacing:0.806400pt;}
.wsa7{word-spacing:0.820800pt;}
.ws158{word-spacing:1.046400pt;}
.ws23b{word-spacing:1.070400pt;}
.ws1d6{word-spacing:1.075200pt;}
.ws165{word-spacing:1.084800pt;}
.ws101{word-spacing:1.089600pt;}
.ws157{word-spacing:1.104000pt;}
.ws14a{word-spacing:1.108800pt;}
.ws102{word-spacing:1.113600pt;}
.ws1d7{word-spacing:1.123200pt;}
.ws14b{word-spacing:1.132800pt;}
.ws23c{word-spacing:1.176000pt;}
.ws8b{word-spacing:1.368000pt;}
.ws23d{word-spacing:1.387200pt;}
.ws1d9{word-spacing:1.392000pt;}
.ws8a{word-spacing:1.401600pt;}
.wsaa{word-spacing:1.406400pt;}
.wsa8{word-spacing:1.411200pt;}
.wsd9{word-spacing:1.416000pt;}
.ws14d{word-spacing:1.425600pt;}
.wsda{word-spacing:1.440000pt;}
.wsa9{word-spacing:1.560000pt;}
.ws207{word-spacing:1.684800pt;}
.ws242{word-spacing:1.699200pt;}
.ws3d{word-spacing:1.704000pt;}
.wsf7{word-spacing:1.708800pt;}
.wsa5{word-spacing:1.718400pt;}
.wsbf{word-spacing:1.723200pt;}
.ws3c{word-spacing:1.728000pt;}
.wsa4{word-spacing:1.732800pt;}
.wsef{word-spacing:1.737600pt;}
.wsee{word-spacing:1.747200pt;}
.wsbb{word-spacing:1.756800pt;}
.wsbe{word-spacing:1.771200pt;}
.ws206{word-spacing:1.776000pt;}
.ws1d8{word-spacing:1.819200pt;}
.ws9c{word-spacing:1.953600pt;}
.ws9e{word-spacing:2.001600pt;}
.ws9d{word-spacing:2.011200pt;}
.ws42{word-spacing:2.025600pt;}
.ws210{word-spacing:2.030400pt;}
.ws211{word-spacing:2.064000pt;}
.ws112{word-spacing:2.068800pt;}
.ws111{word-spacing:2.078400pt;}
.ws24f{word-spacing:2.342400pt;}
.ws1ec{word-spacing:2.356800pt;}
.wsf0{word-spacing:2.361600pt;}
.ws1b4{word-spacing:2.371200pt;}
.wsdb{word-spacing:2.376000pt;}
.wsdc{word-spacing:2.385600pt;}
.wsf1{word-spacing:2.395200pt;}
.ws22{word-spacing:2.404800pt;}
.ws202{word-spacing:2.409600pt;}
.ws29{word-spacing:2.659200pt;}
.ws20{word-spacing:2.664000pt;}
.ws28{word-spacing:2.673600pt;}
.wsce{word-spacing:2.678400pt;}
.ws1a5{word-spacing:2.683200pt;}
.ws1a4{word-spacing:2.688000pt;}
.ws80{word-spacing:2.692800pt;}
.ws182{word-spacing:2.697600pt;}
.wscd{word-spacing:2.702400pt;}
.ws21{word-spacing:2.707200pt;}
.ws135{word-spacing:2.712000pt;}
.ws17f{word-spacing:2.716800pt;}
.ws181{word-spacing:2.721600pt;}
.ws17d{word-spacing:2.726400pt;}
.ws17e{word-spacing:2.769600pt;}
.ws22f{word-spacing:2.803200pt;}
.ws191{word-spacing:2.812800pt;}
.ws249{word-spacing:2.832000pt;}
.ws1b3{word-spacing:2.990400pt;}
.ws3b{word-spacing:3.004800pt;}
.ws20b{word-spacing:3.014400pt;}
.ws1b2{word-spacing:3.043200pt;}
.ws22e{word-spacing:3.062400pt;}
.ws22d{word-spacing:3.076800pt;}
.ws91{word-spacing:3.268800pt;}
.ws97{word-spacing:3.283200pt;}
.ws90{word-spacing:3.288000pt;}
.wsac{word-spacing:3.302400pt;}
.ws96{word-spacing:3.316800pt;}
.ws186{word-spacing:3.326400pt;}
.ws10c{word-spacing:3.336000pt;}
.ws126{word-spacing:3.340800pt;}
.ws127{word-spacing:3.345600pt;}
.ws19c{word-spacing:3.350400pt;}
.wsab{word-spacing:3.360000pt;}
.wsca{word-spacing:3.369600pt;}
.wscb{word-spacing:3.379200pt;}
.ws150{word-spacing:3.403200pt;}
.ws212{word-spacing:3.412800pt;}
.ws233{word-spacing:3.633600pt;}
.ws3e{word-spacing:3.643200pt;}
.ws1f7{word-spacing:3.648000pt;}
.ws59{word-spacing:3.657600pt;}
.ws71{word-spacing:3.662400pt;}
.ws187{word-spacing:3.667200pt;}
.wsc1{word-spacing:3.672000pt;}
.ws16f{word-spacing:3.676800pt;}
.wsc0{word-spacing:3.696000pt;}
.ws3f{word-spacing:3.700800pt;}
.ws234{word-spacing:3.720000pt;}
.ws1f4{word-spacing:3.758400pt;}
.ws1f3{word-spacing:3.772800pt;}
.ws82{word-spacing:3.945600pt;}
.ws51{word-spacing:3.950400pt;}
.ws199{word-spacing:3.955200pt;}
.ws1c1{word-spacing:3.969600pt;}
.ws148{word-spacing:3.974400pt;}
.ws18f{word-spacing:3.979200pt;}
.ws149{word-spacing:3.984000pt;}
.ws167{word-spacing:3.988800pt;}
.ws43{word-spacing:3.993600pt;}
.ws190{word-spacing:3.998400pt;}
.ws44{word-spacing:4.012800pt;}
.ws1ff{word-spacing:4.032000pt;}
.ws168{word-spacing:4.046400pt;}
.ws1de{word-spacing:4.262400pt;}
.ws2a{word-spacing:4.267200pt;}
.ws2b{word-spacing:4.276800pt;}
.ws12c{word-spacing:4.281600pt;}
.ws145{word-spacing:4.286400pt;}
.ws118{word-spacing:4.291200pt;}
.wse1{word-spacing:4.296000pt;}
.ws12b{word-spacing:4.305600pt;}
.ws20d{word-spacing:4.310400pt;}
.wse0{word-spacing:4.315200pt;}
.ws19f{word-spacing:4.324800pt;}
.ws20c{word-spacing:4.329600pt;}
.ws19e{word-spacing:4.339200pt;}
.ws119{word-spacing:4.425600pt;}
.ws124{word-spacing:4.574400pt;}
.ws24b{word-spacing:4.584000pt;}
.ws73{word-spacing:4.598400pt;}
.wsd1{word-spacing:4.603200pt;}
.ws139{word-spacing:4.608000pt;}
.ws6f{word-spacing:4.612800pt;}
.ws103{word-spacing:4.617600pt;}
.ws123{word-spacing:4.622400pt;}
.ws13a{word-spacing:4.632000pt;}
.ws183{word-spacing:4.641600pt;}
.ws6e{word-spacing:4.646400pt;}
.ws1c4{word-spacing:4.651200pt;}
.ws12d{word-spacing:4.656000pt;}
.ws1c5{word-spacing:4.660800pt;}
.ws238{word-spacing:4.665600pt;}
.ws24d{word-spacing:4.900800pt;}
.wsc8{word-spacing:4.905600pt;}
.ws1a{word-spacing:4.915200pt;}
.ws1c7{word-spacing:4.929600pt;}
.ws24e{word-spacing:4.948800pt;}
.wsc9{word-spacing:5.001600pt;}
.ws237{word-spacing:5.020800pt;}
.ws239{word-spacing:5.035200pt;}
.ws74{word-spacing:5.222400pt;}
.wsb1{word-spacing:5.227200pt;}
.ws1dc{word-spacing:5.236800pt;}
.ws208{word-spacing:5.241600pt;}
.wsf8{word-spacing:5.246400pt;}
.ws41{word-spacing:5.251200pt;}
.ws40{word-spacing:5.256000pt;}
.wsde{word-spacing:5.260800pt;}
.ws75{word-spacing:5.265600pt;}
.wsdd{word-spacing:5.270400pt;}
.wsfa{word-spacing:5.275200pt;}
.ws223{word-spacing:5.280000pt;}
.ws1ac{word-spacing:5.284800pt;}
.ws152{word-spacing:5.299200pt;}
.wsb2{word-spacing:5.342400pt;}
.wsf9{word-spacing:5.352000pt;}
.ws12a{word-spacing:5.548800pt;}
.ws146{word-spacing:5.553600pt;}
.ws14{word-spacing:5.558400pt;}
.ws5e{word-spacing:5.563200pt;}
.ws70{word-spacing:5.568000pt;}
.wsd2{word-spacing:5.577600pt;}
.ws133{word-spacing:5.582400pt;}
.wsd3{word-spacing:5.587200pt;}
.ws147{word-spacing:5.592000pt;}
.ws13{word-spacing:5.601600pt;}
.ws1fd{word-spacing:5.707200pt;}
.ws26{word-spacing:5.798400pt;}
.ws1fe{word-spacing:5.841600pt;}
.ws27{word-spacing:5.851200pt;}
.ws1f9{word-spacing:5.870400pt;}
.wsbd{word-spacing:5.875200pt;}
.ws1f8{word-spacing:5.889600pt;}
.ws55{word-spacing:5.894400pt;}
.wscc{word-spacing:5.899200pt;}
.wsbc{word-spacing:5.904000pt;}
.ws1a6{word-spacing:5.908800pt;}
.ws1a7{word-spacing:5.913600pt;}
.ws54{word-spacing:5.918400pt;}
.ws20e{word-spacing:5.923200pt;}
.ws1be{word-spacing:5.932800pt;}
.ws251{word-spacing:6.172800pt;}
.ws2e{word-spacing:6.177600pt;}
.ws2f{word-spacing:6.182400pt;}
.ws209{word-spacing:6.192000pt;}
.ws220{word-spacing:6.196800pt;}
.ws16d{word-spacing:6.201600pt;}
.ws65{word-spacing:6.206400pt;}
.ws1af{word-spacing:6.216000pt;}
.ws83{word-spacing:6.220800pt;}
.ws66{word-spacing:6.230400pt;}
.ws1ad{word-spacing:6.244800pt;}
.ws16e{word-spacing:6.254400pt;}
.ws1ae{word-spacing:6.259200pt;}
.ws221{word-spacing:6.283200pt;}
.ws52{word-spacing:6.484800pt;}
.ws20a{word-spacing:6.489600pt;}
.ws193{word-spacing:6.518400pt;}
.ws11b{word-spacing:6.523200pt;}
.ws77{word-spacing:6.528000pt;}
.ws11a{word-spacing:6.532800pt;}
.ws53{word-spacing:6.537600pt;}
.ws192{word-spacing:6.542400pt;}
.ws12e{word-spacing:6.547200pt;}
.ws18e{word-spacing:6.585600pt;}
.ws250{word-spacing:6.590400pt;}
.ws18b{word-spacing:6.811200pt;}
.wsfe{word-spacing:6.830400pt;}
.ws1a1{word-spacing:6.835200pt;}
.ws76{word-spacing:6.844800pt;}
.ws18a{word-spacing:6.849600pt;}
.ws23f{word-spacing:6.854400pt;}
.ws240{word-spacing:6.859200pt;}
.ws1df{word-spacing:6.864000pt;}
.ws3a{word-spacing:6.868800pt;}
.ws39{word-spacing:6.873600pt;}
.wseb{word-spacing:6.878400pt;}
.wsea{word-spacing:6.883200pt;}
.ws15f{word-spacing:6.888000pt;}
.ws241{word-spacing:6.916800pt;}
.ws11c{word-spacing:6.921600pt;}
.ws94{word-spacing:7.089600pt;}
.ws92{word-spacing:7.118400pt;}
.ws95{word-spacing:7.152000pt;}
.ws10b{word-spacing:7.156800pt;}
.ws188{word-spacing:7.161600pt;}
.wsf2{word-spacing:7.166400pt;}
.ws1bd{word-spacing:7.176000pt;}
.ws10e{word-spacing:7.180800pt;}
.ws10d{word-spacing:7.185600pt;}
.ws218{word-spacing:7.190400pt;}
.wsf3{word-spacing:7.195200pt;}
.ws10f{word-spacing:7.200000pt;}
.ws185{word-spacing:7.214400pt;}
.ws1d1{word-spacing:7.248000pt;}
.ws184{word-spacing:7.262400pt;}
.ws93{word-spacing:7.267200pt;}
.ws9a{word-spacing:7.464000pt;}
.ws9b{word-spacing:7.483200pt;}
.wsfd{word-spacing:7.488000pt;}
.ws161{word-spacing:7.497600pt;}
.wsfc{word-spacing:7.502400pt;}
.ws160{word-spacing:7.507200pt;}
.ws169{word-spacing:7.512000pt;}
.ws11e{word-spacing:7.776000pt;}
.ws11d{word-spacing:7.785600pt;}
.ws1fb{word-spacing:7.790400pt;}
.ws151{word-spacing:7.795200pt;}
.ws1b9{word-spacing:7.809600pt;}
.ws1cc{word-spacing:7.814400pt;}
.ws1a3{word-spacing:7.819200pt;}
.ws159{word-spacing:7.824000pt;}
.ws1cd{word-spacing:7.833600pt;}
.ws15a{word-spacing:7.838400pt;}
.ws174{word-spacing:7.872000pt;}
.ws1fa{word-spacing:7.876800pt;}
.ws1a2{word-spacing:7.881600pt;}
.ws50{word-spacing:8.112000pt;}
.ws5c{word-spacing:8.116800pt;}
.ws10a{word-spacing:8.121600pt;}
.ws1bf{word-spacing:8.126400pt;}
.ws1c0{word-spacing:8.131200pt;}
.ws4f{word-spacing:8.140800pt;}
.ws5d{word-spacing:8.155200pt;}
.ws162{word-spacing:8.164800pt;}
.ws178{word-spacing:8.169600pt;}
.ws1e6{word-spacing:8.174400pt;}
.ws177{word-spacing:8.203200pt;}
.ws13e{word-spacing:8.433600pt;}
.ws113{word-spacing:8.443200pt;}
.ws173{word-spacing:8.448000pt;}
.ws172{word-spacing:8.457600pt;}
.ws1bc{word-spacing:8.472000pt;}
.ws13d{word-spacing:8.476800pt;}
.ws1bb{word-spacing:8.481600pt;}
.ws115{word-spacing:8.496000pt;}
.ws1c6{word-spacing:8.500800pt;}
.wsa2{word-spacing:8.740800pt;}
.ws5f{word-spacing:8.750400pt;}
.ws60{word-spacing:8.760000pt;}
.wsff{word-spacing:8.764800pt;}
.ws117{word-spacing:8.774400pt;}
.ws100{word-spacing:8.779200pt;}
.ws116{word-spacing:8.784000pt;}
.wsa1{word-spacing:8.788800pt;}
.ws24c{word-spacing:8.793600pt;}
.ws84{word-spacing:8.798400pt;}
.wsd0{word-spacing:9.057600pt;}
.ws69{word-spacing:9.067200pt;}
.wsc6{word-spacing:9.086400pt;}
.ws87{word-spacing:9.096000pt;}
.ws86{word-spacing:9.105600pt;}
.ws68{word-spacing:9.115200pt;}
.ws1a0{word-spacing:9.124800pt;}
.ws99{word-spacing:9.336000pt;}
.ws137{word-spacing:9.379200pt;}
.wsc2{word-spacing:9.393600pt;}
.ws98{word-spacing:9.403200pt;}
.wsae{word-spacing:9.408000pt;}
.ws136{word-spacing:9.422400pt;}
.wsad{word-spacing:9.427200pt;}
.ws156{word-spacing:9.432000pt;}
.ws138{word-spacing:9.441600pt;}
.ws155{word-spacing:9.446400pt;}
.ws214{word-spacing:9.504000pt;}
.ws4c{word-spacing:9.705600pt;}
.ws219{word-spacing:9.710400pt;}
.ws21a{word-spacing:9.715200pt;}
.ws4b{word-spacing:9.720000pt;}
.ws1b6{word-spacing:9.744000pt;}
.ws21b{word-spacing:9.758400pt;}
.ws7c{word-spacing:10.022400pt;}
.ws7e{word-spacing:10.046400pt;}
.wsb9{word-spacing:10.065600pt;}
.ws7d{word-spacing:10.070400pt;}
.ws7f{word-spacing:10.080000pt;}
.wsb8{word-spacing:10.137600pt;}
.ws2d{word-spacing:10.339200pt;}
.ws16b{word-spacing:10.348800pt;}
.ws11f{word-spacing:10.358400pt;}
.ws38{word-spacing:10.363200pt;}
.ws2c{word-spacing:10.368000pt;}
.ws37{word-spacing:10.372800pt;}
.ws16c{word-spacing:10.449600pt;}
.ws1e{word-spacing:10.651200pt;}
.ws1d{word-spacing:10.670400pt;}
.ws217{word-spacing:10.689600pt;}
.ws1c8{word-spacing:10.699200pt;}
.wse7{word-spacing:10.723200pt;}
.wse8{word-spacing:10.728000pt;}
.wse9{word-spacing:10.742400pt;}
.ws134{word-spacing:10.996800pt;}
.wsed{word-spacing:11.006400pt;}
.wsec{word-spacing:11.044800pt;}
.ws1f{word-spacing:11.304000pt;}
.ws106{word-spacing:11.337600pt;}
.ws107{word-spacing:11.342400pt;}
.ws4d{word-spacing:11.659200pt;}
.ws144{word-spacing:11.664000pt;}
.ws4e{word-spacing:11.673600pt;}
.ws235{word-spacing:11.707200pt;}
.ws236{word-spacing:11.908800pt;}
.ws19b{word-spacing:11.932800pt;}
.ws21d{word-spacing:11.947200pt;}
.ws1eb{word-spacing:11.956800pt;}
.wse3{word-spacing:11.966400pt;}
.ws21c{word-spacing:11.971200pt;}
.ws1ca{word-spacing:11.980800pt;}
.ws143{word-spacing:11.990400pt;}
.ws1cb{word-spacing:11.995200pt;}
.ws142{word-spacing:12.000000pt;}
.ws122{word-spacing:12.240000pt;}
.ws121{word-spacing:12.278400pt;}
.ws230{word-spacing:12.297600pt;}
.ws1e4{word-spacing:12.307200pt;}
.ws19a{word-spacing:12.312000pt;}
.ws1e5{word-spacing:12.321600pt;}
.ws231{word-spacing:12.331200pt;}
.ws232{word-spacing:12.345600pt;}
.ws30{word-spacing:12.561600pt;}
.ws227{word-spacing:12.585600pt;}
.ws31{word-spacing:12.609600pt;}
.ws163{word-spacing:12.624000pt;}
.wsd7{word-spacing:12.633600pt;}
.ws164{word-spacing:12.648000pt;}
.wsd8{word-spacing:12.652800pt;}
.ws228{word-spacing:12.676800pt;}
.ws13f{word-spacing:12.916800pt;}
.ws1b7{word-spacing:12.921600pt;}
.wsaf{word-spacing:12.945600pt;}
.wsb0{word-spacing:12.974400pt;}
.ws195{word-spacing:13.272000pt;}
.ws1ab{word-spacing:13.286400pt;}
.ws196{word-spacing:13.310400pt;}
.ws105{word-spacing:13.555200pt;}
.ws1c2{word-spacing:13.560000pt;}
.ws15b{word-spacing:13.886400pt;}
.ws154{word-spacing:13.896000pt;}
.ws153{word-spacing:13.905600pt;}
.ws1f5{word-spacing:14.136000pt;}
.ws1e0{word-spacing:14.174400pt;}
.ws1e1{word-spacing:14.212800pt;}
.ws15{word-spacing:14.227200pt;}
.ws16{word-spacing:14.251200pt;}
.ws213{word-spacing:14.529600pt;}
.ws247{word-spacing:14.827200pt;}
.wse5{word-spacing:14.836800pt;}
.wsf6{word-spacing:14.841600pt;}
.wse4{word-spacing:14.846400pt;}
.wsf5{word-spacing:14.856000pt;}
.ws198{word-spacing:14.865600pt;}
.ws1b8{word-spacing:14.880000pt;}
.wse6{word-spacing:14.889600pt;}
.ws197{word-spacing:14.894400pt;}
.ws104{word-spacing:14.913600pt;}
.ws248{word-spacing:14.937600pt;}
.ws23a{word-spacing:14.947200pt;}
.ws6b{word-spacing:15.153600pt;}
.ws245{word-spacing:15.158400pt;}
.ws7b{word-spacing:15.168000pt;}
.ws6a{word-spacing:15.177600pt;}
.ws246{word-spacing:15.187200pt;}
.ws201{word-spacing:15.196800pt;}
.ws200{word-spacing:15.326400pt;}
.ws32{word-spacing:15.470400pt;}
.ws110{word-spacing:15.528000pt;}
.ws33{word-spacing:15.796800pt;}
.ws180{word-spacing:15.806400pt;}
.ws215{word-spacing:15.830400pt;}
.ws216{word-spacing:15.878400pt;}
.ws1f1{word-spacing:16.137600pt;}
.ws1f2{word-spacing:16.166400pt;}
.ws8e{word-spacing:16.392000pt;}
.ws8f{word-spacing:16.401600pt;}
.ws17c{word-spacing:16.444800pt;}
.ws243{word-spacing:16.454400pt;}
.ws1db{word-spacing:16.464000pt;}
.ws17b{word-spacing:16.468800pt;}
.ws244{word-spacing:16.483200pt;}
.ws1da{word-spacing:16.497600pt;}
.wsb6{word-spacing:16.780800pt;}
.wsb5{word-spacing:16.790400pt;}
.wsb7{word-spacing:16.833600pt;}
.ws18{word-spacing:17.073600pt;}
.ws176{word-spacing:17.078400pt;}
.ws17{word-spacing:17.088000pt;}
.ws61{word-spacing:17.097600pt;}
.ws1aa{word-spacing:17.164800pt;}
.ws175{word-spacing:17.179200pt;}
.ws1dd{word-spacing:17.371200pt;}
.ws22c{word-spacing:17.716800pt;}
.ws1cf{word-spacing:17.721600pt;}
.ws1ce{word-spacing:17.803200pt;}
.ws1e3{word-spacing:18.052800pt;}
.ws1e2{word-spacing:18.081600pt;}
.ws226{word-spacing:18.393600pt;}
.ws225{word-spacing:18.710400pt;}
.ws1ee{word-spacing:19.286400pt;}
.ws1ed{word-spacing:19.315200pt;}
.ws125{word-spacing:19.646400pt;}
.ws19{word-spacing:19.680000pt;}
.ws205{word-spacing:19.939200pt;}
.ws204{word-spacing:19.977600pt;}
.ws109{word-spacing:20.246400pt;}
.ws108{word-spacing:20.347200pt;}
.wsa3{word-spacing:20.587200pt;}
.ws13b{word-spacing:21.878400pt;}
.ws13c{word-spacing:21.892800pt;}
.ws114{word-spacing:22.228800pt;}
.ws1c3{word-spacing:22.516800pt;}
.ws1d0{word-spacing:23.164800pt;}
.ws18d{word-spacing:23.476800pt;}
.ws18c{word-spacing:23.505600pt;}
.ws252{word-spacing:23.812800pt;}
.ws1fc{word-spacing:23.846400pt;}
.ws253{word-spacing:24.000000pt;}
.ws1c9{word-spacing:24.105600pt;}
.wsc4{word-spacing:24.134400pt;}
.wsc5{word-spacing:24.168000pt;}
.ws171{word-spacing:26.664000pt;}
.ws170{word-spacing:26.692800pt;}
.ws20f{word-spacing:27.993600pt;}
.ws1e7{word-spacing:30.840000pt;}
.ws21e{word-spacing:31.483200pt;}
.ws21f{word-spacing:49.728000pt;}
.ws23e{word-spacing:177.120000pt;}
._9{margin-left:-11.935392pt;}
._8{margin-left:-11.029968pt;}
._3{margin-left:-9.601284pt;}
._7{margin-left:-7.278580pt;}
._4{margin-left:-6.195656pt;}
._6{margin-left:-4.065950pt;}
._2{margin-left:-2.342249pt;}
._0{margin-left:-0.978158pt;}
._1{width:1.182548pt;}
._a{width:2.134036pt;}
._5{width:17.126933pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.440000pt;}
.fsb{font-size:41.672213pt;}
.fs8{font-size:42.560000pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs9{font-size:64.000000pt;}
.fs1{font-size:85.440000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y209{bottom:3.720667pt;}
.y208{bottom:19.347733pt;}
.y20e{bottom:20.835600pt;}
.y207{bottom:34.974800pt;}
.y20d{bottom:36.462667pt;}
.y27{bottom:41.333333pt;}
.y206{bottom:50.601867pt;}
.y2a{bottom:60.286400pt;}
.y205{bottom:66.228933pt;}
.y20c{bottom:66.229067pt;}
.y204{bottom:81.856000pt;}
.y20b{bottom:81.856133pt;}
.y203{bottom:98.227333pt;}
.y20a{bottom:98.227467pt;}
.y26{bottom:116.689333pt;}
.y119{bottom:117.006133pt;}
.y101{bottom:117.008000pt;}
.y9d{bottom:117.164827pt;}
.y74{bottom:117.169467pt;}
.y163{bottom:117.247867pt;}
.yc6{bottom:117.327067pt;}
.y53{bottom:117.414267pt;}
.y17a{bottom:117.646533pt;}
.y159{bottom:117.649067pt;}
.y12d{bottom:117.727467pt;}
.y13d{bottom:117.804933pt;}
.y193{bottom:117.807227pt;}
.y1af{bottom:118.204987pt;}
.ydb{bottom:118.606533pt;}
.y1ce{bottom:123.879467pt;}
.y1f2{bottom:130.515667pt;}
.y25{bottom:131.328933pt;}
.y118{bottom:131.886400pt;}
.y162{bottom:132.287467pt;}
.y73{bottom:132.449200pt;}
.y179{bottom:132.526267pt;}
.y100{bottom:132.527733pt;}
.y158{bottom:132.609467pt;}
.y52{bottom:132.614800pt;}
.y9c{bottom:132.684560pt;}
.yc5{bottom:132.686933pt;}
.y13c{bottom:133.084667pt;}
.y12c{bottom:133.087333pt;}
.y192{bottom:133.486973pt;}
.yda{bottom:133.807067pt;}
.y1ae{bottom:133.885653pt;}
.y1cd{bottom:139.559733pt;}
.y24{bottom:145.888267pt;}
.y1f1{bottom:146.195933pt;}
.y161{bottom:147.327067pt;}
.y157{bottom:147.649067pt;}
.y72{bottom:147.809067pt;}
.y51{bottom:147.815333pt;}
.yc4{bottom:148.046800pt;}
.yff{bottom:148.047067pt;}
.y9b{bottom:148.203893pt;}
.y13b{bottom:148.285200pt;}
.y12b{bottom:148.447200pt;}
.y117{bottom:148.766667pt;}
.y191{bottom:149.167240pt;}
.y1ad{bottom:149.485653pt;}
.y178{bottom:153.566400pt;}
.y1cc{bottom:155.240000pt;}
.yd9{bottom:157.006533pt;}
.y23{bottom:160.528400pt;}
.y1f0{bottom:161.876200pt;}
.y160{bottom:162.366667pt;}
.y156{bottom:162.688667pt;}
.y71{bottom:163.169467pt;}
.yc3{bottom:163.326533pt;}
.y13a{bottom:163.485733pt;}
.y9a{bottom:163.803893pt;}
.y190{bottom:164.846347pt;}
.y1ac{bottom:165.165920pt;}
.y1fb{bottom:167.176000pt;}
.y177{bottom:167.646667pt;}
.y1cb{bottom:170.440533pt;}
.y12a{bottom:170.767467pt;}
.y50{bottom:171.175733pt;}
.yfe{bottom:171.567333pt;}
.yd8{bottom:172.207067pt;}
.y22{bottom:175.087733pt;}
.y1ef{bottom:177.476200pt;}
.y155{bottom:177.728267pt;}
.y70{bottom:178.529333pt;}
.yc2{bottom:178.686400pt;}
.y139{bottom:178.765467pt;}
.y1ca{bottom:186.040533pt;}
.y4f{bottom:186.535600pt;}
.yfd{bottom:187.086667pt;}
.y99{bottom:187.404427pt;}
.yd7{bottom:187.486267pt;}
.y1ab{bottom:187.646187pt;}
.y15f{bottom:189.166133pt;}
.y21{bottom:189.727867pt;}
.y21d{bottom:189.756667pt;}
.y18f{bottom:191.726613pt;}
.y154{bottom:192.767867pt;}
.y1ee{bottom:193.156867pt;}
.y6f{bottom:193.889200pt;}
.y138{bottom:193.965467pt;}
.yc1{bottom:194.046800pt;}
.y1c9{bottom:201.721200pt;}
.y4e{bottom:201.895467pt;}
.yfc{bottom:202.606667pt;}
.yd6{bottom:202.686800pt;}
.y98{bottom:203.085093pt;}
.y129{bottom:203.807067pt;}
.y15e{bottom:204.046400pt;}
.y20{bottom:204.287200pt;}
.y21c{bottom:205.383733pt;}
.y18e{bottom:206.606347pt;}
.y153{bottom:207.807467pt;}
.y1ed{bottom:208.837133pt;}
.y137{bottom:209.166000pt;}
.y6e{bottom:209.249067pt;}
.yc0{bottom:209.406667pt;}
.y4d{bottom:217.255333pt;}
.y1c8{bottom:217.401467pt;}
.yfb{bottom:218.211467pt;}
.y128{bottom:218.686800pt;}
.y97{bottom:218.765360pt;}
.y1f{bottom:218.927333pt;}
.y15d{bottom:220.926667pt;}
.y21b{bottom:221.010800pt;}
.y1aa{bottom:222.046187pt;}
.y152{bottom:222.847067pt;}
.y136{bottom:224.366533pt;}
.y1ec{bottom:224.517800pt;}
.ybf{bottom:224.766533pt;}
.yd5{bottom:224.926400pt;}
.y18d{bottom:226.847013pt;}
.y6d{bottom:231.488667pt;}
.y4c{bottom:232.615200pt;}
.y1c7{bottom:233.001467pt;}
.y1e{bottom:233.486667pt;}
.yfa{bottom:233.730800pt;}
.y96{bottom:234.445627pt;}
.y127{bottom:235.646667pt;}
.y21a{bottom:236.637867pt;}
.y1a9{bottom:236.925920pt;}
.y151{bottom:237.886667pt;}
.y1eb{bottom:240.198067pt;}
.y18c{bottom:241.807413pt;}
.y135{bottom:246.846800pt;}
.yd4{bottom:246.926400pt;}
.ybe{bottom:247.246800pt;}
.y4b{bottom:247.894933pt;}
.y1c6{bottom:248.681733pt;}
.yf9{bottom:249.250533pt;}
.y95{bottom:250.045627pt;}
.y150{bottom:252.926267pt;}
.y18b{bottom:253.407933pt;}
.y1ea{bottom:255.317800pt;}
.y1d{bottom:255.566933pt;}
.y1a8{bottom:257.646720pt;}
.y197{bottom:261.806667pt;}
.y4a{bottom:263.254800pt;}
.y1c5{bottom:264.362400pt;}
.yf8{bottom:264.769867pt;}
.y6c{bottom:265.248533pt;}
.y94{bottom:265.726293pt;}
.y219{bottom:267.892000pt;}
.y14f{bottom:267.965867pt;}
.y1e9{bottom:270.998467pt;}
.y1a7{bottom:274.206587pt;}
.y49{bottom:278.615200pt;}
.y1c4{bottom:280.042667pt;}
.y6b{bottom:280.767867pt;}
.y134{bottom:281.246800pt;}
.yd3{bottom:281.725333pt;}
.ybd{bottom:281.970800pt;}
.y218{bottom:284.263333pt;}
.y1e8{bottom:286.198467pt;}
.yf7{bottom:288.290133pt;}
.y1c{bottom:289.326800pt;}
.y93{bottom:289.406027pt;}
.y1a6{bottom:290.766453pt;}
.y14e{bottom:291.006000pt;}
.y48{bottom:293.975067pt;}
.y1c3{bottom:295.642667pt;}
.y6a{bottom:296.287600pt;}
.yd2{bottom:296.925867pt;}
.ybc{bottom:297.170800pt;}
.y133{bottom:298.206667pt;}
.y1e7{bottom:301.879133pt;}
.y1a5{bottom:303.646667pt;}
.yf6{bottom:303.809467pt;}
.y1b{bottom:303.966400pt;}
.y92{bottom:305.006027pt;}
.y14d{bottom:306.045600pt;}
.y1c2{bottom:311.322933pt;}
.y69{bottom:311.807333pt;}
.yd1{bottom:312.126400pt;}
.ybb{bottom:312.450533pt;}
.y47{bottom:316.294800pt;}
.y1e6{bottom:317.479133pt;}
.y1a{bottom:318.526267pt;}
.yf5{bottom:319.409467pt;}
.y91{bottom:320.686293pt;}
.y14c{bottom:321.085200pt;}
.y1c1{bottom:327.003600pt;}
.y68{bottom:327.326667pt;}
.yd0{bottom:327.405600pt;}
.yba{bottom:327.651067pt;}
.y1e5{bottom:332.679667pt;}
.y19{bottom:333.166400pt;}
.y217{bottom:335.609733pt;}
.y14b{bottom:336.124800pt;}
.y90{bottom:336.366560pt;}
.ycf{bottom:342.606133pt;}
.y1c0{bottom:342.683867pt;}
.y67{bottom:342.846400pt;}
.yb9{bottom:342.851600pt;}
.yf4{bottom:342.929733pt;}
.y18{bottom:347.725733pt;}
.y1e4{bottom:348.359933pt;}
.y46{bottom:349.975467pt;}
.y14a{bottom:351.164400pt;}
.y216{bottom:351.236800pt;}
.y8f{bottom:352.047227pt;}
.y1bf{bottom:358.283867pt;}
.y66{bottom:358.446400pt;}
.yf3{bottom:358.449067pt;}
.y17{bottom:362.365867pt;}
.y1e3{bottom:364.040200pt;}
.y196{bottom:365.486667pt;}
.y45{bottom:365.494800pt;}
.yce{bottom:365.805600pt;}
.yb8{bottom:366.051067pt;}
.y149{bottom:366.204000pt;}
.y215{bottom:366.863867pt;}
.y1be{bottom:373.964533pt;}
.yf2{bottom:373.968400pt;}
.y8e{bottom:374.526960pt;}
.y16{bottom:376.925200pt;}
.y1e2{bottom:379.640200pt;}
.ycd{bottom:381.006133pt;}
.y44{bottom:381.014533pt;}
.yb7{bottom:381.330800pt;}
.y214{bottom:382.490933pt;}
.y65{bottom:385.326133pt;}
.y1bd{bottom:389.164533pt;}
.y148{bottom:389.324267pt;}
.yf1{bottom:389.488133pt;}
.y15{bottom:391.565333pt;}
.y1e1{bottom:395.320867pt;}
.ycc{bottom:396.285867pt;}
.yb6{bottom:396.530800pt;}
.y43{bottom:396.534267pt;}
.y213{bottom:398.118000pt;}
.y64{bottom:400.206400pt;}
.y147{bottom:404.524800pt;}
.y1bc{bottom:404.845200pt;}
.yf0{bottom:405.007467pt;}
.y14{bottom:406.205467pt;}
.y8d{bottom:409.326960pt;}
.y1e0{bottom:410.521400pt;}
.ycb{bottom:411.486400pt;}
.yb5{bottom:411.731333pt;}
.y212{bottom:413.745067pt;}
.y63{bottom:417.086667pt;}
.y146{bottom:419.804533pt;}
.y1bb{bottom:419.964933pt;}
.y42{bottom:420.134267pt;}
.y13{bottom:420.764800pt;}
.y8c{bottom:424.687360pt;}
.y116{bottom:424.926120pt;}
.y1df{bottom:426.201667pt;}
.yca{bottom:426.686400pt;}
.yb4{bottom:427.011067pt;}
.y195{bottom:428.206667pt;}
.yef{bottom:428.608000pt;}
.y211{bottom:429.372133pt;}
.y145{bottom:435.005067pt;}
.y12{bottom:435.404933pt;}
.y1ba{bottom:435.645200pt;}
.y41{bottom:435.654000pt;}
.y8b{bottom:440.047227pt;}
.y115{bottom:440.285987pt;}
.y1de{bottom:441.801667pt;}
.yc9{bottom:441.966133pt;}
.yb3{bottom:442.211600pt;}
.yee{bottom:444.127733pt;}
.y210{bottom:444.999200pt;}
.y176{bottom:448.762533pt;}
.y11{bottom:449.964800pt;}
.y144{bottom:450.205067pt;}
.y1b9{bottom:450.845733pt;}
.y40{bottom:451.173733pt;}
.y8a{bottom:455.407093pt;}
.yb2{bottom:457.412133pt;}
.y1dd{bottom:457.481933pt;}
.yed{bottom:459.647467pt;}
.y20f{bottom:460.626267pt;}
.y175{bottom:463.642800pt;}
.y114{bottom:463.646387pt;}
.y143{bottom:465.405600pt;}
.y1b8{bottom:466.526400pt;}
.y3f{bottom:466.693067pt;}
.yc8{bottom:468.846400pt;}
.y89{bottom:470.766960pt;}
.y10{bottom:472.604933pt;}
.y1dc{bottom:473.162600pt;}
.yec{bottom:475.166800pt;}
.y174{bottom:478.523067pt;}
.y113{bottom:479.006253pt;}
.y194{bottom:479.086667pt;}
.yb1{bottom:480.532400pt;}
.y142{bottom:480.685333pt;}
.y1b7{bottom:482.206667pt;}
.y3e{bottom:482.212800pt;}
.yc7{bottom:485.726667pt;}
.y88{bottom:486.127867pt;}
.yf{bottom:487.085600pt;}
.y1db{bottom:488.362600pt;}
.yeb{bottom:490.686533pt;}
.y112{bottom:494.366120pt;}
.yb0{bottom:495.572000pt;}
.y141{bottom:495.885867pt;}
.y202{bottom:496.346000pt;}
.y3d{bottom:497.732533pt;}
.y87{bottom:501.407600pt;}
.ye{bottom:501.566267pt;}
.y173{bottom:501.802800pt;}
.y1da{bottom:503.962600pt;}
.y1b6{bottom:504.606667pt;}
.y111{bottom:509.645853pt;}
.yaf{bottom:510.611600pt;}
.yea{bottom:513.006267pt;}
.y201{bottom:514.205867pt;}
.y15c{bottom:515.726133pt;}
.yd{bottom:516.046533pt;}
.y86{bottom:516.767467pt;}
.y172{bottom:517.003333pt;}
.y126{bottom:518.124933pt;}
.y1d9{bottom:519.643267pt;}
.y3c{bottom:521.332533pt;}
.y140{bottom:522.765600pt;}
.y110{bottom:525.005720pt;}
.yae{bottom:525.651200pt;}
.yc{bottom:530.527200pt;}
.y15b{bottom:530.606400pt;}
.y200{bottom:532.065200pt;}
.y85{bottom:532.127333pt;}
.y171{bottom:532.203867pt;}
.y125{bottom:533.404667pt;}
.y1d8{bottom:535.323533pt;}
.y3b{bottom:536.851867pt;}
.y13f{bottom:537.726000pt;}
.y1b5{bottom:539.805600pt;}
.yad{bottom:540.690800pt;}
.yb{bottom:545.007467pt;}
.ye9{bottom:546.686933pt;}
.y10f{bottom:547.325987pt;}
.y18a{bottom:547.407933pt;}
.y170{bottom:547.483600pt;}
.y15a{bottom:547.486667pt;}
.y84{bottom:547.487733pt;}
.y124{bottom:548.604667pt;}
.y1ff{bottom:549.925067pt;}
.y1d7{bottom:551.004200pt;}
.y3a{bottom:552.371600pt;}
.y62{bottom:553.327867pt;}
.y13e{bottom:554.606667pt;}
.y1b4{bottom:555.486267pt;}
.yac{bottom:555.730400pt;}
.y10e{bottom:561.165587pt;}
.ye8{bottom:562.206267pt;}
.y16f{bottom:562.683600pt;}
.y83{bottom:562.847600pt;}
.y123{bottom:563.805200pt;}
.y189{bottom:563.967267pt;}
.y1d6{bottom:566.604200pt;}
.ya{bottom:567.088133pt;}
.y1fe{bottom:567.784933pt;}
.y39{bottom:567.890933pt;}
.y61{bottom:568.687733pt;}
.yab{bottom:570.770000pt;}
.y1b3{bottom:571.166533pt;}
.y16e{bottom:577.884133pt;}
.y82{bottom:578.207467pt;}
.y122{bottom:579.005733pt;}
.y188{bottom:580.526600pt;}
.y1d5{bottom:582.284467pt;}
.y38{bottom:583.410667pt;}
.y60{bottom:584.047600pt;}
.y1a4{bottom:585.487067pt;}
.ye7{bottom:585.806800pt;}
.yaa{bottom:585.809600pt;}
.y1b2{bottom:586.766533pt;}
.y16d{bottom:593.084667pt;}
.y81{bottom:593.487200pt;}
.y121{bottom:594.285467pt;}
.y10d{bottom:594.525453pt;}
.y1d4{bottom:597.485000pt;}
.y37{bottom:599.010667pt;}
.y5f{bottom:599.327333pt;}
.ya9{bottom:600.849200pt;}
.ye6{bottom:601.326533pt;}
.y1a3{bottom:602.046933pt;}
.y187{bottom:605.485400pt;}
.y16c{bottom:608.364400pt;}
.y80{bottom:608.847067pt;}
.y1b1{bottom:609.246800pt;}
.y120{bottom:609.486000pt;}
.y10c{bottom:609.725987pt;}
.y9{bottom:609.727733pt;}
.y1d3{bottom:613.165267pt;}
.y1fa{bottom:614.042800pt;}
.y36{bottom:614.530400pt;}
.y5e{bottom:614.687200pt;}
.ya8{bottom:615.888800pt;}
.ye5{bottom:616.845867pt;}
.y1a2{bottom:618.606800pt;}
.y186{bottom:621.085400pt;}
.y16b{bottom:623.564400pt;}
.y7f{bottom:624.206933pt;}
.y11f{bottom:624.686000pt;}
.y10b{bottom:624.926520pt;}
.y8{bottom:625.087600pt;}
.y1d2{bottom:628.765267pt;}
.y1f9{bottom:629.723467pt;}
.y5d{bottom:630.047067pt;}
.ya7{bottom:630.928400pt;}
.y1a1{bottom:635.166667pt;}
.y185{bottom:636.765667pt;}
.y35{bottom:636.770000pt;}
.y16a{bottom:638.764933pt;}
.y7e{bottom:639.566800pt;}
.y11e{bottom:639.965733pt;}
.y10a{bottom:640.205720pt;}
.ye4{bottom:640.206267pt;}
.y7{bottom:643.647480pt;}
.y1b0{bottom:644.443733pt;}
.y1d1{bottom:644.445933pt;}
.y1f8{bottom:645.403733pt;}
.y5c{bottom:645.406933pt;}
.y1fd{bottom:646.664133pt;}
.y184{bottom:652.446333pt;}
.y169{bottom:654.044667pt;}
.ya6{bottom:654.127867pt;}
.y7d{bottom:654.926667pt;}
.y11d{bottom:655.166267pt;}
.y109{bottom:655.406253pt;}
.ye3{bottom:655.566133pt;}
.y6{bottom:658.927160pt;}
.y1a0{bottom:660.124000pt;}
.y1d0{bottom:660.126200pt;}
.y1f7{bottom:660.604267pt;}
.y5b{bottom:660.767333pt;}
.y1fc{bottom:664.524000pt;}
.y183{bottom:668.126600pt;}
.y168{bottom:669.245200pt;}
.ya5{bottom:669.487733pt;}
.y132{bottom:670.286533pt;}
.y7c{bottom:670.287067pt;}
.y11c{bottom:670.366800pt;}
.y34{bottom:670.529333pt;}
.y108{bottom:670.605747pt;}
.ye2{bottom:670.845867pt;}
.y5{bottom:670.927160pt;}
.y19f{bottom:675.804267pt;}
.y1cf{bottom:675.806867pt;}
.y5a{bottom:676.127200pt;}
.y1f6{bottom:676.204267pt;}
.y182{bottom:683.726080pt;}
.y167{bottom:684.445733pt;}
.ya4{bottom:684.847600pt;}
.y11b{bottom:685.566800pt;}
.y107{bottom:685.885480pt;}
.y33{bottom:686.049067pt;}
.ye1{bottom:686.205733pt;}
.y4{bottom:689.486520pt;}
.y19e{bottom:691.404267pt;}
.y59{bottom:691.406933pt;}
.y1f5{bottom:691.884533pt;}
.y131{bottom:693.566267pt;}
.y7b{bottom:693.566800pt;}
.y181{bottom:699.404667pt;}
.y166{bottom:699.645733pt;}
.ya3{bottom:700.208000pt;}
.y106{bottom:701.085480pt;}
.ye0{bottom:701.566133pt;}
.y32{bottom:701.568400pt;}
.y3{bottom:701.646933pt;}
.y58{bottom:706.766800pt;}
.y19d{bottom:707.084933pt;}
.y1f4{bottom:707.564800pt;}
.y130{bottom:708.926133pt;}
.y7a{bottom:708.926667pt;}
.y11a{bottom:708.927200pt;}
.y165{bottom:714.925467pt;}
.y180{bottom:715.085333pt;}
.ya2{bottom:715.567867pt;}
.y105{bottom:716.286013pt;}
.ydf{bottom:716.926000pt;}
.y31{bottom:717.088133pt;}
.y19c{bottom:722.765200pt;}
.y1f3{bottom:723.245467pt;}
.y12f{bottom:724.286533pt;}
.y79{bottom:724.287067pt;}
.y57{bottom:729.086533pt;}
.y17f{bottom:730.765600pt;}
.ya1{bottom:730.927733pt;}
.y104{bottom:731.486547pt;}
.y30{bottom:732.607867pt;}
.y2{bottom:735.726667pt;}
.y164{bottom:737.165067pt;}
.y19b{bottom:738.365200pt;}
.y12e{bottom:739.646400pt;}
.y78{bottom:739.646933pt;}
.yde{bottom:740.125467pt;}
.y17e{bottom:746.365600pt;}
.y103{bottom:746.766280pt;}
.y2f{bottom:748.207867pt;}
.y56{bottom:751.086533pt;}
.y19a{bottom:754.045867pt;}
.ya0{bottom:754.448000pt;}
.y77{bottom:755.006800pt;}
.ydd{bottom:755.326000pt;}
.y102{bottom:761.966813pt;}
.y17d{bottom:762.046267pt;}
.y2e{bottom:763.727200pt;}
.y199{bottom:769.726133pt;}
.y9f{bottom:769.967333pt;}
.y76{bottom:770.366667pt;}
.ydc{bottom:770.605733pt;}
.y17c{bottom:777.726533pt;}
.y2d{bottom:779.246933pt;}
.y198{bottom:785.406800pt;}
.y9e{bottom:785.487067pt;}
.y75{bottom:785.646400pt;}
.y55{bottom:785.806267pt;}
.y1{bottom:790.126667pt;}
.y17b{bottom:800.206800pt;}
.y54{bottom:801.006800pt;}
.y2c{bottom:801.567200pt;}
.y29{bottom:831.007187pt;}
.y2b{bottom:831.246400pt;}
.y28{bottom:841.806667pt;}
.h13{height:30.887900pt;}
.ha{height:30.984844pt;}
.h6{height:34.831784pt;}
.h4{height:34.833864pt;}
.h8{height:34.945313pt;}
.hf{height:34.947393pt;}
.hd{height:34.949473pt;}
.h10{height:34.951553pt;}
.he{height:34.953633pt;}
.h7{height:38.905781pt;}
.h3{height:42.633281pt;}
.hb{height:42.656250pt;}
.hc{height:43.359375pt;}
.h11{height:43.369775pt;}
.h9{height:44.500000pt;}
.h5{height:48.273438pt;}
.h2{height:62.202656pt;}
.h1{height:69.890625pt;}
.h12{height:701.730667pt;}
.h0{height:906.666667pt;}
.w1{width:567.040133pt;}
.w0{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1a{left:37.759867pt;}
.x9{left:75.599784pt;}
.xa{left:77.333333pt;}
.x6{left:94.879011pt;}
.xd{left:99.600000pt;}
.x16{left:102.480267pt;}
.x19{left:122.880667pt;}
.x7{left:124.480131pt;}
.x2{left:178.240000pt;}
.x3{left:179.280104pt;}
.x1b{left:210.593467pt;}
.x4{left:236.880024pt;}
.x1c{left:238.126533pt;}
.xc{left:353.040000pt;}
.x5{left:366.719011pt;}
.x15{left:376.480000pt;}
.x17{left:394.160000pt;}
.xf{left:454.560000pt;}
.x8{left:484.400184pt;}
.x10{left:519.600000pt;}
.x18{left:522.560000pt;}
.x13{left:534.160000pt;}
.x11{left:538.480000pt;}
.xe{left:546.960000pt;}
.x1{left:553.680000pt;}
.x14{left:558.718747pt;}
.x12{left:566.960000pt;}
.xb{left:570.000000pt;}
}




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