
    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_6bdcc139aacb602e4f44f815.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_b370238ea9ec0f083c00b3e0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_95a39dac72ac12afdc2f4ef7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_f58b7466591dd71b7d7e3e7d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ac8a00a8e80a27905de9da36.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_6d9e0b94d3a6a361a879a9bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_06e8678b807d6eec8c1cbe8b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.471800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.535600px;}
.v1{vertical-align:22.655400px;}
.v4{vertical-align:25.200000px;}
.ls12{letter-spacing:-0.720000px;}
.ls3a{letter-spacing:-0.480000px;}
.ls63{letter-spacing:-0.420000px;}
.ls54{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.336000px;}
.ls69{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.240000px;}
.ls38{letter-spacing:-0.180000px;}
.ls59{letter-spacing:-0.168000px;}
.ls7c{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.120000px;}
.ls97{letter-spacing:-0.096000px;}
.ls3b{letter-spacing:-0.060000px;}
.ls14{letter-spacing:-0.048000px;}
.ls11{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.006000px;}
.ls73{letter-spacing:0.048000px;}
.ls23{letter-spacing:0.060000px;}
.ls5d{letter-spacing:0.096000px;}
.ls18{letter-spacing:0.120000px;}
.ls57{letter-spacing:0.144000px;}
.ls4e{letter-spacing:0.180000px;}
.ls58{letter-spacing:0.192000px;}
.ls4d{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.300000px;}
.ls98{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.360000px;}
.ls82{letter-spacing:0.384000px;}
.ls16{letter-spacing:0.420000px;}
.ls8e{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.528000px;}
.ls19{letter-spacing:0.540000px;}
.ls8a{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.600000px;}
.ls89{letter-spacing:0.624000px;}
.ls4f{letter-spacing:0.660000px;}
.ls2{letter-spacing:0.720000px;}
.ls91{letter-spacing:0.768000px;}
.ls28{letter-spacing:0.780000px;}
.ls88{letter-spacing:0.816000px;}
.lsb{letter-spacing:0.840000px;}
.ls9c{letter-spacing:0.864000px;}
.ls22{letter-spacing:0.900000px;}
.ls2b{letter-spacing:0.960000px;}
.ls1f{letter-spacing:1.020000px;}
.ls7e{letter-spacing:1.056000px;}
.ls27{letter-spacing:1.080000px;}
.ls5b{letter-spacing:1.104000px;}
.ls32{letter-spacing:1.140000px;}
.ls85{letter-spacing:1.152000px;}
.ls26{letter-spacing:1.200000px;}
.ls8b{letter-spacing:1.248000px;}
.lsf{letter-spacing:1.260000px;}
.ls60{letter-spacing:1.296000px;}
.ls2c{letter-spacing:1.320000px;}
.ls87{letter-spacing:1.344000px;}
.ls42{letter-spacing:1.380000px;}
.ls44{letter-spacing:1.440000px;}
.ls80{letter-spacing:1.488000px;}
.ls8{letter-spacing:1.500000px;}
.ls79{letter-spacing:1.536000px;}
.ls25{letter-spacing:1.560000px;}
.ls92{letter-spacing:1.584000px;}
.ls10{letter-spacing:1.620000px;}
.ls78{letter-spacing:1.632000px;}
.ls49{letter-spacing:1.680000px;}
.lsa1{letter-spacing:1.728000px;}
.lse{letter-spacing:1.740000px;}
.ls7b{letter-spacing:1.776000px;}
.ls41{letter-spacing:1.800000px;}
.ls93{letter-spacing:1.824000px;}
.ls2d{letter-spacing:1.860000px;}
.ls9{letter-spacing:1.920000px;}
.ls7d{letter-spacing:1.968000px;}
.ls3d{letter-spacing:1.980000px;}
.ls40{letter-spacing:2.040000px;}
.ls1e{letter-spacing:2.100000px;}
.ls8d{letter-spacing:2.112000px;}
.lsa{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.220000px;}
.ls9e{letter-spacing:2.256000px;}
.ls5{letter-spacing:2.280000px;}
.ls76{letter-spacing:2.304000px;}
.ls34{letter-spacing:2.340000px;}
.ls86{letter-spacing:2.352000px;}
.ls56{letter-spacing:2.400000px;}
.lsc{letter-spacing:2.460000px;}
.ls8f{letter-spacing:2.496000px;}
.ls47{letter-spacing:2.520000px;}
.ls83{letter-spacing:2.544000px;}
.ls1d{letter-spacing:2.580000px;}
.ls9b{letter-spacing:2.592000px;}
.ls2f{letter-spacing:2.640000px;}
.ls9d{letter-spacing:2.688000px;}
.ls30{letter-spacing:2.700000px;}
.ls65{letter-spacing:2.760000px;}
.ls77{letter-spacing:2.784000px;}
.ls33{letter-spacing:2.820000px;}
.ls8c{letter-spacing:2.832000px;}
.ls46{letter-spacing:2.880000px;}
.ls4a{letter-spacing:2.940000px;}
.ls48{letter-spacing:3.000000px;}
.ls90{letter-spacing:3.024000px;}
.ls36{letter-spacing:3.060000px;}
.ls43{letter-spacing:3.120000px;}
.ls9a{letter-spacing:3.168000px;}
.ls5a{letter-spacing:3.180000px;}
.ls35{letter-spacing:3.240000px;}
.ls21{letter-spacing:3.300000px;}
.ls9f{letter-spacing:3.312000px;}
.ls29{letter-spacing:3.360000px;}
.ls99{letter-spacing:3.408000px;}
.ls2a{letter-spacing:3.420000px;}
.ls95{letter-spacing:3.456000px;}
.ls6d{letter-spacing:3.480000px;}
.ls37{letter-spacing:3.540000px;}
.ls50{letter-spacing:3.600000px;}
.ls7a{letter-spacing:3.648000px;}
.ls45{letter-spacing:3.660000px;}
.ls3c{letter-spacing:3.720000px;}
.ls51{letter-spacing:3.780000px;}
.ls6c{letter-spacing:3.840000px;}
.ls3e{letter-spacing:3.900000px;}
.lsa0{letter-spacing:3.936000px;}
.ls3f{letter-spacing:3.960000px;}
.ls81{letter-spacing:3.984000px;}
.lsd{letter-spacing:4.020000px;}
.ls96{letter-spacing:4.032000px;}
.ls1c{letter-spacing:4.140000px;}
.ls7f{letter-spacing:4.176000px;}
.ls17{letter-spacing:4.200000px;}
.ls31{letter-spacing:4.260000px;}
.lsa2{letter-spacing:4.272000px;}
.ls75{letter-spacing:4.320000px;}
.ls20{letter-spacing:4.440000px;}
.ls4b{letter-spacing:4.500000px;}
.ls94{letter-spacing:4.512000px;}
.ls68{letter-spacing:4.560000px;}
.ls67{letter-spacing:4.620000px;}
.ls5e{letter-spacing:4.656000px;}
.ls4c{letter-spacing:4.800000px;}
.ls84{letter-spacing:4.848000px;}
.ls52{letter-spacing:4.860000px;}
.ls70{letter-spacing:5.040000px;}
.ls6b{letter-spacing:5.220000px;}
.ls61{letter-spacing:5.520000px;}
.ls66{letter-spacing:5.580000px;}
.ls72{letter-spacing:5.880000px;}
.ls1a{letter-spacing:6.000000px;}
.ls55{letter-spacing:6.180000px;}
.ls5f{letter-spacing:6.240000px;}
.ls53{letter-spacing:6.420000px;}
.ls6e{letter-spacing:6.840000px;}
.ls64{letter-spacing:6.900000px;}
.ls62{letter-spacing:7.200000px;}
.ls6f{letter-spacing:7.380000px;}
.ls74{letter-spacing:7.620000px;}
.ls71{letter-spacing:7.980000px;}
.ls6a{letter-spacing:8.340000px;}
.ls5c{letter-spacing:122.736000px;}
.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;}
}
.wsd5{word-spacing:-22.860000px;}
.ws56{word-spacing:-21.540000px;}
.ws3d{word-spacing:-21.480000px;}
.ws19{word-spacing:-21.120000px;}
.ws39{word-spacing:-20.640000px;}
.wsd7{word-spacing:-20.160000px;}
.ws3c{word-spacing:-20.100000px;}
.ws70{word-spacing:-19.920000px;}
.wsc7{word-spacing:-19.800000px;}
.wsb1{word-spacing:-19.740000px;}
.wsb2{word-spacing:-19.680000px;}
.ws8f{word-spacing:-19.560000px;}
.wsb3{word-spacing:-19.500000px;}
.wsc6{word-spacing:-19.380000px;}
.wsc5{word-spacing:-19.320000px;}
.ws16{word-spacing:-19.260000px;}
.ws57{word-spacing:-19.200000px;}
.ws71{word-spacing:-19.020000px;}
.ws3{word-spacing:-18.960000px;}
.wsd6{word-spacing:-18.780000px;}
.ws90{word-spacing:-18.720000px;}
.ws1b{word-spacing:-18.600000px;}
.ws59{word-spacing:-18.540000px;}
.wsa9{word-spacing:-18.360000px;}
.ws1{word-spacing:-18.348000px;}
.ws81{word-spacing:-18.240000px;}
.ws58{word-spacing:-18.120000px;}
.wsa6{word-spacing:-18.060000px;}
.ws51{word-spacing:-18.000000px;}
.wsb0{word-spacing:-17.940000px;}
.ws1a{word-spacing:-17.880000px;}
.ws72{word-spacing:-17.820000px;}
.ws73{word-spacing:-17.760000px;}
.wsc8{word-spacing:-17.700000px;}
.ws52{word-spacing:-17.580000px;}
.ws6e{word-spacing:-17.520000px;}
.ws55{word-spacing:-17.460000px;}
.ws5a{word-spacing:-17.400000px;}
.ws53{word-spacing:-17.340000px;}
.wse5{word-spacing:-17.328000px;}
.ws3e{word-spacing:-17.280000px;}
.ws6f{word-spacing:-17.040000px;}
.ws3b{word-spacing:-16.980000px;}
.ws54{word-spacing:-16.860000px;}
.ws38{word-spacing:-16.800000px;}
.ws1c{word-spacing:-16.740000px;}
.ws17{word-spacing:-16.680000px;}
.wsfe{word-spacing:-16.656000px;}
.ws82{word-spacing:-16.620000px;}
.ws3a{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.500000px;}
.wsc4{word-spacing:-16.380000px;}
.wse9{word-spacing:-16.224000px;}
.wsfb{word-spacing:-15.936000px;}
.ws9f{word-spacing:-15.504000px;}
.wsa7{word-spacing:-15.012000px;}
.wsfc{word-spacing:-14.976000px;}
.wsd8{word-spacing:-14.880000px;}
.wse6{word-spacing:-14.688000px;}
.wsfd{word-spacing:-14.640000px;}
.wsa8{word-spacing:-14.544000px;}
.wseb{word-spacing:-14.448000px;}
.wse8{word-spacing:-14.304000px;}
.ws1d{word-spacing:-14.178000px;}
.wsea{word-spacing:-13.632000px;}
.wse7{word-spacing:-13.536000px;}
.ws91{word-spacing:-13.488000px;}
.wsa0{word-spacing:-13.440000px;}
.ws2{word-spacing:-13.344000px;}
.ws9a{word-spacing:-13.296000px;}
.ws0{word-spacing:-11.008800px;}
.wsc3{word-spacing:-6.840000px;}
.ws4e{word-spacing:-4.800000px;}
.wsb7{word-spacing:-4.620000px;}
.wsb4{word-spacing:-3.900000px;}
.ws8e{word-spacing:-3.660000px;}
.wsdb{word-spacing:-3.480000px;}
.ws68{word-spacing:-3.420000px;}
.wsdc{word-spacing:-3.300000px;}
.ws89{word-spacing:-3.240000px;}
.wscd{word-spacing:-3.120000px;}
.wsb9{word-spacing:-3.000000px;}
.ws92{word-spacing:-2.880000px;}
.wsd9{word-spacing:-2.700000px;}
.ws5{word-spacing:-2.664000px;}
.wsda{word-spacing:-2.640000px;}
.ws2a{word-spacing:-2.580000px;}
.ws64{word-spacing:-2.520000px;}
.ws31{word-spacing:-2.460000px;}
.wsed{word-spacing:-2.352000px;}
.ws86{word-spacing:-2.340000px;}
.ws4a{word-spacing:-2.280000px;}
.ws2f{word-spacing:-2.220000px;}
.ws12{word-spacing:-2.160000px;}
.ws28{word-spacing:-1.920000px;}
.ws61{word-spacing:-1.860000px;}
.ws13{word-spacing:-1.740000px;}
.ws105{word-spacing:-1.728000px;}
.ws4f{word-spacing:-1.680000px;}
.ws15{word-spacing:-1.620000px;}
.ws85{word-spacing:-1.560000px;}
.wse4{word-spacing:-1.536000px;}
.ws69{word-spacing:-1.500000px;}
.wsec{word-spacing:-1.488000px;}
.ws62{word-spacing:-1.440000px;}
.ws8a{word-spacing:-1.380000px;}
.ws49{word-spacing:-1.320000px;}
.wsce{word-spacing:-1.260000px;}
.ws29{word-spacing:-1.200000px;}
.ws6{word-spacing:-1.188000px;}
.ws78{word-spacing:-1.140000px;}
.ws100{word-spacing:-1.104000px;}
.ws27{word-spacing:-1.080000px;}
.wsc9{word-spacing:-1.020000px;}
.ws6d{word-spacing:-0.960000px;}
.ws5c{word-spacing:-0.840000px;}
.wsef{word-spacing:-0.816000px;}
.ws33{word-spacing:-0.780000px;}
.wsf4{word-spacing:-0.768000px;}
.ws8{word-spacing:-0.720000px;}
.wsca{word-spacing:-0.660000px;}
.ws20{word-spacing:-0.600000px;}
.ws1f{word-spacing:-0.540000px;}
.wsd0{word-spacing:-0.528000px;}
.ws35{word-spacing:-0.480000px;}
.wsf3{word-spacing:-0.432000px;}
.ws79{word-spacing:-0.420000px;}
.ws5f{word-spacing:-0.360000px;}
.ws30{word-spacing:-0.300000px;}
.ws99{word-spacing:-0.288000px;}
.ws5e{word-spacing:-0.240000px;}
.wsee{word-spacing:-0.192000px;}
.ws77{word-spacing:-0.180000px;}
.wsa4{word-spacing:-0.144000px;}
.ws1e{word-spacing:-0.120000px;}
.wsa3{word-spacing:-0.096000px;}
.ws93{word-spacing:-0.060000px;}
.wsf2{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws9d{word-spacing:0.048000px;}
.ws63{word-spacing:0.060000px;}
.ws47{word-spacing:0.120000px;}
.ws22{word-spacing:0.180000px;}
.wsf{word-spacing:0.240000px;}
.wsd4{word-spacing:0.288000px;}
.ws32{word-spacing:0.360000px;}
.ws84{word-spacing:0.384000px;}
.wsac{word-spacing:0.420000px;}
.wsd1{word-spacing:0.432000px;}
.ws2e{word-spacing:0.480000px;}
.ws75{word-spacing:0.540000px;}
.ws23{word-spacing:0.600000px;}
.wsa1{word-spacing:0.624000px;}
.ws8d{word-spacing:0.660000px;}
.wsb6{word-spacing:0.720000px;}
.wsf5{word-spacing:0.768000px;}
.ws42{word-spacing:0.780000px;}
.wse3{word-spacing:0.816000px;}
.ws60{word-spacing:0.840000px;}
.wsdf{word-spacing:0.960000px;}
.ws50{word-spacing:1.020000px;}
.wsab{word-spacing:1.056000px;}
.wsf9{word-spacing:1.104000px;}
.wsd2{word-spacing:1.152000px;}
.ws36{word-spacing:1.200000px;}
.ws43{word-spacing:1.320000px;}
.ws67{word-spacing:1.440000px;}
.wse1{word-spacing:1.500000px;}
.ws80{word-spacing:1.584000px;}
.wsc0{word-spacing:1.620000px;}
.wsf7{word-spacing:1.632000px;}
.wsf1{word-spacing:1.728000px;}
.ws26{word-spacing:1.740000px;}
.wsb{word-spacing:1.776000px;}
.ws88{word-spacing:1.800000px;}
.wsfa{word-spacing:1.824000px;}
.ws76{word-spacing:1.860000px;}
.ws102{word-spacing:1.872000px;}
.ws3f{word-spacing:1.920000px;}
.wsa2{word-spacing:1.968000px;}
.ws97{word-spacing:2.016000px;}
.wsad{word-spacing:2.040000px;}
.ws2c{word-spacing:2.100000px;}
.ws11{word-spacing:2.160000px;}
.wsd3{word-spacing:2.208000px;}
.wscb{word-spacing:2.220000px;}
.ws24{word-spacing:2.280000px;}
.wsf0{word-spacing:2.400000px;}
.wsaf{word-spacing:2.496000px;}
.ws96{word-spacing:2.520000px;}
.ws40{word-spacing:2.580000px;}
.wsae{word-spacing:2.592000px;}
.ws4c{word-spacing:2.640000px;}
.ws103{word-spacing:2.736000px;}
.wsb5{word-spacing:2.760000px;}
.ws41{word-spacing:2.820000px;}
.ws98{word-spacing:2.880000px;}
.wsbe{word-spacing:2.928000px;}
.ws8b{word-spacing:2.940000px;}
.wse2{word-spacing:2.976000px;}
.wsb8{word-spacing:3.000000px;}
.wsc{word-spacing:3.024000px;}
.ws6c{word-spacing:3.060000px;}
.wsbf{word-spacing:3.120000px;}
.ws104{word-spacing:3.168000px;}
.ws48{word-spacing:3.180000px;}
.wsc2{word-spacing:3.240000px;}
.ws46{word-spacing:3.300000px;}
.ws37{word-spacing:3.420000px;}
.wsaa{word-spacing:3.456000px;}
.wsde{word-spacing:3.480000px;}
.wsff{word-spacing:3.504000px;}
.ws5d{word-spacing:3.540000px;}
.wsf6{word-spacing:3.552000px;}
.wse{word-spacing:3.600000px;}
.ws21{word-spacing:3.660000px;}
.wsa5{word-spacing:3.696000px;}
.ws2b{word-spacing:3.720000px;}
.wsd{word-spacing:3.792000px;}
.ws95{word-spacing:3.840000px;}
.ws74{word-spacing:3.900000px;}
.wsba{word-spacing:3.960000px;}
.ws6b{word-spacing:4.020000px;}
.ws101{word-spacing:4.032000px;}
.ws45{word-spacing:4.080000px;}
.ws34{word-spacing:4.140000px;}
.ws83{word-spacing:4.176000px;}
.wsf8{word-spacing:4.224000px;}
.ws4b{word-spacing:4.260000px;}
.ws7{word-spacing:4.272000px;}
.ws94{word-spacing:4.320000px;}
.wsa{word-spacing:4.368000px;}
.ws5b{word-spacing:4.380000px;}
.ws9{word-spacing:4.416000px;}
.ws25{word-spacing:4.440000px;}
.ws66{word-spacing:4.500000px;}
.wscf{word-spacing:4.620000px;}
.ws4d{word-spacing:4.680000px;}
.wse0{word-spacing:4.800000px;}
.ws6a{word-spacing:4.920000px;}
.wscc{word-spacing:4.980000px;}
.ws65{word-spacing:5.100000px;}
.ws2d{word-spacing:5.160000px;}
.wsc1{word-spacing:5.220000px;}
.wsdd{word-spacing:5.340000px;}
.ws14{word-spacing:5.460000px;}
.ws10{word-spacing:5.520000px;}
.ws8c{word-spacing:6.660000px;}
.ws87{word-spacing:6.960000px;}
.ws44{word-spacing:9.420000px;}
.ws7f{word-spacing:74.382000px;}
.ws7c{word-spacing:88.410000px;}
.ws7d{word-spacing:115.710000px;}
.ws7b{word-spacing:170.058000px;}
.ws9e{word-spacing:191.520000px;}
.ws7e{word-spacing:216.762000px;}
.ws7a{word-spacing:337.470000px;}
.ws9c{word-spacing:376.800000px;}
.ws9b{word-spacing:403.536000px;}
.wsbb{word-spacing:1276.512000px;}
.wsbc{word-spacing:1399.728000px;}
.wsbd{word-spacing:1471.392000px;}
._b{margin-left:-2898.126000px;}
._d{margin-left:-2874.309000px;}
._4b{margin-left:-8.940000px;}
._9{margin-left:-6.960000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.600000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.260000px;}
._4{width:1.008000px;}
._a{width:2.430000px;}
._6{width:3.600000px;}
._5{width:5.232000px;}
._7{width:7.080000px;}
._8{width:8.100000px;}
._c{width:10.080000px;}
._2d{width:35.406000px;}
._10{width:48.216000px;}
._f{width:59.724000px;}
._29{width:61.572000px;}
._27{width:70.896000px;}
._11{width:75.516000px;}
._37{width:77.910000px;}
._2e{width:90.846000px;}
._34{width:96.978000px;}
._36{width:103.068000px;}
._e{width:110.670000px;}
._25{width:121.086000px;}
._26{width:122.262000px;}
._48{width:127.326000px;}
._35{width:128.604000px;}
._1c{width:138.630000px;}
._24{width:140.406000px;}
._2f{width:153.762000px;}
._1f{width:156.786000px;}
._23{width:158.382000px;}
._1b{width:167.316000px;}
._49{width:174.384000px;}
._22{width:175.392000px;}
._1e{width:181.734000px;}
._4a{width:186.336000px;}
._2b{width:187.404000px;}
._1a{width:192.852000px;}
._21{width:193.914000px;}
._46{width:195.270000px;}
._18{width:198.618000px;}
._16{width:207.396000px;}
._2c{width:212.982000px;}
._47{width:222.672000px;}
._15{width:224.406000px;}
._12{width:225.666000px;}
._1d{width:226.842000px;}
._19{width:232.080000px;}
._28{width:237.258000px;}
._14{width:238.266000px;}
._20{width:244.944000px;}
._33{width:247.632000px;}
._2a{width:250.110000px;}
._32{width:270.984000px;}
._17{width:275.268000px;}
._13{width:289.254000px;}
._31{width:321.972000px;}
._30{width:357.546000px;}
._40{width:374.160000px;}
._3f{width:382.128000px;}
._41{width:390.240000px;}
._3a{width:416.832000px;}
._43{width:924.768000px;}
._39{width:961.920000px;}
._3e{width:1148.688000px;}
._42{width:1154.160000px;}
._44{width:1172.688000px;}
._45{width:1178.064000px;}
._3c{width:1216.368000px;}
._3d{width:1266.096000px;}
._38{width:1282.080000px;}
._3b{width:1344.384000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y12a{bottom:82.604850px;}
.y16d{bottom:82.796700px;}
.yf2{bottom:83.209200px;}
.y61{bottom:83.363850px;}
.y148{bottom:83.367600px;}
.y2a{bottom:83.493900px;}
.y9a{bottom:83.513850px;}
.y84{bottom:83.663850px;}
.y9c{bottom:83.669550px;}
.yd1{bottom:83.995500px;}
.y159{bottom:84.083550px;}
.yc9{bottom:88.495650px;}
.y114{bottom:92.549850px;}
.y1ad{bottom:94.938300px;}
.y16c{bottom:97.796700px;}
.y129{bottom:98.348850px;}
.yf1{bottom:98.953200px;}
.y9b{bottom:99.413550px;}
.yd0{bottom:99.739500px;}
.y158{bottom:99.827550px;}
.y60{bottom:101.363850px;}
.y147{bottom:101.367600px;}
.y99{bottom:101.513850px;}
.y83{bottom:101.663850px;}
.yc8{bottom:103.248150px;}
.y14a{bottom:108.649950px;}
.y113{bottom:109.049850px;}
.y104{bottom:109.503000px;}
.y1ac{bottom:109.938300px;}
.y16b{bottom:112.796700px;}
.y128{bottom:114.092850px;}
.yf0{bottom:114.697200px;}
.ycf{bottom:115.486500px;}
.y157{bottom:115.571550px;}
.yc7{bottom:115.848150px;}
.y5f{bottom:119.363850px;}
.y146{bottom:119.367600px;}
.y98{bottom:119.513850px;}
.y82{bottom:119.663850px;}
.y20{bottom:121.512300px;}
.y149{bottom:124.393950px;}
.y1ab{bottom:124.938300px;}
.y112{bottom:125.297850px;}
.y103{bottom:125.751000px;}
.y16a{bottom:127.796700px;}
.y127{bottom:129.836850px;}
.yef{bottom:130.441200px;}
.yc6{bottom:130.600650px;}
.y9f{bottom:131.287350px;}
.y156{bottom:131.315550px;}
.y5e{bottom:137.363850px;}
.y145{bottom:137.367600px;}
.y97{bottom:137.513850px;}
.y81{bottom:137.663850px;}
.y1aa{bottom:139.938300px;}
.y111{bottom:141.797850px;}
.y102{bottom:141.999000px;}
.y169{bottom:142.796700px;}
.yc5{bottom:145.353150px;}
.yee{bottom:146.185200px;}
.y155{bottom:147.059550px;}
.yed{bottom:148.304250px;}
.yc1{bottom:151.649850px;}
.y1a9{bottom:154.938300px;}
.y5d{bottom:155.363850px;}
.y144{bottom:155.367600px;}
.y96{bottom:155.513850px;}
.y80{bottom:155.663850px;}
.y168{bottom:157.796700px;}
.ybf{bottom:157.949850px;}
.yc4{bottom:157.953150px;}
.y110{bottom:158.045850px;}
.y101{bottom:158.247000px;}
.y154{bottom:162.815550px;}
.ybe{bottom:164.249850px;}
.y14e{bottom:165.941550px;}
.y1a8{bottom:169.938300px;}
.yc2{bottom:170.549850px;}
.y167{bottom:172.796700px;}
.y5c{bottom:173.363850px;}
.y143{bottom:173.367600px;}
.y95{bottom:173.513850px;}
.y7f{bottom:173.663850px;}
.y100{bottom:174.495000px;}
.y10f{bottom:174.545850px;}
.yc0{bottom:176.849850px;}
.y153{bottom:178.559550px;}
.yc3{bottom:183.149850px;}
.y1a7{bottom:184.938300px;}
.y26{bottom:185.485650px;}
.y166{bottom:187.796700px;}
.yff{bottom:190.743000px;}
.y10e{bottom:191.045850px;}
.y5b{bottom:191.363850px;}
.y142{bottom:191.367600px;}
.y94{bottom:191.513850px;}
.y7e{bottom:191.663850px;}
.y152{bottom:194.303550px;}
.ybd{bottom:197.902350px;}
.y1a6{bottom:199.938300px;}
.y165{bottom:202.796700px;}
.y25{bottom:203.485650px;}
.yfe{bottom:206.991000px;}
.y5a{bottom:209.363850px;}
.y141{bottom:209.367600px;}
.y93{bottom:209.513850px;}
.y7d{bottom:209.663850px;}
.y151{bottom:210.047550px;}
.ybc{bottom:210.502350px;}
.y1a5{bottom:214.938300px;}
.yb9{bottom:216.802350px;}
.y164{bottom:217.796700px;}
.y10d{bottom:220.061850px;}
.y24{bottom:221.485650px;}
.ybb{bottom:223.102350px;}
.yfd{bottom:223.239000px;}
.y150{bottom:225.791550px;}
.y59{bottom:227.363850px;}
.y140{bottom:227.367600px;}
.y92{bottom:227.513850px;}
.y7c{bottom:227.663850px;}
.y1a4{bottom:229.938300px;}
.y163{bottom:232.796700px;}
.yba{bottom:235.702350px;}
.y23{bottom:239.485650px;}
.yfc{bottom:239.487000px;}
.y14f{bottom:241.535550px;}
.y1a3{bottom:244.938300px;}
.y58{bottom:245.363850px;}
.y13f{bottom:245.367600px;}
.y91{bottom:245.513850px;}
.y7b{bottom:245.663850px;}
.y162{bottom:247.796700px;}
.y10c{bottom:249.065850px;}
.yb8{bottom:250.454850px;}
.yfb{bottom:255.735000px;}
.y22{bottom:257.485650px;}
.y1a2{bottom:259.938300px;}
.y161{bottom:262.796700px;}
.y57{bottom:263.363850px;}
.y13e{bottom:263.367600px;}
.y90{bottom:263.513850px;}
.y7a{bottom:263.663850px;}
.yb7{bottom:265.207350px;}
.yaf{bottom:271.507350px;}
.y1a1{bottom:274.938300px;}
.y27{bottom:275.485650px;}
.y160{bottom:277.796700px;}
.yb6{bottom:277.807350px;}
.y56{bottom:281.363850px;}
.y13d{bottom:281.367600px;}
.y10b{bottom:281.379450px;}
.y8f{bottom:281.513850px;}
.y79{bottom:281.663850px;}
.yad{bottom:284.107350px;}
.yfa{bottom:284.739000px;}
.y1a0{bottom:289.938300px;}
.yb5{bottom:290.407350px;}
.y15f{bottom:292.796700px;}
.y21{bottom:293.485650px;}
.yac{bottom:296.707350px;}
.y55{bottom:299.363850px;}
.y13c{bottom:299.367600px;}
.y8e{bottom:299.513850px;}
.y78{bottom:299.663850px;}
.y10a{bottom:300.879450px;}
.yb4{bottom:303.007350px;}
.y19f{bottom:304.938300px;}
.y15e{bottom:307.796700px;}
.y9e{bottom:308.599350px;}
.ya9{bottom:309.307350px;}
.yf9{bottom:313.743000px;}
.yb3{bottom:315.607350px;}
.y54{bottom:317.363850px;}
.y13b{bottom:317.367600px;}
.y8d{bottom:317.513850px;}
.y77{bottom:317.663850px;}
.y19e{bottom:319.938300px;}
.y109{bottom:320.379450px;}
.yab{bottom:321.907350px;}
.y15d{bottom:322.796700px;}
.y15a{bottom:324.332100px;}
.yb2{bottom:328.207350px;}
.yec{bottom:333.692250px;}
.yaa{bottom:334.507350px;}
.y19d{bottom:334.938300px;}
.y53{bottom:335.363850px;}
.y13a{bottom:335.367600px;}
.y8c{bottom:335.513850px;}
.y76{bottom:335.663850px;}
.y15c{bottom:337.796700px;}
.yb1{bottom:340.807350px;}
.yf8{bottom:346.056600px;}
.yae{bottom:347.107350px;}
.y14d{bottom:348.353550px;}
.y19c{bottom:349.938300px;}
.y52{bottom:353.363850px;}
.y139{bottom:353.367600px;}
.yb0{bottom:353.407350px;}
.y8b{bottom:353.513850px;}
.y75{bottom:353.663850px;}
.y19b{bottom:364.938300px;}
.yf7{bottom:365.556600px;}
.ya8{bottom:368.159850px;}
.y1f{bottom:370.688550px;}
.y15b{bottom:371.228850px;}
.y51{bottom:371.363850px;}
.y138{bottom:371.367600px;}
.y8a{bottom:371.513850px;}
.y108{bottom:372.801750px;}
.y19a{bottom:379.938300px;}
.ya7{bottom:382.912350px;}
.y107{bottom:388.545750px;}
.y87{bottom:389.228850px;}
.y50{bottom:389.363850px;}
.y137{bottom:389.367600px;}
.y89{bottom:389.513850px;}
.y74{bottom:389.663850px;}
.y199{bottom:394.938300px;}
.ya6{bottom:397.664850px;}
.y1e{bottom:403.544550px;}
.y106{bottom:404.289750px;}
.y4f{bottom:407.363850px;}
.y136{bottom:407.367600px;}
.y88{bottom:407.513850px;}
.y198{bottom:409.938300px;}
.ya5{bottom:410.264850px;}
.y1d{bottom:418.544550px;}
.y105{bottom:420.033750px;}
.yf6{bottom:421.550100px;}
.y197{bottom:424.938300px;}
.ya4{bottom:425.017350px;}
.y4e{bottom:425.363850px;}
.y135{bottom:425.367600px;}
.y73{bottom:425.513850px;}
.y1c{bottom:433.544550px;}
.yf5{bottom:437.294100px;}
.y196{bottom:439.938300px;}
.y4d{bottom:443.363850px;}
.y134{bottom:443.367600px;}
.y72{bottom:443.513850px;}
.y1b{bottom:448.544550px;}
.ya3{bottom:452.527350px;}
.yf4{bottom:453.038100px;}
.y195{bottom:454.938300px;}
.y4c{bottom:461.363850px;}
.y133{bottom:461.367600px;}
.y71{bottom:461.513850px;}
.y1a{bottom:463.544550px;}
.ya2{bottom:465.127350px;}
.yf3{bottom:468.782100px;}
.y194{bottom:469.938300px;}
.y19{bottom:478.544550px;}
.y4b{bottom:479.363850px;}
.y132{bottom:479.367600px;}
.y70{bottom:479.513850px;}
.y193{bottom:484.938300px;}
.y18{bottom:493.544550px;}
.ya1{bottom:496.151100px;}
.y4a{bottom:497.363850px;}
.y131{bottom:497.367600px;}
.y6f{bottom:497.513850px;}
.y192{bottom:499.938300px;}
.y17{bottom:508.544550px;}
.yeb{bottom:514.820250px;}
.y191{bottom:514.938300px;}
.y49{bottom:515.363850px;}
.y130{bottom:515.367600px;}
.y6e{bottom:515.513850px;}
.ya0{bottom:515.651100px;}
.y9d{bottom:521.623350px;}
.y14c{bottom:523.109550px;}
.y16{bottom:523.544550px;}
.y190{bottom:529.938300px;}
.y48{bottom:533.363850px;}
.y12f{bottom:533.367600px;}
.y6d{bottom:533.513850px;}
.y18f{bottom:544.938300px;}
.y47{bottom:551.363850px;}
.y12e{bottom:551.367600px;}
.y6c{bottom:551.513850px;}
.ycb{bottom:556.382100px;}
.y18e{bottom:559.938300px;}
.y46{bottom:569.363850px;}
.y12d{bottom:569.367600px;}
.y6b{bottom:569.513850px;}
.yca{bottom:572.126100px;}
.y15{bottom:572.288550px;}
.y18d{bottom:574.938300px;}
.y14{bottom:586.688550px;}
.y45{bottom:587.363850px;}
.y12c{bottom:587.367600px;}
.y6a{bottom:587.513850px;}
.y18c{bottom:589.938300px;}
.y13{bottom:601.088550px;}
.y18b{bottom:604.938300px;}
.y44{bottom:605.363850px;}
.y12b{bottom:605.367600px;}
.y69{bottom:605.513850px;}
.ycd{bottom:606.237600px;}
.y18a{bottom:619.938300px;}
.y43{bottom:623.363850px;}
.y126{bottom:623.367600px;}
.y68{bottom:623.513850px;}
.y12{bottom:628.244550px;}
.y189{bottom:634.938300px;}
.y120{bottom:639.280050px;}
.y42{bottom:641.363850px;}
.y125{bottom:641.367600px;}
.y67{bottom:641.513850px;}
.y188{bottom:649.938300px;}
.y11f{bottom:654.280050px;}
.y41{bottom:659.363850px;}
.y124{bottom:659.367600px;}
.y66{bottom:659.513850px;}
.y187{bottom:664.938300px;}
.y11{bottom:666.862500px;}
.y11e{bottom:669.280050px;}
.y40{bottom:677.363850px;}
.y123{bottom:677.367600px;}
.y65{bottom:677.513850px;}
.y10{bottom:679.244550px;}
.y186{bottom:679.938300px;}
.y11d{bottom:684.280050px;}
.y185{bottom:694.938300px;}
.y3f{bottom:695.363850px;}
.y122{bottom:695.367600px;}
.y11c{bottom:699.280050px;}
.yf{bottom:699.862500px;}
.y184{bottom:709.938300px;}
.y14b{bottom:709.985550px;}
.y3e{bottom:713.363850px;}
.y121{bottom:713.367600px;}
.y64{bottom:713.513850px;}
.y11b{bottom:714.280050px;}
.ye{bottom:716.362500px;}
.y183{bottom:724.938300px;}
.yd{bottom:728.744550px;}
.y11a{bottom:729.280050px;}
.y3d{bottom:731.363850px;}
.ye3{bottom:731.367600px;}
.yea{bottom:731.517600px;}
.y182{bottom:739.938300px;}
.y119{bottom:744.280050px;}
.yc{bottom:749.362500px;}
.y3c{bottom:749.363850px;}
.ye2{bottom:749.367600px;}
.ye9{bottom:749.517600px;}
.y181{bottom:754.938300px;}
.y118{bottom:759.280050px;}
.yb{bottom:761.744550px;}
.y3b{bottom:767.363850px;}
.ye1{bottom:767.367600px;}
.ye8{bottom:767.517600px;}
.y180{bottom:769.938300px;}
.ya{bottom:782.362500px;}
.y17f{bottom:784.938300px;}
.y3a{bottom:785.363850px;}
.ye0{bottom:785.367600px;}
.ye7{bottom:785.517600px;}
.y117{bottom:791.586750px;}
.y9{bottom:798.862500px;}
.y17e{bottom:799.938300px;}
.y39{bottom:803.363850px;}
.ydf{bottom:803.367600px;}
.ye6{bottom:803.517600px;}
.y116{bottom:807.192750px;}
.y17d{bottom:814.938300px;}
.y8{bottom:815.362500px;}
.y38{bottom:821.363850px;}
.yde{bottom:821.367600px;}
.ye5{bottom:821.517600px;}
.y17c{bottom:829.938300px;}
.ycc{bottom:830.529000px;}
.yce{bottom:830.529600px;}
.y7{bottom:830.631300px;}
.y37{bottom:839.363850px;}
.ydd{bottom:839.367600px;}
.y115{bottom:839.517600px;}
.y17b{bottom:844.938300px;}
.y6{bottom:853.879800px;}
.y36{bottom:857.363850px;}
.ydc{bottom:857.367600px;}
.ye4{bottom:857.517600px;}
.y17a{bottom:859.938300px;}
.y179{bottom:874.938300px;}
.y62{bottom:875.228850px;}
.y35{bottom:875.363850px;}
.ydb{bottom:875.367600px;}
.y5{bottom:881.263200px;}
.y178{bottom:889.938300px;}
.y34{bottom:893.363850px;}
.yda{bottom:893.367600px;}
.y177{bottom:904.938300px;}
.y4{bottom:908.269200px;}
.y33{bottom:911.363850px;}
.yd9{bottom:911.367600px;}
.y176{bottom:919.938300px;}
.y32{bottom:929.363850px;}
.yd8{bottom:929.367600px;}
.y175{bottom:934.938300px;}
.y3{bottom:935.275200px;}
.y31{bottom:947.363850px;}
.yd7{bottom:947.367600px;}
.y174{bottom:949.938300px;}
.y173{bottom:964.938300px;}
.y30{bottom:965.363850px;}
.yd6{bottom:965.367600px;}
.y172{bottom:979.938300px;}
.y2{bottom:979.943400px;}
.y2f{bottom:983.363850px;}
.yd5{bottom:983.367600px;}
.y171{bottom:994.938300px;}
.y2e{bottom:1001.363850px;}
.yd4{bottom:1001.367600px;}
.y170{bottom:1009.938300px;}
.y2d{bottom:1019.363850px;}
.yd3{bottom:1019.367600px;}
.y86{bottom:1019.378850px;}
.y16f{bottom:1024.938300px;}
.y2c{bottom:1037.363850px;}
.yd2{bottom:1037.367600px;}
.y85{bottom:1037.378850px;}
.y16e{bottom:1039.938300px;}
.y29{bottom:1070.769450px;}
.y63{bottom:1086.066450px;}
.y28{bottom:1086.069450px;}
.h7{height:20.967187px;}
.h12{height:30.577148px;}
.h15{height:30.597656px;}
.h2{height:30.618164px;}
.h8{height:34.945312px;}
.ha{height:34.959188px;}
.h17{height:34.968750px;}
.h16{height:34.980187px;}
.h9{height:34.992188px;}
.hd{height:37.179199px;}
.h19{height:39.366211px;}
.hb{height:43.681641px;}
.he{height:43.710938px;}
.hc{height:43.740234px;}
.h18{height:43.755234px;}
.hf{height:46.779741px;}
.h10{height:46.839741px;}
.h6{height:51.517955px;}
.h5{height:51.523955px;}
.h3{height:52.417969px;}
.h13{height:55.777148px;}
.h14{height:55.818164px;}
.h4{height:61.154297px;}
.h11{height:80.977148px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x22{left:78.663900px;}
.x23{left:87.158400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x4d{left:99.926550px;}
.x15{left:104.811000px;}
.x4b{left:107.149650px;}
.xb{left:110.555400px;}
.x3{left:125.427450px;}
.x55{left:127.567350px;}
.x6{left:131.816400px;}
.x4{left:161.571450px;}
.x19{left:164.910900px;}
.x52{left:168.502050px;}
.x26{left:169.782900px;}
.x25{left:171.536400px;}
.x27{left:178.529400px;}
.x1a{left:182.928900px;}
.x24{left:186.414900px;}
.x28{left:200.411400px;}
.x4f{left:210.388800px;}
.x5{left:212.876400px;}
.x54{left:216.286050px;}
.x4e{left:229.384800px;}
.x53{left:231.022050px;}
.x2d{left:270.687900px;}
.x2a{left:273.312900px;}
.x29{left:278.090400px;}
.x2e{left:280.011900px;}
.x2c{left:284.694900px;}
.x2b{left:290.532900px;}
.x44{left:297.221400px;}
.x31{left:356.210400px;}
.x33{left:357.396900px;}
.x32{left:360.011400px;}
.x30{left:361.764900px;}
.x2f{left:366.132900px;}
.x50{left:376.276800px;}
.x45{left:378.974400px;}
.x1b{left:435.831900px;}
.x35{left:439.191900px;}
.x4a{left:442.736250px;}
.x37{left:443.864400px;}
.x34{left:446.195400px;}
.x36{left:447.938400px;}
.x9{left:455.041500px;}
.xc{left:457.100400px;}
.x11{left:478.330350px;}
.x7{left:480.476400px;}
.x4c{left:485.474550px;}
.x5a{left:486.771150px;}
.x18{left:488.547000px;}
.xe{left:491.105400px;}
.x17{left:497.055000px;}
.x59{left:508.106400px;}
.x1c{left:509.153400px;}
.x1d{left:510.329400px;}
.x13{left:512.351400px;}
.x38{left:513.815400px;}
.x3b{left:516.146400px;}
.x3a{left:519.348900px;}
.x39{left:521.690400px;}
.xd{left:525.275400px;}
.x3c{left:527.811900px;}
.x16{left:574.443000px;}
.x1f{left:582.611400px;}
.x3d{left:584.333400px;}
.x1e{left:585.803400px;}
.x47{left:594.255900px;}
.x58{left:596.096400px;}
.x56{left:600.685350px;}
.x12{left:612.896400px;}
.x21{left:654.893400px;}
.x3e{left:657.497400px;}
.x3f{left:660.699900px;}
.x20{left:661.896900px;}
.x10{left:663.492300px;}
.x46{left:672.365400px;}
.x57{left:674.372250px;}
.x2{left:704.338650px;}
.x51{left:717.130200px;}
.xf{left:724.221150px;}
.x48{left:725.705400px;}
.x40{left:727.448400px;}
.x42{left:729.779400px;}
.x43{left:733.275900px;}
.x41{left:736.488900px;}
.x49{left:738.550650px;}
.x14{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.253867pt;}
.v1{vertical-align:20.138133pt;}
.v4{vertical-align:22.400000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls3a{letter-spacing:-0.426667pt;}
.ls63{letter-spacing:-0.373333pt;}
.ls54{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.298667pt;}
.ls69{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.213333pt;}
.ls38{letter-spacing:-0.160000pt;}
.ls59{letter-spacing:-0.149333pt;}
.ls7c{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.106667pt;}
.ls97{letter-spacing:-0.085333pt;}
.ls3b{letter-spacing:-0.053333pt;}
.ls14{letter-spacing:-0.042667pt;}
.ls11{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.005333pt;}
.ls73{letter-spacing:0.042667pt;}
.ls23{letter-spacing:0.053333pt;}
.ls5d{letter-spacing:0.085333pt;}
.ls18{letter-spacing:0.106667pt;}
.ls57{letter-spacing:0.128000pt;}
.ls4e{letter-spacing:0.160000pt;}
.ls58{letter-spacing:0.170667pt;}
.ls4d{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.266667pt;}
.ls98{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls82{letter-spacing:0.341333pt;}
.ls16{letter-spacing:0.373333pt;}
.ls8e{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.469333pt;}
.ls19{letter-spacing:0.480000pt;}
.ls8a{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.533333pt;}
.ls89{letter-spacing:0.554667pt;}
.ls4f{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.640000pt;}
.ls91{letter-spacing:0.682667pt;}
.ls28{letter-spacing:0.693333pt;}
.ls88{letter-spacing:0.725333pt;}
.lsb{letter-spacing:0.746667pt;}
.ls9c{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.800000pt;}
.ls2b{letter-spacing:0.853333pt;}
.ls1f{letter-spacing:0.906667pt;}
.ls7e{letter-spacing:0.938667pt;}
.ls27{letter-spacing:0.960000pt;}
.ls5b{letter-spacing:0.981333pt;}
.ls32{letter-spacing:1.013333pt;}
.ls85{letter-spacing:1.024000pt;}
.ls26{letter-spacing:1.066667pt;}
.ls8b{letter-spacing:1.109333pt;}
.lsf{letter-spacing:1.120000pt;}
.ls60{letter-spacing:1.152000pt;}
.ls2c{letter-spacing:1.173333pt;}
.ls87{letter-spacing:1.194667pt;}
.ls42{letter-spacing:1.226667pt;}
.ls44{letter-spacing:1.280000pt;}
.ls80{letter-spacing:1.322667pt;}
.ls8{letter-spacing:1.333333pt;}
.ls79{letter-spacing:1.365333pt;}
.ls25{letter-spacing:1.386667pt;}
.ls92{letter-spacing:1.408000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls78{letter-spacing:1.450667pt;}
.ls49{letter-spacing:1.493333pt;}
.lsa1{letter-spacing:1.536000pt;}
.lse{letter-spacing:1.546667pt;}
.ls7b{letter-spacing:1.578667pt;}
.ls41{letter-spacing:1.600000pt;}
.ls93{letter-spacing:1.621333pt;}
.ls2d{letter-spacing:1.653333pt;}
.ls9{letter-spacing:1.706667pt;}
.ls7d{letter-spacing:1.749333pt;}
.ls3d{letter-spacing:1.760000pt;}
.ls40{letter-spacing:1.813333pt;}
.ls1e{letter-spacing:1.866667pt;}
.ls8d{letter-spacing:1.877333pt;}
.lsa{letter-spacing:1.920000pt;}
.ls6{letter-spacing:1.973333pt;}
.ls9e{letter-spacing:2.005333pt;}
.ls5{letter-spacing:2.026667pt;}
.ls76{letter-spacing:2.048000pt;}
.ls34{letter-spacing:2.080000pt;}
.ls86{letter-spacing:2.090667pt;}
.ls56{letter-spacing:2.133333pt;}
.lsc{letter-spacing:2.186667pt;}
.ls8f{letter-spacing:2.218667pt;}
.ls47{letter-spacing:2.240000pt;}
.ls83{letter-spacing:2.261333pt;}
.ls1d{letter-spacing:2.293333pt;}
.ls9b{letter-spacing:2.304000pt;}
.ls2f{letter-spacing:2.346667pt;}
.ls9d{letter-spacing:2.389333pt;}
.ls30{letter-spacing:2.400000pt;}
.ls65{letter-spacing:2.453333pt;}
.ls77{letter-spacing:2.474667pt;}
.ls33{letter-spacing:2.506667pt;}
.ls8c{letter-spacing:2.517333pt;}
.ls46{letter-spacing:2.560000pt;}
.ls4a{letter-spacing:2.613333pt;}
.ls48{letter-spacing:2.666667pt;}
.ls90{letter-spacing:2.688000pt;}
.ls36{letter-spacing:2.720000pt;}
.ls43{letter-spacing:2.773333pt;}
.ls9a{letter-spacing:2.816000pt;}
.ls5a{letter-spacing:2.826667pt;}
.ls35{letter-spacing:2.880000pt;}
.ls21{letter-spacing:2.933333pt;}
.ls9f{letter-spacing:2.944000pt;}
.ls29{letter-spacing:2.986667pt;}
.ls99{letter-spacing:3.029333pt;}
.ls2a{letter-spacing:3.040000pt;}
.ls95{letter-spacing:3.072000pt;}
.ls6d{letter-spacing:3.093333pt;}
.ls37{letter-spacing:3.146667pt;}
.ls50{letter-spacing:3.200000pt;}
.ls7a{letter-spacing:3.242667pt;}
.ls45{letter-spacing:3.253333pt;}
.ls3c{letter-spacing:3.306667pt;}
.ls51{letter-spacing:3.360000pt;}
.ls6c{letter-spacing:3.413333pt;}
.ls3e{letter-spacing:3.466667pt;}
.lsa0{letter-spacing:3.498667pt;}
.ls3f{letter-spacing:3.520000pt;}
.ls81{letter-spacing:3.541333pt;}
.lsd{letter-spacing:3.573333pt;}
.ls96{letter-spacing:3.584000pt;}
.ls1c{letter-spacing:3.680000pt;}
.ls7f{letter-spacing:3.712000pt;}
.ls17{letter-spacing:3.733333pt;}
.ls31{letter-spacing:3.786667pt;}
.lsa2{letter-spacing:3.797333pt;}
.ls75{letter-spacing:3.840000pt;}
.ls20{letter-spacing:3.946667pt;}
.ls4b{letter-spacing:4.000000pt;}
.ls94{letter-spacing:4.010667pt;}
.ls68{letter-spacing:4.053333pt;}
.ls67{letter-spacing:4.106667pt;}
.ls5e{letter-spacing:4.138667pt;}
.ls4c{letter-spacing:4.266667pt;}
.ls84{letter-spacing:4.309333pt;}
.ls52{letter-spacing:4.320000pt;}
.ls70{letter-spacing:4.480000pt;}
.ls6b{letter-spacing:4.640000pt;}
.ls61{letter-spacing:4.906667pt;}
.ls66{letter-spacing:4.960000pt;}
.ls72{letter-spacing:5.226667pt;}
.ls1a{letter-spacing:5.333333pt;}
.ls55{letter-spacing:5.493333pt;}
.ls5f{letter-spacing:5.546667pt;}
.ls53{letter-spacing:5.706667pt;}
.ls6e{letter-spacing:6.080000pt;}
.ls64{letter-spacing:6.133333pt;}
.ls62{letter-spacing:6.400000pt;}
.ls6f{letter-spacing:6.560000pt;}
.ls74{letter-spacing:6.773333pt;}
.ls71{letter-spacing:7.093333pt;}
.ls6a{letter-spacing:7.413333pt;}
.ls5c{letter-spacing:109.098667pt;}
.wsd5{word-spacing:-20.320000pt;}
.ws56{word-spacing:-19.146667pt;}
.ws3d{word-spacing:-19.093333pt;}
.ws19{word-spacing:-18.773333pt;}
.ws39{word-spacing:-18.346667pt;}
.wsd7{word-spacing:-17.920000pt;}
.ws3c{word-spacing:-17.866667pt;}
.ws70{word-spacing:-17.706667pt;}
.wsc7{word-spacing:-17.600000pt;}
.wsb1{word-spacing:-17.546667pt;}
.wsb2{word-spacing:-17.493333pt;}
.ws8f{word-spacing:-17.386667pt;}
.wsb3{word-spacing:-17.333333pt;}
.wsc6{word-spacing:-17.226667pt;}
.wsc5{word-spacing:-17.173333pt;}
.ws16{word-spacing:-17.120000pt;}
.ws57{word-spacing:-17.066667pt;}
.ws71{word-spacing:-16.906667pt;}
.ws3{word-spacing:-16.853333pt;}
.wsd6{word-spacing:-16.693333pt;}
.ws90{word-spacing:-16.640000pt;}
.ws1b{word-spacing:-16.533333pt;}
.ws59{word-spacing:-16.480000pt;}
.wsa9{word-spacing:-16.320000pt;}
.ws1{word-spacing:-16.309333pt;}
.ws81{word-spacing:-16.213333pt;}
.ws58{word-spacing:-16.106667pt;}
.wsa6{word-spacing:-16.053333pt;}
.ws51{word-spacing:-16.000000pt;}
.wsb0{word-spacing:-15.946667pt;}
.ws1a{word-spacing:-15.893333pt;}
.ws72{word-spacing:-15.840000pt;}
.ws73{word-spacing:-15.786667pt;}
.wsc8{word-spacing:-15.733333pt;}
.ws52{word-spacing:-15.626667pt;}
.ws6e{word-spacing:-15.573333pt;}
.ws55{word-spacing:-15.520000pt;}
.ws5a{word-spacing:-15.466667pt;}
.ws53{word-spacing:-15.413333pt;}
.wse5{word-spacing:-15.402667pt;}
.ws3e{word-spacing:-15.360000pt;}
.ws6f{word-spacing:-15.146667pt;}
.ws3b{word-spacing:-15.093333pt;}
.ws54{word-spacing:-14.986667pt;}
.ws38{word-spacing:-14.933333pt;}
.ws1c{word-spacing:-14.880000pt;}
.ws17{word-spacing:-14.826667pt;}
.wsfe{word-spacing:-14.805333pt;}
.ws82{word-spacing:-14.773333pt;}
.ws3a{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.666667pt;}
.wsc4{word-spacing:-14.560000pt;}
.wse9{word-spacing:-14.421333pt;}
.wsfb{word-spacing:-14.165333pt;}
.ws9f{word-spacing:-13.781333pt;}
.wsa7{word-spacing:-13.344000pt;}
.wsfc{word-spacing:-13.312000pt;}
.wsd8{word-spacing:-13.226667pt;}
.wse6{word-spacing:-13.056000pt;}
.wsfd{word-spacing:-13.013333pt;}
.wsa8{word-spacing:-12.928000pt;}
.wseb{word-spacing:-12.842667pt;}
.wse8{word-spacing:-12.714667pt;}
.ws1d{word-spacing:-12.602667pt;}
.wsea{word-spacing:-12.117333pt;}
.wse7{word-spacing:-12.032000pt;}
.ws91{word-spacing:-11.989333pt;}
.wsa0{word-spacing:-11.946667pt;}
.ws2{word-spacing:-11.861333pt;}
.ws9a{word-spacing:-11.818667pt;}
.ws0{word-spacing:-9.785600pt;}
.wsc3{word-spacing:-6.080000pt;}
.ws4e{word-spacing:-4.266667pt;}
.wsb7{word-spacing:-4.106667pt;}
.wsb4{word-spacing:-3.466667pt;}
.ws8e{word-spacing:-3.253333pt;}
.wsdb{word-spacing:-3.093333pt;}
.ws68{word-spacing:-3.040000pt;}
.wsdc{word-spacing:-2.933333pt;}
.ws89{word-spacing:-2.880000pt;}
.wscd{word-spacing:-2.773333pt;}
.wsb9{word-spacing:-2.666667pt;}
.ws92{word-spacing:-2.560000pt;}
.wsd9{word-spacing:-2.400000pt;}
.ws5{word-spacing:-2.368000pt;}
.wsda{word-spacing:-2.346667pt;}
.ws2a{word-spacing:-2.293333pt;}
.ws64{word-spacing:-2.240000pt;}
.ws31{word-spacing:-2.186667pt;}
.wsed{word-spacing:-2.090667pt;}
.ws86{word-spacing:-2.080000pt;}
.ws4a{word-spacing:-2.026667pt;}
.ws2f{word-spacing:-1.973333pt;}
.ws12{word-spacing:-1.920000pt;}
.ws28{word-spacing:-1.706667pt;}
.ws61{word-spacing:-1.653333pt;}
.ws13{word-spacing:-1.546667pt;}
.ws105{word-spacing:-1.536000pt;}
.ws4f{word-spacing:-1.493333pt;}
.ws15{word-spacing:-1.440000pt;}
.ws85{word-spacing:-1.386667pt;}
.wse4{word-spacing:-1.365333pt;}
.ws69{word-spacing:-1.333333pt;}
.wsec{word-spacing:-1.322667pt;}
.ws62{word-spacing:-1.280000pt;}
.ws8a{word-spacing:-1.226667pt;}
.ws49{word-spacing:-1.173333pt;}
.wsce{word-spacing:-1.120000pt;}
.ws29{word-spacing:-1.066667pt;}
.ws6{word-spacing:-1.056000pt;}
.ws78{word-spacing:-1.013333pt;}
.ws100{word-spacing:-0.981333pt;}
.ws27{word-spacing:-0.960000pt;}
.wsc9{word-spacing:-0.906667pt;}
.ws6d{word-spacing:-0.853333pt;}
.ws5c{word-spacing:-0.746667pt;}
.wsef{word-spacing:-0.725333pt;}
.ws33{word-spacing:-0.693333pt;}
.wsf4{word-spacing:-0.682667pt;}
.ws8{word-spacing:-0.640000pt;}
.wsca{word-spacing:-0.586667pt;}
.ws20{word-spacing:-0.533333pt;}
.ws1f{word-spacing:-0.480000pt;}
.wsd0{word-spacing:-0.469333pt;}
.ws35{word-spacing:-0.426667pt;}
.wsf3{word-spacing:-0.384000pt;}
.ws79{word-spacing:-0.373333pt;}
.ws5f{word-spacing:-0.320000pt;}
.ws30{word-spacing:-0.266667pt;}
.ws99{word-spacing:-0.256000pt;}
.ws5e{word-spacing:-0.213333pt;}
.wsee{word-spacing:-0.170667pt;}
.ws77{word-spacing:-0.160000pt;}
.wsa4{word-spacing:-0.128000pt;}
.ws1e{word-spacing:-0.106667pt;}
.wsa3{word-spacing:-0.085333pt;}
.ws93{word-spacing:-0.053333pt;}
.wsf2{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.042667pt;}
.ws63{word-spacing:0.053333pt;}
.ws47{word-spacing:0.106667pt;}
.ws22{word-spacing:0.160000pt;}
.wsf{word-spacing:0.213333pt;}
.wsd4{word-spacing:0.256000pt;}
.ws32{word-spacing:0.320000pt;}
.ws84{word-spacing:0.341333pt;}
.wsac{word-spacing:0.373333pt;}
.wsd1{word-spacing:0.384000pt;}
.ws2e{word-spacing:0.426667pt;}
.ws75{word-spacing:0.480000pt;}
.ws23{word-spacing:0.533333pt;}
.wsa1{word-spacing:0.554667pt;}
.ws8d{word-spacing:0.586667pt;}
.wsb6{word-spacing:0.640000pt;}
.wsf5{word-spacing:0.682667pt;}
.ws42{word-spacing:0.693333pt;}
.wse3{word-spacing:0.725333pt;}
.ws60{word-spacing:0.746667pt;}
.wsdf{word-spacing:0.853333pt;}
.ws50{word-spacing:0.906667pt;}
.wsab{word-spacing:0.938667pt;}
.wsf9{word-spacing:0.981333pt;}
.wsd2{word-spacing:1.024000pt;}
.ws36{word-spacing:1.066667pt;}
.ws43{word-spacing:1.173333pt;}
.ws67{word-spacing:1.280000pt;}
.wse1{word-spacing:1.333333pt;}
.ws80{word-spacing:1.408000pt;}
.wsc0{word-spacing:1.440000pt;}
.wsf7{word-spacing:1.450667pt;}
.wsf1{word-spacing:1.536000pt;}
.ws26{word-spacing:1.546667pt;}
.wsb{word-spacing:1.578667pt;}
.ws88{word-spacing:1.600000pt;}
.wsfa{word-spacing:1.621333pt;}
.ws76{word-spacing:1.653333pt;}
.ws102{word-spacing:1.664000pt;}
.ws3f{word-spacing:1.706667pt;}
.wsa2{word-spacing:1.749333pt;}
.ws97{word-spacing:1.792000pt;}
.wsad{word-spacing:1.813333pt;}
.ws2c{word-spacing:1.866667pt;}
.ws11{word-spacing:1.920000pt;}
.wsd3{word-spacing:1.962667pt;}
.wscb{word-spacing:1.973333pt;}
.ws24{word-spacing:2.026667pt;}
.wsf0{word-spacing:2.133333pt;}
.wsaf{word-spacing:2.218667pt;}
.ws96{word-spacing:2.240000pt;}
.ws40{word-spacing:2.293333pt;}
.wsae{word-spacing:2.304000pt;}
.ws4c{word-spacing:2.346667pt;}
.ws103{word-spacing:2.432000pt;}
.wsb5{word-spacing:2.453333pt;}
.ws41{word-spacing:2.506667pt;}
.ws98{word-spacing:2.560000pt;}
.wsbe{word-spacing:2.602667pt;}
.ws8b{word-spacing:2.613333pt;}
.wse2{word-spacing:2.645333pt;}
.wsb8{word-spacing:2.666667pt;}
.wsc{word-spacing:2.688000pt;}
.ws6c{word-spacing:2.720000pt;}
.wsbf{word-spacing:2.773333pt;}
.ws104{word-spacing:2.816000pt;}
.ws48{word-spacing:2.826667pt;}
.wsc2{word-spacing:2.880000pt;}
.ws46{word-spacing:2.933333pt;}
.ws37{word-spacing:3.040000pt;}
.wsaa{word-spacing:3.072000pt;}
.wsde{word-spacing:3.093333pt;}
.wsff{word-spacing:3.114667pt;}
.ws5d{word-spacing:3.146667pt;}
.wsf6{word-spacing:3.157333pt;}
.wse{word-spacing:3.200000pt;}
.ws21{word-spacing:3.253333pt;}
.wsa5{word-spacing:3.285333pt;}
.ws2b{word-spacing:3.306667pt;}
.wsd{word-spacing:3.370667pt;}
.ws95{word-spacing:3.413333pt;}
.ws74{word-spacing:3.466667pt;}
.wsba{word-spacing:3.520000pt;}
.ws6b{word-spacing:3.573333pt;}
.ws101{word-spacing:3.584000pt;}
.ws45{word-spacing:3.626667pt;}
.ws34{word-spacing:3.680000pt;}
.ws83{word-spacing:3.712000pt;}
.wsf8{word-spacing:3.754667pt;}
.ws4b{word-spacing:3.786667pt;}
.ws7{word-spacing:3.797333pt;}
.ws94{word-spacing:3.840000pt;}
.wsa{word-spacing:3.882667pt;}
.ws5b{word-spacing:3.893333pt;}
.ws9{word-spacing:3.925333pt;}
.ws25{word-spacing:3.946667pt;}
.ws66{word-spacing:4.000000pt;}
.wscf{word-spacing:4.106667pt;}
.ws4d{word-spacing:4.160000pt;}
.wse0{word-spacing:4.266667pt;}
.ws6a{word-spacing:4.373333pt;}
.wscc{word-spacing:4.426667pt;}
.ws65{word-spacing:4.533333pt;}
.ws2d{word-spacing:4.586667pt;}
.wsc1{word-spacing:4.640000pt;}
.wsdd{word-spacing:4.746667pt;}
.ws14{word-spacing:4.853333pt;}
.ws10{word-spacing:4.906667pt;}
.ws8c{word-spacing:5.920000pt;}
.ws87{word-spacing:6.186667pt;}
.ws44{word-spacing:8.373333pt;}
.ws7f{word-spacing:66.117333pt;}
.ws7c{word-spacing:78.586667pt;}
.ws7d{word-spacing:102.853333pt;}
.ws7b{word-spacing:151.162667pt;}
.ws9e{word-spacing:170.240000pt;}
.ws7e{word-spacing:192.677333pt;}
.ws7a{word-spacing:299.973333pt;}
.ws9c{word-spacing:334.933333pt;}
.ws9b{word-spacing:358.698667pt;}
.wsbb{word-spacing:1134.677333pt;}
.wsbc{word-spacing:1244.202667pt;}
.wsbd{word-spacing:1307.904000pt;}
._b{margin-left:-2576.112000pt;}
._d{margin-left:-2554.941333pt;}
._4b{margin-left:-7.946667pt;}
._9{margin-left:-6.186667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.200000pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-1.120000pt;}
._4{width:0.896000pt;}
._a{width:2.160000pt;}
._6{width:3.200000pt;}
._5{width:4.650667pt;}
._7{width:6.293333pt;}
._8{width:7.200000pt;}
._c{width:8.960000pt;}
._2d{width:31.472000pt;}
._10{width:42.858667pt;}
._f{width:53.088000pt;}
._29{width:54.730667pt;}
._27{width:63.018667pt;}
._11{width:67.125333pt;}
._37{width:69.253333pt;}
._2e{width:80.752000pt;}
._34{width:86.202667pt;}
._36{width:91.616000pt;}
._e{width:98.373333pt;}
._25{width:107.632000pt;}
._26{width:108.677333pt;}
._48{width:113.178667pt;}
._35{width:114.314667pt;}
._1c{width:123.226667pt;}
._24{width:124.805333pt;}
._2f{width:136.677333pt;}
._1f{width:139.365333pt;}
._23{width:140.784000pt;}
._1b{width:148.725333pt;}
._49{width:155.008000pt;}
._22{width:155.904000pt;}
._1e{width:161.541333pt;}
._4a{width:165.632000pt;}
._2b{width:166.581333pt;}
._1a{width:171.424000pt;}
._21{width:172.368000pt;}
._46{width:173.573333pt;}
._18{width:176.549333pt;}
._16{width:184.352000pt;}
._2c{width:189.317333pt;}
._47{width:197.930667pt;}
._15{width:199.472000pt;}
._12{width:200.592000pt;}
._1d{width:201.637333pt;}
._19{width:206.293333pt;}
._28{width:210.896000pt;}
._14{width:211.792000pt;}
._20{width:217.728000pt;}
._33{width:220.117333pt;}
._2a{width:222.320000pt;}
._32{width:240.874667pt;}
._17{width:244.682667pt;}
._13{width:257.114667pt;}
._31{width:286.197333pt;}
._30{width:317.818667pt;}
._40{width:332.586667pt;}
._3f{width:339.669333pt;}
._41{width:346.880000pt;}
._3a{width:370.517333pt;}
._43{width:822.016000pt;}
._39{width:855.040000pt;}
._3e{width:1021.056000pt;}
._42{width:1025.920000pt;}
._44{width:1042.389333pt;}
._45{width:1047.168000pt;}
._3c{width:1081.216000pt;}
._3d{width:1125.418667pt;}
._38{width:1139.626667pt;}
._3b{width:1195.008000pt;}
.fs5{font-size:25.600000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y12a{bottom:73.426533pt;}
.y16d{bottom:73.597067pt;}
.yf2{bottom:73.963733pt;}
.y61{bottom:74.101200pt;}
.y148{bottom:74.104533pt;}
.y2a{bottom:74.216800pt;}
.y9a{bottom:74.234533pt;}
.y84{bottom:74.367867pt;}
.y9c{bottom:74.372933pt;}
.yd1{bottom:74.662667pt;}
.y159{bottom:74.740933pt;}
.yc9{bottom:78.662800pt;}
.y114{bottom:82.266533pt;}
.y1ad{bottom:84.389600pt;}
.y16c{bottom:86.930400pt;}
.y129{bottom:87.421200pt;}
.yf1{bottom:87.958400pt;}
.y9b{bottom:88.367600pt;}
.yd0{bottom:88.657333pt;}
.y158{bottom:88.735600pt;}
.y60{bottom:90.101200pt;}
.y147{bottom:90.104533pt;}
.y99{bottom:90.234533pt;}
.y83{bottom:90.367867pt;}
.yc8{bottom:91.776133pt;}
.y14a{bottom:96.577733pt;}
.y113{bottom:96.933200pt;}
.y104{bottom:97.336000pt;}
.y1ac{bottom:97.722933pt;}
.y16b{bottom:100.263733pt;}
.y128{bottom:101.415867pt;}
.yf0{bottom:101.953067pt;}
.ycf{bottom:102.654667pt;}
.y157{bottom:102.730267pt;}
.yc7{bottom:102.976133pt;}
.y5f{bottom:106.101200pt;}
.y146{bottom:106.104533pt;}
.y98{bottom:106.234533pt;}
.y82{bottom:106.367867pt;}
.y20{bottom:108.010933pt;}
.y149{bottom:110.572400pt;}
.y1ab{bottom:111.056267pt;}
.y112{bottom:111.375867pt;}
.y103{bottom:111.778667pt;}
.y16a{bottom:113.597067pt;}
.y127{bottom:115.410533pt;}
.yef{bottom:115.947733pt;}
.yc6{bottom:116.089467pt;}
.y9f{bottom:116.699867pt;}
.y156{bottom:116.724933pt;}
.y5e{bottom:122.101200pt;}
.y145{bottom:122.104533pt;}
.y97{bottom:122.234533pt;}
.y81{bottom:122.367867pt;}
.y1aa{bottom:124.389600pt;}
.y111{bottom:126.042533pt;}
.y102{bottom:126.221333pt;}
.y169{bottom:126.930400pt;}
.yc5{bottom:129.202800pt;}
.yee{bottom:129.942400pt;}
.y155{bottom:130.719600pt;}
.yed{bottom:131.826000pt;}
.yc1{bottom:134.799867pt;}
.y1a9{bottom:137.722933pt;}
.y5d{bottom:138.101200pt;}
.y144{bottom:138.104533pt;}
.y96{bottom:138.234533pt;}
.y80{bottom:138.367867pt;}
.y168{bottom:140.263733pt;}
.ybf{bottom:140.399867pt;}
.yc4{bottom:140.402800pt;}
.y110{bottom:140.485200pt;}
.y101{bottom:140.664000pt;}
.y154{bottom:144.724933pt;}
.ybe{bottom:145.999867pt;}
.y14e{bottom:147.503600pt;}
.y1a8{bottom:151.056267pt;}
.yc2{bottom:151.599867pt;}
.y167{bottom:153.597067pt;}
.y5c{bottom:154.101200pt;}
.y143{bottom:154.104533pt;}
.y95{bottom:154.234533pt;}
.y7f{bottom:154.367867pt;}
.y100{bottom:155.106667pt;}
.y10f{bottom:155.151867pt;}
.yc0{bottom:157.199867pt;}
.y153{bottom:158.719600pt;}
.yc3{bottom:162.799867pt;}
.y1a7{bottom:164.389600pt;}
.y26{bottom:164.876133pt;}
.y166{bottom:166.930400pt;}
.yff{bottom:169.549333pt;}
.y10e{bottom:169.818533pt;}
.y5b{bottom:170.101200pt;}
.y142{bottom:170.104533pt;}
.y94{bottom:170.234533pt;}
.y7e{bottom:170.367867pt;}
.y152{bottom:172.714267pt;}
.ybd{bottom:175.913200pt;}
.y1a6{bottom:177.722933pt;}
.y165{bottom:180.263733pt;}
.y25{bottom:180.876133pt;}
.yfe{bottom:183.992000pt;}
.y5a{bottom:186.101200pt;}
.y141{bottom:186.104533pt;}
.y93{bottom:186.234533pt;}
.y7d{bottom:186.367867pt;}
.y151{bottom:186.708933pt;}
.ybc{bottom:187.113200pt;}
.y1a5{bottom:191.056267pt;}
.yb9{bottom:192.713200pt;}
.y164{bottom:193.597067pt;}
.y10d{bottom:195.610533pt;}
.y24{bottom:196.876133pt;}
.ybb{bottom:198.313200pt;}
.yfd{bottom:198.434667pt;}
.y150{bottom:200.703600pt;}
.y59{bottom:202.101200pt;}
.y140{bottom:202.104533pt;}
.y92{bottom:202.234533pt;}
.y7c{bottom:202.367867pt;}
.y1a4{bottom:204.389600pt;}
.y163{bottom:206.930400pt;}
.yba{bottom:209.513200pt;}
.y23{bottom:212.876133pt;}
.yfc{bottom:212.877333pt;}
.y14f{bottom:214.698267pt;}
.y1a3{bottom:217.722933pt;}
.y58{bottom:218.101200pt;}
.y13f{bottom:218.104533pt;}
.y91{bottom:218.234533pt;}
.y7b{bottom:218.367867pt;}
.y162{bottom:220.263733pt;}
.y10c{bottom:221.391867pt;}
.yb8{bottom:222.626533pt;}
.yfb{bottom:227.320000pt;}
.y22{bottom:228.876133pt;}
.y1a2{bottom:231.056267pt;}
.y161{bottom:233.597067pt;}
.y57{bottom:234.101200pt;}
.y13e{bottom:234.104533pt;}
.y90{bottom:234.234533pt;}
.y7a{bottom:234.367867pt;}
.yb7{bottom:235.739867pt;}
.yaf{bottom:241.339867pt;}
.y1a1{bottom:244.389600pt;}
.y27{bottom:244.876133pt;}
.y160{bottom:246.930400pt;}
.yb6{bottom:246.939867pt;}
.y56{bottom:250.101200pt;}
.y13d{bottom:250.104533pt;}
.y10b{bottom:250.115067pt;}
.y8f{bottom:250.234533pt;}
.y79{bottom:250.367867pt;}
.yad{bottom:252.539867pt;}
.yfa{bottom:253.101333pt;}
.y1a0{bottom:257.722933pt;}
.yb5{bottom:258.139867pt;}
.y15f{bottom:260.263733pt;}
.y21{bottom:260.876133pt;}
.yac{bottom:263.739867pt;}
.y55{bottom:266.101200pt;}
.y13c{bottom:266.104533pt;}
.y8e{bottom:266.234533pt;}
.y78{bottom:266.367867pt;}
.y10a{bottom:267.448400pt;}
.yb4{bottom:269.339867pt;}
.y19f{bottom:271.056267pt;}
.y15e{bottom:273.597067pt;}
.y9e{bottom:274.310533pt;}
.ya9{bottom:274.939867pt;}
.yf9{bottom:278.882667pt;}
.yb3{bottom:280.539867pt;}
.y54{bottom:282.101200pt;}
.y13b{bottom:282.104533pt;}
.y8d{bottom:282.234533pt;}
.y77{bottom:282.367867pt;}
.y19e{bottom:284.389600pt;}
.y109{bottom:284.781733pt;}
.yab{bottom:286.139867pt;}
.y15d{bottom:286.930400pt;}
.y15a{bottom:288.295200pt;}
.yb2{bottom:291.739867pt;}
.yec{bottom:296.615333pt;}
.yaa{bottom:297.339867pt;}
.y19d{bottom:297.722933pt;}
.y53{bottom:298.101200pt;}
.y13a{bottom:298.104533pt;}
.y8c{bottom:298.234533pt;}
.y76{bottom:298.367867pt;}
.y15c{bottom:300.263733pt;}
.yb1{bottom:302.939867pt;}
.yf8{bottom:307.605867pt;}
.yae{bottom:308.539867pt;}
.y14d{bottom:309.647600pt;}
.y19c{bottom:311.056267pt;}
.y52{bottom:314.101200pt;}
.y139{bottom:314.104533pt;}
.yb0{bottom:314.139867pt;}
.y8b{bottom:314.234533pt;}
.y75{bottom:314.367867pt;}
.y19b{bottom:324.389600pt;}
.yf7{bottom:324.939200pt;}
.ya8{bottom:327.253200pt;}
.y1f{bottom:329.500933pt;}
.y15b{bottom:329.981200pt;}
.y51{bottom:330.101200pt;}
.y138{bottom:330.104533pt;}
.y8a{bottom:330.234533pt;}
.y108{bottom:331.379333pt;}
.y19a{bottom:337.722933pt;}
.ya7{bottom:340.366533pt;}
.y107{bottom:345.374000pt;}
.y87{bottom:345.981200pt;}
.y50{bottom:346.101200pt;}
.y137{bottom:346.104533pt;}
.y89{bottom:346.234533pt;}
.y74{bottom:346.367867pt;}
.y199{bottom:351.056267pt;}
.ya6{bottom:353.479867pt;}
.y1e{bottom:358.706267pt;}
.y106{bottom:359.368667pt;}
.y4f{bottom:362.101200pt;}
.y136{bottom:362.104533pt;}
.y88{bottom:362.234533pt;}
.y198{bottom:364.389600pt;}
.ya5{bottom:364.679867pt;}
.y1d{bottom:372.039600pt;}
.y105{bottom:373.363333pt;}
.yf6{bottom:374.711200pt;}
.y197{bottom:377.722933pt;}
.ya4{bottom:377.793200pt;}
.y4e{bottom:378.101200pt;}
.y135{bottom:378.104533pt;}
.y73{bottom:378.234533pt;}
.y1c{bottom:385.372933pt;}
.yf5{bottom:388.705867pt;}
.y196{bottom:391.056267pt;}
.y4d{bottom:394.101200pt;}
.y134{bottom:394.104533pt;}
.y72{bottom:394.234533pt;}
.y1b{bottom:398.706267pt;}
.ya3{bottom:402.246533pt;}
.yf4{bottom:402.700533pt;}
.y195{bottom:404.389600pt;}
.y4c{bottom:410.101200pt;}
.y133{bottom:410.104533pt;}
.y71{bottom:410.234533pt;}
.y1a{bottom:412.039600pt;}
.ya2{bottom:413.446533pt;}
.yf3{bottom:416.695200pt;}
.y194{bottom:417.722933pt;}
.y19{bottom:425.372933pt;}
.y4b{bottom:426.101200pt;}
.y132{bottom:426.104533pt;}
.y70{bottom:426.234533pt;}
.y193{bottom:431.056267pt;}
.y18{bottom:438.706267pt;}
.ya1{bottom:441.023200pt;}
.y4a{bottom:442.101200pt;}
.y131{bottom:442.104533pt;}
.y6f{bottom:442.234533pt;}
.y192{bottom:444.389600pt;}
.y17{bottom:452.039600pt;}
.yeb{bottom:457.618000pt;}
.y191{bottom:457.722933pt;}
.y49{bottom:458.101200pt;}
.y130{bottom:458.104533pt;}
.y6e{bottom:458.234533pt;}
.ya0{bottom:458.356533pt;}
.y9d{bottom:463.665200pt;}
.y14c{bottom:464.986267pt;}
.y16{bottom:465.372933pt;}
.y190{bottom:471.056267pt;}
.y48{bottom:474.101200pt;}
.y12f{bottom:474.104533pt;}
.y6d{bottom:474.234533pt;}
.y18f{bottom:484.389600pt;}
.y47{bottom:490.101200pt;}
.y12e{bottom:490.104533pt;}
.y6c{bottom:490.234533pt;}
.ycb{bottom:494.561867pt;}
.y18e{bottom:497.722933pt;}
.y46{bottom:506.101200pt;}
.y12d{bottom:506.104533pt;}
.y6b{bottom:506.234533pt;}
.yca{bottom:508.556533pt;}
.y15{bottom:508.700933pt;}
.y18d{bottom:511.056267pt;}
.y14{bottom:521.500933pt;}
.y45{bottom:522.101200pt;}
.y12c{bottom:522.104533pt;}
.y6a{bottom:522.234533pt;}
.y18c{bottom:524.389600pt;}
.y13{bottom:534.300933pt;}
.y18b{bottom:537.722933pt;}
.y44{bottom:538.101200pt;}
.y12b{bottom:538.104533pt;}
.y69{bottom:538.234533pt;}
.ycd{bottom:538.877867pt;}
.y18a{bottom:551.056267pt;}
.y43{bottom:554.101200pt;}
.y126{bottom:554.104533pt;}
.y68{bottom:554.234533pt;}
.y12{bottom:558.439600pt;}
.y189{bottom:564.389600pt;}
.y120{bottom:568.248933pt;}
.y42{bottom:570.101200pt;}
.y125{bottom:570.104533pt;}
.y67{bottom:570.234533pt;}
.y188{bottom:577.722933pt;}
.y11f{bottom:581.582267pt;}
.y41{bottom:586.101200pt;}
.y124{bottom:586.104533pt;}
.y66{bottom:586.234533pt;}
.y187{bottom:591.056267pt;}
.y11{bottom:592.766667pt;}
.y11e{bottom:594.915600pt;}
.y40{bottom:602.101200pt;}
.y123{bottom:602.104533pt;}
.y65{bottom:602.234533pt;}
.y10{bottom:603.772933pt;}
.y186{bottom:604.389600pt;}
.y11d{bottom:608.248933pt;}
.y185{bottom:617.722933pt;}
.y3f{bottom:618.101200pt;}
.y122{bottom:618.104533pt;}
.y11c{bottom:621.582267pt;}
.yf{bottom:622.100000pt;}
.y184{bottom:631.056267pt;}
.y14b{bottom:631.098267pt;}
.y3e{bottom:634.101200pt;}
.y121{bottom:634.104533pt;}
.y64{bottom:634.234533pt;}
.y11b{bottom:634.915600pt;}
.ye{bottom:636.766667pt;}
.y183{bottom:644.389600pt;}
.yd{bottom:647.772933pt;}
.y11a{bottom:648.248933pt;}
.y3d{bottom:650.101200pt;}
.ye3{bottom:650.104533pt;}
.yea{bottom:650.237867pt;}
.y182{bottom:657.722933pt;}
.y119{bottom:661.582267pt;}
.yc{bottom:666.100000pt;}
.y3c{bottom:666.101200pt;}
.ye2{bottom:666.104533pt;}
.ye9{bottom:666.237867pt;}
.y181{bottom:671.056267pt;}
.y118{bottom:674.915600pt;}
.yb{bottom:677.106267pt;}
.y3b{bottom:682.101200pt;}
.ye1{bottom:682.104533pt;}
.ye8{bottom:682.237867pt;}
.y180{bottom:684.389600pt;}
.ya{bottom:695.433333pt;}
.y17f{bottom:697.722933pt;}
.y3a{bottom:698.101200pt;}
.ye0{bottom:698.104533pt;}
.ye7{bottom:698.237867pt;}
.y117{bottom:703.632667pt;}
.y9{bottom:710.100000pt;}
.y17e{bottom:711.056267pt;}
.y39{bottom:714.101200pt;}
.ydf{bottom:714.104533pt;}
.ye6{bottom:714.237867pt;}
.y116{bottom:717.504667pt;}
.y17d{bottom:724.389600pt;}
.y8{bottom:724.766667pt;}
.y38{bottom:730.101200pt;}
.yde{bottom:730.104533pt;}
.ye5{bottom:730.237867pt;}
.y17c{bottom:737.722933pt;}
.ycc{bottom:738.248000pt;}
.yce{bottom:738.248533pt;}
.y7{bottom:738.338933pt;}
.y37{bottom:746.101200pt;}
.ydd{bottom:746.104533pt;}
.y115{bottom:746.237867pt;}
.y17b{bottom:751.056267pt;}
.y6{bottom:759.004267pt;}
.y36{bottom:762.101200pt;}
.ydc{bottom:762.104533pt;}
.ye4{bottom:762.237867pt;}
.y17a{bottom:764.389600pt;}
.y179{bottom:777.722933pt;}
.y62{bottom:777.981200pt;}
.y35{bottom:778.101200pt;}
.ydb{bottom:778.104533pt;}
.y5{bottom:783.345067pt;}
.y178{bottom:791.056267pt;}
.y34{bottom:794.101200pt;}
.yda{bottom:794.104533pt;}
.y177{bottom:804.389600pt;}
.y4{bottom:807.350400pt;}
.y33{bottom:810.101200pt;}
.yd9{bottom:810.104533pt;}
.y176{bottom:817.722933pt;}
.y32{bottom:826.101200pt;}
.yd8{bottom:826.104533pt;}
.y175{bottom:831.056267pt;}
.y3{bottom:831.355733pt;}
.y31{bottom:842.101200pt;}
.yd7{bottom:842.104533pt;}
.y174{bottom:844.389600pt;}
.y173{bottom:857.722933pt;}
.y30{bottom:858.101200pt;}
.yd6{bottom:858.104533pt;}
.y172{bottom:871.056267pt;}
.y2{bottom:871.060800pt;}
.y2f{bottom:874.101200pt;}
.yd5{bottom:874.104533pt;}
.y171{bottom:884.389600pt;}
.y2e{bottom:890.101200pt;}
.yd4{bottom:890.104533pt;}
.y170{bottom:897.722933pt;}
.y2d{bottom:906.101200pt;}
.yd3{bottom:906.104533pt;}
.y86{bottom:906.114533pt;}
.y16f{bottom:911.056267pt;}
.y2c{bottom:922.101200pt;}
.yd2{bottom:922.104533pt;}
.y85{bottom:922.114533pt;}
.y16e{bottom:924.389600pt;}
.y29{bottom:951.795067pt;}
.y63{bottom:965.392400pt;}
.y28{bottom:965.395067pt;}
.h7{height:18.637500pt;}
.h12{height:27.179688pt;}
.h15{height:27.197917pt;}
.h2{height:27.216146pt;}
.h8{height:31.062500pt;}
.ha{height:31.074833pt;}
.h17{height:31.083333pt;}
.h16{height:31.093500pt;}
.h9{height:31.104167pt;}
.hd{height:33.048177pt;}
.h19{height:34.992188pt;}
.hb{height:38.828125pt;}
.he{height:38.854167pt;}
.hc{height:38.880208pt;}
.h18{height:38.893542pt;}
.hf{height:41.581992pt;}
.h10{height:41.635325pt;}
.h6{height:45.793738pt;}
.h5{height:45.799071pt;}
.h3{height:46.593750pt;}
.h13{height:49.579688pt;}
.h14{height:49.616146pt;}
.h4{height:54.359375pt;}
.h11{height:71.979688pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x22{left:69.923467pt;}
.x23{left:77.474133pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x4d{left:88.823600pt;}
.x15{left:93.165333pt;}
.x4b{left:95.244133pt;}
.xb{left:98.271467pt;}
.x3{left:111.491067pt;}
.x55{left:113.393200pt;}
.x6{left:117.170133pt;}
.x4{left:143.619067pt;}
.x19{left:146.587467pt;}
.x52{left:149.779600pt;}
.x26{left:150.918133pt;}
.x25{left:152.476800pt;}
.x27{left:158.692800pt;}
.x1a{left:162.603467pt;}
.x24{left:165.702133pt;}
.x28{left:178.143467pt;}
.x4f{left:187.012267pt;}
.x5{left:189.223467pt;}
.x54{left:192.254267pt;}
.x4e{left:203.897600pt;}
.x53{left:205.352933pt;}
.x2d{left:240.611467pt;}
.x2a{left:242.944800pt;}
.x29{left:247.191467pt;}
.x2e{left:248.899467pt;}
.x2c{left:253.062133pt;}
.x2b{left:258.251467pt;}
.x44{left:264.196800pt;}
.x31{left:316.631467pt;}
.x33{left:317.686133pt;}
.x32{left:320.010133pt;}
.x30{left:321.568800pt;}
.x2f{left:325.451467pt;}
.x50{left:334.468267pt;}
.x45{left:336.866133pt;}
.x1b{left:387.406133pt;}
.x35{left:390.392800pt;}
.x4a{left:393.543333pt;}
.x37{left:394.546133pt;}
.x34{left:396.618133pt;}
.x36{left:398.167467pt;}
.x9{left:404.481333pt;}
.xc{left:406.311467pt;}
.x11{left:425.182533pt;}
.x7{left:427.090133pt;}
.x4c{left:431.532933pt;}
.x5a{left:432.685467pt;}
.x18{left:434.264000pt;}
.xe{left:436.538133pt;}
.x17{left:441.826667pt;}
.x59{left:451.650133pt;}
.x1c{left:452.580800pt;}
.x1d{left:453.626133pt;}
.x13{left:455.423467pt;}
.x38{left:456.724800pt;}
.x3b{left:458.796800pt;}
.x3a{left:461.643467pt;}
.x39{left:463.724800pt;}
.xd{left:466.911467pt;}
.x3c{left:469.166133pt;}
.x16{left:510.616000pt;}
.x1f{left:517.876800pt;}
.x3d{left:519.407467pt;}
.x1e{left:520.714133pt;}
.x47{left:528.227467pt;}
.x58{left:529.863467pt;}
.x56{left:533.942533pt;}
.x12{left:544.796800pt;}
.x21{left:582.127467pt;}
.x3e{left:584.442133pt;}
.x3f{left:587.288800pt;}
.x20{left:588.352800pt;}
.x10{left:589.770933pt;}
.x46{left:597.658133pt;}
.x57{left:599.442000pt;}
.x2{left:626.078800pt;}
.x51{left:637.449067pt;}
.xf{left:643.752133pt;}
.x48{left:645.071467pt;}
.x40{left:646.620800pt;}
.x42{left:648.692800pt;}
.x43{left:651.800800pt;}
.x41{left:654.656800pt;}
.x49{left:656.489467pt;}
.x14{left:662.649733pt;}
}




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