
    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_8e0fd240ae439c8bb4977538.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ba14a7e9507923859cdf5c2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.925293;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_2e1e1685e1953a16893d20ea.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_01432d6923a9fe6af64e7b0b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cd50a2d5dced90c061a138af.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_40a2d6ca713320a38475f796.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a7248e9d54e26677183d1291.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1bdb87efa43eb92f51fd5a75.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_3c122bd18f3b3fc0bf723309.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_559061976c9755dca55084a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_5695af56ec1a873c018cbeba.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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);}
.v4{vertical-align:-28.263000px;}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls8e{letter-spacing:-2.640000px;}
.ls13{letter-spacing:-0.780000px;}
.ls4c{letter-spacing:-0.600000px;}
.ls68{letter-spacing:-0.480000px;}
.ls4b{letter-spacing:-0.420000px;}
.ls73{letter-spacing:-0.360000px;}
.lsa1{letter-spacing:-0.288000px;}
.ls6d{letter-spacing:-0.240000px;}
.ls3e{letter-spacing:-0.180000px;}
.lsa0{letter-spacing:-0.144000px;}
.ls65{letter-spacing:-0.143309px;}
.ls15{letter-spacing:-0.120000px;}
.ls55{letter-spacing:-0.096000px;}
.ls14{letter-spacing:-0.060000px;}
.ls62{letter-spacing:-0.048000px;}
.ls12{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls1{letter-spacing:0.005076px;}
.ls70{letter-spacing:0.048000px;}
.ls1d{letter-spacing:0.060000px;}
.ls54{letter-spacing:0.096000px;}
.ls20{letter-spacing:0.120000px;}
.ls5c{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.180000px;}
.ls52{letter-spacing:0.192000px;}
.ls11{letter-spacing:0.240000px;}
.ls58{letter-spacing:0.288000px;}
.lse{letter-spacing:0.300000px;}
.ls87{letter-spacing:0.336000px;}
.ls2c{letter-spacing:0.360000px;}
.ls5b{letter-spacing:0.384000px;}
.ls2e{letter-spacing:0.420000px;}
.ls80{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.480000px;}
.ls7a{letter-spacing:0.528000px;}
.lsa{letter-spacing:0.540000px;}
.ls7b{letter-spacing:0.576000px;}
.ls24{letter-spacing:0.600000px;}
.ls59{letter-spacing:0.624000px;}
.ls18{letter-spacing:0.660000px;}
.ls6a{letter-spacing:0.672000px;}
.ls33{letter-spacing:0.720000px;}
.ls8d{letter-spacing:0.768000px;}
.ls3a{letter-spacing:0.780000px;}
.ls83{letter-spacing:0.816000px;}
.ls2d{letter-spacing:0.840000px;}
.ls95{letter-spacing:0.864000px;}
.ls34{letter-spacing:0.900000px;}
.ls85{letter-spacing:0.912000px;}
.ls1c{letter-spacing:0.960000px;}
.ls5e{letter-spacing:1.008000px;}
.ls4{letter-spacing:1.020000px;}
.ls84{letter-spacing:1.056000px;}
.ls3b{letter-spacing:1.080000px;}
.ls98{letter-spacing:1.104000px;}
.ls47{letter-spacing:1.140000px;}
.ls6f{letter-spacing:1.152000px;}
.ls1f{letter-spacing:1.200000px;}
.ls89{letter-spacing:1.248000px;}
.ls8{letter-spacing:1.260000px;}
.ls1a{letter-spacing:1.320000px;}
.ls5f{letter-spacing:1.344000px;}
.ls19{letter-spacing:1.380000px;}
.ls8a{letter-spacing:1.392000px;}
.ls3{letter-spacing:1.440000px;}
.ls99{letter-spacing:1.488000px;}
.ls2f{letter-spacing:1.500000px;}
.ls81{letter-spacing:1.536000px;}
.lsc{letter-spacing:1.560000px;}
.ls7{letter-spacing:1.620000px;}
.ls61{letter-spacing:1.679040px;}
.lsf{letter-spacing:1.680000px;}
.ls8f{letter-spacing:1.728000px;}
.ls29{letter-spacing:1.740000px;}
.ls79{letter-spacing:1.776000px;}
.lsb{letter-spacing:1.800000px;}
.ls86{letter-spacing:1.824000px;}
.ls5{letter-spacing:1.860000px;}
.ls3f{letter-spacing:1.920000px;}
.ls77{letter-spacing:1.968000px;}
.ls22{letter-spacing:1.980000px;}
.ls9d{letter-spacing:2.016000px;}
.ls42{letter-spacing:2.040000px;}
.ls94{letter-spacing:2.064000px;}
.ls9{letter-spacing:2.100000px;}
.ls1e{letter-spacing:2.160000px;}
.ls96{letter-spacing:2.208000px;}
.ls3d{letter-spacing:2.220000px;}
.ls7c{letter-spacing:2.256000px;}
.ls6c{letter-spacing:2.280000px;}
.ls5d{letter-spacing:2.304000px;}
.ls39{letter-spacing:2.340000px;}
.ls90{letter-spacing:2.352000px;}
.ls27{letter-spacing:2.400000px;}
.ls60{letter-spacing:2.448000px;}
.ls45{letter-spacing:2.460000px;}
.ls92{letter-spacing:2.496000px;}
.ls6{letter-spacing:2.520000px;}
.ls8b{letter-spacing:2.544000px;}
.ls31{letter-spacing:2.580000px;}
.ls63{letter-spacing:2.640000px;}
.ls26{letter-spacing:2.700000px;}
.ls32{letter-spacing:2.760000px;}
.ls88{letter-spacing:2.784000px;}
.ls23{letter-spacing:2.820000px;}
.ls7f{letter-spacing:2.832000px;}
.ls2b{letter-spacing:2.880000px;}
.ls9a{letter-spacing:2.928000px;}
.ls35{letter-spacing:2.940000px;}
.ls9f{letter-spacing:2.976000px;}
.ls4d{letter-spacing:3.000000px;}
.ls82{letter-spacing:3.024000px;}
.ls43{letter-spacing:3.060000px;}
.ls7d{letter-spacing:3.072000px;}
.ls3c{letter-spacing:3.120000px;}
.ls25{letter-spacing:3.180000px;}
.ls91{letter-spacing:3.216000px;}
.ls44{letter-spacing:3.240000px;}
.ls21{letter-spacing:3.300000px;}
.ls8c{letter-spacing:3.312000px;}
.ls49{letter-spacing:3.360000px;}
.ls7e{letter-spacing:3.408000px;}
.lsd{letter-spacing:3.420000px;}
.ls41{letter-spacing:3.480000px;}
.ls56{letter-spacing:3.540000px;}
.ls9e{letter-spacing:3.552000px;}
.ls46{letter-spacing:3.600000px;}
.ls4a{letter-spacing:3.660000px;}
.ls9b{letter-spacing:3.696000px;}
.ls16{letter-spacing:3.720000px;}
.ls9c{letter-spacing:3.744000px;}
.ls40{letter-spacing:3.780000px;}
.ls97{letter-spacing:3.792000px;}
.ls57{letter-spacing:3.840000px;}
.ls69{letter-spacing:3.900000px;}
.ls66{letter-spacing:3.960000px;}
.ls71{letter-spacing:4.032000px;}
.ls53{letter-spacing:4.128000px;}
.ls37{letter-spacing:4.140000px;}
.ls78{letter-spacing:4.176000px;}
.ls30{letter-spacing:4.200000px;}
.ls10{letter-spacing:4.260000px;}
.ls5a{letter-spacing:4.368000px;}
.ls36{letter-spacing:4.380000px;}
.ls4e{letter-spacing:4.440000px;}
.ls48{letter-spacing:4.500000px;}
.ls2a{letter-spacing:4.560000px;}
.ls6b{letter-spacing:4.656000px;}
.ls93{letter-spacing:4.752000px;}
.ls74{letter-spacing:4.800000px;}
.ls75{letter-spacing:4.860000px;}
.ls4f{letter-spacing:5.160000px;}
.ls67{letter-spacing:5.280000px;}
.ls28{letter-spacing:5.400000px;}
.ls50{letter-spacing:5.700000px;}
.ls64{letter-spacing:5.760000px;}
.ls72{letter-spacing:6.060000px;}
.ls51{letter-spacing:6.120000px;}
.ls6e{letter-spacing:6.300000px;}
.ls38{letter-spacing:6.660000px;}
.ls76{letter-spacing:7.680000px;}
.ls0{letter-spacing:59.538000px;}
.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;}
}
.ws31{word-spacing:-20.160000px;}
.ws10{word-spacing:-19.380000px;}
.ws4b{word-spacing:-19.260000px;}
.wsf7{word-spacing:-18.960000px;}
.ws30{word-spacing:-18.300000px;}
.ws3a{word-spacing:-18.120000px;}
.ws8a{word-spacing:-17.880000px;}
.ws88{word-spacing:-17.820000px;}
.ws7f{word-spacing:-17.760000px;}
.ws3d{word-spacing:-17.580000px;}
.ws8b{word-spacing:-17.220000px;}
.ws89{word-spacing:-17.160000px;}
.ws2{word-spacing:-16.680000px;}
.ws23{word-spacing:-16.560000px;}
.wsa1{word-spacing:-16.500000px;}
.ws8c{word-spacing:-16.320000px;}
.wsa6{word-spacing:-16.260000px;}
.ws3b{word-spacing:-16.140000px;}
.ws7d{word-spacing:-16.020000px;}
.ws4c{word-spacing:-15.960000px;}
.ws75{word-spacing:-15.900000px;}
.wsd{word-spacing:-15.660000px;}
.ws80{word-spacing:-15.600000px;}
.wsf{word-spacing:-15.540000px;}
.wse{word-spacing:-15.480000px;}
.ws81{word-spacing:-15.420000px;}
.ws3c{word-spacing:-15.360000px;}
.ws32{word-spacing:-15.300000px;}
.ws9a{word-spacing:-15.180000px;}
.wsae{word-spacing:-15.120000px;}
.ws11{word-spacing:-15.000000px;}
.ws7e{word-spacing:-14.940000px;}
.wsb1{word-spacing:-14.832000px;}
.wse7{word-spacing:-14.784000px;}
.wsf3{word-spacing:-14.064000px;}
.wse5{word-spacing:-13.824000px;}
.wse6{word-spacing:-13.728000px;}
.wscc{word-spacing:-13.392000px;}
.ws4{word-spacing:-13.344000px;}
.wsf6{word-spacing:-13.248000px;}
.wsc6{word-spacing:-13.152000px;}
.wsf4{word-spacing:-13.056000px;}
.wsc7{word-spacing:-12.912000px;}
.wsf5{word-spacing:-12.864000px;}
.wsc4{word-spacing:-12.816000px;}
.wscb{word-spacing:-12.768000px;}
.ws93{word-spacing:-12.672000px;}
.wsc5{word-spacing:-12.624000px;}
.wsb0{word-spacing:-12.576000px;}
.wsaf{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.510000px;}
.wsb2{word-spacing:-12.480000px;}
.wsf2{word-spacing:-12.336000px;}
.ws3e{word-spacing:-12.192000px;}
.wsc8{word-spacing:-12.144000px;}
.wsa2{word-spacing:-12.096000px;}
.wsa3{word-spacing:-12.048000px;}
.ws4d{word-spacing:-12.000000px;}
.wsc9{word-spacing:-11.952000px;}
.ws68{word-spacing:-11.808000px;}
.ws6a{word-spacing:-10.512000px;}
.ws4a{word-spacing:-10.424040px;}
.ws1{word-spacing:-10.210662px;}
.wsca{word-spacing:-9.360000px;}
.ws60{word-spacing:-8.928000px;}
.ws64{word-spacing:-7.824000px;}
.ws67{word-spacing:-7.776000px;}
.wsb4{word-spacing:-4.860000px;}
.wsb5{word-spacing:-4.440000px;}
.ws1d{word-spacing:-4.380000px;}
.wsbb{word-spacing:-4.176000px;}
.ws58{word-spacing:-4.140000px;}
.ws103{word-spacing:-3.960000px;}
.ws69{word-spacing:-3.792000px;}
.ws101{word-spacing:-3.744000px;}
.ws62{word-spacing:-3.696000px;}
.wsf8{word-spacing:-3.552000px;}
.ws5f{word-spacing:-3.504000px;}
.ws90{word-spacing:-3.360000px;}
.wsdd{word-spacing:-3.312000px;}
.ws7{word-spacing:-3.300000px;}
.wse9{word-spacing:-3.216000px;}
.ws7b{word-spacing:-3.180000px;}
.wsba{word-spacing:-3.120000px;}
.ws6b{word-spacing:-3.000000px;}
.wsfa{word-spacing:-2.976000px;}
.ws6{word-spacing:-2.886000px;}
.ws18{word-spacing:-2.880000px;}
.wsc1{word-spacing:-2.832000px;}
.ws9e{word-spacing:-2.820000px;}
.wsb7{word-spacing:-2.700000px;}
.ws9d{word-spacing:-2.640000px;}
.wsab{word-spacing:-2.520000px;}
.ws55{word-spacing:-2.400000px;}
.wse8{word-spacing:-2.352000px;}
.ws6e{word-spacing:-2.220000px;}
.ws63{word-spacing:-2.208000px;}
.ws8e{word-spacing:-2.160000px;}
.wsf9{word-spacing:-2.064000px;}
.ws2e{word-spacing:-2.040000px;}
.ws102{word-spacing:-2.016000px;}
.ws57{word-spacing:-1.980000px;}
.wsb9{word-spacing:-1.968000px;}
.ws5e{word-spacing:-1.920000px;}
.ws1a{word-spacing:-1.860000px;}
.wsf0{word-spacing:-1.824000px;}
.ws16{word-spacing:-1.800000px;}
.ws6d{word-spacing:-1.740000px;}
.wse1{word-spacing:-1.728000px;}
.ws71{word-spacing:-1.560000px;}
.wsf1{word-spacing:-1.488000px;}
.ws54{word-spacing:-1.440000px;}
.wse3{word-spacing:-1.392000px;}
.ws1e{word-spacing:-1.380000px;}
.wsc3{word-spacing:-1.344000px;}
.ws91{word-spacing:-1.320000px;}
.ws8f{word-spacing:-1.260000px;}
.wsdb{word-spacing:-1.248000px;}
.ws12{word-spacing:-1.200000px;}
.wsd8{word-spacing:-1.152000px;}
.ws43{word-spacing:-1.140000px;}
.ws2b{word-spacing:-1.080000px;}
.wse4{word-spacing:-1.056000px;}
.ws26{word-spacing:-1.020000px;}
.wsd6{word-spacing:-1.008000px;}
.ws56{word-spacing:-0.960000px;}
.wse2{word-spacing:-0.912000px;}
.ws98{word-spacing:-0.864000px;}
.wsb6{word-spacing:-0.840000px;}
.wsd4{word-spacing:-0.816000px;}
.ws78{word-spacing:-0.780000px;}
.wse0{word-spacing:-0.768000px;}
.ws5c{word-spacing:-0.720000px;}
.ws94{word-spacing:-0.672000px;}
.ws38{word-spacing:-0.660000px;}
.wsbe{word-spacing:-0.576000px;}
.ws29{word-spacing:-0.540000px;}
.wsc0{word-spacing:-0.528000px;}
.ws83{word-spacing:-0.480000px;}
.wsd5{word-spacing:-0.432000px;}
.ws85{word-spacing:-0.420000px;}
.wscf{word-spacing:-0.384000px;}
.ws42{word-spacing:-0.360000px;}
.wsdf{word-spacing:-0.336000px;}
.wsa9{word-spacing:-0.300000px;}
.wsfe{word-spacing:-0.288000px;}
.ws2c{word-spacing:-0.240000px;}
.ws45{word-spacing:-0.192000px;}
.ws13{word-spacing:-0.180000px;}
.wsd3{word-spacing:-0.144000px;}
.ws0{word-spacing:-0.126600px;}
.ws4f{word-spacing:-0.120000px;}
.ws49{word-spacing:-0.096000px;}
.ws22{word-spacing:-0.060000px;}
.wsbd{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wsd9{word-spacing:0.048000px;}
.ws20{word-spacing:0.060000px;}
.ws46{word-spacing:0.096000px;}
.ws41{word-spacing:0.120000px;}
.ws7c{word-spacing:0.143309px;}
.wsde{word-spacing:0.144000px;}
.ws34{word-spacing:0.180000px;}
.ws5a{word-spacing:0.240000px;}
.ws100{word-spacing:0.288000px;}
.wsef{word-spacing:0.336000px;}
.wsb8{word-spacing:0.384000px;}
.ws52{word-spacing:0.420000px;}
.ws96{word-spacing:0.432000px;}
.wsed{word-spacing:0.480000px;}
.wsad{word-spacing:0.528000px;}
.ws8d{word-spacing:0.540000px;}
.wsda{word-spacing:0.576000px;}
.wsfb{word-spacing:0.672000px;}
.ws51{word-spacing:0.720000px;}
.wsaa{word-spacing:0.768000px;}
.wsfd{word-spacing:0.816000px;}
.ws9c{word-spacing:0.900000px;}
.ws40{word-spacing:0.960000px;}
.ws95{word-spacing:1.008000px;}
.ws25{word-spacing:1.020000px;}
.wsbf{word-spacing:1.056000px;}
.wscd{word-spacing:1.104000px;}
.wseb{word-spacing:1.152000px;}
.wsb{word-spacing:1.200000px;}
.ws66{word-spacing:1.248000px;}
.ws77{word-spacing:1.260000px;}
.ws61{word-spacing:1.296000px;}
.ws5b{word-spacing:1.320000px;}
.ws9f{word-spacing:1.344000px;}
.ws92{word-spacing:1.440000px;}
.wsd7{word-spacing:1.488000px;}
.wsce{word-spacing:1.536000px;}
.ws1c{word-spacing:1.560000px;}
.wsa0{word-spacing:1.584000px;}
.ws4e{word-spacing:1.620000px;}
.wsdc{word-spacing:1.632000px;}
.ws24{word-spacing:1.740000px;}
.wsbc{word-spacing:1.776000px;}
.ws82{word-spacing:1.800000px;}
.wsfc{word-spacing:1.824000px;}
.ws9{word-spacing:1.860000px;}
.wsd1{word-spacing:1.920000px;}
.wsc2{word-spacing:1.968000px;}
.ws2f{word-spacing:1.980000px;}
.ws50{word-spacing:2.040000px;}
.ws5d{word-spacing:2.100000px;}
.ws39{word-spacing:2.160000px;}
.ws9b{word-spacing:2.220000px;}
.ws99{word-spacing:2.256000px;}
.ws86{word-spacing:2.280000px;}
.ws97{word-spacing:2.304000px;}
.ws21{word-spacing:2.340000px;}
.ws37{word-spacing:2.400000px;}
.ws2d{word-spacing:2.460000px;}
.wsa7{word-spacing:2.520000px;}
.wsec{word-spacing:2.544000px;}
.ws53{word-spacing:2.640000px;}
.wsd0{word-spacing:2.688000px;}
.ws70{word-spacing:2.700000px;}
.wsc{word-spacing:2.760000px;}
.ws59{word-spacing:2.820000px;}
.wsea{word-spacing:2.832000px;}
.ws79{word-spacing:2.880000px;}
.wsa8{word-spacing:2.940000px;}
.ws2a{word-spacing:3.000000px;}
.ws14{word-spacing:3.180000px;}
.ws87{word-spacing:3.216000px;}
.ws76{word-spacing:3.240000px;}
.wsd2{word-spacing:3.360000px;}
.ws36{word-spacing:3.420000px;}
.wsa5{word-spacing:3.480000px;}
.ws65{word-spacing:3.504000px;}
.wsa4{word-spacing:3.540000px;}
.ws84{word-spacing:3.600000px;}
.ws73{word-spacing:3.660000px;}
.ws47{word-spacing:3.696000px;}
.ws15{word-spacing:3.720000px;}
.wsee{word-spacing:3.744000px;}
.ws74{word-spacing:3.780000px;}
.ws19{word-spacing:3.840000px;}
.wsff{word-spacing:3.888000px;}
.ws27{word-spacing:3.900000px;}
.ws44{word-spacing:3.936000px;}
.ws6c{word-spacing:3.960000px;}
.ws48{word-spacing:3.984000px;}
.ws35{word-spacing:4.020000px;}
.ws6f{word-spacing:4.080000px;}
.ws28{word-spacing:4.140000px;}
.ws72{word-spacing:4.200000px;}
.ws33{word-spacing:4.320000px;}
.wsac{word-spacing:4.380000px;}
.ws1b{word-spacing:4.560000px;}
.ws17{word-spacing:4.620000px;}
.ws1f{word-spacing:4.680000px;}
.ws7a{word-spacing:4.740000px;}
.wsb3{word-spacing:4.800000px;}
.ws3f{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
._d{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._3{margin-left:-9.368400px;}
._9{margin-left:-7.860000px;}
._c{margin-left:-6.840000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.139400px;}
._8{width:1.920000px;}
._5{width:3.600000px;}
._6{width:4.980000px;}
._7{width:6.120000px;}
._a{width:7.320000px;}
._f{width:8.400000px;}
._b{width:9.540000px;}
._11{width:11.355600px;}
._19{width:12.978000px;}
._14{width:14.483400px;}
._13{width:17.424000px;}
._12{width:19.824000px;}
._15{width:21.216000px;}
._10{width:22.512000px;}
._17{width:27.456000px;}
._16{width:31.008000px;}
._18{width:37.548000px;}
._1e{width:328.944000px;}
._27{width:330.342000px;}
._1c{width:351.366000px;}
._1b{width:364.176000px;}
._24{width:617.856000px;}
._21{width:636.576000px;}
._1a{width:653.430000px;}
._20{width:728.592000px;}
._25{width:776.544000px;}
._26{width:778.326000px;}
._1f{width:787.152000px;}
._1d{width:811.152000px;}
._28{width:880.086000px;}
._22{width:932.448000px;}
._23{width:1003.926000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsb{font-size:47.769600px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y1f4{bottom:80.263500px;}
.y13a{bottom:83.318850px;}
.y169{bottom:83.353950px;}
.y167{bottom:83.566650px;}
.y186{bottom:83.635350px;}
.y64{bottom:83.770350px;}
.ydd{bottom:83.770500px;}
.y109{bottom:83.790900px;}
.y6b{bottom:83.920350px;}
.ya8{bottom:84.063000px;}
.y12a{bottom:84.085350px;}
.y164{bottom:84.322500px;}
.y97{bottom:84.523350px;}
.y134{bottom:84.617850px;}
.y12c{bottom:85.104029px;}
.y130{bottom:85.255650px;}
.y15e{bottom:85.267350px;}
.y102{bottom:87.056100px;}
.y2b{bottom:88.026750px;}
.y148{bottom:90.694500px;}
.y1b2{bottom:92.121900px;}
.y1f3{bottom:95.263500px;}
.y139{bottom:99.062850px;}
.y168{bottom:99.097950px;}
.y166{bottom:99.310650px;}
.ya7{bottom:99.807000px;}
.y96{bottom:100.267350px;}
.y133{bottom:100.361850px;}
.y12b{bottom:100.784400px;}
.y12f{bottom:100.999650px;}
.y15d{bottom:101.011350px;}
.y185{bottom:101.635350px;}
.y63{bottom:101.770350px;}
.ydc{bottom:101.770500px;}
.y6a{bottom:101.920350px;}
.y129{bottom:102.085350px;}
.y2a{bottom:103.023000px;}
.y101{bottom:105.056100px;}
.y147{bottom:106.942500px;}
.y1b1{bottom:107.121900px;}
.y1f2{bottom:110.263500px;}
.y138{bottom:114.806850px;}
.ya6{bottom:115.551000px;}
.y132{bottom:116.105850px;}
.y12e{bottom:116.743650px;}
.y184{bottom:119.230350px;}
.y62{bottom:119.770350px;}
.ydb{bottom:119.770500px;}
.y128{bottom:120.085350px;}
.y1b0{bottom:122.121900px;}
.y146{bottom:123.190500px;}
.y1f1{bottom:125.263500px;}
.y137{bottom:130.550850px;}
.ya5{bottom:131.295000px;}
.y1af{bottom:137.121900px;}
.y69{bottom:137.515350px;}
.y61{bottom:137.770350px;}
.yda{bottom:137.770500px;}
.y127{bottom:138.085350px;}
.y145{bottom:139.438500px;}
.y1f0{bottom:140.263500px;}
.y100{bottom:140.651100px;}
.y136{bottom:146.294850px;}
.ya4{bottom:147.039000px;}
.y1ae{bottom:152.121900px;}
.y1ef{bottom:155.263500px;}
.y68{bottom:155.515350px;}
.y183{bottom:155.635350px;}
.y144{bottom:155.686500px;}
.y60{bottom:155.770350px;}
.y126{bottom:156.085350px;}
.yff{bottom:158.651100px;}
.y27{bottom:164.699550px;}
.y1ad{bottom:167.121900px;}
.y1ee{bottom:170.263500px;}
.y143{bottom:171.934500px;}
.yd9{bottom:173.365500px;}
.y182{bottom:173.635350px;}
.y5f{bottom:173.770350px;}
.y125{bottom:174.085350px;}
.y1ac{bottom:182.121900px;}
.y26{bottom:182.699550px;}
.y1ed{bottom:185.263500px;}
.y142{bottom:188.182500px;}
.yd8{bottom:191.365500px;}
.y181{bottom:191.635350px;}
.y5e{bottom:191.770350px;}
.y124{bottom:192.085350px;}
.yfe{bottom:194.405400px;}
.y1ab{bottom:197.121900px;}
.y1ec{bottom:200.263500px;}
.y25{bottom:200.699550px;}
.y141{bottom:204.430500px;}
.yfd{bottom:209.405400px;}
.y180{bottom:209.635350px;}
.y5d{bottom:209.770350px;}
.y123{bottom:210.085350px;}
.y1aa{bottom:212.121900px;}
.y1eb{bottom:215.263500px;}
.y24{bottom:218.699550px;}
.y140{bottom:220.678500px;}
.yfc{bottom:224.405400px;}
.y1a9{bottom:227.121900px;}
.yd7{bottom:227.230500px;}
.y17f{bottom:227.635350px;}
.y5c{bottom:227.770350px;}
.y122{bottom:228.085350px;}
.y1ea{bottom:230.263500px;}
.y23{bottom:236.699550px;}
.y13f{bottom:236.926500px;}
.yfb{bottom:239.405400px;}
.y1a8{bottom:242.121900px;}
.y1e9{bottom:245.263500px;}
.y17e{bottom:245.635350px;}
.y5b{bottom:245.770350px;}
.y121{bottom:246.085350px;}
.y13e{bottom:253.174500px;}
.yfa{bottom:254.405400px;}
.y22{bottom:254.699550px;}
.y1a7{bottom:257.121900px;}
.y1e8{bottom:260.263500px;}
.y17d{bottom:263.230350px;}
.y5a{bottom:263.770350px;}
.y120{bottom:264.085350px;}
.yf9{bottom:269.405400px;}
.y1a6{bottom:272.121900px;}
.y21{bottom:272.699550px;}
.y1e7{bottom:275.263500px;}
.y59{bottom:281.770350px;}
.yd6{bottom:281.770500px;}
.y11f{bottom:282.085350px;}
.y13d{bottom:282.178500px;}
.yf8{bottom:284.405400px;}
.y1a5{bottom:287.121900px;}
.y1e6{bottom:290.263500px;}
.y20{bottom:290.699550px;}
.yf7{bottom:299.405400px;}
.y17c{bottom:299.635350px;}
.y58{bottom:299.770350px;}
.yd5{bottom:299.770500px;}
.y11e{bottom:300.085350px;}
.y1a4{bottom:302.121900px;}
.y1e5{bottom:305.263500px;}
.y1f{bottom:308.699550px;}
.yf6{bottom:314.405400px;}
.y13c{bottom:314.569650px;}
.y1a3{bottom:317.121900px;}
.y17b{bottom:317.635350px;}
.y57{bottom:317.770350px;}
.yd4{bottom:317.770500px;}
.y1e4{bottom:320.263500px;}
.y1e{bottom:326.699550px;}
.yf5{bottom:329.405400px;}
.y1a2{bottom:332.121900px;}
.y13b{bottom:334.069650px;}
.y1e3{bottom:335.263500px;}
.y17a{bottom:335.635350px;}
.y11d{bottom:335.680350px;}
.y56{bottom:335.770350px;}
.yd3{bottom:335.770500px;}
.yf4{bottom:344.405400px;}
.y1d{bottom:344.699550px;}
.y1a1{bottom:347.121900px;}
.y1e2{bottom:350.263500px;}
.y179{bottom:353.635350px;}
.y55{bottom:353.770350px;}
.yd2{bottom:353.770500px;}
.yf3{bottom:359.405400px;}
.y1a0{bottom:362.121900px;}
.y1c{bottom:362.699550px;}
.y1e1{bottom:365.263500px;}
.y178{bottom:371.635350px;}
.y54{bottom:371.770350px;}
.yd1{bottom:371.770500px;}
.y11c{bottom:371.935350px;}
.yf2{bottom:374.405400px;}
.y19f{bottom:377.121900px;}
.y14b{bottom:378.429000px;}
.y1e0{bottom:380.263500px;}
.y29{bottom:380.699550px;}
.yaa{bottom:388.563000px;}
.yf1{bottom:389.405400px;}
.y177{bottom:389.635350px;}
.y53{bottom:389.770350px;}
.yd0{bottom:389.770500px;}
.y11b{bottom:389.935350px;}
.y19e{bottom:392.121900px;}
.y1f9{bottom:392.914350px;}
.y14a{bottom:394.173000px;}
.y1df{bottom:395.263500px;}
.y1b{bottom:398.296650px;}
.y28{bottom:398.699550px;}
.ya9{bottom:404.307000px;}
.yf0{bottom:404.405400px;}
.y19d{bottom:407.121900px;}
.y67{bottom:407.365350px;}
.y176{bottom:407.635350px;}
.y52{bottom:407.770350px;}
.ycf{bottom:407.770500px;}
.y11a{bottom:407.935350px;}
.y149{bottom:409.917000px;}
.y1de{bottom:410.263500px;}
.y1f8{bottom:410.914350px;}
.yef{bottom:419.405400px;}
.y19c{bottom:422.121900px;}
.y1dd{bottom:425.263500px;}
.y175{bottom:425.635350px;}
.y51{bottom:425.770350px;}
.yce{bottom:425.770500px;}
.y119{bottom:425.935350px;}
.y1f7{bottom:428.914350px;}
.yee{bottom:434.405400px;}
.y19b{bottom:437.121900px;}
.y1dc{bottom:440.263500px;}
.y66{bottom:443.230350px;}
.y174{bottom:443.635350px;}
.y50{bottom:443.770350px;}
.ycd{bottom:443.770500px;}
.y118{bottom:443.935350px;}
.yed{bottom:449.405400px;}
.y19a{bottom:452.121900px;}
.y163{bottom:452.493750px;}
.y1db{bottom:455.263500px;}
.y173{bottom:461.635350px;}
.y4f{bottom:461.770350px;}
.ycc{bottom:461.770500px;}
.y117{bottom:461.935350px;}
.yec{bottom:464.405400px;}
.y1f6{bottom:464.509350px;}
.y199{bottom:467.121900px;}
.y162{bottom:468.237750px;}
.y1da{bottom:470.263500px;}
.y1a{bottom:476.014200px;}
.yeb{bottom:479.405400px;}
.y172{bottom:479.635350px;}
.y4e{bottom:479.770350px;}
.ycb{bottom:479.770500px;}
.y116{bottom:479.935350px;}
.y198{bottom:482.121900px;}
.y161{bottom:483.981750px;}
.y1d9{bottom:485.263500px;}
.yea{bottom:494.405400px;}
.y197{bottom:497.121900px;}
.y171{bottom:497.635350px;}
.y4d{bottom:497.770350px;}
.yca{bottom:497.770500px;}
.y115{bottom:497.935350px;}
.y160{bottom:499.725750px;}
.y1d8{bottom:500.263500px;}
.y19{bottom:503.359200px;}
.ye9{bottom:509.405400px;}
.y196{bottom:512.121900px;}
.y1d7{bottom:515.263500px;}
.y170{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.yc9{bottom:515.770500px;}
.y114{bottom:515.935350px;}
.y18{bottom:521.359200px;}
.ye8{bottom:524.405400px;}
.y195{bottom:527.121900px;}
.y1d6{bottom:530.263500px;}
.y16f{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.yc8{bottom:533.770500px;}
.y113{bottom:533.935350px;}
.y17{bottom:539.359200px;}
.ye7{bottom:539.405400px;}
.y194{bottom:542.121900px;}
.y1d5{bottom:545.263500px;}
.y16e{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.yc7{bottom:551.770500px;}
.y7b{bottom:551.920350px;}
.y95{bottom:551.935350px;}
.ye6{bottom:554.405400px;}
.y193{bottom:557.121900px;}
.y16{bottom:557.359200px;}
.y1d4{bottom:560.263500px;}
.ye5{bottom:569.405400px;}
.y16d{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.yc6{bottom:569.770500px;}
.y7a{bottom:569.920350px;}
.y94{bottom:569.935350px;}
.y192{bottom:572.121900px;}
.y1d3{bottom:575.263500px;}
.y15{bottom:575.359200px;}
.ye4{bottom:584.405400px;}
.y191{bottom:587.121900px;}
.y48{bottom:587.770350px;}
.yc5{bottom:587.770500px;}
.y79{bottom:587.920350px;}
.y93{bottom:587.935350px;}
.y1d2{bottom:590.263500px;}
.y14{bottom:593.359200px;}
.ye3{bottom:599.405400px;}
.y190{bottom:602.121900px;}
.y16c{bottom:605.230350px;}
.y1d1{bottom:605.263500px;}
.y47{bottom:605.770350px;}
.yc4{bottom:605.770500px;}
.y78{bottom:605.920350px;}
.y92{bottom:605.935350px;}
.y13{bottom:611.359200px;}
.ye2{bottom:614.405400px;}
.y18f{bottom:617.121900px;}
.y1d0{bottom:620.263500px;}
.y46{bottom:623.770350px;}
.yc3{bottom:623.770500px;}
.y77{bottom:623.920350px;}
.y91{bottom:623.935350px;}
.y12{bottom:629.359200px;}
.ye1{bottom:629.405400px;}
.y18e{bottom:632.121900px;}
.y1cf{bottom:635.263500px;}
.y15c{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.yc2{bottom:641.770500px;}
.y76{bottom:641.920350px;}
.y90{bottom:641.935350px;}
.ye0{bottom:644.405400px;}
.y18d{bottom:647.121900px;}
.y11{bottom:647.359200px;}
.y1ce{bottom:650.263500px;}
.y15b{bottom:659.635350px;}
.y44{bottom:659.770350px;}
.yc1{bottom:659.770500px;}
.y75{bottom:659.920350px;}
.y8f{bottom:659.935350px;}
.y18c{bottom:662.121900px;}
.y1cd{bottom:665.263500px;}
.y10{bottom:665.359200px;}
.ydf{bottom:677.515500px;}
.y15a{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.yc0{bottom:677.770500px;}
.y74{bottom:677.920350px;}
.y8e{bottom:677.935350px;}
.y1cc{bottom:680.263500px;}
.yf{bottom:683.359200px;}
.y18b{bottom:695.230350px;}
.y1cb{bottom:695.263500px;}
.yde{bottom:695.515500px;}
.y159{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.ybf{bottom:695.770500px;}
.y73{bottom:695.920350px;}
.y8d{bottom:695.935350px;}
.ye{bottom:701.359200px;}
.y1ca{bottom:710.263500px;}
.y12d{bottom:713.515350px;}
.y158{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.ybe{bottom:713.770500px;}
.ya3{bottom:713.785350px;}
.y72{bottom:713.920350px;}
.y8c{bottom:713.935350px;}
.yd{bottom:719.359200px;}
.y1c9{bottom:725.263500px;}
.y157{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.ybd{bottom:731.770500px;}
.ya2{bottom:731.785350px;}
.y71{bottom:731.920350px;}
.y8b{bottom:731.935350px;}
.yc{bottom:737.359200px;}
.y1c8{bottom:740.263500px;}
.y156{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.ybc{bottom:749.770500px;}
.ya1{bottom:749.785350px;}
.y70{bottom:749.920350px;}
.y8a{bottom:749.935350px;}
.y1c7{bottom:755.263500px;}
.y18a{bottom:767.365350px;}
.y98{bottom:767.515350px;}
.y155{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.ybb{bottom:767.770500px;}
.ya0{bottom:767.785350px;}
.y6f{bottom:767.920350px;}
.y89{bottom:767.935350px;}
.y1c6{bottom:770.263500px;}
.yb{bottom:782.517450px;}
.y1c5{bottom:785.263500px;}
.y154{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.yba{bottom:785.770500px;}
.y9f{bottom:785.785350px;}
.y6e{bottom:785.920350px;}
.y88{bottom:785.935350px;}
.ya{bottom:794.968200px;}
.y1c4{bottom:800.263500px;}
.y153{bottom:803.635350px;}
.y3c{bottom:803.770350px;}
.yb9{bottom:803.770500px;}
.y9e{bottom:803.785350px;}
.y108{bottom:803.920350px;}
.y87{bottom:803.935350px;}
.y1c3{bottom:815.263500px;}
.y189{bottom:821.365350px;}
.y6d{bottom:821.515350px;}
.y152{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.yb8{bottom:821.770500px;}
.y9d{bottom:821.785350px;}
.y107{bottom:821.920350px;}
.y86{bottom:821.935350px;}
.y9{bottom:826.683600px;}
.y1c2{bottom:830.263500px;}
.y6c{bottom:839.515350px;}
.y151{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.yb7{bottom:839.770500px;}
.y9c{bottom:839.785350px;}
.y106{bottom:839.920350px;}
.y85{bottom:839.935350px;}
.y8{bottom:840.183600px;}
.y1c1{bottom:845.263500px;}
.y150{bottom:857.635350px;}
.y39{bottom:857.770350px;}
.yb6{bottom:857.770500px;}
.y9b{bottom:857.785350px;}
.y105{bottom:857.920350px;}
.y112{bottom:857.935350px;}
.y7{bottom:859.108950px;}
.y1c0{bottom:860.263500px;}
.y1bf{bottom:875.263500px;}
.y84{bottom:875.530350px;}
.y14f{bottom:875.635350px;}
.y38{bottom:875.770350px;}
.yb5{bottom:875.770500px;}
.y9a{bottom:875.785350px;}
.y104{bottom:875.920350px;}
.y111{bottom:875.935350px;}
.y6{bottom:887.830950px;}
.y1be{bottom:890.263500px;}
.y14e{bottom:893.635350px;}
.y37{bottom:893.770350px;}
.yb4{bottom:893.770500px;}
.y99{bottom:893.785350px;}
.y10d{bottom:893.920350px;}
.y110{bottom:893.935350px;}
.y1bd{bottom:905.263500px;}
.y188{bottom:911.365350px;}
.y103{bottom:911.515350px;}
.y36{bottom:911.770350px;}
.yb3{bottom:911.770500px;}
.y83{bottom:911.785350px;}
.y10c{bottom:911.920350px;}
.y10f{bottom:911.935350px;}
.y1bc{bottom:920.263500px;}
.y14d{bottom:929.230350px;}
.y35{bottom:929.770350px;}
.yb2{bottom:929.770500px;}
.y82{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y1bb{bottom:935.263500px;}
.y10b{bottom:947.515350px;}
.y10e{bottom:947.530350px;}
.y34{bottom:947.770350px;}
.yb1{bottom:947.770500px;}
.y81{bottom:947.785350px;}
.y1ba{bottom:950.263500px;}
.y1b9{bottom:965.263500px;}
.y187{bottom:965.365350px;}
.y33{bottom:965.770350px;}
.yb0{bottom:965.770500px;}
.y80{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y1b8{bottom:980.263500px;}
.y32{bottom:983.770350px;}
.yaf{bottom:983.770500px;}
.y7f{bottom:983.785350px;}
.y1b7{bottom:995.263500px;}
.y31{bottom:1001.770350px;}
.yae{bottom:1001.770500px;}
.y7e{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y1b6{bottom:1010.263500px;}
.y30{bottom:1019.770350px;}
.yad{bottom:1019.770500px;}
.y7d{bottom:1019.785350px;}
.y1b5{bottom:1025.263500px;}
.y2f{bottom:1037.770350px;}
.yac{bottom:1037.770500px;}
.y7c{bottom:1037.785350px;}
.y1b4{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1b3{bottom:1132.413900px;}
.y165{bottom:1132.414500px;}
.y65{bottom:1132.418700px;}
.y10a{bottom:1132.422900px;}
.y15f{bottom:1132.423350px;}
.y1f5{bottom:1132.423500px;}
.y14c{bottom:1132.425000px;}
.y16b{bottom:1132.426650px;}
.y16a{bottom:1132.429950px;}
.y135{bottom:1132.433850px;}
.y131{bottom:1132.435650px;}
.yab{bottom:1132.443000px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.he{height:32.783203px;}
.h7{height:32.805176px;}
.h13{height:33.191475px;}
.h11{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h14{height:41.660156px;}
.hd{height:41.689453px;}
.hb{height:43.681641px;}
.h9{height:43.710938px;}
.hc{height:43.718034px;}
.ha{height:43.740234px;}
.h12{height:52.567951px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x18{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x1f{left:102.047250px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x1d{left:123.307350px;}
.x3{left:125.439150px;}
.x6{left:131.811000px;}
.x1a{left:190.145400px;}
.x15{left:211.121850px;}
.x5{left:212.876400px;}
.x19{left:220.135350px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x11{left:478.330350px;}
.x7{left:480.471000px;}
.x1c{left:482.598600px;}
.xe{left:491.105400px;}
.x1e{left:503.875350px;}
.x12{left:512.350350px;}
.x8{left:514.491000px;}
.x13{left:546.535350px;}
.x1b{left:574.850400px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x16{left:721.703400px;}
.xf{left:728.391600px;}
.x17{left:743.868150px;}
.x14{left:749.651400px;}
@media print{
.v4{vertical-align:-25.122667pt;}
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls8e{letter-spacing:-2.346667pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls4c{letter-spacing:-0.533333pt;}
.ls68{letter-spacing:-0.426667pt;}
.ls4b{letter-spacing:-0.373333pt;}
.ls73{letter-spacing:-0.320000pt;}
.lsa1{letter-spacing:-0.256000pt;}
.ls6d{letter-spacing:-0.213333pt;}
.ls3e{letter-spacing:-0.160000pt;}
.lsa0{letter-spacing:-0.128000pt;}
.ls65{letter-spacing:-0.127386pt;}
.ls15{letter-spacing:-0.106667pt;}
.ls55{letter-spacing:-0.085333pt;}
.ls14{letter-spacing:-0.053333pt;}
.ls62{letter-spacing:-0.042667pt;}
.ls12{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls1{letter-spacing:0.004512pt;}
.ls70{letter-spacing:0.042667pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls54{letter-spacing:0.085333pt;}
.ls20{letter-spacing:0.106667pt;}
.ls5c{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.160000pt;}
.ls52{letter-spacing:0.170667pt;}
.ls11{letter-spacing:0.213333pt;}
.ls58{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.266667pt;}
.ls87{letter-spacing:0.298667pt;}
.ls2c{letter-spacing:0.320000pt;}
.ls5b{letter-spacing:0.341333pt;}
.ls2e{letter-spacing:0.373333pt;}
.ls80{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.426667pt;}
.ls7a{letter-spacing:0.469333pt;}
.lsa{letter-spacing:0.480000pt;}
.ls7b{letter-spacing:0.512000pt;}
.ls24{letter-spacing:0.533333pt;}
.ls59{letter-spacing:0.554667pt;}
.ls18{letter-spacing:0.586667pt;}
.ls6a{letter-spacing:0.597333pt;}
.ls33{letter-spacing:0.640000pt;}
.ls8d{letter-spacing:0.682667pt;}
.ls3a{letter-spacing:0.693333pt;}
.ls83{letter-spacing:0.725333pt;}
.ls2d{letter-spacing:0.746667pt;}
.ls95{letter-spacing:0.768000pt;}
.ls34{letter-spacing:0.800000pt;}
.ls85{letter-spacing:0.810667pt;}
.ls1c{letter-spacing:0.853333pt;}
.ls5e{letter-spacing:0.896000pt;}
.ls4{letter-spacing:0.906667pt;}
.ls84{letter-spacing:0.938667pt;}
.ls3b{letter-spacing:0.960000pt;}
.ls98{letter-spacing:0.981333pt;}
.ls47{letter-spacing:1.013333pt;}
.ls6f{letter-spacing:1.024000pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls89{letter-spacing:1.109333pt;}
.ls8{letter-spacing:1.120000pt;}
.ls1a{letter-spacing:1.173333pt;}
.ls5f{letter-spacing:1.194667pt;}
.ls19{letter-spacing:1.226667pt;}
.ls8a{letter-spacing:1.237333pt;}
.ls3{letter-spacing:1.280000pt;}
.ls99{letter-spacing:1.322667pt;}
.ls2f{letter-spacing:1.333333pt;}
.ls81{letter-spacing:1.365333pt;}
.lsc{letter-spacing:1.386667pt;}
.ls7{letter-spacing:1.440000pt;}
.ls61{letter-spacing:1.492480pt;}
.lsf{letter-spacing:1.493333pt;}
.ls8f{letter-spacing:1.536000pt;}
.ls29{letter-spacing:1.546667pt;}
.ls79{letter-spacing:1.578667pt;}
.lsb{letter-spacing:1.600000pt;}
.ls86{letter-spacing:1.621333pt;}
.ls5{letter-spacing:1.653333pt;}
.ls3f{letter-spacing:1.706667pt;}
.ls77{letter-spacing:1.749333pt;}
.ls22{letter-spacing:1.760000pt;}
.ls9d{letter-spacing:1.792000pt;}
.ls42{letter-spacing:1.813333pt;}
.ls94{letter-spacing:1.834667pt;}
.ls9{letter-spacing:1.866667pt;}
.ls1e{letter-spacing:1.920000pt;}
.ls96{letter-spacing:1.962667pt;}
.ls3d{letter-spacing:1.973333pt;}
.ls7c{letter-spacing:2.005333pt;}
.ls6c{letter-spacing:2.026667pt;}
.ls5d{letter-spacing:2.048000pt;}
.ls39{letter-spacing:2.080000pt;}
.ls90{letter-spacing:2.090667pt;}
.ls27{letter-spacing:2.133333pt;}
.ls60{letter-spacing:2.176000pt;}
.ls45{letter-spacing:2.186667pt;}
.ls92{letter-spacing:2.218667pt;}
.ls6{letter-spacing:2.240000pt;}
.ls8b{letter-spacing:2.261333pt;}
.ls31{letter-spacing:2.293333pt;}
.ls63{letter-spacing:2.346667pt;}
.ls26{letter-spacing:2.400000pt;}
.ls32{letter-spacing:2.453333pt;}
.ls88{letter-spacing:2.474667pt;}
.ls23{letter-spacing:2.506667pt;}
.ls7f{letter-spacing:2.517333pt;}
.ls2b{letter-spacing:2.560000pt;}
.ls9a{letter-spacing:2.602667pt;}
.ls35{letter-spacing:2.613333pt;}
.ls9f{letter-spacing:2.645333pt;}
.ls4d{letter-spacing:2.666667pt;}
.ls82{letter-spacing:2.688000pt;}
.ls43{letter-spacing:2.720000pt;}
.ls7d{letter-spacing:2.730667pt;}
.ls3c{letter-spacing:2.773333pt;}
.ls25{letter-spacing:2.826667pt;}
.ls91{letter-spacing:2.858667pt;}
.ls44{letter-spacing:2.880000pt;}
.ls21{letter-spacing:2.933333pt;}
.ls8c{letter-spacing:2.944000pt;}
.ls49{letter-spacing:2.986667pt;}
.ls7e{letter-spacing:3.029333pt;}
.lsd{letter-spacing:3.040000pt;}
.ls41{letter-spacing:3.093333pt;}
.ls56{letter-spacing:3.146667pt;}
.ls9e{letter-spacing:3.157333pt;}
.ls46{letter-spacing:3.200000pt;}
.ls4a{letter-spacing:3.253333pt;}
.ls9b{letter-spacing:3.285333pt;}
.ls16{letter-spacing:3.306667pt;}
.ls9c{letter-spacing:3.328000pt;}
.ls40{letter-spacing:3.360000pt;}
.ls97{letter-spacing:3.370667pt;}
.ls57{letter-spacing:3.413333pt;}
.ls69{letter-spacing:3.466667pt;}
.ls66{letter-spacing:3.520000pt;}
.ls71{letter-spacing:3.584000pt;}
.ls53{letter-spacing:3.669333pt;}
.ls37{letter-spacing:3.680000pt;}
.ls78{letter-spacing:3.712000pt;}
.ls30{letter-spacing:3.733333pt;}
.ls10{letter-spacing:3.786667pt;}
.ls5a{letter-spacing:3.882667pt;}
.ls36{letter-spacing:3.893333pt;}
.ls4e{letter-spacing:3.946667pt;}
.ls48{letter-spacing:4.000000pt;}
.ls2a{letter-spacing:4.053333pt;}
.ls6b{letter-spacing:4.138667pt;}
.ls93{letter-spacing:4.224000pt;}
.ls74{letter-spacing:4.266667pt;}
.ls75{letter-spacing:4.320000pt;}
.ls4f{letter-spacing:4.586667pt;}
.ls67{letter-spacing:4.693333pt;}
.ls28{letter-spacing:4.800000pt;}
.ls50{letter-spacing:5.066667pt;}
.ls64{letter-spacing:5.120000pt;}
.ls72{letter-spacing:5.386667pt;}
.ls51{letter-spacing:5.440000pt;}
.ls6e{letter-spacing:5.600000pt;}
.ls38{letter-spacing:5.920000pt;}
.ls76{letter-spacing:6.826667pt;}
.ls0{letter-spacing:52.922667pt;}
.ws31{word-spacing:-17.920000pt;}
.ws10{word-spacing:-17.226667pt;}
.ws4b{word-spacing:-17.120000pt;}
.wsf7{word-spacing:-16.853333pt;}
.ws30{word-spacing:-16.266667pt;}
.ws3a{word-spacing:-16.106667pt;}
.ws8a{word-spacing:-15.893333pt;}
.ws88{word-spacing:-15.840000pt;}
.ws7f{word-spacing:-15.786667pt;}
.ws3d{word-spacing:-15.626667pt;}
.ws8b{word-spacing:-15.306667pt;}
.ws89{word-spacing:-15.253333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws23{word-spacing:-14.720000pt;}
.wsa1{word-spacing:-14.666667pt;}
.ws8c{word-spacing:-14.506667pt;}
.wsa6{word-spacing:-14.453333pt;}
.ws3b{word-spacing:-14.346667pt;}
.ws7d{word-spacing:-14.240000pt;}
.ws4c{word-spacing:-14.186667pt;}
.ws75{word-spacing:-14.133333pt;}
.wsd{word-spacing:-13.920000pt;}
.ws80{word-spacing:-13.866667pt;}
.wsf{word-spacing:-13.813333pt;}
.wse{word-spacing:-13.760000pt;}
.ws81{word-spacing:-13.706667pt;}
.ws3c{word-spacing:-13.653333pt;}
.ws32{word-spacing:-13.600000pt;}
.ws9a{word-spacing:-13.493333pt;}
.wsae{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.333333pt;}
.ws7e{word-spacing:-13.280000pt;}
.wsb1{word-spacing:-13.184000pt;}
.wse7{word-spacing:-13.141333pt;}
.wsf3{word-spacing:-12.501333pt;}
.wse5{word-spacing:-12.288000pt;}
.wse6{word-spacing:-12.202667pt;}
.wscc{word-spacing:-11.904000pt;}
.ws4{word-spacing:-11.861333pt;}
.wsf6{word-spacing:-11.776000pt;}
.wsc6{word-spacing:-11.690667pt;}
.wsf4{word-spacing:-11.605333pt;}
.wsc7{word-spacing:-11.477333pt;}
.wsf5{word-spacing:-11.434667pt;}
.wsc4{word-spacing:-11.392000pt;}
.wscb{word-spacing:-11.349333pt;}
.ws93{word-spacing:-11.264000pt;}
.wsc5{word-spacing:-11.221333pt;}
.wsb0{word-spacing:-11.178667pt;}
.wsaf{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.120000pt;}
.wsb2{word-spacing:-11.093333pt;}
.wsf2{word-spacing:-10.965333pt;}
.ws3e{word-spacing:-10.837333pt;}
.wsc8{word-spacing:-10.794667pt;}
.wsa2{word-spacing:-10.752000pt;}
.wsa3{word-spacing:-10.709333pt;}
.ws4d{word-spacing:-10.666667pt;}
.wsc9{word-spacing:-10.624000pt;}
.ws68{word-spacing:-10.496000pt;}
.ws6a{word-spacing:-9.344000pt;}
.ws4a{word-spacing:-9.265813pt;}
.ws1{word-spacing:-9.076144pt;}
.wsca{word-spacing:-8.320000pt;}
.ws60{word-spacing:-7.936000pt;}
.ws64{word-spacing:-6.954667pt;}
.ws67{word-spacing:-6.912000pt;}
.wsb4{word-spacing:-4.320000pt;}
.wsb5{word-spacing:-3.946667pt;}
.ws1d{word-spacing:-3.893333pt;}
.wsbb{word-spacing:-3.712000pt;}
.ws58{word-spacing:-3.680000pt;}
.ws103{word-spacing:-3.520000pt;}
.ws69{word-spacing:-3.370667pt;}
.ws101{word-spacing:-3.328000pt;}
.ws62{word-spacing:-3.285333pt;}
.wsf8{word-spacing:-3.157333pt;}
.ws5f{word-spacing:-3.114667pt;}
.ws90{word-spacing:-2.986667pt;}
.wsdd{word-spacing:-2.944000pt;}
.ws7{word-spacing:-2.933333pt;}
.wse9{word-spacing:-2.858667pt;}
.ws7b{word-spacing:-2.826667pt;}
.wsba{word-spacing:-2.773333pt;}
.ws6b{word-spacing:-2.666667pt;}
.wsfa{word-spacing:-2.645333pt;}
.ws6{word-spacing:-2.565333pt;}
.ws18{word-spacing:-2.560000pt;}
.wsc1{word-spacing:-2.517333pt;}
.ws9e{word-spacing:-2.506667pt;}
.wsb7{word-spacing:-2.400000pt;}
.ws9d{word-spacing:-2.346667pt;}
.wsab{word-spacing:-2.240000pt;}
.ws55{word-spacing:-2.133333pt;}
.wse8{word-spacing:-2.090667pt;}
.ws6e{word-spacing:-1.973333pt;}
.ws63{word-spacing:-1.962667pt;}
.ws8e{word-spacing:-1.920000pt;}
.wsf9{word-spacing:-1.834667pt;}
.ws2e{word-spacing:-1.813333pt;}
.ws102{word-spacing:-1.792000pt;}
.ws57{word-spacing:-1.760000pt;}
.wsb9{word-spacing:-1.749333pt;}
.ws5e{word-spacing:-1.706667pt;}
.ws1a{word-spacing:-1.653333pt;}
.wsf0{word-spacing:-1.621333pt;}
.ws16{word-spacing:-1.600000pt;}
.ws6d{word-spacing:-1.546667pt;}
.wse1{word-spacing:-1.536000pt;}
.ws71{word-spacing:-1.386667pt;}
.wsf1{word-spacing:-1.322667pt;}
.ws54{word-spacing:-1.280000pt;}
.wse3{word-spacing:-1.237333pt;}
.ws1e{word-spacing:-1.226667pt;}
.wsc3{word-spacing:-1.194667pt;}
.ws91{word-spacing:-1.173333pt;}
.ws8f{word-spacing:-1.120000pt;}
.wsdb{word-spacing:-1.109333pt;}
.ws12{word-spacing:-1.066667pt;}
.wsd8{word-spacing:-1.024000pt;}
.ws43{word-spacing:-1.013333pt;}
.ws2b{word-spacing:-0.960000pt;}
.wse4{word-spacing:-0.938667pt;}
.ws26{word-spacing:-0.906667pt;}
.wsd6{word-spacing:-0.896000pt;}
.ws56{word-spacing:-0.853333pt;}
.wse2{word-spacing:-0.810667pt;}
.ws98{word-spacing:-0.768000pt;}
.wsb6{word-spacing:-0.746667pt;}
.wsd4{word-spacing:-0.725333pt;}
.ws78{word-spacing:-0.693333pt;}
.wse0{word-spacing:-0.682667pt;}
.ws5c{word-spacing:-0.640000pt;}
.ws94{word-spacing:-0.597333pt;}
.ws38{word-spacing:-0.586667pt;}
.wsbe{word-spacing:-0.512000pt;}
.ws29{word-spacing:-0.480000pt;}
.wsc0{word-spacing:-0.469333pt;}
.ws83{word-spacing:-0.426667pt;}
.wsd5{word-spacing:-0.384000pt;}
.ws85{word-spacing:-0.373333pt;}
.wscf{word-spacing:-0.341333pt;}
.ws42{word-spacing:-0.320000pt;}
.wsdf{word-spacing:-0.298667pt;}
.wsa9{word-spacing:-0.266667pt;}
.wsfe{word-spacing:-0.256000pt;}
.ws2c{word-spacing:-0.213333pt;}
.ws45{word-spacing:-0.170667pt;}
.ws13{word-spacing:-0.160000pt;}
.wsd3{word-spacing:-0.128000pt;}
.ws0{word-spacing:-0.112533pt;}
.ws4f{word-spacing:-0.106667pt;}
.ws49{word-spacing:-0.085333pt;}
.ws22{word-spacing:-0.053333pt;}
.wsbd{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wsd9{word-spacing:0.042667pt;}
.ws20{word-spacing:0.053333pt;}
.ws46{word-spacing:0.085333pt;}
.ws41{word-spacing:0.106667pt;}
.ws7c{word-spacing:0.127386pt;}
.wsde{word-spacing:0.128000pt;}
.ws34{word-spacing:0.160000pt;}
.ws5a{word-spacing:0.213333pt;}
.ws100{word-spacing:0.256000pt;}
.wsef{word-spacing:0.298667pt;}
.wsb8{word-spacing:0.341333pt;}
.ws52{word-spacing:0.373333pt;}
.ws96{word-spacing:0.384000pt;}
.wsed{word-spacing:0.426667pt;}
.wsad{word-spacing:0.469333pt;}
.ws8d{word-spacing:0.480000pt;}
.wsda{word-spacing:0.512000pt;}
.wsfb{word-spacing:0.597333pt;}
.ws51{word-spacing:0.640000pt;}
.wsaa{word-spacing:0.682667pt;}
.wsfd{word-spacing:0.725333pt;}
.ws9c{word-spacing:0.800000pt;}
.ws40{word-spacing:0.853333pt;}
.ws95{word-spacing:0.896000pt;}
.ws25{word-spacing:0.906667pt;}
.wsbf{word-spacing:0.938667pt;}
.wscd{word-spacing:0.981333pt;}
.wseb{word-spacing:1.024000pt;}
.wsb{word-spacing:1.066667pt;}
.ws66{word-spacing:1.109333pt;}
.ws77{word-spacing:1.120000pt;}
.ws61{word-spacing:1.152000pt;}
.ws5b{word-spacing:1.173333pt;}
.ws9f{word-spacing:1.194667pt;}
.ws92{word-spacing:1.280000pt;}
.wsd7{word-spacing:1.322667pt;}
.wsce{word-spacing:1.365333pt;}
.ws1c{word-spacing:1.386667pt;}
.wsa0{word-spacing:1.408000pt;}
.ws4e{word-spacing:1.440000pt;}
.wsdc{word-spacing:1.450667pt;}
.ws24{word-spacing:1.546667pt;}
.wsbc{word-spacing:1.578667pt;}
.ws82{word-spacing:1.600000pt;}
.wsfc{word-spacing:1.621333pt;}
.ws9{word-spacing:1.653333pt;}
.wsd1{word-spacing:1.706667pt;}
.wsc2{word-spacing:1.749333pt;}
.ws2f{word-spacing:1.760000pt;}
.ws50{word-spacing:1.813333pt;}
.ws5d{word-spacing:1.866667pt;}
.ws39{word-spacing:1.920000pt;}
.ws9b{word-spacing:1.973333pt;}
.ws99{word-spacing:2.005333pt;}
.ws86{word-spacing:2.026667pt;}
.ws97{word-spacing:2.048000pt;}
.ws21{word-spacing:2.080000pt;}
.ws37{word-spacing:2.133333pt;}
.ws2d{word-spacing:2.186667pt;}
.wsa7{word-spacing:2.240000pt;}
.wsec{word-spacing:2.261333pt;}
.ws53{word-spacing:2.346667pt;}
.wsd0{word-spacing:2.389333pt;}
.ws70{word-spacing:2.400000pt;}
.wsc{word-spacing:2.453333pt;}
.ws59{word-spacing:2.506667pt;}
.wsea{word-spacing:2.517333pt;}
.ws79{word-spacing:2.560000pt;}
.wsa8{word-spacing:2.613333pt;}
.ws2a{word-spacing:2.666667pt;}
.ws14{word-spacing:2.826667pt;}
.ws87{word-spacing:2.858667pt;}
.ws76{word-spacing:2.880000pt;}
.wsd2{word-spacing:2.986667pt;}
.ws36{word-spacing:3.040000pt;}
.wsa5{word-spacing:3.093333pt;}
.ws65{word-spacing:3.114667pt;}
.wsa4{word-spacing:3.146667pt;}
.ws84{word-spacing:3.200000pt;}
.ws73{word-spacing:3.253333pt;}
.ws47{word-spacing:3.285333pt;}
.ws15{word-spacing:3.306667pt;}
.wsee{word-spacing:3.328000pt;}
.ws74{word-spacing:3.360000pt;}
.ws19{word-spacing:3.413333pt;}
.wsff{word-spacing:3.456000pt;}
.ws27{word-spacing:3.466667pt;}
.ws44{word-spacing:3.498667pt;}
.ws6c{word-spacing:3.520000pt;}
.ws48{word-spacing:3.541333pt;}
.ws35{word-spacing:3.573333pt;}
.ws6f{word-spacing:3.626667pt;}
.ws28{word-spacing:3.680000pt;}
.ws72{word-spacing:3.733333pt;}
.ws33{word-spacing:3.840000pt;}
.wsac{word-spacing:3.893333pt;}
.ws1b{word-spacing:4.053333pt;}
.ws17{word-spacing:4.106667pt;}
.ws1f{word-spacing:4.160000pt;}
.ws7a{word-spacing:4.213333pt;}
.wsb3{word-spacing:4.266667pt;}
.ws3f{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
._d{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._3{margin-left:-8.327467pt;}
._9{margin-left:-6.986667pt;}
._c{margin-left:-6.080000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.012800pt;}
._8{width:1.706667pt;}
._5{width:3.200000pt;}
._6{width:4.426667pt;}
._7{width:5.440000pt;}
._a{width:6.506667pt;}
._f{width:7.466667pt;}
._b{width:8.480000pt;}
._11{width:10.093867pt;}
._19{width:11.536000pt;}
._14{width:12.874133pt;}
._13{width:15.488000pt;}
._12{width:17.621333pt;}
._15{width:18.858667pt;}
._10{width:20.010667pt;}
._17{width:24.405333pt;}
._16{width:27.562667pt;}
._18{width:33.376000pt;}
._1e{width:292.394667pt;}
._27{width:293.637333pt;}
._1c{width:312.325333pt;}
._1b{width:323.712000pt;}
._24{width:549.205333pt;}
._21{width:565.845333pt;}
._1a{width:580.826667pt;}
._20{width:647.637333pt;}
._25{width:690.261333pt;}
._26{width:691.845333pt;}
._1f{width:699.690667pt;}
._1d{width:721.024000pt;}
._28{width:782.298667pt;}
._22{width:828.842667pt;}
._23{width:892.378667pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsb{font-size:42.461867pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y1f4{bottom:71.345333pt;}
.y13a{bottom:74.061200pt;}
.y169{bottom:74.092400pt;}
.y167{bottom:74.281467pt;}
.y186{bottom:74.342533pt;}
.y64{bottom:74.462533pt;}
.ydd{bottom:74.462667pt;}
.y109{bottom:74.480800pt;}
.y6b{bottom:74.595867pt;}
.ya8{bottom:74.722667pt;}
.y12a{bottom:74.742533pt;}
.y164{bottom:74.953333pt;}
.y97{bottom:75.131867pt;}
.y134{bottom:75.215867pt;}
.y12c{bottom:75.648026pt;}
.y130{bottom:75.782800pt;}
.y15e{bottom:75.793200pt;}
.y102{bottom:77.383200pt;}
.y2b{bottom:78.246000pt;}
.y148{bottom:80.617333pt;}
.y1b2{bottom:81.886133pt;}
.y1f3{bottom:84.678667pt;}
.y139{bottom:88.055867pt;}
.y168{bottom:88.087067pt;}
.y166{bottom:88.276133pt;}
.ya7{bottom:88.717333pt;}
.y96{bottom:89.126533pt;}
.y133{bottom:89.210533pt;}
.y12b{bottom:89.586133pt;}
.y12f{bottom:89.777467pt;}
.y15d{bottom:89.787867pt;}
.y185{bottom:90.342533pt;}
.y63{bottom:90.462533pt;}
.ydc{bottom:90.462667pt;}
.y6a{bottom:90.595867pt;}
.y129{bottom:90.742533pt;}
.y2a{bottom:91.576000pt;}
.y101{bottom:93.383200pt;}
.y147{bottom:95.060000pt;}
.y1b1{bottom:95.219467pt;}
.y1f2{bottom:98.012000pt;}
.y138{bottom:102.050533pt;}
.ya6{bottom:102.712000pt;}
.y132{bottom:103.205200pt;}
.y12e{bottom:103.772133pt;}
.y184{bottom:105.982533pt;}
.y62{bottom:106.462533pt;}
.ydb{bottom:106.462667pt;}
.y128{bottom:106.742533pt;}
.y1b0{bottom:108.552800pt;}
.y146{bottom:109.502667pt;}
.y1f1{bottom:111.345333pt;}
.y137{bottom:116.045200pt;}
.ya5{bottom:116.706667pt;}
.y1af{bottom:121.886133pt;}
.y69{bottom:122.235867pt;}
.y61{bottom:122.462533pt;}
.yda{bottom:122.462667pt;}
.y127{bottom:122.742533pt;}
.y145{bottom:123.945333pt;}
.y1f0{bottom:124.678667pt;}
.y100{bottom:125.023200pt;}
.y136{bottom:130.039867pt;}
.ya4{bottom:130.701333pt;}
.y1ae{bottom:135.219467pt;}
.y1ef{bottom:138.012000pt;}
.y68{bottom:138.235867pt;}
.y183{bottom:138.342533pt;}
.y144{bottom:138.388000pt;}
.y60{bottom:138.462533pt;}
.y126{bottom:138.742533pt;}
.yff{bottom:141.023200pt;}
.y27{bottom:146.399600pt;}
.y1ad{bottom:148.552800pt;}
.y1ee{bottom:151.345333pt;}
.y143{bottom:152.830667pt;}
.yd9{bottom:154.102667pt;}
.y182{bottom:154.342533pt;}
.y5f{bottom:154.462533pt;}
.y125{bottom:154.742533pt;}
.y1ac{bottom:161.886133pt;}
.y26{bottom:162.399600pt;}
.y1ed{bottom:164.678667pt;}
.y142{bottom:167.273333pt;}
.yd8{bottom:170.102667pt;}
.y181{bottom:170.342533pt;}
.y5e{bottom:170.462533pt;}
.y124{bottom:170.742533pt;}
.yfe{bottom:172.804800pt;}
.y1ab{bottom:175.219467pt;}
.y1ec{bottom:178.012000pt;}
.y25{bottom:178.399600pt;}
.y141{bottom:181.716000pt;}
.yfd{bottom:186.138133pt;}
.y180{bottom:186.342533pt;}
.y5d{bottom:186.462533pt;}
.y123{bottom:186.742533pt;}
.y1aa{bottom:188.552800pt;}
.y1eb{bottom:191.345333pt;}
.y24{bottom:194.399600pt;}
.y140{bottom:196.158667pt;}
.yfc{bottom:199.471467pt;}
.y1a9{bottom:201.886133pt;}
.yd7{bottom:201.982667pt;}
.y17f{bottom:202.342533pt;}
.y5c{bottom:202.462533pt;}
.y122{bottom:202.742533pt;}
.y1ea{bottom:204.678667pt;}
.y23{bottom:210.399600pt;}
.y13f{bottom:210.601333pt;}
.yfb{bottom:212.804800pt;}
.y1a8{bottom:215.219467pt;}
.y1e9{bottom:218.012000pt;}
.y17e{bottom:218.342533pt;}
.y5b{bottom:218.462533pt;}
.y121{bottom:218.742533pt;}
.y13e{bottom:225.044000pt;}
.yfa{bottom:226.138133pt;}
.y22{bottom:226.399600pt;}
.y1a7{bottom:228.552800pt;}
.y1e8{bottom:231.345333pt;}
.y17d{bottom:233.982533pt;}
.y5a{bottom:234.462533pt;}
.y120{bottom:234.742533pt;}
.yf9{bottom:239.471467pt;}
.y1a6{bottom:241.886133pt;}
.y21{bottom:242.399600pt;}
.y1e7{bottom:244.678667pt;}
.y59{bottom:250.462533pt;}
.yd6{bottom:250.462667pt;}
.y11f{bottom:250.742533pt;}
.y13d{bottom:250.825333pt;}
.yf8{bottom:252.804800pt;}
.y1a5{bottom:255.219467pt;}
.y1e6{bottom:258.012000pt;}
.y20{bottom:258.399600pt;}
.yf7{bottom:266.138133pt;}
.y17c{bottom:266.342533pt;}
.y58{bottom:266.462533pt;}
.yd5{bottom:266.462667pt;}
.y11e{bottom:266.742533pt;}
.y1a4{bottom:268.552800pt;}
.y1e5{bottom:271.345333pt;}
.y1f{bottom:274.399600pt;}
.yf6{bottom:279.471467pt;}
.y13c{bottom:279.617467pt;}
.y1a3{bottom:281.886133pt;}
.y17b{bottom:282.342533pt;}
.y57{bottom:282.462533pt;}
.yd4{bottom:282.462667pt;}
.y1e4{bottom:284.678667pt;}
.y1e{bottom:290.399600pt;}
.yf5{bottom:292.804800pt;}
.y1a2{bottom:295.219467pt;}
.y13b{bottom:296.950800pt;}
.y1e3{bottom:298.012000pt;}
.y17a{bottom:298.342533pt;}
.y11d{bottom:298.382533pt;}
.y56{bottom:298.462533pt;}
.yd3{bottom:298.462667pt;}
.yf4{bottom:306.138133pt;}
.y1d{bottom:306.399600pt;}
.y1a1{bottom:308.552800pt;}
.y1e2{bottom:311.345333pt;}
.y179{bottom:314.342533pt;}
.y55{bottom:314.462533pt;}
.yd2{bottom:314.462667pt;}
.yf3{bottom:319.471467pt;}
.y1a0{bottom:321.886133pt;}
.y1c{bottom:322.399600pt;}
.y1e1{bottom:324.678667pt;}
.y178{bottom:330.342533pt;}
.y54{bottom:330.462533pt;}
.yd1{bottom:330.462667pt;}
.y11c{bottom:330.609200pt;}
.yf2{bottom:332.804800pt;}
.y19f{bottom:335.219467pt;}
.y14b{bottom:336.381333pt;}
.y1e0{bottom:338.012000pt;}
.y29{bottom:338.399600pt;}
.yaa{bottom:345.389333pt;}
.yf1{bottom:346.138133pt;}
.y177{bottom:346.342533pt;}
.y53{bottom:346.462533pt;}
.yd0{bottom:346.462667pt;}
.y11b{bottom:346.609200pt;}
.y19e{bottom:348.552800pt;}
.y1f9{bottom:349.257200pt;}
.y14a{bottom:350.376000pt;}
.y1df{bottom:351.345333pt;}
.y1b{bottom:354.041467pt;}
.y28{bottom:354.399600pt;}
.ya9{bottom:359.384000pt;}
.yf0{bottom:359.471467pt;}
.y19d{bottom:361.886133pt;}
.y67{bottom:362.102533pt;}
.y176{bottom:362.342533pt;}
.y52{bottom:362.462533pt;}
.ycf{bottom:362.462667pt;}
.y11a{bottom:362.609200pt;}
.y149{bottom:364.370667pt;}
.y1de{bottom:364.678667pt;}
.y1f8{bottom:365.257200pt;}
.yef{bottom:372.804800pt;}
.y19c{bottom:375.219467pt;}
.y1dd{bottom:378.012000pt;}
.y175{bottom:378.342533pt;}
.y51{bottom:378.462533pt;}
.yce{bottom:378.462667pt;}
.y119{bottom:378.609200pt;}
.y1f7{bottom:381.257200pt;}
.yee{bottom:386.138133pt;}
.y19b{bottom:388.552800pt;}
.y1dc{bottom:391.345333pt;}
.y66{bottom:393.982533pt;}
.y174{bottom:394.342533pt;}
.y50{bottom:394.462533pt;}
.ycd{bottom:394.462667pt;}
.y118{bottom:394.609200pt;}
.yed{bottom:399.471467pt;}
.y19a{bottom:401.886133pt;}
.y163{bottom:402.216667pt;}
.y1db{bottom:404.678667pt;}
.y173{bottom:410.342533pt;}
.y4f{bottom:410.462533pt;}
.ycc{bottom:410.462667pt;}
.y117{bottom:410.609200pt;}
.yec{bottom:412.804800pt;}
.y1f6{bottom:412.897200pt;}
.y199{bottom:415.219467pt;}
.y162{bottom:416.211333pt;}
.y1da{bottom:418.012000pt;}
.y1a{bottom:423.123733pt;}
.yeb{bottom:426.138133pt;}
.y172{bottom:426.342533pt;}
.y4e{bottom:426.462533pt;}
.ycb{bottom:426.462667pt;}
.y116{bottom:426.609200pt;}
.y198{bottom:428.552800pt;}
.y161{bottom:430.206000pt;}
.y1d9{bottom:431.345333pt;}
.yea{bottom:439.471467pt;}
.y197{bottom:441.886133pt;}
.y171{bottom:442.342533pt;}
.y4d{bottom:442.462533pt;}
.yca{bottom:442.462667pt;}
.y115{bottom:442.609200pt;}
.y160{bottom:444.200667pt;}
.y1d8{bottom:444.678667pt;}
.y19{bottom:447.430400pt;}
.ye9{bottom:452.804800pt;}
.y196{bottom:455.219467pt;}
.y1d7{bottom:458.012000pt;}
.y170{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.yc9{bottom:458.462667pt;}
.y114{bottom:458.609200pt;}
.y18{bottom:463.430400pt;}
.ye8{bottom:466.138133pt;}
.y195{bottom:468.552800pt;}
.y1d6{bottom:471.345333pt;}
.y16f{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.yc8{bottom:474.462667pt;}
.y113{bottom:474.609200pt;}
.y17{bottom:479.430400pt;}
.ye7{bottom:479.471467pt;}
.y194{bottom:481.886133pt;}
.y1d5{bottom:484.678667pt;}
.y16e{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.yc7{bottom:490.462667pt;}
.y7b{bottom:490.595867pt;}
.y95{bottom:490.609200pt;}
.ye6{bottom:492.804800pt;}
.y193{bottom:495.219467pt;}
.y16{bottom:495.430400pt;}
.y1d4{bottom:498.012000pt;}
.ye5{bottom:506.138133pt;}
.y16d{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.yc6{bottom:506.462667pt;}
.y7a{bottom:506.595867pt;}
.y94{bottom:506.609200pt;}
.y192{bottom:508.552800pt;}
.y1d3{bottom:511.345333pt;}
.y15{bottom:511.430400pt;}
.ye4{bottom:519.471467pt;}
.y191{bottom:521.886133pt;}
.y48{bottom:522.462533pt;}
.yc5{bottom:522.462667pt;}
.y79{bottom:522.595867pt;}
.y93{bottom:522.609200pt;}
.y1d2{bottom:524.678667pt;}
.y14{bottom:527.430400pt;}
.ye3{bottom:532.804800pt;}
.y190{bottom:535.219467pt;}
.y16c{bottom:537.982533pt;}
.y1d1{bottom:538.012000pt;}
.y47{bottom:538.462533pt;}
.yc4{bottom:538.462667pt;}
.y78{bottom:538.595867pt;}
.y92{bottom:538.609200pt;}
.y13{bottom:543.430400pt;}
.ye2{bottom:546.138133pt;}
.y18f{bottom:548.552800pt;}
.y1d0{bottom:551.345333pt;}
.y46{bottom:554.462533pt;}
.yc3{bottom:554.462667pt;}
.y77{bottom:554.595867pt;}
.y91{bottom:554.609200pt;}
.y12{bottom:559.430400pt;}
.ye1{bottom:559.471467pt;}
.y18e{bottom:561.886133pt;}
.y1cf{bottom:564.678667pt;}
.y15c{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.yc2{bottom:570.462667pt;}
.y76{bottom:570.595867pt;}
.y90{bottom:570.609200pt;}
.ye0{bottom:572.804800pt;}
.y18d{bottom:575.219467pt;}
.y11{bottom:575.430400pt;}
.y1ce{bottom:578.012000pt;}
.y15b{bottom:586.342533pt;}
.y44{bottom:586.462533pt;}
.yc1{bottom:586.462667pt;}
.y75{bottom:586.595867pt;}
.y8f{bottom:586.609200pt;}
.y18c{bottom:588.552800pt;}
.y1cd{bottom:591.345333pt;}
.y10{bottom:591.430400pt;}
.ydf{bottom:602.236000pt;}
.y15a{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.yc0{bottom:602.462667pt;}
.y74{bottom:602.595867pt;}
.y8e{bottom:602.609200pt;}
.y1cc{bottom:604.678667pt;}
.yf{bottom:607.430400pt;}
.y18b{bottom:617.982533pt;}
.y1cb{bottom:618.012000pt;}
.yde{bottom:618.236000pt;}
.y159{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.ybf{bottom:618.462667pt;}
.y73{bottom:618.595867pt;}
.y8d{bottom:618.609200pt;}
.ye{bottom:623.430400pt;}
.y1ca{bottom:631.345333pt;}
.y12d{bottom:634.235867pt;}
.y158{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.ybe{bottom:634.462667pt;}
.ya3{bottom:634.475867pt;}
.y72{bottom:634.595867pt;}
.y8c{bottom:634.609200pt;}
.yd{bottom:639.430400pt;}
.y1c9{bottom:644.678667pt;}
.y157{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.ybd{bottom:650.462667pt;}
.ya2{bottom:650.475867pt;}
.y71{bottom:650.595867pt;}
.y8b{bottom:650.609200pt;}
.yc{bottom:655.430400pt;}
.y1c8{bottom:658.012000pt;}
.y156{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.ybc{bottom:666.462667pt;}
.ya1{bottom:666.475867pt;}
.y70{bottom:666.595867pt;}
.y8a{bottom:666.609200pt;}
.y1c7{bottom:671.345333pt;}
.y18a{bottom:682.102533pt;}
.y98{bottom:682.235867pt;}
.y155{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.ybb{bottom:682.462667pt;}
.ya0{bottom:682.475867pt;}
.y6f{bottom:682.595867pt;}
.y89{bottom:682.609200pt;}
.y1c6{bottom:684.678667pt;}
.yb{bottom:695.571067pt;}
.y1c5{bottom:698.012000pt;}
.y154{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.yba{bottom:698.462667pt;}
.y9f{bottom:698.475867pt;}
.y6e{bottom:698.595867pt;}
.y88{bottom:698.609200pt;}
.ya{bottom:706.638400pt;}
.y1c4{bottom:711.345333pt;}
.y153{bottom:714.342533pt;}
.y3c{bottom:714.462533pt;}
.yb9{bottom:714.462667pt;}
.y9e{bottom:714.475867pt;}
.y108{bottom:714.595867pt;}
.y87{bottom:714.609200pt;}
.y1c3{bottom:724.678667pt;}
.y189{bottom:730.102533pt;}
.y6d{bottom:730.235867pt;}
.y152{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.yb8{bottom:730.462667pt;}
.y9d{bottom:730.475867pt;}
.y107{bottom:730.595867pt;}
.y86{bottom:730.609200pt;}
.y9{bottom:734.829867pt;}
.y1c2{bottom:738.012000pt;}
.y6c{bottom:746.235867pt;}
.y151{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.yb7{bottom:746.462667pt;}
.y9c{bottom:746.475867pt;}
.y106{bottom:746.595867pt;}
.y85{bottom:746.609200pt;}
.y8{bottom:746.829867pt;}
.y1c1{bottom:751.345333pt;}
.y150{bottom:762.342533pt;}
.y39{bottom:762.462533pt;}
.yb6{bottom:762.462667pt;}
.y9b{bottom:762.475867pt;}
.y105{bottom:762.595867pt;}
.y112{bottom:762.609200pt;}
.y7{bottom:763.652400pt;}
.y1c0{bottom:764.678667pt;}
.y1bf{bottom:778.012000pt;}
.y84{bottom:778.249200pt;}
.y14f{bottom:778.342533pt;}
.y38{bottom:778.462533pt;}
.yb5{bottom:778.462667pt;}
.y9a{bottom:778.475867pt;}
.y104{bottom:778.595867pt;}
.y111{bottom:778.609200pt;}
.y6{bottom:789.183067pt;}
.y1be{bottom:791.345333pt;}
.y14e{bottom:794.342533pt;}
.y37{bottom:794.462533pt;}
.yb4{bottom:794.462667pt;}
.y99{bottom:794.475867pt;}
.y10d{bottom:794.595867pt;}
.y110{bottom:794.609200pt;}
.y1bd{bottom:804.678667pt;}
.y188{bottom:810.102533pt;}
.y103{bottom:810.235867pt;}
.y36{bottom:810.462533pt;}
.yb3{bottom:810.462667pt;}
.y83{bottom:810.475867pt;}
.y10c{bottom:810.595867pt;}
.y10f{bottom:810.609200pt;}
.y1bc{bottom:818.012000pt;}
.y14d{bottom:825.982533pt;}
.y35{bottom:826.462533pt;}
.yb2{bottom:826.462667pt;}
.y82{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y1bb{bottom:831.345333pt;}
.y10b{bottom:842.235867pt;}
.y10e{bottom:842.249200pt;}
.y34{bottom:842.462533pt;}
.yb1{bottom:842.462667pt;}
.y81{bottom:842.475867pt;}
.y1ba{bottom:844.678667pt;}
.y1b9{bottom:858.012000pt;}
.y187{bottom:858.102533pt;}
.y33{bottom:858.462533pt;}
.yb0{bottom:858.462667pt;}
.y80{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y1b8{bottom:871.345333pt;}
.y32{bottom:874.462533pt;}
.yaf{bottom:874.462667pt;}
.y7f{bottom:874.475867pt;}
.y1b7{bottom:884.678667pt;}
.y31{bottom:890.462533pt;}
.yae{bottom:890.462667pt;}
.y7e{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y1b6{bottom:898.012000pt;}
.y30{bottom:906.462533pt;}
.yad{bottom:906.462667pt;}
.y7d{bottom:906.475867pt;}
.y1b5{bottom:911.345333pt;}
.y2f{bottom:922.462533pt;}
.yac{bottom:922.462667pt;}
.y7c{bottom:922.475867pt;}
.y1b4{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1b3{bottom:1006.590133pt;}
.y165{bottom:1006.590667pt;}
.y65{bottom:1006.594400pt;}
.y10a{bottom:1006.598133pt;}
.y15f{bottom:1006.598533pt;}
.y1f5{bottom:1006.598667pt;}
.y14c{bottom:1006.600000pt;}
.y16b{bottom:1006.601467pt;}
.y16a{bottom:1006.604400pt;}
.y135{bottom:1006.607867pt;}
.y131{bottom:1006.609467pt;}
.yab{bottom:1006.616000pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.he{height:29.140625pt;}
.h7{height:29.160156pt;}
.h13{height:29.503533pt;}
.h11{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h14{height:37.031250pt;}
.hd{height:37.057292pt;}
.hb{height:38.828125pt;}
.h9{height:38.854167pt;}
.hc{height:38.860475pt;}
.ha{height:38.880208pt;}
.h12{height:46.727068pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x18{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1f{left:90.708667pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x1d{left:109.606533pt;}
.x3{left:111.501467pt;}
.x6{left:117.165333pt;}
.x1a{left:169.018133pt;}
.x15{left:187.663867pt;}
.x5{left:189.223467pt;}
.x19{left:195.675867pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x11{left:425.182533pt;}
.x7{left:427.085333pt;}
.x1c{left:428.976533pt;}
.xe{left:436.538133pt;}
.x1e{left:447.889200pt;}
.x12{left:455.422533pt;}
.x8{left:457.325333pt;}
.x13{left:485.809200pt;}
.x1b{left:510.978133pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x16{left:641.514133pt;}
.xf{left:647.459200pt;}
.x17{left:661.216133pt;}
.x14{left:666.356800pt;}
}




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