
    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_69b48816d59340e20a7450af.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_1bd1ed069c23b4ce68a21f33.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_1c8e1bbc9c59adb8d40f31b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.957000;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_256d86873438a7f1f1719230.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_d9cc219c1c704d821749252e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.081000;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_59933c3ab73d11d8ac53df71.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.249000;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_e9d9b906b147ac0e38f1dce3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095215;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_c7b690f6b870f472154e0883.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_64969f31afdab9f22f8b89ae.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_01868a3894c0c39244557f2c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.043000;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_f11f4cabfdd26d988b6f0a73.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_77fd096fad1c3a2acc957ecd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.689453;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;}
.m6{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.mc{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.581400px;}
.lsf{letter-spacing:-1.125000px;}
.ls1b{letter-spacing:-0.630000px;}
.ls5{letter-spacing:-0.451200px;}
.lsd{letter-spacing:-0.450000px;}
.lse{letter-spacing:-0.420000px;}
.ls17{letter-spacing:-0.282000px;}
.ls20{letter-spacing:-0.252000px;}
.ls18{letter-spacing:-0.225600px;}
.ls2{letter-spacing:-0.222000px;}
.ls6{letter-spacing:-0.168000px;}
.ls3{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.084000px;}
.ls1a{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.103200px;}
.ls11{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.222000px;}
.ls1c{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.564000px;}
.ls9{letter-spacing:0.585000px;}
.ls1f{letter-spacing:0.765000px;}
.ls10{letter-spacing:0.810000px;}
.ls8{letter-spacing:0.945000px;}
.ls13{letter-spacing:0.990000px;}
.ls16{letter-spacing:1.128000px;}
.lsc{letter-spacing:1.440000px;}
.ls1e{letter-spacing:1.665000px;}
.lsb{letter-spacing:2.340000px;}
.lsa{letter-spacing:2.385000px;}
.ls1d{letter-spacing:2.610000px;}
.ls12{letter-spacing:40.500000px;}
.ls7{letter-spacing:63.424948px;}
.ls0{letter-spacing:2110.077551px;}
.ls14{letter-spacing:2156.315000px;}
.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;}
}
.ws88{word-spacing:-16.694400px;}
.ws1de{word-spacing:-13.860000px;}
.wsc9{word-spacing:-13.635000px;}
.wsca{word-spacing:-13.590000px;}
.ws1df{word-spacing:-12.915000px;}
.wscb{word-spacing:-12.690000px;}
.ws1e1{word-spacing:-12.600000px;}
.wsef{word-spacing:-12.240000px;}
.wsc6{word-spacing:-12.195000px;}
.wsf0{word-spacing:-12.060000px;}
.ws1e0{word-spacing:-12.015000px;}
.ws1{word-spacing:-12.000000px;}
.wsc8{word-spacing:-11.835000px;}
.ws1dd{word-spacing:-11.790000px;}
.wsf1{word-spacing:-11.430000px;}
.ws1c3{word-spacing:-11.340000px;}
.ws165{word-spacing:-11.280000px;}
.wsc7{word-spacing:-11.250000px;}
.wsc5{word-spacing:-10.800000px;}
.ws175{word-spacing:-10.500000px;}
.ws68{word-spacing:-10.332000px;}
.wsf2{word-spacing:-10.080000px;}
.ws1cf{word-spacing:-9.982800px;}
.ws14b{word-spacing:-9.475200px;}
.ws34{word-spacing:-8.880000px;}
.ws0{word-spacing:-8.658000px;}
.ws2{word-spacing:-8.400000px;}
.ws89{word-spacing:-8.232000px;}
.ws177{word-spacing:-7.783200px;}
.ws12e{word-spacing:-7.162800px;}
.ws87{word-spacing:-6.576240px;}
.ws16{word-spacing:-6.506280px;}
.ws1a5{word-spacing:-6.260400px;}
.ws142{word-spacing:-6.204000px;}
.ws131{word-spacing:-6.091200px;}
.ws18a{word-spacing:-5.470800px;}
.ws1ca{word-spacing:-5.245200px;}
.ws145{word-spacing:-5.076000px;}
.ws14e{word-spacing:-4.850400px;}
.ws163{word-spacing:-4.794000px;}
.ws14a{word-spacing:-4.455600px;}
.ws133{word-spacing:-3.609600px;}
.wsb7{word-spacing:-3.327600px;}
.ws67{word-spacing:-3.271200px;}
.ws12a{word-spacing:-3.234000px;}
.ws3a{word-spacing:-3.102000px;}
.ws9c{word-spacing:-3.045600px;}
.ws1e{word-spacing:-2.820000px;}
.ws52{word-spacing:-2.763600px;}
.ws38{word-spacing:-2.707200px;}
.ws44{word-spacing:-2.678400px;}
.ws3b{word-spacing:-2.650800px;}
.ws21{word-spacing:-2.594400px;}
.ws57{word-spacing:-2.566800px;}
.wsac{word-spacing:-2.538000px;}
.wsa2{word-spacing:-2.481600px;}
.ws58{word-spacing:-2.399400px;}
.ws23{word-spacing:-2.368800px;}
.ws3d{word-spacing:-2.312400px;}
.wsb0{word-spacing:-2.199600px;}
.ws188{word-spacing:-2.142000px;}
.ws29{word-spacing:-2.064600px;}
.ws8e{word-spacing:-2.030400px;}
.ws5f{word-spacing:-1.974000px;}
.ws1d0{word-spacing:-1.804800px;}
.ws2f{word-spacing:-1.748400px;}
.ws56{word-spacing:-1.729800px;}
.ws66{word-spacing:-1.692000px;}
.ws24{word-spacing:-1.579200px;}
.ws25{word-spacing:-1.562400px;}
.ws193{word-spacing:-1.554000px;}
.ws8c{word-spacing:-1.522800px;}
.wsbf{word-spacing:-1.466400px;}
.wsf9{word-spacing:-1.350000px;}
.wsc{word-spacing:-1.341600px;}
.ws1a1{word-spacing:-1.240800px;}
.wsd4{word-spacing:-1.128000px;}
.ws6{word-spacing:-1.083600px;}
.ws183{word-spacing:-1.071600px;}
.ws91{word-spacing:-1.060200px;}
.ws22{word-spacing:-1.015200px;}
.ws137{word-spacing:-0.958800px;}
.wsb1{word-spacing:-0.902400px;}
.ws70{word-spacing:-0.846000px;}
.wsa9{word-spacing:-0.789600px;}
.ws1aa{word-spacing:-0.756000px;}
.wsd2{word-spacing:-0.733200px;}
.ws12{word-spacing:-0.725400px;}
.ws1f3{word-spacing:-0.705600px;}
.wsaa{word-spacing:-0.676800px;}
.ws5{word-spacing:-0.619200px;}
.wsa5{word-spacing:-0.613800px;}
.ws1f5{word-spacing:-0.604800px;}
.wsc0{word-spacing:-0.564000px;}
.ws90{word-spacing:-0.558000px;}
.ws6d{word-spacing:-0.507600px;}
.ws78{word-spacing:-0.456000px;}
.ws167{word-spacing:-0.451200px;}
.wse8{word-spacing:-0.450000px;}
.ws17{word-spacing:-0.444000px;}
.ws1d8{word-spacing:-0.405000px;}
.ws9b{word-spacing:-0.338400px;}
.ws53{word-spacing:-0.334800px;}
.ws11d{word-spacing:-0.282000px;}
.ws1d{word-spacing:-0.225600px;}
.ws14{word-spacing:-0.223200px;}
.ws10d{word-spacing:-0.210000px;}
.ws118{word-spacing:-0.169200px;}
.ws15{word-spacing:-0.167400px;}
.ws39{word-spacing:-0.112800px;}
.ws7{word-spacing:-0.103200px;}
.ws1d3{word-spacing:-0.090000px;}
.wsb3{word-spacing:-0.084000px;}
.wsa8{word-spacing:-0.056400px;}
.ws3{word-spacing:0.000000px;}
.wsda{word-spacing:0.045000px;}
.ws83{word-spacing:0.055800px;}
.ws13a{word-spacing:0.112800px;}
.ws1f1{word-spacing:0.151200px;}
.ws85{word-spacing:0.168000px;}
.ws1e3{word-spacing:0.180000px;}
.wscf{word-spacing:0.225600px;}
.ws96{word-spacing:0.338400px;}
.ws27{word-spacing:0.390600px;}
.wscd{word-spacing:0.394800px;}
.wsd6{word-spacing:0.420000px;}
.wsd8{word-spacing:0.450000px;}
.ws2c{word-spacing:0.507600px;}
.ws3f{word-spacing:0.558000px;}
.ws7f{word-spacing:0.570000px;}
.wsb8{word-spacing:0.620400px;}
.ws1d2{word-spacing:0.630000px;}
.wsb{word-spacing:0.670800px;}
.wsbe{word-spacing:0.725400px;}
.wsb2{word-spacing:0.733200px;}
.ws43{word-spacing:0.781200px;}
.ws6e{word-spacing:0.789600px;}
.ws33{word-spacing:0.798000px;}
.ws94{word-spacing:0.846000px;}
.ws1ef{word-spacing:0.855000px;}
.wsb5{word-spacing:0.882000px;}
.ws122{word-spacing:0.902400px;}
.ws32{word-spacing:0.924000px;}
.ws45{word-spacing:0.948600px;}
.ws19{word-spacing:0.958800px;}
.wsa4{word-spacing:1.071600px;}
.wse4{word-spacing:1.080000px;}
.wsdb{word-spacing:1.125000px;}
.ws2e{word-spacing:1.128000px;}
.ws73{word-spacing:1.140000px;}
.ws40{word-spacing:1.171800px;}
.ws187{word-spacing:1.176000px;}
.ws4{word-spacing:1.186800px;}
.ws2a{word-spacing:1.240800px;}
.ws126{word-spacing:1.297200px;}
.ws47{word-spacing:1.339200px;}
.wsbb{word-spacing:1.353600px;}
.ws7e{word-spacing:1.368000px;}
.wsa6{word-spacing:1.395000px;}
.ws97{word-spacing:1.410000px;}
.ws1f{word-spacing:1.466400px;}
.ws182{word-spacing:1.522800px;}
.wsf{word-spacing:1.548000px;}
.ws42{word-spacing:1.562400px;}
.wsc1{word-spacing:1.579200px;}
.ws79{word-spacing:1.596000px;}
.ws138{word-spacing:1.635600px;}
.wsee{word-spacing:1.665000px;}
.ws10{word-spacing:1.702800px;}
.wsce{word-spacing:1.748400px;}
.wsf4{word-spacing:1.800000px;}
.ws64{word-spacing:1.804800px;}
.wsad{word-spacing:1.861200px;}
.ws1e5{word-spacing:1.890000px;}
.ws1c2{word-spacing:1.917600px;}
.ws1db{word-spacing:1.935000px;}
.ws76{word-spacing:1.938000px;}
.ws7c{word-spacing:1.995000px;}
.ws1b{word-spacing:2.030400px;}
.wsbc{word-spacing:2.086800px;}
.ws174{word-spacing:2.100000px;}
.ws7d{word-spacing:2.109000px;}
.ws99{word-spacing:2.199600px;}
.ws195{word-spacing:2.226000px;}
.ws41{word-spacing:2.232000px;}
.ws159{word-spacing:2.256000px;}
.ws7b{word-spacing:2.280000px;}
.wsae{word-spacing:2.312400px;}
.ws1a{word-spacing:2.368800px;}
.ws4a{word-spacing:2.425200px;}
.wsec{word-spacing:2.430000px;}
.ws7a{word-spacing:2.451000px;}
.ws26{word-spacing:2.455200px;}
.ws9{word-spacing:2.476800px;}
.wsc4{word-spacing:2.481600px;}
.wsb4{word-spacing:2.562000px;}
.wsd{word-spacing:2.580000px;}
.ws4f{word-spacing:2.594400px;}
.ws13f{word-spacing:2.604000px;}
.ws28{word-spacing:2.622600px;}
.ws59{word-spacing:2.650800px;}
.wsbd{word-spacing:2.678400px;}
.wsed{word-spacing:2.700000px;}
.ws2d{word-spacing:2.707200px;}
.ws18{word-spacing:2.734200px;}
.ws8d{word-spacing:2.763600px;}
.ws86{word-spacing:2.772000px;}
.wse2{word-spacing:2.790000px;}
.ws162{word-spacing:2.876400px;}
.ws9e{word-spacing:2.898000px;}
.ws5d{word-spacing:2.932800px;}
.ws1ac{word-spacing:2.982000px;}
.ws1ea{word-spacing:3.015000px;}
.ws74{word-spacing:3.021000px;}
.ws160{word-spacing:3.045600px;}
.ws8{word-spacing:3.096000px;}
.ws54{word-spacing:3.124800px;}
.ws1ec{word-spacing:3.150000px;}
.ws3c{word-spacing:3.158400px;}
.ws75{word-spacing:3.192000px;}
.ws1ce{word-spacing:3.214800px;}
.ws46{word-spacing:3.236400px;}
.ws4c{word-spacing:3.271200px;}
.ws1e4{word-spacing:3.285000px;}
.ws37{word-spacing:3.327600px;}
.ws48{word-spacing:3.384000px;}
.ws4d{word-spacing:3.440400px;}
.ws81{word-spacing:3.477000px;}
.ws194{word-spacing:3.528000px;}
.ws5c{word-spacing:3.666000px;}
.ws63{word-spacing:3.778800px;}
.wse7{word-spacing:3.780000px;}
.ws1e7{word-spacing:3.825000px;}
.ws6a{word-spacing:3.835200px;}
.ws5e{word-spacing:3.891600px;}
.ws55{word-spacing:3.906000px;}
.ws50{word-spacing:4.004400px;}
.ws1dc{word-spacing:4.050000px;}
.ws106{word-spacing:4.060800px;}
.ws1af{word-spacing:4.117200px;}
.ws19e{word-spacing:4.173600px;}
.ws1f4{word-spacing:4.183200px;}
.ws6f{word-spacing:4.342800px;}
.ws1c{word-spacing:4.399200px;}
.wsfb{word-spacing:4.435200px;}
.ws1e9{word-spacing:4.455000px;}
.wsab{word-spacing:4.455600px;}
.ws5a{word-spacing:4.512000px;}
.ws92{word-spacing:4.568400px;}
.wsa{word-spacing:4.592400px;}
.wsa3{word-spacing:4.624800px;}
.ws72{word-spacing:4.674000px;}
.ws9a{word-spacing:4.681200px;}
.wsc2{word-spacing:4.794000px;}
.ws125{word-spacing:4.850400px;}
.ws180{word-spacing:4.906800px;}
.ws1b3{word-spacing:5.076000px;}
.wsba{word-spacing:5.188800px;}
.ws51{word-spacing:5.245200px;}
.wsc3{word-spacing:5.301600px;}
.ws36{word-spacing:5.358000px;}
.wse{word-spacing:5.366400px;}
.wsf7{word-spacing:5.400000px;}
.ws8f{word-spacing:5.470800px;}
.wsd0{word-spacing:5.527200px;}
.wsd3{word-spacing:5.583600px;}
.ws95{word-spacing:5.640000px;}
.ws80{word-spacing:5.643000px;}
.ws65{word-spacing:5.696400px;}
.ws6c{word-spacing:5.809200px;}
.ws1d7{word-spacing:5.850000px;}
.wsaf{word-spacing:5.865600px;}
.ws168{word-spacing:5.978400px;}
.ws4b{word-spacing:6.034800px;}
.wse0{word-spacing:6.120000px;}
.ws20{word-spacing:6.147600px;}
.ws60{word-spacing:6.204000px;}
.ws107{word-spacing:6.260400px;}
.ws16e{word-spacing:6.373200px;}
.ws1d9{word-spacing:6.390000px;}
.ws1b9{word-spacing:6.429600px;}
.ws170{word-spacing:6.486000px;}
.wsf3{word-spacing:6.570000px;}
.wsa1{word-spacing:6.598800px;}
.wse5{word-spacing:6.615000px;}
.wsa0{word-spacing:6.655200px;}
.ws77{word-spacing:6.669000px;}
.ws8b{word-spacing:6.711600px;}
.wsfa{word-spacing:6.750000px;}
.wsb9{word-spacing:6.768000px;}
.ws178{word-spacing:6.824400px;}
.ws3e{word-spacing:6.880800px;}
.wsff{word-spacing:6.937200px;}
.ws14c{word-spacing:7.050000px;}
.wsa7{word-spacing:7.106400px;}
.ws19f{word-spacing:7.162800px;}
.ws109{word-spacing:7.332000px;}
.wsf6{word-spacing:7.380000px;}
.ws158{word-spacing:7.388400px;}
.ws82{word-spacing:7.410000px;}
.ws186{word-spacing:7.518000px;}
.ws1da{word-spacing:7.560000px;}
.ws141{word-spacing:7.670400px;}
.ws1ad{word-spacing:7.686000px;}
.ws128{word-spacing:7.770000px;}
.wsd1{word-spacing:7.896000px;}
.ws61{word-spacing:7.952400px;}
.ws173{word-spacing:8.008800px;}
.wsb6{word-spacing:8.065200px;}
.ws98{word-spacing:8.234400px;}
.ws84{word-spacing:8.258400px;}
.ws1eb{word-spacing:8.325000px;}
.wsdd{word-spacing:8.415000px;}
.ws5b{word-spacing:8.460000px;}
.ws49{word-spacing:8.798400px;}
.ws198{word-spacing:8.854800px;}
.wse1{word-spacing:8.910000px;}
.ws8a{word-spacing:8.983800px;}
.ws13{word-spacing:9.039600px;}
.ws93{word-spacing:9.136800px;}
.ws1f0{word-spacing:9.225000px;}
.ws30{word-spacing:9.249600px;}
.ws11{word-spacing:9.430200px;}
.ws62{word-spacing:9.475200px;}
.ws171{word-spacing:9.531600px;}
.wse6{word-spacing:9.585000px;}
.ws172{word-spacing:9.588000px;}
.ws1c5{word-spacing:9.644400px;}
.wsd9{word-spacing:9.675000px;}
.ws1b4{word-spacing:9.757200px;}
.ws1c4{word-spacing:9.813600px;}
.ws4e{word-spacing:9.870000px;}
.ws6b{word-spacing:9.982800px;}
.ws1ba{word-spacing:10.321200px;}
.ws1f2{word-spacing:10.432800px;}
.wsf8{word-spacing:10.485000px;}
.ws2b{word-spacing:10.490400px;}
.ws108{word-spacing:10.603200px;}
.ws1e8{word-spacing:10.665000px;}
.ws19b{word-spacing:10.828800px;}
.wse9{word-spacing:10.890000px;}
.ws71{word-spacing:11.110800px;}
.ws143{word-spacing:11.167200px;}
.wsf5{word-spacing:11.655000px;}
.ws13b{word-spacing:11.731200px;}
.ws113{word-spacing:12.069600px;}
.ws11e{word-spacing:12.182400px;}
.ws124{word-spacing:12.295200px;}
.ws146{word-spacing:12.351600px;}
.wsdf{word-spacing:12.555000px;}
.ws1c0{word-spacing:12.577200px;}
.ws157{word-spacing:12.690000px;}
.ws1a9{word-spacing:12.802800px;}
.ws11a{word-spacing:12.859200px;}
.wsdc{word-spacing:13.005000px;}
.ws13d{word-spacing:13.254000px;}
.ws1a7{word-spacing:13.310400px;}
.ws1be{word-spacing:13.648800px;}
.ws121{word-spacing:13.761600px;}
.ws116{word-spacing:14.100000px;}
.ws19c{word-spacing:14.156400px;}
.ws14d{word-spacing:14.212800px;}
.ws166{word-spacing:14.382000px;}
.ws161{word-spacing:14.438400px;}
.ws1c9{word-spacing:14.664000px;}
.ws156{word-spacing:14.720400px;}
.ws17e{word-spacing:14.776800px;}
.ws17c{word-spacing:14.833200px;}
.ws184{word-spacing:15.510000px;}
.wsde{word-spacing:15.525000px;}
.ws1c6{word-spacing:15.848400px;}
.ws132{word-spacing:15.904800px;}
.ws1b0{word-spacing:15.961200px;}
.ws179{word-spacing:16.074000px;}
.ws164{word-spacing:16.243200px;}
.ws149{word-spacing:16.412400px;}
.ws140{word-spacing:16.581600px;}
.ws1c8{word-spacing:16.920000px;}
.ws1b6{word-spacing:17.032800px;}
.ws153{word-spacing:17.089200px;}
.ws112{word-spacing:17.145600px;}
.ws134{word-spacing:17.314800px;}
.wsfc{word-spacing:17.596800px;}
.ws15f{word-spacing:17.653200px;}
.ws1b5{word-spacing:17.766000px;}
.ws16c{word-spacing:17.991600px;}
.ws17b{word-spacing:18.273600px;}
.ws104{word-spacing:18.386400px;}
.ws190{word-spacing:18.894000px;}
.ws130{word-spacing:19.063200px;}
.ws1c7{word-spacing:19.232400px;}
.ws115{word-spacing:19.345200px;}
.wseb{word-spacing:19.440000px;}
.ws1a0{word-spacing:20.247600px;}
.ws16f{word-spacing:20.755200px;}
.ws10f{word-spacing:20.832000px;}
.ws13c{word-spacing:20.924400px;}
.ws14f{word-spacing:21.206400px;}
.wsfe{word-spacing:21.375600px;}
.ws1ee{word-spacing:21.420000px;}
.ws11f{word-spacing:21.601200px;}
.ws1cc{word-spacing:21.657600px;}
.ws1cb{word-spacing:21.770400px;}
.ws12f{word-spacing:21.883200px;}
.ws10a{word-spacing:21.939600px;}
.ws11c{word-spacing:22.052400px;}
.ws102{word-spacing:22.221600px;}
.ws10b{word-spacing:22.503600px;}
.ws1ab{word-spacing:22.554000px;}
.ws1bf{word-spacing:22.954800px;}
.ws1a2{word-spacing:23.236800px;}
.ws1d1{word-spacing:23.631600px;}
.ws1ed{word-spacing:23.670000px;}
.ws1d6{word-spacing:23.805000px;}
.ws136{word-spacing:23.970000px;}
.ws120{word-spacing:24.252000px;}
.ws1a8{word-spacing:24.308400px;}
.ws135{word-spacing:24.534000px;}
.ws191{word-spacing:24.590400px;}
.ws1c1{word-spacing:24.646800px;}
.ws105{word-spacing:25.210800px;}
.ws1b2{word-spacing:25.492800px;}
.ws10e{word-spacing:25.662000px;}
.ws123{word-spacing:26.338800px;}
.ws117{word-spacing:26.564400px;}
.ws1a6{word-spacing:26.790000px;}
.ws1a3{word-spacing:26.902800px;}
.ws1a4{word-spacing:27.072000px;}
.ws147{word-spacing:27.128400px;}
.ws1d5{word-spacing:27.405000px;}
.ws18c{word-spacing:27.918000px;}
.ws18d{word-spacing:27.974400px;}
.ws1d4{word-spacing:27.990000px;}
.ws17d{word-spacing:28.030800px;}
.wsea{word-spacing:28.890000px;}
.ws15e{word-spacing:28.933200px;}
.ws181{word-spacing:28.989600px;}
.ws127{word-spacing:29.497200px;}
.ws17a{word-spacing:29.610000px;}
.ws1e6{word-spacing:30.645000px;}
.ws13e{word-spacing:30.702000px;}
.ws129{word-spacing:31.836000px;}
.ws16b{word-spacing:31.866000px;}
.ws1b8{word-spacing:32.204400px;}
.wsd7{word-spacing:32.535000px;}
.ws1bc{word-spacing:32.599200px;}
.ws17f{word-spacing:32.712000px;}
.ws111{word-spacing:32.881200px;}
.ws152{word-spacing:32.937600px;}
.ws1b1{word-spacing:32.994000px;}
.ws144{word-spacing:33.163200px;}
.ws18e{word-spacing:33.840000px;}
.ws197{word-spacing:34.009200px;}
.ws1bb{word-spacing:34.629600px;}
.ws10c{word-spacing:35.080800px;}
.ws114{word-spacing:36.039600px;}
.ws119{word-spacing:36.603600px;}
.ws12d{word-spacing:36.660000px;}
.ws16d{word-spacing:36.716400px;}
.ws110{word-spacing:36.829200px;}
.ws139{word-spacing:36.998400px;}
.ws103{word-spacing:37.449600px;}
.ws176{word-spacing:37.506000px;}
.ws12c{word-spacing:37.844400px;}
.ws150{word-spacing:37.900800px;}
.ws100{word-spacing:38.126400px;}
.ws148{word-spacing:38.577600px;}
.ws192{word-spacing:39.480000px;}
.ws185{word-spacing:41.566800px;}
.ws15c{word-spacing:42.412800px;}
.ws154{word-spacing:43.089600px;}
.wsfd{word-spacing:44.104800px;}
.ws19a{word-spacing:44.386800px;}
.ws169{word-spacing:44.499600px;}
.ws1bd{word-spacing:44.556000px;}
.ws15a{word-spacing:44.781600px;}
.ws196{word-spacing:45.345600px;}
.ws18f{word-spacing:45.402000px;}
.ws199{word-spacing:45.458400px;}
.ws16a{word-spacing:48.109200px;}
.ws101{word-spacing:48.447600px;}
.ws18b{word-spacing:49.914000px;}
.wse3{word-spacing:52.110000px;}
.ws151{word-spacing:53.241600px;}
.ws11b{word-spacing:54.200400px;}
.ws155{word-spacing:56.005200px;}
.ws1b7{word-spacing:56.851200px;}
.ws19d{word-spacing:56.907600px;}
.ws15d{word-spacing:59.163600px;}
.ws31{word-spacing:63.420000px;}
.ws9d{word-spacing:63.588000px;}
.wsd5{word-spacing:65.385000px;}
.ws1cd{word-spacing:68.244000px;}
.ws35{word-spacing:646.650000px;}
.ws69{word-spacing:646.965000px;}
.wscc{word-spacing:647.010000px;}
.ws9f{word-spacing:647.370000px;}
.ws12b{word-spacing:743.400000px;}
.ws15b{word-spacing:743.715000px;}
.ws1ae{word-spacing:744.255000px;}
.ws189{word-spacing:744.660000px;}
.ws1e2{word-spacing:746.685000px;}
._29{margin-left:-746.708125px;}
._23{margin-left:-744.665000px;}
._1e{margin-left:-743.415000px;}
._a{margin-left:-647.225929px;}
._24{margin-left:-53.447525px;}
._1f{margin-left:-31.866049px;}
._1c{margin-left:-18.673396px;}
._f{margin-left:-17.354100px;}
._e{margin-left:-15.378180px;}
._1b{margin-left:-12.351600px;}
._20{margin-left:-9.023755px;}
._6{margin-left:-7.385040px;}
._7{margin-left:-6.204000px;}
._4{margin-left:-5.133600px;}
._9{margin-left:-3.990000px;}
._3{margin-left:-2.920800px;}
._2{margin-left:-1.655520px;}
._0{width:1.616160px;}
._5{width:2.675280px;}
._1{width:3.719520px;}
._12{width:5.259000px;}
._2b{width:9.778320px;}
._21{width:19.006996px;}
._15{width:21.150000px;}
._b{width:23.504694px;}
._28{width:27.310680px;}
._14{width:28.405560px;}
._13{width:29.823240px;}
._16{width:31.071495px;}
._18{width:32.236800px;}
._17{width:33.984000px;}
._10{width:35.902320px;}
._d{width:38.177753px;}
._1a{width:40.519398px;}
._25{width:41.831753px;}
._19{width:43.499520px;}
._1d{width:55.649753px;}
._c{width:60.643052px;}
._8{width:62.621753px;}
._11{width:63.975862px;}
._22{width:65.599670px;}
._27{width:86.025600px;}
._26{width:87.259200px;}
._2a{width:92.920800px;}
.fc2{color:rgb(0,88,158);}
.fc1{color:rgb(92,36,131);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:32.531400px;}
.fsb{font-size:32.881200px;}
.fse{font-size:33.231000px;}
.fs8{font-size:42.000000px;}
.fs0{font-size:44.400000px;}
.fsc{font-size:45.000000px;}
.fsf{font-size:48.000000px;}
.fs10{font-size:50.400000px;}
.fs5{font-size:51.600000px;}
.fs7{font-size:55.800000px;}
.fsa{font-size:56.400000px;}
.fsd{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:75.600000px;}
.fs11{font-size:102.000000px;}
.fs2{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:65.368050px;}
.y14a{bottom:104.168850px;}
.y1af{bottom:104.170050px;}
.y162{bottom:104.170350px;}
.ydf{bottom:104.171850px;}
.y40{bottom:104.173350px;}
.yf2{bottom:104.192400px;}
.y17d{bottom:104.204400px;}
.y85{bottom:104.223600px;}
.y1f9{bottom:108.128850px;}
.y1f1{bottom:112.403850px;}
.y110{bottom:115.127400px;}
.y149{bottom:118.270350px;}
.y161{bottom:118.271850px;}
.y3f{bottom:118.273350px;}
.yad{bottom:121.673250px;}
.y1ae{bottom:121.673550px;}
.yc0{bottom:121.675050px;}
.y1f8{bottom:122.382600px;}
.yf1{bottom:124.440000px;}
.y1e0{bottom:124.442400px;}
.y17c{bottom:124.452000px;}
.y84{bottom:124.471200px;}
.y123{bottom:125.105700px;}
.y1f0{bottom:126.657600px;}
.y10f{bottom:129.381150px;}
.yde{bottom:132.370050px;}
.y148{bottom:132.371850px;}
.y160{bottom:132.373350px;}
.y1ad{bottom:135.773250px;}
.y3e{bottom:135.773550px;}
.y1f7{bottom:136.636350px;}
.yac{bottom:139.176750px;}
.y122{bottom:139.359450px;}
.y1ef{bottom:140.911350px;}
.y10e{bottom:143.634900px;}
.y1b{bottom:144.651750px;}
.yf0{bottom:144.687600px;}
.y1df{bottom:144.690000px;}
.y63{bottom:144.694800px;}
.y17b{bottom:144.699600px;}
.y83{bottom:144.718800px;}
.y147{bottom:146.473350px;}
.ydd{bottom:149.873550px;}
.y3d{bottom:149.875050px;}
.y1f6{bottom:150.890100px;}
.yab{bottom:153.274950px;}
.y1ac{bottom:153.276750px;}
.y121{bottom:153.613200px;}
.y1ee{bottom:155.168850px;}
.y10d{bottom:157.888650px;}
.y1d3{bottom:160.573350px;}
.ydc{bottom:163.975050px;}
.y1a{bottom:164.907150px;}
.y197{bottom:164.928000px;}
.yef{bottom:164.935200px;}
.y1de{bottom:164.937600px;}
.ybf{bottom:164.940000px;}
.y62{bottom:164.942400px;}
.y17a{bottom:164.947200px;}
.y82{bottom:164.966400px;}
.y1f5{bottom:165.143850px;}
.y1ab{bottom:167.374950px;}
.y120{bottom:167.866950px;}
.y1ed{bottom:169.417350px;}
.yaa{bottom:170.778450px;}
.y10c{bottom:172.142400px;}
.y1f4{bottom:179.397600px;}
.y11f{bottom:182.120700px;}
.y1ec{bottom:183.665850px;}
.y1aa{bottom:184.878450px;}
.y19{bottom:185.162550px;}
.y196{bottom:185.175600px;}
.yee{bottom:185.182800px;}
.y1dd{bottom:185.185200px;}
.ybe{bottom:185.187600px;}
.y61{bottom:185.190000px;}
.y179{bottom:185.194800px;}
.y16f{bottom:185.199600px;}
.y15f{bottom:185.209200px;}
.y81{bottom:185.214000px;}
.y10b{bottom:186.396150px;}
.ya9{bottom:188.280150px;}
.y11e{bottom:196.374450px;}
.y1f3{bottom:197.903850px;}
.y1eb{bottom:197.914350px;}
.y1a9{bottom:198.978450px;}
.y10a{bottom:200.649900px;}
.y18{bottom:205.417950px;}
.y195{bottom:205.423200px;}
.yed{bottom:205.430400px;}
.y1dc{bottom:205.432800px;}
.ybd{bottom:205.435200px;}
.y60{bottom:205.437600px;}
.y3c{bottom:205.442400px;}
.y16e{bottom:205.447200px;}
.ydb{bottom:205.452000px;}
.y146{bottom:205.454400px;}
.y15e{bottom:205.456800px;}
.y80{bottom:205.461600px;}
.y11d{bottom:210.628200px;}
.y1f2{bottom:212.157600px;}
.y1ea{bottom:212.162850px;}
.y109{bottom:214.903650px;}
.ya8{bottom:225.667800px;}
.y194{bottom:225.673200px;}
.y17{bottom:225.673350px;}
.yec{bottom:225.678000px;}
.y228{bottom:225.678600px;}
.y1db{bottom:225.680400px;}
.ybc{bottom:225.682800px;}
.y5f{bottom:225.685200px;}
.y3b{bottom:225.690000px;}
.y1d2{bottom:225.692400px;}
.y16d{bottom:225.694800px;}
.yda{bottom:225.699600px;}
.y145{bottom:225.702000px;}
.y15d{bottom:225.704400px;}
.y7f{bottom:225.709200px;}
.y1e9{bottom:226.411350px;}
.y11c{bottom:229.134450px;}
.y108{bottom:229.157400px;}
.y11b{bottom:243.388200px;}
.ya5{bottom:245.917800px;}
.ya7{bottom:245.923200px;}
.yeb{bottom:245.925600px;}
.y227{bottom:245.926800px;}
.y193{bottom:245.928000px;}
.ybb{bottom:245.930400px;}
.y5e{bottom:245.932800px;}
.y3a{bottom:245.937600px;}
.y1d1{bottom:245.940000px;}
.y16c{bottom:245.942400px;}
.yd9{bottom:245.947200px;}
.y144{bottom:245.949600px;}
.y15c{bottom:245.952000px;}
.y7e{bottom:245.956800px;}
.y106{bottom:247.651950px;}
.y107{bottom:247.659450px;}
.ya6{bottom:250.568550px;}
.y11a{bottom:257.641950px;}
.y105{bottom:261.905700px;}
.ya3{bottom:266.173200px;}
.y16{bottom:266.173350px;}
.y226{bottom:266.175000px;}
.y192{bottom:266.175600px;}
.yba{bottom:266.178000px;}
.y5d{bottom:266.180400px;}
.y39{bottom:266.185200px;}
.y1d0{bottom:266.187600px;}
.y16b{bottom:266.190000px;}
.yd8{bottom:266.194800px;}
.y143{bottom:266.197200px;}
.y15b{bottom:266.199600px;}
.y7d{bottom:266.204400px;}
.ya4{bottom:270.818550px;}
.y119{bottom:276.148200px;}
.y104{bottom:276.159450px;}
.yea{bottom:286.390800px;}
.y1da{bottom:286.423200px;}
.yb9{bottom:286.425600px;}
.y5c{bottom:286.428000px;}
.y38{bottom:286.432800px;}
.y1cf{bottom:286.435200px;}
.y16a{bottom:286.437600px;}
.yd7{bottom:286.442400px;}
.y142{bottom:286.444800px;}
.y15a{bottom:286.447200px;}
.y7c{bottom:286.452000px;}
.y118{bottom:290.401950px;}
.y103{bottom:294.650100px;}
.y117{bottom:304.655700px;}
.ye9{bottom:306.646200px;}
.y225{bottom:306.673200px;}
.ya2{bottom:306.674700px;}
.y5b{bottom:306.675600px;}
.y37{bottom:306.680400px;}
.y1ce{bottom:306.682800px;}
.y169{bottom:306.685200px;}
.yd6{bottom:306.690000px;}
.yb8{bottom:306.692400px;}
.y159{bottom:306.694800px;}
.y7b{bottom:306.699600px;}
.y102{bottom:308.903850px;}
.y116{bottom:318.909450px;}
.y101{bottom:323.157600px;}
.ye8{bottom:326.901600px;}
.y5a{bottom:326.923200px;}
.ya1{bottom:326.923950px;}
.y36{bottom:326.928000px;}
.y1cd{bottom:326.930400px;}
.y168{bottom:326.932800px;}
.yd5{bottom:326.937600px;}
.yb7{bottom:326.940000px;}
.y158{bottom:326.942400px;}
.y7a{bottom:326.947200px;}
.y115{bottom:333.140100px;}
.y100{bottom:337.417350px;}
.y59{bottom:347.157000px;}
.y14{bottom:347.170350px;}
.ya0{bottom:347.173200px;}
.y15{bottom:347.173350px;}
.y9e{bottom:347.174700px;}
.y35{bottom:347.175600px;}
.y1cc{bottom:347.178000px;}
.y167{bottom:347.180400px;}
.yd4{bottom:347.185200px;}
.yb6{bottom:347.187600px;}
.y157{bottom:347.190000px;}
.y79{bottom:347.194800px;}
.y1e8{bottom:347.209200px;}
.y114{bottom:351.646350px;}
.yff{bottom:351.665850px;}
.y9f{bottom:351.918450px;}
.y113{bottom:365.900100px;}
.yfe{bottom:365.914350px;}
.y58{bottom:367.412400px;}
.y34{bottom:367.423200px;}
.y13{bottom:367.423350px;}
.y9d{bottom:367.423950px;}
.y1cb{bottom:367.425600px;}
.y166{bottom:367.428000px;}
.yd3{bottom:367.432800px;}
.yb5{bottom:367.435200px;}
.y156{bottom:367.437600px;}
.y78{bottom:367.442400px;}
.y1ba{bottom:367.444800px;}
.y1e7{bottom:367.456800px;}
.y1a8{bottom:367.459200px;}
.y112{bottom:380.153850px;}
.yfd{bottom:380.162850px;}
.y33{bottom:387.646200px;}
.y12{bottom:387.664350px;}
.y57{bottom:387.667800px;}
.y9c{bottom:387.673200px;}
.y224{bottom:387.675000px;}
.y165{bottom:387.675600px;}
.y9a{bottom:387.677700px;}
.yd2{bottom:387.680400px;}
.yb4{bottom:387.682800px;}
.y155{bottom:387.685200px;}
.y77{bottom:387.690000px;}
.y1b9{bottom:387.692400px;}
.y178{bottom:387.694800px;}
.y1e6{bottom:387.704400px;}
.y1a7{bottom:387.706800px;}
.y9b{bottom:392.418450px;}
.y111{bottom:394.407600px;}
.yfc{bottom:394.411350px;}
.y54{bottom:407.890800px;}
.y32{bottom:407.901600px;}
.y11{bottom:407.917350px;}
.y56{bottom:407.923200px;}
.y99{bottom:407.926950px;}
.yd1{bottom:407.928000px;}
.yb3{bottom:407.930400px;}
.y154{bottom:407.932800px;}
.y1ca{bottom:407.935200px;}
.y76{bottom:407.937600px;}
.y1b8{bottom:407.940000px;}
.y177{bottom:407.942400px;}
.y191{bottom:407.949600px;}
.y1e5{bottom:407.952000px;}
.y1a6{bottom:407.954400px;}
.y1d9{bottom:407.980800px;}
.yfb{bottom:408.661350px;}
.y55{bottom:412.568550px;}
.y53{bottom:428.146200px;}
.y31{bottom:428.157000px;}
.y10{bottom:428.170350px;}
.y223{bottom:428.173200px;}
.yd0{bottom:428.175600px;}
.y98{bottom:428.176200px;}
.yb2{bottom:428.178000px;}
.y153{bottom:428.180400px;}
.y1c9{bottom:428.182800px;}
.y75{bottom:428.185200px;}
.y1b7{bottom:428.187600px;}
.y176{bottom:428.190000px;}
.y190{bottom:428.197200px;}
.y1e4{bottom:428.199600px;}
.y1a5{bottom:428.202000px;}
.y1d8{bottom:428.228400px;}
.y52{bottom:448.401600px;}
.y30{bottom:448.412400px;}
.ycf{bottom:448.423200px;}
.yf{bottom:448.423350px;}
.y97{bottom:448.425450px;}
.yb1{bottom:448.425600px;}
.y152{bottom:448.428000px;}
.y1c8{bottom:448.430400px;}
.y74{bottom:448.432800px;}
.y1b6{bottom:448.435200px;}
.y175{bottom:448.437600px;}
.y18f{bottom:448.444800px;}
.y1e3{bottom:448.447200px;}
.y1a4{bottom:448.449600px;}
.y1d7{bottom:448.476000px;}
.y51{bottom:468.657000px;}
.y2f{bottom:468.667800px;}
.yb0{bottom:468.673200px;}
.ye{bottom:468.673350px;}
.y96{bottom:468.674700px;}
.y151{bottom:468.675600px;}
.y1c7{bottom:468.678000px;}
.y73{bottom:468.680400px;}
.yce{bottom:468.682800px;}
.y174{bottom:468.685200px;}
.y141{bottom:468.690000px;}
.y18e{bottom:468.692400px;}
.y1e2{bottom:468.694800px;}
.y1a3{bottom:468.697200px;}
.y1d6{bottom:468.723600px;}
.yd{bottom:488.911350px;}
.y50{bottom:488.912400px;}
.y2e{bottom:488.923200px;}
.y95{bottom:488.923950px;}
.y1c6{bottom:488.925600px;}
.y72{bottom:488.928000px;}
.ycd{bottom:488.930400px;}
.y173{bottom:488.932800px;}
.y140{bottom:488.937600px;}
.y18d{bottom:488.940000px;}
.y1e1{bottom:488.942400px;}
.y1a2{bottom:488.944800px;}
.y1d5{bottom:488.971200px;}
.yc{bottom:509.164350px;}
.y4f{bottom:509.167800px;}
.y94{bottom:509.173200px;}
.y71{bottom:509.175600px;}
.ycc{bottom:509.178000px;}
.y172{bottom:509.180400px;}
.y13f{bottom:509.185200px;}
.y18c{bottom:509.187600px;}
.y150{bottom:509.190000px;}
.y1a1{bottom:509.192400px;}
.y1d4{bottom:509.218800px;}
.yb{bottom:529.417350px;}
.y2d{bottom:529.423200px;}
.y93{bottom:529.424700px;}
.ycb{bottom:529.425600px;}
.y171{bottom:529.428000px;}
.y13e{bottom:529.432800px;}
.y18b{bottom:529.435200px;}
.y14f{bottom:529.437600px;}
.y1a0{bottom:529.440000px;}
.y1c5{bottom:529.447200px;}
.ye7{bottom:529.452000px;}
.yfa{bottom:529.466400px;}
.y70{bottom:549.630000px;}
.y4e{bottom:549.667800px;}
.ya{bottom:549.670350px;}
.yaf{bottom:549.673200px;}
.y92{bottom:549.673950px;}
.y170{bottom:549.675600px;}
.y13d{bottom:549.680400px;}
.y18a{bottom:549.682800px;}
.y14e{bottom:549.685200px;}
.y19f{bottom:549.687600px;}
.y1c4{bottom:549.694800px;}
.ye6{bottom:549.699600px;}
.y1b5{bottom:549.704400px;}
.yf9{bottom:549.714000px;}
.y20d{bottom:562.724850px;}
.y6f{bottom:569.885400px;}
.yca{bottom:569.912400px;}
.y4d{bottom:569.923200px;}
.y9{bottom:569.923350px;}
.y90{bottom:569.926950px;}
.y13c{bottom:569.928000px;}
.y189{bottom:569.930400px;}
.y14d{bottom:569.932800px;}
.y19e{bottom:569.935200px;}
.y1c3{bottom:569.942400px;}
.ye5{bottom:569.947200px;}
.y1b4{bottom:569.952000px;}
.yf8{bottom:569.961600px;}
.y91{bottom:574.668450px;}
.y20c{bottom:576.978600px;}
.y6e{bottom:590.140800px;}
.yc9{bottom:590.167800px;}
.y8{bottom:590.170350px;}
.yae{bottom:590.173200px;}
.y13b{bottom:590.175600px;}
.y8f{bottom:590.176200px;}
.y188{bottom:590.178000px;}
.y14c{bottom:590.180400px;}
.y19d{bottom:590.182800px;}
.y1c2{bottom:590.190000px;}
.ye4{bottom:590.194800px;}
.y1b3{bottom:590.199600px;}
.yf7{bottom:590.209200px;}
.y222{bottom:591.142350px;}
.y20b{bottom:591.232350px;}
.y221{bottom:605.396100px;}
.y20a{bottom:605.486100px;}
.y6d{bottom:610.396200px;}
.y4c{bottom:610.423200px;}
.y7{bottom:610.423350px;}
.y8e{bottom:610.425450px;}
.y187{bottom:610.425600px;}
.y2c{bottom:610.428000px;}
.y19c{bottom:610.430400px;}
.y1c1{bottom:610.437600px;}
.ye3{bottom:610.442400px;}
.y1b2{bottom:610.447200px;}
.yf6{bottom:610.456800px;}
.y220{bottom:619.649850px;}
.y209{bottom:619.739850px;}
.y164{bottom:626.920200px;}
.y6c{bottom:630.651600px;}
.yc8{bottom:630.673200px;}
.y8d{bottom:630.674700px;}
.y2b{bottom:630.675600px;}
.y19b{bottom:630.678000px;}
.y1c0{bottom:630.685200px;}
.ye2{bottom:630.690000px;}
.y1b1{bottom:630.694800px;}
.yf5{bottom:630.704400px;}
.y208{bottom:633.993600px;}
.y21f{bottom:638.156100px;}
.y207{bottom:648.247350px;}
.y6b{bottom:650.907000px;}
.y2a{bottom:650.923200px;}
.y6{bottom:650.923350px;}
.y8c{bottom:650.923950px;}
.y19a{bottom:650.925600px;}
.y1bf{bottom:650.932800px;}
.ye1{bottom:650.937600px;}
.y1b0{bottom:650.942400px;}
.y186{bottom:650.944800px;}
.yf4{bottom:650.952000px;}
.y21e{bottom:652.409850px;}
.y21d{bottom:666.663600px;}
.y206{bottom:666.753600px;}
.y6a{bottom:671.162400px;}
.y8b{bottom:671.173200px;}
.y199{bottom:671.175600px;}
.y1be{bottom:671.180400px;}
.ye0{bottom:671.185200px;}
.yc7{bottom:671.190000px;}
.y185{bottom:671.192400px;}
.y29{bottom:671.194800px;}
.yf3{bottom:671.199600px;}
.y21c{bottom:680.917350px;}
.y205{bottom:681.007350px;}
.y14b{bottom:687.670200px;}
.y69{bottom:691.417800px;}
.y1bd{bottom:691.428000px;}
.y4b{bottom:691.432800px;}
.yc6{bottom:691.437600px;}
.y184{bottom:691.440000px;}
.y28{bottom:691.442400px;}
.y8a{bottom:691.447200px;}
.y204{bottom:695.261100px;}
.y21b{bottom:699.423600px;}
.y68{bottom:711.673200px;}
.y1bc{bottom:711.675600px;}
.y4a{bottom:711.680400px;}
.yc5{bottom:711.685200px;}
.y183{bottom:711.687600px;}
.y27{bottom:711.690000px;}
.y89{bottom:711.694800px;}
.y21a{bottom:713.677350px;}
.y203{bottom:713.767350px;}
.y219{bottom:727.931100px;}
.y202{bottom:728.021100px;}
.y12f{bottom:728.044200px;}
.y67{bottom:731.917800px;}
.y1bb{bottom:731.923200px;}
.y49{bottom:731.928000px;}
.yc4{bottom:731.932800px;}
.y182{bottom:731.935200px;}
.y26{bottom:731.937600px;}
.y88{bottom:731.942400px;}
.y218{bottom:742.184850px;}
.y201{bottom:742.274850px;}
.y12e{bottom:742.297950px;}
.y66{bottom:752.173200px;}
.y5{bottom:752.173350px;}
.y48{bottom:752.175600px;}
.yc3{bottom:752.180400px;}
.y181{bottom:752.182800px;}
.y25{bottom:752.185200px;}
.y87{bottom:752.190000px;}
.y200{bottom:756.528600px;}
.y217{bottom:760.691100px;}
.y12d{bottom:760.804200px;}
.y1ff{bottom:770.782350px;}
.y138{bottom:770.809650px;}
.y47{bottom:772.423200px;}
.y198{bottom:772.425600px;}
.yc2{bottom:772.428000px;}
.y180{bottom:772.430400px;}
.y24{bottom:772.432800px;}
.y86{bottom:772.437600px;}
.y216{bottom:774.944850px;}
.y12c{bottom:775.057950px;}
.y137{bottom:785.069400px;}
.y215{bottom:789.198600px;}
.y1fe{bottom:789.288600px;}
.y12b{bottom:789.311700px;}
.y4{bottom:792.669600px;}
.y46{bottom:792.673200px;}
.yc1{bottom:792.675600px;}
.y17f{bottom:792.678000px;}
.y23{bottom:792.680400px;}
.y65{bottom:792.685200px;}
.y13a{bottom:798.671700px;}
.y136{bottom:799.267950px;}
.y214{bottom:803.452350px;}
.y1fd{bottom:803.542350px;}
.y12a{bottom:803.565450px;}
.y45{bottom:812.923200px;}
.y17e{bottom:812.925600px;}
.y22{bottom:812.928000px;}
.y64{bottom:812.932800px;}
.y135{bottom:817.774200px;}
.y1fc{bottom:817.796100px;}
.y213{bottom:821.958600px;}
.y129{bottom:822.048600px;}
.y134{bottom:832.027950px;}
.y1fb{bottom:832.049850px;}
.y139{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.y21{bottom:833.175600px;}
.y44{bottom:833.180400px;}
.y212{bottom:836.212350px;}
.y128{bottom:836.302350px;}
.y133{bottom:846.281700px;}
.y1fa{bottom:846.303600px;}
.y211{bottom:850.466100px;}
.y127{bottom:850.556100px;}
.y20{bottom:853.423200px;}
.y43{bottom:853.428000px;}
.y132{bottom:860.535450px;}
.y210{bottom:864.719850px;}
.y126{bottom:864.809850px;}
.y1f{bottom:873.667800px;}
.y42{bottom:873.675600px;}
.y20f{bottom:878.973600px;}
.y131{bottom:879.041700px;}
.y125{bottom:879.063600px;}
.y20e{bottom:893.227350px;}
.y130{bottom:893.295450px;}
.y124{bottom:893.317350px;}
.y1e{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y163{bottom:952.845000px;}
.y41{bottom:952.912500px;}
.y1d{bottom:952.953150px;}
.y1{bottom:953.019600px;}
.hf{height:23.552734px;}
.h11{height:24.059244px;}
.h2{height:35.830800px;}
.hd{height:36.315000px;}
.h18{height:36.489600px;}
.h15{height:37.016602px;}
.hc{height:38.346000px;}
.h12{height:38.353200px;}
.h13{height:38.359200px;}
.h22{height:38.404800px;}
.h21{height:39.660645px;}
.ha{height:40.537200px;}
.h19{height:40.672800px;}
.h14{height:41.085000px;}
.h7{height:41.641200px;}
.h17{height:42.304688px;}
.h16{height:42.486487px;}
.h20{height:42.519600px;}
.he{height:43.914600px;}
.h3{height:44.247600px;}
.h1f{height:44.460000px;}
.h23{height:46.015200px;}
.h6{height:47.220000px;}
.h9{height:47.374200px;}
.h5{height:47.718000px;}
.hb{height:47.883600px;}
.h24{height:48.164400px;}
.h10{height:48.393000px;}
.h1e{height:51.493200px;}
.h8{height:54.734400px;}
.h1a{height:55.875600px;}
.h1d{height:56.019600px;}
.h1c{height:60.258000px;}
.h1b{height:77.724000px;}
.h4{height:82.635000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x14{left:89.291400px;}
.x4{left:93.543300px;}
.x18{left:94.850004px;}
.x3{left:97.716600px;}
.x6{left:99.924825px;}
.x1a{left:106.299150px;}
.x5{left:107.356200px;}
.x13{left:160.455300px;}
.xd{left:182.890500px;}
.xe{left:187.286850px;}
.x15{left:263.035500px;}
.x11{left:279.817950px;}
.x12{left:284.121750px;}
.x7{left:314.540700px;}
.x8{left:318.844500px;}
.x16{left:359.291400px;}
.x17{left:372.048113px;}
.xf{left:394.917900px;}
.x10{left:399.221700px;}
.x19{left:494.847300px;}
.x9{left:571.967400px;}
.xa{left:576.363750px;}
.x2{left:603.776100px;}
.xb{left:620.643000px;}
.xc{left:625.039350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.516800pt;}
.lsf{letter-spacing:-1.000000pt;}
.ls1b{letter-spacing:-0.560000pt;}
.ls5{letter-spacing:-0.401067pt;}
.lsd{letter-spacing:-0.400000pt;}
.lse{letter-spacing:-0.373333pt;}
.ls17{letter-spacing:-0.250667pt;}
.ls20{letter-spacing:-0.224000pt;}
.ls18{letter-spacing:-0.200533pt;}
.ls2{letter-spacing:-0.197333pt;}
.ls6{letter-spacing:-0.149333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.074667pt;}
.ls1a{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.091733pt;}
.ls11{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.197333pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.501333pt;}
.ls9{letter-spacing:0.520000pt;}
.ls1f{letter-spacing:0.680000pt;}
.ls10{letter-spacing:0.720000pt;}
.ls8{letter-spacing:0.840000pt;}
.ls13{letter-spacing:0.880000pt;}
.ls16{letter-spacing:1.002667pt;}
.lsc{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:1.480000pt;}
.lsb{letter-spacing:2.080000pt;}
.lsa{letter-spacing:2.120000pt;}
.ls1d{letter-spacing:2.320000pt;}
.ls12{letter-spacing:36.000000pt;}
.ls7{letter-spacing:56.377732pt;}
.ls0{letter-spacing:1875.624490pt;}
.ls14{letter-spacing:1916.724444pt;}
.ws88{word-spacing:-14.839467pt;}
.ws1de{word-spacing:-12.320000pt;}
.wsc9{word-spacing:-12.120000pt;}
.wsca{word-spacing:-12.080000pt;}
.ws1df{word-spacing:-11.480000pt;}
.wscb{word-spacing:-11.280000pt;}
.ws1e1{word-spacing:-11.200000pt;}
.wsef{word-spacing:-10.880000pt;}
.wsc6{word-spacing:-10.840000pt;}
.wsf0{word-spacing:-10.720000pt;}
.ws1e0{word-spacing:-10.680000pt;}
.ws1{word-spacing:-10.666667pt;}
.wsc8{word-spacing:-10.520000pt;}
.ws1dd{word-spacing:-10.480000pt;}
.wsf1{word-spacing:-10.160000pt;}
.ws1c3{word-spacing:-10.080000pt;}
.ws165{word-spacing:-10.026667pt;}
.wsc7{word-spacing:-10.000000pt;}
.wsc5{word-spacing:-9.600000pt;}
.ws175{word-spacing:-9.333333pt;}
.ws68{word-spacing:-9.184000pt;}
.wsf2{word-spacing:-8.960000pt;}
.ws1cf{word-spacing:-8.873600pt;}
.ws14b{word-spacing:-8.422400pt;}
.ws34{word-spacing:-7.893333pt;}
.ws0{word-spacing:-7.696000pt;}
.ws2{word-spacing:-7.466667pt;}
.ws89{word-spacing:-7.317333pt;}
.ws177{word-spacing:-6.918400pt;}
.ws12e{word-spacing:-6.366933pt;}
.ws87{word-spacing:-5.845547pt;}
.ws16{word-spacing:-5.783360pt;}
.ws1a5{word-spacing:-5.564800pt;}
.ws142{word-spacing:-5.514667pt;}
.ws131{word-spacing:-5.414400pt;}
.ws18a{word-spacing:-4.862933pt;}
.ws1ca{word-spacing:-4.662400pt;}
.ws145{word-spacing:-4.512000pt;}
.ws14e{word-spacing:-4.311467pt;}
.ws163{word-spacing:-4.261333pt;}
.ws14a{word-spacing:-3.960533pt;}
.ws133{word-spacing:-3.208533pt;}
.wsb7{word-spacing:-2.957867pt;}
.ws67{word-spacing:-2.907733pt;}
.ws12a{word-spacing:-2.874667pt;}
.ws3a{word-spacing:-2.757333pt;}
.ws9c{word-spacing:-2.707200pt;}
.ws1e{word-spacing:-2.506667pt;}
.ws52{word-spacing:-2.456533pt;}
.ws38{word-spacing:-2.406400pt;}
.ws44{word-spacing:-2.380800pt;}
.ws3b{word-spacing:-2.356267pt;}
.ws21{word-spacing:-2.306133pt;}
.ws57{word-spacing:-2.281600pt;}
.wsac{word-spacing:-2.256000pt;}
.wsa2{word-spacing:-2.205867pt;}
.ws58{word-spacing:-2.132800pt;}
.ws23{word-spacing:-2.105600pt;}
.ws3d{word-spacing:-2.055467pt;}
.wsb0{word-spacing:-1.955200pt;}
.ws188{word-spacing:-1.904000pt;}
.ws29{word-spacing:-1.835200pt;}
.ws8e{word-spacing:-1.804800pt;}
.ws5f{word-spacing:-1.754667pt;}
.ws1d0{word-spacing:-1.604267pt;}
.ws2f{word-spacing:-1.554133pt;}
.ws56{word-spacing:-1.537600pt;}
.ws66{word-spacing:-1.504000pt;}
.ws24{word-spacing:-1.403733pt;}
.ws25{word-spacing:-1.388800pt;}
.ws193{word-spacing:-1.381333pt;}
.ws8c{word-spacing:-1.353600pt;}
.wsbf{word-spacing:-1.303467pt;}
.wsf9{word-spacing:-1.200000pt;}
.wsc{word-spacing:-1.192533pt;}
.ws1a1{word-spacing:-1.102933pt;}
.wsd4{word-spacing:-1.002667pt;}
.ws6{word-spacing:-0.963200pt;}
.ws183{word-spacing:-0.952533pt;}
.ws91{word-spacing:-0.942400pt;}
.ws22{word-spacing:-0.902400pt;}
.ws137{word-spacing:-0.852267pt;}
.wsb1{word-spacing:-0.802133pt;}
.ws70{word-spacing:-0.752000pt;}
.wsa9{word-spacing:-0.701867pt;}
.ws1aa{word-spacing:-0.672000pt;}
.wsd2{word-spacing:-0.651733pt;}
.ws12{word-spacing:-0.644800pt;}
.ws1f3{word-spacing:-0.627200pt;}
.wsaa{word-spacing:-0.601600pt;}
.ws5{word-spacing:-0.550400pt;}
.wsa5{word-spacing:-0.545600pt;}
.ws1f5{word-spacing:-0.537600pt;}
.wsc0{word-spacing:-0.501333pt;}
.ws90{word-spacing:-0.496000pt;}
.ws6d{word-spacing:-0.451200pt;}
.ws78{word-spacing:-0.405333pt;}
.ws167{word-spacing:-0.401067pt;}
.wse8{word-spacing:-0.400000pt;}
.ws17{word-spacing:-0.394667pt;}
.ws1d8{word-spacing:-0.360000pt;}
.ws9b{word-spacing:-0.300800pt;}
.ws53{word-spacing:-0.297600pt;}
.ws11d{word-spacing:-0.250667pt;}
.ws1d{word-spacing:-0.200533pt;}
.ws14{word-spacing:-0.198400pt;}
.ws10d{word-spacing:-0.186667pt;}
.ws118{word-spacing:-0.150400pt;}
.ws15{word-spacing:-0.148800pt;}
.ws39{word-spacing:-0.100267pt;}
.ws7{word-spacing:-0.091733pt;}
.ws1d3{word-spacing:-0.080000pt;}
.wsb3{word-spacing:-0.074667pt;}
.wsa8{word-spacing:-0.050133pt;}
.ws3{word-spacing:0.000000pt;}
.wsda{word-spacing:0.040000pt;}
.ws83{word-spacing:0.049600pt;}
.ws13a{word-spacing:0.100267pt;}
.ws1f1{word-spacing:0.134400pt;}
.ws85{word-spacing:0.149333pt;}
.ws1e3{word-spacing:0.160000pt;}
.wscf{word-spacing:0.200533pt;}
.ws96{word-spacing:0.300800pt;}
.ws27{word-spacing:0.347200pt;}
.wscd{word-spacing:0.350933pt;}
.wsd6{word-spacing:0.373333pt;}
.wsd8{word-spacing:0.400000pt;}
.ws2c{word-spacing:0.451200pt;}
.ws3f{word-spacing:0.496000pt;}
.ws7f{word-spacing:0.506667pt;}
.wsb8{word-spacing:0.551467pt;}
.ws1d2{word-spacing:0.560000pt;}
.wsb{word-spacing:0.596267pt;}
.wsbe{word-spacing:0.644800pt;}
.wsb2{word-spacing:0.651733pt;}
.ws43{word-spacing:0.694400pt;}
.ws6e{word-spacing:0.701867pt;}
.ws33{word-spacing:0.709333pt;}
.ws94{word-spacing:0.752000pt;}
.ws1ef{word-spacing:0.760000pt;}
.wsb5{word-spacing:0.784000pt;}
.ws122{word-spacing:0.802133pt;}
.ws32{word-spacing:0.821333pt;}
.ws45{word-spacing:0.843200pt;}
.ws19{word-spacing:0.852267pt;}
.wsa4{word-spacing:0.952533pt;}
.wse4{word-spacing:0.960000pt;}
.wsdb{word-spacing:1.000000pt;}
.ws2e{word-spacing:1.002667pt;}
.ws73{word-spacing:1.013333pt;}
.ws40{word-spacing:1.041600pt;}
.ws187{word-spacing:1.045333pt;}
.ws4{word-spacing:1.054933pt;}
.ws2a{word-spacing:1.102933pt;}
.ws126{word-spacing:1.153067pt;}
.ws47{word-spacing:1.190400pt;}
.wsbb{word-spacing:1.203200pt;}
.ws7e{word-spacing:1.216000pt;}
.wsa6{word-spacing:1.240000pt;}
.ws97{word-spacing:1.253333pt;}
.ws1f{word-spacing:1.303467pt;}
.ws182{word-spacing:1.353600pt;}
.wsf{word-spacing:1.376000pt;}
.ws42{word-spacing:1.388800pt;}
.wsc1{word-spacing:1.403733pt;}
.ws79{word-spacing:1.418667pt;}
.ws138{word-spacing:1.453867pt;}
.wsee{word-spacing:1.480000pt;}
.ws10{word-spacing:1.513600pt;}
.wsce{word-spacing:1.554133pt;}
.wsf4{word-spacing:1.600000pt;}
.ws64{word-spacing:1.604267pt;}
.wsad{word-spacing:1.654400pt;}
.ws1e5{word-spacing:1.680000pt;}
.ws1c2{word-spacing:1.704533pt;}
.ws1db{word-spacing:1.720000pt;}
.ws76{word-spacing:1.722667pt;}
.ws7c{word-spacing:1.773333pt;}
.ws1b{word-spacing:1.804800pt;}
.wsbc{word-spacing:1.854933pt;}
.ws174{word-spacing:1.866667pt;}
.ws7d{word-spacing:1.874667pt;}
.ws99{word-spacing:1.955200pt;}
.ws195{word-spacing:1.978667pt;}
.ws41{word-spacing:1.984000pt;}
.ws159{word-spacing:2.005333pt;}
.ws7b{word-spacing:2.026667pt;}
.wsae{word-spacing:2.055467pt;}
.ws1a{word-spacing:2.105600pt;}
.ws4a{word-spacing:2.155733pt;}
.wsec{word-spacing:2.160000pt;}
.ws7a{word-spacing:2.178667pt;}
.ws26{word-spacing:2.182400pt;}
.ws9{word-spacing:2.201600pt;}
.wsc4{word-spacing:2.205867pt;}
.wsb4{word-spacing:2.277333pt;}
.wsd{word-spacing:2.293333pt;}
.ws4f{word-spacing:2.306133pt;}
.ws13f{word-spacing:2.314667pt;}
.ws28{word-spacing:2.331200pt;}
.ws59{word-spacing:2.356267pt;}
.wsbd{word-spacing:2.380800pt;}
.wsed{word-spacing:2.400000pt;}
.ws2d{word-spacing:2.406400pt;}
.ws18{word-spacing:2.430400pt;}
.ws8d{word-spacing:2.456533pt;}
.ws86{word-spacing:2.464000pt;}
.wse2{word-spacing:2.480000pt;}
.ws162{word-spacing:2.556800pt;}
.ws9e{word-spacing:2.576000pt;}
.ws5d{word-spacing:2.606933pt;}
.ws1ac{word-spacing:2.650667pt;}
.ws1ea{word-spacing:2.680000pt;}
.ws74{word-spacing:2.685333pt;}
.ws160{word-spacing:2.707200pt;}
.ws8{word-spacing:2.752000pt;}
.ws54{word-spacing:2.777600pt;}
.ws1ec{word-spacing:2.800000pt;}
.ws3c{word-spacing:2.807467pt;}
.ws75{word-spacing:2.837333pt;}
.ws1ce{word-spacing:2.857600pt;}
.ws46{word-spacing:2.876800pt;}
.ws4c{word-spacing:2.907733pt;}
.ws1e4{word-spacing:2.920000pt;}
.ws37{word-spacing:2.957867pt;}
.ws48{word-spacing:3.008000pt;}
.ws4d{word-spacing:3.058133pt;}
.ws81{word-spacing:3.090667pt;}
.ws194{word-spacing:3.136000pt;}
.ws5c{word-spacing:3.258667pt;}
.ws63{word-spacing:3.358933pt;}
.wse7{word-spacing:3.360000pt;}
.ws1e7{word-spacing:3.400000pt;}
.ws6a{word-spacing:3.409067pt;}
.ws5e{word-spacing:3.459200pt;}
.ws55{word-spacing:3.472000pt;}
.ws50{word-spacing:3.559467pt;}
.ws1dc{word-spacing:3.600000pt;}
.ws106{word-spacing:3.609600pt;}
.ws1af{word-spacing:3.659733pt;}
.ws19e{word-spacing:3.709867pt;}
.ws1f4{word-spacing:3.718400pt;}
.ws6f{word-spacing:3.860267pt;}
.ws1c{word-spacing:3.910400pt;}
.wsfb{word-spacing:3.942400pt;}
.ws1e9{word-spacing:3.960000pt;}
.wsab{word-spacing:3.960533pt;}
.ws5a{word-spacing:4.010667pt;}
.ws92{word-spacing:4.060800pt;}
.wsa{word-spacing:4.082133pt;}
.wsa3{word-spacing:4.110933pt;}
.ws72{word-spacing:4.154667pt;}
.ws9a{word-spacing:4.161067pt;}
.wsc2{word-spacing:4.261333pt;}
.ws125{word-spacing:4.311467pt;}
.ws180{word-spacing:4.361600pt;}
.ws1b3{word-spacing:4.512000pt;}
.wsba{word-spacing:4.612267pt;}
.ws51{word-spacing:4.662400pt;}
.wsc3{word-spacing:4.712533pt;}
.ws36{word-spacing:4.762667pt;}
.wse{word-spacing:4.770133pt;}
.wsf7{word-spacing:4.800000pt;}
.ws8f{word-spacing:4.862933pt;}
.wsd0{word-spacing:4.913067pt;}
.wsd3{word-spacing:4.963200pt;}
.ws95{word-spacing:5.013333pt;}
.ws80{word-spacing:5.016000pt;}
.ws65{word-spacing:5.063467pt;}
.ws6c{word-spacing:5.163733pt;}
.ws1d7{word-spacing:5.200000pt;}
.wsaf{word-spacing:5.213867pt;}
.ws168{word-spacing:5.314133pt;}
.ws4b{word-spacing:5.364267pt;}
.wse0{word-spacing:5.440000pt;}
.ws20{word-spacing:5.464533pt;}
.ws60{word-spacing:5.514667pt;}
.ws107{word-spacing:5.564800pt;}
.ws16e{word-spacing:5.665067pt;}
.ws1d9{word-spacing:5.680000pt;}
.ws1b9{word-spacing:5.715200pt;}
.ws170{word-spacing:5.765333pt;}
.wsf3{word-spacing:5.840000pt;}
.wsa1{word-spacing:5.865600pt;}
.wse5{word-spacing:5.880000pt;}
.wsa0{word-spacing:5.915733pt;}
.ws77{word-spacing:5.928000pt;}
.ws8b{word-spacing:5.965867pt;}
.wsfa{word-spacing:6.000000pt;}
.wsb9{word-spacing:6.016000pt;}
.ws178{word-spacing:6.066133pt;}
.ws3e{word-spacing:6.116267pt;}
.wsff{word-spacing:6.166400pt;}
.ws14c{word-spacing:6.266667pt;}
.wsa7{word-spacing:6.316800pt;}
.ws19f{word-spacing:6.366933pt;}
.ws109{word-spacing:6.517333pt;}
.wsf6{word-spacing:6.560000pt;}
.ws158{word-spacing:6.567467pt;}
.ws82{word-spacing:6.586667pt;}
.ws186{word-spacing:6.682667pt;}
.ws1da{word-spacing:6.720000pt;}
.ws141{word-spacing:6.818133pt;}
.ws1ad{word-spacing:6.832000pt;}
.ws128{word-spacing:6.906667pt;}
.wsd1{word-spacing:7.018667pt;}
.ws61{word-spacing:7.068800pt;}
.ws173{word-spacing:7.118933pt;}
.wsb6{word-spacing:7.169067pt;}
.ws98{word-spacing:7.319467pt;}
.ws84{word-spacing:7.340800pt;}
.ws1eb{word-spacing:7.400000pt;}
.wsdd{word-spacing:7.480000pt;}
.ws5b{word-spacing:7.520000pt;}
.ws49{word-spacing:7.820800pt;}
.ws198{word-spacing:7.870933pt;}
.wse1{word-spacing:7.920000pt;}
.ws8a{word-spacing:7.985600pt;}
.ws13{word-spacing:8.035200pt;}
.ws93{word-spacing:8.121600pt;}
.ws1f0{word-spacing:8.200000pt;}
.ws30{word-spacing:8.221867pt;}
.ws11{word-spacing:8.382400pt;}
.ws62{word-spacing:8.422400pt;}
.ws171{word-spacing:8.472533pt;}
.wse6{word-spacing:8.520000pt;}
.ws172{word-spacing:8.522667pt;}
.ws1c5{word-spacing:8.572800pt;}
.wsd9{word-spacing:8.600000pt;}
.ws1b4{word-spacing:8.673067pt;}
.ws1c4{word-spacing:8.723200pt;}
.ws4e{word-spacing:8.773333pt;}
.ws6b{word-spacing:8.873600pt;}
.ws1ba{word-spacing:9.174400pt;}
.ws1f2{word-spacing:9.273600pt;}
.wsf8{word-spacing:9.320000pt;}
.ws2b{word-spacing:9.324800pt;}
.ws108{word-spacing:9.425067pt;}
.ws1e8{word-spacing:9.480000pt;}
.ws19b{word-spacing:9.625600pt;}
.wse9{word-spacing:9.680000pt;}
.ws71{word-spacing:9.876267pt;}
.ws143{word-spacing:9.926400pt;}
.wsf5{word-spacing:10.360000pt;}
.ws13b{word-spacing:10.427733pt;}
.ws113{word-spacing:10.728533pt;}
.ws11e{word-spacing:10.828800pt;}
.ws124{word-spacing:10.929067pt;}
.ws146{word-spacing:10.979200pt;}
.wsdf{word-spacing:11.160000pt;}
.ws1c0{word-spacing:11.179733pt;}
.ws157{word-spacing:11.280000pt;}
.ws1a9{word-spacing:11.380267pt;}
.ws11a{word-spacing:11.430400pt;}
.wsdc{word-spacing:11.560000pt;}
.ws13d{word-spacing:11.781333pt;}
.ws1a7{word-spacing:11.831467pt;}
.ws1be{word-spacing:12.132267pt;}
.ws121{word-spacing:12.232533pt;}
.ws116{word-spacing:12.533333pt;}
.ws19c{word-spacing:12.583467pt;}
.ws14d{word-spacing:12.633600pt;}
.ws166{word-spacing:12.784000pt;}
.ws161{word-spacing:12.834133pt;}
.ws1c9{word-spacing:13.034667pt;}
.ws156{word-spacing:13.084800pt;}
.ws17e{word-spacing:13.134933pt;}
.ws17c{word-spacing:13.185067pt;}
.ws184{word-spacing:13.786667pt;}
.wsde{word-spacing:13.800000pt;}
.ws1c6{word-spacing:14.087467pt;}
.ws132{word-spacing:14.137600pt;}
.ws1b0{word-spacing:14.187733pt;}
.ws179{word-spacing:14.288000pt;}
.ws164{word-spacing:14.438400pt;}
.ws149{word-spacing:14.588800pt;}
.ws140{word-spacing:14.739200pt;}
.ws1c8{word-spacing:15.040000pt;}
.ws1b6{word-spacing:15.140267pt;}
.ws153{word-spacing:15.190400pt;}
.ws112{word-spacing:15.240533pt;}
.ws134{word-spacing:15.390933pt;}
.wsfc{word-spacing:15.641600pt;}
.ws15f{word-spacing:15.691733pt;}
.ws1b5{word-spacing:15.792000pt;}
.ws16c{word-spacing:15.992533pt;}
.ws17b{word-spacing:16.243200pt;}
.ws104{word-spacing:16.343467pt;}
.ws190{word-spacing:16.794667pt;}
.ws130{word-spacing:16.945067pt;}
.ws1c7{word-spacing:17.095467pt;}
.ws115{word-spacing:17.195733pt;}
.wseb{word-spacing:17.280000pt;}
.ws1a0{word-spacing:17.997867pt;}
.ws16f{word-spacing:18.449067pt;}
.ws10f{word-spacing:18.517333pt;}
.ws13c{word-spacing:18.599467pt;}
.ws14f{word-spacing:18.850133pt;}
.wsfe{word-spacing:19.000533pt;}
.ws1ee{word-spacing:19.040000pt;}
.ws11f{word-spacing:19.201067pt;}
.ws1cc{word-spacing:19.251200pt;}
.ws1cb{word-spacing:19.351467pt;}
.ws12f{word-spacing:19.451733pt;}
.ws10a{word-spacing:19.501867pt;}
.ws11c{word-spacing:19.602133pt;}
.ws102{word-spacing:19.752533pt;}
.ws10b{word-spacing:20.003200pt;}
.ws1ab{word-spacing:20.048000pt;}
.ws1bf{word-spacing:20.404267pt;}
.ws1a2{word-spacing:20.654933pt;}
.ws1d1{word-spacing:21.005867pt;}
.ws1ed{word-spacing:21.040000pt;}
.ws1d6{word-spacing:21.160000pt;}
.ws136{word-spacing:21.306667pt;}
.ws120{word-spacing:21.557333pt;}
.ws1a8{word-spacing:21.607467pt;}
.ws135{word-spacing:21.808000pt;}
.ws191{word-spacing:21.858133pt;}
.ws1c1{word-spacing:21.908267pt;}
.ws105{word-spacing:22.409600pt;}
.ws1b2{word-spacing:22.660267pt;}
.ws10e{word-spacing:22.810667pt;}
.ws123{word-spacing:23.412267pt;}
.ws117{word-spacing:23.612800pt;}
.ws1a6{word-spacing:23.813333pt;}
.ws1a3{word-spacing:23.913600pt;}
.ws1a4{word-spacing:24.064000pt;}
.ws147{word-spacing:24.114133pt;}
.ws1d5{word-spacing:24.360000pt;}
.ws18c{word-spacing:24.816000pt;}
.ws18d{word-spacing:24.866133pt;}
.ws1d4{word-spacing:24.880000pt;}
.ws17d{word-spacing:24.916267pt;}
.wsea{word-spacing:25.680000pt;}
.ws15e{word-spacing:25.718400pt;}
.ws181{word-spacing:25.768533pt;}
.ws127{word-spacing:26.219733pt;}
.ws17a{word-spacing:26.320000pt;}
.ws1e6{word-spacing:27.240000pt;}
.ws13e{word-spacing:27.290667pt;}
.ws129{word-spacing:28.298667pt;}
.ws16b{word-spacing:28.325333pt;}
.ws1b8{word-spacing:28.626133pt;}
.wsd7{word-spacing:28.920000pt;}
.ws1bc{word-spacing:28.977067pt;}
.ws17f{word-spacing:29.077333pt;}
.ws111{word-spacing:29.227733pt;}
.ws152{word-spacing:29.277867pt;}
.ws1b1{word-spacing:29.328000pt;}
.ws144{word-spacing:29.478400pt;}
.ws18e{word-spacing:30.080000pt;}
.ws197{word-spacing:30.230400pt;}
.ws1bb{word-spacing:30.781867pt;}
.ws10c{word-spacing:31.182933pt;}
.ws114{word-spacing:32.035200pt;}
.ws119{word-spacing:32.536533pt;}
.ws12d{word-spacing:32.586667pt;}
.ws16d{word-spacing:32.636800pt;}
.ws110{word-spacing:32.737067pt;}
.ws139{word-spacing:32.887467pt;}
.ws103{word-spacing:33.288533pt;}
.ws176{word-spacing:33.338667pt;}
.ws12c{word-spacing:33.639467pt;}
.ws150{word-spacing:33.689600pt;}
.ws100{word-spacing:33.890133pt;}
.ws148{word-spacing:34.291200pt;}
.ws192{word-spacing:35.093333pt;}
.ws185{word-spacing:36.948267pt;}
.ws15c{word-spacing:37.700267pt;}
.ws154{word-spacing:38.301867pt;}
.wsfd{word-spacing:39.204267pt;}
.ws19a{word-spacing:39.454933pt;}
.ws169{word-spacing:39.555200pt;}
.ws1bd{word-spacing:39.605333pt;}
.ws15a{word-spacing:39.805867pt;}
.ws196{word-spacing:40.307200pt;}
.ws18f{word-spacing:40.357333pt;}
.ws199{word-spacing:40.407467pt;}
.ws16a{word-spacing:42.763733pt;}
.ws101{word-spacing:43.064533pt;}
.ws18b{word-spacing:44.368000pt;}
.wse3{word-spacing:46.320000pt;}
.ws151{word-spacing:47.325867pt;}
.ws11b{word-spacing:48.178133pt;}
.ws155{word-spacing:49.782400pt;}
.ws1b7{word-spacing:50.534400pt;}
.ws19d{word-spacing:50.584533pt;}
.ws15d{word-spacing:52.589867pt;}
.ws31{word-spacing:56.373333pt;}
.ws9d{word-spacing:56.522667pt;}
.wsd5{word-spacing:58.120000pt;}
.ws1cd{word-spacing:60.661333pt;}
.ws35{word-spacing:574.800000pt;}
.ws69{word-spacing:575.080000pt;}
.wscc{word-spacing:575.120000pt;}
.ws9f{word-spacing:575.440000pt;}
.ws12b{word-spacing:660.800000pt;}
.ws15b{word-spacing:661.080000pt;}
.ws1ae{word-spacing:661.560000pt;}
.ws189{word-spacing:661.920000pt;}
.ws1e2{word-spacing:663.720000pt;}
._29{margin-left:-663.740556pt;}
._23{margin-left:-661.924444pt;}
._1e{margin-left:-660.813333pt;}
._a{margin-left:-575.311937pt;}
._24{margin-left:-47.508911pt;}
._1f{margin-left:-28.325377pt;}
._1c{margin-left:-16.598574pt;}
._f{margin-left:-15.425867pt;}
._e{margin-left:-13.669493pt;}
._1b{margin-left:-10.979200pt;}
._20{margin-left:-8.021116pt;}
._6{margin-left:-6.564480pt;}
._7{margin-left:-5.514667pt;}
._4{margin-left:-4.563200pt;}
._9{margin-left:-3.546667pt;}
._3{margin-left:-2.596267pt;}
._2{margin-left:-1.471573pt;}
._0{width:1.436587pt;}
._5{width:2.378027pt;}
._1{width:3.306240pt;}
._12{width:4.674667pt;}
._2b{width:8.691840pt;}
._21{width:16.895107pt;}
._15{width:18.800000pt;}
._b{width:20.893061pt;}
._28{width:24.276160pt;}
._14{width:25.249387pt;}
._13{width:26.509547pt;}
._16{width:27.619107pt;}
._18{width:28.654933pt;}
._17{width:30.208000pt;}
._10{width:31.913173pt;}
._d{width:33.935780pt;}
._1a{width:36.017243pt;}
._25{width:37.183780pt;}
._19{width:38.666240pt;}
._1d{width:49.466447pt;}
._c{width:53.904935pt;}
._8{width:55.663780pt;}
._11{width:56.867433pt;}
._22{width:58.310818pt;}
._27{width:76.467200pt;}
._26{width:77.563733pt;}
._2a{width:82.596267pt;}
.fs9{font-size:28.916800pt;}
.fsb{font-size:29.227733pt;}
.fse{font-size:29.538667pt;}
.fs8{font-size:37.333333pt;}
.fs0{font-size:39.466667pt;}
.fsc{font-size:40.000000pt;}
.fsf{font-size:42.666667pt;}
.fs10{font-size:44.800000pt;}
.fs5{font-size:45.866667pt;}
.fs7{font-size:49.600000pt;}
.fsa{font-size:50.133333pt;}
.fsd{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:67.200000pt;}
.fs11{font-size:90.666667pt;}
.fs2{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:58.104933pt;}
.y14a{bottom:92.594533pt;}
.y1af{bottom:92.595600pt;}
.y162{bottom:92.595867pt;}
.ydf{bottom:92.597200pt;}
.y40{bottom:92.598533pt;}
.yf2{bottom:92.615467pt;}
.y17d{bottom:92.626133pt;}
.y85{bottom:92.643200pt;}
.y1f9{bottom:96.114533pt;}
.y1f1{bottom:99.914533pt;}
.y110{bottom:102.335467pt;}
.y149{bottom:105.129200pt;}
.y161{bottom:105.130533pt;}
.y3f{bottom:105.131867pt;}
.yad{bottom:108.154000pt;}
.y1ae{bottom:108.154267pt;}
.yc0{bottom:108.155600pt;}
.y1f8{bottom:108.784533pt;}
.yf1{bottom:110.613333pt;}
.y1e0{bottom:110.615467pt;}
.y17c{bottom:110.624000pt;}
.y84{bottom:110.641067pt;}
.y123{bottom:111.205067pt;}
.y1f0{bottom:112.584533pt;}
.y10f{bottom:115.005467pt;}
.yde{bottom:117.662267pt;}
.y148{bottom:117.663867pt;}
.y160{bottom:117.665200pt;}
.y1ad{bottom:120.687333pt;}
.y3e{bottom:120.687600pt;}
.y1f7{bottom:121.454533pt;}
.yac{bottom:123.712667pt;}
.y122{bottom:123.875067pt;}
.y1ef{bottom:125.254533pt;}
.y10e{bottom:127.675467pt;}
.y1b{bottom:128.579333pt;}
.yf0{bottom:128.611200pt;}
.y1df{bottom:128.613333pt;}
.y63{bottom:128.617600pt;}
.y17b{bottom:128.621867pt;}
.y83{bottom:128.638933pt;}
.y147{bottom:130.198533pt;}
.ydd{bottom:133.220933pt;}
.y3d{bottom:133.222267pt;}
.y1f6{bottom:134.124533pt;}
.yab{bottom:136.244400pt;}
.y1ac{bottom:136.246000pt;}
.y121{bottom:136.545067pt;}
.y1ee{bottom:137.927867pt;}
.y10d{bottom:140.345467pt;}
.y1d3{bottom:142.731867pt;}
.ydc{bottom:145.755600pt;}
.y1a{bottom:146.584133pt;}
.y197{bottom:146.602667pt;}
.yef{bottom:146.609067pt;}
.y1de{bottom:146.611200pt;}
.ybf{bottom:146.613333pt;}
.y62{bottom:146.615467pt;}
.y17a{bottom:146.619733pt;}
.y82{bottom:146.636800pt;}
.y1f5{bottom:146.794533pt;}
.y1ab{bottom:148.777733pt;}
.y120{bottom:149.215067pt;}
.y1ed{bottom:150.593200pt;}
.yaa{bottom:151.803067pt;}
.y10c{bottom:153.015467pt;}
.y1f4{bottom:159.464533pt;}
.y11f{bottom:161.885067pt;}
.y1ec{bottom:163.258533pt;}
.y1aa{bottom:164.336400pt;}
.y19{bottom:164.588933pt;}
.y196{bottom:164.600533pt;}
.yee{bottom:164.606933pt;}
.y1dd{bottom:164.609067pt;}
.ybe{bottom:164.611200pt;}
.y61{bottom:164.613333pt;}
.y179{bottom:164.617600pt;}
.y16f{bottom:164.621867pt;}
.y15f{bottom:164.630400pt;}
.y81{bottom:164.634667pt;}
.y10b{bottom:165.685467pt;}
.ya9{bottom:167.360133pt;}
.y11e{bottom:174.555067pt;}
.y1f3{bottom:175.914533pt;}
.y1eb{bottom:175.923867pt;}
.y1a9{bottom:176.869733pt;}
.y10a{bottom:178.355467pt;}
.y18{bottom:182.593733pt;}
.y195{bottom:182.598400pt;}
.yed{bottom:182.604800pt;}
.y1dc{bottom:182.606933pt;}
.ybd{bottom:182.609067pt;}
.y60{bottom:182.611200pt;}
.y3c{bottom:182.615467pt;}
.y16e{bottom:182.619733pt;}
.ydb{bottom:182.624000pt;}
.y146{bottom:182.626133pt;}
.y15e{bottom:182.628267pt;}
.y80{bottom:182.632533pt;}
.y11d{bottom:187.225067pt;}
.y1f2{bottom:188.584533pt;}
.y1ea{bottom:188.589200pt;}
.y109{bottom:191.025467pt;}
.ya8{bottom:200.593600pt;}
.y194{bottom:200.598400pt;}
.y17{bottom:200.598533pt;}
.yec{bottom:200.602667pt;}
.y228{bottom:200.603200pt;}
.y1db{bottom:200.604800pt;}
.ybc{bottom:200.606933pt;}
.y5f{bottom:200.609067pt;}
.y3b{bottom:200.613333pt;}
.y1d2{bottom:200.615467pt;}
.y16d{bottom:200.617600pt;}
.yda{bottom:200.621867pt;}
.y145{bottom:200.624000pt;}
.y15d{bottom:200.626133pt;}
.y7f{bottom:200.630400pt;}
.y1e9{bottom:201.254533pt;}
.y11c{bottom:203.675067pt;}
.y108{bottom:203.695467pt;}
.y11b{bottom:216.345067pt;}
.ya5{bottom:218.593600pt;}
.ya7{bottom:218.598400pt;}
.yeb{bottom:218.600533pt;}
.y227{bottom:218.601600pt;}
.y193{bottom:218.602667pt;}
.ybb{bottom:218.604800pt;}
.y5e{bottom:218.606933pt;}
.y3a{bottom:218.611200pt;}
.y1d1{bottom:218.613333pt;}
.y16c{bottom:218.615467pt;}
.yd9{bottom:218.619733pt;}
.y144{bottom:218.621867pt;}
.y15c{bottom:218.624000pt;}
.y7e{bottom:218.628267pt;}
.y106{bottom:220.135067pt;}
.y107{bottom:220.141733pt;}
.ya6{bottom:222.727600pt;}
.y11a{bottom:229.015067pt;}
.y105{bottom:232.805067pt;}
.ya3{bottom:236.598400pt;}
.y16{bottom:236.598533pt;}
.y226{bottom:236.600000pt;}
.y192{bottom:236.600533pt;}
.yba{bottom:236.602667pt;}
.y5d{bottom:236.604800pt;}
.y39{bottom:236.609067pt;}
.y1d0{bottom:236.611200pt;}
.y16b{bottom:236.613333pt;}
.yd8{bottom:236.617600pt;}
.y143{bottom:236.619733pt;}
.y15b{bottom:236.621867pt;}
.y7d{bottom:236.626133pt;}
.ya4{bottom:240.727600pt;}
.y119{bottom:245.465067pt;}
.y104{bottom:245.475067pt;}
.yea{bottom:254.569600pt;}
.y1da{bottom:254.598400pt;}
.yb9{bottom:254.600533pt;}
.y5c{bottom:254.602667pt;}
.y38{bottom:254.606933pt;}
.y1cf{bottom:254.609067pt;}
.y16a{bottom:254.611200pt;}
.yd7{bottom:254.615467pt;}
.y142{bottom:254.617600pt;}
.y15a{bottom:254.619733pt;}
.y7c{bottom:254.624000pt;}
.y118{bottom:258.135067pt;}
.y103{bottom:261.911200pt;}
.y117{bottom:270.805067pt;}
.ye9{bottom:272.574400pt;}
.y225{bottom:272.598400pt;}
.ya2{bottom:272.599733pt;}
.y5b{bottom:272.600533pt;}
.y37{bottom:272.604800pt;}
.y1ce{bottom:272.606933pt;}
.y169{bottom:272.609067pt;}
.yd6{bottom:272.613333pt;}
.yb8{bottom:272.615467pt;}
.y159{bottom:272.617600pt;}
.y7b{bottom:272.621867pt;}
.y102{bottom:274.581200pt;}
.y116{bottom:283.475067pt;}
.y101{bottom:287.251200pt;}
.ye8{bottom:290.579200pt;}
.y5a{bottom:290.598400pt;}
.ya1{bottom:290.599067pt;}
.y36{bottom:290.602667pt;}
.y1cd{bottom:290.604800pt;}
.y168{bottom:290.606933pt;}
.yd5{bottom:290.611200pt;}
.yb7{bottom:290.613333pt;}
.y158{bottom:290.615467pt;}
.y7a{bottom:290.619733pt;}
.y115{bottom:296.124533pt;}
.y100{bottom:299.926533pt;}
.y59{bottom:308.584000pt;}
.y14{bottom:308.595867pt;}
.ya0{bottom:308.598400pt;}
.y15{bottom:308.598533pt;}
.y9e{bottom:308.599733pt;}
.y35{bottom:308.600533pt;}
.y1cc{bottom:308.602667pt;}
.y167{bottom:308.604800pt;}
.yd4{bottom:308.609067pt;}
.yb6{bottom:308.611200pt;}
.y157{bottom:308.613333pt;}
.y79{bottom:308.617600pt;}
.y1e8{bottom:308.630400pt;}
.y114{bottom:312.574533pt;}
.yff{bottom:312.591867pt;}
.y9f{bottom:312.816400pt;}
.y113{bottom:325.244533pt;}
.yfe{bottom:325.257200pt;}
.y58{bottom:326.588800pt;}
.y34{bottom:326.598400pt;}
.y13{bottom:326.598533pt;}
.y9d{bottom:326.599067pt;}
.y1cb{bottom:326.600533pt;}
.y166{bottom:326.602667pt;}
.yd3{bottom:326.606933pt;}
.yb5{bottom:326.609067pt;}
.y156{bottom:326.611200pt;}
.y78{bottom:326.615467pt;}
.y1ba{bottom:326.617600pt;}
.y1e7{bottom:326.628267pt;}
.y1a8{bottom:326.630400pt;}
.y112{bottom:337.914533pt;}
.yfd{bottom:337.922533pt;}
.y33{bottom:344.574400pt;}
.y12{bottom:344.590533pt;}
.y57{bottom:344.593600pt;}
.y9c{bottom:344.598400pt;}
.y224{bottom:344.600000pt;}
.y165{bottom:344.600533pt;}
.y9a{bottom:344.602400pt;}
.yd2{bottom:344.604800pt;}
.yb4{bottom:344.606933pt;}
.y155{bottom:344.609067pt;}
.y77{bottom:344.613333pt;}
.y1b9{bottom:344.615467pt;}
.y178{bottom:344.617600pt;}
.y1e6{bottom:344.626133pt;}
.y1a7{bottom:344.628267pt;}
.y9b{bottom:348.816400pt;}
.y111{bottom:350.584533pt;}
.yfc{bottom:350.587867pt;}
.y54{bottom:362.569600pt;}
.y32{bottom:362.579200pt;}
.y11{bottom:362.593200pt;}
.y56{bottom:362.598400pt;}
.y99{bottom:362.601733pt;}
.yd1{bottom:362.602667pt;}
.yb3{bottom:362.604800pt;}
.y154{bottom:362.606933pt;}
.y1ca{bottom:362.609067pt;}
.y76{bottom:362.611200pt;}
.y1b8{bottom:362.613333pt;}
.y177{bottom:362.615467pt;}
.y191{bottom:362.621867pt;}
.y1e5{bottom:362.624000pt;}
.y1a6{bottom:362.626133pt;}
.y1d9{bottom:362.649600pt;}
.yfb{bottom:363.254533pt;}
.y55{bottom:366.727600pt;}
.y53{bottom:380.574400pt;}
.y31{bottom:380.584000pt;}
.y10{bottom:380.595867pt;}
.y223{bottom:380.598400pt;}
.yd0{bottom:380.600533pt;}
.y98{bottom:380.601067pt;}
.yb2{bottom:380.602667pt;}
.y153{bottom:380.604800pt;}
.y1c9{bottom:380.606933pt;}
.y75{bottom:380.609067pt;}
.y1b7{bottom:380.611200pt;}
.y176{bottom:380.613333pt;}
.y190{bottom:380.619733pt;}
.y1e4{bottom:380.621867pt;}
.y1a5{bottom:380.624000pt;}
.y1d8{bottom:380.647467pt;}
.y52{bottom:398.579200pt;}
.y30{bottom:398.588800pt;}
.ycf{bottom:398.598400pt;}
.yf{bottom:398.598533pt;}
.y97{bottom:398.600400pt;}
.yb1{bottom:398.600533pt;}
.y152{bottom:398.602667pt;}
.y1c8{bottom:398.604800pt;}
.y74{bottom:398.606933pt;}
.y1b6{bottom:398.609067pt;}
.y175{bottom:398.611200pt;}
.y18f{bottom:398.617600pt;}
.y1e3{bottom:398.619733pt;}
.y1a4{bottom:398.621867pt;}
.y1d7{bottom:398.645333pt;}
.y51{bottom:416.584000pt;}
.y2f{bottom:416.593600pt;}
.yb0{bottom:416.598400pt;}
.ye{bottom:416.598533pt;}
.y96{bottom:416.599733pt;}
.y151{bottom:416.600533pt;}
.y1c7{bottom:416.602667pt;}
.y73{bottom:416.604800pt;}
.yce{bottom:416.606933pt;}
.y174{bottom:416.609067pt;}
.y141{bottom:416.613333pt;}
.y18e{bottom:416.615467pt;}
.y1e2{bottom:416.617600pt;}
.y1a3{bottom:416.619733pt;}
.y1d6{bottom:416.643200pt;}
.yd{bottom:434.587867pt;}
.y50{bottom:434.588800pt;}
.y2e{bottom:434.598400pt;}
.y95{bottom:434.599067pt;}
.y1c6{bottom:434.600533pt;}
.y72{bottom:434.602667pt;}
.ycd{bottom:434.604800pt;}
.y173{bottom:434.606933pt;}
.y140{bottom:434.611200pt;}
.y18d{bottom:434.613333pt;}
.y1e1{bottom:434.615467pt;}
.y1a2{bottom:434.617600pt;}
.y1d5{bottom:434.641067pt;}
.yc{bottom:452.590533pt;}
.y4f{bottom:452.593600pt;}
.y94{bottom:452.598400pt;}
.y71{bottom:452.600533pt;}
.ycc{bottom:452.602667pt;}
.y172{bottom:452.604800pt;}
.y13f{bottom:452.609067pt;}
.y18c{bottom:452.611200pt;}
.y150{bottom:452.613333pt;}
.y1a1{bottom:452.615467pt;}
.y1d4{bottom:452.638933pt;}
.yb{bottom:470.593200pt;}
.y2d{bottom:470.598400pt;}
.y93{bottom:470.599733pt;}
.ycb{bottom:470.600533pt;}
.y171{bottom:470.602667pt;}
.y13e{bottom:470.606933pt;}
.y18b{bottom:470.609067pt;}
.y14f{bottom:470.611200pt;}
.y1a0{bottom:470.613333pt;}
.y1c5{bottom:470.619733pt;}
.ye7{bottom:470.624000pt;}
.yfa{bottom:470.636800pt;}
.y70{bottom:488.560000pt;}
.y4e{bottom:488.593600pt;}
.ya{bottom:488.595867pt;}
.yaf{bottom:488.598400pt;}
.y92{bottom:488.599067pt;}
.y170{bottom:488.600533pt;}
.y13d{bottom:488.604800pt;}
.y18a{bottom:488.606933pt;}
.y14e{bottom:488.609067pt;}
.y19f{bottom:488.611200pt;}
.y1c4{bottom:488.617600pt;}
.ye6{bottom:488.621867pt;}
.y1b5{bottom:488.626133pt;}
.yf9{bottom:488.634667pt;}
.y20d{bottom:500.199867pt;}
.y6f{bottom:506.564800pt;}
.yca{bottom:506.588800pt;}
.y4d{bottom:506.598400pt;}
.y9{bottom:506.598533pt;}
.y90{bottom:506.601733pt;}
.y13c{bottom:506.602667pt;}
.y189{bottom:506.604800pt;}
.y14d{bottom:506.606933pt;}
.y19e{bottom:506.609067pt;}
.y1c3{bottom:506.615467pt;}
.ye5{bottom:506.619733pt;}
.y1b4{bottom:506.624000pt;}
.yf8{bottom:506.632533pt;}
.y91{bottom:510.816400pt;}
.y20c{bottom:512.869867pt;}
.y6e{bottom:524.569600pt;}
.yc9{bottom:524.593600pt;}
.y8{bottom:524.595867pt;}
.yae{bottom:524.598400pt;}
.y13b{bottom:524.600533pt;}
.y8f{bottom:524.601067pt;}
.y188{bottom:524.602667pt;}
.y14c{bottom:524.604800pt;}
.y19d{bottom:524.606933pt;}
.y1c2{bottom:524.613333pt;}
.ye4{bottom:524.617600pt;}
.y1b3{bottom:524.621867pt;}
.yf7{bottom:524.630400pt;}
.y222{bottom:525.459867pt;}
.y20b{bottom:525.539867pt;}
.y221{bottom:538.129867pt;}
.y20a{bottom:538.209867pt;}
.y6d{bottom:542.574400pt;}
.y4c{bottom:542.598400pt;}
.y7{bottom:542.598533pt;}
.y8e{bottom:542.600400pt;}
.y187{bottom:542.600533pt;}
.y2c{bottom:542.602667pt;}
.y19c{bottom:542.604800pt;}
.y1c1{bottom:542.611200pt;}
.ye3{bottom:542.615467pt;}
.y1b2{bottom:542.619733pt;}
.yf6{bottom:542.628267pt;}
.y220{bottom:550.799867pt;}
.y209{bottom:550.879867pt;}
.y164{bottom:557.262400pt;}
.y6c{bottom:560.579200pt;}
.yc8{bottom:560.598400pt;}
.y8d{bottom:560.599733pt;}
.y2b{bottom:560.600533pt;}
.y19b{bottom:560.602667pt;}
.y1c0{bottom:560.609067pt;}
.ye2{bottom:560.613333pt;}
.y1b1{bottom:560.617600pt;}
.yf5{bottom:560.626133pt;}
.y208{bottom:563.549867pt;}
.y21f{bottom:567.249867pt;}
.y207{bottom:576.219867pt;}
.y6b{bottom:578.584000pt;}
.y2a{bottom:578.598400pt;}
.y6{bottom:578.598533pt;}
.y8c{bottom:578.599067pt;}
.y19a{bottom:578.600533pt;}
.y1bf{bottom:578.606933pt;}
.ye1{bottom:578.611200pt;}
.y1b0{bottom:578.615467pt;}
.y186{bottom:578.617600pt;}
.yf4{bottom:578.624000pt;}
.y21e{bottom:579.919867pt;}
.y21d{bottom:592.589867pt;}
.y206{bottom:592.669867pt;}
.y6a{bottom:596.588800pt;}
.y8b{bottom:596.598400pt;}
.y199{bottom:596.600533pt;}
.y1be{bottom:596.604800pt;}
.ye0{bottom:596.609067pt;}
.yc7{bottom:596.613333pt;}
.y185{bottom:596.615467pt;}
.y29{bottom:596.617600pt;}
.yf3{bottom:596.621867pt;}
.y21c{bottom:605.259867pt;}
.y205{bottom:605.339867pt;}
.y14b{bottom:611.262400pt;}
.y69{bottom:614.593600pt;}
.y1bd{bottom:614.602667pt;}
.y4b{bottom:614.606933pt;}
.yc6{bottom:614.611200pt;}
.y184{bottom:614.613333pt;}
.y28{bottom:614.615467pt;}
.y8a{bottom:614.619733pt;}
.y204{bottom:618.009867pt;}
.y21b{bottom:621.709867pt;}
.y68{bottom:632.598400pt;}
.y1bc{bottom:632.600533pt;}
.y4a{bottom:632.604800pt;}
.yc5{bottom:632.609067pt;}
.y183{bottom:632.611200pt;}
.y27{bottom:632.613333pt;}
.y89{bottom:632.617600pt;}
.y21a{bottom:634.379867pt;}
.y203{bottom:634.459867pt;}
.y219{bottom:647.049867pt;}
.y202{bottom:647.129867pt;}
.y12f{bottom:647.150400pt;}
.y67{bottom:650.593600pt;}
.y1bb{bottom:650.598400pt;}
.y49{bottom:650.602667pt;}
.yc4{bottom:650.606933pt;}
.y182{bottom:650.609067pt;}
.y26{bottom:650.611200pt;}
.y88{bottom:650.615467pt;}
.y218{bottom:659.719867pt;}
.y201{bottom:659.799867pt;}
.y12e{bottom:659.820400pt;}
.y66{bottom:668.598400pt;}
.y5{bottom:668.598533pt;}
.y48{bottom:668.600533pt;}
.yc3{bottom:668.604800pt;}
.y181{bottom:668.606933pt;}
.y25{bottom:668.609067pt;}
.y87{bottom:668.613333pt;}
.y200{bottom:672.469867pt;}
.y217{bottom:676.169867pt;}
.y12d{bottom:676.270400pt;}
.y1ff{bottom:685.139867pt;}
.y138{bottom:685.164133pt;}
.y47{bottom:686.598400pt;}
.y198{bottom:686.600533pt;}
.yc2{bottom:686.602667pt;}
.y180{bottom:686.604800pt;}
.y24{bottom:686.606933pt;}
.y86{bottom:686.611200pt;}
.y216{bottom:688.839867pt;}
.y12c{bottom:688.940400pt;}
.y137{bottom:697.839467pt;}
.y215{bottom:701.509867pt;}
.y1fe{bottom:701.589867pt;}
.y12b{bottom:701.610400pt;}
.y4{bottom:704.595200pt;}
.y46{bottom:704.598400pt;}
.yc1{bottom:704.600533pt;}
.y17f{bottom:704.602667pt;}
.y23{bottom:704.604800pt;}
.y65{bottom:704.609067pt;}
.y13a{bottom:709.930400pt;}
.y136{bottom:710.460400pt;}
.y214{bottom:714.179867pt;}
.y1fd{bottom:714.259867pt;}
.y12a{bottom:714.280400pt;}
.y45{bottom:722.598400pt;}
.y17e{bottom:722.600533pt;}
.y22{bottom:722.602667pt;}
.y64{bottom:722.606933pt;}
.y135{bottom:726.910400pt;}
.y1fc{bottom:726.929867pt;}
.y213{bottom:730.629867pt;}
.y129{bottom:730.709867pt;}
.y134{bottom:739.580400pt;}
.y1fb{bottom:739.599867pt;}
.y139{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.y21{bottom:740.600533pt;}
.y44{bottom:740.604800pt;}
.y212{bottom:743.299867pt;}
.y128{bottom:743.379867pt;}
.y133{bottom:752.250400pt;}
.y1fa{bottom:752.269867pt;}
.y211{bottom:755.969867pt;}
.y127{bottom:756.049867pt;}
.y20{bottom:758.598400pt;}
.y43{bottom:758.602667pt;}
.y132{bottom:764.920400pt;}
.y210{bottom:768.639867pt;}
.y126{bottom:768.719867pt;}
.y1f{bottom:776.593600pt;}
.y42{bottom:776.600533pt;}
.y20f{bottom:781.309867pt;}
.y131{bottom:781.370400pt;}
.y125{bottom:781.389867pt;}
.y20e{bottom:793.979867pt;}
.y130{bottom:794.040400pt;}
.y124{bottom:794.059867pt;}
.y1e{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y163{bottom:846.973333pt;}
.y41{bottom:847.033333pt;}
.y1d{bottom:847.069467pt;}
.y1{bottom:847.128533pt;}
.hf{height:20.935763pt;}
.h11{height:21.385995pt;}
.h2{height:31.849600pt;}
.hd{height:32.280000pt;}
.h18{height:32.435200pt;}
.h15{height:32.903646pt;}
.hc{height:34.085333pt;}
.h12{height:34.091733pt;}
.h13{height:34.097067pt;}
.h22{height:34.137600pt;}
.h21{height:35.253906pt;}
.ha{height:36.033067pt;}
.h19{height:36.153600pt;}
.h14{height:36.520000pt;}
.h7{height:37.014400pt;}
.h17{height:37.604167pt;}
.h16{height:37.765767pt;}
.h20{height:37.795200pt;}
.he{height:39.035200pt;}
.h3{height:39.331200pt;}
.h1f{height:39.520000pt;}
.h23{height:40.902400pt;}
.h6{height:41.973333pt;}
.h9{height:42.110400pt;}
.h5{height:42.416000pt;}
.hb{height:42.563200pt;}
.h24{height:42.812800pt;}
.h10{height:43.016000pt;}
.h1e{height:45.771733pt;}
.h8{height:48.652800pt;}
.h1a{height:49.667200pt;}
.h1d{height:49.795200pt;}
.h1c{height:53.562667pt;}
.h1b{height:69.088000pt;}
.h4{height:73.453333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x14{left:79.370133pt;}
.x4{left:83.149600pt;}
.x18{left:84.311115pt;}
.x3{left:86.859200pt;}
.x6{left:88.822067pt;}
.x1a{left:94.488133pt;}
.x5{left:95.427733pt;}
.x13{left:142.626933pt;}
.xd{left:162.569333pt;}
.xe{left:166.477200pt;}
.x15{left:233.809333pt;}
.x11{left:248.727067pt;}
.x12{left:252.552667pt;}
.x7{left:279.591733pt;}
.x8{left:283.417333pt;}
.x16{left:319.370133pt;}
.x17{left:330.709433pt;}
.xf{left:351.038133pt;}
.x10{left:354.863733pt;}
.x19{left:439.864267pt;}
.x9{left:508.415467pt;}
.xa{left:512.323333pt;}
.x2{left:536.689867pt;}
.xb{left:551.682667pt;}
.xc{left:555.590533pt;}
}




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